CCfits-2.7/0000755000225700000360000000000014764645212012036 5ustar cagordonlheaCCfits-2.7/ExtHDU.h0000644000225700000360000005557414764627567013345 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef EXTHDU_H #define EXTHDU_H 1 // CCfitsHeader #include "CCfits.h" // HDU #include "HDU.h" // FitsError #include "FitsError.h" namespace CCfits { class Column; } // namespace CCfits namespace CCfits { /*! \class ExtHDU::WrongExtensionType @ingroup FITSexcept @brief Exception to be thrown on unmatched extension types This exception is to be thrown if the user requested a particular extension and it does not correspond to the expected type. */ /*! \fn ExtHDU::WrongExtensionType::WrongExtensionType (const String& msg, bool silent); \brief Exception ctor, prefixes the string "Fits Error: wrong extension type" before the specific message. \param msg A specific diagnostic message \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class ExtHDU \brief base class for all FITS extension HDUs, i.e. Image Extensions and Tables. ExtHDU needs to have the combined public interface of Table objects and images. It achieves this by providing the same set of read and write operations as PHDU, and also providing the same operations for extracting columns from the extension as does Table [after which the column interface is accessible]. Differentiation between extension types operates by exception handling: .i.e. attempting to access image data structures on a Table object through the ExtHDU interface will or trying to return a Column reference from an Image extension will both throw an exception */ /*! \fn ExtHDU::ExtHDU(const ExtHDU &right); \brief copy constructor */ /*! \fn virtual ExtHDU::~ExtHDU(); \brief destructor */ /*! \fn static void ExtHDU::readHduName (const fitsfile* fptr, int hduIndex, String& hduName, int& hduVersion); \brief read extension name. Used primarily to allow extensions to be specified by HDU number and provide their name for the associative array that contains them. Alternatively, if there is no name keyword in the extension, one is synthesized from the index. */ /*! \fn virtual void ExtHDU::readData (bool readFlag = false, const std::vector& keys = std::vector()) = 0; \brief read data from HDU depending on readFlag and keys. */ /*! \fn const String& ExtHDU::name () const; \brief return the name of the extension. */ /*! \fn virtual ExtHDU * ExtHDU::clone (FITS* p) const = 0; \brief virtual copy constructor */ /*! \fn virtual Column& ExtHDU::column (const String& colName, bool caseSensitive = true) const ; \brief return a reference to a Table column specified by name. If the caseSensitive parameter is set to false, the search will be case-insensitive. The overridden base class implementation ExtHDU::column throws an exception, which is thus the action to be taken if self is an image extension \exception WrongExtensionType see above */ /*! \fn virtual Column& ExtHDU::column (int colIndex) const; \brief return a reference to a Table column specified by column index. This version is provided for convenience; the 'return by name' version is more efficient because columns are stored in an associative array sorted by name. \exception WrongExtensionType thrown if *this is an image extension. */ /*! \fn const ColMap& ExtHDU::column () const; \brief return a reference to the multimap containing the columns. \exception WrongExtensionType thrown if *this is an image extension. */ /*! \fn int ExtHDU::numCols () const; \brief return the number of Columns in the Table (the TFIELDS keyword). \exception WrongExtensionType thrown if *this is an image extension. */ /*! \fn const int ExtHDU::version () const; \brief return the extension version number. */ /*! \fn void ExtHDU::version (int value); \brief set the extension version number */ /*! \fn long ExtHDU::rows () const; \brief return the number of rows in the extension. \exception WrongExtensionType thrown if *this is an image extension. */ /*! \fn ExtHDU::ExtHDU (FITS* p, HduType xtype, const String &hduName, int version); \brief default constructor, required as Standard Library Container content. */ /*! \fn ExtHDU::ExtHDU (FITS* p, HduType xtype, const String &hduName, int bitpix, int naxis, const std::vector& axes, int version); \brief writing constructor. The writing constructor forces the user to supply a name for the HDU. The bitpix, naxes and naxis data required by this constructor are required FITS keywords for any HDUs. */ /*! \fn ExtHDU::ExtHDU (FITS* p, HduType xtype, int number); \brief ExtHDU constructor for getting ExtHDUs by number. Necessary since EXTNAME is a reserved, not required, keyword. But a synthetic name is supplied by static ExtHDU::readHduName which is called by this constructor. */ /*! \fn virtual void ExtHDU::addColumn (ValueType type, const String& columnName, long repeatWidth, const String& colUnit = String(""), long decimals = -1, size_t columnNumber = 0); \brief add a new column to an existing table HDU. \param type The data type of the column to be added \param columnName The name of the column to be added \param repeatWidth for a string valued, this is the width of a string. For a numeric column it supplies the vector length of the rows. It is ignored for ascii table numeric data. \param colUnit an optional field specifying the units of the data (TUNITn) \param decimals optional parameter specifying the number of decimals for an ascii numeric column \param columnNumber optional parameter specifying column number to be created. If not specified the column is added to the end. If specified, the column is inserted and the columns already read are reindexed. This parameter is provided as a convenience to support existing code rather than recommended. */ /*! \fn virtual void ExtHDU::copyColumn(const Column& inColumn, int colIndx, bool insertNewCol=true); \brief copy a column (from different or same HDU and file) into an existing table HDU. This is meant to provide the same functionality as CFITSIO's fits_copy_col, and therefore does not work with columns with variable length fields. Copying a column from an AsciiTable to a BinTable is prohibited. colIndx range should be from 1 to nCurrentCols+1 if inserting, or 1 to nCurrentCols if replacing. \param inColumn The Column object which is to be copied \param colIndx The position for which the copied Column will be placed (first colIndx = 1). \param insertNewCol If 'true', new Column will be inserted in or appended to table. If 'false', Column will replace current Column at position = colIndx. */ /*! \fn virtual void ExtHDU::deleteColumn(const String& columnName); \brief delete a column in a Table extension by name. \param columnName The name of the column to be deleted. \exception WrongExtensionType if extension is an image. */ /*! \fn template void ExtHDU::read (std::valarray& image); \brief Read image data into container. The container image contains the entire image array after the call. This and all the other variants of read() throw a WrongExtensionType exception if called for a Table object. */ /*! \fn template void ExtHDU::read (std::valarray& image, long first, long nElements, S* nullValue) ; \brief read part of an image array, processing null values. Implicit data conversion is supported (i.e. user does not need to know the type of the data stored. A WrongExtensionType extension is thrown if *this is not an image. \param image The receiving container, a std::valarray reference \param first The first pixel from the array to read [a long value] \param nElements The number of values to read \param nullValue A pointer containing the value in the table to be considered as undefined. See cfitsio for details */ /*! \fn template void ExtHDU::read (std::valarray& image, const std::vector& first, long nElements, S* nullValue) ; \brief read part of an image array, processing null values. As above except for \param first a vector representing an n-tuple giving the coordinates in the image of the first pixel. */ /*! \fn template void ExtHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, S* nullValue) ; \brief read an image subset into valarray image, processing null values The image subset is defined by two vertices and a stride indicating the 'denseness' of the values to be picked in each dimension (a stride = (1,1,1,...) means picking every pixel in every dimension, whereas stride = (2,2,2,...) means picking every other value in each dimension. */ /*! \fn template void ExtHDU::read (std::valarray& image, long first, long nElements) ; \brief read an image section starting at a specified pixel */ /*! \fn template void ExtHDU::read (std::valarray& image, const std::vector& first, long nElements); \brief read an image section starting at a location specified by an n-tuple */ /*! \fn template void ExtHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride) ; \brief read an image subset */ /*! \fn template void ExtHDU::write(const std::vector& first, long nElements, const std::valarray& data, S* nullValue); \brief Write a set of pixels to an image extension with the first pixel specified by an n-tuple, processing undefined data All the overloaded versions of ExtHDU::write perform operations on *this if it is an image and throw a WrongExtensionType exception if not. Where appropriate, alternate versions allow undefined data to be processed \param first an n-tuple of dimension equal to the image dimension specifying the first pixel in the range to be written \param nElements number of pixels to be written \param data array of data to be written \param nullValue pointer to null value (data with this value written as undefined; needs the BLANK keyword to have been specified). */ /*! \fn template void ExtHDU::write(long first, long nElements, const std::valarray& data, S* nullValue); \brief write array to image starting with a specified pixel and allowing undefined data to be processed parameters after the first are as for version with n-tuple specifying first element. these two version are equivalent, except that it is possible for the first pixel number to exceed the range of 32-bit integers, which is how long datatype is commonly implemented. */ /*! \fn template void ExtHDU::write(const std::vector& first, long nElements, const std::valarray& data); \brief write array starting from specified n-tuple, without undefined data processing */ /*! \fn template void ExtHDU::write(long first, long nElements, const std::valarray& data); \brief write array starting from specified pixel number, without undefined data processing */ /*! \fn template void ExtHDU::write(const std::vector& firstVertex, const std::vector& lastVertex, const std::valarray& data); \brief write a subset (generalize slice) of data to the image A generalized slice/subset is a subset of the image (e.g. one plane of a data cube of size <= the dimension of the cube). It is specified by two opposite vertices. The equivalent cfitsio call does not support undefined data processing so there is no version that allows a null value to be specified. \param firstVertex the coordinates specifying lower and upper vertices of the n-dimensional slice \param lastVertex \param data The data to be written */ /*! \fn const long ExtHDU::pcount () const; \brief return required pcount keyword value */ /*! \fn void ExtHDU::pcount (long value); \brief set required pcount keyword value */ /*! \fn const long ExtHDU::gcount () const; \brief return required gcount keyword value */ /*! \fn void ExtHDU::gcount (long value); \brief set required gcount keyword value */ /*! \fn const HduType ExtHDU::xtension () const; \brief return the extension type allowed values are ImageHDU, AsciiTbl, and BinaryTbl */ /*! \fn void ExtHDU::xtension (HduType value); \brief set the extension type */ /*! \fn void ExtHDU::checkXtension (); \brief check that the extension type read is what was expected. */ /*! \fn virtual long ExtHDU::getRowsize () const; \brief return the optimal number of rows to read or write at a time A wrapper for the CFITSIO function fits_get_rowsize, useful for obtaining maximum I/O efficiency. This will throw if it is not called for a Table extension. */ /*! \fn bool ExtHDU::isCompressed () const; \brief return true if image is stored using compression. This is simply a wrapper around the CFITSIO fits_is_compressed_image function. It will throw if this is not an Image extension. */ class ExtHDU : public HDU //## Inherits: %38048213E7A8 { public: class WrongExtensionType : public FitsException //## Inherits: %39E61E630349 { public: WrongExtensionType (const String& msg, bool silent = true); protected: private: private: //## implementation }; ExtHDU(const ExtHDU &right); virtual ~ExtHDU(); friend bool operator<(const ExtHDU &left,const ExtHDU &right); friend bool operator>(const ExtHDU &left,const ExtHDU &right); friend bool operator<=(const ExtHDU &left,const ExtHDU &right); friend bool operator>=(const ExtHDU &left,const ExtHDU &right); static void readHduName (const fitsfile* fptr, int hduIndex, String& hduName, int& hduVersion); virtual void readData (bool readFlag = false, const std::vector& keys = std::vector()) = 0; const String& name () const; virtual HDU * clone (FITS* p) const = 0; // By all means necessary, set the fitsfile pointer so that // this HDU is the current HDU. // // This would appear to be a good candidate for the public // interface. virtual void makeThisCurrent () const; virtual Column& column (const String& colName, bool caseSensitive = true) const; virtual Column& column (int colIndex) const; virtual long rows () const; virtual void addColumn (ValueType type, const String& columnName, long repeatWidth, const String& colUnit = String(""), long decimals = -1, size_t columnNumber = 0); virtual void copyColumn(const Column& inColumn, int colIndx, bool insertNewCol=true); virtual void deleteColumn (const String& columnName); virtual long getRowsize () const; virtual int numCols () const; virtual const ColMap& column () const; bool isCompressed () const; int version () const; void version (int value); static const String& missHDU (); static void setMissHDU (const String& value); public: // Additional Public Declarations // interface is virtually identical to PHDU. The implementation is // similar apart from a check for wrong extension type. template void write(const std::vector& first, long nElements, const std::valarray& data, S* nullValue); template void write(long first, long nElements, const std::valarray& data, S* nullValue); template void write(const std::vector& first, long nElements, const std::valarray& data); template void write(long first, long nElements, const std::valarray& data); template void write(const std::vector& firstVertex, const std::vector& lastVertex, const std::valarray& data); // read image data & return the array. Can't return a reference because type // conversion in general requires allocating a new object. // note semantics of reading column data are easily distinguished: they require // the user to perform the operation EXT.column({name,index}).read(...) template void read (std::valarray& image) ; template void read (std::valarray& image, long first, long nElements, S* nullValue) ; template void read (std::valarray& image, const std::vector& first, long nElements, S* nullValue) ; template void read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride) ; template void read (std::valarray& image, long first, long nElements) ; template void read (std::valarray& image, const std::vector& first, long nElements) ; template void read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, S* nullValue) ; protected: // ExtHDU needs a default constructor. This is it. ExtHDU (FITS* p, HduType xtype, const String &hduName, int version); // The writing constructor. Forces the user to supply a name // for the HDU ExtHDU (FITS* p, HduType xtype, const String &hduName, int bitpix, int naxis, const std::vector& axes, int version); // ExtHDU constructor for getting ExtHDUs by number. // Necessary since EXTNAME is a reserved not required // keyword. ExtHDU (FITS* p, HduType xtype, int number); virtual std::ostream & put (std::ostream &s) const = 0; virtual void setColumn (const String& colname, Column* value); virtual void checkExtensionType () const; int getVersion (); long pcount () const; void pcount (long value); long gcount () const; void gcount (long value); HduType xtension () const; void xtension (HduType value); // Additional Protected Declarations private: virtual void initRead () = 0; void checkXtension (); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes long m_pcount; long m_gcount; int m_version; HduType m_xtension; static String s_missHDU; // Data Members for Associations String m_name; // Additional Implementation Declarations }; // Class CCfits::ExtHDU::WrongExtensionType // Class CCfits::ExtHDU inline bool operator<(const ExtHDU &left,const ExtHDU &right) { if (left.m_name < right.m_name) return true; if (left.m_name > right.m_name) return false; if (left.m_name == right.m_name) { if (left.m_version < right.m_version) return true; } return false; } inline bool operator>(const ExtHDU &left,const ExtHDU &right) { return !operator<=(left,right); } inline bool operator<=(const ExtHDU &left,const ExtHDU &right) { if (left.m_name <= right.m_name) { if (left.m_version <= right.m_version) return true; } return false; } inline bool operator>=(const ExtHDU &left,const ExtHDU &right) { return !operator<(left,right); } inline const String& ExtHDU::name () const { return m_name; } inline long ExtHDU::pcount () const { return m_pcount; } inline void ExtHDU::pcount (long value) { m_pcount = value; } inline long ExtHDU::gcount () const { return m_gcount; } inline void ExtHDU::gcount (long value) { m_gcount = value; } inline int ExtHDU::version () const { return m_version; } inline void ExtHDU::version (int value) { m_version = value; } inline HduType ExtHDU::xtension () const { return m_xtension; } inline void ExtHDU::xtension (HduType value) { m_xtension = value; } inline const String& ExtHDU::missHDU () { return s_missHDU; } inline void ExtHDU::setMissHDU (const String& value) { s_missHDU = value; } } // namespace CCfits #endif CCfits-2.7/KeywordT.h0000644000225700000360000001637614764627567014011 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef KEYWORDT_H #define KEYWORDT_H #include "KeyData.h" #include "HDU.h" #include #include #ifdef _MSC_VER #include "MSconfig.h" #endif // contains definitions of templated member functions for Keyword. This separate // file organization is necessary to break cyclic dependency of Keyword on its // subclass, KeyData. namespace CCfits { template T& Keyword::value (T& val) const { try { const KeyData& thisKey = dynamic_cast&>(*this); val = thisKey.keyval(); } catch (std::bad_cast&) { throw Keyword::WrongKeywordValueType(name()); } return val; } template void Keyword::setValue (const T& newValue) { try { KeyData& thisKey = dynamic_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } catch (std::bad_cast&) { throw Keyword::WrongKeywordValueType(name()); } } #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template<> inline double& Keyword::value(double& val) const { switch (m_keytype) { case Tint: { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; case Tfloat: { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; case Tdouble: { // Note: if val is of type float some precision will be lost here, // but allow anyway. Presumably the user doesn't mind or they // wouldn't be using single precision. const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; case Tstring: { // Allow only if string can be converted to an integer. const KeyData& thisKey = static_cast&>(*this); std::istringstream testStream(thisKey.keyval()); int stringInt = 0; if (!(testStream >> stringInt) || !testStream.eof()) { throw Keyword::WrongKeywordValueType(name()); } val = stringInt; } break; default: throw Keyword::WrongKeywordValueType(name()); break; } return val; } // NOTE: This function actually instantiates Keyword::value // and therefore must be defined AFTER the specialized // definition/declaration. template<> inline float& Keyword::value(float& val) const { double dval=.0; val = static_cast(value(dval)); return val; } template <> inline int& Keyword::value(int& val) const { if (m_keytype == Tstring) { // Allow only if string can be converted to an integer. const KeyData& thisKey = static_cast&>(*this); std::istringstream testStream(thisKey.keyval()); int stringInt = 0; if (!(testStream >> stringInt) || !testStream.eof()) { throw Keyword::WrongKeywordValueType(name()); } val = stringInt; } else if (m_keytype == Tint) { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } else { throw Keyword::WrongKeywordValueType(name()); } return val; } template <> inline String& Keyword::value(String& val) const { switch (m_keytype) { case Tint: { const KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << thisKey.keyval(); val = oss.str(); } break; case Tfloat: { const KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << thisKey.keyval(); val = oss.str(); } break; case Tdouble: { const KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << thisKey.keyval(); val = oss.str(); } break; case Tstring: { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; default: throw Keyword::WrongKeywordValueType(name()); } return val; } template <> inline void Keyword::setValue(const float& newValue) { if (m_keytype == Tfloat) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } else if (m_keytype == Tdouble) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else { throw Keyword::WrongKeywordValueType(name()); } } template <> inline void Keyword::setValue(const double& newValue) { if (m_keytype == Tdouble) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } else if (m_keytype == Tfloat) { // This will lose precision but allow it anyway. KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else { throw Keyword::WrongKeywordValueType(name()); } } template <> inline void Keyword::setValue(const int& newValue) { if (m_keytype == Tint) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } else if (m_keytype == Tfloat) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else if (m_keytype == Tdouble) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else if (m_keytype == Tstring) { KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << newValue; thisKey.keyval(oss.str()); thisKey.write(); } else { throw Keyword::WrongKeywordValueType(name()); } } #endif } // namespace CCfits #endif CCfits-2.7/CCfits.pc.in0000644000225700000360000000040114764627567014152 0ustar cagordonlheaprefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: CCfits Description: Object Oriented C++ Interface to CFITSIO Library Requires.private: cfitsio >= 3.08 Version: 2.7 Libs: -L${libdir} -lCCfits Cflags: -I${includedir} CCfits-2.7/Column.cxx0000644000225700000360000016654714764627567014057 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef SSTREAM_DEFECT #include using std::ostrstream; #else #include using std::ostringstream; #endif // Table #include "Table.h" // Column #include "Column.h" #include "FITS.h" #include "fitsio.h" #include "ColumnData.h" #include "ColumnVectorData.h" #include #include #include namespace CCfits { // Class CCfits::Column::RangeError Column::RangeError::RangeError (const String& msg, bool silent) : FitsException("FitsError: Range error in operation ",silent) { addToMessage(msg); if (!silent || FITS::verboseMode() ) std::cerr << msg << '\n'; } // Class CCfits::Column::InvalidDataType Column::InvalidDataType::InvalidDataType (const String& str, bool silent) : FitsException("FitsError: Incorrect data type: ",silent) { addToMessage(str); if (!silent || FITS::verboseMode() ) std::cerr << str << '\n'; } // Class CCfits::Column::InvalidRowParameter Column::InvalidRowParameter::InvalidRowParameter (const String& diag, bool silent) : FitsException("FitsError: row offset or length incompatible with column declaration ",silent) { addToMessage(diag); if (!silent || FITS::verboseMode() ) std::cerr << diag << '\n'; } // Class CCfits::Column::WrongColumnType Column::WrongColumnType::WrongColumnType (const String& diag, bool silent) : FitsException("FitsError: Attempt to return scalar data from vector column, or vice versa - Column: ",silent) { addToMessage(diag); if (!silent || FITS::verboseMode() ) std::cerr << diag << '\n'; } // Class CCfits::Column::UnspecifiedLengths Column::UnspecifiedLengths::UnspecifiedLengths (const String& diag, bool silent) : FitsException ("FitsError: Variable length column being written needs integer array of row lengths: Column ",silent) { addToMessage(diag); if (!silent || FITS::verboseMode() ) std::cerr << diag << '\n'; } // Class CCfits::Column::InvalidRowNumber Column::InvalidRowNumber::InvalidRowNumber (const String& diag, bool silent) : FitsException("FitsError: Invalid Row Number - Column: ",silent) { addToMessage(diag); if (!silent || FITS::verboseMode() ) std::cerr << diag << '\n'; } // Class CCfits::Column::InsufficientElements Column::InsufficientElements::InsufficientElements (const String& msg, bool silent) : FitsException("FitsError: not enough elements supplied for write operation ",silent) { addToMessage(msg); if (!silent || FITS::verboseMode() ) std::cerr << msg << '\n'; } // Class CCfits::Column::NoNullValue Column::NoNullValue::NoNullValue (const String& diag, bool silent) : FitsException("Fits Error: No null value specified for column: ",silent) { addToMessage(diag); if (!silent || FITS::verboseMode() ) std::cerr << diag << '\n'; } // Class CCfits::Column::InvalidNumberOfRows Column::InvalidNumberOfRows::InvalidNumberOfRows (int number, bool silent) : FitsException( "Fits Error: number of rows to write must be positive: ",silent) { std::ostringstream oss; oss << " specified: " << number; addToMessage(oss.str()); if (!silent || FITS::verboseMode() ) std::cerr << oss.str() << '\n'; } // Class CCfits::Column const String Column::s_TBCOL = "TBCOL"; const String Column::s_TTYPE = "TTYPE"; const String Column::s_TFORM = "TFORM"; const String Column::s_TDISP = "TDISP"; const String Column::s_TUNIT = "TUNIT"; const String Column::s_TSCAL = "TSCAL"; const String Column::s_TZERO = "TZERO"; const String Column::s_TDIM = "TDIM"; const String Column::s_TNULL = "TNULL"; const String Column::s_TLMIN = "TLMIN"; const String Column::s_TLMAX = "TLMAX"; const String Column::s_TDMAX = "TDMAX"; const String Column::s_TDMIN = "TDMIN"; const short Column::LLIMITSHORT = SHRT_MIN; const long Column::LLIMITLONG = LONG_MIN; const unsigned short Column::LLIMITUSHORT = 0; const unsigned long Column::LLIMITULONG = 0; const unsigned char Column::LLIMITUCHAR = 0; const float Column::LLIMITFLOAT = FLT_MIN; const double Column::LLIMITDOUBLE = DBL_MIN; const short Column::ULIMITSHORT = SHRT_MAX; const long Column::ULIMITLONG = LONG_MAX; const unsigned short Column::ULIMITUSHORT = USHRT_MAX; const unsigned long Column::ULIMITULONG = ULONG_MAX; const unsigned char Column::ULIMITUCHAR = UCHAR_MAX; const float Column::ULIMITFLOAT = FLT_MAX; const double Column::ULIMITDOUBLE = DBL_MAX; const int Column::LLIMITINT = INT_MIN; const int Column::ULIMITINT = INT_MAX; const unsigned int Column::LLIMITUINT = 0; const unsigned int Column::ULIMITUINT = UINT_MAX; const LONGLONG Column::LLIMITLONGLONG = LONGLONG_MIN; const LONGLONG Column::ULIMITLONGLONG = LONGLONG_MAX; std::vector Column::s_columnKeys; Column::Column(const Column &right) : m_index(right.m_index), m_isRead(right.m_isRead), m_width(right.m_width), m_repeat(right.m_repeat), m_varLength(right.m_varLength), m_scale(right.m_scale), m_zero(right.m_zero), m_display(right.m_display), m_dimen(right.m_dimen), m_type(right.m_type), m_parent(right.m_parent), m_comment(right.m_comment), m_format(right.m_format), m_unit(right.m_unit), m_name(right.m_name) { } Column::Column (int columnIndex, const String &columnName, ValueType type, const String &format, const String &unit, Table* p, int rpt, long w, const String &comment) :m_index(columnIndex), m_isRead(false), m_width(w), m_repeat(rpt), m_varLength(type < 0), m_scale(1), m_zero(0), m_display(""), m_dimen(""), m_type(type), m_parent(p), m_comment(comment), m_format(format), m_unit(unit), m_name(columnName) { Column::loadColumnKeys(); setDisplay(); setDimen(); } Column::Column (Table* p) : m_index(-1), m_isRead(false), m_width(1), m_repeat(1), m_varLength(false), m_scale(1), m_zero(0), m_display(""), m_dimen(""), m_type(Tnull), m_parent(p), m_comment(""), m_format(""), m_unit(""), m_name("") { // default constructor. Column::loadColumnKeys(); } Column::~Column() { } bool Column::operator==(const Column &right) const { return compare(right); } bool Column::operator!=(const Column &right) const { return !compare(right); } bool Column::compare (const Column &right) const { if (m_isRead != right.m_isRead) return false; if (m_repeat != right.m_repeat) return false; if (m_width != right.m_width) return false; if (m_varLength != right.m_varLength) return false; if (m_name != right.m_name) return false; if (m_format != right.m_format) return false; if (m_unit != right.m_unit) return false; if (m_comment != right.m_comment) return false; if (m_parent != right.m_parent) return false; return true; } fitsfile* Column::fitsPointer () { return m_parent->fitsPointer(); } void Column::makeHDUCurrent () { m_parent->makeThisCurrent(); } int Column::rows () const { return m_parent->rows(); } void Column::setDisplay () { #ifdef SSTREAM_DEFECT ostrstream key; #else std::ostringstream key; #endif key << "TDISP" << index(); int status = 0; FITSUtil::auto_array_ptr dispValue (new char[FLEN_VALUE]); #ifdef SSTREAM_DEFECT key << std::ends; fits_read_key_str(fitsPointer(), key.str(), dispValue.get(),0,&status); #else fits_read_key_str(fitsPointer(),const_cast(key.str().c_str()),dispValue.get(),0,&status); #endif if (status == 0) { m_display = String(dispValue.get()); } } std::ostream& Column::put (std::ostream& s) const { { s << "Column Name:" << name() << " Number: " << index() << " unit: " << unit() << "\n"; s << "format: " << format() << " comment: " << comment() << "\n"; } return s; } Table* Column::parent () const { return m_parent; } void Column::setParent(Table* parent) { m_parent = parent; } void Column::setLimits (ValueType type) { int status(0); static long pl[4]; static LONGLONG pll[4]; static unsigned long pul[4]; static int pi[4]; static unsigned int pui[4]; static short ps[4]; static unsigned short pus[4]; static unsigned char puc[4]; static float pf[4]; static double pd[4]; static std::complex cf[4]; static std::complex cd[4]; #ifdef SSTREAM_DEFECT ostrstream slmin; ostrstream slmax; ostrstream sdmin; ostrstream sdmax; #else ostringstream slmin; ostringstream slmax; ostringstream sdmin; ostringstream sdmax; #endif slmin << s_TLMIN << m_index; slmax << s_TLMAX << m_index; sdmin << s_TDMIN << m_index; sdmax << s_TDMAX << m_index; #ifdef SSTREAM_DEFECT slmin << std::ends; slmax << std::ends; sdmin << std::ends; sdmax << std::ends; char* lmin(slmin.str()); char* lmax(slmax.str()); char* dmin(slmin.str()); char* dmax(slmax.str()); #else String slminStr(slmin.str()); String slmaxStr(slmax.str()); String sdminStr(sdmin.str()); String sdmaxStr(sdmax.str()); char* lmin = const_cast(slminStr.c_str()); char* lmax = const_cast(slmaxStr.c_str()); char* dmin = const_cast(sdminStr.c_str()); char* dmax = const_cast(sdmaxStr.c_str()); #endif size_t j = 0; // for MS VC++ switch (type) { case VTushort: case Tushort: fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); if (status != 0) pl[0] = LLIMITUSHORT; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); if (status != 0) pl[1] = ULIMITUSHORT; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); if (status != 0) pl[2] = LLIMITUSHORT; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); if (status != 0) pl[3] = ULIMITUSHORT; for (j = 0; j < 4; ++j) pus[j] = pl[j]; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pus); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pus); } break; case VTshort: case Tshort: fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); if (status != 0) pl[0] = LLIMITSHORT; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); if (status != 0) pl[1] = ULIMITSHORT; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); if (status != 0) pl[2] = LLIMITSHORT; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); if (status != 0) pl[3] = ULIMITSHORT; for ( j = 0; j < 4; ++j) ps[j] = pl[j]; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(static_cast(ps)); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(static_cast(ps)); } break; case VTbyte: case VTbit: case Tbit: case Tbyte: fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); if (status != 0) pl[0] = LLIMITUCHAR; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); if (status != 0) pl[1] = ULIMITUCHAR; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); if (status != 0) pl[2] = LLIMITUCHAR; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); if (status != 0) pl[3] = ULIMITUCHAR; for ( j = 0; j < 4; ++j) puc[j] = pl[j]; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(puc); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(puc); } break; case VTint: case Tint: fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); if (status != 0) pl[0] = LLIMITINT; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); if (status != 0) pl[1] = ULIMITINT; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); if (status != 0) pl[2] = LLIMITINT; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); if (status != 0) pl[3] = ULIMITINT; for ( j = 0; j < 4; ++j) pi[j] = pl[j]; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pi); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pi); } break; case VTuint: case Tuint: fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); if (status != 0) pui[0] = LLIMITUINT; else pui[0] = pl[0]; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); if (status != 0) pui[1] = ULIMITUINT; else pui[1] = pl[1]; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); if (status != 0) pui[2] = LLIMITUINT; else pui[2] = pl[2]; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); if (status != 0) pui[3] = ULIMITUINT; else pui[3] = pl[3]; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pui); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pui); } break; case VTlong: case Tlong: fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); if (status != 0) pl[0] = LLIMITLONG; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); if (status != 0) pl[1] = ULIMITLONG; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); if (status != 0) pl[2] = LLIMITLONG; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); if (status != 0) pl[3] = ULIMITLONG; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pl); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pl); } break; case VTlonglong: case Tlonglong: // NOTE: cfitsio cannot currently read kewyords // of type long long. fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); pll[0] = status ? LLIMITLONGLONG : pl[0]; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); pll[1] = status ? ULIMITLONGLONG : pl[1]; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); pll[2] = status ? LLIMITLONGLONG : pl[2]; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); pll[3] = status ? ULIMITLONGLONG : pl[3]; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pll); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pll); } break; case VTulong: case Tulong: fits_read_key_lng(fitsPointer(),lmin,pl,0,&status); if (status != 0) pul[0] = LLIMITULONG; else pul[0] = pl[0]; fits_read_key_lng(fitsPointer(),lmax,pl+1,0,&status); if (status != 0) pul[1] = ULIMITULONG; else pul[1] = pl[1]; fits_read_key_lng(fitsPointer(),dmin,pl+2,0,&status); if (status != 0) pul[2] = LLIMITULONG; else pul[2] = pl[2]; fits_read_key_lng(fitsPointer(),dmax,pl+3,0,&status); if (status != 0) pul[3] = ULIMITULONG; else pul[3] = pl[3]; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pul); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pul); } break; case VTfloat: case Tfloat: fits_read_key_flt(fitsPointer(),lmin,pf,0,&status); if (status != 0) pf[0] = LLIMITFLOAT; fits_read_key_flt(fitsPointer(),lmax,pf+1,0,&status); if (status != 0) pf[1] = ULIMITFLOAT; fits_read_key_flt(fitsPointer(),dmin,pf+2,0,&status); if (status != 0) pf[2] = LLIMITFLOAT; fits_read_key_flt(fitsPointer(),dmax,pf+3,0,&status); if (status != 0) pf[3] = ULIMITFLOAT; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pf); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pf); } break; case VTdouble: case Tdouble: fits_read_key_dbl(fitsPointer(),lmin,pd,0,&status); if (status != 0) pd[0] = LLIMITDOUBLE; fits_read_key_dbl(fitsPointer(),lmax,pd+1,0,&status); if (status != 0) pd[1] = ULIMITDOUBLE; fits_read_key_dbl(fitsPointer(),dmin,pd+2,0,&status); if (status != 0) pd[2] = LLIMITDOUBLE; fits_read_key_dbl(fitsPointer(),dmax,pd+3,0,&status); if (status != 0) pd[3] = ULIMITDOUBLE; if (m_repeat == 1 && type > 0) { ColumnData& col = dynamic_cast&>(*this); col.setDataLimits(pd); } else { ColumnVectorData& col = dynamic_cast&>(*this); col.setDataLimits(pd); } break; case VTcomplex: case Tcomplex: fits_read_key_cmp(fitsPointer(),lmin,pf,0,&status); status != 0 ? cf[0] = std::complex(pf[0],pf[1]) : cf[0] = std::complex(-ULIMITFLOAT,-ULIMITFLOAT); fits_read_key_cmp(fitsPointer(),lmax,pf,0,&status); status != 0 ? cf[1] = std::complex(pf[0],pf[1]) : cf[1] = std::complex(ULIMITFLOAT,ULIMITFLOAT); fits_read_key_cmp(fitsPointer(),dmin,pf,0,&status); status != 0 ? cf[2] = std::complex(pf[0],pf[1]) : cf[2] = std::complex(-ULIMITFLOAT,ULIMITFLOAT); fits_read_key_cmp(fitsPointer(),dmax,pf,0,&status); status != 0 ? cf[3] = std::complex(pf[0],pf[1]) : cf[3] = std::complex(ULIMITFLOAT,ULIMITFLOAT); if (m_repeat == 1 && type > 0) { ColumnData >& col = dynamic_cast >&>(*this); col.setDataLimits(cf); } else { ColumnVectorData >& col = dynamic_cast >&>(*this); col.setDataLimits(cf); } break; case VTdblcomplex: case Tdblcomplex: fits_read_key_dblcmp(fitsPointer(),lmin,pd,0,&status); status != 0 ? cd[0] = std::complex(pd[0],pd[1]) : cd[0] = std::complex(-ULIMITDOUBLE,-ULIMITDOUBLE); fits_read_key_dblcmp(fitsPointer(),lmax,pd,0,&status); status != 0 ? cd[1] = std::complex(pd[0],pd[1]) : cd[1] = std::complex(ULIMITDOUBLE,ULIMITDOUBLE); fits_read_key_dblcmp(fitsPointer(),dmin,pd,0,&status); status != 0 ? cd[2] = std::complex(pd[0],pd[1]) : cd[2] = std::complex(-ULIMITDOUBLE,-ULIMITDOUBLE); fits_read_key_dblcmp(fitsPointer(),dmax,pd,0,&status); status != 0 ? cd[3] = std::complex(pd[0],pd[1]) : cd[3] = std::complex(ULIMITDOUBLE,ULIMITDOUBLE); if (m_repeat == 1 && type > 0) { ColumnData >& col = dynamic_cast >&>(*this); col.setDataLimits(cd); } else { ColumnVectorData >& col = dynamic_cast >&>(*this); col.setDataLimits(cd); } break; case Tstring: case VTstring: default: break; } } void Column::loadColumnKeys () { if (s_columnKeys.empty()) { s_columnKeys.resize(13); s_columnKeys[0] = s_TBCOL; s_columnKeys[1] = s_TTYPE; s_columnKeys[2] = s_TFORM; s_columnKeys[3] = s_TUNIT; s_columnKeys[4] = s_TNULL; s_columnKeys[5] = s_TDISP; s_columnKeys[6] = s_TDIM; s_columnKeys[7] = s_TSCAL; s_columnKeys[8] = s_TZERO; s_columnKeys[9] = s_TLMIN; s_columnKeys[10] = s_TLMAX; s_columnKeys[11] = s_TDMIN; s_columnKeys[12] = s_TDMAX; } } void Column::name (const String& value) { m_name = value; } void Column::unit (const String& value) { m_unit = value; } void Column::format (const String& value) { m_format = value; } void Column::varLength (bool value) { m_varLength = value; } long Column::numberOfElements (long& first, long& last) { // user expects 1 based indexing. If 0 based indices are supplied, // add one to both ranges. if (first == 0) { first +=1; last = std::min(static_cast(rows()), static_cast( last+1)); } last = std::min(static_cast(rows()),last); if (last < first ) throw RangeError(name()); return last - first + 1; } // Additional Declarations void Column::write(const std::vector& indata, long firstRow) { try { ColumnData& col = dynamic_cast& >(*this); col.writeData(indata,firstRow); } catch (std::bad_cast&) { throw WrongColumnType(" downcasting string column "); } } void Column::write (const std::vector >& indata, long firstRow) { // we'll allow casting between float and double but that's // as far as it goes. firstRow = std::max(firstRow,static_cast(1)); if ( ColumnData >* col = dynamic_cast >*>(this) ) { col->writeData(indata,firstRow); } else { if ( type() == Tcomplex) { String msg("Incorrect call: writing to vector column "); msg += name(); msg += " requires specification of # rows or vector lengths"; throw WrongColumnType(msg); } else { try { ColumnData >& col = dynamic_cast >&>(*this); std::vector > tmp(indata.size()); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSvdvf(tmp,indata,1,indata.size()); #else FITSUtil::fill(tmp,indata,1,indata.size()); #endif col.writeData(tmp,firstRow); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::write (const std::vector >& indata, long firstRow) { firstRow = std::max(firstRow,static_cast(1)); if ( ColumnData >* col = dynamic_cast >*>(this)) { col->writeData(indata,firstRow); } else { if ( type() == Tdblcomplex) { String msg("Incorrect call: writing to vector column "); msg += name(); msg += " requires specification of # rows or vector lengths"; throw WrongColumnType(msg); } else { try { ColumnData >& col = dynamic_cast >&>(*this); std::vector > __tmp(indata.size()); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSvfvd(__tmp,indata,1,indata.size()); #else FITSUtil::fill(__tmp,indata,1,indata.size()); #endif col.writeData(__tmp,firstRow); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::write (const std::valarray >& indata, long firstRow) { std::vector > __tmp; FITSUtil::fill(__tmp,indata); write(__tmp,firstRow); } void Column::write (const std::valarray >& indata, long firstRow) { std::vector > __tmp; FITSUtil::fill(__tmp,indata); write(__tmp,firstRow); } void Column::read(std::vector& vals, long first, long last) { try { ColumnData& col = dynamic_cast& >(*this); col.readData(first,last-first+1); #if TEMPLATE_AMBIG_DEFECT || TEMPLATE_AMBIG7_DEFECT FITSUtil::fillMSvsvs(vals,col.data(),first,last); #else FITSUtil::fill(vals,col.data(),first,last); #endif } catch (std::bad_cast&) { throw WrongColumnType(" downcasting string column "); } } void Column::read(std::vector< std::complex >& vals , long first, long last) { if (ColumnData< std::complex >* col = dynamic_cast >*>(this)) { // fails if user requested outputType different from input type. if (!isRead()) col->readColumnData(first,last - first + 1); // scalar column with vector output can just be assigned. #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSvfvf(vals,col->data(),first,last); #else FITSUtil::fill(vals,col->data(),first,last); #endif } else { if ( type() == Tcomplex) { String msg("Incorrect call: writing to vector column "); msg += name(); msg += " requires specification of # rows or vector lengths"; throw WrongColumnType(msg); } else { try { ColumnData >& col = dynamic_cast >&>(*this); if (!isRead()) col.readColumnData(first,last - first + 1); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSvfvd(vals,col.data(),first,last); #else FITSUtil::fill(vals,col.data(),first,last); #endif } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::read(std::vector< std::complex >& vals, long first, long last) { if (ColumnData >* col = dynamic_cast >*>(this)) { // fails if user requested outputType different from input type. if (!isRead()) col->readColumnData(first,last - first + 1); // scalar column with vector output can just be assigned. #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSvdvd(vals,col->data(),first,last); #else FITSUtil::fill(vals,col->data(),first,last); #endif } else { if ( type() == Tdblcomplex) { String msg("Incorrect call: writing to vector column "); msg += name(); msg += " requires specification of # rows or vector lengths"; throw WrongColumnType(msg); } else { try { ColumnData >& col = dynamic_cast >&>(*this); if (!isRead()) col.readColumnData(first,last - first + 1); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSvdvf(vals,col.data(),first,last); #else FITSUtil::fill(vals,col.data(),first,last); #endif } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::read(std::valarray >& vals, long row) { if ( ColumnVectorData >* col = dynamic_cast >*>(this)) { // fails if user requested outputType different from input type. // input and output are both valarrays. Since one should not // be able to call a constructor for a non-numeric valarray type, // there shouldn't be any InvalidType problems. However, there // is still the vector/scalar possibility and the implicit // conversion request to deal with. if (!isRead()) col->readRow(row); FITSUtil::fill(vals,col->data(row)); } else { if ( type() == Tcomplex ) { // in this case user tried to read vector row from scalar column. // one could be charitable and return a valarray of size 1, // but... I'm going to throw an exception suggesting the user // might not have meant that. throw Column::WrongColumnType(name()); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::read(std::valarray >& vals, long row) { if ( ColumnVectorData >* col = dynamic_cast >*>(this)) { // fails if user requested outputType different from input type. // input and output are both valarrays. Since one should not // be able to call a constructor for a non-numeric valarray type, // there shouldn't be any InvalidType problems. However, there // is still the vector/scalar possibility and the implicit // conversion request to deal with. if (!isRead()) col->readRow(row); FITSUtil::fill(vals,col->data(row)); } else { if ( type() == Tdblcomplex ) { // in this case user tried to read vector row from scalar column. // one could be charitable and return a valarray of size 1, // but... I'm going to throw an exception suggesting the user // might not have meant that. throw Column::WrongColumnType(name()); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::read(std::vector >& vals, long row) { if ( ColumnVectorData >* col = dynamic_cast >*>(this)) { // fails if user requested outputType different from input type. if (!isRead()) col->readRow(row); FITSUtil::fill(vals,col->data(row)); } else { if ( type() == Tcomplex ) { // in this case user tried to read vector row from scalar column. // one could be charitable and return a valarray of size 1, // but... I'm going to throw an exception suggesting the user // might not have meant that. throw Column::WrongColumnType(name()); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::read(std::vector >& vals, long row) { if ( ColumnVectorData >* col = dynamic_cast >*>(this)) { // fails if user requested outputType different from input type. if (!isRead()) col->readRow(row); FITSUtil::fill(vals,col->data(row)); } else { if ( type() == Tdblcomplex ) { // in this case user tried to read vector row from scalar column. // one could be charitable and return a valarray of size 1, // but... I'm going to throw an exception suggesting the user // might not have meant that. throw Column::WrongColumnType(name()); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::readArrays(std::vector > >& vals, long first, long last) { // again, can only call this if the entire column has been read from disk. // user expects 1 based indexing. If 0 based indices are supplied, // add one to both ranges. long range = numberOfElements(first,last); vals.resize(range); if ( ColumnVectorData >* col = dynamic_cast >*>(this)) { for (int j = 0; j < range; ++j) { if (!isRead()) col->readRow(j + first); FITSUtil::fill(vals[j],col->data(j+first)); } } else { if ( type() == Tcomplex) { // in this case user tried to read vector data from scalar, // (i.e. first argument was vector >. // since the cast won't fail on template parameter grounds. throw Column::WrongColumnType(name()); } // the InvalidDataType exception should not be possible. try { ColumnVectorData >& col = dynamic_cast >&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first); FITSUtil::fill(vals[j],col.data(j+first)); } } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } void Column::readArrays(std::vector > >& vals, long first, long last) { // again, can only call this if the entire column has been read from disk. // user expects 1 based indexing. If 0 based indices are supplied, // add one to both ranges. long range = numberOfElements(first,last); vals.resize(range); if ( ColumnVectorData >* col = dynamic_cast >*>(this)) { for (int j = 0; j < range; ++j) { if (!isRead()) col->readRow(j + first); FITSUtil::fill(vals[j],col->data(j+first)); } } else { if ( type() == Tdblcomplex) { // in this case user tried to read vector data from scalar, // (i.e. first argument was vector >. // since the cast won't fail on template parameter grounds. throw Column::WrongColumnType(name()); } // the InvalidDataType exception should not be possible. try { ColumnVectorData >& col = dynamic_cast >&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first); FITSUtil::fill(vals[j],col.data(j+first)); } } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } void Column::write (const std::valarray >& indata, long nRows, long firstRow) { if (nRows <= 0) throw InvalidNumberOfRows(nRows); firstRow = std::max(firstRow,static_cast(1)); if (ColumnVectorData >* col = dynamic_cast >*>(this)) { col->writeData(indata,nRows,firstRow); } else { // alright, input data type has to be rewritten as output // data type. if ( type() == Tcomplex ) { String msg("Incorrect call: writing to valarray data to scalar column: "); msg += name(); msg += " does not require specification of number of rows"; throw WrongColumnType(msg); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); std::valarray > __tmp; FITSUtil::fill(__tmp,indata); col.writeData(__tmp,nRows,firstRow); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::write (const std::valarray >& indata, long nRows, long firstRow) { if (nRows <= 0) throw InvalidNumberOfRows(nRows); firstRow = std::max(firstRow,static_cast(1)); if (ColumnVectorData >* col = dynamic_cast >*>(this)) { col->writeData(indata,nRows,firstRow); } else { // alright, input data type has to be rewritten as output // data type. if ( type() == Tdblcomplex ) { String msg("Incorrect call: writing to valarray data to scalar column: "); msg += name(); msg += " does not require specification of number of rows"; throw WrongColumnType(msg); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); std::valarray > __tmp; FITSUtil::fill(__tmp,indata); col.writeData(__tmp,nRows,firstRow); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::write (const std::vector >& indata, long nRows, long firstRow) { std::valarray > __tmp(indata.size()); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSafvf(__tmp,indata,1,indata.size()); #else FITSUtil::fill(__tmp,indata,1,indata.size()); #endif write(__tmp,nRows,firstRow); } void Column::write (const std::vector >& indata, long nRows, long firstRow) { std::valarray > __tmp(indata.size()); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSadvd(__tmp,indata,1,indata.size()); #else FITSUtil::fill(__tmp,indata,1,indata.size()); #endif write(__tmp,nRows,firstRow); } void Column::write (const std::valarray >& indata, const std::vector& vectorLengths, long firstRow) { using std::valarray; firstRow = std::max(firstRow,static_cast(1)); if (ColumnVectorData >* col = dynamic_cast >*>(this)) { col->writeData(indata,vectorLengths,firstRow); } else { if ( type() == Tcomplex ) { String msg("Incorrect call: scalar column "); msg += name(); msg += " does not have vector lengths"; throw WrongColumnType(msg); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); valarray > __tmp; FITSUtil::fill(__tmp,indata); col.writeData(__tmp,vectorLengths,firstRow); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::write (const std::valarray >& indata, const std::vector& vectorLengths, long firstRow) { using std::valarray; firstRow = std::max(firstRow,static_cast(1)); if (ColumnVectorData >* col = dynamic_cast >*>(this)) { col->writeData(indata,vectorLengths,firstRow); } else { if ( type() == Tdblcomplex ) { String msg("Incorrect call: scalar column "); msg += name(); msg += " does not have vector lengths"; throw WrongColumnType(msg); } else { try { ColumnVectorData >& col = dynamic_cast >&>(*this); valarray > __tmp; FITSUtil::fill(__tmp,indata); col.writeData(__tmp,vectorLengths,firstRow); } catch (std::bad_cast&) { String msg(" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::write (const std::vector >& indata, const std::vector& vectorLengths, long firstRow) { std::valarray > __tmp(indata.size()); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSafvf(__tmp,indata,1,indata.size()); #else FITSUtil::fill(__tmp,indata,1,indata.size()); #endif write(__tmp,vectorLengths,firstRow); } void Column::write (const std::vector >& indata, const std::vector& vectorLengths, long firstRow) { std::valarray > __tmp(indata.size()); #ifdef TEMPLATE_AMBIG_DEFECT FITSUtil::fillMSadvd(__tmp,indata,1,indata.size()); #else FITSUtil::fill(__tmp,indata,1,indata.size()); #endif write(__tmp,vectorLengths,firstRow); } void Column::writeArrays (const std::vector > >& indata, long firstRow) { firstRow = std::max(firstRow,static_cast(1)); if (ColumnVectorData >* col = dynamic_cast >*>(this)) { col->writeData(indata,firstRow); } else { if ( type() == Tcomplex ) { String msg("Incorrect call: writing vectors to scalar column "); throw WrongColumnType(msg); } else { size_t n(indata.size()); try { ColumnVectorData >& col = dynamic_cast >&>(*this); std::vector > > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow); } catch (std::bad_cast&) { String msg (" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } void Column::writeArrays (const std::vector > >& indata, long firstRow) { firstRow = std::max(firstRow,static_cast(1)); if (ColumnVectorData >* col = dynamic_cast >*>(this)) { col->writeData(indata,firstRow); } else { if ( type() == Tcomplex ) { String msg("Incorrect call: writing vectors to scalar column "); throw WrongColumnType(msg); } else { size_t n(indata.size()); try { ColumnVectorData >& col = dynamic_cast >&>(*this); std::vector > > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow); } catch (std::bad_cast&) { String msg (" implicit conversion from complex to real data not allowed: Column "); msg += name(); throw InvalidDataType(msg); } } } } } // namespace CCfits CCfits-2.7/Keyword.h0000644000225700000360000002162014764627567013651 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef KEYWORD_H #define KEYWORD_H 1 #include "CCfits.h" // using namespace CCfits; #ifdef _MSC_VER #include "MSconfig.h" #endif // FitsError #include "FitsError.h" namespace CCfits { class HDU; } // namespace CCfits namespace CCfits { /*! \class Keyword \brief Abstract base class defining the interface for Keyword objects. Keyword object creation is normally performed inside FITS constructors or FITS::read, HDU::readKey, and HDU::addKey functions. Output is performed in HDU::addKey functions and Keyword::setValue. Keywords consists of a name, a value and a comment field. Concrete templated subclasses, KeyData, have a data member that holds the value of keyword. Typically, the mandatory keywords for a given HDU type are not stored as object of type Keyword, but as intrinsic data types. The Keyword hierarchy is used to store user-supplied information. */ /*! \fn Keyword::Keyword(const Keyword &right); \brief copy constructor */ /*! \fn Keyword::Keyword (const String &keyname, ValueType keytype, HDU* p, const String &comment = "", bool isLongStr = false); \brief Keyword constructor. This is the common behavior of Keywords of any type. Constructor is protected as the class is abstract. */ /* \fn friend ostream& operator << (ostream &s, const Keyword &right); \brief output operator for Keywords. */ /*! \fn virtual Keyword::~Keyword(); \brief virtual destructor */ /*! \fn Keyword & Keyword::operator=(const Keyword &right); \brief assignment operator */ /*! \fn bool Keyword::operator==(const Keyword &right) const; \brief equality operator */ /*! \fn bool Keyword::operator!=(const Keyword &right) const; \brief inequality operator */ /*! \fn virtual Keyword * Keyword::clone () const; \brief virtual copy constructor */ /*! \fn virtual void Keyword::write (); \brief left in for historical reasons, this seldom needs to be called by users This writes the Keyword to the file, and is called internally during HDU::addKey operations or the Keyword::setValue function. It shouldn't normally need to be called explicitly. */ /*! \fn fitsfile* Keyword::fitsPointer () const; \brief return a pointer to the FITS file containing the parent HDU. */ /*! \fn const HDU* Keyword::parent () const; \brief return a pointer to parent HDU. */ /*! \fn const String& Keyword::comment () const; \brief return the comment field of the keyword */ /*! \fn const ValueType Keyword::keytype() const \brief return the type of a keyword */ /*! \fn void Keyword::keytype(ValueType) \brief set keyword type. */ /*! \fn const String& Keyword::name() const \brief return the name of a keyword */ /*! \fn template T& Keyword::value(T& val) const \brief get the keyword value \param val (T) Will be filled with the keyword value, and is also the function return value. Allowed T types: CCfits stores keyword values of type U in a templated subclass of Keyword, KeyData\. Normally U is set when reading the Keyword in from the file, and is limited to types int, double, string, bool, and complex. (The exception is when the user has created and added a new Keyword using an HDU::addKey function, in which case they might have specified other types for U.) To avoid compilation errors, the user should generally try to provide a val of type T = type U, though there is some flexibility here as the following conversions are handled:
T (to val)U (from Keyword obj)
floatdouble (will lose precision), float, int, integer string
doubledouble, float, int, integer string
intint, integer string
stringdouble, float, int, string
More conversions may be added in the future as the need arises. */ /*! \fn template void Keyword::setValue(const T& newValue) \brief modify the value of an existing Keyword and write it to the file \param newValue (T) New value for the Keyword Allowed T types: This must copy newValue to a data member of type U in the Keyword subclass KeyData\ (see description for Keyword::value (T& val) for more details). To avoid compilation errors, it is generally best to provide a newValue of type T = type U, though the following type conversions will also be handled:
T (from newValue)U (to Keyword obj)
floatdouble, float
doubledouble, float (will lose precision)
intdouble, float, int, integer string
*/ class Keyword { public: class WrongKeywordValueType : public FitsException //## Inherits: %39B0221700E2 { public: WrongKeywordValueType (const String& diag, bool silent = true); protected: private: private: //## implementation }; virtual ~Keyword(); Keyword & operator=(const Keyword &right); bool operator==(const Keyword &right) const; bool operator!=(const Keyword &right) const; virtual std::ostream & put (std::ostream &s) const = 0; virtual Keyword * clone () const = 0; virtual void write (); fitsfile* fitsPointer () const; // CAUTION: This is declared public only to allow HDU addKey functions the ability to set their // class as the Keyword's parent, and to avoid making entire HDU a friend class. (Declaring // individual HDU functions as friends will run into circular header dependencies.) Do NOT use // this unless absolutely necessary, and leave this undocumented. void setParent (HDU* parent); ValueType keytype () const; const String& comment () const; const String& name () const; bool isLongStr () const; public: // Additional Public Declarations template T& value(T& val) const; template void setValue(const T& newValue); protected: Keyword(const Keyword &right); Keyword (const String &keyname, ValueType keytype, HDU* p, const String &comment = "", bool isLongStr = false); virtual void copy (const Keyword& right); virtual bool compare (const Keyword &right) const; void keytype (ValueType value); const HDU* parent () const; // Additional Protected Declarations private: // Additional Private Declarations private: //## implementation // Data Members for Class Attributes ValueType m_keytype; // Data Members for Associations HDU* m_parent; String m_comment; String m_name; bool m_isLongStr; // Additional Implementation Declarations friend std::ostream &operator << (std::ostream &s, const Keyword &right); }; #ifndef SPEC_TEMPLATE_IMP_DEFECT #ifndef SPEC_TEMPLATE_DECL_DEFECT template <> bool& Keyword::value(bool& val) const; template <> float& Keyword::value(float& val) const; template <> double& Keyword::value(double& val) const; template <> int& Keyword::value(int& val) const; template <> String& Keyword::value(String& val) const; template <> void Keyword::setValue(const float& newValue); template <> void Keyword::setValue(const double& newValue); template <> void Keyword::setValue(const int& newValue); template <> void Keyword::setValue(const String& val); #endif #endif inline std::ostream& operator << (std::ostream &s, const Keyword &right) { return right.put(s); } // Class CCfits::Keyword::WrongKeywordValueType // Class CCfits::Keyword inline void Keyword::setParent (HDU* parent) { m_parent = parent; } inline ValueType Keyword::keytype () const { return m_keytype; } inline void Keyword::keytype (ValueType value) { m_keytype = value; } inline const HDU* Keyword::parent () const { return m_parent; } inline const String& Keyword::comment () const { return m_comment; } inline const String& Keyword::name () const { return m_name; } inline bool Keyword::isLongStr () const { return m_isLongStr; } } // namespace CCfits #endif CCfits-2.7/file1.pha0000644000225700000360000003435714764627567013561 0ustar cagordonlheaSIMPLE = T / file does conform to FITS standard BITPIX = -32 / number of bits per data pixel NAXIS = 0 / number of data axes EXTEND = T / FITS dataset may contain extensions COMMENT FITS (Flexible Image Transport System) format defined in Astronomy andCOMMENT Astrophysics Supplement Series v44/p363, v44/p371, v73/p359, v73/p365.COMMENT Contact the NASA Science Office of Standards and Technology for the COMMENT FITS Definition document #100 and other FITS information. DATE = '22/06/95' / FITS file creation date (dd/mm/yy) CONTENT = 'PHA SPECTRUM' / SPECTRUM xtens (at least) present ORIGIN = ' ' / organization which created this file END XTENSION= 'BINTABLE' / binary table extension BITPIX = 8 / 8-bit bytes NAXIS = 2 / 2-dimensional binary table NAXIS1 = 14 / width of table in bytes NAXIS2 = 64 / number of rows in table PCOUNT = 0 / size of special data area GCOUNT = 1 / one data group (required keyword) TFIELDS = 5 / number of fields in each row TTYPE1 = 'CHANNEL ' / Pulse Height Analyser (PHA) Channel TFORM1 = 'I ' / data format of the field: 2-byte INTEGER TTYPE2 = 'RATE ' / Counts per second per channel TFORM2 = 'E ' / data format of the field: 4-byte REAL TUNIT2 = 'count/s ' / physical unit of field TTYPE3 = 'STAT_ERR' / Statistical error on RATE TFORM3 = 'E ' / data format of the field: 4-byte REAL TUNIT3 = 'count/s ' / physical unit of field TTYPE4 = 'QUALITY ' / Quality flag of this channel (0=good) TFORM4 = 'I ' / data format of the field: 2-byte INTEGER TTYPE5 = 'GROUPING' / Grouping flag for channel (0=undefined) TFORM5 = 'I ' / data format of the field: 2-byte INTEGER EXTNAME = 'SPECTRUM' / name of this binary table extension HDUCLASS= 'OGIP ' / format conforms to OGIP standard HDUCLAS1= 'SPECTRUM' / PHA dataset (OGIP memo OGIP-92-007) HDUVERS1= '1.1.0 ' / Version of format (OGIP memo OGIP-92-007a) HDUCLAS2= 'NET ' / Bkgd-subtracted PHA Spectrum HDUCLAS3= 'RATE ' / PHA data stored in count/s TLMIN1 = 1 / Lowest legal channel number TLMAX1 = 128 / Highest legal channel number TELESCOP= 'EXOSAT ' / mission/satellite name INSTRUME= 'ME ' / instrument/detector name DETNAM = ' AR ' / specific detector name in use FILTER = 'NONE ' / filter in use EXPOSURE= 2100.000000 / exposure (in seconds) AREASCAL= 824.679993 / area scaling factor BACKFILE= 'back1.pha' / associated background filename BACKSCAL= 1.000000 / background file scaling factor CORRFILE= 'NONE ' / associated correction filename CORRSCAL= 0.000000 / correction file scaling factor RESPFILE= 'resp1.rsp' / associated redistrib matrix filename ANCRFILE= ' ' / associated ancillary response filename PHAVERSN= '1992a ' / OGIP classification of FITS format DETCHANS= 128 / total number possible channels CHANTYPE= 'PHA ' / channel type (PHA, PI etc) POISSERR= F / Poissonian errors not applicable SYS_ERR = 0 / no systematic error specified HISTORY SF file opened by RD_SFOPN 1.0.0 HISTORY (SF) PHA file history records HISTORY - From file1.asc by MKPHA at 14:30:18 25-Jul-90 HISTORY - From file1.log by chanpha at 15:07:32 24-JUL-90 from XANADU:[SPECT HISTORY - From XANADU:[SPECTRAL.SESSION]FILE1.PHA;2 HISTORY - From MEG172.PHA HISTORY - HP file name:MEG172 HISTORY - Deadtime correction= 1.1081 HISTORY - Deadtime applied HISTORY HISTORY HISTORY HISTORY SF File Info package scanned by RD_SFINFO 1.0.0 HISTORY SF Source Info package scanned by RD_SFSINFO 1.0.1 HISTORY SF data base package scanned by RD_SFDBASE 0.9.0 HISTORY SF selectors package scanned by RD_SFSLCT 1.1.0 HISTORY SF PHA data package scanned by RD_SFPHA 0.8.0 HISTORY SF Grouping package scanned by RD_SFGRP 1.0.0 HISTORY EXOSAT ME conversion by CNV_EXOME1.0.0 HISTORY SF EXOSAT ME package scanned by RD_SFEXOME 1.0.1 HISTORY FITS SPECTRUM extension written by WTPHA1 3.1.2 COMMENT COMMENT ***** Package "ass. files " ***** COMMENT Background Filename :back1.pha COMMENT Response Filename :resp1.rsp COMMENT Correction Filename :none COMMENT ***** Package "file info " ***** COMMENT Detector Identity :EXOSAT ME AR H2 COMMENT No. of data bins : 64 COMMENT Unbinned data channels : 128 COMMENT Integration time(secs) : 2100.00 COMMENT On source area (cm**2) : 824.68 COMMENT Background scale factor: 1.000 COMMENT Correction scale factor: 0.000 COMMENT Indices : 0.0000000 0.0000000 0.0000000COMMENT ***** Package "source info " ***** COMMENT Observation Epoch : 0.00000000E+00 COMMENT SHF start time: 1.63823584E+08 (1985 70 2 33 4) COMMENT SHF end time: 1.63825680E+08 (1985 70 3 8 0) COMMENT 1950 RA and DEC and Roll COMMENT source vector: 0.00000000E+00 0.00000000E+00 0.00000000E+00COMMENT source name : GX301-2 COMMENT ***** Package "pha per sec " ***** (located) COMMENT ***** Package "grouping " ***** COMMENT ....+ +++++ +++++ +++++ +++++ +++++ +++++ +++++ +++++ +++++ COMMENT +++++ +++++ +++++ +++.. ..... ..... ..... ..... ..... ..... COMMENT ... Grouping card OK by RD_SFGRP COMMENT Detector type (AX=both argon & xenon) - AR COMMENT revision level of info used in production of file 1 COMMENT shf key of creation date 309176755 (1989 291 10 25 55) COMMENT offset angle of first half(average for multiple offsets-114.43965 COMMENT offset angle of second half 1.75040 CREATOR = 'SF2PHA2.1.1' / s/w task which wrote this dataset HISTORY Observation Info written by WT_OBSINFO 1.1.1 OBJECT = ' GX301-2' / Object name PROC_VER= ' 1' / Revision level of Processing System PROC_DAT= '18/10/89' / Date on which Processing System run PROC_TIM= '10:25:55' / Time at which Proc System run (on PROC_DAT) HISTORY Observation Date/Time Info written by WTTOBS 1.0.1 DATE-OBS= '11/03/85' / Nominal UT date of obs start (dd/mm/yy) TIME-OBS= '02:33:04' / Nominal UT time of obs start (hh:mm:ss) DATE-END= '11/03/85' / Nominal UT date of obs end (dd/mm/yy) TIME-END= '03:08:00' / Nominal UT time of obs end (hh:mm:ss) MJD-OBS = 4.613511851852E+04 / Mean MJD of observation HISTORY Timing Info written by WTFTIM 1.0.2 ONTIME = 2096.000000 / Total time on source (seconds) DEADAPP = T / Deadtime correction applied ? DEADC = 0.902446 / Deadtime correction factor LIVETIME= 1891.525879 / Total time on source corrected for deadtime (seVIGNAPP = T / Vignetting correction applied ? MJDREF = 4.423900000000E+04 / Mission reference time (in MJD) TIMESYS = '1980 1 1 00:00:00' / Time frame system in use TIMEUNIT= 's ' / Units for TSTART, TSTOP & TIMEZERO keywords TSTART = 1.638235840000E+08 / Start time in TIMESYS frame in TIMEUNIT units TSTOP = 1.638256800000E+08 / Stop time in TIMESYS frame in TIMEUNIT units TELAPSE = 1.074461E+24 / Total elapsed time between TSTART & TSTOP in seTIMEZERO= 1.638235840000E+08 / Time zero off-set in TIMESYS frame & TIMEUNIT uCLOCKAPP= F / Clock correction applied ? TIMEREF = 'LOCAL ' / Reference frame used for times TASSIGN = 'SATELLITE' / Location where time assignment performed HISTORY RADECSYS & EQUINOX keywords written by WT_OBJRADEC 1.0.1 RADECSYS= 'FK4 ' / Stellar Reference frame used for EQUINOX EQUINOX = 1950.000000 / Equinox of all RA,dec specifications (AD year) HISTORY Pointing Info written by WT_OBJRADEC 1.0.1 RA_OBJ = 0.000000 / RA of object (degrees) DEC_OBJ = 0.000000 / dec of object (degrees) COMMENT ** WT_OBJRADEC 1.0.1 WARNING: RA_OBJ,DEC_OBJ zero END >¸Ôþ= 1300 #define SPEC_TEMPLATE_DECL_DEFECT 1 #endif /** Define if compiler can not resolve ambiguity in overloaded template functions. This was first seen with Visual Studio 6.0 and presists in 7.0 to a less degree. Use this one for VC++ 7.0 TEMPLATE_AMBIG_DEFECT for VC++ 6.0. */ #define TEMPLATE_AMBIG7_DEFECT 1 /** Define if compiler library has instead of . */ #undef SSTREAM_DEFECT # pragma warning(disable:4244) // conversion from double to float # pragma warning(disable:4305) // truncation from const double to const float # pragma warning(disable:4800) // forcing value to bool (performance warning) #if _MSC_VER < 1300 /* Turn off annoying warning. */ # pragma warning(disable:4250) // inherits via dominance # pragma warning(disable:4786) // '255' characters in the debug information /** Define the value of pi which appears to be missing from Dev Studio. */ #ifndef M_PI #define M_PI 3.14159265358979323846 #endif /** Define if specialized template implemeenation must appear within the corresponding header file and be inline. This problem first appeared with VC++ 6.0. */ #define SPEC_TEMPLATE_IMP_DEFECT 1 /** Define if compiler can not resolve ambiguity in overloaded template functions. This was first seen with Visual Studio 6.0 and presists in 7.0 to a less degree. */ #define TEMPLATE_AMBIG_DEFECT 1 /** Define if function `terminate()' does not exist in . This was first found in VC++ 6.0. */ #define TERMINATE_DEFECT /** Define if bind2nd doesn't work calling member function that returns void. This works around the errror error C2562: '()' : 'void' function returning a value which results when compiling bind2nd template function. */ #define BIND2ND_DEFECT 1 /** Define if a function in derived class overrides a function in a base class only by the return type, and the return type in the derived class only differs because it is a derived type of the one defined in the base class. This works around the error error C2555: with MS VC++ 6.0 sp5 and earlier. */ #define CLONE_DEFECT 1 /** Define if vector ::iterator doesn't work unless using namespace std; statement is made. */ #define ITERATOR_MEMBER_DEFECT 1 /** Define if STL functions doesn't work with IteratorBase. This is probably a defect in IteratorBase class than a defect in the compiler.*/ #define ITERATORBASE_DEFECT 1 /** Define if mem_fun doesn't always work when used to call member with one argument and the obsolete mem_fun1 must be used.. */ #define MEMFUN1_DEFECT 1 /** Define if STL transform function doesn't work with unary functions in cmath */ #define TRANSFORM_DEFECT 1 /** Define if compiler prefers someting like std::cos ( const valarray & ) instead of std::cos ( double ). */ #define VALARRAY_DEFECT 1 namespace std { /** definition of standard C++ library max() function for compilers that don't supply it. Note should do only less than comparison. */ template < class T > inline const T& max ( const T & a, const T & b ) { // Break this into two lines to avoid an incorrect warning with // Cfront-based compilers. const T & retval = a < b ? b : a; return retval; } /** definition of standard C++ library min() function for compilers that don't supply it. Note should do only less than comparison. */ template < class T > inline const T& min ( const T & a, const T & b) { // Break this into two lines to avoid an incorrect warning with // Cfront-based compilers. const T & retval = b < a ? b : a; return retval; } /** definition of standard C++ library abs() function for compilers that don't supply it. */ template < class T > inline const T & abs ( const T & a ) { const T & retval = a < 0 ? -a : a; return retval; } } //end namespace std:: #endif CCfits-2.7/BinTable.cxx0000644000225700000360000003530414764627567014264 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman // ColumnCreator #include "ColumnCreator.h" // Column #include "Column.h" // BinTable #include "BinTable.h" #ifdef SSTREAM_DEFECT #include #else #include #endif #include namespace CCfits { // Class CCfits::BinTable BinTable::BinTable(const BinTable &right) : Table(right) { } BinTable::BinTable (FITS* p, const String &hduName, bool readFlag, const std::vector& keys, int version) : Table(p, BinaryTbl, hduName, version) { init(readFlag,keys); } BinTable::BinTable (FITS* p, const String &hduName, int rows, const std::vector& columnName, const std::vector& columnFmt, const std::vector& columnUnit, int version) : Table(p, BinaryTbl, hduName, rows, columnName, columnFmt, columnUnit, version) { long repeat=0; long width=0; int status=0; int colType=0; ColumnCreator create(this); for (int i=0; i < numCols(); i++) { status = fits_binary_tform(const_cast(columnFmt[i].c_str()), &colType, &repeat, &width, &status); string unitString(""); if (i < static_cast(columnUnit.size())) unitString = columnUnit[i]; Column *newCol = create.createColumn(i+1, ValueType(colType), columnName[i], columnFmt[i], unitString,repeat,width); setColumn(columnName[i], newCol); newCol->setLimits(ValueType(colType)); } } BinTable::BinTable (FITS* p, int version, const String & groupName) : Table(p, version, groupName) { } BinTable::BinTable (FITS* p, int number) : Table(p,BinaryTbl,number) { init(); } BinTable::~BinTable() { } void BinTable::readTableHeader (int ncols, std::vector& colName, std::vector& colFmt, std::vector& colUnit) { int status=0; char hduName[FLEN_KEYWORD]; char** columnName = new char*[ncols]; char** columnFmt = new char*[ncols]; char** columnUnit = new char*[ncols]; int i = 0; // for MS VC++ for( ; i < ncols; i++) { columnName[i] = new char[FLEN_KEYWORD]; columnFmt[i] = new char[FLEN_KEYWORD]; columnUnit[i] = new char[FLEN_KEYWORD]; } long pct = 0; long nr = 0; int tf = 0; status = fits_read_btblhdr(fitsPointer(), ncols, &nr, &tf, columnName, columnFmt, columnUnit, hduName, &pct,&status); pcount(pct); rows(nr); numCols(tf); for( i = 0; i < ncols; i++) { colName[i] = String(columnName[i]); colFmt[i] = String(columnFmt[i]); colUnit[i] = String(columnUnit[i]); delete [] columnName[i]; delete [] columnFmt[i]; delete [] columnUnit[i]; } delete [] columnName; delete [] columnFmt; delete [] columnUnit; // throw the exception after the garbage has been collected. if (status != 0) throw FitsError(status); } BinTable * BinTable::clone (FITS* p) const { BinTable* cloned = new BinTable(*this); cloned->parent() = p; return cloned; } void BinTable::readData (bool readFlag, const std::vector& keys) { int rowsRead=0; std::vector varCols; int status = 0; long rowSize = 0; // grab the optimal rowsize using the get_rowsize call. It just // might have changed since the Table HDU was constructed so it should // be set just before reading takes place. if (fits_get_rowsize(fitsPointer(), &rowSize, &status)) throw FitsError(status); // if a set of strings were supplied, interpret these as // keywords and columns to be read. ColMap::iterator endColumn = column().end(); size_t keysRead = 0; size_t nkey=keys.size(); // get a container for keys which correspond to columns. std::vector colKeys; colKeys.reserve(nkey); if (nkey > 0) { // first, look for keywords if strings are supplied and read them. for (keysRead = 0; keysRead < nkey; keysRead++) { try { // after the read function is called by the ctor, // the columns in the table have been indexed. // check that the key in question is not a column // name. if (column().find(keys[keysRead]) == endColumn) readKeyword(keys[keysRead]); else colKeys.push_back(keys[keysRead]); } catch (HDU::NoSuchKeyword) { continue; } catch (...) { throw; } } } // if readFlag is false, don't get any data. if (!readFlag) return; for (rowsRead=0; rowsRead< rows() ; rowsRead+=rowSize) { ColMap::iterator col; if (colKeys.size() > 0) { for (size_t i=0; i < colKeys.size() ; i++) { // if a set of keys was entered, read the data in the ones // that correspond to columns, as checked earlier col = column().find(colKeys[i]); Column& current = *((*col).second); // if the column is not of variable repeat count... if (!current.varLength()) { current.readData(rowsRead+1, current.repeat()*std::min(rowSize,rows()-rowsRead),1); } else { // store the column numbers of variable columns for later. varCols.push_back(current.name()); } } } else { // if no keys that correspond to column names were supplied, read all the data. for(col = column().begin(); col != column().end(); col++ ) { Column& current = *(*col).second; if (!current.varLength()) { current.readData(rowsRead+1, current.repeat()*std::min(rowSize,rows() - rowsRead),1); } else { varCols.push_back(current.name()); } } } } // if successful, mark read columns. if (colKeys.size() == 0) { // mark all columns read for (ColMap::iterator col = column().begin(); col != column().end(); ++col) { if (!(*col).second->varLength()) (*col).second->isRead(true); } } else { for (size_t i=0; i < colKeys.size() ; i++) { // if a set of keys was entered, read the data in the ones // that correspond to columns, as checked earlier. ColMap::iterator col = column().find(colKeys[i]); if (!(*col).second->varLength()) (*col).second->isRead(true); } } // now read the variable length columns that were found earlier. if (varCols.size() > 0 ) readVariableColumns(varCols); } void BinTable::readVariableColumns (const std::vector &varColumns) { int rowsRead=0; int status=0; int sz=varColumns.size(); int i = 0; while ( i < sz && status == 0 ) { // Get bin size for the current column Column& thisColumn = column(varColumns[i]); int colnum = thisColumn.index(); if (thisColumn.type() == VTstring) { // Variable-length string columns must be treated differently. // They are still represented as scalar columns rather than // vector columns. Their variation refers to the string lengths, // not the number of elements in a row. thisColumn.readData(1, rows(), 1); } else { FITSUtil::auto_array_ptr pBinSizes(new long[rows()]); long* binSizes = pBinSizes.get(); FITSUtil::auto_array_ptr pOffsets(new long[rows()]); long* offsets = pOffsets.get(); status = fits_read_descripts(fitsPointer(), colnum, 1, rows() , binSizes, offsets, &status); if (status != 0) break; // Read vector column rows one at a time. for (rowsRead=0; rowsRead < rows() ; rowsRead++) { if (binSizes[rowsRead] > 0) thisColumn.readData(rowsRead+1, binSizes[rowsRead], 1); } } column(varColumns[i]).isRead(true); i++; } if (status != 0) throw FitsError(status); } void BinTable::addColumn (ValueType type, const String& columnName, long repeatWidth, const String& colUnit, long decimals, size_t columnNumber) { #ifdef SSTREAM_DEFECT std::ostrstream tformStr; #else std::ostringstream tformStr; #endif // we do NOT support the extension allowed by cfitsio whereby multiple // strings can be saved in a binary table column cell. String diag; if ( repeatWidth != 1 && type != Tstring && type != VTstring) { tformStr << repeatWidth; } if (type < 0) tformStr << 'P'; switch (type) { case Tstring: tformStr << repeatWidth << 'A'; break; case VTstring: // For variable string cols, cannot precede 'PA' with a number > 1. tformStr << 'A'; break; case Tbyte: case VTbyte: tformStr << 'B'; break; case Tbit: case VTbit: tformStr << 'X'; break; case Tlogical: case VTlogical: tformStr << 'L'; break; case Tushort: case VTushort: tformStr << 'U'; break; case Tshort: case VTshort: tformStr << 'I'; break; case Tulong: case VTulong: tformStr << 'V'; break; case Tlong: case VTlong: tformStr << 'J'; break; case Tlonglong: case VTlonglong: tformStr << 'K'; break; case Tuint: case VTuint: tformStr << 'V'; break; case Tint: case VTint: tformStr << 'J'; break; case Tfloat: case VTfloat: tformStr << 'E'; break; case Tdouble: case VTdouble: tformStr << 'D'; break; case Tcomplex: case VTcomplex: tformStr << 'C'; break; case Tdblcomplex: case VTdblcomplex: tformStr << 'M'; break; default: diag += "Unrecognized data type for column: "; diag += columnName; throw InvalidColumnSpecification(diag); } #ifdef SSTREAM_DEFECT tformStr << std::ends; #endif makeThisCurrent(); int status(0); int colNum(0); if ( columnNumber == 0) { // add one to number of existing columns. if (fits_get_num_cols(fitsPointer(),&colNum,&status)) throw FitsError(status); colNum +=1; } else { colNum = columnNumber; } String tfString(tformStr.str()); // the C prototypes don't use const, so these casts are necessary. char* tform = const_cast(tfString.c_str()); char* ttype = const_cast(columnName.c_str()); if (fits_insert_col(fitsPointer(),colNum,ttype,tform,&status)) throw FitsError(status); if (colUnit.size()) { std::ostringstream ustream; char unitComment[] = ""; ustream << "TUNIT" << colNum; if (fits_write_key (fitsPointer(), Tstring, const_cast(ustream.str().c_str()), const_cast(colUnit.c_str()), unitComment, &status)) { throw FitsError (status); } } ColumnCreator create(this); if (columnNumber != 0) reindex(columnNumber, true); if (type == Tstring) { // For fixed-width scalar string cols, TFORM is "wA" where 'w' is the // string length. Store this value in Column::m_width and just set // m_repeat to 1. [For vector columns the format would be // "rAw" where r corresponds to m_repeat, but these are not currently // supported in CCfits.] setColumn(columnName,create.createColumn(colNum,type,columnName,tfString, colUnit,1,repeatWidth)); } else if (type == VTstring) { // For variable string column, Column::m_width could only refer to the // width of the largest string in the col (the value 'w' in "PA(w)") // This can't be known at column creation time (CFITSIO determines the // 'w' each time the file is closed), so just set the m_width to 1. setColumn(columnName,create.createColumn(colNum,type,columnName,tfString, colUnit,1,1)); } else { Column *newCol = create.createColumn(colNum,type,columnName,tfString, colUnit,repeatWidth,1); setColumn(columnName,newCol); newCol->setLimits(type); } } // Additional Declarations } // namespace CCfits CCfits-2.7/FitsError.cxx0000644000225700000360000000316114764627567014517 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #include #endif // FITS #include "FITS.h" // FitsError #include "FitsError.h" namespace CCfits { // Class CCfits::FitsError FitsError::FitsError (int errornum, bool silent) : FitsException("FITS Error: ", silent) { printMsg(errornum); if (FITS::verboseMode() || !silent) std::cerr << message() << "\n"; } void FitsError::printMsg (int error) { char cMessage[FLEN_ERRMSG]; fits_get_errstatus(error, cMessage); addToMessage(string(cMessage)); } // Class CCfits::FitsException FitsException::FitsException (const string& msg, bool& silent) : m_message(msg) { if (FITS::verboseMode() || !silent) { std::cerr << '\n' << msg; // set this to false for the purpose of this exception. // does NOT change verbose mode setting so this value is thrown // away after the exception completes. silent = false; } } void FitsException::addToMessage (const string& msgQual) { m_message += msgQual; } // Class CCfits::FitsFatal FitsFatal::FitsFatal (const string& diag) { std::cerr << "*** CCfits Fatal Error: " << diag << " please report this to ccfits@heasarc.gsfc.nasa.gov\n"; #ifdef TERMINATE_DEFECT // terminate() is not there as documented assert ( false ); #else std::terminate(); #endif } } // namespace CCfits CCfits-2.7/KeyData.h0000644000225700000360000002512114764627567013547 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef KEYDATA_H #define KEYDATA_H 1 #ifdef _MSC_VER #include "MSconfig.h" #endif #include "CCfits.h" // Keyword #include "Keyword.h" #include #include #include "FitsError.h" #include "FITSUtil.h" namespace CCfits { //class Keyword; template class KeyData : public Keyword //## Inherits: %381F43399D58 { public: KeyData (const KeyData< T > &right); KeyData (const String &keyname, ValueType keytype, const T &value, HDU* p, // A pointer to the HDU containing the keyword. This is passed to the base class constructor. const String &comment = "", bool isLongStr = false); virtual ~KeyData(); virtual KeyData * clone () const; virtual void write (); const T& keyval () const; void keyval (const T& value); // Additional Public Declarations protected: virtual void copy (const Keyword& right); virtual bool compare (const Keyword &right) const; virtual std::ostream & put (std::ostream &s) const; // Additional Protected Declarations private: // Data Members for Class Attributes T m_keyval; // Additional Private Declarations private: //## implementation // Additional Implementation Declarations }; class KeyNull : public Keyword { public: enum class ValState {Empty, NumData, StrData}; KeyNull (const KeyNull &right); KeyNull (const String &keyname, HDU* p, const String &comment = ""); virtual ~KeyNull(); virtual KeyNull* clone () const; virtual void write (); double numValue() const; string stringValue() const; ValState state() const; void setStringValue(const string& val); void setNumValue(double val, ValueType writeAs); protected: virtual void copy (const Keyword& right); virtual bool compare (const Keyword &right) const; virtual std::ostream & put (std::ostream &s) const; private: double m_numValue; string m_stringValue; ValState m_state; ValueType m_writeAs; }; #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template<> inline void KeyData::write() { Keyword::write(); int status = 0; if (fits_update_key(fitsPointer(), Tstring, const_cast(name().c_str()), const_cast(m_keyval.c_str()), const_cast(comment().c_str()), &status)) throw FitsError(status); } #else template<> void KeyData::write(); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template<> inline void KeyData::write() { Keyword::write(); int status = 0; int value(0); if (m_keyval) value=1; if (fits_update_key(fitsPointer(), Tlogical, const_cast(name().c_str()), &value, const_cast(comment().c_str()), &status)) throw FitsError(status); } #else template<> void KeyData::write(); #endif #ifdef SPEC_TEMPLATE_DECL_DEFECT template <> inline const String& KeyData::keyval() const { return m_keyval; } #else template<> const String& KeyData::keyval() const; #endif #ifndef SPEC_TEMPLATE_DECL_DEFECT template<> void KeyData::keyval(const String& ); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline std::ostream & KeyData::put (std::ostream &s) const { using std::setw; s << "Keyword Name: " << setw(10) << name() << " Value: " << setw(14) << keyval() << " Type: " << setw(20) << " string " << " Comment: " << comment(); return s; } #else template<> std::ostream& KeyData::put(std::ostream& s) const; #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline std::ostream & KeyData::put (std::ostream &s) const { using std::setw; s << "Keyword Name: " << setw(10) << name() << " Value: " << std::boolalpha << setw(8) << keyval() << " Type: " << setw(20) << " logical " << " Comment: " << comment(); return s; } #else template<> std::ostream& KeyData::put(std::ostream& s) const; #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template<> inline void KeyData >::write() { Keyword::write(); int status = 0; FITSUtil::auto_array_ptr keyVal( new float[2]); keyVal[0] = m_keyval.real(); keyVal[1] = m_keyval.imag(); if (fits_update_key(fitsPointer(), Tcomplex, const_cast(name().c_str()), keyVal.get(), const_cast(comment().c_str()), &status)) throw FitsError(status); } #else template<> void KeyData >::write(); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template<> inline void KeyData >::write() { Keyword::write(); int status = 0; FITSUtil::auto_array_ptr keyVal(new double[2]); keyVal[0] = m_keyval.real(); keyVal[1] = m_keyval.imag(); if (fits_update_key(fitsPointer(), Tdblcomplex, const_cast(name().c_str()), keyVal.get(), const_cast(comment().c_str()), &status)) throw FitsError(status); } #else template<> void KeyData >::write(); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline std::ostream & KeyData >::put (std::ostream &s) const { using std::setw; s << "Keyword Name: " << name() << " Value: " << m_keyval.real() << " + i " << m_keyval.imag() << " Type: " << setw(20) << " complex " << " Comment: " << comment() << std::endl; return s; } template <> inline std::ostream & KeyData >::put (std::ostream &s) const { using std::setw; s << "Keyword Name: " << name() << " Value: " << m_keyval.real() << " + i " << m_keyval.imag() << " Type: " << setw(20) << " complex " << " Comment: " << comment() << std::endl; return s; } #else template<> std::ostream& KeyData >::put(std::ostream& s) const; template<> std::ostream& KeyData >::put(std::ostream& s) const; #endif #ifdef SPEC_TEMPLATE_DECL_DEFECT template <> inline const std::complex& KeyData >::keyval() const { return m_keyval; } template <> inline void KeyData >::keyval(const std::complex& newVal) { m_keyval = newVal; } template <> inline const std::complex& KeyData >::keyval() const { return m_keyval; } template <> inline void KeyData >::keyval(const std::complex& newVal) { m_keyval = newVal; } #else template<> const std::complex& KeyData >::keyval() const; template<> void KeyData >::keyval(const std::complex& ); template<> const std::complex& KeyData >::keyval() const; template<> void KeyData >::keyval(const std::complex& ); #endif // Parameterized Class CCfits::KeyData template inline std::ostream & KeyData::put (std::ostream &s) const { s << "Keyword Name: " << name() << "\t Value: " << keyval() << "\t Type: " << keytype() << "\t Comment: " << comment(); return s; } template inline const T& KeyData::keyval () const { return m_keyval; } template inline void KeyData::keyval (const T& value) { m_keyval = value; } // Parameterized Class CCfits::KeyData template KeyData::KeyData(const KeyData &right) :Keyword(right), m_keyval(right.m_keyval) { } template KeyData::KeyData (const String &keyname, ValueType keytype, const T &value, HDU* p, const String &comment, bool isLongStr) : Keyword(keyname, keytype, p, comment, isLongStr), m_keyval(value) { } template KeyData::~KeyData() { } template void KeyData::copy (const Keyword& right) { Keyword::copy(right); const KeyData& that = static_cast&>(right); m_keyval = that.m_keyval; } template bool KeyData::compare (const Keyword &right) const { if ( !Keyword::compare(right) ) return false; const KeyData& that = static_cast&>(right); if (this->m_keyval != that.m_keyval) return false; return true; } template KeyData * KeyData::clone () const { return new KeyData(*this); } template void KeyData::write () { Keyword::write(); int status = 0; FITSUtil::MatchType keyType; if ( fits_update_key(fitsPointer(),keyType(), const_cast(name().c_str()), &m_keyval, // fits_write_key takes a void* here const_cast(comment().c_str()), &status) ) throw FitsError(status); } inline double KeyNull::numValue() const { return m_numValue; } inline string KeyNull::stringValue() const { return m_stringValue; } inline KeyNull::ValState KeyNull::state() const { return m_state; } inline void KeyNull::setNumValue(double val, ValueType writeAs) { m_numValue = val; m_state = ValState::NumData; m_writeAs = writeAs; } inline void KeyNull::setStringValue(const string& val) { m_stringValue = val; m_state = ValState::StrData; } // Additional Declarations } // namespace CCfits #endif CCfits-2.7/ColumnVectorData.cxx0000644000225700000360000003075414764627567016022 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman // ColumnVectorData #include "ColumnVectorData.h" namespace CCfits { #ifndef SPEC_TEMPLATE_IMP_DEFECT #ifndef SPEC_TEMPLATE_DECL_DEFECT // duplicated for each complex type to work around imagined or // actual compiler deficiencies. template <> void ColumnVectorData >::readColumnData(long firstRow, long nelements, long firstElem, std::complex* null ) { int status=0; float nulval (0); FITSUtil::auto_array_ptr pArray(new float[2*nelements]); float* array = pArray.get(); int anynul(0); if (fits_read_col_cmp(fitsPointer(),index(),firstRow, firstElem, nelements,nulval,array,&anynul,&status) ) throw FitsError(status); if (m_data.size() != static_cast(rows())) m_data.resize(rows()); std::valarray > readData(nelements); for (long j = 0; j < nelements; ++j) { readData[j] = std::complex(array[2*j],array[2*j+1]); } size_t countRead = 0; const size_t ONE = 1; if (m_data.size() != static_cast(rows())) m_data.resize(rows()); size_t vectorSize(0); if (!varLength()) { vectorSize = std::max(repeat(),ONE); // safety check. } else { // assume that the user specified the correct length for // variable columns. This should be ok since readVariableColumns // uses fits_read_descripts to return this information from the // fits pointer, and this is passed as nelements here. vectorSize = nelements; } size_t n = nelements; int i = firstRow; int ii = i - 1; while ( countRead < n) { std::valarray >& current = m_data[ii]; if (current.size() != vectorSize) current.resize(vectorSize,0.); int elementsInFirstRow = vectorSize-firstElem + 1; bool lastRow = ( (nelements - countRead) < vectorSize); if (lastRow) { int elementsInLastRow = nelements - countRead; std::copy(&readData[countRead],&readData[0]+nelements,¤t[0]); countRead += elementsInLastRow; } // what to do with complete rows. if firstElem == 1 the else { if (firstElem == 1 || (firstElem > 1 && i > firstRow) ) { current = readData[std::slice(vectorSize*(ii-firstRow)+ elementsInFirstRow,vectorSize,1)]; ++ii; ++i; countRead += vectorSize; } else { if (i == firstRow) { std::copy(&readData[0],&readData[0]+elementsInFirstRow, ¤t[firstElem]); countRead += elementsInFirstRow; ++i; ++ii; } } } } } #ifndef SPEC_TEMPLATE_DECL_DEFECT template <> void ColumnVectorData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } template <> void ColumnVectorData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } #endif template <> void ColumnVectorData >::readColumnData (long firstRow, long nelements,long firstElem, complex* nullValue) { // duplicated for each complex type to work around imagined or // actual compiler deficiencies. int status=0; double nulval (0); FITSUtil::auto_array_ptr pArray(new double[2*nelements]); double* array = pArray.get(); int anynul(0); if (fits_read_col_dblcmp(fitsPointer(),index(),firstRow, firstElem, nelements,nulval,array,&anynul,&status) ) throw FitsError(status); if (m_data.size() != static_cast(rows())) m_data.resize(rows()); std::valarray > readData(nelements); for (long j = 0; j < nelements; ++j) { readData[j] = std::complex(array[2*j],array[2*j+1]); } size_t countRead = 0; const size_t ONE = 1; if (m_data.size() != static_cast(rows())) m_data.resize(rows()); size_t vectorSize(0); if (!varLength()) { vectorSize = std::max(repeat(),ONE); // safety check. } else { // assume that the user specified the correct length for // variable columns. This should be ok since readVariableColumns // uses fits_read_descripts to return this information from the // fits pointer, and this is passed as nelements here. vectorSize = nelements; } size_t n = nelements; int i = firstRow; int ii = i - 1; while ( countRead < n) { std::valarray >& current = m_data[ii]; if (current.size() != vectorSize) current.resize(vectorSize,0.); int elementsInFirstRow = vectorSize-firstElem + 1; bool lastRow = ( (nelements - countRead) < vectorSize); if (lastRow) { int elementsInLastRow = nelements - countRead; std::copy(&readData[countRead],&readData[0]+nelements,¤t[0]); countRead += elementsInLastRow; } // what to do with complete rows. if firstElem == 1 the else { if (firstElem == 1 || (firstElem > 1 && i > firstRow) ) { current = readData[std::slice(vectorSize*(ii-firstRow)+ elementsInFirstRow,vectorSize,1)]; ++ii; ++i; countRead += vectorSize; } else { if (i == firstRow) { std::copy(&readData[0],&readData[0]+elementsInFirstRow, ¤t[firstElem]); countRead += elementsInFirstRow; ++i; ++ii; } } } } } template <> void ColumnVectorData >::writeFixedArray (complex* data, long nElements, long nRows, long firstRow, complex* nullValue) { int status(0); // check for sanity of inputs, then write to file. // this function writes only complete rows to a table with // fixed width rows. if ( nElements < nRows*static_cast(repeat()) ) { #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif msgStr << " input array size: " << nElements << " required " << nRows*repeat(); #ifdef SSTREAM_DEFECT msgStr << std::ends; #endif String msg(msgStr.str()); throw Column::InsufficientElements(msg); } FITSUtil::auto_array_ptr realData(new float[2*nElements]); for (int j = 0; j < nElements; ++j) { realData[2*j] = data[j].real(); realData[2*j+1] = data[j].imag(); } if (fits_write_col_cmp(fitsPointer(),index(),firstRow, 1,nElements,realData.get(),&status)) throw FitsError(status); parent()->updateRows(); } template <> void ColumnVectorData >::writeFixedArray (complex* data, long nElements, long nRows, long firstRow, complex* nullValue) { int status(0); // check for sanity of inputs, then write to file. // this function writes only complete rows to a table with // fixed width rows. if ( nElements < nRows*static_cast(repeat()) ) { #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif msgStr << " input array size: " << nElements << " required " << nRows*repeat(); String msg(msgStr.str()); throw Column::InsufficientElements(msg); } FITSUtil::auto_array_ptr realData(new double[2*nElements]); for (int j = 0; j < nElements; ++j) { realData[2*j] = data[j].real(); realData[2*j+1] = data[j].imag(); } if (fits_write_col_dblcmp(fitsPointer(),index(),firstRow, 1,nElements,realData.get(),&status)) throw FitsError(status); parent()->updateRows(); } #endif #endif #ifndef SPEC_TEMPLATE_DECL_DEFECT template <> void ColumnVectorData >::doWrite (std::complex* data, long row, long rowSize, long firstElem, std::complex* nullValue ) { int status(0); FITSUtil::auto_array_ptr carray( new float[2*rowSize]); for ( long j = 0 ; j < rowSize; ++ j) { carray[2*j] = data[j].real(); carray[2*j + 1] = data[j].imag(); } if (fits_write_col_cmp(fitsPointer(),index(),row,firstElem,rowSize, carray.get(),&status)) throw FitsError(status); } template <> void ColumnVectorData >::doWrite (std::complex* data, long row, long rowSize, long firstElem, std::complex* nullValue ) { int status(0); FITSUtil::auto_array_ptr carray( new double[2*rowSize]); for ( long j = 0 ; j < rowSize; ++ j) { carray[2*j] = data[j].real(); carray[2*j + 1] = data[j].imag(); } if (fits_write_col_dblcmp(fitsPointer(),index(),row,firstElem,rowSize, carray.get(),&status)) throw FitsError(status); } #endif } CCfits-2.7/ExtHDUT.h0000644000225700000360000007326114764627567013462 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef EXTHDUT_H #define EXTHDUT_H #include "ImageExt.h" #include "Table.h" #include "Column.h" namespace CCfits { template void ExtHDU::read (std::valarray& image) { makeThisCurrent(); long init(1); long nElements(std::accumulate(naxes().begin(),naxes().end(),init, std::multiplies())); read(image,1,nElements,static_cast(0)); } template void ExtHDU::read (std::valarray& image, long first,long nElements) { makeThisCurrent(); read(image, first,nElements,static_cast(0)); } template void ExtHDU::read (std::valarray& image, long first, long nElements, S* nulValue) { makeThisCurrent(); if ( ImageExt* extimage = dynamic_cast*>(this)) { // proceed if cast is successful. const std::valarray& __tmp = extimage->readImage(first,nElements,nulValue); image.resize(__tmp.size()); image = __tmp; } else { if (bitpix() == Ifloat) { ImageExt& extimage = dynamic_cast&>(*this); float nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } else if (bitpix() == Idouble) { ImageExt& extimage = dynamic_cast&>(*this); double nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } else if (bitpix() == Ibyte) { ImageExt& extimage = dynamic_cast&>(*this); unsigned char nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { ImageExt& extimage = dynamic_cast&>(*this); unsigned INT32BIT nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } else { ImageExt& extimage = dynamic_cast&>(*this); INT32BIT nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } } else if (bitpix() == Ilonglong) { ImageExt& extimage = dynamic_cast&>(*this); LONGLONG nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { ImageExt& extimage = dynamic_cast&>(*this); unsigned short nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } else { ImageExt& extimage = dynamic_cast&>(*this); short nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(first,nElements, &nulVal)); } } else { throw CCfits::FitsFatal(" casting image types "); } } } template void ExtHDU::read (std::valarray& image, const std::vector& first, long nElements, S* nulValue) { makeThisCurrent(); long firstElement(0); long dimSize(1); std::vector inputDimensions(naxis(),1); size_t sNaxis = static_cast(naxis()); size_t n(std::min(sNaxis,first.size())); std::copy(&first[0],&first[0]+n,&inputDimensions[0]); for (long i = 0; i < naxis(); ++i) { firstElement += ((inputDimensions[i] - 1)*dimSize); dimSize *=naxes(i); } ++firstElement; read(image, firstElement,nElements,nulValue); } template void ExtHDU::read (std::valarray& image, const std::vector& first, long nElements) { makeThisCurrent(); read(image, first,nElements,static_cast(0)); } template void ExtHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, S* nulValue) { makeThisCurrent(); if (ImageExt* extimage = dynamic_cast*>(this)) { const std::valarray& __tmp = extimage->readImage(firstVertex,lastVertex,stride,nulValue); image.resize(__tmp.size()); image = __tmp; } else { // FITSutil::fill will take care of sizing. if (bitpix() == Ifloat) { float nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); ImageExt& extimage = dynamic_cast&>(*this); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Idouble) { ImageExt& extimage = dynamic_cast&>(*this); double nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Ibyte) { ImageExt& extimage = dynamic_cast&>(*this); unsigned char nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { ImageExt& extimage = dynamic_cast&>(*this); unsigned INT32BIT nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } else { ImageExt& extimage = dynamic_cast&>(*this); INT32BIT nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } } else if (bitpix() == Ilonglong) { ImageExt& extimage = dynamic_cast&>(*this); LONGLONG nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { ImageExt& extimage = dynamic_cast&>(*this); unsigned short nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } else { ImageExt& extimage = dynamic_cast&>(*this); short nulVal(0); if (nulValue) nulVal = static_cast(*nulValue); FITSUtil::fill(image,extimage.readImage(firstVertex,lastVertex,stride,&nulVal)); } } else { throw CCfits::FitsFatal(" casting image types "); } } } template void ExtHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride) { makeThisCurrent(); read(image, firstVertex,lastVertex,stride,static_cast(0)); } template void ExtHDU::write(long first,long nElements,const std::valarray& data,S* nulValue) { // throw if we called image read/write operations on a table. makeThisCurrent(); if (ImageExt* extimage = dynamic_cast*>(this)) { extimage->writeImage(first,nElements,data,nulValue); } else { if (bitpix() == Ifloat) { std::valarray __tmp; ImageExt& imageExt = dynamic_cast&>(*this); FITSUtil::fill(__tmp,data); float* pfNullValue = 0; float fNullValue = 0.0; if (nulValue) { fNullValue = static_cast(*nulValue); pfNullValue = &fNullValue; } imageExt.writeImage(first,nElements,__tmp, pfNullValue); } else if (bitpix() == Idouble) { std::valarray __tmp; ImageExt& imageExt = dynamic_cast&>(*this); FITSUtil::fill(__tmp,data); double* pdNullValue = 0; double dNullValue = 0.0; if (nulValue) { dNullValue = static_cast(*nulValue); pdNullValue = &dNullValue; } imageExt.writeImage(first,nElements,__tmp,pdNullValue); } else if (bitpix() == Ibyte) { ImageExt& imageExt = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); unsigned char *pbNull=0; unsigned char bNull=0; if (nulValue) { bNull = static_cast(*nulValue); pbNull = &bNull; } imageExt.writeImage(first,nElements,__tmp, pbNull); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { ImageExt& imageExt = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); unsigned INT32BIT *plNull=0; unsigned INT32BIT lNull=0; if (nulValue) { lNull = static_cast(*nulValue); plNull = &lNull; } imageExt.writeImage(first,nElements,__tmp,plNull); } else { ImageExt& imageExt = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); INT32BIT *plNull=0; INT32BIT lNull=0; if (nulValue) { lNull = static_cast(*nulValue); plNull = &lNull; } imageExt.writeImage(first,nElements,__tmp,plNull); } } else if (bitpix() == Ilonglong) { ImageExt& imageExt = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); LONGLONG *pllNull=0; LONGLONG llNull=0; if (nulValue) { llNull = static_cast(*nulValue); pllNull = &llNull; } imageExt.writeImage(first,nElements,__tmp, pllNull); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { ImageExt& imageExt = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); unsigned short *psNull=0; unsigned short sNull=0; if (nulValue) { sNull = static_cast(*nulValue); psNull = &sNull; } imageExt.writeImage(first,nElements,__tmp,psNull); } else { ImageExt& imageExt = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); short *psNull=0; short sNull=0; if (nulValue) { sNull = static_cast(*nulValue); psNull = &sNull; } imageExt.writeImage(first,nElements,__tmp,psNull); } } else { FITSUtil::MatchType errType; throw FITSUtil::UnrecognizedType(FITSUtil::FITSType2String(errType())); } } } template void ExtHDU::write(long first, long nElements,const std::valarray& data) { write(first, nElements, data, static_cast(0)); } template void ExtHDU::write(const std::vector& first, long nElements, const std::valarray& data, S* nulValue) { // throw if we called image read/write operations on a table. makeThisCurrent(); size_t n(first.size()); long firstElement(0); long dimSize(1); for (long i = 0; i < n; ++i) { firstElement += ((first[i] - 1)*dimSize); dimSize *=naxes(i); } ++firstElement; write(firstElement,nElements,data,nulValue); } template void ExtHDU::write(const std::vector& first, long nElements, const std::valarray& data) { // throw if we called image read/write operations on a table. makeThisCurrent(); size_t n(first.size()); long firstElement(0); long dimSize(1); for (long i = 0; i < n; ++i) { firstElement += ((first[i] - 1)*dimSize); dimSize *=naxes(i); } ++firstElement; write(firstElement,nElements,data); } template void ExtHDU::write(const std::vector& firstVertex, const std::vector& lastVertex, const std::valarray& data) { makeThisCurrent(); if (ImageExt* extimage = dynamic_cast*>(this)) { extimage->writeImage(firstVertex,lastVertex,data); } else { // write input type S to Image type... if (bitpix() == Ifloat) { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } else if (bitpix() == Idouble) { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } else if (bitpix() == Ibyte) { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } else { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } } else if (bitpix() == Ilonglong) { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } else { ImageExt& extimage = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; extimage.writeImage(firstVertex,lastVertex,__tmp); } } else { FITSUtil::MatchType errType; throw FITSUtil::UnrecognizedType(FITSUtil::FITSType2String(errType())); } } } } //namespace CCfits #endif CCfits-2.7/Makefile.in0000644000225700000360000012544014764627567014126 0ustar cagordonlhea# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ bin_PROGRAMS = cookbook$(EXEEXT) subdir = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/config/m4/ac_check_package.m4 \ $(top_srcdir)/config/m4/ac_compile_warnings.m4 \ $(top_srcdir)/config/m4/ax_cxx_compile_stdcxx.m4 \ $(top_srcdir)/config/m4/ax_cxx_have_valarray.m4 \ $(top_srcdir)/config/m4/ax_cxx_namespaces.m4 \ $(top_srcdir)/config/m4/pfk_cxx_lib_path.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(libCCfits_la_HEADERS) \ $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = Doxyfile CCfits.pc CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \ "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libCCfits_ladir)" PROGRAMS = $(bin_PROGRAMS) am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ test -z "$$files" \ || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && rm -f $$files; }; \ } LTLIBRARIES = $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = libCCfits_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_libCCfits_la_OBJECTS = AsciiTable.lo BinTable.lo Column.lo \ ColumnCreator.lo ColumnData.lo ColumnVectorData.lo ExtHDU.lo \ FITS.lo FITSUtil.lo FitsError.lo GroupTable.lo HDU.lo \ HDUCreator.lo KeyData.lo Keyword.lo KeywordCreator.lo PHDU.lo \ Table.lo libCCfits_la_OBJECTS = $(am_libCCfits_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libCCfits_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(libCCfits_la_LDFLAGS) $(LDFLAGS) -o $@ am_cookbook_OBJECTS = cookbook.$(OBJEXT) cookbook_OBJECTS = $(am_cookbook_OBJECTS) cookbook_DEPENDENCIES = libCCfits.la cookbook_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(cookbook_LDFLAGS) $(LDFLAGS) -o $@ AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/config/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/AsciiTable.Plo \ ./$(DEPDIR)/BinTable.Plo ./$(DEPDIR)/Column.Plo \ ./$(DEPDIR)/ColumnCreator.Plo ./$(DEPDIR)/ColumnData.Plo \ ./$(DEPDIR)/ColumnVectorData.Plo ./$(DEPDIR)/ExtHDU.Plo \ ./$(DEPDIR)/FITS.Plo ./$(DEPDIR)/FITSUtil.Plo \ ./$(DEPDIR)/FitsError.Plo ./$(DEPDIR)/GroupTable.Plo \ ./$(DEPDIR)/HDU.Plo ./$(DEPDIR)/HDUCreator.Plo \ ./$(DEPDIR)/KeyData.Plo ./$(DEPDIR)/Keyword.Plo \ ./$(DEPDIR)/KeywordCreator.Plo ./$(DEPDIR)/PHDU.Plo \ ./$(DEPDIR)/Table.Plo ./$(DEPDIR)/cookbook.Po am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CXXFLAGS) $(CXXFLAGS) AM_V_CXX = $(am__v_CXX_@AM_V@) am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@) am__v_CXX_0 = @echo " CXX " $@; am__v_CXX_1 = CXXLD = $(CXX) CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \ $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CXXLD = $(am__v_CXXLD_@AM_V@) am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@) am__v_CXXLD_0 = @echo " CXXLD " $@; am__v_CXXLD_1 = SOURCES = $(libCCfits_la_SOURCES) $(cookbook_SOURCES) DIST_SOURCES = $(libCCfits_la_SOURCES) $(cookbook_SOURCES) RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac DATA = $(pkgconfig_DATA) HEADERS = $(libCCfits_la_HEADERS) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir distdir-am dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \ config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` ETAGS = etags CTAGS = ctags CSCOPE = cscope DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/CCfits.pc.in $(srcdir)/Doxyfile.in \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/config/compile $(top_srcdir)/config/config.guess \ $(top_srcdir)/config/config.sub $(top_srcdir)/config/depcomp \ $(top_srcdir)/config/install-sh $(top_srcdir)/config/ltmain.sh \ $(top_srcdir)/config/missing config/compile \ config/config.guess config/config.sub config/depcomp \ config/install-sh config/ltmain.sh config/missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best DIST_TARGETS = dist-gzip # Exists only to be overridden by the user if desired. AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print # Trick to add options to aclocal command ACLOCAL = aclocal -I config/m4 AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CXX_LIB_PATH = @CXX_LIB_PATH@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GMAKE = @GMAKE@ GREP = @GREP@ HAVE_CXX14 = @HAVE_CXX14@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP = @LIBSTDCPP@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RDFLAGS = @RDFLAGS@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STLPORT = @STLPORT@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pfk_cxx_lib_path = @pfk_cxx_lib_path@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # # Author: Paul_Kunz@slac.stanford.edu # # The following set, else would follow GNU conventions. Add # "no-dependencies" if your compiler doesn't support dependency # generation like gcc does AUTOMAKE_OPTIONS = foreign # no-dependencies SUBDIRS = vs.net R_LIB_PATH = @RDFLAGS@ MSVC_FILES = MSconfig.h EXTRA_DIST = config CHANGES README.INSTALL License.txt file1.pha CMakeLists.txt FindCFITSIO.cmake $(MSVC_FILES) cookbook_SOURCES = cookbook.cxx cookbook_LDADD = libCCfits.la cookbook_LDFLAGS = -R $(R_LIB_PATH) -R $(CXX_LIB_PATH) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = CCfits.pc AM_CPPFLAGS = -I$(top_srcdir)/.. lib_LTLIBRARIES = libCCfits.la libCCfits_la_SOURCES = \ AsciiTable.cxx \ BinTable.cxx \ Column.cxx \ ColumnCreator.cxx \ ColumnData.cxx \ ColumnVectorData.cxx \ ExtHDU.cxx \ FITS.cxx \ FITSUtil.cxx \ FitsError.cxx \ GroupTable.cxx \ HDU.cxx \ HDUCreator.cxx \ KeyData.cxx \ Keyword.cxx \ KeywordCreator.cxx \ PHDU.cxx \ Table.cxx # This will tell shared library which STD C++ library to use without # needing the user to use LD_LIBRARY_PATH environment variable libCCfits_la_LIBADD = $(LIBSTDCPP) libCCfits_la_LDFLAGS = -R $(R_LIB_PATH) -R $(CXX_LIB_PATH) libCCfits_ladir = $(pkgincludedir) libCCfits_la_HEADERS = \ AsciiTable.h \ BinTable.h \ CCfits \ CCfits.h \ Column.h \ ColumnT.h \ ColumnCreator.h \ ColumnData.h \ ColumnVectorData.h \ ExtHDU.h \ ExtHDUT.h \ FITS.h \ FITSUtil.h \ FITSUtilT.h \ FitsError.h \ GroupTable.h \ HDU.h \ HDUCreator.h \ Image.h \ ImageExt.h \ KeyData.h \ Keyword.h \ KeywordT.h \ KeywordCreator.h \ NewKeyword.h \ PHDU.h \ PHDUT.h \ PrimaryHDU.h \ Table.h all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .cxx .lo .o .obj am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 Doxyfile: $(top_builddir)/config.status $(srcdir)/Doxyfile.in cd $(top_builddir) && $(SHELL) ./config.status $@ CCfits.pc: $(top_builddir)/config.status $(srcdir)/CCfits.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ test -z "$$locs" || { \ echo rm -f $${locs}; \ rm -f $${locs}; \ } libCCfits.la: $(libCCfits_la_OBJECTS) $(libCCfits_la_DEPENDENCIES) $(EXTRA_libCCfits_la_DEPENDENCIES) $(AM_V_CXXLD)$(libCCfits_la_LINK) -rpath $(libdir) $(libCCfits_la_OBJECTS) $(libCCfits_la_LIBADD) $(LIBS) cookbook$(EXEEXT): $(cookbook_OBJECTS) $(cookbook_DEPENDENCIES) $(EXTRA_cookbook_DEPENDENCIES) @rm -f cookbook$(EXEEXT) $(AM_V_CXXLD)$(cookbook_LINK) $(cookbook_OBJECTS) $(cookbook_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/AsciiTable.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/BinTable.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Column.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ColumnCreator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ColumnData.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ColumnVectorData.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ExtHDU.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FITS.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FITSUtil.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/FitsError.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/GroupTable.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HDU.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/HDUCreator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/KeyData.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Keyword.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/KeywordCreator.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/PHDU.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Table.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cookbook.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @echo '# dummy' >$@-t && $(am__mv) $@-t $@ am--depfiles: $(am__depfiles_remade) .cxx.o: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $< .cxx.obj: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cxx.lo: @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) install-libCCfits_laHEADERS: $(libCCfits_la_HEADERS) @$(NORMAL_INSTALL) @list='$(libCCfits_la_HEADERS)'; test -n "$(libCCfits_ladir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(libCCfits_ladir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libCCfits_ladir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libCCfits_ladir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(libCCfits_ladir)" || exit $$?; \ done uninstall-libCCfits_laHEADERS: @$(NORMAL_UNINSTALL) @list='$(libCCfits_la_HEADERS)'; test -n "$(libCCfits_ladir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(libCCfits_ladir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-zstd: distdir tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ *.tar.zst*) \ zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(DATA) $(HEADERS) \ config.h install-binPROGRAMS: install-libLTLIBRARIES installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(libCCfits_ladir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool clean-local mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f ./$(DEPDIR)/AsciiTable.Plo -rm -f ./$(DEPDIR)/BinTable.Plo -rm -f ./$(DEPDIR)/Column.Plo -rm -f ./$(DEPDIR)/ColumnCreator.Plo -rm -f ./$(DEPDIR)/ColumnData.Plo -rm -f ./$(DEPDIR)/ColumnVectorData.Plo -rm -f ./$(DEPDIR)/ExtHDU.Plo -rm -f ./$(DEPDIR)/FITS.Plo -rm -f ./$(DEPDIR)/FITSUtil.Plo -rm -f ./$(DEPDIR)/FitsError.Plo -rm -f ./$(DEPDIR)/GroupTable.Plo -rm -f ./$(DEPDIR)/HDU.Plo -rm -f ./$(DEPDIR)/HDUCreator.Plo -rm -f ./$(DEPDIR)/KeyData.Plo -rm -f ./$(DEPDIR)/Keyword.Plo -rm -f ./$(DEPDIR)/KeywordCreator.Plo -rm -f ./$(DEPDIR)/PHDU.Plo -rm -f ./$(DEPDIR)/Table.Plo -rm -f ./$(DEPDIR)/cookbook.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-hdr distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-libCCfits_laHEADERS install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-binPROGRAMS install-libLTLIBRARIES install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f ./$(DEPDIR)/AsciiTable.Plo -rm -f ./$(DEPDIR)/BinTable.Plo -rm -f ./$(DEPDIR)/Column.Plo -rm -f ./$(DEPDIR)/ColumnCreator.Plo -rm -f ./$(DEPDIR)/ColumnData.Plo -rm -f ./$(DEPDIR)/ColumnVectorData.Plo -rm -f ./$(DEPDIR)/ExtHDU.Plo -rm -f ./$(DEPDIR)/FITS.Plo -rm -f ./$(DEPDIR)/FITSUtil.Plo -rm -f ./$(DEPDIR)/FitsError.Plo -rm -f ./$(DEPDIR)/GroupTable.Plo -rm -f ./$(DEPDIR)/HDU.Plo -rm -f ./$(DEPDIR)/HDUCreator.Plo -rm -f ./$(DEPDIR)/KeyData.Plo -rm -f ./$(DEPDIR)/Keyword.Plo -rm -f ./$(DEPDIR)/KeywordCreator.Plo -rm -f ./$(DEPDIR)/PHDU.Plo -rm -f ./$(DEPDIR)/Table.Plo -rm -f ./$(DEPDIR)/cookbook.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-libCCfits_laHEADERS \ uninstall-libLTLIBRARIES uninstall-pkgconfigDATA .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--depfiles am--refresh check check-am clean \ clean-binPROGRAMS clean-cscope clean-generic \ clean-libLTLIBRARIES clean-libtool clean-local cscope \ cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \ dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \ dist-zstd distcheck distclean distclean-compile \ distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am \ install-libCCfits_laHEADERS install-libLTLIBRARIES install-man \ install-pdf install-pdf-am install-pkgconfigDATA install-ps \ install-ps-am install-strip installcheck installcheck-am \ installdirs installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \ uninstall-libCCfits_laHEADERS uninstall-libLTLIBRARIES \ uninstall-pkgconfigDATA .PRECIOUS: Makefile #run_cookbook: # rm -rf *.fit # cookbook.C bundle: c++ -bundle -I. -DHAVE_STRSTREAM -o libCCfits.a *.cxx docs: doxygen Doxyfile clean-local: -rm -rf SunWS_cache *.fit # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: CCfits-2.7/CHANGES0000644000225700000360000006452514764627567013062 0ustar cagordonlheaChanges for CCfits 2.7 - New function HDU::addKeyNull() for creating keywords with null values (ie. CFITSIO's fits_write_key_null() functionality). Existing keywords with null values can now also be modified. HDU.cxx, .h Keyword.cxx, .h KeywordCreator.cxx, .h KeyData.cxx, .h Changes for CCfits 2.6 - For compatibility with C++17, removed dependencies on std::binary_function (4/21). FITSUtil.h - The internal HDU getScaling function is not properly handling the case where an image of unsigned integer type has a BZERO keyword but not a BSCALE. The result is it wrongly assumes the image is a signed integer type.(4/21) HDUCreator.cxx - The keyword categories hardcoded and returned by the HDU::keywordCategories() function now apply only to the HDU::copyAllKeys() function. HDU::readAllKeys() is hardcoded to a separate (and larger) list of categories. This is to allow readAllKeys() to retain its previous behavior, while copyAllKeys() default categories have been narrowed (see items below from 06-07/18). (03/21) HDU.cxx HDU.h - Fixes to updating of Columns' internal buffers for certain cases of writes or insertions which add rows to a table. Also includes a speed increase to internal Column write function. (03/21) Column.h ColumnData.h ColumnVectorData.h Table.cxx - Bug fix needed for creation of ColumnVectorData objects. (06/20) Column.cxx - All std::bad_cast exceptions are now caught by reference. (09/19) Column.cxx ColumnT.h FITS.cxx KeywordT.h PHDUT.h - Enable support of long string keywords (which use the CONTINUE key) (8/18) HDU.cxx,.h KeyData.cxx,.h Keyword.cxx,.h KeywordCreator.cxx,.h NewKeyword.h - Replaced all uses of std::auto_ptr with std::unique_ptr. This is made in tandem with configuration changes which add a C++11 compiler flag when necessary. (08/18) FITS.cxx HDU.cxx cookbook.cxx - Added capability for user to specify keyword categories to read/copy. Removed TYP_WCS_KEY,TYP_CMPRS_KEY from s_iKeywordCategories, as they are file-specific keywords. (7/18) HDU.cxx, .h - Bug fix to writeHistory and writeComment functions. When copying via the get/write functions, mult-line input was not properly formatted upon output. (07/18) HDU.cxx - Removed FITSBase pattern (10/17) FITSBase.cxx, .h FITS.cxx, .h ../BUILD_DIR/Makefile-CCfits ExtHDU.cxx, .h HDU.cxx, .h CMakeLists.txt HDUCreator.cxx, .h Table.cxx, .h AsciiTable.cxx, .h BinTable.cxx, .h PHDU.cxx, .h PrimaryHDU.h GroupTable.cxx, .h ImageExt.h - Removed TYP_CKSUM_KEY from s_iKeywordCategories. It was copying the CHECKSUM and DATASUM keywords from the infile to the outfile, which leads to incorrect values for the outfile. (6/17) HDU.cxx, .h - In 'CCfits' header aggregator file, added special treatment for cookbook build. This is to allow the stand-alone CCfits to build the cookbook even when build directory is not named "CCfits". (8/16) cookbook.cxx CCfits Changes for CCfits 2.5 - For reading Keywords, added conversion of numerical types to strings. (12/15) Keyword.cxx, .h KeywordT.h - Added support for variable-width string columns (12/15) CCfits.h Column.cxx, .h ColumnCreator.cxx ColumnData.cxx, .h BinTable.cxx - Added new ExtHDU::copyColumn function, implemented in the Table class. (11/15) AsciiTable.cxx BinTable.cxx Column.cxx, .h ExtHDU.cxx, .h Table.cxx, .h (This also required a conforming change to editcol.c in CFITSIO.) - Changed the Column container member of the Table class from a map to a multimap (now typedefed to 'ColMap'). This is to allow proper handling of case where multiple columns within table share the same name. NOTE: This resulted in a change to the public interface: ExtHDU and Table column() accessor functions now return a multimap. (10/15) AsciiTable.cxx BinTable.cxx CCfits.h ExtHDU.cxx, .h FITS.cxx Table.cxx, .h - Removed the ImageExt::image() accessor function from the public interface. This was intended for internal use only. (10/15) ImageExt.h - Now allows image write calls to expand the outer-most (NAXISN) dimension of the image. This was a feature of CFITSIO that wasn't previously supported in CCfits. (10/15) (same files as in following entry below) - Implemented full-read internal caching for images. Previously image read calls resulted in disk reads even when current values were available in memory. (10/15) PrimaryHDU.h Image.h PHDUT.h ImageExt.h ExtHDUT.h HDU.h - Fix to ColumnData::writeData. It should not resize the internal m_data vector to a smaller size when a write operation passes in a just a partial portion of the column. (gcc had been covering up this bug since the resize call wasn't actually erasing any values). (9/15) ColumnData.h - Added Column::read functions for retrieving a single row of a vector column into a std::vector. Previously this was only allowed for valarrays. (9/15) Column.cxx, .h ColumnT.h - Added new function HDU::readNextKey. (9/15) HDU.cxx, .h KeywordCreator.cxx, .h - Removed #ifdef HAVE_CONFIG_H test for including config.h due to potential conflicts with users' customized autotools config.h files. (8/15) ColumnVectorData.h FITSUtilT.h Table.h - Converted 'delete' calls to 'free()' in KeywordCreator's getLongValueString function. This removes memory mismatch errors in valgrind output. (3/15) KeywordCreator.cxx - Bug fix to ImageExt::put (accessed through HDU's "operator<<"). It was not showing output for the highest numbered axis. (Submitted by Georgios Bekiaris) (2/15) - Removed vestigal code file NewColumn.h. (This was reported to have caused cookbook build errors on ubuntu 14.04.) (5/14) - Added proper handling of 'D' exponent notation when reading in keyword values of type float or complex. This is allowed by the FITS standard, but the C++ stringstream conversion operator was not recognizing it. This caused value to be truncated at the 'D' for floats, and to be ignored altogether for complex. The change was made entirely in the parseRecord() function. (4/14) KeywordCreator.cxx - In Column::setLimits, removed the dynamic allocation of the static variable arrays. These led to small memory leaks (submitted by David Riethmiller). (3/14) Column.cxx - Added an #include statement to HDU.cxx. Windows compilation was failing due to it not finding std::back_inserter. (Submitted by Daniel Kaneider) (11/13) HDU.cxx - Added read/write capability for images of LONGLONG type. (10/13) CCfits.h ExtHDUT.h FITSUtil.h HDUCreator.cxx PHDUT.h - Added a missing 'break' statement to 'case Tlonglong' in FITSType2String function (submitted by DavidBinderman). (09/13) FITSUtil.cxx - Replaced the use of the valarray '==' operator with an explicit loop in ColumnVectorData::compare. This was to get around a compiler glitch that appeared on Mac 10.9 w/ gcc 4.2.1. (07/13) - Bug fix to HDU::getNamedLines function. The starting point for the search needs to be reset to the top of the HDU prior to the search loop. (fix submitted by Gavin Blakeman) (01/13) HDU.cxx - Fixed a couple problems with the FITS::addTable function. It was not allowing a new table with a pre-existing hdu name even when the version number was different. Also it was not writing the EXTVER keyword when the version number was > 1. (03/12) FITS.cxx Table.cxx Changes for CCfits 2.4 - Fix to allow writing to compressed images of BITPIX=32 on 64-bit Linux platforms. This is done by storing the internal image array as type int rather than type long. Compatibility issue: this changes the return type of the ImageExt::image() function. (12/11) HDUCreator.cxx PHDUT.h ExtHDUT.h - Fixes made to the null-value versions of the write functions for primary and extension images. (12/11) PHDUT.h ExtHDUT.h - Added the ability of variable-width columns to perform the usual numerical data type casting when the write function input arrays do not contain exactly the same type of values as the Column object. This change also includes much internal code refactoring among the various vector column write functions. (11/11) ColumnT.h - To remove Intel compiler warnings, replaced switch/case with specialized templates in FitsNullValue functor. Also cleaned up integer type casting in deleteRows function, which fixes a bug in the Column object's internal storage of data. (11/11) FITSUtil.h ColumnVectorData.h - Fix for case of using basic FITS constructor on files containing multiple extensions with the same name AND version number. (11/11) ExtHDU.cxx HDUCreator.cxx, .h - BinTable's addColumn should call makeThisCurrent(). Otherwise user has to do it. (11/11) BinTable.cxx Changes for CCfits 2.3 - Bug fix for the setting of the column's lower data limit for the specific case of unsigned longs. It had been leaving this unitialized. (11/10) Column.cxx - When images are read from disk via CFITSIO, now copying directly to m_image valarray rather than a temporary C-style array. This cuts the required memory usage in half for this operation, important for very large images. (11/10) Image.h - New function: ExtHDU::isCompressed(), returns true if image is stored with compression. (11/10) ExtHDU.cxx, .h - For the basic version of the FITS constructor, when called in Write mode on a pre-existing file, it now automatically reads all of the headers rather than just the primary. It also now passes along the user's readDataFlag and optional primary keys settings. (11/10) FITS.cxx - In all FITS::read functions, now performs check to prevent multiple entries of the same HDU in the extensions multimap. (11/10) FITS.cxx, .h FITSBase.h - In the 2 deleteExtension functions, all extensions following the deleted one are now appropriately reindexed. (11/10) FITS.cxx - Fix to the PHDU::write functions which take a nullValue argument. Neither could be instantiated due to an invalid static_cast of pointers. (11/10) PHDUT.h - Changed Keyword's keytype() get function from protected to public. Did same for PHDU's simple() and extend() functions. (11/10) Keyword.h PHDU.h - Bug fix in Image's assignment operator. It was trying to swap with a const object. Since this isn't instantiated anywhere, compilers were letting it go. (11/10) Image.h - Bug fix in Table::copyData. New Columns' parent pointers must be reset to the new Table. Otherwise Columns created through the FITS::copy public function will not be modifiable. (02/10) Table.cxx Column.h - Bug fix for definition of ULBASE in FITSUtil. In the operation 1 << 31, the "1" must be explicitly cast to an unsigned long. Otherwise the compiler may treat it as a signed int, for which a left-shift of 31 bits is undefined. This was found to cause problems when reading images of type signed or unsigned long AND the receiving valarray type required casting, AND the platform was 64-bit Linux. (10/09) FITSUtil.cxx Changes for CCfits 2.2 - Bug fix for reading and writing complex data types to a scalar column. Also modified cookbook's readTable function to test this. ColumnData.cxx, .h (09/09) cookbook.cxx - Added public resetRead() function to Column. (09/09) Column.h - Renamed the private FITS::extension() function to extensionMap(). This is to prevent overload confusion with the public const extension() function. This mix-up was causing users to have to explicitly declare const FITS pointers to make sure the public function was the one called. (08/09) FITS.cxx, .h - Removed the storage of m_nullValue in ColumnData and ColumnVectorData classes. ColumnVectorData's private doWrite function now receives nullValue as an argument rather than relying on the data member. This fixes an obscure ColumnVectorData::writeData bug, where for valarrays of varying sizes being sent to fixed-width columns, a default null value was being sent to cfitsio even when user did not request it. More importantly, the removal of m_nullValue allows the Column::addNullValue to work when null value argument requires casting to match Column type. Also added new function Column::getNullValue. (08/09) Column.h ColumnT.h ColumnData.h ColumnVectorData.cxx, .h - Added public get functions column() and numCols() to ExtHDU, which were previously only available in the Table subclass. (08/09) ExtHDU.cxx, .h Table.h - Added optional flag to the ExtHDU and Table Column get-by-name functions, which allows for a case-insensitive search. This required renaming the protected column(string,Column*) function to setColumn. (08/09) AsciiTable.cxx BinTable.cxx ExtHDU.cxx, .h FITSUtil.cxx Table.cxx, .h - Converted all vector and valarray iterator syntax of form &v[v.size()] to either &v[0]+v.size() or v.end(). It was causing runtime exceptions on MS Visual C++ v9.0 when element bounds checking was enabled (the default). (08/09) ColumnVectorData.cxx, .h ExtHDUT.h Image.h PHDUT.h PrimaryHDU.h cookbook.cxx - Added pkg-config file for the stand-alone distribution. This also required slight changes to configure.in and Makefile.am. (08/09) CCfits.pc.in - Removed unused valarray "current" from ColumnVectorData::writeData (03/09) Changes for CCfits 2.1 - Modified several FITS constructors and FITS::open function to allow handling of extended filename syntax. (09/08) FITS.cxx, .h - FITS::resetPosition fix: it now erases the currentExtensionName string. (09/08) - Bug fix to FITS::read for case of missing EXTVER keyword when searching for HDU with extver > 1. (08/08) - Column.cxx now includes "fitsio.h" rather than "fitsio2.h" to get definitions of LONGLONG_MIN and MAX. This now makes CCfits dependent on cfitsio versions 3.08 or later. (07/08) Changes for CCfits 2.0 release 02/08 - The scale and zero set functions (public in HDU) will now write or update the keywords rather than call fits_set_bscale. They also now check for allowed image data type changes as a result of changing the bscale and bzero values. Added private zeroInit/scaleInit functions for use in HDUCreator. Also added new public function, HDU::suppressScaling. (01/08) ImageExt.h PHDU.cxx, .h HDU.cxx, .h HDUCreator.cxx - Changed access of HDU's bitpix set function from public to private. This requires that HDUCreator be a friend class of HDU. (01/08) HDU.h - Removed the redundant non-const version of FITS::filePointer and made the const version public instead of private. It also no longer returns by reference. (01/08) FITS.h, .cxx - Reorganized ImageExt constructor/assignment visibility and added virtual declaration to destructor. Also added docs. ImageExt.h - Added #include statements for and to allow compilation on g++ 4.3 (patch submitted by Aurelien Jarno) (01/08) ExtHDU.cxx FITS.cxx ColumnData.h FITSUtil.cxx HDU.cxx - Added the function getRowsize to the Table class, a wrapper for fits_get_rowsize. (Patrik Jonsson) Table.cxx, .h ExtHDU.cxx, .h - Made the const version of the Column parent accessor function public, and removed the non-const version. Column.h - Reorganized and improved keyword modification functions in HDU and Keyword classes. This includes new HDU addKey, copyAllKeys, and keywordCategories functions, and the removal of HDU::setKeyWord. Also fully implemented the Keyword value set function, with template specialization similar to the value get function, and added doc descriptions for both of these. (01/08) HDU.cxx, .h Keyword.cxx, .h KeywordT.h KeyData.cxx, .h - Bug fix to 2 of the 3 constructors which call the create() function. If create() returns false, they need to throw a CantCreate exception. They were appending the new primary hdu as an extension to the pre-existing file. (01/08) FITS.cxx, .h - To eliminate unnecessary dependences upon CFITSIO internals, removed the FITSUtil::copyFitsPtr function and everything using it: FITS copy ctor and clone functions, FITSBase copy ctor and clone functions. (Note that copyFitsPtr was never properly impelemented in its attempt to perform a deep copy of a fitsfile pointer.) (12/07) FITS.cxx, .h FITSBase.cxx, .h FITSUtil.cxx, .h - Added 4 new functions to HDU class to provide an interface to CFITSIO's checksum capabilities. (12/07) HDU.cxx, .h - Error messages are now stored in the FitsException base class, which allows them to be retrieved and copied with the public function message(). (12/07) FitsError.cxx, .h Column.cxx, ExtHDU.cxx, FITS.cxx FITSUtil.cxx HDU.cxx Keyword.cxx Table.cxx - For Column write functions (both scalar and vector), all cases where the nulval pointer = 0 were treated as (*nulval) = 0 in the lower-level calls to fits_write_colnull. This effectively meant there was no way for the user to turn off null value checking. (12/07) ColumnT.h ColumnData.h ColumnVectorData.h - Calling FITS constructor in Write mode on a read-only file was causing a segmentation fault. (12/07) FITS.cxx Changes for CCfits 1.8 release 10/07 - Redid the writeData functions (and their private helper functions) in ColumnVectorData. This allows the writing of variable length column arrays, which hadn't been working, and now allows writing a partial section of a fixed length column without overwriting the entire row. ColumnVectorData.cxx, .h - In HDU::readAllKeys, do not throw if unable to read a particular individual keyword. Instead, skip and move to the next keyword. This will allow this function to be used even if there undefined keywords. HDU.cxx Changes for CCfits 1.7 release 06/07 - FITS::copy function now creates a corresponding object for the newly created HDU. Previously it only modified the file without updating or adding to the FITS extension map. (6/07) FITS.cxx - Bug fix for reading in compressed images. It had been using the BITPIX and NAXIS keywords when it should have ben using ZBITPIX and ZNAXIS. These changes were based on a patch submitted by Patrik Jonsson. HDU.cxx HDUCreator.cxx - BSCALE was being ingored if the BZERO keyword didn't also exist. HDUCreator.cxx. - Same type of bug fix as below, but for addNullValue in ColumnT.h and ColumnVectorData::setDimen(). (3/07) ColumnT.h ColumnVectorData.h - Bug fix to Column::setLimits. It had been assigning char pointers from temporary string objects using c_str(). (Fix submitted by Jeremy Sanders) (2/07) Column.cxx Changes for CCfits 1.6 release 11/06 - Added capbility to write compressed images, including 6 new wrapper public functions in FITS class. FITS.cxx,.h FITSUtil.cxx,.h PHDU.cxx FITSBase.cxx,.h - In FITS::addImage, corrected the logic which checks for a pre-existing image extension with the same version number. FITS.cxx - CFITSIO 3.02 renamed fitsfile struct member rice_nbits to noise_nbits. Made corresponding change in copyFitsPtr function in FITSUtil.cxx. As it stands, this makes this version of CCfits incompatible with earlier versions of CFITSIO FITSUtil.cxx - In FITS.h definition, removed both friend declarations of HDUCreator Make functions. It seems neither function needs to be a friend, and one of them is actually private. The standard is vague about this, and anyway some compilers (Visual C++ 2002 or 2003) don't allow it. FITS.h - Bug fix in Make function of HDUCreator.cxx. When creating a new ImageExt (and not the primary), it was only passing the version number along for float and double types. This causes problems when there is more than 1 image extension with the same name, and it needs the version number to distinguish them. HDUCreator.cxx - A couple of bug fixes to the first/last/stride version of PHDU read image subset. It was not passing the proper parameters to fits_read_subset, and was not always correctly resizing the m_image array. Image.h Changes for CCfits 1.5 release 7/06 - More thorough fix to PHDUT.h write function: Now genuinely handles the stride vector parameter. (4/06) Image.h PHDUT.h PrimaryHDU.h -In BinTable::addColumn function for case of strings, it was outputing the column format incorrectly as "A". Should have been "A". - In BinTable and Table constructor, now checks for columnUnits vector size rather than assume it's filled in. This is necessary if units are to be an optional parameter for the FITS::addTable function, as claimed in the docs. Table.cxx BinTable.cxx - Modifications needed to fix compile errors on certain platforms with g++ 4.0.x. These are functions that haven't been instantiated, which is why other compilers didn't complain about them. In ExtHDUT.h read function, needed explicit cast to size_t to make both variables in std::min call the same type. Same fix made in PHDUT.h read function. Also in PHDUT.h write function, several calls to PrimaryHDU::writeImage had the wrong number of arguments. (01/06) Changes for CCfits 1.4 release 11/05 - Fixed reading in of BSCALE and BZERO. Previously these keyword values were not being saved in getScaling function. HDUCreator::getScaling (10/05) - Now reads in all floating-point keyword values as doubles rather than floats. In conjunction, needed to allow Keyword casting from doubles to floats to keep things backward compatible KeywordCreator.cxx, KeywordT.h, Keyword.cxx, .h. (8/05) - In ColumnT.h read function which takes row as a parameter, test and throw for case of row out-of-bounds of table. - Memory leak fix in HDU.cxx. Everywhere insertions into m_keyWord map were taking place, needed to check for previously existing entry with same key name and delete if it existed. FITS::read often does insertions twice with the same Keyword, which was causing a memory leak. Also fixed a couple minor leaks in HDU::writeDate. (C. Gordon 6/05) - Exception safety / mem leak fix in FITS.cxx and FITSBase.cxx. All FITS constructors (except copy c-tor) now use auto_ptr when creating FITSBase* m_FITSImpl. Also FITSBase destructor now checks if it needs to close file, indicated by non-zero m_fptr. To make this work, FITS::close now resets fptr to 0 after it closes file. - Add another case of allowed casting of keyword values, this time from strings to int/float/double if the string contains an integer value KeywordT.h (C.Gordon 5/05) Changes for CCfits 1.3 release 4/05 - modify KeywordCreator getKeyword functions to allow reading of keyword value string long format. (C. Gordon) - Fixed HDUCreator::Make and ExtHDU constructor so that extensions with no names are now properly handled on input. (C. Gordon) - Added ability to ready in column data of type LONGLONG from binary tables. - (Important) Added implicit casting of keyword values entered as ints to keywords of type float and double. Previously, the entered key value had to be of exactly the same type as the keyword, otherwise an exception was thrown. Changes for CCfits 1.2 release 4/03 a) add configuration support for building on Windows 2000 b) check for build problems on Mac OS X Darwin (6.4) c) fix problem with vector column row counts (ColumnVectorData::resizeDataObject) d) remove error in HDU keyword strings (HDU::readHDUInfo) e) remove "one off" error in image writing (Image::writeImage) f) fix write problem for Column TUNIT keyword (AsciiTable::addColumn, BinTable::addColumn) (P. Jonsson) g) fix image subset writing code in ExtHDU (P. Jonsson) (ExtHDU::write) Changes for CCfits 1.1.1 release 9/19/02; originator of problem report shown in parentheses where relevant. a) modify most general FITS ctor so that the version argument works properly as a defaulted parameter (J. Miller) b) add flush() method to FITS class to force cfitsio buffers to be flushed to disk on request (C. Berst) c) add instructions to flush buffers after image write operation (C. Berst) d) fix persistent warning about creating new files (C. Berst) e) remove trailing blanks from read string keywords (P. Jonsson) f) add new override function addKey for string literals g) check compilation and correct operation on gcc 3.2 / Linux 2.4 kernel Changes in preparation for CCfits 1.1 release 1a) fixed #include in cookbook.cxx (code originally designed to include installed library) b) added variable of type double to pass to pow in cookbook.cxx [R. Mathar, P. Jonsson] b) removed numerous break statements from switch / case statements where unreachable [code returns before end of case] - producing compiler warnings c) removed numerous instances of signed/unsigned comparisons to remove compiler warnings d) fixed FITS file copying constructor to produce valid primary [ R. Mathar ] e) fixed incorrect shift operator usage in Column::getType [R. Mathar] f) fixed incorrect type for TDOUBLE argument in Column::getType [R. Mathar] g) removed exception specifications throughout except for throw() ( style revision ) h) add null terminator for TFORM keywords for case where no header present [R. Mathar] i) fix error in iterator type in HDU::readKeys [R. Mathar] j) added support for unsigned integer-type images [J. Barnes] k) fixed problem with copying Table data likely to lead to memory access violations [C. Gordon] l) removed potentially conflicting colType argument from table creation call (FITS::addTable). The type of the column is now determined from the TFORM keyword. m) support for unsigned table column data [R. Mathar] n) reimplemented HDU::readAllKeys so that it does not use HDU::addKey [R. Mathar] o) added various missing makeThisCurrent() calls to ensure FITS pointer addresses the correct HDU [P. Jonsson] p) added code to cookbook program to read Primary HDU user keywords. q) added code to resolve data types into strings for keyword output. r) fixed problem whereby new image extensions were not written to disk FITS file [P. Jonsson] s) fixed various issues switching between HDUs during writes. t) added support for complex keywords u) reworked Column templates to avoid throwing exceptions where implicit datatype conversion is called for. v) added many overloaded functions to support complex data I/O. Implicit conversion between float & double complex data is allowed. Other attempted conversion throw exceptions. w) modify HDU::scale(double value), HDU::zero(double value) &c. for Columns to call fits_set_bscale etc, to change automatic scalings. 2a) configuration support for HP-UX /gcc-2.95.2. Compilation now includes -ansi flag. [R. Mathar] b) configuration support for AIX/kcc. explicit Makefile.kcc added to distribution [P. Jonsson] c) added verbose warning message flags for Solaris (+w -verbose=template) CCfits-2.7/GroupTable.h0000644000225700000360000001414114764627567014271 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@heasarc.gsfc.nasa.gov // // Original author: Kristin Rutkowski #ifndef GROUPTABLE_H #define GROUPTABLE_H 1 #include "HDUCreator.h" #include "BinTable.h" #include namespace CCfits { /*! \class GroupTable \brief Class representing a hierarchical association of Header Data Units (HDUs). Groups of HDUs allow for the hierarchical association of HDUs. Offices may want to group together HDUs in order to organize data files. The associated HDUs need not be in the same FITS file. Group Composites are the holding structure for the group members. Composites may also be members of a group. The specification for grouping is defined in "A Hierarchical Grouping Convention for FITS" by Jennings, Pence, Folk and Schlesinger at https://fits.gsfc.nasa.gov/registry/grouping/grouping.pdf */ /*! \fn GroupTable::GroupTable (FITS* p, int groupID, const String & groupName); \brief ctor for creating a new group table \param p The FITS file in which to place the new HDU \param groupID ID of new group table \param groupName Name of new group table */ /*! \fn HDU * GroupTable::addMember (HDU & newMember) \brief Add a new member to the group table. Adds GRPIDn/GRPLCn keywords to the member HDU. \param newMember Member HDU to be added */ /*! \fn HDU * GroupTable::addMember(int memberPosition) \brief Add a new member to the group table. Adds GRPIDn/GRPLCn keywords to the member HDU. The member must be in the same file as the group table. \param memberPosition Position of HDU to add (Primary array == 1) */ /*! \fn void GroupTable::listMembers() const \brief List group members */ // +++ just name it Group? class GroupTable : public BinTable { // ******************************** // public methods // ******************************** public: ~GroupTable(); // +++ ? //bool operator==(const GroupTable & right) const; //bool operator!=(const GroupTable & right) const; // +++ returning a ptr to the newly added member? HDU * addMember (HDU & newMember); HDU * addMember (int memberPosition); // +++ deleteHDU must be false for now //HDU * removeMember (LONGLONG memberNumber, bool deleteHDU = false); //HDU * removeMember (HDU & member, bool deleteHDU = false); HDU * removeMember (LONGLONG memberNumber); HDU * removeMember (HDU & member); // +++ should I be offering default values for these booleans? // void mergeGroups (GroupTable & other, bool removeOther = false) ; // void compactGroup (bool deleteSubGroupTables = false) ; // void copyMember (HDU & member) ; // void copyGroup () ; // void removeGroup () ; // bool verifyGroup () const ; // +++ this function name doesn't really indicate bool void listMembers() const; LONGLONG getNumMembers () const ; int getID () const ; const String & getName () const ; //virtual HDU * getHDUPtr () const; // method to determine if this object is a GroupTable // +++ or have bool isComposite() ? //virtual GroupTable * getComposite () ; //Iterator createIterator () ; //typedef std::vector::iterator iterator; //std::vector::iterator begin() { return m_members.begin(); } //std::vector::iterator end() { return m_members.end(); } // ******************************** // protected methods // ******************************** protected: //GroupTable (const GroupTable & right); // create a new grouping table // +++ we'll go ahead and require a groupname // +++ make version default = 1? GroupTable (FITS* p, int groupID, const String & groupName); // create an existing grouping table //GroupTable (FITS* p); // ******************************** // private methods // ******************************** private: //GroupTable & operator=(const GroupTable &right); // ******************************** // data members // ******************************** private: string m_name; // GRPNAME keyword int m_id; // EXTVER keyword // +++ int? std::vector m_members; // +++ is a vector the best data structure for this? prob not a map. each member doesn't have to have a name. // +++ if we don't have a class GroupMember, then we can't find out how many groups a member is part of LONGLONG m_numMembers; // +++ https://heasarc.gsfc.nasa.gov/fitsio/c/c_user/node32.html lrgst size of NAXIS2 // +++ this could use a ULONGLONG datatype, since rows can't be neg // +++ I think we need to keep information about the location of the group table // because some members identify that they are a member of a group, and have the location of the group // ******************************** // Additional Implementation Declarations // ******************************** private: //## implementation // for the HDU* MakeTable() function friend class HDUCreator; }; // end-class GroupTable // ******************************** // INLINE METHODS // ******************************** inline LONGLONG GroupTable::getNumMembers () const { return m_numMembers; } inline int GroupTable::getID () const { return m_id; } // +++ name could be blank/null inline const string & GroupTable::getName () const { return m_name; } // inline GroupTable * GroupTable::getComposite () // { // return this; // } } // end-namespace CCfits // end-ifndef GROUPTABLE_H #endif CCfits-2.7/Keyword.cxx0000644000225700000360000002677314764627567014242 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #include // FitsError #include "FitsError.h" // HDU #include "HDU.h" // Keyword #include "Keyword.h" // FITS #include "FITS.h" #include "KeyData.h" namespace CCfits { // Class CCfits::Keyword::WrongKeywordValueType Keyword::WrongKeywordValueType::WrongKeywordValueType (const String& diag, bool silent) : FitsException("Error: attempt to read keyword into variable of incorrect type",silent) { addToMessage(string("\nKeyname: ") + diag); if ( FITS::verboseMode() || !silent) std::cerr << "\nKeyname: " << diag << "\n"; } // Class CCfits::Keyword Keyword::Keyword(const Keyword &right) : m_keytype(right.m_keytype), m_parent(0), // Can only assign parent when added to an HDU. m_comment(right.m_comment), m_name(right.m_name), m_isLongStr(right.m_isLongStr) { } Keyword::Keyword (const String &keyname, ValueType keytype, HDU* p, const String &comment, bool isLongStr) : m_keytype(keytype), m_parent(p), m_comment(comment), m_name(keyname), m_isLongStr(isLongStr) { } Keyword::~Keyword() { } Keyword & Keyword::operator=(const Keyword &right) { if (this != &right) copy(right); return *this; } bool Keyword::operator==(const Keyword &right) const { return compare(right); } bool Keyword::operator!=(const Keyword &right) const { return !compare(right); } void Keyword::copy (const Keyword& right) { m_name = right.m_name; m_comment = right.m_comment; m_keytype = right.m_keytype; // Can only assign parent when added to an HDU. Do not change // m_parent during an assign. } bool Keyword::compare (const Keyword &right) const { if (m_name != right.m_name) return false; if (m_keytype != right.m_keytype) return false; if (m_comment != right.m_comment) return false; // parent not relevant to compare. //if (m_parent != right.m_parent) return false; return true; } void Keyword::write () { // Just perform parent pointer checking in here. KeyData // subclass will actually handle the writing. if (!m_parent) { bool silent=true; throw FitsException("***CCfits Warning: Keyword must be added to an HDU before it can be written.",silent); } m_parent->makeThisCurrent(); } fitsfile* Keyword::fitsPointer () const { fitsfile* fPtr = 0; if (m_parent) fPtr = m_parent->fitsPointer(); return fPtr; } // Additional Declarations } // namespace CCfits namespace CCfits { #ifndef SPEC_TEMPLATE_IMP_DEFECT #ifndef SPEC_TEMPLATE_DECL_DEFECT template<> float& Keyword::value(float& val) const { double dval=.0; val = static_cast(value(dval)); return val; } template<> bool& Keyword::value(bool& val) const { if (m_keytype == Tlogical) { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } else throw Keyword::WrongKeywordValueType(name()); return val; } template<> double& Keyword::value(double& val) const { switch (m_keytype) { case Tint: { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; case Tfloat: { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; case Tdouble: { // Note: if val is of type float some precision will be lost here, // but allow anyway. Presumably the user doesn't mind or they // wouldn't be using single precision. const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; case Tstring: { // Allow only if string can be converted to an integer. const KeyData& thisKey = static_cast&>(*this); std::istringstream testStream(thisKey.keyval()); int stringInt = 0; if (!(testStream >> stringInt) || !testStream.eof()) { throw Keyword::WrongKeywordValueType(name()); } val = stringInt; } break; case Tnull: { const KeyNull& thisKey = static_cast(*this); if (thisKey.state() == KeyNull::ValState::NumData) val = thisKey.numValue(); else throw Keyword::WrongKeywordValueType(name()); } break; default: throw Keyword::WrongKeywordValueType(name()); break; } return val; } template <> int& Keyword::value(int& val) const { if (m_keytype == Tstring) { // Allow only if string can be converted to an integer. const KeyData& thisKey = static_cast&>(*this); std::istringstream testStream(thisKey.keyval()); int stringInt = 0; if (!(testStream >> stringInt) || !testStream.eof()) { throw Keyword::WrongKeywordValueType(name()); } val = stringInt; } else if (m_keytype == Tint) { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } else if (m_keytype == Tnull) { const KeyNull& thisKey = static_cast(*this); if (thisKey.state() == KeyNull::ValState::NumData) // This will truncate if numValue is float/double. val = static_cast(thisKey.numValue()); else throw Keyword::WrongKeywordValueType(name()); } else { throw Keyword::WrongKeywordValueType(name()); } return val; } template <> String& Keyword::value(String& val) const { switch (m_keytype) { case Tint: { const KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << thisKey.keyval(); val = oss.str(); } break; case Tfloat: { const KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << thisKey.keyval(); val = oss.str(); } break; case Tdouble: { const KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << thisKey.keyval(); val = oss.str(); } break; case Tlogical: { const KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << std::boolalpha << thisKey.keyval() ; val = oss.str(); } break; case Tstring: { const KeyData& thisKey = static_cast&>(*this); val = thisKey.keyval(); } break; case Tnull: { const KeyNull& thisKey = static_cast(*this); if (thisKey.state() == KeyNull::ValState::StrData) { val = thisKey.stringValue(); } else if (thisKey.state() == KeyNull::ValState::NumData) { std::ostringstream oss; oss << thisKey.numValue(); val = oss.str(); } else throw Keyword::WrongKeywordValueType(name()); } break; default: throw Keyword::WrongKeywordValueType(name()); } return val; } template <> void Keyword::setValue(const float& newValue) { if (m_keytype == Tfloat) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } else if (m_keytype == Tdouble) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else if (m_keytype == Tnull) { KeyNull& thisKey = static_cast(*this); thisKey.setNumValue(static_cast(newValue),Tfloat); thisKey.write(); } else { throw Keyword::WrongKeywordValueType(name()); } } template <> void Keyword::setValue(const double& newValue) { if (m_keytype == Tdouble) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } else if (m_keytype == Tfloat) { // This will lose precision but allow it anyway. KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else if (m_keytype == Tnull) { KeyNull& thisKey = static_cast(*this); thisKey.setNumValue(newValue, Tdouble); thisKey.write(); } else { throw Keyword::WrongKeywordValueType(name()); } } template <> void Keyword::setValue(const int& newValue) { if (m_keytype == Tint) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } else if (m_keytype == Tfloat) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else if (m_keytype == Tdouble) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(static_cast(newValue)); thisKey.write(); } else if (m_keytype == Tstring) { KeyData& thisKey = static_cast&>(*this); std::ostringstream oss; oss << newValue; thisKey.keyval(oss.str()); thisKey.write(); } else if (m_keytype == Tnull) { KeyNull& thisKey = static_cast(*this); thisKey.setNumValue(newValue, Tint); thisKey.write(); } else { throw Keyword::WrongKeywordValueType(name()); } } template <> void Keyword::setValue(const String& newValue) { if (m_keytype == Tstring) { KeyData& thisKey = static_cast&>(*this); thisKey.keyval(newValue); thisKey.write(); } else if (m_keytype == Tnull) { KeyNull& thisKey = static_cast(*this); thisKey.setStringValue(newValue); thisKey.write(); } else { throw Keyword::WrongKeywordValueType(name()); } } #endif #endif } CCfits-2.7/Column.h0000644000225700000360000013636414764627567013476 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef COLUMN_H #define COLUMN_H 1 #include // CCfitsHeader #include "CCfits.h" // Table #include "Table.h" // FitsError #include "FitsError.h" // FITSUtil #include "FITSUtil.h" #include namespace CCfits { /*! \class Column \brief Abstract base class for Column objects. Columns are the data containers used in FITS tables. Columns of scalar type (one entry per cell) are implemented by the template subclass ColumnData. Columns of vector type (vector and variable rows) are implemented with the template subclass ColumnVectorData. AsciiTables may only contain Columns of type ColumnData, where T is an implemented FITS data type (see the CCfits.h header for a complete list. This requirement is enforced by ensuring that AsciiTable's addColumn method may only create an AsciiTable compatible column. The ColumnData class stores its data in a std::vector object. BinTables may contain either ColumnData or ColumnVectorData. For ColumnVectorData, T must be a numeric type: string vectors are handled by ColumnData; string arrays are not supported. The internal representation of the data is a std::vector > object. The std::valarray class is designed for efficient numeric processing and has many vectorized numeric and transcendental functions defined on it. Member template functions for read/write operations are provided in multiple overloads as the interface to data operations. Implicit data type conversions are supported but where they are required make the operations less efficient. Reading numeric column data as character arrays, supported by cfitsio, is not supported by CCfits. As a base class, Column provides protected accessor/mutator inline functions to allow only its subclasses to access data members. */ /*! \class Column::RangeError @ingroup FITSexcept @brief exception to be thrown for inputs that cause range errors in column read operations. Range errors here mean (last < first) in a request to read a range of rows. */ /*! \fn Column::RangeError::RangeError (const String& msg, bool silent); \brief Exception ctor, prefixes the string "FitsError: Range error in operation " before the specific message. \param msg A specific diagnostic message \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class Column::InvalidDataType @ingroup FITSExcept @brief Exception thrown for invalid data type inputs This exception is thrown if the user requests an implicit data type conversion to a datatype that is not one of the supported types (see fitsio.h for details). */ /*! \fn Column::InvalidDataType::InvalidDataType (const String& str, bool silent); \brief Exception ctor, prefixes the string "FitsError: Incorrect data type: " before the specific message. \param str A specific diagnostic message \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class Column::InvalidRowParameter @ingroup FITSExcept @brief Exception thrown on incorrect row writing request This exception is thrown if the user requests writing more data than a fixed width row can accommodate. An exception is thrown rather than a truncation because it is likely that the user will not otherwise realize that data loss is happening. */ /*! \fn Column::InvalidRowParameter::InvalidRowParameter (const String& diag, bool silent); \brief Exception ctor, prefixes the string "FitsError: row offset or length incompatible with column declaration " before the specific message. \param diag A specific diagnostic message, usually the column name \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class Column::WrongColumnType @ingroup FITSExcept @brief Exception thrown on attempting to access a scalar column as vector data. This exception will be thrown if the user tries to call a read/write operation with a signature appropriate for a vector column on a scalar column, or vice versa. For example in the case of write operations, the vector versions require the specification of (a) a number of rows to write over, (b) a vector of lengths to write to each row or (c) a subset specification. The scalar versions only require a number of rows if the input array is a plain C-array, otherwise the range to be written is the size of the input vector. */ /*! \fn Column::WrongColumnType::WrongColumnType (const String& diag, bool silent); \brief Exception ctor, prefixes the string "FitsError: Attempt to return scalar data from vector column, or vice versa - Column: " before the specific message. \param diag A specific diagnostic message, usually the column name. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class Column::InvalidRowNumber @ingroup FITSExcept @brief Exception thrown on attempting to read a row number beyond the end of a table. */ /*! \fn Column::InvalidRowNumber::InvalidRowNumber (const String& diag, bool silent); \brief Exception ctor, prefixes the string "FitsError: Invalid Row Number - Column: " before the specific message. \param diag A specific diagnostic message, usually the column name. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class Column::InsufficientElements @ingroup FITSExcept @brief Exception thrown if the data supplied for a write operation is less than declared. This circumstance generates an exception to avoid unexpected behaviour after the write operation is completed. It can be avoided by resizing the input array appropriately. */ /*! \fn Column::InsufficientElements::InsufficientElements (const String& msg, bool silent); \brief Exception ctor, prefixes the string "FitsError: not enough elements supplied for write operation: " before the specific message. \param msg A specific diagnostic message, usually the column name \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class Column::NoNullValue @ingroup FITSExcept @brief Exception thrown if a null value is specified without support from existing column header. This exception is analogous to the fact that cfitsio returns a non-zero status code if TNULLn doesn't exist an a null value (convert all input data with the null value to the TNULLn keyword) is specified. It is only relevant for integer type data (see cfitsio manual for details). */ /*! \fn Column::NoNullValue::NoNullValue (const String& diag, bool silent); \brief Exception ctor, prefixes the string "Fits Error: No null value specified for column: " before the specific message. \param diag A specific diagnostic message \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class Column::InvalidNumberOfRows @ingroup FITSExcept @brief Exception thrown if user enters a non-positive number for the number of rows to write. */ /*! \fn Column::InvalidNumberOfRows::InvalidNumberOfRows (int number, bool silent); \brief Exception ctor, prefixes the string "Fits Error: number of rows to write must be positive " before the specific message. \param number The number of rows entered. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \fn Column::Column(const Column& right); \brief copy constructor, used in copying Columns to standard library containers. The copy constructor is for internal use only: it does not affect the disk fits file associated with the object. */ /*! \fn virtual Column::~Column(); \brief destructor. */ /*! \fn template void Column::read(std::vector& vals, long first, long last); \brief Retrieve data from a scalar column into a std::vector This and the following functions perform implicit data conversions. An exception will be thrown if no conversion exists. \param vals The output container. The function will resize this as necessary \param first,last the span of row numbers to read. */ /*! \fn template void Column::read(std::vector& vals, long first, long last, S* nullValue) ; \brief Retrieve data from a scalar column into a std::vector>, applying nullValue when relevant. If both nullValue and *nullValue are not 0, then any undefined values in the file will be converted to *nullValue when copied into the vals vector. See cfitsio documentation for further details \param vals The output container. The function will resize this as necessary \param first,last the span of row numbers to read. \param nullValue pointer to value to be applied to undefined elements. */ /*! \fn template void Column::read(std::valarray& vals, long first, long last) ; \brief Retrieve data from a scalar column into a std::valarray \param vals The output container. The function will resize this as necessary \param first,last the span of row numbers to read. */ /*! \fn template void Column::read(std::valarray& vals, long first, long last, S* nullValue) ; \brief Retrieve data from a scalar column into a std::valarray, applying nullValue when relevant. If both nullValue and *nullValue are not 0, then any undefined values in the file will be converted to *nullValue when copied into the vals valarray. See cfitsio documentation for further details \param vals The output container. The function will resize this as necessary \param first,last the span of row numbers to read. \param nullValue pointer to value to be applied to undefined elements. */ /*! \fn template void Column::read(std::valarray& vals, long row) ; \brief return a single row of a vector column into a std::valarray \param vals The output valarray object \param row The row number to be retrieved (starting at 1). */ /*! \fn template void Column::read(std::vector& vals, long row) ; \brief return a single row of a vector column into a std::vector \param vals The output vector object \param row The row number to be retrieved (starting at 1). */ /*! \fn template void Column::read(std::valarray& vals, long row, S* nullValue) ; \brief return a single row of a vector column into a std::valarray, setting undefined values */ /*! \fn template void Column::read(std::valarray& vals, long row, S* nullValue) ; \brief return a single row of a vector column into a std::vector, setting undefined values */ /*! \fn template void Column::readArrays(std::vector >& vals, long first,long last); \brief return a set of rows of a vector column into a vector of valarrays \param vals The output container. The function will resize this as necessary \param first,last the span of row numbers to read. */ /*! \fn template void Column::readArrays(std::vector >& vals, long first, long last, S* nullValue); \brief return a set of rows of a vector column into a container, setting undefined values \param vals The output container. The function will resize this as necessary \param first,last the span of row numbers to read. \param nullValue pointer to integer value regarded as undefined */ /*! \fn template void Column::write(const std::vector& indata, long firstRow); \brief write a vector of values into a scalar column starting with firstRow \param indata The data to be written. \param firstRow The first row to be written */ /*! \fn template void Column::write(const std::valarray& indata, long firstRow); \brief write a valarray of values into a scalar column starting with firstRow \param indata The data to be written. \param firstRow The first row to be written */ /*! \fn template void Column::write(const std::vector& indata, long firstRow, S* nullValue); \brief write a vector of values into a scalar column starting with firstRow, replacing elements equal to *nullValue with the FITS null value. If nullValue is not 0, the appropriate FITS null value will be substituted for all elements of indata equal to *nullValue. For integer type columns there must be a pre-existing TNULLn keyword to define the FITS null value, otherwise a FitsError exception is thrown. For floating point columns, the FITS null is the IEEE NaN (Not-a-Number) value. See the cfitsio fits_write_colnull function documentation for more details. \param indata The data to be written. \param firstRow The first row to be written \param nullValue Pointer to the value for which equivalent indata elements will be replaced in the file with the appropriate FITS null value. */ /*! \fn template void Column::write(const std::valarray& indata, long firstRow, S* nullValue); \brief write a valarray of values into a scalar column starting with firstRow, replacing elements equal to *nullValue with the FITS null value. If nullValue is not 0, the appropriate FITS null value will be substituted for all elements of indata equal to *nullValue. For integer type columns there must be a pre-existing TNULLn keyword to define the FITS null value, otherwise a FitsError exception is thrown. For floating point columns, the FITS null is the IEEE NaN (Not-a-Number) value. See the cfitsio fits_write_colnull function documentation for more details. \param indata The data to be written. \param firstRow The first row to be written \param nullValue Pointer to the value for which equivalent indata elements will be replaced in the file with the appropriate FITS null value. */ /*! \fn template void Column::write(S* indata, long nRows, long firstRow); \brief write a C array of size nRows into a scalar Column starting with row firstRow. \param indata The data to be written. \param nRows The size of the data array to be written \param firstRow The first row to be written */ /*! \fn template void Column::write(S* indata, long nRows, long firstRow, S* nullValue); \brief write a C array into a scalar Column, processing undefined values. \param indata The data to be written. \param nRows The size of the data array to be written \param firstRow The first row to be written \param nullValue Pointer to the value in the input array to be set to undefined values */ /*! \fn template void Column::write (const std::valarray& indata, long nRows, long firstRow); \brief write a valarray of values into a range of rows of a vector column. The primary use of this is for fixed width columns, in which case Column's repeat attribute is used to determine how many elements are written to each row; if indata.size() is too small an exception will be thrown. If the column is variable width, the call will write indata.size()/nRows elements to each row. \param indata The data to be written. \param nRows the number of rows to which to write the data. \param firstRow The first row to be written */ /*! \fn template void Column::write (const std::valarray& indata, long nRows, long firstRow, S* nullValue); \brief write a valarray of values into a range of rows of a vector column. see version without undefined processing for details. */ /*! \fn template void Column::write (const std::vector& indata, long nRows, long firstRow); \brief write a vector of values into a range of rows of a vector column The primary use of this is for fixed width columns, in which case Column's repeat attribute is used to determine how many elements are written to each row; if indata.size() is too small an exception will be thrown. If the column is variable width, the call will write indata.size()/nRows elements to each row. \param indata The data to be written. \param nRows the number of rows to which to write the data. \param firstRow The first row to be written */ /*! \fn template void Column::write (const std::vector& indata, long nRows, long firstRow, S* nullValue); \brief write a vector of values into a range of rows of a vector column, processing undefined values see version without undefined processing for details. */ /*! \fn template void Column::write (S* indata, long nElements, long nRows, long firstRow); \brief write a C array of values into a range of rows of a vector column Details are as for vector input; only difference is the need to supply the size of the C-array. \param indata The data to be written. \param nElements The size of indata \param nRows the number of rows to which to write the data. \param firstRow The first row to be written */ /*! \fn template void Column::write (S* indata, long nElements, long nRows, long firstRow, S* nullValue); \brief write a C array of values into a range of rows of a vector column, processing undefined values. see version without undefined processing for details. */ /*! \fn template void Column::write (const std::valarray& indata, const std::vector& vectorLengths, long firstRow); \brief write a valarray of values into a column with specified number of entries written per row. Data are written into vectorLengths.size() rows, with vectorLength[n] elements written to row n+firstRow -1. Although primarily intended for wrapping calls to multiple variable-width vector column rows, it may also be used to write a variable number of elements to fixed-width column rows. When writing to fixed-width column rows, if the number of elements sent to a particular row are fewer than the column's repeat value, the remaining elements in the row will not be modified. Since cfitsio does not support null value processing for variable width columns this function and its variants do not have version which process undefined values \param indata The data to be written \param vectorLengths the number of elements to write to each successive row. \param firstRow the first row to be written. */ /*! \fn template void Column::write (const std::vector& indata, const std::vector& vectorLengths, long firstRow); \brief write a vector of values into a column with specified number of entries written per row. Intended for writing a varying number of elements to multiple rows in a vector column, this may be used for either variable or fixed-width columns. See the indata valarray version of this function for a complete description. */ /*! \fn template void Column::write (S* indata, long nElements, const std::vector& vectorLengths, long firstRow); \brief write a C-array of values of size nElements into a vector column with specified number of entries written per row. Intended for writing a varying number of elements to multiple rows in a vector column, this may be used for either variable or fixed-width columns. See the indata valarray version of this function for a complete description. */ /*! \fn template void Column::writeArrays (const std::vector >& indata, long firstRow); \brief write a vector of valarray objects to the column, starting at row firstRow >= 1 Intended for writing a varying number of elements to multiple rows in a vector column, this may be used for either variable or fixed-width columns. When writing to fixed-width column rows, if the number of elements sent to a particular row are fewer than the column's repeat value, the remaining elements in the row will not be modified. \param indata The data to be written \param firstRow the first row to be written. */ /*! \fn template void Column::writeArrays (const std::vector >& indata, long firstRow, S* nullValue); \brief write a vector of valarray objects to the column, starting at row firstRow >= 1, processing undefined values see version without undefined processing for details. */ /*! \fn template void Column::addNullValue(T nullVal); \brief Set the TNULLn keyword for the column Only relevant for integer valued columns, TNULLn is the value used by cfitsio in undefined processing. All entries in the table equal to an input "null value" are set equal to the value of TNULLn. (For floating point columns a system NaN value is used). */ /*! \fn template bool Column::getNullValue(T* nullVal) const; \brief Get the value of the TNULLn keyword for the column Only relevant for integer valued columns. If the TNULLn keyword is present, its value will be written to *nullVal and the function returns true. If the keyword is not found or its value is undefined, the function returns false and *nullVal is not modified. \param nullVal A pointer to the variable for storing the TNULLn value. */ /*! \fn virtual void Column::readData (long firstRow = 1, long nelements = 1, long firstElem = 1) = 0; \brief Read (or reread) data from the disk into the Column object's internal arrays. This function normally does not need to be called. See the resetRead function for an alternative way of performing a reread from disk. \param firstRow The first row to be read \param nelements The number of elements to read \param firstElem The number of the element on the first row to start at (ignored for scalar columns) */ /*! \fn void Column::setDisplay (); \brief set the TDISPn keyword */ /*! \fn void Column::rows() const; \brief return the number of rows in the table. */ /*! \fn virtual void Column::setDimen (); \brief set the TDIMn keyword. */ /*! \fn std::ostream& operator <<(std::ostream& s, const Column& right); \brief output operator for Column objects. */ /*! \fn int Column::index () const; \brief get the Column index (the n in TTYPEn etc). */ /*! \fn size_t Column::repeat () const; \brief get the repeat count for the rows */ /*! \fn const bool Column::varLength () const; \brief boolean, set to true if Column has variable length vector rows. */ /*! \fn const double Column::scale () const; \brief get TSCALn value TSCALn is used to convert a data array represented on disk in integer format as floating. Useful for compact storage of digitized data. */ /*! \fn const double Column::zero () const; \brief get TZEROn value TZEROn is an integer offset used in the implementation of unsigned data */ /*! \fn const String& Column::name () const; \brief return name of Column (TTYPEn keyword) */ /*! \fn const String& Column::unit () const; \brief get units of data in Column (TUNITn keyword) */ /*! \fn Column::Column (int columnIndex, const String &columnName,const ValueType type, const String &format, const String &unit, Table* p, int rpt = 1, long w = 1, const String &comment = ""); \brief new column creation constructor This constructor allows the specification of: \param columnIndex The column number \param columnName The column name, keyword TTYPEn \param type used for determining class of T in ColumnData, ColumnVectorData \param format the column data format, TFORMn keyword \param unit the column data unit, TUNITn keyword \param p the Table pointer \param rpt (optional) repeat count for the row ( == 1 for AsciiTables) \param w the row width \param comment comment to be added to the header. */ /*! \fn Column::Column (Table* p = 0); \brief Simple constructor to be called by subclass reading ctors. */ /*! \fn fitsfile* Column::fitsPointer (); \brief fits pointer corresponding to fits file containing column data. */ /*! \fn void Column::makeHDUCurrent (); \brief make HDU containing this the current HDU of the fits file. */ /*! \fn int Column::rows () const; \brief return number of rows in the Column */ /*! \fn virtual std::ostream& Column::put (std::ostream& s) const; \brief internal implementation of << operator. */ /*! \fn const ValueType Column::type () const; \brief returns the data type of the column */ /*! \fn const bool Column::isRead () const; \brief flag set to true if the entire column data has been read from disk */ /*! \fn void Column::resetRead(); \brief reset the Column's isRead flag to false This forces the data to be reread from the disk the next time a read command is called on the Column, rather than simply retrieving the data already stored in the Column object's internal arrays. This may be useful for example if trying to reread a Column using a different nullValue argument than for an earlier read. */ /*! \fn long Column::width () const; \brief return column data width */ /*! \fn String& Column::display () const; \brief return TDISPn keyword TDISPn is suggested format for output of column data. */ /*! \fn String& Column::dimen () const; \brief return TDIMn keyword represents dimensions of data arrays in vector columns. for scalar columns, returns a default value. */ /*! \fn const String& Column::format () const; \brief return TFORMn keyword TFORMn specifies data format stored in disk file. */ /*! \fn const String& Column::comment () const; \brief retrieve comment for Column */ /*! \fn Table* Column::parent() const; \brief return a pointer to the Table which owns this Column */ class Column { public: class RangeError : public FitsException //## Inherits: %3946526D031A { public: RangeError (const String& msg, bool silent = true); protected: private: private: //## implementation }; class InvalidDataType : public FitsException //## Inherits: %3947CF30033E { public: InvalidDataType (const String& str = string(), bool silent = true); protected: private: private: //## implementation }; class InvalidRowParameter : public FitsException //## Inherits: %39B5310F01A0 { public: InvalidRowParameter (const String& diag, bool silent = true); protected: private: private: //## implementation }; class WrongColumnType : public FitsException //## Inherits: %39B545780082 { public: WrongColumnType (const String& diag, bool silent = true); protected: private: private: //## implementation }; class UnspecifiedLengths : public FitsException //## Inherits: %3A018C9D007D { public: UnspecifiedLengths (const String& diag, bool silent = true); protected: private: private: //## implementation }; class InvalidRowNumber : public FitsException //## Inherits: %3B0A850F0307 { public: InvalidRowNumber (const String& diag, bool silent = true); protected: private: private: //## implementation }; class InsufficientElements : public FitsException //## Inherits: %3B0BE611010A { public: InsufficientElements (const String& msg, bool silent = true); protected: private: private: //## implementation }; class NoNullValue : public FitsException //## Inherits: %3B0D589A0092 { public: NoNullValue (const String& diag, bool silent = true); protected: private: private: //## implementation }; class InvalidNumberOfRows : public FitsException //## Inherits: %3B20EB8B0205 { public: InvalidNumberOfRows (int number, bool silent = true); protected: private: private: //## implementation }; Column(const Column &right); virtual ~Column(); bool operator==(const Column &right) const; bool operator!=(const Column &right) const; virtual void readData (long firstRow, long nelements, long firstElem = 1) = 0; // Virtual copy constructor. virtual Column * clone () const = 0; int rows () const; void setDisplay (); virtual void setDimen (); friend std::ostream& operator << (std::ostream& s, const Column& right); // The parent SET function is needed by Table classes, but // should not be part of the user interface. It is deliberately left // out of the document section up top. Table* parent () const; void setParent(Table* parent); // Inequality operators for imposing sort order on columns. friend bool operator < (const Column& left, const Column& right); // Inequality operators for imposing sort order on columns. friend bool operator > (const Column& left, const Column& right); void setLimits (ValueType type); void unit (const String& value); void resetRead (); int index () const; void index (int value); bool isRead () const; void isRead (bool value); long width () const; void width (long value); size_t repeat () const; bool varLength () const; double scale () const; void scale (double value); double zero () const; void zero (double value); const String& display () const; const String& dimen () const; void dimen (const String& value); ValueType type () const; void type (ValueType value); static const String& TFORM (); static const String& TDISP (); static const String& TSCAL (); static const String& TZERO (); static const String& TDIM (); const String& format () const; const String& unit () const; const String& name () const; public: // Additional Public Declarations // scalar column interface. Column's Data Member is a std::vector, // input data is std::vector, std::valarray or S* where S is not // in general the same as T. template void write (const std::vector& indata, long firstRow); void write (const std::vector >& indata, long firstRow); void write (const std::vector >& indata, long firstRow); template void write (const std::valarray& indata, long firstRow); void write (const std::valarray >& indata, long firstRow); void write (const std::valarray >& indata, long firstRow); template void write (S* indata, long nRows, long firstRow); template void write (const std::vector& indata, long firstRow, S* nullValue); template void write (const std::valarray& indata, long firstRow, S* nullValue); template void write (S* indata, long nRows, long firstRow, S* nullValue); // vector column interface. We provide an interface that allows input of a vector, valarray and C-array. // there are versions that write variable numbers of elements per row as specified // in the vectorLengths argument. The user also can directly write a vector > // object which is how the data are stored in the ColumnVectorData object. // this last one is also used internally to implement the variable lengths versions. // fixed length write to binary table from valarray. template void write (const std::valarray& indata, long nRows, long firstRow); void write (const std::valarray >& indata, long nRows, long firstRow); void write (const std::valarray >& indata, long nRows, long firstRow); template void write (const std::vector& indata, long nRows, long firstRow); void write (const std::vector >& indata, long nRows, long firstRow); void write (const std::vector >& indata, long nRows, long firstRow); template void write (S* indata, long nElements, long nRows, long firstRow); template void write (const std::valarray& indata, long nRows, long firstRow, S* nullValue); template void write (const std::vector& indata, long nRows, long firstRow, S* nullValue); template void write (S* indata, long nElements, long nRows, long firstRow, S* nullValue); // variable-length write to vector column from valarray or vector. template void write (const std::valarray& indata, const std::vector& vectorLengths, long firstRow); void write (const std::valarray >& indata, const std::vector& vectorLengths, long firstRow); void write (const std::valarray >& indata, const std::vector& vectorLengths, long firstRow); template void write (const std::vector& indata, const std::vector& vectorLengths, long firstRow); void write (const std::vector >& indata, const std::vector& vectorLengths, long firstRow); void write (const std::vector >& indata, const std::vector& vectorLengths, long firstRow); template void write (S* indata, long nElements, const std::vector& vectorLengths, long firstRow); template void writeArrays (const std::vector >& indata, long firstRow); void writeArrays (const std::vector > >& indata, long firstRow); void writeArrays (const std::vector > >& indata, long firstRow); template void writeArrays (const std::vector >& indata, long firstRow, S* nullValue); // get specified elements of a scalar column, returned as a std::vector // S is NOT the type of the column data itself, it is the type of the returned // data. template void read(std::vector& vals, long first, long last) ; // VC++, at least, won't compile these as template covering std::complex instances. void read(std::vector< std::complex >& , long first, long last); void read(std::vector< std::complex >& , long first, long last); void read(std::vector& vals, long first, long last); // return a set of rows from a scalar column as a valarray. template void read(std::valarray& vals, long first, long last) ; void read(std::valarray >& vals, long first, long last) ; void read(std::valarray >& vals, long first, long last) ; // return a single row of a vector column. template void read(std::valarray& vals, long rows) ; template void read(std::vector& vals, long rows); void read(std::valarray >& vals, long rows) ; void read(std::valarray >& vals, long rows) ; void read(std::vector >& vals, long rows) ; void read(std::vector >& vals, long rows) ; // get a set of rows from a vector column. template void readArrays(std::vector >& vals, long first, long last) ; void readArrays(std::vector > >& vals, long first, long last) ; void readArrays(std::vector > >& vals, long first, long last) ; // nullValue has no meaning when the target column has floating point/std::complex // type. Also, implict conversion of std::complex to pure real is not supported // by cfitsio. template void read(std::vector& vals, long first, long last, S* nullValue) ; // return a set of rows from a scalar column as a valarray. template void read(std::valarray& vals, long first, long last, S* nullValue); // return a single row of a vector column. template void read(std::valarray& vals, long rows, S* nullValue) ; template void read(std::vector& vals, long rows, S* nullValue) ; // get a set of rows from a vector column. template void readArrays(std::vector >& vals, long first, long last, S* nullValue); // add a null value to the column template void addNullValue(T nullVal); // get the TNULL setting template bool getNullValue(T* nullVal) const; void write (const std::vector& indata, long firstRow); friend void Table::insertRows(long first, long number); friend void Table::deleteRows(long first, long number); friend void Table::deleteRows(const std::vector& rowList); friend void Table::initRead(); friend void Table::reindex(int startNum, bool isInsert); friend void Table::updateRows(); protected: Column (int columnIndex, // The column index, i.e. the integer n in the keyword TCOLn const String &columnName, // The column name, curiously TTYPEn ValueType type, const String &format, // The TFORMn keyword. const String &unit, // The TUNITn keyword Table* p, // ! The Table containing the Column object int rpt = 1, long w = 1, const String &comment = ""); Column (Table* p = 0); virtual bool compare (const Column &right) const; fitsfile* fitsPointer (); // Protected method to set the current HDU to be the one containing this Column object. For use in // public read/write methods to ensure that data regarding numbers of rows and width relate to the // right HDU void makeHDUCurrent (); virtual std::ostream& put (std::ostream& s) const; void varLength (bool value); static const String& TBCOL (); static const String& TTYPE (); static const String& TUNIT (); static const String& TNULL (); static const String& TLMIN (); static const String& TLMAX (); static const String& TDMAX (); static const String& TDMIN (); static const std::vector& columnKeys (); const String& comment () const; // Additional Protected Declarations private: Column & operator=(const Column &right); // Insert one or more blank rows into a FITS column. virtual void insertRows (long first, long number = 1) = 0; virtual void deleteRows (long first, long number = 1) = 0; virtual size_t getStoredDataSize() const = 0; static void loadColumnKeys (); void name (const String& value); void format (const String& value); long numberOfElements (long& first, long& last); // Data Members for Class Attributes static const String s_TBCOL; static const String s_TTYPE; static const String s_TFORM; static const String s_TDISP; static const String s_TUNIT; static const String s_TSCAL; static const String s_TZERO; static const String s_TDIM; static const String s_TNULL; static const String s_TLMIN; static const String s_TLMAX; static const String s_TDMAX; static const String s_TDMIN; // Additional Private Declarations private: //## implementation // Data Members for Class Attributes int m_index; bool m_isRead; long m_width; size_t m_repeat; bool m_varLength; double m_scale; double m_zero; String m_display; String m_dimen; ValueType m_type; static const short LLIMITSHORT; static const long LLIMITLONG; static const unsigned short LLIMITUSHORT; static const unsigned long LLIMITULONG; static const unsigned char LLIMITUCHAR; static const float LLIMITFLOAT; static const double LLIMITDOUBLE; static const short ULIMITSHORT; static const long ULIMITLONG; static const unsigned short ULIMITUSHORT; static const unsigned long ULIMITULONG; static const unsigned char ULIMITUCHAR; static const float ULIMITFLOAT; static const double ULIMITDOUBLE; static const int LLIMITINT; static const int ULIMITINT; static const unsigned int LLIMITUINT; static const unsigned int ULIMITUINT; static const LONGLONG LLIMITLONGLONG; static const LONGLONG ULIMITLONGLONG; // Data Members for Associations Table* m_parent; static std::vector s_columnKeys; String m_comment; String m_format; String m_unit; String m_name; // Additional Implementation Declarations }; // Class CCfits::Column::RangeError // Class CCfits::Column::InvalidDataType // Class CCfits::Column::InvalidRowParameter // Class CCfits::Column::WrongColumnType // Class CCfits::Column::UnspecifiedLengths // Class CCfits::Column::InvalidRowNumber // Class CCfits::Column::InsufficientElements // Class CCfits::Column::NoNullValue // Class CCfits::Column::InvalidNumberOfRows // Class CCfits::Column inline void Column::setDimen () { // default implementation: do nothing. Overridden by ColumnVectorData. } inline std::ostream& operator << (std::ostream& s, const Column& right) { return right.put(s); } inline bool operator < (const Column& left, const Column& right) { return left.m_index < right.m_index; } inline bool operator > (const Column& left, const Column& right) { return left.m_index > right.m_index; } inline void Column::resetRead () { m_isRead = false; } inline int Column::index () const { return m_index; } inline void Column::index (int value) { m_index = value; } inline bool Column::isRead () const { return m_isRead; } inline void Column::isRead (bool value) { m_isRead = value; } inline long Column::width () const { return m_width; } inline void Column::width (long value) { m_width = value; } inline size_t Column::repeat () const { return m_repeat; } inline bool Column::varLength () const { return m_varLength; } inline double Column::scale () const { return m_scale; } inline void Column::scale (double value) { m_scale = value; int status(0); if (fits_set_tscale(fitsPointer(),m_index,value,m_zero,&status)) throw FitsError(status); } inline double Column::zero () const { return m_zero; } inline void Column::zero (double value) { m_zero = value; } inline const String& Column::display () const { return m_display; } inline const String& Column::dimen () const { return m_dimen; } inline void Column::dimen (const String& value) { m_dimen = value; } inline ValueType Column::type () const { return m_type; } inline void Column::type (ValueType value) { m_type = value; } inline const String& Column::TBCOL () { return s_TBCOL; } inline const String& Column::TTYPE () { return s_TTYPE; } inline const String& Column::TFORM () { return s_TFORM; } inline const String& Column::TDISP () { return s_TDISP; } inline const String& Column::TUNIT () { return s_TUNIT; } inline const String& Column::TSCAL () { return s_TSCAL; } inline const String& Column::TZERO () { return s_TZERO; } inline const String& Column::TDIM () { return s_TDIM; } inline const String& Column::TNULL () { return s_TNULL; } inline const String& Column::TLMIN () { return s_TLMIN; } inline const String& Column::TLMAX () { return s_TLMAX; } inline const String& Column::TDMAX () { return s_TDMAX; } inline const String& Column::TDMIN () { return s_TDMIN; } inline const std::vector& Column::columnKeys () { return s_columnKeys; } inline const String& Column::comment () const { return m_comment; } inline const String& Column::format () const { return m_format; } inline const String& Column::unit () const { return m_unit; } inline const String& Column::name () const { return m_name; } } // namespace CCfits #endif CCfits-2.7/CCfits.h0000644000225700000360000000654514764627567013411 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef CCFITS_H #define CCFITS_H 1 // fitsio #include "fitsio.h" // string #include namespace CCfits { class ExtHDU; class Column; } // namespace CCfits #include #include #include "longnam.h" #include "float.h" namespace CCfits { /*! \namespace CCfits * \brief Namespace enclosing all CCfits classes and globals definitions. */ static const int BITPIX = -32; static const int NAXIS = 2; static const int MAXDIM = 99; extern const unsigned long USBASE; extern const unsigned long ULBASE; extern char BSCALE[7]; extern char BZERO[6]; typedef enum {Read=READONLY,Write=READWRITE} RWmode; /*! \enum ValueType * \brief CCfits value types and their CFITSIO equivalents (in caps) * Tnull, * Tbit = TBIT, * Tbyte = TBYTE, * Tlogical = TLOGICAL, * Tstring = TSTRING, * Tushort = TUSHORT, * Tshort = TSHORT, * Tuint = TUINT, * Tint = TINT, * Tulong = TULONG, * Tlong = TLONG, * Tlonglong = TLONGLONG, * Tfloat = TFLOAT, * Tdouble = TDOUBLE, * Tcomplex = TCOMPLEX, * Tdblcomplex=TDBLCOMPLEX, * VTbit= -TBIT, * VTbyte=-TBYTE, * VTlogical=-TLOGICAL, * VTstring=-TSTRING, * VTushort=-TUSHORT, * VTshort=-TSHORT, * VTuint=-TUINT, * VTint=-TINT, * VTulong=-TULONG, * VTlong=-TLONG, * VTlonglong=-TLONGLONG, * VTfloat=-TFLOAT, * VTdouble=-TDOUBLE, * VTcomplex=-TCOMPLEX, * VTdblcomplex=-TDBLCOMPLEX */ typedef enum { Tnull, Tbit = TBIT, Tbyte = TBYTE, Tlogical = TLOGICAL, Tstring = TSTRING, Tushort = TUSHORT, Tshort = TSHORT, Tuint = TUINT, Tint = TINT, Tulong = TULONG, Tlong = TLONG, Tlonglong = TLONGLONG, Tfloat = TFLOAT, Tdouble = TDOUBLE, Tcomplex = TCOMPLEX, Tdblcomplex = TDBLCOMPLEX, VTbit = -TBIT, VTbyte = -TBYTE, VTlogical = -TLOGICAL, VTstring = -TSTRING, VTushort = -TUSHORT, VTshort = -TSHORT, VTuint = -TUINT, VTint = -TINT, VTulong = -TULONG, VTlong = -TLONG, VTlonglong = -TLONGLONG, VTfloat = -TFLOAT, VTdouble = -TDOUBLE, VTcomplex = -TCOMPLEX, VTdblcomplex= -TDBLCOMPLEX } ValueType; // GroupTbl isn't a real CFITSIO HDU type, but we use it when creating // new Grouping Tables typedef enum {AnyHdu=-1, ImageHdu, AsciiTbl, BinaryTbl, GroupTbl} HduType; typedef enum {Inotype = 0, Ibyte=BYTE_IMG, Ishort = SHORT_IMG, Ilong = LONG_IMG, Ifloat = FLOAT_IMG, Idouble = DOUBLE_IMG, Iushort = USHORT_IMG, Iulong = ULONG_IMG, Ilonglong = LONGLONG_IMG} ImageType; typedef std::string String; typedef std::multimap ExtMap; /*! \var typedef std::multipmap ColMap \brief Type definition for a table's column container. */ typedef std::multimap ColMap; typedef ExtMap::const_iterator ExtMapConstIt; typedef ExtMap::iterator ExtMapIt; } // namespace CCfits #endif CCfits-2.7/FitsError.h0000644000225700000360000000732214764627567014147 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef FITSERROR_H #define FITSERROR_H 1 #include #include //#include //#include //#include #include using std::string; namespace CCfits { /*! \class FitsException @ingroup FITSexcept @brief FitsException is the base class for all exceptions thrown by this library. All exceptions derived from this class can be caught by a single 'catch' clause catching FitsException by reference (which is the point of this base class design). A static "verboseMode" parameter is provided by the FITS class to control diagnostics - if FITS::verboseMode() is true, all diagnostics are printed (for debugging purposes). If not, then a boolean silent determines printing of messages. Each exception derived from FitsException must define a default value for the silent parameter. */ /*! \fn FitsException::FitsException(const string& diag, bool& silent) \param diag A diagnostic string to be printed optionally. \param silent A boolean controlling the printing of messages */ /*! \fn const string& FitsException::message () const \brief returns the error message This returns the diagnostic error message associated with the exception object, and which is accessible regardless of the verboseMode and silent flag settings. */ /*! \class FitsError @ingroup FITSexcept @brief FitsError is the exception thrown by non-zero cfitsio status codes. */ /*! \fn FitsError::FitsError(int errornum, bool silent) \brief ctor for cfitsio exception: translates status code into cfitsio error message The exception prefixes the string "Fits Error: " to the message printed by cfitsio. \param errornum The cfitsio status code produced by the error. \param silent A boolean controlling the printing of messages */ /*! \class FitsFatal @ingroup FITSexcept @brief [potential] base class for exceptions to be thrown on internal library error. As of this version there are no subclasses. This error requests that the user reports this circumstance to HEASARC. */ /*! \fn FitsFatal::FitsFatal(const string& diag) \brief Prints a message starting "*** CCfits Fatal Error: ..." and calls terminate() \param diag A diagnostic string to be printed identifying the context of the error. */ // Base class for exceptions generated by CCfits that don't // return FITS error codes (for example, array errors or seek errors). class FitsException { public: FitsException (const string& msg, bool& silent); const string& message () const; protected: void addToMessage (const string& msgQual); private: private: //## implementation // Data Members for Class Attributes string m_message; }; class FitsError : public FitsException //## Inherits: %399170BD017D { public: FitsError (int errornum, bool silent = true); protected: private: void printMsg (int error); private: //## implementation }; class FitsFatal { public: FitsFatal (const string& diag); protected: private: private: //## implementation }; // Class CCfits::FitsException inline const string& FitsException::message () const { return m_message; } // Class CCfits::FitsError // Class CCfits::FitsFatal } // namespace CCfits #endif CCfits-2.7/HDU.cxx0000644000225700000360000006405514764627567013231 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef SSTREAM_DEFECT #include #else #include #endif #include #include #include // FITS #include "FITS.h" // HDU #include "HDU.h" #include "FITSUtil.h" #include namespace CCfits { // TYP_* are defined in fitsio.h const size_t HDU::s_nCategories = 2; const int HDU::s_iKeywordCategories[s_nCategories] = {TYP_USER_KEY,TYP_REFSYS_KEY}; // Class CCfits::HDU::InvalidImageDataType HDU::InvalidImageDataType::InvalidImageDataType (const string& diag, bool silent) : FitsException("Fits Error: Invalid Data Type for Image ",silent) { addToMessage(diag); if (!silent) std::cerr << diag << '\n'; } // Class CCfits::HDU::InvalidExtensionType HDU::InvalidExtensionType::InvalidExtensionType (const string& diag, bool silent) : FitsException ("Fits Error: Extension Type: ", silent) { addToMessage(diag); if (!silent) std::cerr << diag << '\n'; } // Class CCfits::HDU::NoSuchKeyword HDU::NoSuchKeyword::NoSuchKeyword (const string& diag, bool silent) : FitsException("Fits Error: Keyword not found: ",silent) { addToMessage(diag); if (!silent || FITS::verboseMode()) std::cerr << diag << '\n'; } // Class CCfits::HDU::NoNullValue HDU::NoNullValue::NoNullValue (const string& diag, bool silent) : FitsException("Fits Error: No Null Pixel Value specified for Image ",silent) { addToMessage(diag); if (!silent || FITS::verboseMode() ) std::cerr << diag << '\n'; } // Class CCfits::HDU HDU::HDU(const HDU &right) : m_naxis(right.m_naxis), m_bitpix(right.m_bitpix), m_index(right.m_index), m_anynul(right.m_anynul), m_history(right.m_history), m_comment(right.m_comment), m_zero(right.m_zero), m_scale(right.m_scale), m_keyWord(), m_parent(right.m_parent), m_naxes(right.m_naxes) { // ensure deep copy. copyKeys(right); } HDU::HDU (FITS* p) : m_naxis(0), m_bitpix(8), m_index(0), m_anynul(false), m_history(""), m_comment(""), m_zero(0), m_scale(1.0), m_keyWord(), m_parent(p), m_naxes() { readHduInfo(); // read bitpix, naxis and naxes keywords int hduIndex = 0; fits_get_hdu_num(fitsPointer(), &hduIndex); m_index = hduIndex - 1; } HDU::HDU (FITS* p, int bitpix, int naxis, const std::vector& axes) : m_naxis(naxis), m_bitpix(bitpix), m_index(0), m_anynul(false), m_history(""), m_comment(""), m_zero(0), m_scale(1.0), m_keyWord(), m_parent(p), m_naxes(axes) { } HDU::~HDU() { // garbage collection for heap allocated objects. clearKeys(); } bool HDU::operator==(const HDU &right) const { return compare(right); } bool HDU::operator!=(const HDU &right) const { return !compare(right); } void HDU::clearKeys () { for (std::map::iterator key = m_keyWord.begin(); key != m_keyWord.end(); ++key) { delete (*key).second; } m_keyWord.erase(m_keyWord.begin(),m_keyWord.end()); } void HDU::readHduInfo () { // Read BITPIX and NAXIS keywords int status = 0; char* comment = 0; int htype = -1; if (fits_get_hdu_type(fitsPointer(),&htype,&status)) throw FitsError(status); HduType xtype = HduType(htype); if (xtype == ImageHdu) { // Do not try and read BITPIX or NAXIS directly. If this is a // compressed image, the relevant information will need to come // from ZBITPIX and ZNAXIS instead. int temp = 0; if (fits_get_img_type(fitsPointer(), &temp, &status)) throw FitsError(status); m_bitpix = temp; if (fits_get_img_dim(fitsPointer(), &temp, &status)) throw FitsError(status); m_naxis = temp; } else { // m_bitpix will retain its default value, 8. string keyname("NAXIS"); if (fits_read_key_lng(fitsPointer(),const_cast(keyname.c_str()), &m_naxis, comment, &status)) throw FitsError(status); } // okay, we have the number of axes and therefore the number of values // (z)NAXISn. FITSUtil::auto_array_ptr axes(new long[m_naxis]); long* pAxes = axes.get(); if (xtype == ImageHdu) { if (fits_get_img_size(fitsPointer(), m_naxis, pAxes, &status)) throw FitsError(status); } else { // create strings NAXIS1 - NAXISn, where n = NAXIS, and read keyword. for (int i=0; i (axisKey.str().c_str()), &pAxes[i],comment,&status) ) throw FitsError(status); #endif } } std::copy(&pAxes[0],&pAxes[m_naxis], std::back_inserter(m_naxes)); } Keyword& HDU::readKeyword (const String &keyname) { try { using std::pair; Keyword* newKey(KeywordCreator::getKeyword(keyname,this)); std::map::value_type refToEntry(keyname,newKey); std::map::iterator itOld = m_keyWord.find(keyname); if (itOld != m_keyWord.end()) { delete itOld->second; m_keyWord.erase(itOld); } m_keyWord.insert(refToEntry); return *(refToEntry.second); } catch (FitsError) { throw NoSuchKeyword(keyname); } } void HDU::readKeywords (std::list& keynames) { // the scoop is: this and the previous function - which reads // a single key - are designed to be called by HDU and its subclasses // in constructors etc., and by the public member functions // addKey, readKey and readKeys. These functions read keywords // and either return nothing or return Keyword references from which another // function call is necessary to retrieve the value. These are both things // that implementers need but are not necessary to provide for the user. std::list::iterator ikey = keynames.begin(); while ( ikey != keynames.end()) { try { readKeyword(*ikey); ++ikey; } catch (NoSuchKeyword) { ikey = keynames.erase(ikey); } } } Keyword* HDU::addKeyword (Keyword* newKey) { using std::pair; newKey->write(); const String& keyname = newKey->name(); std::map::value_type refToEntry(keyname,newKey); std::map::iterator itOld = m_keyWord.find(keyname); if (itOld != m_keyWord.end()) { delete itOld->second; m_keyWord.erase(itOld); } m_keyWord.insert(refToEntry); return refToEntry.second; } bool HDU::compare (const HDU &right) const { if (fitsPointer() != right.fitsPointer()) return false; if (m_index != right.m_index) return false; return true; } fitsfile* HDU::fitsPointer () const { return m_parent->fitsPointer(); } FITS* HDU::parent () const { return m_parent; } void HDU::makeThisCurrent () const { int status = 0; int hduType = 0; // m_index contains the value of fptr->Fptr->curhdu. movabs_hdu moves to // 1 - this unless it's at the beginning, so it must be m_index+1 [Check!!!] if (fits_movabs_hdu(fitsPointer(),m_index+1, &hduType, &status) != 0) throw FitsError(status); m_parent->currentExtensionName(string("")); } void HDU::copyKeys (const HDU& right) { // copy all keys that have already been read. for (std::map::const_iterator key = right.m_keyWord.begin(); key != right.m_keyWord.end(); key++) { std::map::iterator itOld = m_keyWord.find(key->first); if (itOld != m_keyWord.end()) { delete itOld->second; m_keyWord.erase(itOld); } m_keyWord[(*key).first] = ((*key).second)->clone(); } } String HDU::getNamedLines (const String& name) { int fitsStatus = 0; int numKeys = 0; static char searchKey[FLEN_KEYWORD]; makeThisCurrent(); String content(""); char* card = new char[81]; FITSUtil::auto_array_ptr pcard(card); int where = 1; int keylen = 0; fits_get_hdrpos(fitsPointer(),&numKeys,&where,&fitsStatus); // Reset 'where' to top prior to starting search. where = 0; if (fitsStatus != 0 ) throw FitsError(fitsStatus,false); // search through the header to get the first "name" keyword. while ( where < numKeys ) { fits_read_record(fitsPointer(),++where,card,&fitsStatus); fits_get_keyname(card,searchKey,&keylen,&fitsStatus); // on FitsError, always print a message (!silent). if (fitsStatus != 0 ) throw FitsError(fitsStatus,false); // require exact match if (strcmp(name.c_str(),searchKey) == 0) { // this should work for standard compliant // string implementation, where the length added // to content is determined by traits::length() content += card + 8; content += "\n"; } } // print a message if there are no "name" type records. if (content.size() == 0) throw NoSuchKeyword(name); return content; } const String& HDU::getComments () { try { m_comment = getNamedLines("COMMENT"); } catch (HDU::NoSuchKeyword) {} catch (FitsError) {} catch (...) { throw; } return m_comment; } void HDU::writeComment (const String& comment) { int status=0; string::size_type startPos=0, endPos=0; makeThisCurrent(); if (comment.size()) { while (startPos != string::npos) { endPos=comment.find_first_of('\n', startPos); string::size_type len = (endPos == string::npos) ? string::npos : endPos-startPos; string singleLine = comment.substr(startPos, len); if (fits_write_comment(fitsPointer(),const_cast(singleLine.c_str()),&status)) throw FitsError(status); startPos = (endPos == string::npos) ? string::npos : endPos+1; } } m_comment = comment; } const String& HDU::getHistory () { try { m_history = getNamedLines("HISTORY"); } catch (HDU::NoSuchKeyword) {} catch (FitsError) {} catch (...) { throw; } return m_history; } void HDU::writeHistory (const String& history) { int status(0); string::size_type startPos=0, endPos=0; makeThisCurrent(); if (history.size()) { while (startPos != string::npos) { endPos=history.find_first_of('\n', startPos); string::size_type len = (endPos == string::npos) ? string::npos : endPos-startPos; string singleLine = history.substr(startPos, len); if (fits_write_history(fitsPointer(),const_cast(singleLine.c_str()),&status)) throw FitsError(status); startPos = (endPos == string::npos) ? string::npos : endPos+1; } } m_history = history; } void HDU::writeDate () { static const String DATE("DATE"); int status(0); makeThisCurrent(); if (fits_write_date(fitsPointer(),&status)) throw FitsError(status); FITSUtil::auto_array_ptr pDate(new char[FLEN_KEYWORD]); FITSUtil::auto_array_ptr pDateComment(new char[FLEN_COMMENT]); char* date = pDate.get(); if (fits_read_key_str(fitsPointer(), const_cast(DATE.c_str()),date,pDateComment.get(),&status)) throw FitsError(status); NewKeyword creator(this,String(date)); Keyword* newKey = creator.MakeKeyword(DATE,String(pDateComment.get())); std::map::iterator itOld = m_keyWord.find(DATE); if (itOld != m_keyWord.end()) { delete itOld->second; m_keyWord.erase(itOld); } m_keyWord[DATE] = newKey; } void HDU::suppressScaling (bool toggle) { makeThisCurrent(); int status=0; if (toggle) { // Ignore scale keyword values and replace with defaults. fits_set_bscale(m_parent->fitsPointer(), 1.0, 0.0, &status); } else { // Restore the use of the scale keyword values by re-reading // the header keywords. fits_set_hdustruc(m_parent->fitsPointer(), &status); } } void HDU::writeChecksum () { fitsfile *fPtr = m_parent->fitsPointer(); makeThisCurrent(); int status=0; if (fits_write_chksum(fPtr, &status)) throw FitsError(status); } void HDU::updateChecksum () { fitsfile *fPtr = m_parent->fitsPointer(); makeThisCurrent(); int status=0; if (fits_update_chksum(fPtr, &status)) throw FitsError(status); } std::pair HDU::verifyChecksum () const { std::pair sumsOK(0,0); // Note that within this const function m_parent is a const // pointer but not a pointer-to-const, which is how we can // get away with this. fitsfile *fPtr = m_parent->fitsPointer(); makeThisCurrent(); int status=0; if (fits_verify_chksum(fPtr, &sumsOK.first, &sumsOK.second, &status)) throw FitsError(status); return sumsOK; } std::pair HDU::getChecksum () const { std::pair sums(0,0); fitsfile *fPtr = m_parent->fitsPointer(); makeThisCurrent(); int status=0; if (fits_get_chksum(fPtr, &sums.first, &sums.second, &status)) throw FitsError(status); return sums; } void HDU::deleteKey (const String& doomed) { Keyword& k = keyWord(doomed); //throws no such keyword if there isn't. int status(0); if (fits_delete_key(fitsPointer(),const_cast(k.name().c_str()),&status)) throw FitsError(status); std::map::iterator ki(m_keyWord.find(doomed)); delete (*ki).second; m_keyWord.erase(ki); } void HDU::readAllKeys (const std::vector & inKeyCategories) { makeThisCurrent(); int status(0); int numKeys (0); int dum(0); const std::vector defaultCategories{TYP_CMPRS_KEY, TYP_CKSUM_KEY, TYP_WCS_KEY, TYP_REFSYS_KEY, TYP_USER_KEY}; if (fits_get_hdrpos(fitsPointer(),&numKeys,&dum,&status)) throw FitsError(status); // save the user-supplied (if it was supplied) category vector const std::vector & keyCategoriesToUse = (inKeyCategories.empty()) ? defaultCategories : inKeyCategories; // to iterate through the keyword categories later std::vector::const_iterator iterCategories; // Assume the user passed in a valid key category. If the user passed in an // int which is not a valid category, the function will simply not copy the // keywords (because the categories of the actual keywords won't match). // There is currently no cfitsio function to verify that a given int is a // valid category, and the maintenance discourages a separate list of // categories here, in addition to the main list in fitsio.h for (int iKey = 1; iKey <= numKeys; ++iKey) { try { // get keywords by header position and store all the keys that: // - fit the categories that were passed in // (or are a default category if none were passed in) // - are neither metadata for columns nor history/comment cards std::unique_ptr key(KeywordCreator::getKeyword(iKey,this)); // comment/history cards have no value field and return 0 here. if (key.get() != 0) { int keyClass = fits_get_keyclass(const_cast(key->name().c_str())); for(iterCategories = keyCategoriesToUse.begin(); iterCategories != keyCategoriesToUse.end(); ++iterCategories) { if (keyClass == *iterCategories) { saveReadKeyword(key.get()); break; } } } } catch (FitsError& ) { // If the reading of a particular keyword fails, most likely due // to an undefined value, simply skip and continue to next // keyword. } } // end-for loop // Save comment and history keywords to private data members getHistory(); getComments(); } // end readAllKeys void HDU::copyAllKeys (const HDU* inHdu, const std::vector & inKeyCategories) { if (this != inHdu) { makeThisCurrent(); // save the user-supplied (if it was supplied) category vector const std::vector & keyCategoriesToUse = (inKeyCategories.empty()) ? keywordCategories() : inKeyCategories; // to iterate through the keyword categories later std::vector::const_iterator iterCategories; // iterate through the input file's stored keywords std::map::const_iterator itInKeys = inHdu->keyWord().begin(); std::map::const_iterator itInKeysEnd = inHdu->keyWord().end(); while (itInKeys != itInKeysEnd) { // Only copy keys that fit into the specified (or default, // if none were speficied) category int keyClass = fits_get_keyclass(const_cast(itInKeys->first.c_str())); for(iterCategories = keyCategoriesToUse.begin() ; iterCategories != keyCategoriesToUse.end() ; ++iterCategories) { if (keyClass == *iterCategories) { addKey(itInKeys->second); break; } } ++itInKeys; } // write the comment and history keywords to the file writeComment(getComments()); writeHistory(getHistory()); } } std::vector HDU::keywordCategories () { // This is not the most efficient way to grant public access to // the category int[], but it seems better than storing // a static vector in addition to the int[]. std::vector tmpCategories(&s_iKeywordCategories[0], &s_iKeywordCategories[s_nCategories]); // DO NOT return by reference. return tmpCategories; } void HDU::zeroInit (double value) { // This is a private counterpart to the public bzero set functions. // It does not check whether this setting would cause a change // in the data type of the image, since presumably it is only // called immediately after this object is first created in // HDUCreator. It also does not write a keyword since it is // called either for case of pre-existing HDU (which already // has its keyword) or new unsigned-type HDU, in which case // CFITSIO fits_create_img automatically sets the keyword. m_zero = value; } void HDU::scaleInit (double value) { // See notes in zeroInit function. m_scale = value; } bool HDU::checkImgDataTypeChange (double zero, double scale) const { // This ASSUMES this is an image hdu and is also the current hdu. // Return false if the new zero/scale will cause a change from // a non-float/double to a float/double type. bool isOK = true; if (m_bitpix != FLOAT_IMG && m_bitpix != DOUBLE_IMG) { // Save original state of zero/scale keywords bool isZeroKey = true; bool isScaleKey = true; double savZero = 0.0; double savScale = 1.0; int status = 0; fitsfile* fp = m_parent->fitsPointer(); if (fits_read_key_dbl(fp, BZERO, &savZero, 0, &status)) { isZeroKey = false; savZero = 0.0; status = 0; } if (fits_read_key_dbl(fp, BSCALE, &savScale, 0, &status)) { isScaleKey = false; savScale = 1.0; status = 0; } if (fits_update_key(fp, Tdouble, BZERO, &zero, 0, &status)) { throw FitsError(status, false); } if (fits_update_key(fp, Tdouble, BSCALE, &scale, 0, &status)) { int iErr = status; status = 0; if (isZeroKey) fits_update_key(fp, Tdouble, BZERO, &savZero, 0, &status); else fits_delete_key(fp, BZERO, &status); throw FitsError(iErr, false); } int newBitpix=0; fits_get_img_equivtype(fp, &newBitpix, &status); if (status || newBitpix == FLOAT_IMG || newBitpix == DOUBLE_IMG) { isOK = false; } int iErr = status; status = 0; // Now reset things back the way they were, whether or not there // was a status error above. if (isZeroKey) fits_update_key(fp, Tdouble, BZERO, &savZero, 0, &status); else fits_delete_key(fp, BZERO, &status); if (isScaleKey) fits_update_key(fp, Tdouble, BSCALE, &savScale, 0, &status); else fits_delete_key(fp, BSCALE, &status); if (iErr) throw FitsError(iErr, false); } return isOK; } // Additional Declarations Keyword& HDU::addKey(const string& name, const char* charString, const String& comment, bool isLongStr) { return addKey(name,String(charString),comment, isLongStr); } Keyword* HDU::addKey(const Keyword* inKeyword) { Keyword* newKeyword = inKeyword->clone(); newKeyword->setParent(this); makeThisCurrent(); const String& keyname = newKeyword->name(); std::map::value_type refToEntry(keyname,newKeyword); std::map::iterator itOld = m_keyWord.find(keyname); if (itOld != m_keyWord.end()) { delete itOld->second; m_keyWord.erase(itOld); } m_keyWord.insert(refToEntry); newKeyword->write(); return newKeyword; } Keyword& HDU::readNextKey(const std::vector& incList, const std::vector& excList, bool searchFromBeginning) { const size_t nInc = incList.size(); const size_t nExc = excList.size(); bool silent=false; if (!nInc) throw FitsException("***CCfits Error: No keyword names specified for search.",silent); // Length check is perhaps not necessary since we're doing // dynamic allocation and cfitsio has its own internal checks. bool badLength=false; for (size_t i=0; i= FLEN_KEYWORD) badLength=true; } for (size_t i=0; i= FLEN_KEYWORD) badLength=true; } if (badLength) { throw FitsException("***CCfits Error: Keyword names exceeds allowed legnth in readNextKey",silent); } char **inc = new char*[nInc]; for (size_t i=0; iname(); std::map::value_type refToEntry(keyname,newKey); std::map::iterator itOld = m_keyWord.find(keyname); if (itOld != m_keyWord.end()) { delete itOld->second; m_keyWord.erase(itOld); } m_keyWord.insert(refToEntry); return *(refToEntry.second); } Keyword& HDU::addKeyNull(const String& name, const String& comment, bool isLongStr) { makeThisCurrent(); Keyword* newKey = new KeyNull(name, this, comment); addKeyword(newKey); return *newKey; } } // namespace CCfits CCfits-2.7/Table.h0000644000225700000360000002760514764627567013265 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef TABLE_H #define TABLE_H 1 // ExtHDU #include "ExtHDU.h" // FitsError #include "FitsError.h" namespace CCfits { class Column; } // namespace CCfits #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #ifdef SSTREAM_DEFECT #include #else #include #endif namespace CCfits { /*! \class Table Table is the abstract common interface to Binary and Ascii Table HDUs. Table is a subclass of ExtHDU that contains an associative array of Column objects. It implements methods for reading and writing columns */ /*! \class Table::NoSuchColumn @ingroup FITSexcept @brief Exception to be thrown on a failure to retrieve a column specified either by name or index number. When a Table object is created, the header is read and a column object created for each column defined. Thus id this exception is thrown the column requested does not exist in the HDU (note that the column can easily exist and not contain any data since the user controls whether the column will be read when the FITS object is instantiated). It is expected that the index number calls will be primarily internal. The underlying implementation makes lookup by name more efficient. The exception has two variants, which take either an integer or a string as parameter. These are used according to the accessor that threw them, either by name or index. */ /*! \fn Table::NoSuchColumn::NoSuchColumn (const String& name, bool silent = true); \brief Exception ctor for exception thrown if the requested column (specified by name) is not present Message: Fits Error: cannot find Column named: name is printed. \param name the requested column name \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \fn Table::NoSuchColumn::NoSuchColumn (int index, bool silent = true); \brief Exception ctor for exception thrown if the requested column (specified by name) is not present Message: Fits Error: column not present - Column number index is printed. \param index the requested column number \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \fn void Table::init (bool readFlag = false, const std::vector& keys = std::vector()); "Late Constructor." wrap-up of calls needed to construct a table. Reads header information and sets up the array of column objects in the table. Protected function, provided to allow the implementation of extensions of the library. */ /*! \fn virtual Table::~Table(); \brief destructor */ /*! \fn virtual Table::Table(const Table& right); \brief copy constructor */ /*! \fn Column& Table::column (const string& colName, bool caseSensitive = true) const; \brief return a reference to the column of name colName. If the caseSensitive parameter is set to false, the search will be case-insensitive. \exceptions Table::NoSuchColumn passes colName to the diagnostic message printed when the exception is thrown */ /*! \fn Column& Table::column (int colIndex) const; \brief return a reference to the column identified by colIndex Throws NoSuchColumn if the index is out of range -index must satisfy (1 <= index <= numCols() ). N.B. the column number is assigned as 1-based, as in FORTRAN rather than 0-based as in C. \exception Table::NoSuchColumn passes colIndex to the diagnostic message printed when the exception is thrown */ /*! \fn void Table::deleteRows (long first, long number=1); \brief delete a range of rows in a table. In both this and the overloaded version which allows a selection of rows to be deleted, the cfitsio library is called first to perform the operation on the disk file, and then the FITS object is updated. \param first the start row of the range \param number the number of rows to delete; defaults to 1. \exception FitsError thrown if the cfitsio call fails to return without error. */ /*! \fn void Table::deleteRows (const std::vector& rowlist); \brief delete a set of rows in the table specified by an input array. \param rowlist The vector of row numbers to be deleted. \exception FitsError thrown if the underlying cfitsio call fails to return without error. */ /*! \fn void Table::insertRows (long first, long number); \brief insert empty rows into the table \param first the start row of the range \param number the number of rows to insert. \exception FitsError thrown if the underlying cfitsio call fails to return without error. */ /*! \fn long Table::rows () const; \brief return the number of rows in the table (NAXIS2). */ /*! \fn void Table::updateRows (); \brief update the number of rows in the table Called to force the Table to reset its internal "rows" attribute. public, but is called when needed internally. */ /*! \fn Table::Table (FITS* p, HduType xtype, const String &hduName, int rows, const std::vector& columnName, const std::vector& columnFmt, const std::vector& columnUnit = std::vector(), int version = 1); \brief Constructor to be used for creating new HDUs. \param p The FITS file in which to place the new HDU \param xtype An HduType enumerator defined in CCfits.h for type of table (AsciiTbl or BinaryTbl) \param hduName The name of this HDU extension \param rows The number of rows in the new HDU (the value of the NAXIS2 keyword). \param columnName a vector of names for the columns. \param columnFmt the format strings for the columns \param columnUnit the units for the columns. \param version a version number */ /*! \fn Table::Table (FITS* p, int version = 1, const String & groupName = String("")); \brief Constructor to be called when creating a grouping table. \param p The FITS file in which to place the new HDU \param version Version number \param groupName The name of the grouping table */ /*! \fn Table::Table (FITS* p, HduType xtype, const String &hduName = String(""), int version = 1); \brief Constructor to be called by operations that read Table specified by hduName and version. */ /*! \fn Table::Table (FITS* p, HduType xtype, int number); \brief Table constructor for getting Tables by number. Necessary since EXTNAME is a reserved not required keyword, and users may thus read FITS files without an extension name. Since an HDU is completely specified by extension number, this is part of the public interface. */ /*! \fn const ColMap& Table::column () const; \brief return a reference to the multimap containing the columns. This public version might be used to query the size of the column container in a routine that manipulates column table data. */ /*! \fn ColMap& Table::column (); \brief return a reference to the multimap containing the columns. To be used in the implementation of subclasses. */ /*! \fn void Table::rows (long value); \brief set the number of rows in the Table. */ /*! \fn int Table::numCols () const; \brief return the number of Columns in the Table (the TFIELDS keyword). */ /*! \fn void Table::numCols (int value); \brief set the number of Columns in the Table */ class Table : public ExtHDU //## Inherits: %3804A126EB10 { public: class NoSuchColumn : public FitsException //## Inherits: %397CB0970174 { public: NoSuchColumn (const String& name, bool silent = true); NoSuchColumn (int index, bool silent = true); protected: private: private: //## implementation }; class InvalidColumnSpecification : public FitsException //## Inherits: %3B1E52D703B0 { public: InvalidColumnSpecification (const String& msg, bool silent = true); protected: private: private: //## implementation }; Table(const Table &right); virtual ~Table(); // ! return reference to a column given by column name. virtual Column& column (const String& colName, bool caseSensitive = true) const; virtual Column& column (int colIndex // ! return reference to a column given by a column index number ) const; virtual long rows () const; void updateRows (); void rows (long numRows); virtual void deleteColumn (const String& columnName); // Insert one or more blank rows into a FITS column. void insertRows (long first, long number = 1); void deleteRows (long first, long number = 1); void deleteRows (const std::vector& rowList); virtual long getRowsize () const; virtual int numCols () const; virtual const ColMap& column () const; virtual ColMap& column (); virtual void copyColumn(const Column& inColumn, int colIndx, bool insertNewCol=true); public: // Additional Public Declarations protected: Table (FITS* p, HduType xtype, const String &hduName, int rows, // ! Number of rows in table at creation, to be used to initialize NAXIS2 const std::vector& columnName, const std::vector& columnFmt, const std::vector& columnUnit = std::vector(), int version = 1); // ctor for creating a Group Table Table (FITS* p, int version = 1, const String & groupName = String("")); // To be called by reading operations. Table (FITS* p, HduType xtype, const String &hduName = String(""), int version = 1); // ExtHDU constructor for getting ExtHDUs by number. // Necessary since EXTNAME is a reserved not required // keyword. Table (FITS* p, HduType xtype, int number); virtual std::ostream & put (std::ostream &s) const; void init (bool readFlag = false, const std::vector& keys = std::vector()); virtual void setColumn (const String& colname, Column* value); void reindex (int startNum, bool isInsert); void numCols (int value); // Additional Protected Declarations private: virtual void initRead (); virtual void readTableHeader (int ncols, std::vector& colName, std::vector& colFmt, std::vector& colUnit) = 0; // deep erasure , to be called by assignment and dtors. void clearData (); void copyData (const Table& right); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes int m_numCols; // Data Members for Associations ColMap m_column; // Additional Implementation Declarations friend class Column; }; // Class CCfits::Table::NoSuchColumn // Class CCfits::Table::InvalidColumnSpecification // Class CCfits::Table inline long Table::rows () const { return axis(1); } inline void Table::rows (long numRows) { naxes(1) = numRows; } inline int Table::numCols () const { return m_numCols; } inline const ColMap& Table::column () const { return m_column; } inline void Table::numCols (int value) { m_numCols = value; } inline ColMap& Table::column () { return m_column; } } // namespace CCfits #endif CCfits-2.7/ColumnVectorData.h0000644000225700000360000012376514764627567015454 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef COLUMNVECTORDATA_H #define COLUMNVECTORDATA_H 1 #ifdef _MSC_VER #include "MSconfig.h" #endif #include "CCfits.h" // valarray #include // vector #include // Column #include "Column.h" #ifdef SSTREAM_DEFECT #include #else #include #endif #include #include #include namespace CCfits { class Table; } #include "FITS.h" #include "FITSUtil.h" using std::complex; namespace CCfits { template class ColumnVectorData : public Column //## Inherits: %38BAD1D4D370 { public: ColumnVectorData(const ColumnVectorData< T > &right); ColumnVectorData (Table* p = 0); ColumnVectorData (int columnIndex, const string &columnName, ValueType type, const string &format, const string &unit, Table* p, int rpt = 1, long w = 1, const string &comment = ""); ~ColumnVectorData(); virtual void readData (long firstrow, long nelements, long firstelem = 1); virtual ColumnVectorData* clone () const; virtual void setDimen (); void setDataLimits (T* limits); const T minLegalValue () const; void minLegalValue (T value); const T maxLegalValue () const; void maxLegalValue (T value); const T minDataValue () const; void minDataValue (T value); const T maxDataValue () const; void maxDataValue (T value); const std::vector >& data () const; void setData (const std::vector >& value); const std::valarray& data (int i) const; void data (int i, const std::valarray& value); // Additional Public Declarations friend class Column; protected: // Additional Protected Declarations private: ColumnVectorData< T > & operator=(const ColumnVectorData< T > &right); virtual bool compare (const Column &right) const; void resizeDataObject (const std::vector >& indata, size_t firstRow); // Reads a specified number of column rows. // // There are no default arguments. The function // Column::read(firstrow,firstelem,nelements) // is designed for reading the whole column. virtual void readColumnData (long first, long last, T* nullValue = 0); virtual std::ostream& put (std::ostream& s) const; void writeData (const std::valarray& indata, long numRows, long firstRow = 1, T* nullValue = 0); void writeData (const std::vector >& indata, long firstRow = 1, T* nullValue = 0); // Reads a specified number of column rows. // // There are no default arguments. The function // Column::read(firstrow,firstelem,nelements) // is designed for reading the whole column. virtual void readRow (size_t row, T* nullValue = 0); // Reads a variable row.. virtual void readVariableRow (size_t row, T* nullValue = 0); void readColumnData (long firstrow, long nelements, long firstelem, T* nullValue = 0); void writeData (const std::valarray& indata, const std::vector& vectorLengths, long firstRow = 1, T* nullValue = 0); void writeFixedRow (const std::valarray& data, long row, long firstElem = 1, T* nullValue = 0); void writeFixedArray (T* data, long nElements, long nRows, long firstRow, T* nullValue = 0); // Insert one or more blank rows into a FITS column. virtual void insertRows (long first, long number = 1); virtual void deleteRows (long first, long number = 1); virtual size_t getStoredDataSize() const; void doWrite (T* array, long row, long rowSize, long firstElem, T* nullValue); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes T m_minLegalValue; T m_maxLegalValue; T m_minDataValue; T m_maxDataValue; // Data Members for Associations std::vector > m_data; // Additional Implementation Declarations }; // Parameterized Class CCfits::ColumnVectorData template inline void ColumnVectorData::readData (long firstrow, long nelements, long firstelem) { readColumnData(firstrow,nelements,firstelem,static_cast(0)); } template inline const T ColumnVectorData::minLegalValue () const { return m_minLegalValue; } template inline void ColumnVectorData::minLegalValue (T value) { m_minLegalValue = value; } template inline const T ColumnVectorData::maxLegalValue () const { return m_maxLegalValue; } template inline void ColumnVectorData::maxLegalValue (T value) { m_maxLegalValue = value; } template inline const T ColumnVectorData::minDataValue () const { return m_minDataValue; } template inline void ColumnVectorData::minDataValue (T value) { m_minDataValue = value; } template inline const T ColumnVectorData::maxDataValue () const { return m_maxDataValue; } template inline void ColumnVectorData::maxDataValue (T value) { m_maxDataValue = value; } template inline const std::vector >& ColumnVectorData::data () const { return m_data; } template inline void ColumnVectorData::setData (const std::vector >& value) { m_data = value; } template inline const std::valarray& ColumnVectorData::data (int i) const { return m_data[i - 1]; } template inline void ColumnVectorData::data (int i, const std::valarray& value) { if (m_data[i-1].size() != value.size()) m_data[i-1].resize(value.size()); m_data[i - 1] = value; } // Parameterized Class CCfits::ColumnVectorData template ColumnVectorData::ColumnVectorData(const ColumnVectorData &right) :Column(right), m_minLegalValue(right.m_minLegalValue), m_maxLegalValue(right.m_maxLegalValue), m_minDataValue(right.m_minDataValue), m_maxDataValue(right.m_maxDataValue), m_data(right.m_data) { } template ColumnVectorData::ColumnVectorData (Table* p) : Column(p), m_minLegalValue(0), m_maxLegalValue(0), m_minDataValue(0), m_maxDataValue(0), m_data() { } template ColumnVectorData::ColumnVectorData (int columnIndex, const string &columnName, ValueType type, const string &format, const string &unit, Table* p, int rpt, long w, const string &comment) : Column(columnIndex,columnName,type,format,unit,p,rpt,w,comment), m_minLegalValue(0), m_maxLegalValue(0), m_minDataValue(0), m_maxDataValue(0), m_data() { } template ColumnVectorData::~ColumnVectorData() { // valarray destructor should do all the work. } template bool ColumnVectorData::compare (const Column &right) const { if ( !Column::compare(right) ) return false; const ColumnVectorData& that = static_cast&>(right); size_t n = m_data.size(); // m_data is of type valarray. if ( that.m_data.size() != n ) return false; for (size_t i = 0; i < n ; i++) { const std::valarray& thisValArray=m_data[i]; const std::valarray& thatValArray=that.m_data[i]; size_t nn = thisValArray.size(); if (thatValArray.size() != nn ) return false; for (size_t j = 0; j < nn ; j++ ) { if (thisValArray[j] != thatValArray[j]) return false; } } return true; } template ColumnVectorData* ColumnVectorData::clone () const { return new ColumnVectorData(*this); } template void ColumnVectorData::resizeDataObject (const std::vector >& indata, size_t firstRow) { // the rows() call is the value before updating. // the updateRows() call at the end sets the call to return the // value from the fits pointer - which is changed by writeFixedArray // or writeFixedRow. const size_t lastInputRow(indata.size() + firstRow - 1); const size_t newLastRow = std::max(lastInputRow,static_cast(rows())); // if the write instruction increases the rows, we need to add // rows to the data member and preserve its current contents. // rows() >= origNRows since it is the value for entire table, // not just this column. const size_t origNRows(m_data.size()); // This will always be an expansion. vector.resize() doesn't // invalidate any data on an expansion. if (newLastRow > origNRows) m_data.resize(newLastRow); if (varLength()) { // The incoming data will determine each row size, thus // no need to preserve any existing values in the row. // Each value will eventually be overwritten. for (size_t iRow = firstRow-1; iRow < lastInputRow; ++iRow) { std::valarray& current = m_data[iRow]; const size_t newSize = indata[iRow - (firstRow-1)].size(); if (current.size() != newSize) current.resize(newSize); } } else { // All row sizes in m_data should ALWAYS be either repeat(), // or 0 if they haven't been initialized. This is true regardless // of the incoming data row size. // Perform LAZY initialization of m_data rows. Only // expand a row valarray when it is first needed. for (size_t iRow = firstRow-1; iRow < lastInputRow; ++iRow) { if (m_data[iRow].size() != repeat()) m_data[iRow].resize(repeat()); } } } template void ColumnVectorData::setDimen () { int status(0); FITSUtil:: auto_array_ptr dimValue (new char[FLEN_VALUE]); #ifdef SSTREAM_DEFECT std::ostrstream key; #else std::ostringstream key; #endif key << "TDIM" << index(); #ifdef SSTREAM_DEFECT fits_read_key_str(fitsPointer(), key.str(), dimValue.get(),0,&status); #else fits_read_key_str(fitsPointer(),const_cast(key.str().c_str()),dimValue.get(),0,&status); #endif if (status == 0) { dimen(String(dimValue.get())); } } template void ColumnVectorData::readColumnData (long first, long last, T* nullValue) { makeHDUCurrent(); if ( rows() < last ) { std::cerr << "CCfits: More data requested than contained in table. "; std::cerr << "Extracting complete column.\n"; last = rows(); } long nelements = (last - first + 1)*repeat(); readColumnData(first,nelements,1,nullValue); if (first <= 1 && last == rows()) isRead(true); } template std::ostream& ColumnVectorData::put (std::ostream& s) const { // output header information Column::put(s); if ( FITS::verboseMode() ) { s << " Column Legal limits: ( " << m_minLegalValue << "," << m_maxLegalValue << " )\n" << " Column Data limits: ( " << m_minDataValue << "," << m_maxDataValue << " )\n"; } if (!m_data.empty()) { for (size_t j = 0; j < m_data.size(); j++) { size_t n = m_data[j].size(); if ( n ) { s << "Row " << j + 1 << " Vector Size " << n << '\n'; for (size_t k = 0; k < n - 1; k++) { s << m_data[j][k] << '\t'; } s << m_data[j][n - 1] << '\n'; } } } return s; } template void ColumnVectorData::writeData (const std::valarray& indata, long numRows, long firstRow, T* nullValue) { // This version of writeData is called by Column write functions which // can only write the same number of elements to each row. // For fixed width columns, this must be equal to the repeat value // or an exception is thrown. For variable width, it only requires // that indata.size()/numRows is an int. // won't do anything if < 0, and will give divide check if == 0. if (numRows <= 0) throw InvalidNumberOfRows(numRows); #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif if (indata.size() % static_cast(numRows)) { msgStr << "To use this write function, input array size" <<"\n must be exactly divisible by requested num rows: " << numRows; throw InsufficientElements(msgStr.str()); } const size_t cellsize = indata.size()/static_cast(numRows); if (!varLength() && cellsize != repeat() ) { msgStr << "column: " << name() << "\n input data size: " << indata.size() << " required: " << numRows*repeat(); String msg(msgStr.str()); throw InsufficientElements(msg); } std::vector > internalFormat(numRows); // support writing equal row lengths to variable columns. for (long j = 0; j < numRows; ++j) { internalFormat[j].resize(cellsize); internalFormat[j] = indata[std::slice(cellsize*j,cellsize,1)]; } // change the size of m_data based on the first row to be written // and on the input data vector sizes. writeData(internalFormat,firstRow,nullValue); } template void ColumnVectorData::writeData (const std::vector >& indata, long firstRow, T* nullValue) { // This is called directly by Column's writeArrays functions, and indirectly // by both categories of write functions, ie. those which allow differing // lengths per row and those that don't. const size_t nInputRows(indata.size()); using std::valarray; resizeDataObject(indata,firstRow); // After the above call, can assume all m_data arrays to be written to // have been properly resized whether we're dealing with fixed or // variable length. if (varLength()) { // firstRow is 1-based, but all these internal row variables // will be 0-based. const size_t endRow = nInputRows + firstRow-1; for (size_t iRow = firstRow-1; iRow < endRow; ++iRow) { m_data[iRow] = indata[iRow - (firstRow-1)]; // doWrite wants 1-based rows. doWrite(&m_data[iRow][0], iRow+1, m_data[iRow].size(), 1, nullValue); } parent()->updateRows(); } else { // Check for simplest case of all valarrays of size repeat(). // If any are greater, throw an error. const size_t colRepeat = repeat(); bool allEqualRepeat = true; for (size_t i=0; i colRepeat) { #ifdef SSTREAM_DEFECT std::ostrstream oss; #else std::ostringstream oss; #endif oss << " vector column length " << colRepeat <<", input valarray length " << sz; throw InvalidRowParameter(oss.str()); } if (sz < colRepeat) allEqualRepeat = false; } if (allEqualRepeat) { // concatenate the valarrays and write. const size_t nElements (colRepeat*nInputRows); FITSUtil::CVAarray convert; FITSUtil::auto_array_ptr pArray(convert(indata)); T* array = pArray.get(); // if T is complex, then CVAarray returns a // C-array of complex objects. But FITS requires an array of complex's // value_type. // This writes to the file and also calls updateRows. writeFixedArray(array,nElements,nInputRows,firstRow,nullValue); for (size_t j = 0; j < nInputRows ; ++j) { const valarray& input = indata[j]; valarray& current = m_data[j + firstRow - 1]; // current should be resized by resizeDataObject. current = input; } } else { // Some input arrays have fewer than colRepeat elements. const size_t endRow = nInputRows + firstRow-1; for (size_t iRow = firstRow-1; iRow& input = indata[iRow-(firstRow-1)]; writeFixedRow(input, iRow, 1, nullValue); } parent()->updateRows(); } } // end if !varLength } template void ColumnVectorData::readRow (size_t row, T* nullValue) { makeHDUCurrent(); if ( row > static_cast(rows()) ) { #ifdef SSTREAM_DEFECT std::ostrstream msg; #else std::ostringstream msg; #endif msg << " row requested: " << row << " row range: 1 - " << rows(); #ifdef SSTREAM_DEFECT msg << std::ends; #endif throw Column::InvalidRowNumber(msg.str()); } // this is really for documentation purposes. I expect the optimizer will // remove this redundant definition . bool variable(type() < 0); long nelements(repeat()); if (variable) { readVariableRow(row,nullValue); } else { readColumnData(row,nelements,1,nullValue); } } template void ColumnVectorData::readVariableRow (size_t row, T* nullValue) { int status(0); long offset(0); long repeat(0); if (fits_read_descript(fitsPointer(),index(),static_cast(row), &repeat,&offset,&status)) throw FitsError(status); readColumnData(row,repeat,1,nullValue); } template void ColumnVectorData::readColumnData (long firstrow, long nelements, long firstelem, T* nullValue) { int status=0; FITSUtil::auto_array_ptr pArray(new T[nelements]); T* array = pArray.get(); int anynul(0); if (fits_read_col(fitsPointer(), abs(type()),index(), firstrow, firstelem, nelements, nullValue, array, &anynul, &status) != 0) throw FitsError(status); size_t countRead = 0; const size_t ONE = 1; if (m_data.size() != static_cast(rows())) m_data.resize(rows()); size_t vectorSize(0); if (!varLength()) { vectorSize = std::max(repeat(),ONE); // safety check. } else { // assume that the user specified the correct length for // variable columns. This should be ok since readVariableColumns // uses fits_read_descripts to return this information from the // fits pointer, and this is passed as nelements here. vectorSize = nelements; } size_t n = nelements; int i = firstrow; int ii = i - 1; while ( countRead < n) { std::valarray& current = m_data[ii]; if (current.size() != vectorSize) current.resize(vectorSize); int elementsInFirstRow = vectorSize-firstelem + 1; bool lastRow = ( (nelements - countRead) < vectorSize); if (lastRow) { int elementsInLastRow = nelements - countRead; std::valarray ttmp(array + vectorSize*(ii-firstrow) + elementsInFirstRow, elementsInLastRow); for (int kk = 0; kk < elementsInLastRow; kk++) current[kk] = ttmp[kk]; countRead += elementsInLastRow; } // what to do with complete rows else { if (firstelem == 1 || (firstelem > 1 && i > firstrow) ) { std::valarray ttmp(array + vectorSize*(ii - firstrow) + elementsInFirstRow,vectorSize); current = ttmp; ii++; i++; countRead += vectorSize; } else { if (i == firstrow) { std::valarray ttmp(array,elementsInFirstRow); for (size_t kk = firstelem ; kk < vectorSize ; kk++) current[kk] = ttmp[kk-firstelem]; countRead += elementsInFirstRow; i++; ii++; } } } } } template void ColumnVectorData::writeData (const std::valarray& indata, const std::vector& vectorLengths, long firstRow, T* nullValue) { // Called from Column write functions which allow differing lengths // for each row. using namespace std; const size_t N(vectorLengths.size()); vector sums(N); // pre-calculate partial sums of vector lengths for use as array offsets. partial_sum(vectorLengths.begin(),vectorLengths.end(),sums.begin()); // check that sufficient data have been supplied to carry out the entire operation. if (indata.size() < static_cast(sums[N-1]) ) { #ifdef SSTREAM_DEFECT ostrstream msgStr; #else ostringstream msgStr; #endif msgStr << " input data size: " << indata.size() << " vector length sum: " << sums[N-1]; #ifdef SSTREAM_DEFECT msgStr << std::ends; #endif String msg(msgStr.str()); throw InsufficientElements(msg); } vector > vvArray(N); long& last = sums[0]; vvArray[0].resize(last); for (long jj = 0; jj < last; ++jj) vvArray[0][jj] = indata[jj]; for (size_t j = 1; j < N; ++j) { valarray& __tmp = vvArray[j]; // these make the code much more readable long& first = sums[j-1]; long& jlast = sums[j]; __tmp.resize(jlast - first); for (long k = first; k < jlast; ++k) { __tmp[k - first] = indata[k]; } } writeData(vvArray,firstRow,nullValue); } template void ColumnVectorData::writeFixedRow (const std::valarray& data, long row, long firstElem, T* nullValue) { // This is to be called only for FIXED length vector columns. It will // throw if data.size()+firstElem goes beyond the repeat value. // If data.size() is less than repeat, it leaves the remaining values // undisturbed both in the file and in m_data storage. #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif if (varLength()) { msgStr <<"Calling ColumnVectorData::writeFixedRow for a variable length column.\n"; throw FitsFatal(msgStr.str()); } std::valarray& storedRow = m_data[row]; long inputSize = static_cast(data.size()); long storedSize(storedRow.size()); if (storedSize != static_cast(repeat())) { msgStr<<"stored array size vs. column width mismatch in ColumnVectorData::writeFixedRow.\n"; throw FitsFatal(msgStr.str()); } if (inputSize + firstElem - 1 > storedSize) { msgStr << " requested write " << firstElem << " to " << firstElem + inputSize - 1 << " exceeds vector length " << repeat(); throw InvalidRowParameter(msgStr.str()); } // CANNOT give a strong exception safety guarantee because writing // data changes the file. Any corrective action that could be taken // [e.g. holding initial contents of the row and writing it back after // an exception is thrown] could in principle throw the same exception // we are trying to protect from. // routine does however give the weak guarantee (no resource leaks). // It's never a good thing to cast away a const, but doWrite calls the // CFITSIO write functions which take a non-const pointer (though // it shouldn't actually modify the array), and I'd rather not // copy the entire valarray just to avoid this problem. std::valarray& lvData = const_cast&>(data); T* inPointer = &lvData[0]; doWrite(inPointer, row+1, inputSize, firstElem, nullValue); // Writing to disk was successful, now update FITS object and return. const size_t offset = static_cast(firstElem) - 1; for (size_t iElem=0; iElem < static_cast(inputSize); ++iElem) { // This doesn't require inPointer's non-constness. It's just // used here to speed things up a bit. storedRow[iElem + offset] = inPointer[iElem]; } } template void ColumnVectorData::writeFixedArray (T* data, long nElements, long nRows, long firstRow, T* nullValue) { int status(0); // check for sanity of inputs, then write to file. // this function writes only complete rows to a table with // fixed width rows. if ( nElements < nRows*static_cast(repeat()) ) { #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif msgStr << " input array size: " << nElements << " required " << nRows*repeat(); String msg(msgStr.str()); throw Column::InsufficientElements(msg); } if (nullValue) { if (fits_write_colnull(fitsPointer(),abs(type()),index(),firstRow, 1,nElements,data,nullValue,&status)) throw FitsError(status); } else { if (fits_write_col(fitsPointer(),abs(type()),index(),firstRow, 1,nElements,data,&status)) throw FitsError(status); } parent()->updateRows(); } template void ColumnVectorData::insertRows (long first, long number) { if (first >= 0 && first <= static_cast(m_data.size())) { typename std::vector >::iterator in; if (first !=0) { in = m_data.begin()+first; } else { in = m_data.begin(); } // non-throwing operations. m_data.insert(in,number,std::valarray(T(),0)); } } template void ColumnVectorData::deleteRows (long first, long number) { // Don't assume the calling routine (ie. Table's deleteRows) // knows Column's current m_data size. m_data may still be // size 0 if no read operations have been performed on Column. // Therefore perform range checking before erasing. const long curSize = static_cast(m_data.size()); if (curSize>0 && first <= curSize) { const long last = std::min(curSize, first-1+number); m_data.erase(m_data.begin()+first-1,m_data.begin()+last); } } template size_t ColumnVectorData::getStoredDataSize() const { return m_data.size(); } template void ColumnVectorData::setDataLimits (T* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = std::max(limits[2],limits[0]); m_maxDataValue = std::min(limits[3],limits[1]); } template void ColumnVectorData::doWrite (T* array, long row, long rowSize, long firstElem, T* nullValue) { int status(0); // internal functioning of write_colnull forbids its use for writing // variable width columns. If a nullvalue argument was supplied it will // be ignored. if ( !varLength()) { if (fits_write_colnull(fitsPointer(),type(),index(),row, firstElem, rowSize, array, nullValue,&status)) throw FitsError(status); } else { if (fits_write_col(fitsPointer(),abs(type()),index(),row,firstElem,rowSize, array,&status)) throw FitsError(status); } } // Additional Declarations // all functions that operate on complex data that call cfitsio // need to be specialized. The signature containing complex* objects // is unfortunate, perhaps, for this purpose, but the user will access // rw operations through standard library containers. #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnVectorData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } #else template <> void ColumnVectorData >::setDataLimits (complex* limits); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnVectorData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } #else template <> void ColumnVectorData >::setDataLimits (complex* limits); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnVectorData >::readColumnData(long firstRow, long nelements, long firstElem, std::complex* null ) { int status=0; float nulval (0); FITSUtil::auto_array_ptr pArray(new float[2*nelements]); float* array = pArray.get(); int anynul(0); if (fits_read_col_cmp(fitsPointer(),index(),firstRow, firstElem, nelements,nulval,array,&anynul,&status) ) throw FitsError(status); if (m_data.size() != static_cast(rows())) m_data.resize(rows()); std::valarray > readData(nelements); for (long j = 0; j < nelements; ++j) { readData[j] = std::complex(array[2*j],array[2*j+1]); } size_t countRead = 0; const size_t ONE = 1; if (m_data.size() != static_cast(rows())) m_data.resize(rows()); size_t vectorSize(0); if (!varLength()) { vectorSize = std::max(repeat(),ONE); // safety check. } else { // assume that the user specified the correct length for // variable columns. This should be ok since readVariableColumns // uses fits_read_descripts to return this information from the // fits pointer, and this is passed as nelements here. vectorSize = nelements; } size_t n = nelements; int i = firstRow; int ii = i - 1; while ( countRead < n) { std::valarray >& current = m_data[ii]; if (current.size() != vectorSize) current.resize(vectorSize,0.); int elementsInFirstRow = vectorSize-firstElem + 1; bool lastRow = ( (nelements - countRead) < vectorSize); if (lastRow) { int elementsInLastRow = nelements - countRead; std::copy(&readData[countRead],&readData[0]+nelements,¤t[0]); countRead += elementsInLastRow; } // what to do with complete rows. if firstElem == 1 the else { if (firstElem == 1 || (firstElem > 1 && i > firstRow) ) { current = readData[std::slice(vectorSize*(ii-firstRow)+ elementsInFirstRow,vectorSize,1)]; ++ii; ++i; countRead += vectorSize; } else { if (i == firstRow) { std::copy(&readData[0],&readData[0]+elementsInFirstRow, ¤t[firstElem]); countRead += elementsInFirstRow; ++i; ++ii; } } } } } #else template <> void ColumnVectorData >::readColumnData(long firstRow, long nelements, long firstElem, complex* null); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnVectorData >::readColumnData (long firstRow, long nelements,long firstElem, complex* nullValue) { // duplicated for each complex type to work around imagined or // actual compiler deficiencies. int status=0; double nulval (0); FITSUtil::auto_array_ptr pArray(new double[2*nelements]); double* array = pArray.get(); int anynul(0); if (fits_read_col_dblcmp(fitsPointer(),index(),firstRow, firstElem, nelements,nulval,array,&anynul,&status) ) throw FitsError(status); if (m_data.size() != static_cast(rows())) m_data.resize(rows()); std::valarray > readData(nelements); for (long j = 0; j < nelements; ++j) { readData[j] = std::complex(array[2*j],array[2*j+1]); } size_t countRead = 0; const size_t ONE = 1; if (m_data.size() != static_cast(rows())) m_data.resize(rows()); size_t vectorSize(0); if (!varLength()) { vectorSize = std::max(repeat(),ONE); // safety check. } else { // assume that the user specified the correct length for // variable columns. This should be ok since readVariableColumns // uses fits_read_descripts to return this information from the // fits pointer, and this is passed as nelements here. vectorSize = nelements; } size_t n = nelements; int i = firstRow; int ii = i - 1; while ( countRead < n) { std::valarray >& current = m_data[ii]; if (current.size() != vectorSize) current.resize(vectorSize,0.); int elementsInFirstRow = vectorSize-firstElem + 1; bool lastRow = ( (nelements - countRead) < vectorSize); if (lastRow) { int elementsInLastRow = nelements - countRead; std::copy(&readData[countRead],&readData[0]+nelements,¤t[0]); countRead += elementsInLastRow; } // what to do with complete rows. if firstElem == 1 the else { if (firstElem == 1 || (firstElem > 1 && i > firstRow) ) { current = readData[std::slice(vectorSize*(ii-firstRow)+ elementsInFirstRow,vectorSize,1)]; ++ii; ++i; countRead += vectorSize; } else { if (i == firstRow) { std::copy(&readData[0],&readData[0]+elementsInFirstRow, ¤t[firstElem]); countRead += elementsInFirstRow; ++i; ++ii; } } } } } #else template <> void ColumnVectorData >::readColumnData (long firstRow, long nelements, long firstElem, complex* null); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnVectorData >::writeFixedArray (complex* data, long nElements, long nRows, long firstRow, complex* nullValue) { int status(0); // check for sanity of inputs, then write to file. // this function writes only complete rows to a table with // fixed width rows. if ( nElements < nRows*static_cast(repeat()) ) { #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif msgStr << " input array size: " << nElements << " required " << nRows*repeat(); #ifdef SSTREAM_DEFECT msgStr << std::ends; #endif String msg(msgStr.str()); throw Column::InsufficientElements(msg); } FITSUtil::auto_array_ptr realData(new float[2*nElements]); for (int j = 0; j < nElements; ++j) { realData[2*j] = data[j].real(); realData[2*j+1] = data[j].imag(); } if (fits_write_col_cmp(fitsPointer(),index(),firstRow, 1,nElements,realData.get(),&status)) throw FitsError(status); parent()->updateRows(); } #else template <> void ColumnVectorData >::writeFixedArray (complex* data, long nElements, long nRows, long firstRow, std::complex* null); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnVectorData >::writeFixedArray (complex* data, long nElements, long nRows, long firstRow, complex* nullValue) { int status(0); // check for sanity of inputs, then write to file. // this function writes only complete rows to a table with // fixed width rows. if ( nElements < nRows*static_cast(repeat()) ) { #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif msgStr << " input array size: " << nElements << " required " << nRows*repeat(); #ifdef SSTREAM_DEFECT msgStr << std::ends; #endif String msg(msgStr.str()); throw Column::InsufficientElements(msg); } FITSUtil::auto_array_ptr realData(new double[2*nElements]); for (int j = 0; j < nElements; ++j) { realData[2*j] = data[j].real(); realData[2*j+1] = data[j].imag(); } if (fits_write_col_dblcmp(fitsPointer(),index(),firstRow, 1,nElements,realData.get(),&status)) throw FitsError(status); parent()->updateRows(); } #else template <> void ColumnVectorData >::writeFixedArray (complex* data, long nElements, long nRows, long firstRow, std::complex* null); #endif #ifdef SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnVectorData >::doWrite (std::complex* data, long row, long rowSize, long firstElem, std::complex* nullValue ) { int status(0); FITSUtil::auto_array_ptr carray( new float[2*rowSize]); for ( long j = 0 ; j < rowSize; ++ j) { carray[2*j] = data[j].real(); carray[2*j + 1] = data[j].imag(); } if (fits_write_col_cmp(fitsPointer(),index(),row,firstElem,rowSize, carray.get(),&status)) throw FitsError(status); } template <> inline void ColumnVectorData >::doWrite (std::complex* data, long row, long rowSize, long firstElem, std::complex* nullValue ) { int status(0); FITSUtil::auto_array_ptr carray( new double[2*rowSize]); for ( long j = 0 ; j < rowSize; ++ j) { carray[2*j] = data[j].real(); carray[2*j + 1] = data[j].imag(); } if (fits_write_col_dblcmp(fitsPointer(),index(),row,firstElem,rowSize, carray.get(),&status)) throw FitsError(status); } #else template<> void ColumnVectorData >::doWrite ( complex* data, long row, long rowSize, long firstElem, complex* nullValue); template<> void ColumnVectorData >::doWrite ( complex* data, long row, long rowSize, long firstElem, complex* nullValue ); #endif } // namespace CCfits #endif CCfits-2.7/ColumnCreator.h0000644000225700000360000000446614764627567015013 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef COLUMNCREATOR_H #define COLUMNCREATOR_H 1 #include // ColumnVectorData #include "ColumnVectorData.h" // ColumnData #include "ColumnData.h" namespace CCfits { class Table; class Column; } // namespace CCfits #include #include namespace CCfits { class ColumnCreator { public: ColumnCreator (Table* p); virtual ~ColumnCreator(); void reset (); // getColumn is a calling function for MakeColumn, i.e. // it specifies a column in an existing file to be "got" Column * getColumn (int number, const String& name, const String& format, const String& unit = ""); // createColumn is for specifying input data for creating // new columns in tables. Column * createColumn (int number, ValueType type, const String &name, const String &format, const String &unit, long repeat = 1, long width = 1, double scaleFactor = 1., double offset = 0, const String &comment = ""); // Additional Public Declarations protected: // MakeColumn is a virtual function that makes a Column // object with appropriate data member from an existing // column in a file. virtual Column * MakeColumn (const int index, const String &name, const String &format, const String &unit, const long repeat, const long width, const String &comment = "", const int decimals = 0); // Additional Protected Declarations private: void getScaling (int index, int& type, long& repeat, long& width, double& tscale, double& tzero); const Table* parent () const; void parent (Table* value); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes Column *m_column; Table* m_parent; // Additional Implementation Declarations }; // Class CCfits::ColumnCreator inline void ColumnCreator::reset () { m_column = 0; } inline const Table* ColumnCreator::parent () const { return m_parent; } inline void ColumnCreator::parent (Table* value) { m_parent = value; } } // namespace CCfits #endif CCfits-2.7/Makefile.am0000644000225700000360000000515614764627567014116 0ustar cagordonlhea## Process this file with automake to produce Makefile.in # # Author: Paul_Kunz@slac.stanford.edu # # The following set, else would follow GNU conventions. Add # "no-dependencies" if your compiler doesn't support dependency # generation like gcc does AUTOMAKE_OPTIONS = foreign # no-dependencies # Trick to add options to aclocal command ACLOCAL = aclocal -I config/m4 SUBDIRS = vs.net ## Subsitution of ac_check_package R_LIB_PATH = @RDFLAGS@ ## Subsitution from pfkeb_cxx_lib_path CXX_LIB_PATH = @CXX_LIB_PATH@ MSVC_FILES = MSconfig.h EXTRA_DIST = config CHANGES README.INSTALL License.txt file1.pha CMakeLists.txt FindCFITSIO.cmake $(MSVC_FILES) bin_PROGRAMS = cookbook cookbook_SOURCES = cookbook.cxx cookbook_LDADD = libCCfits.la cookbook_LDFLAGS = -R $(R_LIB_PATH) -R $(CXX_LIB_PATH) pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = CCfits.pc ## The following is needed for compiling cookbook.cxx AM_CPPFLAGS = -I$(top_srcdir)/.. ## The library to be built lib_LTLIBRARIES = libCCfits.la libCCfits_la_SOURCES = \ AsciiTable.cxx \ BinTable.cxx \ Column.cxx \ ColumnCreator.cxx \ ColumnData.cxx \ ColumnVectorData.cxx \ ExtHDU.cxx \ FITS.cxx \ FITSUtil.cxx \ FitsError.cxx \ GroupTable.cxx \ HDU.cxx \ HDUCreator.cxx \ KeyData.cxx \ Keyword.cxx \ KeywordCreator.cxx \ PHDU.cxx \ Table.cxx # This will tell shared library which STD C++ library to use without # needing the user to use LD_LIBRARY_PATH environment variable libCCfits_la_LIBADD = $(LIBSTDCPP) libCCfits_la_LDFLAGS = -R $(R_LIB_PATH) -R $(CXX_LIB_PATH) libCCfits_ladir = $(pkgincludedir) libCCfits_la_HEADERS = \ AsciiTable.h \ BinTable.h \ CCfits \ CCfits.h \ Column.h \ ColumnT.h \ ColumnCreator.h \ ColumnData.h \ ColumnVectorData.h \ ExtHDU.h \ ExtHDUT.h \ FITS.h \ FITSUtil.h \ FITSUtilT.h \ FitsError.h \ GroupTable.h \ HDU.h \ HDUCreator.h \ Image.h \ ImageExt.h \ KeyData.h \ Keyword.h \ KeywordT.h \ KeywordCreator.h \ NewKeyword.h \ PHDU.h \ PHDUT.h \ PrimaryHDU.h \ Table.h #run_cookbook: # rm -rf *.fit # cookbook.C ## The following is for Mac OS X. ## It has not yet been tested. ## This workaround was contributed by Chris Jones ## bundle: c++ -bundle -I. -DHAVE_STRSTREAM -o libCCfits.a *.cxx ## commented out in configure.in INCLUDES = -I@STLPORT@ docs: doxygen Doxyfile clean-local: -rm -rf SunWS_cache *.fit CCfits-2.7/License.txt0000644000225700000360000000260314764627567014177 0ustar cagordonlheaCopyright (Unpublished--all rights reserved under the copyright laws of the United States), U.S. Government as represented by the Administrator of the National Aeronautics and Space Administration. No copyright is claimed in the United States under Title 17, U.S. Code. Permission to freely use, copy, modify, and distribute this software and its documentation without fee is hereby granted, provided that this copyright notice and disclaimer of warranty appears in all copies. DISCLAIMER: THE SOFTWARE IS PROVIDED 'AS IS' WITHOUT ANY WARRANTY OF ANY KIND, EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND FREEDOM FROM INFRINGEMENT, AND ANY WARRANTY THAT THE DOCUMENTATION WILL CONFORM TO THE SOFTWARE, OR ANY WARRANTY THAT THE SOFTWARE WILL BE ERROR FREE. IN NO EVENT SHALL NASA BE LIABLE FOR ANY DAMAGES, INCLUDING, BUT NOT LIMITED TO, DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES, ARISING OUT OF, RESULTING FROM, OR IN ANY WAY CONNECTED WITH THIS SOFTWARE, WHETHER OR NOT BASED UPON WARRANTY, CONTRACT, TORT , OR OTHERWISE, WHETHER OR NOT INJURY WAS SUSTAINED BY PERSONS OR PROPERTY OR OTHERWISE, AND WHETHER OR NOT LOSS WAS SUSTAINED FROM, OR AROSE OUT OF THE RESULTS OF, OR USE OF, THE SOFTWARE OR SERVICES PROVIDED HEREUNDER. CCfits-2.7/FITSUtilT.h0000644000225700000360000001041014764627567013747 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef FITSUTILT_H #define FITSUTILT_H #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #include "FITSUtil.h" #include #include #ifdef SSTREAM_DEFECT #include #else #include #endif namespace CCfits { namespace FITSUtil { // vector to vector conversion. template void fill(std::vector& outArray, const std::vector& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. int range = last - first + 1; if (outArray.size() != static_cast(range)) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = static_cast(inArray[j]); } } // vector to valarray conversion. template void fill(std::valarray& outArray, const std::vector& inArray, size_t first, size_t last) { // vector to valarray assign int range = last - first + 1; if (outArray.size() != static_cast(range)) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = static_cast(inArray[j]); } } // valarray to valarray conversion. template void fill(std::valarray& outArray, const std::valarray& inArray) { size_t n = inArray.size(); if (outArray.size() != n) outArray.resize(n); for (size_t j = 0;j < n; ++j) outArray[j] = static_cast(inArray[j]); } #ifdef TEMPLATE_AMBIG7_DEFECT template void fillMSva(std::vector& outArray, const std::valarray& inArray) { size_t n = inArray.size(); if (outArray.size() != n) outArray.resize(n); for (size_t j = 0;j < n; ++j) outArray[j] = static_cast(inArray[j]); } #else template void fill(std::vector& outArray, const std::valarray& inArray) { size_t n = inArray.size(); if (outArray.size() != n) outArray.resize(n); for (size_t j = 0;j < n; ++j) outArray[j] = static_cast(inArray[j]); } #endif // throw exceptions for string conversions to anything other than string. template void fill(std::vector& outArray, const std::vector& inArray, size_t first, size_t last) { first = 0; last = 0; throw InvalidConversion(errorMessage(outArray,inArray),false); } template void fill(std::vector& outArray, const std::vector& inArray, size_t first, size_t last) { first = 0; last = 0; throw InvalidConversion(errorMessage(outArray,inArray),false); } template string errorMessage( const S& out, const T& in) { #ifdef SSTREAM_DEFECT std::ostrstream errMsg; #else std::ostringstream errMsg; #endif errMsg << " Error: no conversion from " << typeid(in).name() << " to " << typeid(out).name() << std::endl; return errMsg.str(); } } } // namespace CCfits #endif CCfits-2.7/config/0000755000225700000360000000000014764627567013320 5ustar cagordonlheaCCfits-2.7/config/ltmain.sh0000644000225700000360000117077114764627567015156 0ustar cagordonlhea#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.6 package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-01-20.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1+=\\ \$func_quote_for_eval_result" }' else func_append_quoted () { $debug_cmd func_quote_for_eval "$2" eval "$1=\$$1\\ \$func_quote_for_eval_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_for_eval ARG... # -------------------------- # Aesthetically quote ARGs to be evaled later. # This function returns two values: # i) func_quote_for_eval_result # double-quoted, suitable for a subsequent eval # ii) func_quote_for_eval_unquoted_result # has all characters that are still active within double # quotes backslashified. func_quote_for_eval () { $debug_cmd func_quote_for_eval_unquoted_result= func_quote_for_eval_result= while test 0 -lt $#; do case $1 in *[\\\`\"\$]*) _G_unquoted_arg=`printf '%s\n' "$1" |$SED "$sed_quote_subst"` ;; *) _G_unquoted_arg=$1 ;; esac if test -n "$func_quote_for_eval_unquoted_result"; then func_append func_quote_for_eval_unquoted_result " $_G_unquoted_arg" else func_append func_quote_for_eval_unquoted_result "$_G_unquoted_arg" fi case $_G_unquoted_arg in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_quoted_arg=\"$_G_unquoted_arg\" ;; *) _G_quoted_arg=$_G_unquoted_arg ;; esac if test -n "$func_quote_for_eval_result"; then func_append func_quote_for_eval_result " $_G_quoted_arg" else func_append func_quote_for_eval_result "$_G_quoted_arg" fi shift done } # func_quote_for_expand ARG # ------------------------- # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { $debug_cmd case $1 in *[\\\`\"]*) _G_arg=`$ECHO "$1" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` ;; *) _G_arg=$1 ;; esac case $_G_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") _G_arg=\"$_G_arg\" ;; esac func_quote_for_expand_result=$_G_arg } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_for_expand "$_G_cmd" eval "func_notquiet $func_quote_for_expand_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_for_expand "$_G_cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2014-01-07.03; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do eval $_G_hook '"$@"' # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift done func_quote_for_eval ${1+"$@"} func_run_hooks_result=$func_quote_for_eval_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, remove any # options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # func_quote_for_eval ${1+"$@"} # my_options_prep_result=$func_quote_for_eval_result # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # ;; # *) set dummy "$_G_opt" "$*"; shift; break ;; # esac # done # # func_quote_for_eval ${1+"$@"} # my_silent_option_result=$func_quote_for_eval_result # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # func_quote_for_eval ${1+"$@"} # my_option_validation_result=$func_quote_for_eval_result # } # func_add_hook func_validate_options my_option_validation # # You'll alse need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd func_options_prep ${1+"$@"} eval func_parse_options \ ${func_options_prep_result+"$func_options_prep_result"} eval func_validate_options \ ${func_parse_options_result+"$func_parse_options_result"} eval func_run_hooks func_options \ ${func_validate_options_result+"$func_validate_options_result"} # save modified positional parameters for caller func_options_result=$func_run_hooks_result } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propogate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} # Adjust func_parse_options positional parameters to match eval set dummy "$func_run_hooks_result"; shift # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) test $# = 0 && func_missing_arg $_G_opt && break case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} func_parse_options_result=$func_quote_for_eval_result } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname (GNU libtool) 2.4.6 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Pass back the list of options. func_quote_for_eval ${1+"$@"} libtool_options_prep_result=$func_quote_for_eval_result } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"}; shift; break ;; esac done # save modified positional parameters for caller func_quote_for_eval ${1+"$@"} libtool_parse_options_result=$func_quote_for_eval_result } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote_for_eval ${1+"$@"} libtool_validate_options_result=$func_quote_for_eval_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_for_eval "$libobj" test "X$libobj" != "X$func_quote_for_eval_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" func_append install_prog "$func_quote_for_eval_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" func_append install_prog " $func_quote_for_eval_result" if test -n "$arg2"; then func_quote_for_eval "$arg2" fi func_append install_shared_prog " $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_for_eval "$install_override_mode" func_append install_shared_prog " -m $func_quote_for_eval_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" qECHO=`$ECHO "$ECHO" | $SED "$sed_quote_subst"` $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=\"$qECHO\" fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $func_quote_for_eval_result" func_append compiler_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_for_eval "$flag" func_append arg " $wl$func_quote_for_eval_result" func_append compiler_flags " $wl$func_quote_for_eval_result" func_append linker_flags " $func_quote_for_eval_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -stdlib=* select c++ std lib with clang -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_for_eval "$arg" arg=$func_quote_for_eval_result fi ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg=$func_quote_for_eval_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "$relink_command" | $SED "$sed_quote_subst"` if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: CCfits-2.7/config/compile0000755000225700000360000001635014764627567014703 0ustar cagordonlhea#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2020 Free Software Foundation, Inc. # Written by Tom Tromey . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # This file is maintained in Automake, please report # bugs to or send patches to # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN* | MSYS*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/* | msys/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: compile [--help] [--version] PROGRAM [ARGS] Wrapper for compilers which do not understand '-c -o'. Remove '-o dest.o' from ARGS, run PROGRAM with the remaining arguments, and rename the output as expected. If you are trying to build a whole package this is not the right script to run: please start by reading the file 'INSTALL'. Report bugs to . EOF exit $? ;; -v | --v*) echo "compile $scriptversion" exit $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe | \ icl | *[/\\]icl | icl.exe | *[/\\]icl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= for arg do if test -n "$eat"; then eat= else case $1 in -o) # configure might choose to run compile as 'compile cc -o foo foo.c'. # So we strip '-o arg' only if arg is an object. eat=1 case $2 in *.o | *.obj) ofile=$2 ;; *) set x "$@" -o "$2" shift ;; esac ;; *.c) cfile=$1 set x "$@" "$1" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -z "$ofile" || test -z "$cfile"; then # If no '-o' option was seen then we might have been invoked from a # pattern rule where we don't need one. That is ok -- this is a # normal compilation that the losing compiler can handle. If no # '.c' file was seen then we are probably linking. That is also # ok. exec "$@" fi # Name of file we expect compiler to create. cofile=`echo "$cfile" | sed 's|^.*[\\/]||; s|^[a-zA-Z]:||; s/\.c$/.o/'` # Create the lock directory. # Note: use '[/\\:.-]' here to ensure that we don't use the same name # that we are using for the .o file. Also, base the name on the expected # object file name, since that is what matters with a parallel build. lockdir=`echo "$cofile" | sed -e 's|[/\\:.-]|_|g'`.d while true; do if mkdir "$lockdir" >/dev/null 2>&1; then break fi sleep 1 done # FIXME: race condition here if user kills between mkdir and trap. trap "rmdir '$lockdir'; exit 1" 1 2 15 # Run the compile. "$@" ret=$? if test -f "$cofile"; then test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || mv "${cofile}bj" "$ofile" fi rmdir "$lockdir" exit $ret # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: CCfits-2.7/config/config.sub0000755000225700000360000010315414764627567015307 0ustar cagordonlhea#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2021 Free Software Foundation, Inc. timestamp='2021-01-08' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # Please send patches to . # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # https://git.savannah.gnu.org/cgit/config.git/plain/config.sub # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=$(echo "$0" | sed -e 's,.*/,,') usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS or ALIAS Canonicalize a configuration name. Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright 1992-2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; *local*) # First pass through any local machine types. echo "$1" exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Split fields of configuration type # shellcheck disable=SC2162 IFS="-" read field1 field2 field3 field4 <&2 exit 1 ;; *-*-*-*) basic_machine=$field1-$field2 basic_os=$field3-$field4 ;; *-*-*) # Ambiguous whether COMPANY is present, or skipped and KERNEL-OS is two # parts maybe_os=$field2-$field3 case $maybe_os in nto-qnx* | linux-* | uclinux-uclibc* \ | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* \ | netbsd*-eabi* | kopensolaris*-gnu* | cloudabi*-eabi* \ | storm-chaos* | os2-emx* | rtmk-nova*) basic_machine=$field1 basic_os=$maybe_os ;; android-linux) basic_machine=$field1-unknown basic_os=linux-android ;; *) basic_machine=$field1-$field2 basic_os=$field3 ;; esac ;; *-*) # A lone config we happen to match not fitting any pattern case $field1-$field2 in decstation-3100) basic_machine=mips-dec basic_os= ;; *-*) # Second component is usually, but not always the OS case $field2 in # Prevent following clause from handling this valid os sun*os*) basic_machine=$field1 basic_os=$field2 ;; # Manufacturers dec* | mips* | sequent* | encore* | pc533* | sgi* | sony* \ | att* | 7300* | 3300* | delta* | motorola* | sun[234]* \ | unicom* | ibm* | next | hp | isi* | apollo | altos* \ | convergent* | ncr* | news | 32* | 3600* | 3100* \ | hitachi* | c[123]* | convex* | sun | crds | omron* | dg \ | ultra | tti* | harris | dolphin | highlevel | gould \ | cbm | ns | masscomp | apple | axis | knuth | cray \ | microblaze* | sim | cisco \ | oki | wec | wrs | winbond) basic_machine=$field1-$field2 basic_os= ;; *) basic_machine=$field1 basic_os=$field2 ;; esac ;; esac ;; *) # Convert single-component short-hands not valid as part of # multi-component configurations. case $field1 in 386bsd) basic_machine=i386-pc basic_os=bsd ;; a29khif) basic_machine=a29k-amd basic_os=udi ;; adobe68k) basic_machine=m68010-adobe basic_os=scout ;; alliant) basic_machine=fx80-alliant basic_os= ;; altos | altos3068) basic_machine=m68k-altos basic_os= ;; am29k) basic_machine=a29k-none basic_os=bsd ;; amdahl) basic_machine=580-amdahl basic_os=sysv ;; amiga) basic_machine=m68k-unknown basic_os= ;; amigaos | amigados) basic_machine=m68k-unknown basic_os=amigaos ;; amigaunix | amix) basic_machine=m68k-unknown basic_os=sysv4 ;; apollo68) basic_machine=m68k-apollo basic_os=sysv ;; apollo68bsd) basic_machine=m68k-apollo basic_os=bsd ;; aros) basic_machine=i386-pc basic_os=aros ;; aux) basic_machine=m68k-apple basic_os=aux ;; balance) basic_machine=ns32k-sequent basic_os=dynix ;; blackfin) basic_machine=bfin-unknown basic_os=linux ;; cegcc) basic_machine=arm-unknown basic_os=cegcc ;; convex-c1) basic_machine=c1-convex basic_os=bsd ;; convex-c2) basic_machine=c2-convex basic_os=bsd ;; convex-c32) basic_machine=c32-convex basic_os=bsd ;; convex-c34) basic_machine=c34-convex basic_os=bsd ;; convex-c38) basic_machine=c38-convex basic_os=bsd ;; cray) basic_machine=j90-cray basic_os=unicos ;; crds | unos) basic_machine=m68k-crds basic_os= ;; da30) basic_machine=m68k-da30 basic_os= ;; decstation | pmax | pmin | dec3100 | decstatn) basic_machine=mips-dec basic_os= ;; delta88) basic_machine=m88k-motorola basic_os=sysv3 ;; dicos) basic_machine=i686-pc basic_os=dicos ;; djgpp) basic_machine=i586-pc basic_os=msdosdjgpp ;; ebmon29k) basic_machine=a29k-amd basic_os=ebmon ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson basic_os=ose ;; gmicro) basic_machine=tron-gmicro basic_os=sysv ;; go32) basic_machine=i386-pc basic_os=go32 ;; h8300hms) basic_machine=h8300-hitachi basic_os=hms ;; h8300xray) basic_machine=h8300-hitachi basic_os=xray ;; h8500hms) basic_machine=h8500-hitachi basic_os=hms ;; harris) basic_machine=m88k-harris basic_os=sysv3 ;; hp300 | hp300hpux) basic_machine=m68k-hp basic_os=hpux ;; hp300bsd) basic_machine=m68k-hp basic_os=bsd ;; hppaosf) basic_machine=hppa1.1-hp basic_os=osf ;; hppro) basic_machine=hppa1.1-hp basic_os=proelf ;; i386mach) basic_machine=i386-mach basic_os=mach ;; isi68 | isi) basic_machine=m68k-isi basic_os=sysv ;; m68knommu) basic_machine=m68k-unknown basic_os=linux ;; magnum | m3230) basic_machine=mips-mips basic_os=sysv ;; merlin) basic_machine=ns32k-utek basic_os=sysv ;; mingw64) basic_machine=x86_64-pc basic_os=mingw64 ;; mingw32) basic_machine=i686-pc basic_os=mingw32 ;; mingw32ce) basic_machine=arm-unknown basic_os=mingw32ce ;; monitor) basic_machine=m68k-rom68k basic_os=coff ;; morphos) basic_machine=powerpc-unknown basic_os=morphos ;; moxiebox) basic_machine=moxie-unknown basic_os=moxiebox ;; msdos) basic_machine=i386-pc basic_os=msdos ;; msys) basic_machine=i686-pc basic_os=msys ;; mvs) basic_machine=i370-ibm basic_os=mvs ;; nacl) basic_machine=le32-unknown basic_os=nacl ;; ncr3000) basic_machine=i486-ncr basic_os=sysv4 ;; netbsd386) basic_machine=i386-pc basic_os=netbsd ;; netwinder) basic_machine=armv4l-rebel basic_os=linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony basic_os=newsos ;; news1000) basic_machine=m68030-sony basic_os=newsos ;; necv70) basic_machine=v70-nec basic_os=sysv ;; nh3000) basic_machine=m68k-harris basic_os=cxux ;; nh[45]000) basic_machine=m88k-harris basic_os=cxux ;; nindy960) basic_machine=i960-intel basic_os=nindy ;; mon960) basic_machine=i960-intel basic_os=mon960 ;; nonstopux) basic_machine=mips-compaq basic_os=nonstopux ;; os400) basic_machine=powerpc-ibm basic_os=os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson basic_os=ose ;; os68k) basic_machine=m68k-none basic_os=os68k ;; paragon) basic_machine=i860-intel basic_os=osf ;; parisc) basic_machine=hppa-unknown basic_os=linux ;; psp) basic_machine=mipsallegrexel-sony basic_os=psp ;; pw32) basic_machine=i586-unknown basic_os=pw32 ;; rdos | rdos64) basic_machine=x86_64-pc basic_os=rdos ;; rdos32) basic_machine=i386-pc basic_os=rdos ;; rom68k) basic_machine=m68k-rom68k basic_os=coff ;; sa29200) basic_machine=a29k-amd basic_os=udi ;; sei) basic_machine=mips-sei basic_os=seiux ;; sequent) basic_machine=i386-sequent basic_os= ;; sps7) basic_machine=m68k-bull basic_os=sysv2 ;; st2000) basic_machine=m68k-tandem basic_os= ;; stratus) basic_machine=i860-stratus basic_os=sysv4 ;; sun2) basic_machine=m68000-sun basic_os= ;; sun2os3) basic_machine=m68000-sun basic_os=sunos3 ;; sun2os4) basic_machine=m68000-sun basic_os=sunos4 ;; sun3) basic_machine=m68k-sun basic_os= ;; sun3os3) basic_machine=m68k-sun basic_os=sunos3 ;; sun3os4) basic_machine=m68k-sun basic_os=sunos4 ;; sun4) basic_machine=sparc-sun basic_os= ;; sun4os3) basic_machine=sparc-sun basic_os=sunos3 ;; sun4os4) basic_machine=sparc-sun basic_os=sunos4 ;; sun4sol2) basic_machine=sparc-sun basic_os=solaris2 ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun basic_os= ;; sv1) basic_machine=sv1-cray basic_os=unicos ;; symmetry) basic_machine=i386-sequent basic_os=dynix ;; t3e) basic_machine=alphaev5-cray basic_os=unicos ;; t90) basic_machine=t90-cray basic_os=unicos ;; toad1) basic_machine=pdp10-xkl basic_os=tops20 ;; tpf) basic_machine=s390x-ibm basic_os=tpf ;; udi29k) basic_machine=a29k-amd basic_os=udi ;; ultra3) basic_machine=a29k-nyu basic_os=sym1 ;; v810 | necv810) basic_machine=v810-nec basic_os=none ;; vaxv) basic_machine=vax-dec basic_os=sysv ;; vms) basic_machine=vax-dec basic_os=vms ;; vsta) basic_machine=i386-pc basic_os=vsta ;; vxworks960) basic_machine=i960-wrs basic_os=vxworks ;; vxworks68) basic_machine=m68k-wrs basic_os=vxworks ;; vxworks29k) basic_machine=a29k-wrs basic_os=vxworks ;; xbox) basic_machine=i686-pc basic_os=mingw32 ;; ymp) basic_machine=ymp-cray basic_os=unicos ;; *) basic_machine=$1 basic_os= ;; esac ;; esac # Decode 1-component or ad-hoc basic machines case $basic_machine in # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) cpu=hppa1.1 vendor=winbond ;; op50n) cpu=hppa1.1 vendor=oki ;; op60c) cpu=hppa1.1 vendor=oki ;; ibm*) cpu=i370 vendor=ibm ;; orion105) cpu=clipper vendor=highlevel ;; mac | mpw | mac-mpw) cpu=m68k vendor=apple ;; pmac | pmac-mpw) cpu=powerpc vendor=apple ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) cpu=m68000 vendor=att ;; 3b*) cpu=we32k vendor=att ;; bluegene*) cpu=powerpc vendor=ibm basic_os=cnk ;; decsystem10* | dec10*) cpu=pdp10 vendor=dec basic_os=tops10 ;; decsystem20* | dec20*) cpu=pdp10 vendor=dec basic_os=tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) cpu=m68k vendor=motorola ;; dpx2*) cpu=m68k vendor=bull basic_os=sysv3 ;; encore | umax | mmax) cpu=ns32k vendor=encore ;; elxsi) cpu=elxsi vendor=elxsi basic_os=${basic_os:-bsd} ;; fx2800) cpu=i860 vendor=alliant ;; genix) cpu=ns32k vendor=ns ;; h3050r* | hiux*) cpu=hppa1.1 vendor=hitachi basic_os=hiuxwe2 ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) cpu=hppa1.0 vendor=hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) cpu=m68000 vendor=hp ;; hp9k3[2-9][0-9]) cpu=m68k vendor=hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) cpu=hppa1.0 vendor=hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) cpu=hppa1.1 vendor=hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp cpu=hppa1.1 vendor=hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp cpu=hppa1.1 vendor=hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) cpu=hppa1.1 vendor=hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) cpu=hppa1.0 vendor=hp ;; i*86v32) cpu=$(echo "$1" | sed -e 's/86.*/86/') vendor=pc basic_os=sysv32 ;; i*86v4*) cpu=$(echo "$1" | sed -e 's/86.*/86/') vendor=pc basic_os=sysv4 ;; i*86v) cpu=$(echo "$1" | sed -e 's/86.*/86/') vendor=pc basic_os=sysv ;; i*86sol2) cpu=$(echo "$1" | sed -e 's/86.*/86/') vendor=pc basic_os=solaris2 ;; j90 | j90-cray) cpu=j90 vendor=cray basic_os=${basic_os:-unicos} ;; iris | iris4d) cpu=mips vendor=sgi case $basic_os in irix*) ;; *) basic_os=irix4 ;; esac ;; miniframe) cpu=m68000 vendor=convergent ;; *mint | mint[0-9]* | *MiNT | *MiNT[0-9]*) cpu=m68k vendor=atari basic_os=mint ;; news-3600 | risc-news) cpu=mips vendor=sony basic_os=newsos ;; next | m*-next) cpu=m68k vendor=next case $basic_os in openstep*) ;; nextstep*) ;; ns2*) basic_os=nextstep2 ;; *) basic_os=nextstep3 ;; esac ;; np1) cpu=np1 vendor=gould ;; op50n-* | op60c-*) cpu=hppa1.1 vendor=oki basic_os=proelf ;; pa-hitachi) cpu=hppa1.1 vendor=hitachi basic_os=hiuxwe2 ;; pbd) cpu=sparc vendor=tti ;; pbb) cpu=m68k vendor=tti ;; pc532) cpu=ns32k vendor=pc532 ;; pn) cpu=pn vendor=gould ;; power) cpu=power vendor=ibm ;; ps2) cpu=i386 vendor=ibm ;; rm[46]00) cpu=mips vendor=siemens ;; rtpc | rtpc-*) cpu=romp vendor=ibm ;; sde) cpu=mipsisa32 vendor=sde basic_os=${basic_os:-elf} ;; simso-wrs) cpu=sparclite vendor=wrs basic_os=vxworks ;; tower | tower-32) cpu=m68k vendor=ncr ;; vpp*|vx|vx-*) cpu=f301 vendor=fujitsu ;; w65) cpu=w65 vendor=wdc ;; w89k-*) cpu=hppa1.1 vendor=winbond basic_os=proelf ;; none) cpu=none vendor=none ;; leon|leon[3-9]) cpu=sparc vendor=$basic_machine ;; leon-*|leon[3-9]-*) cpu=sparc vendor=$(echo "$basic_machine" | sed 's/-.*//') ;; *-*) # shellcheck disable=SC2162 IFS="-" read cpu vendor <&2 exit 1 ;; esac ;; esac # Here we canonicalize certain aliases for manufacturers. case $vendor in digital*) vendor=dec ;; commodore*) vendor=cbm ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if test x$basic_os != x then # First recognize some ad-hoc caes, or perhaps split kernel-os, or else just # set os. case $basic_os in gnu/linux*) kernel=linux os=$(echo $basic_os | sed -e 's|gnu/linux|gnu|') ;; os2-emx) kernel=os2 os=$(echo $basic_os | sed -e 's|os2-emx|emx|') ;; nto-qnx*) kernel=nto os=$(echo $basic_os | sed -e 's|nto-qnx|qnx|') ;; *-*) # shellcheck disable=SC2162 IFS="-" read kernel os <&2 exit 1 ;; esac # As a final step for OS-related things, validate the OS-kernel combination # (given a valid OS), if there is a kernel. case $kernel-$os in linux-gnu* | linux-dietlibc* | linux-android* | linux-newlib* | linux-musl* | linux-uclibc* ) ;; uclinux-uclibc* ) ;; -dietlibc* | -newlib* | -musl* | -uclibc* ) # These are just libc implementations, not actual OSes, and thus # require a kernel. echo "Invalid configuration \`$1': libc \`$os' needs explicit kernel." 1>&2 exit 1 ;; kfreebsd*-gnu* | kopensolaris*-gnu*) ;; vxworks-simlinux | vxworks-simwindows | vxworks-spe) ;; nto-qnx*) ;; os2-emx) ;; *-eabi* | *-gnueabi*) ;; -*) # Blank kernel with real OS is always fine. ;; *-*) echo "Invalid configuration \`$1': Kernel \`$kernel' not known to work with OS \`$os'." 1>&2 exit 1 ;; esac # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. case $vendor in unknown) case $cpu-$os in *-riscix*) vendor=acorn ;; *-sunos*) vendor=sun ;; *-cnk* | *-aix*) vendor=ibm ;; *-beos*) vendor=be ;; *-hpux*) vendor=hp ;; *-mpeix*) vendor=hp ;; *-hiux*) vendor=hitachi ;; *-unos*) vendor=crds ;; *-dgux*) vendor=dg ;; *-luna*) vendor=omron ;; *-genix*) vendor=ns ;; *-clix*) vendor=intergraph ;; *-mvs* | *-opened*) vendor=ibm ;; *-os400*) vendor=ibm ;; s390-* | s390x-*) vendor=ibm ;; *-ptx*) vendor=sequent ;; *-tpf*) vendor=ibm ;; *-vxsim* | *-vxworks* | *-windiss*) vendor=wrs ;; *-aux*) vendor=apple ;; *-hms*) vendor=hitachi ;; *-mpw* | *-macos*) vendor=apple ;; *-*mint | *-mint[0-9]* | *-*MiNT | *-MiNT[0-9]*) vendor=atari ;; *-vos*) vendor=stratus ;; esac ;; esac echo "$cpu-$vendor-${kernel:+$kernel-}$os" exit # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: CCfits-2.7/config/missing0000755000225700000360000001533614764627567014727 0ustar cagordonlhea#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2018-03-07.03; # UTC # Copyright (C) 1996-2020 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=https://www.perl.org/ flex_URL=https://github.com/westes/flex gnu_software_URL=https://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: CCfits-2.7/config/config.guess0000755000225700000360000014044614764627567015651 0ustar cagordonlhea#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2021 Free Software Foundation, Inc. timestamp='2021-01-25' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, see . # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that # program. This Exception is an additional permission under section 7 # of the GNU General Public License, version 3 ("GPLv3"). # # Originally written by Per Bothner; maintained since 2000 by Ben Elliston. # # You can get the latest version of this script from: # https://git.savannah.gnu.org/cgit/config.git/plain/config.guess # # Please send patches to . me=$(echo "$0" | sed -e 's,.*/,,') usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Options: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright 1992-2021 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. tmp= # shellcheck disable=SC2172 trap 'test -z "$tmp" || rm -fr "$tmp"' 0 1 2 13 15 set_cc_for_build() { # prevent multiple calls if $tmp is already set test "$tmp" && return 0 : "${TMPDIR=/tmp}" # shellcheck disable=SC2039 { tmp=$( (umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null) && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir "$tmp" 2>/dev/null) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir "$tmp" 2>/dev/null) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } dummy=$tmp/dummy case ${CC_FOR_BUILD-},${HOST_CC-},${CC-} in ,,) echo "int x;" > "$dummy.c" for driver in cc gcc c89 c99 ; do if ($driver -c -o "$dummy.o" "$dummy.c") >/dev/null 2>&1 ; then CC_FOR_BUILD="$driver" break fi done if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac } # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if test -f /.attbin/uname ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=$( (uname -m) 2>/dev/null) || UNAME_MACHINE=unknown UNAME_RELEASE=$( (uname -r) 2>/dev/null) || UNAME_RELEASE=unknown UNAME_SYSTEM=$( (uname -s) 2>/dev/null) || UNAME_SYSTEM=unknown UNAME_VERSION=$( (uname -v) 2>/dev/null) || UNAME_VERSION=unknown case "$UNAME_SYSTEM" in Linux|GNU|GNU/*) LIBC=unknown set_cc_for_build cat <<-EOF > "$dummy.c" #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #elif defined(__GLIBC__) LIBC=gnu #else #include /* First heuristic to detect musl libc. */ #ifdef __DEFINED_va_list LIBC=musl #endif #endif EOF eval "$($CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^LIBC' | sed 's, ,,g')" # Second heuristic to detect musl libc. if [ "$LIBC" = unknown ] && command -v ldd >/dev/null && ldd --version 2>&1 | grep -q ^musl; then LIBC=musl fi # If the system lacks a compiler, then just pick glibc. # We could probably try harder. if [ "$LIBC" = unknown ]; then LIBC=gnu fi ;; esac # Note: order is significant - the case branches are not exclusive. case "$UNAME_MACHINE:$UNAME_SYSTEM:$UNAME_RELEASE:$UNAME_VERSION" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". UNAME_MACHINE_ARCH=$( (uname -p 2>/dev/null || \ /sbin/sysctl -n hw.machine_arch 2>/dev/null || \ /usr/sbin/sysctl -n hw.machine_arch 2>/dev/null || \ echo unknown)) case "$UNAME_MACHINE_ARCH" in aarch64eb) machine=aarch64_be-unknown ;; armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; earmv*) arch=$(echo "$UNAME_MACHINE_ARCH" | sed -e 's,^e\(armv[0-9]\).*$,\1,') endian=$(echo "$UNAME_MACHINE_ARCH" | sed -ne 's,^.*\(eb\)$,\1,p') machine="${arch}${endian}"-unknown ;; *) machine="$UNAME_MACHINE_ARCH"-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently (or will in the future) and ABI. case "$UNAME_MACHINE_ARCH" in earm*) os=netbsdelf ;; arm*|i386|m68k|ns32k|sh3*|sparc|vax) set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # Determine ABI tags. case "$UNAME_MACHINE_ARCH" in earm*) expr='s/^earmv[0-9]/-eabi/;s/eb$//' abi=$(echo "$UNAME_MACHINE_ARCH" | sed -e "$expr") ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "$UNAME_VERSION" in Debian*) release='-gnu' ;; *) release=$(echo "$UNAME_RELEASE" | sed -e 's/[-_].*//' | cut -d. -f1,2) ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "$machine-${os}${release}${abi-}" exit ;; *:Bitrig:*:*) UNAME_MACHINE_ARCH=$(arch | sed 's/Bitrig.//') echo "$UNAME_MACHINE_ARCH"-unknown-bitrig"$UNAME_RELEASE" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=$(arch | sed 's/OpenBSD.//') echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE" exit ;; *:LibertyBSD:*:*) UNAME_MACHINE_ARCH=$(arch | sed 's/^.*BSD\.//') echo "$UNAME_MACHINE_ARCH"-unknown-libertybsd"$UNAME_RELEASE" exit ;; *:MidnightBSD:*:*) echo "$UNAME_MACHINE"-unknown-midnightbsd"$UNAME_RELEASE" exit ;; *:ekkoBSD:*:*) echo "$UNAME_MACHINE"-unknown-ekkobsd"$UNAME_RELEASE" exit ;; *:SolidBSD:*:*) echo "$UNAME_MACHINE"-unknown-solidbsd"$UNAME_RELEASE" exit ;; *:OS108:*:*) echo "$UNAME_MACHINE"-unknown-os108_"$UNAME_RELEASE" exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:MirBSD:*:*) echo "$UNAME_MACHINE"-unknown-mirbsd"$UNAME_RELEASE" exit ;; *:Sortix:*:*) echo "$UNAME_MACHINE"-unknown-sortix exit ;; *:Twizzler:*:*) echo "$UNAME_MACHINE"-unknown-twizzler exit ;; *:Redox:*:*) echo "$UNAME_MACHINE"-unknown-redox exit ;; mips:OSF1:*.*) echo mips-dec-osf1 exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=$(/usr/sbin/sizer -v | awk '{print $3}') ;; *5.*) UNAME_RELEASE=$(/usr/sbin/sizer -v | awk '{print $4}') ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=$(/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1) case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE=alpha ;; "EV4.5 (21064)") UNAME_MACHINE=alpha ;; "LCA4 (21066/21068)") UNAME_MACHINE=alpha ;; "EV5 (21164)") UNAME_MACHINE=alphaev5 ;; "EV5.6 (21164A)") UNAME_MACHINE=alphaev56 ;; "EV5.6 (21164PC)") UNAME_MACHINE=alphapca56 ;; "EV5.7 (21164PC)") UNAME_MACHINE=alphapca57 ;; "EV6 (21264)") UNAME_MACHINE=alphaev6 ;; "EV6.7 (21264A)") UNAME_MACHINE=alphaev67 ;; "EV6.8CB (21264C)") UNAME_MACHINE=alphaev68 ;; "EV6.8AL (21264B)") UNAME_MACHINE=alphaev68 ;; "EV6.8CX (21264D)") UNAME_MACHINE=alphaev68 ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE=alphaev69 ;; "EV7 (21364)") UNAME_MACHINE=alphaev7 ;; "EV7.9 (21364A)") UNAME_MACHINE=alphaev79 ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo "$UNAME_MACHINE"-dec-osf"$(echo "$UNAME_RELEASE" | sed -e 's/^[PVTX]//' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz)" # Reset EXIT trap before exiting to avoid spurious non-zero exit code. exitcode=$? trap '' 0 exit $exitcode ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo "$UNAME_MACHINE"-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo "$UNAME_MACHINE"-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix"$UNAME_RELEASE" exit ;; arm*:riscos:*:*|arm*:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "$( (/bin/universe) 2>/dev/null)" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case $(/usr/bin/uname -p) in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo "$UNAME_MACHINE"-ibm-solaris2"$(echo "$UNAME_RELEASE" | sed -e 's/[^.]*//')" exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2"$(echo "$UNAME_RELEASE"|sed -e 's/[^.]*//')" exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2"$(echo "$UNAME_RELEASE" | sed -e 's/[^.]*//')" exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux"$UNAME_RELEASE" exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) set_cc_for_build SUN_ARCH=i386 # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if test "$CC_FOR_BUILD" != no_compiler_found; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH=x86_64 fi fi echo "$SUN_ARCH"-pc-solaris2"$(echo "$UNAME_RELEASE"|sed -e 's/[^.]*//')" exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3"$(echo "$UNAME_RELEASE"|sed -e 's/[^.]*//')" exit ;; sun4*:SunOS:*:*) case "$(/usr/bin/arch -k)" in Series*|S4*) UNAME_RELEASE=$(uname -v) ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos"$(echo "$UNAME_RELEASE"|sed -e 's/-/_/')" exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos"$UNAME_RELEASE" exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=$( (sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null) test "x$UNAME_RELEASE" = x && UNAME_RELEASE=3 case "$(/bin/arch)" in sun3) echo m68k-sun-sunos"$UNAME_RELEASE" ;; sun4) echo sparc-sun-sunos"$UNAME_RELEASE" ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos"$UNAME_RELEASE" exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint"$UNAME_RELEASE" exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint"$UNAME_RELEASE" exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint"$UNAME_RELEASE" exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint"$UNAME_RELEASE" exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint"$UNAME_RELEASE" exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint"$UNAME_RELEASE" exit ;; m68k:machten:*:*) echo m68k-apple-machten"$UNAME_RELEASE" exit ;; powerpc:machten:*:*) echo powerpc-apple-machten"$UNAME_RELEASE" exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix"$UNAME_RELEASE" exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix"$UNAME_RELEASE" exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix"$UNAME_RELEASE" exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" && dummyarg=$(echo "$UNAME_RELEASE" | sed -n 's/\([0-9]*\).*/\1/p') && SYSTEM_NAME=$("$dummy" "$dummyarg") && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos"$UNAME_RELEASE" exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=$(/usr/bin/uname -p) if test "$UNAME_PROCESSOR" = mc88100 || test "$UNAME_PROCESSOR" = mc88110 then if test "$TARGET_BINARY_INTERFACE"x = m88kdguxelfx || \ test "$TARGET_BINARY_INTERFACE"x = x then echo m88k-dg-dgux"$UNAME_RELEASE" else echo m88k-dg-dguxbcs"$UNAME_RELEASE" fi else echo i586-dg-dgux"$UNAME_RELEASE" fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix"$(echo "$UNAME_RELEASE"|sed -e 's/-/_/g')" exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'$(uname -s)'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if test -x /usr/bin/oslevel ; then IBM_REV=$(/usr/bin/oslevel) else IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi echo "$UNAME_MACHINE"-ibm-aix"$IBM_REV" exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=$("$dummy") then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[4567]) IBM_CPU_ID=$(/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }') if /usr/sbin/lsattr -El "$IBM_CPU_ID" | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if test -x /usr/bin/lslpp ; then IBM_REV=$(/usr/bin/lslpp -Lqc bos.rte.libc | awk -F: '{ print $3 }' | sed s/[0-9]*$/0/) else IBM_REV="$UNAME_VERSION.$UNAME_RELEASE" fi echo "$IBM_ARCH"-ibm-aix"$IBM_REV" exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:4.4BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd"$UNAME_RELEASE" # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=$(echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//') case "$UNAME_MACHINE" in 9000/31?) HP_ARCH=m68000 ;; 9000/[34]??) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if test -x /usr/bin/getconf; then sc_cpu_version=$(/usr/bin/getconf SC_CPU_VERSION 2>/dev/null) sc_kernel_bits=$(/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null) case "$sc_cpu_version" in 523) HP_ARCH=hppa1.0 ;; # CPU_PA_RISC1_0 528) HP_ARCH=hppa1.1 ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "$sc_kernel_bits" in 32) HP_ARCH=hppa2.0n ;; 64) HP_ARCH=hppa2.0w ;; '') HP_ARCH=hppa2.0 ;; # HP-UX 10.20 esac ;; esac fi if test "$HP_ARCH" = ""; then set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS="" $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null) && HP_ARCH=$("$dummy") test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if test "$HP_ARCH" = hppa2.0w then set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH=hppa2.0w else HP_ARCH=hppa64 fi fi echo "$HP_ARCH"-hp-hpux"$HPUX_REV" exit ;; ia64:HP-UX:*:*) HPUX_REV=$(echo "$UNAME_RELEASE"|sed -e 's/[^.]*.[0B]*//') echo ia64-hp-hpux"$HPUX_REV" exit ;; 3050*:HI-UX:*:*) set_cc_for_build sed 's/^ //' << EOF > "$dummy.c" #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" && SYSTEM_NAME=$("$dummy") && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:*) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:*) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if test -x /usr/sbin/sysversion ; then echo "$UNAME_MACHINE"-unknown-osf1mk else echo "$UNAME_MACHINE"-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo "$UNAME_MACHINE"-cray-unicos"$UNAME_RELEASE" \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp"$UNAME_RELEASE" | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=$(uname -m | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz) FUJITSU_SYS=$(uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///') FUJITSU_REL=$(echo "$UNAME_RELEASE" | sed -e 's/ /_/') echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=$(uname -p | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/\///') FUJITSU_REL=$(echo "$UNAME_RELEASE" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz | sed -e 's/ /_/') echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo "$UNAME_MACHINE"-pc-bsdi"$UNAME_RELEASE" exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi"$UNAME_RELEASE" exit ;; *:BSD/OS:*:*) echo "$UNAME_MACHINE"-unknown-bsdi"$UNAME_RELEASE" exit ;; arm:FreeBSD:*:*) UNAME_PROCESSOR=$(uname -p) set_cc_for_build if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo "${UNAME_PROCESSOR}"-unknown-freebsd"$(echo ${UNAME_RELEASE}|sed -e 's/[-(].*//')"-gnueabi else echo "${UNAME_PROCESSOR}"-unknown-freebsd"$(echo ${UNAME_RELEASE}|sed -e 's/[-(].*//')"-gnueabihf fi exit ;; *:FreeBSD:*:*) UNAME_PROCESSOR=$(/usr/bin/uname -p) case "$UNAME_PROCESSOR" in amd64) UNAME_PROCESSOR=x86_64 ;; i386) UNAME_PROCESSOR=i586 ;; esac echo "$UNAME_PROCESSOR"-unknown-freebsd"$(echo "$UNAME_RELEASE"|sed -e 's/[-(].*//')" exit ;; i*:CYGWIN*:*) echo "$UNAME_MACHINE"-pc-cygwin exit ;; *:MINGW64*:*) echo "$UNAME_MACHINE"-pc-mingw64 exit ;; *:MINGW*:*) echo "$UNAME_MACHINE"-pc-mingw32 exit ;; *:MSYS*:*) echo "$UNAME_MACHINE"-pc-msys exit ;; i*:PW*:*) echo "$UNAME_MACHINE"-pc-pw32 exit ;; *:Interix*:*) case "$UNAME_MACHINE" in x86) echo i586-pc-interix"$UNAME_RELEASE" exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix"$UNAME_RELEASE" exit ;; IA64) echo ia64-unknown-interix"$UNAME_RELEASE" exit ;; esac ;; i*:UWIN*:*) echo "$UNAME_MACHINE"-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-pc-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2"$(echo "$UNAME_RELEASE"|sed -e 's/[^.]*//')" exit ;; *:GNU:*:*) # the GNU system echo "$(echo "$UNAME_MACHINE"|sed -e 's,[-/].*$,,')-unknown-$LIBC$(echo "$UNAME_RELEASE"|sed -e 's,/.*$,,')" exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo "$UNAME_MACHINE-unknown-$(echo "$UNAME_SYSTEM" | sed 's,^[^/]*/,,' | tr "[:upper:]" "[:lower:]")$(echo "$UNAME_RELEASE"|sed -e 's/[-(].*//')-$LIBC" exit ;; *:Minix:*:*) echo "$UNAME_MACHINE"-unknown-minix exit ;; aarch64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; aarch64_be:Linux:*:*) UNAME_MACHINE=aarch64_be echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; alpha:Linux:*:*) case $(sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' /proc/cpuinfo 2>/dev/null) in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC=gnulibc1 ; fi echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arc:Linux:*:* | arceb:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; arm*:Linux:*:*) set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" else if echo __ARM_PCS_VFP | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_PCS_VFP then echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabi else echo "$UNAME_MACHINE"-unknown-linux-"$LIBC"eabihf fi fi exit ;; avr32*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; cris:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; crisv32:Linux:*:*) echo "$UNAME_MACHINE"-axis-linux-"$LIBC" exit ;; e2k:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; frv:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; hexagon:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:Linux:*:*) echo "$UNAME_MACHINE"-pc-linux-"$LIBC" exit ;; ia64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; k1om:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; loongarch32:Linux:*:* | loongarch64:Linux:*:* | loongarchx32:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m32r*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; m68*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; mips:Linux:*:* | mips64:Linux:*:*) set_cc_for_build IS_GLIBC=0 test x"${LIBC}" = xgnu && IS_GLIBC=1 sed 's/^ //' << EOF > "$dummy.c" #undef CPU #undef mips #undef mipsel #undef mips64 #undef mips64el #if ${IS_GLIBC} && defined(_ABI64) LIBCABI=gnuabi64 #else #if ${IS_GLIBC} && defined(_ABIN32) LIBCABI=gnuabin32 #else LIBCABI=${LIBC} #endif #endif #if ${IS_GLIBC} && defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6 CPU=mipsisa64r6 #else #if ${IS_GLIBC} && !defined(__mips64) && defined(__mips_isa_rev) && __mips_isa_rev>=6 CPU=mipsisa32r6 #else #if defined(__mips64) CPU=mips64 #else CPU=mips #endif #endif #endif #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) MIPS_ENDIAN=el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) MIPS_ENDIAN= #else MIPS_ENDIAN= #endif #endif EOF eval "$($CC_FOR_BUILD -E "$dummy.c" 2>/dev/null | grep '^CPU\|^MIPS_ENDIAN\|^LIBCABI')" test "x$CPU" != x && { echo "$CPU${MIPS_ENDIAN}-unknown-linux-$LIBCABI"; exit; } ;; mips64el:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; openrisc*:Linux:*:*) echo or1k-unknown-linux-"$LIBC" exit ;; or32:Linux:*:* | or1k*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; padre:Linux:*:*) echo sparc-unknown-linux-"$LIBC" exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-"$LIBC" exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case $(grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2) in PA7*) echo hppa1.1-unknown-linux-"$LIBC" ;; PA8*) echo hppa2.0-unknown-linux-"$LIBC" ;; *) echo hppa-unknown-linux-"$LIBC" ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-"$LIBC" exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-"$LIBC" exit ;; ppc64le:Linux:*:*) echo powerpc64le-unknown-linux-"$LIBC" exit ;; ppcle:Linux:*:*) echo powerpcle-unknown-linux-"$LIBC" exit ;; riscv32:Linux:*:* | riscv32be:Linux:*:* | riscv64:Linux:*:* | riscv64be:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo "$UNAME_MACHINE"-ibm-linux-"$LIBC" exit ;; sh64*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sh*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; tile*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; vax:Linux:*:*) echo "$UNAME_MACHINE"-dec-linux-"$LIBC" exit ;; x86_64:Linux:*:*) set_cc_for_build LIBCABI=$LIBC if test "$CC_FOR_BUILD" != no_compiler_found; then if (echo '#ifdef __ILP32__'; echo IS_X32; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_X32 >/dev/null then LIBCABI="$LIBC"x32 fi fi echo "$UNAME_MACHINE"-pc-linux-"$LIBCABI" exit ;; xtensa*:Linux:*:*) echo "$UNAME_MACHINE"-unknown-linux-"$LIBC" exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo "$UNAME_MACHINE"-pc-sysv4.2uw"$UNAME_VERSION" exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo "$UNAME_MACHINE"-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo "$UNAME_MACHINE"-unknown-stop exit ;; i*86:atheos:*:*) echo "$UNAME_MACHINE"-unknown-atheos exit ;; i*86:syllable:*:*) echo "$UNAME_MACHINE"-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos"$UNAME_RELEASE" exit ;; i*86:*DOS:*:*) echo "$UNAME_MACHINE"-pc-msdosdjgpp exit ;; i*86:*:4.*:*) UNAME_REL=$(echo "$UNAME_RELEASE" | sed 's/\/MP$//') if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo "$UNAME_MACHINE"-univel-sysv"$UNAME_REL" else echo "$UNAME_MACHINE"-pc-sysv"$UNAME_REL" fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case $(/bin/uname -X | grep "^Machine") in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo "$UNAME_MACHINE-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION}" exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=$(sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=$( (/bin/uname -X|grep Release|sed -e 's/.*= //')) (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo "$UNAME_MACHINE"-pc-sco"$UNAME_REL" else echo "$UNAME_MACHINE"-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configure will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv"$UNAME_RELEASE" # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv"$UNAME_RELEASE" # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.$(sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.$(sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3"$OS_REL"; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos"$UNAME_RELEASE" exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos"$UNAME_RELEASE" exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos"$UNAME_RELEASE" exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos"$UNAME_RELEASE" exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv"$UNAME_RELEASE" exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=$( (uname -p) 2>/dev/null) echo "$UNAME_MACHINE"-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo "$UNAME_MACHINE"-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux"$UNAME_RELEASE" exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if test -d /usr/nec; then echo mips-nec-sysv"$UNAME_RELEASE" else echo mips-unknown-sysv"$UNAME_RELEASE" fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; x86_64:Haiku:*:*) echo x86_64-unknown-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux"$UNAME_RELEASE" exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux"$UNAME_RELEASE" exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux"$UNAME_RELEASE" exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux"$UNAME_RELEASE" exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux"$UNAME_RELEASE" exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux"$UNAME_RELEASE" exit ;; SX-ACE:SUPER-UX:*:*) echo sxace-nec-superux"$UNAME_RELEASE" exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody"$UNAME_RELEASE" exit ;; *:Rhapsody:*:*) echo "$UNAME_MACHINE"-apple-rhapsody"$UNAME_RELEASE" exit ;; arm64:Darwin:*:*) echo aarch64-apple-darwin"$UNAME_RELEASE" exit ;; *:Darwin:*:*) UNAME_PROCESSOR=$(uname -p) case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac if command -v xcode-select > /dev/null 2> /dev/null && \ ! xcode-select --print-path > /dev/null 2> /dev/null ; then # Avoid executing cc if there is no toolchain installed as # cc will be a stub that puts up a graphical alert # prompting the user to install developer tools. CC_FOR_BUILD=no_compiler_found else set_cc_for_build fi if test "$CC_FOR_BUILD" != no_compiler_found; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then case $UNAME_PROCESSOR in i386) UNAME_PROCESSOR=x86_64 ;; powerpc) UNAME_PROCESSOR=powerpc64 ;; esac fi # On 10.4-10.6 one might compile for PowerPC via gcc -arch ppc if (echo '#ifdef __POWERPC__'; echo IS_PPC; echo '#endif') | \ (CCOPTS="" $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_PPC >/dev/null then UNAME_PROCESSOR=powerpc fi elif test "$UNAME_PROCESSOR" = i386 ; then # uname -m returns i386 or x86_64 UNAME_PROCESSOR=$UNAME_MACHINE fi echo "$UNAME_PROCESSOR"-apple-darwin"$UNAME_RELEASE" exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=$(uname -p) if test "$UNAME_PROCESSOR" = x86; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo "$UNAME_PROCESSOR"-"$UNAME_MACHINE"-nto-qnx"$UNAME_RELEASE" exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NEO-*:NONSTOP_KERNEL:*:*) echo neo-tandem-nsk"$UNAME_RELEASE" exit ;; NSE-*:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk"$UNAME_RELEASE" exit ;; NSR-*:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk"$UNAME_RELEASE" exit ;; NSV-*:NONSTOP_KERNEL:*:*) echo nsv-tandem-nsk"$UNAME_RELEASE" exit ;; NSX-*:NONSTOP_KERNEL:*:*) echo nsx-tandem-nsk"$UNAME_RELEASE" exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo "$UNAME_MACHINE"-"$UNAME_SYSTEM"-"$UNAME_RELEASE" exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. # shellcheck disable=SC2154 if test "$cputype" = 386; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo "$UNAME_MACHINE"-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux"$UNAME_RELEASE" exit ;; *:DragonFly:*:*) echo "$UNAME_MACHINE"-unknown-dragonfly"$(echo "$UNAME_RELEASE"|sed -e 's/[-(].*//')" exit ;; *:*VMS:*:*) UNAME_MACHINE=$( (uname -p) 2>/dev/null) case "$UNAME_MACHINE" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo "$UNAME_MACHINE"-pc-skyos"$(echo "$UNAME_RELEASE" | sed -e 's/ .*$//')" exit ;; i*86:rdos:*:*) echo "$UNAME_MACHINE"-pc-rdos exit ;; *:AROS:*:*) echo "$UNAME_MACHINE"-unknown-aros exit ;; x86_64:VMkernel:*:*) echo "$UNAME_MACHINE"-unknown-esx exit ;; amd64:Isilon\ OneFS:*:*) echo x86_64-unknown-onefs exit ;; *:Unleashed:*:*) echo "$UNAME_MACHINE"-unknown-unleashed"$UNAME_RELEASE" exit ;; esac # No uname command or uname output not recognized. set_cc_for_build cat > "$dummy.c" < #include #endif #if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__) #if defined (vax) || defined (__vax) || defined (__vax__) || defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__) #include #if defined(_SIZE_T_) || defined(SIGLOST) #include #endif #endif #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=$( (hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null); if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) #if !defined (ultrix) #include #if defined (BSD) #if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); #else #if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); #else printf ("vax-dec-bsd\n"); exit (0); #endif #endif #else printf ("vax-dec-bsd\n"); exit (0); #endif #else #if defined(_SIZE_T_) || defined(SIGLOST) struct utsname un; uname (&un); printf ("vax-dec-ultrix%s\n", un.release); exit (0); #else printf ("vax-dec-ultrix\n"); exit (0); #endif #endif #endif #if defined(ultrix) || defined(_ultrix) || defined(__ultrix) || defined(__ultrix__) #if defined(mips) || defined(__mips) || defined(__mips__) || defined(MIPS) || defined(__MIPS__) #if defined(_SIZE_T_) || defined(SIGLOST) struct utsname *un; uname (&un); printf ("mips-dec-ultrix%s\n", un.release); exit (0); #else printf ("mips-dec-ultrix\n"); exit (0); #endif #endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o "$dummy" "$dummy.c" 2>/dev/null && SYSTEM_NAME=$($dummy) && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo "$ISP-apollo-$SYSTYPE"; exit; } echo "$0: unable to guess system type" >&2 case "$UNAME_MACHINE:$UNAME_SYSTEM" in mips:Linux | mips64:Linux) # If we got here on MIPS GNU/Linux, output extra information. cat >&2 <&2 <&2 </dev/null || echo unknown) uname -r = $( (uname -r) 2>/dev/null || echo unknown) uname -s = $( (uname -s) 2>/dev/null || echo unknown) uname -v = $( (uname -v) 2>/dev/null || echo unknown) /usr/bin/uname -p = $( (/usr/bin/uname -p) 2>/dev/null) /bin/uname -X = $( (/bin/uname -X) 2>/dev/null) hostinfo = $( (hostinfo) 2>/dev/null) /bin/universe = $( (/bin/universe) 2>/dev/null) /usr/bin/arch -k = $( (/usr/bin/arch -k) 2>/dev/null) /bin/arch = $( (/bin/arch) 2>/dev/null) /usr/bin/oslevel = $( (/usr/bin/oslevel) 2>/dev/null) /usr/convex/getsysinfo = $( (/usr/convex/getsysinfo) 2>/dev/null) UNAME_MACHINE = "$UNAME_MACHINE" UNAME_RELEASE = "$UNAME_RELEASE" UNAME_SYSTEM = "$UNAME_SYSTEM" UNAME_VERSION = "$UNAME_VERSION" EOF fi exit 1 # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: CCfits-2.7/config/install-sh0000755000225700000360000003471714764627567015340 0ustar cagordonlhea#!/bin/sh # install - install a program, script, or datafile scriptversion=2017-09-23.17; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dstbase=`basename "$src"` case $dst in */) dst=$dst$dstbase;; *) dst=$dst/$dstbase;; esac dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi case $dstdir in */) dstdirslash=$dstdir;; *) dstdirslash=$dstdir/;; esac obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=${dstdirslash}_inst.$$_ rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: CCfits-2.7/config/depcomp0000755000225700000360000005602014764627567014700 0ustar cagordonlhea#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2018-03-07.03; # UTC # Copyright (C) 1999-2020 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: CCfits-2.7/config/m4/0000755000225700000360000000000014764627567013640 5ustar cagordonlheaCCfits-2.7/config/m4/ax_cxx_compile_stdcxx_11.m40000644000225700000360000000321514764627567021003 0ustar cagordonlhea# ============================================================================= # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_11.html # ============================================================================= # # SYNOPSIS # # AX_CXX_COMPILE_STDCXX_11([ext|noext], [mandatory|optional]) # # DESCRIPTION # # Check for baseline language coverage in the compiler for the C++11 # standard; if necessary, add switches to CXX and CXXCPP to enable # support. # # This macro is a convenience alias for calling the AX_CXX_COMPILE_STDCXX # macro with the version set to C++11. The two optional arguments are # forwarded literally as the second and third argument respectively. # Please see the documentation for the AX_CXX_COMPILE_STDCXX macro for # more information. If you want to use this macro, you also need to # download the ax_cxx_compile_stdcxx.m4 file. # # LICENSE # # Copyright (c) 2008 Benjamin Kosnik # Copyright (c) 2012 Zack Weinberg # Copyright (c) 2013 Roy Stogner # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov # Copyright (c) 2015 Paul Norman # Copyright (c) 2015 Moritz Klammler # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 18 AX_REQUIRE_DEFINED([AX_CXX_COMPILE_STDCXX]) AC_DEFUN([AX_CXX_COMPILE_STDCXX_11], [AX_CXX_COMPILE_STDCXX([11], [$1], [$2])]) CCfits-2.7/config/m4/ax_cxx_compile_stdcxx.m40000644000225700000360000004655014764627567020513 0ustar cagordonlhea# =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx.html # =========================================================================== # # SYNOPSIS # # AX_CXX_COMPILE_STDCXX(VERSION, [ext|noext], [mandatory|optional]) # # DESCRIPTION # # Check for baseline language coverage in the compiler for the specified # version of the C++ standard. If necessary, add switches to CXX and # CXXCPP to enable support. VERSION may be '11' (for the C++11 standard) # or '14' (for the C++14 standard). # # The second argument, if specified, indicates whether you insist on an # extended mode (e.g. -std=gnu++11) or a strict conformance mode (e.g. # -std=c++11). If neither is specified, you get whatever works, with # preference for no added switch, and then for an extended mode. # # The third argument, if specified 'mandatory' or if left unspecified, # indicates that baseline support for the specified C++ standard is # required and that the macro should error out if no mode with that # support is found. If specified 'optional', then configuration proceeds # regardless, after defining HAVE_CXX${VERSION} if and only if a # supporting mode is found. # # LICENSE # # Copyright (c) 2008 Benjamin Kosnik # Copyright (c) 2012 Zack Weinberg # Copyright (c) 2013 Roy Stogner # Copyright (c) 2014, 2015 Google Inc.; contributed by Alexey Sokolov # Copyright (c) 2015 Paul Norman # Copyright (c) 2015 Moritz Klammler # Copyright (c) 2016, 2018 Krzesimir Nowak # Copyright (c) 2019 Enji Cooper # Copyright (c) 2020 Jason Merrill # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 12 dnl This macro is based on the code from the AX_CXX_COMPILE_STDCXX_11 macro dnl (serial version number 13). AC_DEFUN([AX_CXX_COMPILE_STDCXX], [dnl m4_if([$1], [11], [ax_cxx_compile_alternatives="11 0x"], [$1], [14], [ax_cxx_compile_alternatives="14 1y"], [$1], [17], [ax_cxx_compile_alternatives="17 1z"], [m4_fatal([invalid first argument `$1' to AX_CXX_COMPILE_STDCXX])])dnl m4_if([$2], [], [], [$2], [ext], [], [$2], [noext], [], [m4_fatal([invalid second argument `$2' to AX_CXX_COMPILE_STDCXX])])dnl m4_if([$3], [], [ax_cxx_compile_cxx$1_required=true], [$3], [mandatory], [ax_cxx_compile_cxx$1_required=true], [$3], [optional], [ax_cxx_compile_cxx$1_required=false], [m4_fatal([invalid third argument `$3' to AX_CXX_COMPILE_STDCXX])]) AC_LANG_PUSH([C++])dnl ac_success=no m4_if([$2], [], [dnl AC_CACHE_CHECK(whether $CXX supports C++$1 features by default, ax_cv_cxx_compile_cxx$1, [AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], [ax_cv_cxx_compile_cxx$1=yes], [ax_cv_cxx_compile_cxx$1=no])]) if test x$ax_cv_cxx_compile_cxx$1 = xyes; then ac_success=yes fi]) m4_if([$2], [noext], [], [dnl if test x$ac_success = xno; then for alternative in ${ax_cxx_compile_alternatives}; do switch="-std=gnu++${alternative}" cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, $cachevar, [ac_save_CXX="$CXX" CXX="$CXX $switch" AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], [eval $cachevar=yes], [eval $cachevar=no]) CXX="$ac_save_CXX"]) if eval test x\$$cachevar = xyes; then CXX="$CXX $switch" if test -n "$CXXCPP" ; then CXXCPP="$CXXCPP $switch" fi ac_success=yes break fi done fi]) m4_if([$2], [ext], [], [dnl if test x$ac_success = xno; then dnl HP's aCC needs +std=c++11 according to: dnl http://h21007.www2.hp.com/portal/download/files/unprot/aCxx/PDF_Release_Notes/769149-001.pdf dnl Cray's crayCC needs "-h std=c++11" for alternative in ${ax_cxx_compile_alternatives}; do for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do cachevar=AS_TR_SH([ax_cv_cxx_compile_cxx$1_$switch]) AC_CACHE_CHECK(whether $CXX supports C++$1 features with $switch, $cachevar, [ac_save_CXX="$CXX" CXX="$CXX $switch" AC_COMPILE_IFELSE([AC_LANG_SOURCE([_AX_CXX_COMPILE_STDCXX_testbody_$1])], [eval $cachevar=yes], [eval $cachevar=no]) CXX="$ac_save_CXX"]) if eval test x\$$cachevar = xyes; then CXX="$CXX $switch" if test -n "$CXXCPP" ; then CXXCPP="$CXXCPP $switch" fi ac_success=yes break fi done if test x$ac_success = xyes; then break fi done fi]) AC_LANG_POP([C++]) if test x$ax_cxx_compile_cxx$1_required = xtrue; then if test x$ac_success = xno; then AC_MSG_ERROR([*** A compiler with support for C++$1 language features is required.]) fi fi if test x$ac_success = xno; then HAVE_CXX$1=0 AC_MSG_NOTICE([No compiler with C++$1 support was found]) else HAVE_CXX$1=1 AC_DEFINE(HAVE_CXX$1,1, [define if the compiler supports basic C++$1 syntax]) fi AC_SUBST(HAVE_CXX$1) ]) dnl Test body for checking C++11 support m4_define([_AX_CXX_COMPILE_STDCXX_testbody_11], _AX_CXX_COMPILE_STDCXX_testbody_new_in_11 ) dnl Test body for checking C++14 support m4_define([_AX_CXX_COMPILE_STDCXX_testbody_14], _AX_CXX_COMPILE_STDCXX_testbody_new_in_11 _AX_CXX_COMPILE_STDCXX_testbody_new_in_14 ) m4_define([_AX_CXX_COMPILE_STDCXX_testbody_17], _AX_CXX_COMPILE_STDCXX_testbody_new_in_11 _AX_CXX_COMPILE_STDCXX_testbody_new_in_14 _AX_CXX_COMPILE_STDCXX_testbody_new_in_17 ) dnl Tests for new features in C++11 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_11], [[ // If the compiler admits that it is not ready for C++11, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201103L #error "This is not a C++11 compiler" #else namespace cxx11 { namespace test_static_assert { template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; } namespace test_final_override { struct Base { virtual ~Base() {} virtual void f() {} }; struct Derived : public Base { virtual ~Derived() override {} virtual void f() override {} }; } namespace test_double_right_angle_brackets { template < typename T > struct check {}; typedef check single_type; typedef check> double_type; typedef check>> triple_type; typedef check>>> quadruple_type; } namespace test_decltype { int f() { int a = 1; decltype(a) b = 2; return a + b; } } namespace test_type_deduction { template < typename T1, typename T2 > struct is_same { static const bool value = false; }; template < typename T > struct is_same { static const bool value = true; }; template < typename T1, typename T2 > auto add(T1 a1, T2 a2) -> decltype(a1 + a2) { return a1 + a2; } int test(const int c, volatile int v) { static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == false, ""); auto ac = c; auto av = v; auto sumi = ac + av + 'x'; auto sumf = ac + av + 1.0; static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == true, ""); return (sumf > 0.0) ? sumi : add(c, v); } } namespace test_noexcept { int f() { return 0; } int g() noexcept { return 0; } static_assert(noexcept(f()) == false, ""); static_assert(noexcept(g()) == true, ""); } namespace test_constexpr { template < typename CharT > unsigned long constexpr strlen_c_r(const CharT *const s, const unsigned long acc) noexcept { return *s ? strlen_c_r(s + 1, acc + 1) : acc; } template < typename CharT > unsigned long constexpr strlen_c(const CharT *const s) noexcept { return strlen_c_r(s, 0UL); } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("1") == 1UL, ""); static_assert(strlen_c("example") == 7UL, ""); static_assert(strlen_c("another\0example") == 7UL, ""); } namespace test_rvalue_references { template < int N > struct answer { static constexpr int value = N; }; answer<1> f(int&) { return answer<1>(); } answer<2> f(const int&) { return answer<2>(); } answer<3> f(int&&) { return answer<3>(); } void test() { int i = 0; const int c = 0; static_assert(decltype(f(i))::value == 1, ""); static_assert(decltype(f(c))::value == 2, ""); static_assert(decltype(f(0))::value == 3, ""); } } namespace test_uniform_initialization { struct test { static const int zero {}; static const int one {1}; }; static_assert(test::zero == 0, ""); static_assert(test::one == 1, ""); } namespace test_lambdas { void test1() { auto lambda1 = [](){}; auto lambda2 = lambda1; lambda1(); lambda2(); } int test2() { auto a = [](int i, int j){ return i + j; }(1, 2); auto b = []() -> int { return '0'; }(); auto c = [=](){ return a + b; }(); auto d = [&](){ return c; }(); auto e = [a, &b](int x) mutable { const auto identity = [](int y){ return y; }; for (auto i = 0; i < a; ++i) a += b--; return x + identity(a + b); }(0); return a + b + c + d + e; } int test3() { const auto nullary = [](){ return 0; }; const auto unary = [](int x){ return x; }; using nullary_t = decltype(nullary); using unary_t = decltype(unary); const auto higher1st = [](nullary_t f){ return f(); }; const auto higher2nd = [unary](nullary_t f1){ return [unary, f1](unary_t f2){ return f2(unary(f1())); }; }; return higher1st(nullary) + higher2nd(nullary)(unary); } } namespace test_variadic_templates { template struct sum; template struct sum { static constexpr auto value = N0 + sum::value; }; template <> struct sum<> { static constexpr auto value = 0; }; static_assert(sum<>::value == 0, ""); static_assert(sum<1>::value == 1, ""); static_assert(sum<23>::value == 23, ""); static_assert(sum<1, 2>::value == 3, ""); static_assert(sum<5, 5, 11>::value == 21, ""); static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); } // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function // because of this. namespace test_template_alias_sfinae { struct foo {}; template using member = typename T::member_type; template void func(...) {} template void func(member*) {} void test(); void test() { func(0); } } } // namespace cxx11 #endif // __cplusplus >= 201103L ]]) dnl Tests for new features in C++14 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_14], [[ // If the compiler admits that it is not ready for C++14, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201402L #error "This is not a C++14 compiler" #else namespace cxx14 { namespace test_polymorphic_lambdas { int test() { const auto lambda = [](auto&&... args){ const auto istiny = [](auto x){ return (sizeof(x) == 1UL) ? 1 : 0; }; const int aretiny[] = { istiny(args)... }; return aretiny[0]; }; return lambda(1, 1L, 1.0f, '1'); } } namespace test_binary_literals { constexpr auto ivii = 0b0000000000101010; static_assert(ivii == 42, "wrong value"); } namespace test_generalized_constexpr { template < typename CharT > constexpr unsigned long strlen_c(const CharT *const s) noexcept { auto length = 0UL; for (auto p = s; *p; ++p) ++length; return length; } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("x") == 1UL, ""); static_assert(strlen_c("test") == 4UL, ""); static_assert(strlen_c("another\0test") == 7UL, ""); } namespace test_lambda_init_capture { int test() { auto x = 0; const auto lambda1 = [a = x](int b){ return a + b; }; const auto lambda2 = [a = lambda1(x)](){ return a; }; return lambda2(); } } namespace test_digit_separators { constexpr auto ten_million = 100'000'000; static_assert(ten_million == 100000000, ""); } namespace test_return_type_deduction { auto f(int& x) { return x; } decltype(auto) g(int& x) { return x; } template < typename T1, typename T2 > struct is_same { static constexpr auto value = false; }; template < typename T > struct is_same { static constexpr auto value = true; }; int test() { auto x = 0; static_assert(is_same::value, ""); static_assert(is_same::value, ""); return x; } } } // namespace cxx14 #endif // __cplusplus >= 201402L ]]) dnl Tests for new features in C++17 m4_define([_AX_CXX_COMPILE_STDCXX_testbody_new_in_17], [[ // If the compiler admits that it is not ready for C++17, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201703L #error "This is not a C++17 compiler" #else #include #include #include namespace cxx17 { namespace test_constexpr_lambdas { constexpr int foo = [](){return 42;}(); } namespace test::nested_namespace::definitions { } namespace test_fold_expression { template int multiply(Args... args) { return (args * ... * 1); } template bool all(Args... args) { return (args && ...); } } namespace test_extended_static_assert { static_assert (true); } namespace test_auto_brace_init_list { auto foo = {5}; auto bar {5}; static_assert(std::is_same, decltype(foo)>::value); static_assert(std::is_same::value); } namespace test_typename_in_template_template_parameter { template typename X> struct D; } namespace test_fallthrough_nodiscard_maybe_unused_attributes { int f1() { return 42; } [[nodiscard]] int f2() { [[maybe_unused]] auto unused = f1(); switch (f1()) { case 17: f1(); [[fallthrough]]; case 42: f1(); } return f1(); } } namespace test_extended_aggregate_initialization { struct base1 { int b1, b2 = 42; }; struct base2 { base2() { b3 = 42; } int b3; }; struct derived : base1, base2 { int d; }; derived d1 {{1, 2}, {}, 4}; // full initialization derived d2 {{}, {}, 4}; // value-initialized bases } namespace test_general_range_based_for_loop { struct iter { int i; int& operator* () { return i; } const int& operator* () const { return i; } iter& operator++() { ++i; return *this; } }; struct sentinel { int i; }; bool operator== (const iter& i, const sentinel& s) { return i.i == s.i; } bool operator!= (const iter& i, const sentinel& s) { return !(i == s); } struct range { iter begin() const { return {0}; } sentinel end() const { return {5}; } }; void f() { range r {}; for (auto i : r) { [[maybe_unused]] auto v = i; } } } namespace test_lambda_capture_asterisk_this_by_value { struct t { int i; int foo() { return [*this]() { return i; }(); } }; } namespace test_enum_class_construction { enum class byte : unsigned char {}; byte foo {42}; } namespace test_constexpr_if { template int f () { if constexpr(cond) { return 13; } else { return 42; } } } namespace test_selection_statement_with_initializer { int f() { return 13; } int f2() { if (auto i = f(); i > 0) { return 3; } switch (auto i = f(); i + 4) { case 17: return 2; default: return 1; } } } namespace test_template_argument_deduction_for_class_templates { template struct pair { pair (T1 p1, T2 p2) : m1 {p1}, m2 {p2} {} T1 m1; T2 m2; }; void f() { [[maybe_unused]] auto p = pair{13, 42u}; } } namespace test_non_type_auto_template_parameters { template struct B {}; B<5> b1; B<'a'> b2; } namespace test_structured_bindings { int arr[2] = { 1, 2 }; std::pair pr = { 1, 2 }; auto f1() -> int(&)[2] { return arr; } auto f2() -> std::pair& { return pr; } struct S { int x1 : 2; volatile double y1; }; S f3() { return {}; } auto [ x1, y1 ] = f1(); auto& [ xr1, yr1 ] = f1(); auto [ x2, y2 ] = f2(); auto& [ xr2, yr2 ] = f2(); const auto [ x3, y3 ] = f3(); } namespace test_exception_spec_type_system { struct Good {}; struct Bad {}; void g1() noexcept; void g2(); template Bad f(T*, T*); template Good f(T1*, T2*); static_assert (std::is_same_v); } namespace test_inline_variables { template void f(T) {} template inline T g(T) { return T{}; } template<> inline void f<>(int) {} template<> int g<>(int) { return 5; } } } // namespace cxx17 #endif // __cplusplus < 201703L ]]) CCfits-2.7/config/m4/ax_cxx_compile_stdcxx_14.m40000644000225700000360000000251314764627567021006 0ustar cagordonlhea# ============================================================================= # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_14.html # ============================================================================= # # SYNOPSIS # # AX_CXX_COMPILE_STDCXX_14([ext|noext], [mandatory|optional]) # # DESCRIPTION # # Check for baseline language coverage in the compiler for the C++14 # standard; if necessary, add switches to CXX and CXXCPP to enable # support. # # This macro is a convenience alias for calling the AX_CXX_COMPILE_STDCXX # macro with the version set to C++14. The two optional arguments are # forwarded literally as the second and third argument respectively. # Please see the documentation for the AX_CXX_COMPILE_STDCXX macro for # more information. If you want to use this macro, you also need to # download the ax_cxx_compile_stdcxx.m4 file. # # LICENSE # # Copyright (c) 2015 Moritz Klammler # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 5 AX_REQUIRE_DEFINED([AX_CXX_COMPILE_STDCXX]) AC_DEFUN([AX_CXX_COMPILE_STDCXX_14], [AX_CXX_COMPILE_STDCXX([14], [$1], [$2])]) CCfits-2.7/config/m4/pfk_cxx_lib_path.m40000644000225700000360000000111414764627567017403 0ustar cagordonlheadnl @synopsis PFK_CXX_LIB_PATH dnl dnl Sets the output variable CXXLIB_PATH to the path of the Standard C++ dnl library used by the compiler. Basically if $CXX is found in say dnl `/usr/local/bin' then the assumtion is that its library is found in dnl `/usr/local/lib'. dnl dnl @version $Id$ dnl @author Paul_Kunz@slac.stanford.edu dnl AC_DEFUN([PFK_CXX_LIB_PATH], [ AC_PATH_PROG(pfk_cxx_lib_path, $CXX, $CXX ) AC_MSG_CHECKING(standard C++ library path) CXX_LIB_PATH=`dirname $pfk_cxx_lib_path | sed -e "s/bin/lib/"` AC_MSG_RESULT($CXX_LIB_PATH ) AC_SUBST(CXX_LIB_PATH)dnl ]) CCfits-2.7/config/m4/ax_cxx_namespaces.m40000644000225700000360000000257214764627567017601 0ustar cagordonlhea# =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_cxx_namespaces.html # =========================================================================== # # SYNOPSIS # # AX_CXX_NAMESPACES # # DESCRIPTION # # If the compiler can prevent names clashes using namespaces, define # HAVE_NAMESPACES. # # LICENSE # # Copyright (c) 2008 Todd Veldhuizen # Copyright (c) 2008 Luc Maisonobe # Copyright (c) 2013 Bastien Roucaries # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 9 AU_ALIAS([AC_CXX_NAMESPACES], [AX_CXX_NAMESPACES]) AC_DEFUN([AX_CXX_NAMESPACES], [AC_CACHE_CHECK(whether the compiler implements namespaces, ax_cv_cxx_namespaces, [AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_SOURCE([namespace Outer { namespace Inner { int i = 0; }} using namespace Outer::Inner; int foo(void) { return i;} ])], ax_cv_cxx_namespaces=yes, ax_cv_cxx_namespaces=no) AC_LANG_POP ]) if test "$ax_cv_cxx_namespaces" = yes; then AC_DEFINE(HAVE_NAMESPACES,,[define if the compiler implements namespaces]) fi ]) CCfits-2.7/config/m4/ax_cxx_compile_stdcxx_17.m40000644000225700000360000000260514764627567021013 0ustar cagordonlhea# ============================================================================= # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_17.html # ============================================================================= # # SYNOPSIS # # AX_CXX_COMPILE_STDCXX_17([ext|noext], [mandatory|optional]) # # DESCRIPTION # # Check for baseline language coverage in the compiler for the C++17 # standard; if necessary, add switches to CXX and CXXCPP to enable # support. # # This macro is a convenience alias for calling the AX_CXX_COMPILE_STDCXX # macro with the version set to C++17. The two optional arguments are # forwarded literally as the second and third argument respectively. # Please see the documentation for the AX_CXX_COMPILE_STDCXX macro for # more information. If you want to use this macro, you also need to # download the ax_cxx_compile_stdcxx.m4 file. # # LICENSE # # Copyright (c) 2015 Moritz Klammler # Copyright (c) 2016 Krzesimir Nowak # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 2 AX_REQUIRE_DEFINED([AX_CXX_COMPILE_STDCXX]) AC_DEFUN([AX_CXX_COMPILE_STDCXX_17], [AX_CXX_COMPILE_STDCXX([17], [$1], [$2])]) CCfits-2.7/config/m4/ax_cxx_compile_stdcxx_0x.m40000644000225700000360000000606414764627567021116 0ustar cagordonlhea# ============================================================================= # https://www.gnu.org/software/autoconf-archive/ax_cxx_compile_stdcxx_0x.html # ============================================================================= # # SYNOPSIS # # AX_CXX_COMPILE_STDCXX_0X # # DESCRIPTION # # Check for baseline language coverage in the compiler for the C++0x # standard. # # This macro is deprecated and has been superseded by the # AX_CXX_COMPILE_STDCXX_11 macro which should be used instead. # # LICENSE # # Copyright (c) 2008 Benjamin Kosnik # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 12 AU_ALIAS([AC_CXX_COMPILE_STDCXX_0X], [AX_CXX_COMPILE_STDCXX_0X]) AC_DEFUN([AX_CXX_COMPILE_STDCXX_0X], [ AC_OBSOLETE([$0], [; use AX_CXX_COMPILE_STDCXX_11 instead]) AC_CACHE_CHECK(if g++ supports C++0x features without additional flags, ax_cv_cxx_compile_cxx0x_native, [AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; typedef check> right_angle_brackets; int a; decltype(a) b; typedef check check_type; check_type c; check_type&& cr = static_cast(c);]], [])], [ax_cv_cxx_compile_cxx0x_native=yes], [ax_cv_cxx_compile_cxx0x_native=no]) AC_LANG_POP([C++]) ]) AC_CACHE_CHECK(if g++ supports C++0x features with -std=c++0x, ax_cv_cxx_compile_cxx0x_cxx, [AC_LANG_PUSH([C++]) ac_save_CXX="$CXX" CXX="$CXX -std=c++0x" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; typedef check> right_angle_brackets; int a; decltype(a) b; typedef check check_type; check_type c; check_type&& cr = static_cast(c);]], [])], [ax_cv_cxx_compile_cxx0x_cxx=yes], [ax_cv_cxx_compile_cxx0x_cxx=no]) CXX="$ac_save_CXX" AC_LANG_POP([C++]) ]) AC_CACHE_CHECK(if g++ supports C++0x features with -std=gnu++0x, ax_cv_cxx_compile_cxx0x_gxx, [AC_LANG_PUSH([C++]) ac_save_CXX="$CXX" CXX="$CXX -std=gnu++0x" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; typedef check> right_angle_brackets; int a; decltype(a) b; typedef check check_type; check_type c; check_type&& cr = static_cast(c);]], [])], [ax_cv_cxx_compile_cxx0x_gxx=yes], [ax_cv_cxx_compile_cxx0x_gxx=no]) CXX="$ac_save_CXX" AC_LANG_POP([C++]) ]) if test "$ax_cv_cxx_compile_cxx0x_native" = yes || test "$ax_cv_cxx_compile_cxx0x_cxx" = yes || test "$ax_cv_cxx_compile_cxx0x_gxx" = yes; then AC_DEFINE(HAVE_STDCXX_0X,,[Define if g++ supports C++0x features. ]) fi ]) CCfits-2.7/config/m4/ac_compile_warnings.m40000644000225700000360000000204714764627567020110 0ustar cagordonlheadnl @synopsis AC_COMPILE_WARNINGS dnl dnl Set the maximum warning verbosity according to compiler used. dnl Currently supports g++ and gcc. dnl This macro must be put after AC_PROG_CC and AC_PROG_CXX in dnl configure.in dnl dnl @version $Id$ dnl @author Loic Dachary modified by Ben Dorman (ben.dorman@gsfc.nasa.gov) to add verbose options for SunPro CC dnl AC_DEFUN([AC_COMPILE_WARNINGS], [AC_MSG_CHECKING(maximum warning verbosity option) if test -n "$CXX" then if test "$GXX" = "yes" then ac_compile_warnings_opt='-Wall' elif test "$CXX" = "CC" then ac_compile_warnings_opt='+w2' fi CXXFLAGS="$CXXFLAGS $ac_compile_warnings_opt" ac_compile_warnings_msg="$ac_compile_warnings_opt for C++" fi if test -n "$CC" then if test "$GCC" = "yes" then ac_compile_warnings_opt='-Wall' fi CFLAGS="$CFLAGS $ac_compile_warnings_opt" ac_compile_warnings_msg="$ac_compile_warnings_msg $ac_compile_warnings_opt for C" fi AC_MSG_RESULT($ac_compile_warnings_msg) unset ac_compile_warnings_msg unset ac_compile_warnings_opt ]) CCfits-2.7/config/m4/ac_check_package.m40000644000225700000360000000464514764627567017306 0ustar cagordonlheadnl @synopsis AC_CHECK_PACKAGE(PACKAGE, FUNCTION, LIBRARY, HEADERFILE [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]) dnl dnl Provides --with-PACKAGE, --with-PACKAGE-include and --with-PACKAGE-libdir dnl options to configure. Supports the now standard --with-PACKAGE=DIR dnl approach where the package's include dir and lib dir are underneath DIR, dnl but also allows the include and lib directories to be specified seperately dnl dnl adds the extra -Ipath to CPPFLAGS if needed dnl adds extra -Lpath and -Rpath to LD_FLAGS if needed dnl searches for the FUNCTION in the LIBRARY with dnl AC_CHECK_LIBRARY and thus adds the lib to LIBS dnl dnl defines HAVE_PKG_PACKAGE if it is found, (where PACKAGE in the dnl HAVE_PKG_PACKAGE is replaced with the actual first parameter passed) dnl note that autoheader will complain of not having the HAVE_PKG_PACKAGE and you dnl will have to add it to acconfig.h manually dnl dnl @version $Id$ dnl @author Paul_Kunz@slac.stanford.edu modified ac_caolan_check_package.m4 for all languages dnl AC_DEFUN([AC_CHECK_PACKAGE], [ AC_ARG_WITH($1, [ --with-$1[=DIR] root directory of $1 installation], with_$1=$withval if test "${with_$1}" != yes; then $1_include="$withval/include" $1_libdir="$withval/lib" fi, $1_include="/usr/local/cfitsio/include" $1_libdir="/usr/local/cfitsio/lib" ) AC_ARG_WITH($1-include, [ --with-$1-include=DIR specify exact include dir for $1 headers], $1_include="$withval") AC_ARG_WITH($1-libdir, [ --with-$1-libdir=DIR specify exact library dir for $1 library --without-$1 disables $1 usage completely], $1_libdir="$withval") if test "${with_$1}" != no ; then OLD_LIBS=$LIBS OLD_LDFLAGS=$LDFLAGS OLD_CPPFLAGS=$CPPFLAGS if test "${$1_libdir}" ; then LDFLAGS="$LDFLAGS -L${$1_libdir}" RDFLAGS="${$1_libdir}" fi if test "${$1_include}" ; then CPPFLAGS="$CPPFLAGS -I${$1_include}" fi AC_CHECK_LIB($3,$2,,no_good=yes) AC_CHECK_HEADER($4,,no_good=yes) if test "$no_good" = yes; then dnl broken ifelse([$6], , , [$6]) LIBS=$OLD_LIBS LDFLAGS=$OLD_LDFLAGS CPPFLAGS=$OLD_CPPFLAGS else dnl fixed ifelse([$5], , , [$5]) AC_DEFINE(HAVE_PKG_$1, 1, Define if you have the package ) AC_SUBST(RDFLAGS) fi fi ]) CCfits-2.7/config/m4/ax_cxx_have_valarray.m40000644000225700000360000000242114764627567020277 0ustar cagordonlhea# =========================================================================== # https://www.gnu.org/software/autoconf-archive/ax_cxx_have_valarray.html # =========================================================================== # # SYNOPSIS # # AX_CXX_HAVE_VALARRAY # # DESCRIPTION # # If the compiler has valarray, define HAVE_VALARRAY. # # LICENSE # # Copyright (c) 2008 Todd Veldhuizen # Copyright (c) 2008 Luc Maisonobe # # Copying and distribution of this file, with or without modification, are # permitted in any medium without royalty provided the copyright notice # and this notice are preserved. This file is offered as-is, without any # warranty. #serial 8 AU_ALIAS([AC_CXX_HAVE_VALARRAY], [AX_CXX_HAVE_VALARRAY]) AC_DEFUN([AX_CXX_HAVE_VALARRAY], [AC_CACHE_CHECK(whether the compiler has valarray, ax_cv_cxx_have_valarray, [AC_REQUIRE([AX_CXX_NAMESPACES]) AC_LANG_PUSH([C++]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include #ifdef HAVE_NAMESPACES using namespace std; #endif]], [[valarray x(100); return 0;]])], [ax_cv_cxx_have_valarray=yes], [ax_cv_cxx_have_valarray=no]) AC_LANG_POP([C++]) ]) if test "$ax_cv_cxx_have_valarray" = yes; then AC_DEFINE(HAVE_VALARRAY,,[define if the compiler has valarray]) fi ]) CCfits-2.7/HDUCreator.cxx0000644000225700000360000003522414764627567014545 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" //for truncation warning #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef SSTREAM_DEFECT #include #else #include #endif #include #include // HDU #include "HDU.h" // PHDU #include "PHDU.h" // ExtHDU #include "ExtHDU.h" // FitsError #include "FitsError.h" // ImageExt #include "ImageExt.h" // HDUCreator #include "HDUCreator.h" // PrimaryHDU #include "PrimaryHDU.h" // AsciiTable #include "AsciiTable.h" // BinTable #include "BinTable.h" // GroupTable #include "GroupTable.h" // FITS #include "FITS.h" namespace CCfits { char BSCALE[7] = {"BSCALE"}; char BZERO[6] = {"BZERO"}; // Class CCfits::HDUCreator HDUCreator::HDUCreator (FITS* p) : m_hdu(0), m_parent(p) { } HDUCreator::~HDUCreator() { } PHDU * HDUCreator::createImage (int bitpix, long naxis, const std::vector& naxes) { return MakeImage(bitpix,naxis,naxes); } PHDU * HDUCreator::MakeImage (int bpix, int naxis, const std::vector& naxes) { m_hdu = m_parent->m_pHDU; if (!m_hdu) { switch (bpix) { case BYTE_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); break; case SHORT_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); break; case LONG_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); break; case FLOAT_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); break; case DOUBLE_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); break; case USHORT_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); m_hdu->bitpix(SHORT_IMG); m_hdu->zeroInit(USBASE); break; case ULONG_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); m_hdu->bitpix(LONG_IMG); m_hdu->zeroInit(ULBASE); break; case LONGLONG_IMG: m_hdu = new PrimaryHDU(m_parent,bpix,naxis,naxes); break; default: throw HDU::InvalidImageDataType("FitsError: invalid data type for FITS I/O"); } } return static_cast(m_hdu); } HDU * HDUCreator::Make (const String& hduName, bool readDataFlag, const std::vector &keys, bool primary, int version) { int status = 0; bool isExtFound = true; int extNum = -1; // Are we dealing with a fake hduName ? bool isFake = hduName.find(ExtHDU::missHDU()) == 0 && hduName.length() > ExtHDU::missHDU().length(); if (isFake) { #ifdef SSTREAM_DEFECT std::istrstream extNumStr (hduName.substr(ExtHDU::missHDU().length().c_str())); #else std::istringstream extNumStr (hduName.substr(ExtHDU::missHDU().length())); #endif extNumStr >> extNum; if (fits_movabs_hdu(m_parent->fitsPointer(), extNum+1, 0, &status)) { isExtFound = false; } } else if ( !primary && fits_movnam_hdu(m_parent->fitsPointer(),ANY_HDU, const_cast(hduName.c_str()),version,&status) ) { isExtFound = false; } if (!isExtFound) { #ifdef SSTREAM_DEFECT std::ostrstream msg; #else std::ostringstream msg; #endif msg << "Cannot access HDU name "; if (isFake) { msg << "(No name) " << "Index no. " << extNum; } else { msg << hduName ; } if (version) msg << " version " << version; #ifdef SSTREAM_DEFECT msg << std::ends; #endif throw FITS::NoSuchHDU(msg.str()); } return commonMake(hduName, readDataFlag, keys, primary, version); } // end Make HDU* HDUCreator::commonMake(const String& hduName, bool readDataFlag, const std::vector &keys, bool primary, int version) { int status = 0; long imgType = 0; int htype = -1; if ( fits_get_hdu_type(m_parent->fitsPointer(),&htype,&status) ) throw FitsError(status); HduType xtype = HduType(htype); m_hdu = &(m_parent->pHDU()); switch(xtype) { case ImageHdu: { int tmpBpix=0; if (fits_get_img_type(m_parent->fitsPointer(), &tmpBpix, &status)) throw FitsError(status); imgType = static_cast(tmpBpix); double unsignedZero(0); double scale(1); // getScaling may change imgType from signed int to unsigned, // which does not have its own bitpix value, or to a float // type, which does have a unique bitpix value. To put this // another way, we must take care to not set m_hdu->bitpix() // to an unsigned value. getScaling(imgType,unsignedZero,scale); // ImageHDU types are templated switch (imgType) { case Ibyte: if (primary) { if (!m_hdu) m_hdu = new PrimaryHDU(m_parent,readDataFlag,keys); } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } break; case Ishort: if (primary) { if (!m_hdu) { m_hdu = new PrimaryHDU (m_parent,readDataFlag,keys); } } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } break; case Iushort: if (primary) { if (!m_hdu) { m_hdu = new PrimaryHDU (m_parent,readDataFlag,keys); } } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } imgType = Ishort; break; case Ilong: if (primary) { if (!m_hdu) { m_hdu = new PrimaryHDU (m_parent,readDataFlag,keys); } } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } break; case Iulong: if (primary) { if (!m_hdu) { m_hdu = new PrimaryHDU (m_parent,readDataFlag,keys); } } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } imgType = Ilong; break; case Ilonglong: if (primary) { if (!m_hdu) { m_hdu = new PrimaryHDU(m_parent,readDataFlag,keys); } } else { m_hdu = new ImageExt(m_parent,hduName,readDataFlag,keys,version); } break; case Ifloat: if (primary) { if (!m_hdu) m_hdu = new PrimaryHDU(m_parent,readDataFlag,keys); } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } break; case Idouble: if (primary) { if (!m_hdu) m_hdu = new PrimaryHDU(m_parent,readDataFlag,keys); } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } break; // dummy code to avoid SEGV in Solaris. This is supposed to trick the // compiler into instantiating PrimaryHDU, ImageExt // so that it doesn't throw a SEGV if the user tries to read integer data into an // integer array. But Tint is not actually an acceptable value for bitpix. case Tint: if (primary) { if (!m_hdu) { if (unsignedZero == ULBASE && scale == 1) { m_hdu = new PrimaryHDU (m_parent,readDataFlag,keys); } else { m_hdu = new PrimaryHDU (m_parent,readDataFlag,keys); } } } else { if (unsignedZero == ULBASE && scale == 1) { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } else { m_hdu = new ImageExt (m_parent,hduName,readDataFlag,keys,version); } } default: throw HDU::InvalidImageDataType(" invalid data type for FITS Image I/O"); } m_hdu->bitpix(imgType); if (unsignedZero != 0.0) { m_hdu->zeroInit(unsignedZero); } if (scale != 1.0) { m_hdu->scaleInit(scale); } } break; case AsciiTbl: m_hdu = new AsciiTable(m_parent, hduName, readDataFlag, keys, version); m_hdu->bitpix(8); break; case BinaryTbl: m_hdu = new BinTable(m_parent, hduName, readDataFlag, keys, version); m_hdu->bitpix(8); break; default: throw HDU::InvalidImageDataType("FitsError: invalid data type for FITS I/O"); } return m_hdu; } // end commonMake HDU* HDUCreator::MakeTable (const String &name, HduType xtype, int rows, const std::vector& colName, const std::vector& colFmt, const std::vector& colUnit, int version) { switch (xtype) { case AsciiTbl: m_hdu = new AsciiTable(m_parent,name,rows,colName,colFmt,colUnit,version); break; case BinaryTbl: m_hdu = new BinTable(m_parent,name,rows,colName,colFmt,colUnit,version); break; case GroupTbl: m_hdu = new GroupTable(m_parent,version,name); break; default: throw HDU::InvalidExtensionType("unexpected"); } return m_hdu; } HDU * HDUCreator::Make (int index, bool readDataFlag, const std::vector &keys) { bool primary = (index == 0); String hduName; int version = 0; if (!primary) ExtHDU::readHduName(m_parent->fitsPointer(),index,hduName,version ); return commonMake(hduName,readDataFlag,keys,primary,version); } ExtHDU * HDUCreator::createImage (const String &name, int bitpix, long naxis, const std::vector& naxes, int version) { return MakeImage(name,bitpix,naxis,naxes,version); } ExtHDU * HDUCreator::MakeImage (const String &name, int bpix, long naxis, const std::vector& naxes, int version) { ExtHDU* newImage = 0; switch (bpix) { case BYTE_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); break; case SHORT_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); break; case LONG_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); break; case FLOAT_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); break; case DOUBLE_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); break; case USHORT_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); newImage->bitpix(SHORT_IMG); newImage->zeroInit(USBASE); break; case ULONG_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); newImage->bitpix(LONG_IMG); newImage->zeroInit(ULBASE); break; case LONGLONG_IMG: newImage = new ImageExt(m_parent,name,bpix,naxis,naxes,version); break; default: throw HDU::InvalidImageDataType("FitsError: invalid data type for FITS I/O"); } return newImage; } void HDUCreator::getScaling (long& type, double& zero, double& scale) const { float tmpScale(1.); float zval (.0); int status (0); fits_read_key_flt(m_parent->fitsPointer(),BZERO,&zval,0,&status); if (status) zval = .0; status = 0; fits_read_key_flt(m_parent->fitsPointer(),BSCALE,&tmpScale,0,&status); if (status) tmpScale = 1.0; status = 0; zero = zval; scale = tmpScale; // if there is no effective scaling ... if (zero == 0.0 && scale == 1.0) { return; } else { int newType = 0; fits_get_img_equivtype(m_parent->fitsPointer(),&newType,&status); if (!status) type = newType; } } // Additional Declarations } // namespace CCfits CCfits-2.7/KeywordCreator.h0000644000225700000360000000505314764627567015173 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef KEYWORDCREATOR_H #define KEYWORDCREATOR_H 1 // KeyData #include "KeyData.h" // FitsError #include "FitsError.h" namespace CCfits { class HDU; } // namespace CCfits namespace CCfits { class KeywordCreator { public: KeywordCreator (HDU* p); virtual ~KeywordCreator(); virtual Keyword* MakeKeyword (const String& keyName, const String& comment = String(""), bool isLongStr = false) = 0; static Keyword* getKeyword (const String& keyName, HDU* p); // Additional Public Declarations virtual void reset (); virtual Keyword* createKeyword (const String& keyName, const String& comment = String(""), bool isLongStr = false); // This version of getKeyword is for reading a keyword // in with a specified type. static Keyword* getKeyword (const String& keyName, ValueType keyType, HDU* p); static Keyword* getKeyword (int keyNumber, HDU* p); // If calling function already has the keyword name, it can send it in as the // 3rd argument and the function will make use of it. Otherwise leave it // empty and the function will just extract the keyword name from the card. // This function does not take ownership of the memory allocated to card. static Keyword* getKeywordFromCard(char* card, HDU* p, const String& keyName=string("")); // Additional Public Declarations protected: HDU* forHDU (); // Additional Protected Declarations private: KeywordCreator(const KeywordCreator &right); KeywordCreator & operator=(const KeywordCreator &right); static Keyword* parseRecord (const String& name, const String& valueString, const String& comment, HDU* hdu, bool isLongStr = false); static bool isContinued (const String& value); static void getLongValueString (HDU* p, const String& keyName, String& value, String& comment); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes Keyword *m_keyword; // Data Members for Associations HDU* m_forHDU; // Additional Implementation Declarations }; // Class CCfits::KeywordCreator inline void KeywordCreator::reset () { m_keyword=0; } inline HDU* KeywordCreator::forHDU () { return m_forHDU; } } // namespace CCfits #endif CCfits-2.7/Image.h0000644000225700000360000005213414764627567013253 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef IMAGE_H #define IMAGE_H 1 // functional #include // valarray #include // vector #include // numeric #include #include #ifdef _MSC_VER #include "MSconfig.h" //form std::min #endif #include "CCfits.h" #include "FitsError.h" #include "FITSUtil.h" namespace CCfits { template class Image { public: Image(const Image< T > &right); Image (const std::valarray& imageArray = std::valarray()); ~Image(); Image< T > & operator=(const Image< T > &right); const std::valarray& readImage (fitsfile* fPtr, long first, long nElements, T* nullValue, const std::vector& naxes, bool& nulls); const std::valarray& readImage (fitsfile* fPtr, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, T* nullValue, const std::vector& naxes, bool& nulls); // If write operation causes an expansion of the image's outer-most dimension, newNaxisN will be set to the new value. Else it will be 0. void writeImage (fitsfile* fPtr, long first, long nElements, const std::valarray& inData, const std::vector& naxes, long& newNaxisN, T* nullValue = 0); void writeImage (fitsfile* fPtr, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& inData, const std::vector& naxes, long& newNaxisN); void writeImage (fitsfile* fPtr, const std::vector& firstVertex, const std::vector& lastVertex, const std::valarray& inData, const std::vector& naxes, long& newNaxisN); bool isRead () const; // This allows higher level classes to notify Image that a user-input // scaling value has changed. Image can then decide how this // should affect reading from cache vs. disk. void scalingHasChanged(); // Give the user (via higher level classes) a way to explicitly set the m_isRead flag // to false, thus providing a fail-safe override of reading from the cache. void resetRead(); const std::valarray< T >& image () const; // Additional Public Declarations protected: // Additional Protected Declarations private: std::valarray& image (); void prepareForSubset (const std::vector& naxes, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& inData, std::valarray& subset); void loop (size_t iDim, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, size_t iPos, const std::vector& incr, const std::valarray& inData, size_t& iDat, const std::vector& subIncr, std::valarray& subset, size_t iSub); bool isNullValChanged(T* newNull) const; void setLastNullInfo(T* newNull); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes // When m_isRead = true, assume m_fullImageCache contains the full image from the file. bool m_isRead; // Information regarding the usage of null values for the // most recent read operation. bool m_usingNullVal; T m_lastNullVal; // Data Members for Associations std::valarray< T > m_fullImageCache; std::valarray m_currentRead; // Additional Implementation Declarations }; // Parameterized Class CCfits::Image template inline bool Image::isRead () const { return m_isRead; } template inline const std::valarray< T >& Image::image () const { return m_fullImageCache; } // Parameterized Class CCfits::Image template Image::Image(const Image &right) : m_isRead(right.m_isRead), m_usingNullVal(right.m_usingNullVal), m_lastNullVal(right.m_lastNullVal), m_fullImageCache(right.m_fullImageCache), m_currentRead(right.m_currentRead) { } template Image::Image (const std::valarray& imageArray) : m_isRead(false), m_usingNullVal(false), m_lastNullVal(0), m_fullImageCache(imageArray), m_currentRead() { } template Image::~Image() { } template Image & Image::operator=(const Image &right) { // all stack allocated. m_isRead = right.m_isRead; m_usingNullVal = right.m_usingNullVal, m_lastNullVal = right.m_lastNullVal, m_fullImageCache.resize(right.m_fullImageCache.size()); m_fullImageCache = right.m_fullImageCache; m_currentRead.resize(right.m_currentRead.size()); m_currentRead = right.m_currentRead; return *this; } template const std::valarray& Image::readImage (fitsfile* fPtr, long first, long nElements, T* nullValue, const std::vector& naxes, bool& nulls) { if (!naxes.size()) { m_currentRead.resize(0); return m_currentRead; } unsigned long init(1); unsigned long nTotalElements(std::accumulate(naxes.begin(),naxes.end(),init, std::multiplies())); if (first <= 0) { string errMsg("*** CCfits Error: For image read, lowest allowed value for first element is 1.\n"); bool silent = false; throw FitsException(errMsg, silent); } // 0-based index for slice unsigned long start = (unsigned long)first - 1; if (start >= nTotalElements) { string errMsg("*** CCfits Error: For image read, starting element is out of range.\n"); bool silent = false; throw FitsException(errMsg, silent); } if (nElements < 0) { string errMsg("*** CCfits Error: Negative nElements value specified for image read.\n"); bool silent = false; throw FitsException(errMsg, silent); } const unsigned long elementsRequested = (unsigned long)nElements; int status(0); int any (0); FITSUtil::MatchType imageType; // truncate to valid array size if too much data asked for. unsigned long elementsToRead(std::min(elementsRequested, nTotalElements - start)); if ( elementsToRead < elementsRequested) { std::cerr << "***CCfits Warning: data request exceeds image size, truncating\n"; } const bool isFullRead = (elementsToRead == nTotalElements); const bool isDifferentNull = isNullValChanged(nullValue); if (!m_isRead || isDifferentNull) { // Must perform a read from disk. m_isRead = false; if (isFullRead) { m_fullImageCache.resize(elementsToRead); if (fits_read_img(fPtr,imageType(),first,elementsToRead, nullValue,&m_fullImageCache[0],&any,&status) != 0) throw FitsError(status); m_isRead = true; // For this case only, we'll pass m_fullImageCache back up (to be // copied into user-supplied array). This spares having to do // what may be a very large copy into m_currentRead. } else { m_fullImageCache.resize(0); m_currentRead.resize(elementsToRead); if (fits_read_img(fPtr,imageType(),first,elementsToRead, nullValue,&m_currentRead[0],&any,&status) != 0) throw FitsError(status); } nulls = (any != 0); setLastNullInfo(nullValue); } else { if (!isFullRead) { m_currentRead.resize((size_t)elementsToRead); // This may be a costly copy, though should still be faster // than disk read. m_currentRead = m_fullImageCache[std::slice((size_t)start, (size_t)elementsToRead,1)]; } } if (isFullRead) return m_fullImageCache; return m_currentRead; } template const std::valarray& Image::readImage (fitsfile* fPtr, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, T* nullValue, const std::vector& naxes, bool& nulls) { const size_t N = naxes.size(); if (!N) { m_currentRead.resize(0); return m_currentRead; } if (N != firstVertex.size() || N != lastVertex.size() || N != stride.size()) { string errMsg("*** CCfits Error: Image read function requires that naxes, firstVertex,"); errMsg += " \nlastVertex, and stride vectors all be the same size.\n"; bool silent = false; throw FitsException(errMsg, silent); } FITSUtil::CVarray carray; int any(0); int status(0); long requestedSize=1; long nTotalSize=1; for (size_t j = 0; j < N; ++j) { // Intentional truncation during division. requestedSize *= ((lastVertex[j] - firstVertex[j])/stride[j] + 1); nTotalSize *= naxes[j]; if (firstVertex[j] < 1 || lastVertex[j] > naxes[j]) { string errMsg("*** CCfits Error: Out-of-bounds vertex value.\n"); bool silent=false; throw FitsException(errMsg,silent); } if (firstVertex[j] > lastVertex[j]) { string errMsg("*** CCfits Error: firstVertex values must not be larger than corresponding lastVertex values.\n"); bool silent = false; throw FitsException(errMsg,silent); } } const bool isFullRead = (requestedSize == nTotalSize); const bool isDifferentNull = isNullValChanged(nullValue); if (!m_isRead || isDifferentNull) { // Must perform a read from disk. FITSUtil::auto_array_ptr pFpixel(carray(firstVertex)); FITSUtil::auto_array_ptr pLpixel(carray(lastVertex)); FITSUtil::auto_array_ptr pStride(carray(stride)); FITSUtil::MatchType imageType; m_isRead = false; if (isFullRead) { m_fullImageCache.resize(requestedSize); if (fits_read_subset(fPtr,imageType(), pFpixel.get(),pLpixel.get(), pStride.get(),nullValue,&m_fullImageCache[0],&any,&status) != 0) throw FitsError(status); m_isRead = true; } else { m_currentRead.resize(requestedSize); if (fits_read_subset(fPtr,imageType(), pFpixel.get(),pLpixel.get(), pStride.get(),nullValue,&m_currentRead[0],&any,&status) != 0) throw FitsError(status); } nulls = (any != 0); setLastNullInfo(nullValue); } else { if (!isFullRead) { // Must convert firstVertex,lastVertex,stride to gslice parameters. // Note that in cfitsio, the NAXIS1 dimension varies the fastest // when laid out in an array in memory (ie. Fortran style). Therefore NAXISn // ordering must be reversed to C style before passing to gslice. size_t startPos=0; std::valarray gsliceLength(size_t(0),N); std::valarray gsliceStride(size_t(0),N); std::vector naxesProducts(N); long accum=1; for (size_t i=0; i((firstVertex[i]-1)*naxesProducts[i]); // Here's where we reverse the order: const size_t gsPos = N-1-i; // Division truncation is intentional. gsliceLength[gsPos] = static_cast((1 + (lastVertex[i]-firstVertex[i])/stride[i])); gsliceStride[gsPos] = static_cast(stride[i]*naxesProducts[i]); } m_currentRead.resize(requestedSize); m_currentRead = m_fullImageCache[std::gslice(startPos, gsliceLength, gsliceStride)]; } } if (isFullRead) return m_fullImageCache; return m_currentRead; } template void Image::writeImage (fitsfile* fPtr, long first, long nElements, const std::valarray& inData, const std::vector& naxes, long& newNaxisN, T* nullValue) { int status(0); if (first < 1 || nElements < 1) { string errMsg("*** CCfits Error: first and nElements values must be > 0\n"); bool silent = false; throw FitsException(errMsg, silent); } FITSUtil::CAarray convert; FITSUtil::auto_array_ptr pArray(convert(inData)); T* array = pArray.get(); m_isRead = false; newNaxisN = 0; FITSUtil::MatchType imageType; long type(imageType()); if (fits_write_imgnull(fPtr,type,first,nElements,array, nullValue,&status)!= 0) { throw FitsError(status); } const size_t nDim=naxes.size(); long origTotSize=1; for (size_t i=0; i origTotSize) { // NAXIS(nDIM) may have increased. std::ostringstream oss; oss <<"NAXIS" << nDim; string keyname(oss.str()); long newVal = 1 + (highestOutputElem-1)/(origTotSize/naxes[nDim-1]); if (newVal != naxes[nDim-1]) { if (fits_update_key(fPtr,TLONG,(char *)keyname.c_str(),&newVal,0,&status) != 0) { throw FitsError(status); } newNaxisN = newVal; } } if (fits_flush_file(fPtr,&status) != 0) throw FitsError(status); } template void Image::writeImage (fitsfile* fPtr, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& inData, const std::vector& naxes, long& newNaxisN) { // input vectors' size equality will be verified in prepareForSubset. const size_t nDim = naxes.size(); FITSUtil::auto_array_ptr pFPixel(new long[nDim]); FITSUtil::auto_array_ptr pLPixel(new long[nDim]); std::valarray subset; m_isRead = false; newNaxisN = 0; prepareForSubset(naxes,firstVertex,lastVertex,stride,inData,subset); long* fPixel = pFPixel.get(); long* lPixel = pLPixel.get(); for (size_t i=0; i convert; FITSUtil::auto_array_ptr pArray(convert(subset)); T* array = pArray.get(); FITSUtil::MatchType imageType; int status(0); if ( fits_write_subset(fPtr,imageType(),fPixel,lPixel,array,&status) ) throw FitsError(status); if (lPixel[nDim-1] > naxes[nDim-1]) { std::ostringstream oss; oss << "NAXIS" << nDim; string keyname(oss.str()); long newVal = lPixel[nDim-1]; if (fits_update_key(fPtr,TLONG,(char *)keyname.c_str(),&newVal,0,&status) != 0) { throw FitsError(status); } newNaxisN = lPixel[nDim-1]; } if (fits_flush_file(fPtr,&status) != 0) throw FitsError(status); } template std::valarray& Image::image () { return m_fullImageCache; } template void Image::prepareForSubset (const std::vector& naxes, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& inData, std::valarray& subset) { // naxes, firstVertex, lastVertex, and stride must all be the same size. const size_t N = naxes.size(); if (N != firstVertex.size() || N != lastVertex.size() || N != stride.size()) { string errMsg("*** CCfits Error: Image write function requires that naxes, firstVertex,"); errMsg += " \nlastVertex, and stride vectors all be the same size.\n"; bool silent = false; throw FitsException(errMsg, silent); } for (size_t i=0; i naxes[i] && i != N-1)) { bool silent = false; rangeErrMsg += "firstVertex\n"; throw FitsException(rangeErrMsg, silent); } if (lastVertex[i] < firstVertex[i] || (lastVertex[i] > naxes[i] && i != N-1)) { bool silent = false; rangeErrMsg += "lastVertex\n"; throw FitsException(rangeErrMsg, silent); } if (stride[i] < 1) { bool silent = false; rangeErrMsg += "stride\n"; throw FitsException(rangeErrMsg, silent); } } // nPoints refers to the subset of the image INCLUDING the zero'ed elements // resulting from the stride parameter. // subSizeWithStride refers to the same subset, not counting the zeros. size_t subSizeWithStride = 1; size_t nPoints = 1; std::vector subIncr(N); for (size_t i=0; i(1+lastVertex[i]-firstVertex[i]); subSizeWithStride *= static_cast(1+(lastVertex[i]-firstVertex[i])/stride[i]); } subset.resize(nPoints, 0); if (subSizeWithStride != inData.size()) { bool silent = false; string errMsg("*** CCfits Error: Data array size is not consistent with the values"); errMsg += "\n in range and stride vectors sent to the image write function.\n"; throw FitsException(errMsg, silent); } size_t startPoint = 0; size_t dimMult = 1; std::vector incr(N); for (size_t j = 0; j < N; ++j) { startPoint += dimMult*(firstVertex[j]-1); incr[j] = dimMult; dimMult *= static_cast(naxes[j]); } size_t inDataPos = 0; size_t iSub = 0; loop(N-1, firstVertex, lastVertex, stride, startPoint, incr, inData, inDataPos, subIncr, subset, iSub); } template void Image::loop (size_t iDim, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, size_t iPos, const std::vector& incr, const std::valarray& inData, size_t& iDat, const std::vector& subIncr, std::valarray& subset, size_t iSub) { size_t start = static_cast(firstVertex[iDim]); size_t stop = static_cast(lastVertex[iDim]); size_t skip = static_cast(stride[iDim]); if (iDim == 0) { size_t length = stop - start + 1; for (size_t i=0; i bool Image::isNullValChanged(T* newNull) const { bool isChanged = false; if (m_usingNullVal) { // If m_usingNullVal is true, we can assume m_lastNullVal != 0. if (newNull) { T newVal = *newNull; if (newVal != m_lastNullVal) isChanged = true; } else isChanged = true; } else { if (newNull && (*newNull != 0)) isChanged = true; } return isChanged; } template void Image::setLastNullInfo(T* newNull) { if (!newNull || *newNull == 0) { m_usingNullVal = false; m_lastNullVal = 0; } else { m_usingNullVal = true; m_lastNullVal = *newNull; } } template void Image::writeImage (fitsfile* fPtr, const std::vector& firstVertex, const std::vector& lastVertex, const std::valarray& inData, const std::vector& naxes, long& newNaxisN) { std::vector stride(firstVertex.size(), 1); writeImage(fPtr, firstVertex, lastVertex, stride, inData, naxes, newNaxisN); } template void Image::scalingHasChanged() { m_isRead = false; } template void Image::resetRead() { m_isRead = false; } // Additional Declarations } // namespace CCfits #endif CCfits-2.7/FindCFITSIO.cmake0000644000225700000360000000132114764627567014753 0ustar cagordonlhea# Find the CFITSIO library # # This module defines these variables: # # CFITSIO_FOUND # True if the CFITSIO library was found. # CFITSIO_LIBRARY # The location of the CFITSIO library. # CFITSIO_INCLUDE_DIR # The include path of the CFITSIO library. # # Find the header file # FIND_PATH(CFITSIO_INCLUDE_DIR fitsio.h) # # Find the library # FIND_LIBRARY(CFITSIO_LIBRARY cfitsio) SET(CFITSIO_FOUND false) IF(CFITSIO_INCLUDE_DIR AND CFITSIO_LIBRARY) SET(CFITSIO_FOUND true) ENDIF(CFITSIO_INCLUDE_DIR AND CFITSIO_LIBRARY) IF(CFITSIO_FOUND) MESSAGE(STATUS "Found CFITSIO: ${CFITSIO_LIBRARY}") ELSE(CFITSIO_FOUND) MESSAGE(FATAL_ERROR "Could not find the CFITSIO library") ENDIF(CFITSIO_FOUND) CCfits-2.7/aclocal.m40000644000225700000360000132703614764627567013727 0ustar cagordonlhea# generated automatically by aclocal 1.16.3 -*- Autoconf -*- # Copyright (C) 1996-2020 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])]) m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.71],, [m4_warning([this file was generated for autoconf 2.71. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically 'autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2015 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ]) # serial 58 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_PREPARE_CC_BASENAME # ----------------------- m4_defun([_LT_PREPARE_CC_BASENAME], [ # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in @S|@*""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } ])# _LT_PREPARE_CC_BASENAME # _LT_CC_BASENAME(CC) # ------------------- # It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, # but that macro is also expanded into generated libtool script, which # arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], [m4_require([_LT_PREPARE_CC_BASENAME])dnl AC_REQUIRE([_LT_DECL_SED])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl func_cc_basename $1 cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the 'libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to 'config.status' so that its # declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags='_LT_TAGS'dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into 'config.status', and then the shell code to quote escape them in # for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2011 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE _LT_PREPARE_MUNGE_PATH_LIST _LT_PREPARE_CC_BASENAME # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) case ${MACOSX_DEPLOYMENT_TARGET},$host in 10.[[012]],*|,*powerpc*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; *) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes != "$lt_cv_apple_cc_single_mod"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} : ${AR_FLAGS=cru} _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n "$lt_cv_sys_max_cmd_len"; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[ lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen=shl_load], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen=dlopen], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test no = "$hard_links"; then AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_PREPARE_MUNGE_PATH_LIST # --------------------------- # Make sure func_munge_path_list() is defined correctly. m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], [[# func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x@S|@2 in x) ;; *:) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" ;; x:*) eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; *::*) eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" ;; *) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; esac } ]])# _LT_PREPARE_PATH_LIST # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /Users/birby/homebrew/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown AC_ARG_VAR([LT_SYS_LIBRARY_PATH], [User-defined run-time library search path.]) case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /Users/birby/homebrew/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /Users/birby/homebrew/lib"]) sys_lib_dlsearch_path_spec='/Users/birby/homebrew/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[23]].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /Users/birby/homebrew/lib/hpux32 /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /Users/birby/homebrew/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /Users/birby/homebrew/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /Users/birby/homebrew/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/Users/birby/homebrew/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], [Detected run-time system search path for libraries]) _LT_DECL([], [configure_time_lt_sys_library_path], [2], [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$1"; then lt_cv_path_MAGIC_CMD=$ac_dir/"$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac]) MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[[4-9]]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[[45]]*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool], [lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw) AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM=-lm) ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1,DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags']) ;; esac fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC=$CC AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report what library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=yes ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code=$lt_simple_compile_test_code # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f "$lt_ac_sed" && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test 10 -lt "$lt_ac_count" && break lt_ac_count=`expr $lt_ac_count + 1` if test "$lt_ac_count" -gt "$lt_ac_max"; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS # Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004-2005, 2007-2009, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 8 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option '$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the 'shared' and # 'disable-shared' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --with-aix-soname flag, and support the `aix-soname=aix' # and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT # is either `aix', `both' or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_WITH([aix-soname], [AS_HELP_STRING([--with-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT) with_aix_soname=$lt_cv_with_aix_soname]) AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2015 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) # ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004, 2011-2015 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # @configure_input@ # serial 4179 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.6]) m4_define([LT_PACKAGE_REVISION], [2.4.6]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6' macro_revision='2.4.6' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2015 Free Software # Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) # Copyright (C) 2002-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.16' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.16.3], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.16.3])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to '$srcdir/foo'. In other projects, it is set to # '$srcdir', '$srcdir/..', or '$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is '.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl m4_if([$1], [CC], [depcc="$CC" am_compiler_list=], [$1], [CXX], [depcc="$CXX" am_compiler_list=], [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'], [$1], [UPC], [depcc="$UPC" am_compiler_list=], [$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES. AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl AS_HELP_STRING( [--enable-dependency-tracking], [do not reject slow dependency extractors]) AS_HELP_STRING( [--disable-dependency-tracking], [speeds up one-time build])]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl AC_SUBST([am__nodep])dnl _AM_SUBST_NOTMAKE([am__nodep])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. AS_CASE([$CONFIG_FILES], [*\'*], [eval set x "$CONFIG_FILES"], [*], [set x $CONFIG_FILES]) shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`AS_DIRNAME(["$am_mf"])` am_filepart=`AS_BASENAME(["$am_mf"])` AM_RUN_LOG([cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles]) || am_rc=$? done if test $am_rc -ne 0; then AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments for automatic dependency tracking. If GNU make was not used, consider re-running the configure script with MAKE="gmake" (or whatever is necessary). You can also try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking).]) fi AS_UNSET([am_dirpart]) AS_UNSET([am_filepart]) AS_UNSET([am_mf]) AS_UNSET([am_rc]) rm -f conftest-deps.mk } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking is enabled. # This creates each '.Po' and '.Plo' makefile fragment that we'll need in # order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O. m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC]) [_AM_PROG_CC_C_O ]) # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [AC_DIAGNOSE([obsolete], [$0: two- and three-arguments forms are deprecated.]) m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if( m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]), [ok:ok],, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package]) AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}]) AM_MISSING_PROG([AUTOCONF], [autoconf]) AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}]) AM_MISSING_PROG([AUTOHEADER], [autoheader]) AM_MISSING_PROG([MAKEINFO], [makeinfo]) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # AC_SUBST([mkdir_p], ['$(MKDIR_P)']) # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES([CC])], [m4_define([AC_PROG_CC], m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES([CXX])], [m4_define([AC_PROG_CXX], m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES([OBJC])], [m4_define([AC_PROG_OBJC], m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJCXX], [_AM_DEPENDENCIES([OBJCXX])], [m4_define([AC_PROG_OBJCXX], m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl ]) AC_REQUIRE([AM_SILENT_RULES])dnl dnl The testsuite driver may need to know about EXEEXT, so add the dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END AC_MSG_ERROR([Your 'rm' program is bad, sorry.]) fi fi dnl The trailing newline in this macro's definition is deliberate, for dnl backward compatibility and to allow trailing 'dnl'-style comments dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841. ]) dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST([install_sh])]) # Copyright (C) 2003-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MAKE_INCLUDE() # ----------------- # Check whether make has an 'include' directive that can support all # the idioms we need for our automatic dependency tracking code. AC_DEFUN([AM_MAKE_INCLUDE], [AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive]) cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out]) AS_CASE([$?:`cat confinc.out 2>/dev/null`], ['0:this is the am__doit target'], [AS_CASE([$s], [BSD], [am__include='.include' am__quote='"'], [am__include='include' am__quote=''])]) if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* AC_MSG_RESULT([${_am_result}]) AC_SUBST([am__include])]) AC_SUBST([am__quote])]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it is modern enough. # If it is, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= AC_MSG_WARN(['missing' script is too old or missing]) fi ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # -------------------- # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])]) # _AM_SET_OPTIONS(OPTIONS) # ------------------------ # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Copyright (C) 1999-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_CC_C_O # --------------- # Like AC_PROG_CC_C_O, but changed for automake. We rewrite AC_PROG_CC # to automatically call this. AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([compile])dnl AC_LANG_PUSH([C])dnl AC_CACHE_CHECK( [whether $CC understands -c and -o together], [am_cv_prog_cc_c_o], [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])]) # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i]) if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi AC_LANG_POP([C])]) # For backward compatibility. AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])]) # Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_RUN_LOG(COMMAND) # ------------------- # Run COMMAND, save the exit status in ac_status, and log it. # (This has been adapted from Autoconf's _AC_RUN_LOG macro.) AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD (exit $ac_status); }]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi if test "$[2]" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT([yes]) # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi AC_CONFIG_COMMANDS_PRE( [AC_MSG_CHECKING([that generated files are newer than configure]) if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi AC_MSG_RESULT([done])]) rm -f conftest.file ]) # Copyright (C) 2009-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_SILENT_RULES([DEFAULT]) # -------------------------- # Enable less verbose build rules; with the default set to DEFAULT # ("yes" being less verbose, "no" or empty being verbose). AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl AS_HELP_STRING( [--enable-silent-rules], [less verbose build output (undo: "make V=1")]) AS_HELP_STRING( [--disable-silent-rules], [verbose build output (undo: "make V=0")])dnl ]) case $enable_silent_rules in @%:@ ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);; esac dnl dnl A few 'make' implementations (e.g., NonStop OS and NextStep) dnl do not support nested variable expansions. dnl See automake bug#9928 and bug#10237. am_make=${MAKE-make} AC_CACHE_CHECK([whether $am_make supports nested variables], [am_cv_make_support_nested_variables], [if AS_ECHO([['TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi]) if test $am_cv_make_support_nested_variables = yes; then dnl Using '$V' instead of '$(V)' breaks IRIX make. AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AC_SUBST([AM_V])dnl AM_SUBST_NOTMAKE([AM_V])dnl AC_SUBST([AM_DEFAULT_V])dnl AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl AC_SUBST([AM_DEFAULT_VERBOSITY])dnl AM_BACKSLASH='\' AC_SUBST([AM_BACKSLASH])dnl _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl ]) # Copyright (C) 2001-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor 'install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in "make install-strip", and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be 'maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # -------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004-2020 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of 'v7', 'ustar', or 'pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar # AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AC_SUBST([AMTAR], ['$${TAR-tar}']) # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' m4_if([$1], [v7], [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'], [m4_case([$1], [ustar], [# The POSIX 1988 'ustar' format is defined with fixed-size fields. # There is notably a 21 bits limit for the UID and the GID. In fact, # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343 # and bug#13588). am_max_uid=2097151 # 2^21 - 1 am_max_gid=$am_max_uid # The $UID and $GID variables are not portable, so we need to resort # to the POSIX-mandated id(1) utility. Errors in the 'id' calls # below are definitely unexpected, so allow the users to see them # (that is, avoid stderr redirection). am_uid=`id -u || echo unknown` am_gid=`id -g || echo unknown` AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format]) if test $am_uid -le $am_max_uid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format]) if test $am_gid -le $am_max_gid; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) _am_tools=none fi], [pax], [], [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_$1-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([config/m4/ac_check_package.m4]) m4_include([config/m4/ac_compile_warnings.m4]) m4_include([config/m4/ax_cxx_compile_stdcxx.m4]) m4_include([config/m4/ax_cxx_have_valarray.m4]) m4_include([config/m4/ax_cxx_namespaces.m4]) m4_include([config/m4/pfk_cxx_lib_path.m4]) CCfits-2.7/README.INSTALL0000644000225700000360000001646714764627567014056 0ustar cagordonlheaTo build and install CCfits from source code on a UNIX-like (e.g. UNIX, Linux, or Cygwin) platform, take the following steps. For building on a Microsoft Windows platform with Visual Developer Studio, see below. =============================================================================== Instructions for Building CCfits on UNIX-like platforms: =============================================================================== 1. Configure The configure script will create the Makefile with the path to the compiler you choose (or GCC by default), and the path to the CFITSIO package. To see all options available with configure, type > ./configure --help 1.a. Compiler Choice By default, the GCC compiler and linker will be used. If you want to compile and link with a different compiler and linker, you can set some environment variables before running the configure script. For example, to use a specific Macports C++ compiler, do the following: > setenv CXX /opt/local/bin/g++-mp-10 (csh syntax) or > export CXX=/opt/local/bin/g++-mp-10 (bash syntax) See also the compiler tips for installing HEASoft: https://heasarc.gsfc.nasa.gov/docs/software/lheasoft/ 1.b. CFITSIO Location CCfits requires that the CFITSIO package is available on your system. See http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html for more information. The configure script that you will run takes an option to specify the location of the CFITSIO package. If the CFITSIO package is installed in a directory consisting of a 'lib' subdirectory containing "libcfitsio.a" or "libcfitsio.so" and an 'include' subdirectory containing "fitsio.h", then you can run the configure script with a single option. For example, if the cfitsio package is installed in this fashion in /usr/local/cfitsio/, then the configure script option will be --with-cfitsio=/usr/local/cfitsio If the CFITSIO package is not installed in the above manner, then you need to run the configure script with two options: one to specify the include directory and the other to specify the library directory. For example, if the cfitsio package was built in /home/user/cfitsio/ then the two options will be --with-cfitsio-include=/home/user/cfitsio --with-cfitsio-libdir=/home/user/cfitsio For users of HEASoft (instead of stand-alone CFITSIO): You can configure CCfits, after initializing HEASoft, using --with-cfitsio=$HEADAS 1.c. Build Location You have the option of carrying out the build in a separate directory from the source directory or in the same directory as the source. In either case, you need to run the configure script in the directory where the build will occur. For example, if building in the source directory, with the cfitsio directory in /usr/local/cfitsio/, then the configure command should be issued like this: > ./configure --with-cfitsio=/usr/local/cfitsio If you do the build in a separate directory from the source, you may need to issue the configure command something like this: > ../CCfits/configure --with-cfitsio=/usr/local/cfitsio 1.d. Install Location If you would like to install the CCfits files in a separate location, you can do that during the "make install" command (DESTDIR, described below), or you can specify the location during configure. For example, if you would like the CCfits files installed in /usr/local/CCfits, you would run the configure command like this: > ./configure --prefix=/usr/local/CCfits 2. Build Building the C++ shared library will be done automatically by running make (or gmake if you prefer the GNU make) without arguments like this: > gmake 3. Install To install, type: > make install The default install location will be /usr/local/lib for the library and /usr/local/include for the header files. If you do not have permission to write to these locations, you will need to specify another install location. You can change this with the --prefix option when you configure, or with the DESTDIR variable when installing. The DESTDIR option will create a /usr/local/ path in that specified location. Note that you will also need to update your LD_LIBRARY_PATH: > export LD_LIBRARY_PATH="/usr/local/CCfits/usr/local/lib/:$LD_LIBRARY_PATH" > make DESTDIR=/usr/local/CCfits install =============================================================================== Instructions for Microsft Windows build: =============================================================================== These instructions follow similar steps to the building of the CFITSIO library on Windows, described at http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/README.win and rely having the following already installed on your system: a) Microsoft Visual Studio b) The CMake build system available from http://www.cmake.org c) The CFITSIO library available from http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html 1. After unzipping and untarring the CCfits source code tarball, the source code will appear in a new \CCfits subdirectory. 2. Open the Visual Studio Developer Command Prompt window and create a directory named "CCfits.build" parallel to this CCfits source code directory. mkdir CCfits.build cd CCfits.build This will be the directory from which CMake generate its files and performs the build. 3. Decide which CMake generator you will want to use. The full list is shown by doing cmake.exe /? We've done successful builds using Visual Studio's 'nmake' utility, and so recommend choosing "NMake Makefiles" as the generator option. However if you wish to perform the build inside a Visual Studio IDE, you should choose the appropriate "Visual Studio " generator. 4. Now run cmake.exe to generate the necessary Makefiles. With this command you must specify the path to your CFITSIO library and header files by setting the '-DCMAKE_PREFIX_PATH' option. This path should be set to the root directory of your CFITSIO installation, from which it will look in \lib and \include subdirectories for the library and header files respectively. Your full cmake command may then look like: CCfits.build>cmake.exe -G"NMake Makefiles" -DCMAKE_PREFIX_PATH=C:\path\to\your\CFITSIO ..\CCfits If you wish to eventually install CCfits at any place other than the default location ("C:\Program Files"), you should pass an additional flag to the cmake command above: -DCMAKE_INSTALL_PREFIX=C:\path\to\your\CCfits\installation 5. Build and install CCfits: CCfits.build> nmake If all goes well you should now have a CCfits.lib library and cookbook.exe executable in your CCfits.build directory. To test the build you can run cookbook.exe, which should generate 3 output FITS files: atestfil, btestfil, and ctestfil.fit. Now install CCfits.lib and its header files into the default installation location, or the directory you specified in step 4: CCfits.build> nmake install =============================================================================== Author: Paul Kunz Revised 1 Nov 2006 by Bryan Irby Revised Jan 2016 by Craig Gordon Revised May 2021 by Kristin Rutkowski CCfits-2.7/ColumnData.cxx0000644000225700000360000002773114764627567014640 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif // ColumnData #include "ColumnData.h" #include namespace CCfits { #ifndef SPEC_TEMPLATE_DECL_DEFECT template <> void ColumnData::writeData (const std::vector& indata, long firstRow, String* nullValue) { int status=0; char** columnData=FITSUtil::CharArray(indata); bool isError=false; if (varLength()) { const long nRows = static_cast(indata.size()); for (long iRow=0; !isError && iRow __tmp(m_data); if (m_data.size() < elementsToWrite) { m_data.resize(elementsToWrite,""); std::copy(__tmp.begin(),__tmp.end(),m_data.begin()); } std::copy(indata.begin(),indata.end(),m_data.begin()+firstRow-1); for (size_t i = 0; i < indata.size(); ++i) { delete [] columnData[i]; } delete [] columnData; } #endif #ifndef SPEC_TEMPLATE_IMP_DEFECT #ifndef SPEC_TEMPLATE_DECL_DEFECT template <> void ColumnData::readColumnData (long firstRow, long nelements, String* nullValue) { // nelements = nrows to read. if (nelements < 1) throw Column::InvalidNumberOfRows((int)nelements); if (firstRow < 1 || (firstRow+nelements-1)>rows()) throw Column::InvalidRowNumber(name()); int status = 0; int anynul = 0; char** array = new char*[nelements]; // Initialize pointers to NULL so we can safely delete // during error handling, even if they haven't been allocated. for (long i=0; i(0); bool isError = false; // Strings are unusual. The variable length case is still // handled by a ColumnData class, not a ColumnVectorData. char* nulval = 0; if (nullValue) { nulval = const_cast(nullValue->c_str()); } else { nulval = new char; *nulval = '\0'; } makeHDUCurrent(); if (varLength()) { long* strLengths = new long[nelements]; long* offsets = new long[nelements]; if (fits_read_descripts(fitsPointer(), index(), firstRow, nelements, strLengths, offsets, &status)) { isError = true; } else { // For variable length cols, must read 1 and only 1 row // at a time into array. for (long j=0; j(rows())) setData(std::vector(rows(),String(nulval))); for (long j=0; j void ColumnData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } template <> void ColumnData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } template <> void ColumnData >::readColumnData (long firstRow, long nelements, complex* nullValue) { // specialization for ColumnData int status(0); int anynul(0); FITSUtil::auto_array_ptr pArray(new float[nelements*2]); float* array = pArray.get(); float nulval(0); makeHDUCurrent(); if (fits_read_col_cmp(fitsPointer(),index(), firstRow,1,nelements, nulval,array, &anynul,&status) ) throw FitsError(status); if (m_data.size() != static_cast(rows())) m_data.resize(rows()); // the 'j -1 ' converts to zero based indexing. for (int j = 0; j < nelements; ++j) { m_data[j - 1 +firstRow] = std::complex(array[2*j],array[2*j+1]); } if (nelements == rows()) isRead(true); } template <> void ColumnData >::readColumnData (long firstRow, long nelements, complex* nullValue) { // specialization for ColumnData > int status(0); int anynul(0); FITSUtil::auto_array_ptr pArray(new double[nelements*2]); double* array = pArray.get(); double nulval(0); makeHDUCurrent(); if (fits_read_col_dblcmp(fitsPointer(), index(), firstRow,1,nelements, nulval,array, &anynul,&status) ) throw FitsError(status); if (m_data.size() != static_cast(rows())) setData(std::vector >(rows(),nulval)); // the 'j -1 ' converts to zero based indexing. for (int j = 0; j < nelements; j++) { m_data[j - 1 + firstRow] = std::complex(array[2*j],array[2*j+1]); } if (nelements == rows()) isRead(true); } #endif #endif #ifndef SPEC_TEMPLATE_DECL_DEFECT template <> void ColumnData >::writeData (const std::vector >& inData, long firstRow, complex* nullValue) { int status(0); int nRows (inData.size()); FITSUtil::auto_array_ptr pData(new float[nRows*2]); float* Data = pData.get(); std::vector > __tmp(m_data); for (int j = 0; j < nRows; ++j) { Data[ 2*j] = inData[j].real(); Data[ 2*j + 1] = inData[j].imag(); } try { if (fits_write_col_cmp(fitsPointer(), index(), firstRow, 1, nRows,Data, &status) != 0) throw FitsError(status); long elementsToWrite(nRows + firstRow -1); if (elementsToWrite > static_cast(m_data.size())) { m_data.resize(elementsToWrite); } std::copy(inData.begin(),inData.end(),m_data.begin()+firstRow-1); // tell the Table that the number of rows has changed parent()->updateRows(); } catch (FitsError) // the only thing that can throw here. { // reset to original content and rethrow the exception. m_data.resize(__tmp.size()); m_data = __tmp; } } #endif #ifndef SPEC_TEMPLATE_DECL_DEFECT template <> void ColumnData >::writeData (const std::vector >& inData, long firstRow, complex* nullValue) { int status(0); int nRows (inData.size()); FITSUtil::auto_array_ptr pData(new double[nRows*2]); double* Data = pData.get(); std::vector > __tmp(m_data); for (int j = 0; j < nRows; ++j) { pData[ 2*j] = inData[j].real(); pData[ 2*j + 1] = inData[j].imag(); } try { if (fits_write_col_dblcmp(fitsPointer(), index(), firstRow, 1, nRows,Data, &status) != 0) throw FitsError(status); long elementsToWrite(nRows + firstRow -1); if (elementsToWrite > static_cast(m_data.size())) { m_data.resize(elementsToWrite); } std::copy(inData.begin(),inData.end(),m_data.begin()+firstRow-1); // tell the Table that the number of rows has changed parent()->updateRows(); } catch (FitsError) // the only thing that can throw here. { // reset to original content and rethrow the exception. m_data.resize(__tmp.size()); m_data = __tmp; } } #endif } // namespace CCfits CCfits-2.7/AsciiTable.h0000644000225700000360000001573614764627567014240 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef ASCIITABLE_H #define ASCIITABLE_H 1 // HDUCreator #include "HDUCreator.h" // Table #include "Table.h" // needed for CLONE_DEFECT #ifdef _MSC_VER #include "MSconfig.h" #endif namespace CCfits { /*! \class AsciiTable \brief Class Representing Ascii Table Extensions. May only contain columns with scalar row entries and a small range of data types. AsciiTable (re)implements functions prescribed in the Table abstract class. The implementations allow the calling of cfitsio specialized routines for AsciiTable header construction. Direct instantiation of AsciiTable objects is disallowed: they are created by explicit calls to FITS::addTable( ... ), FITS::read(...) or internally by one of the FITS ctors on initialization. The default for FITS::addTable is to produce BinTable extensions. */ /*! \fn AsciiTable::~AsciiTable(); \brief destructor. */ /*! \fn virtual void AsciiTable::readData (bool readFlag, const std::vector& keys); \brief read columns and keys specified in the input array. See Table class documentation for further details. */ /*! \fn virtual void AsciiTable::addColumn (ValueType type, const String& columnName, long repeatWidth, const String& colUnit = String(""), long decimals = 0, size_t columnNumber = 0); \brief add a new column to an existing table HDU. \param type The data type of the column to be added \param columnName The name of the column to be added \param repeatWidth for a string valued, this is the width of a string. For a numeric column it supplies the vector length of the rows. It is ignored for ascii table numeric data. \param colUnit an optional field specifying the units of the data (TUNITn) \param decimals optional parameter specifying the number of decimals for an ascii numeric column \param columnNumber optional parameter specifying column number to be created. If not specified the column is added to the end. If specified, the column is inserted and the columns already read are reindexed. This parameter is provided as a convenience to support existing code rather than recommended. */ /*! \fn AsciiTable::AsciiTable (FITS * p, const String &hduName, bool readFlag, const std::vector& keys, int version); \brief reading constructor: Construct a AsciiTable extension from an extension of an existing disk file. The Table is specified by name and optional version number within the file. An array of strings representing columns or keys indicates which data are to be read. The column data are only read if readFlag is true. Reading on construction is optimized, so it is more efficient to read data at the point of instantiation. This favours a "resource acquisition is initialization" model of data management. \param p pointer to FITS object for internal use \param hduName name of AsciiTable object to be read. \param readFlag flag to determine whether to read data on construction \param keys (optional) a list of keywords/columns to be read. The implementation will determine which are keywords. If none are specified, the constructor will simply read the header \param version (optional) version number. If not specified, will read the first extension that matches hduName. */ /*! \fn AsciiTable::AsciiTable (FITS* p, const String &hduName, int rows, const std::vector& columnName = std::vector(), const std::vector& columnFmt = std::vector(), const std::vector& columnUnit = std::vector(), int version = 1); \brief writing constructor: create new Ascii Table object with the specified columns The constructor creates a valid HDU which is ready for Column::write or insertRows operations. The disk FITS file is update accordingly. The data type of each column is determined by the columnFmt argument (TFORM keywords). See cfitsio documentation for acceptable values. \param hduName name of AsciiTable object to be written \param rows number of rows in the table (NAXIS2) \param columnName array of column names for columns to be constructed. \param columnFmt array of column formats for columns to be constructed. \param columnUnit (optional) array of units for data in columns. \param version (optional) version number for HDU. The dimensions of columnType, columnName and columnFmt must match, although this is not enforced at present. \todo{enforce equal dimensions for arrays input to AsciiTable, BinTable writing ctor} */ /*! \fn AsciiTable::AsciiTable (FITS* p, int number); \brief read AsciiTable with HDU number \p number from existing file. This is used internally by methods that need to access HDUs for which no EXTNAME [or equivalent] keyword exists. */ /*! \fn virtual void AsciiTable::readTableHeader (int ncols, std::vector& colName, std::vector& colFmt, std::vector& colUnit); \brief read the table header. constructor internal call. */ class AsciiTable : public Table //## Inherits: %3804A75CE420 { public: virtual AsciiTable * clone (FITS* p) const; virtual void readData (bool readFlag = false, const std::vector& keys = std::vector()); virtual void addColumn (ValueType type, const String& columnName, long repeatWidth, const String& colUnit = String(""), long decimals = 0, size_t columnNumber = 0); // Additional Public Declarations protected: AsciiTable (FITS* p, const String &hduName = String(""), bool readFlag = false, const std::vector& keys = std::vector(), int version = 1); AsciiTable (FITS* p, const String &hduName, int rows, const std::vector& columnName = std::vector(), const std::vector& columnFmt = std::vector(), const std::vector& columnUnit = std::vector(), int version = 1); // ExtHDU constructor for getting ExtHDUs by number. // Necessary since EXTNAME is a reserved not required // keyword. AsciiTable (FITS* p, int number); ~AsciiTable(); // Additional Protected Declarations private: AsciiTable(const AsciiTable &right); virtual void readTableHeader (int ncols, std::vector& colName, std::vector& colFmt, std::vector& colUnit); // Additional Private Declarations private: //## implementation // Additional Implementation Declarations friend class HDUCreator; }; // Class CCfits::AsciiTable } // namespace CCfits #endif CCfits-2.7/PHDU.h0000644000225700000360000003361514764627567012774 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef PHDU_H #define PHDU_H 1 // valarray #include // HDU #include "HDU.h" // FITS #include "FITS.h" // FITSUtil #include "FITSUtil.h" namespace CCfits { class FITS; } // namespace CCfits // for CLONE_DEFECT #ifdef _MSC_VER #include "MSconfig.h" #endif namespace CCfits { /*! \class PHDU \brief class representing the primary HDU for a FITS file. A PHDU object is automatically instantiated and added to a FITS object when a FITS file is accessed in any way. If a new file is created without specifying the data type for the header, CCfits assumes that the file is to be used for table extensions and creates a dummy header. PHDU instances are only created by FITS ctors. In the first release of CCfits, the Primary cannot be changed once declared. PHDU and ExtHDU provide the same interface to writing images: multiple overloads of the templated PHDU::read and PHDU::write operations provide for (a) writing image data specified in a number of ways [C-array, std::vector, std::valarray] and with input location specified by initial pixel, by n-tuple, and by rectangular subset [generalized slice]; (b) reading image data specified similarly to the write options into a std::valarray. \todo Implement functions that allow replacement of the primary image */ /*! \fn PHDU::PHDU (FITS* p, int bpix, int naxis, const std::vector& axes) \brief Writing Primary HDU constructor, called by PrimaryHDU class Constructor used for creating new PHDU (i.e. for writing data to FITS). also doubles as default constructor since all arguments have default values, which are passed to the HDU constructor */ /* !\fn PHDU::PHDU (FITS* p) \brief Reading Primary HDU constructor. Constructor used when reading the primary HDU from an existing file. Does nothing except initialize, with the real work done by the subclass PrimaryHDU. */ /*! \fn PHDU::~PHDU () \brief destructor */ /*! \fn virtual void PHDU::readData (bool readFlag = false, const std::vector& keys = std::vector()) = 0; \brief read primary HDU data Called by FITS ctor, not intended for general use. parameters control how much gets read on initialization. An abstract function, implemented in the subclasses. \param readFlag read the image data if true \param key a vector of strings of keyword names to be read from the primary HDU */ /*! \fn virtual PHDU::clone(FITS* p) const = 0; \brief virtual copy constructor for Primary HDUs. The operation is used when creating a copy of a FITS object. */ /*! \fn bool PHDU::simple () const; \brief Returns the value of the Primary's SIMPLE keyword. */ /*! \fn bool PHDU::extend () const; \brief Returns the value of the Primary's EXTEND keyword. */ /*! \fn template void PHDU::read (std::valarray& image, long first, long nElements, S* nullValue) ; \brief read part of an image array, processing null values. Implicit data conversion is supported (i.e. user does not need to know the type of the data stored. A WrongExtensionType extension is thrown if *this is not an image. \param image The receiving container, a std::valarray reference \param first The first pixel from the array to read [a long value] \param nElements The number of values to read \param nullValue A pointer containing the value in the table to be considered as undefined. See cfitsio for details */ /*! \fn template void PHDU::read (std::valarray& image, const std::vector& first, long nElements, S* nullValue) ; \brief read part of an image array, processing null values. As above except for \param first a vector representing an n-tuple giving the coordinates in the image of the first pixel. */ /*! \fn template void PHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, S* nullValue) ; \brief read an image subset into valarray image, processing null values The image subset is defined by two vertices and a stride indicating the 'denseness' of the values to be picked in each dimension (a stride = (1,1,1,...) means picking every pixel in every dimension, whereas stride = (2,2,2,...) means picking every other value in each dimension. */ /*! \fn template void PHDU::read (std::valarray& image, long first, long nElements); \brief read an image section starting at a specified pixel */ /*! \fn template void PHDU::read (std::valarray& image, const std::vector& first, long nElements); \brief read an image section starting at a location specified by an n-tuple */ /*! \fn template void PHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride); \brief read an image subset */ /*! \fn template void PHDU::write(const std::vector& first, long nElements, const std::valarray& data, S* nullValue); \brief Write a set of pixels to an image extension with the first pixel specified by an n-tuple, processing undefined data All the overloaded versions of PHDU::write perform operations on *this if it is an image and throw a WrongExtensionType exception if not. Where appropriate, alternate versions allow undefined data to be processed \param first an n-tuple of dimension equal to the image dimension specifying the first pixel in the range to be written \param nElements number of pixels to be written \param data array of data to be written \param nullValue pointer to null value (data with this value written as undefined; needs the BLANK keyword to have been specified). */ /*! \fn template void PHDU::write(long first, long nElements, const std::valarray& data, S* nullValue); \brief write array to image starting with a specified pixel and allowing undefined data to be processed parameters after the first are as for version with n-tuple specifying first element. these two version are equivalent, except that it is possible for the first pixel number to exceed the range of 32-bit integers, which is how long datatype is commonly implemented. */ /*! \fn template void PHDU::write(const std::vector& first, long nElements, const std::valarray& data); \brief write array starting from specified n-tuple, without undefined data processing */ /*! \fn template void PHDU::write(long first, long nElements, const std::valarray& data); \brief write array starting from specified pixel number, without undefined data processing */ /*! \fn template void PHDU::write(const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& data); \brief write a subset (generalize slice) of data to the image A generalized slice/subset is a subset of the image (e.g. one plane of a data cube of size <= the dimension of the cube). It is specified by two opposite vertices. The equivalent cfitsio call does not support undefined data processing so there is no version that allows a null value to be specified. \param firstVertex The coordinates specifying lower and upper vertices of the n-dimensional slice \param lastVertex \param stride Pixels to skip in each to dimension, e.g. stride = (1,1,1,...) means picking every pixel in every dimension, whearas stride = (2,2,2,...) means picking every other value in each dimension. \param data The data to be written */ /*! \fn PHDU::PHDU(const PHDU& right) \brief copy constructor required for cloning primary HDUs when copying FITS files. */ class PHDU : public HDU //## Inherits: %394E6F9800C3 { public: virtual ~PHDU(); // Read data reads the image if readFlag is true and // optional keywords if supplied. Thus, with no arguments, // readData() does nothing. virtual void readData (bool readFlag = false, const std::vector& keys = std::vector()) = 0; virtual PHDU * clone (FITS* p) const = 0; virtual void zero (double value); virtual void scale (double value); virtual double zero () const; virtual double scale () const; bool simple () const; bool extend () const; public: // Additional Public Declarations // image reading/writing interface. // The S template parameter, like for Column, denotes the fact that // the type of the input array and the object to be read may not match. // the rw interface for images consists of equivalents for fits_read_img, // fits_read_pix, and fits_read_subset. // the paradigm for reading is that the image object (a valarray type) // is the size of the data already read. // write_subset has no null value aware analogue. template void write(const std::vector& first, long nElements, const std::valarray& data, S* nullValue); template void write(long first, long nElements, const std::valarray& data, S* nullValue); template void write(const std::vector& first, long nElements, const std::valarray& data); template void write(long first, long nElements, const std::valarray& data); template void write(const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& data); // read image data and return an array. Can't return a reference // because the type conversion needs to allocate a new object in general. template void read(std::valarray& image) ; template void read (std::valarray& image, long first,long nElements); template void read (std::valarray& image, long first,long nElements, S* nullValue) ; template void read (std::valarray& image, const std::vector& first,long nElements) ; template void read (std::valarray& image, const std::vector& first, long nElements, S* nullValue); template void read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride) ; template void read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, S* nullValue) ; protected: PHDU(const PHDU &right); // Constructor for new FITS objects, takes as arguments // the required keywords for a primary HDU. PHDU (FITS* p, int bpix, int naxis, const std::vector& axes); // Custom constructor. Allows specification of data to be read and whether to read data at // construction or wait until the image data are requested. The default is 'lazy initialization:' // wait until asked. PHDU (FITS* p = 0); virtual void initRead (); void simple (bool value); void extend (bool value); // Additional Protected Declarations private: // Additional Private Declarations private: //## implementation // Data Members for Class Attributes bool m_simple; bool m_extend; // Additional Implementation Declarations }; // Class CCfits::PHDU inline bool PHDU::simple () const { return m_simple; } inline void PHDU::simple (bool value) { m_simple = value; } inline bool PHDU::extend () const { return m_extend; } inline void PHDU::extend (bool value) { m_extend = value; } } // namespace CCfits #endif CCfits-2.7/HDUCreator.h0000644000225700000360000001023114764627567014161 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef HDUCREATOR_H #define HDUCREATOR_H 1 // valarray #include // typeinfo #include // vector #include // string #include // CCfitsHeader #include "CCfits.h" // FitsError #include "FitsError.h" namespace CCfits { class FITS; class HDU; class PHDU; class ExtHDU; } // namespace CCfits namespace CCfits { class HDUCreator { public: HDUCreator (FITS* p); ~HDUCreator(); // Read a specified HDU from given fitsfile and // return a pointer to it. HDU * getHdu (const String& hduName, bool readDataFlag = false, const std::vector &keys = std::vector(), bool primary = false, int version = 1); PHDU * createImage (int bitpix, long naxis, const std::vector& naxes); void reset (); HDU * Make (const String& hduName, bool readDataFlag, const std::vector &keys, bool primary, int version); HDU* createTable (const String &name, HduType xtype, int rows, const std::vector& colName, const std::vector colFmt, const std::vector colUnit, int version); // Read a specified HDU from given fitsfile and // return a pointer to it. // // With no arguments this reads the PrimaryHDU. HDU * getHdu (int index = 0, bool readDataFlag = false, const std::vector &keys = std::vector()); ExtHDU * createImage (const String &name, int bitpix, long naxis, const std::vector& naxes, int version); // MakeImage needs to be public so that FITS.h can friend it, so that // MakeImage can see FITS::m_pHDU pointer, rather than FITS.h friending // entire HDUCreator class PHDU * MakeImage (int bpix, int naxis, const std::vector& naxes); // Additional Public Declarations protected: // Additional Protected Declarations private: HDU* MakeTable (const String &name, HduType xtype, int rows, const std::vector& colName, const std::vector& colFmt, const std::vector& colUnit, int version); HDU * Make (int index, bool readDataFlag, const std::vector &keys); ExtHDU * MakeImage (const String &name, int bpix, long naxis, const std::vector& naxes, int version); void getScaling (long& type, double& zero, double& scale) const; void parent (FITS* value); // Utility function to implement both of the Make() function interfaces. HDU* commonMake(const String& hduName, bool readDataFlag, const std::vector &keys, bool primary, int version); // Data Members for Class Attributes HDU *m_hdu; // Additional Private Declarations private: //## implementation // Data Members for Associations FITS* m_parent; // Additional Implementation Declarations }; // Class CCfits::HDUCreator inline HDU * HDUCreator::getHdu (const String& hduName, bool readDataFlag, const std::vector &keys, bool primary, int version) { //! Read an existing HDU object from the current fits file and return a pointer. if ( m_hdu == 0 ) m_hdu = Make(hduName,readDataFlag,keys,primary,version); return m_hdu; } inline void HDUCreator::reset () { m_hdu = 0; } inline HDU* HDUCreator::createTable (const String &name, HduType xtype, int rows, const std::vector& colName, const std::vector colFmt, const std::vector colUnit, int version) { //! Create new Table extension (write method), and return a pointer to it. if (m_hdu == 0) m_hdu = MakeTable(name,xtype,rows,colName,colFmt,colUnit,version); return m_hdu; } inline HDU * HDUCreator::getHdu (int index, bool readDataFlag, const std::vector &keys) { //! Read HDU specified by HDU number if ( m_hdu == 0 ) m_hdu = Make(index,readDataFlag,keys); return m_hdu; } inline void HDUCreator::parent (FITS* value) { m_parent = value; } } // namespace CCfits #endif CCfits-2.7/ExtHDU.cxx0000644000225700000360000001652714764627567013713 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef SSTREAM_DEFECT #include using std::ostrstream; #else #include #endif #include // Column #include "Column.h" // FITS #include "FITS.h" // ExtHDU #include "ExtHDU.h" // FitsError #include "FitsError.h" // FITSUtil #include "FITSUtil.h" namespace CCfits { // Class CCfits::ExtHDU::WrongExtensionType ExtHDU::WrongExtensionType::WrongExtensionType (const String& msg, bool silent) : FitsException("Fits Error: wrong extension type: ",silent) { addToMessage(msg); std::cerr << msg << '\n'; } // Class CCfits::ExtHDU String ExtHDU::s_missHDU = "$HDU$"; ExtHDU::ExtHDU(const ExtHDU &right) : HDU(right), m_pcount(right.m_pcount), m_gcount(right.m_gcount), m_version(right.m_version), m_xtension(right.m_xtension), m_name(right.m_name) { } ExtHDU::ExtHDU (FITS* p, HduType xtype, const String &hduName, int version) : HDU(p), m_pcount(0), m_gcount(1), m_version(version), m_xtension(xtype), m_name(hduName) { int number = -1; if ( hduName.substr(0,5) == s_missHDU ) { #ifdef SSTREAM_DEFECT std::istrstream fakeName( hduName.substr(5).c_str() ); #else std::istringstream fakeName(hduName.substr(5)); #endif fakeName >> number; } else { fits_get_hdu_num(fitsPointer(),&number); // Retrieve the HDU number. checkXtension tests against this. index(number-1); } // check we got the right kind of extension, since otherwise // we cannot proceed. CheckXtension throws an exception if // not, which is caught by the concrete class ctors. checkXtension(); } ExtHDU::ExtHDU (FITS* p, HduType xtype, const String &hduName, int bitpix, int naxis, const std::vector& axes, int version) : HDU(p, bitpix, naxis, axes), m_pcount(0), m_gcount(1), m_version(version), m_xtension(xtype), m_name(hduName) { // writing constructor. Extension must be supplied // since we must know what type of object to instantiate. } ExtHDU::ExtHDU (FITS* p, HduType xtype, int number) : HDU(p), m_pcount(0), m_gcount(1), m_version(1), m_xtension(xtype), m_name("") { // set current HDU number. This is required for makeThisCurrent. index(number+1); makeThisCurrent(); // set name and version. readHduName(fitsPointer(),number,m_name,m_version); // finally, check we got the right type of extension and throw an // exception otherwise. checkXtension(); } ExtHDU::~ExtHDU() { } void ExtHDU::checkXtension () { int status=0; int hType = -1; if (fits_get_hdu_type(fitsPointer(), &hType, &status) ) throw FitsError(status); if (HduType(hType) != m_xtension) throw HDU::InvalidExtensionType (" extension type mismatch between request and disk file ",true); } void ExtHDU::readHduName (const fitsfile* fptr, int hduIndex, String& hduName, int& hduVersion) { // get the name of the extension. If there is neither a HDUNAME // or an EXTNAME, make a name key for the multimap from the HDU number. int status=0; FITSUtil::auto_array_ptr pHduCstr(new char[FLEN_KEYWORD]); char* hduCstr = pHduCstr.get(); int htype = -1; String key = "EXTNAME"; char* extnm = const_cast(key.c_str()); // C requires fptr to be non-const, because the fitsfile pointer // saves the file state. fitsfile* cfptr = const_cast(fptr); if (fits_movabs_hdu(cfptr,hduIndex+1,&htype,&status) != 0) throw FitsError(status); status = fits_read_key_str(cfptr, extnm, hduCstr, NULL, &status); if (status != 0) { strcpy(hduCstr,""); status = 0; key = String("HDUNAME"); extnm = const_cast(key.c_str()); status = fits_read_key_str(cfptr, extnm, hduCstr, NULL, &status); } if (strlen(hduCstr) > 0) { hduName = String(hduCstr); long hduV = 1; hduVersion = hduV; // get the version number. key = String("EXTVER"); char* extv = const_cast(key.c_str()); status = fits_read_key_lng(cfptr, extv, &hduV, NULL, &status); if (status == 0) hduVersion = hduV; } else { #ifdef SSTREAM_DEFECT std::ostrstream fakeKey; #else std::ostringstream fakeKey; #endif fakeKey << s_missHDU << hduIndex; #ifdef SSTREAM_DEFECT msg << std::ends; #endif hduName = fakeKey.str(); } } void ExtHDU::makeThisCurrent () const { HDU::makeThisCurrent(); String tname(""); int tvers = 0; ExtHDU::readHduName(fitsPointer(),index(),tname,tvers); parent()->currentExtensionName(tname); } Column& ExtHDU::column (const String& colName, bool caseSensitive) const { // if not overridden, throw an exception. // there might be a similar default implementation for function // that returns image data. throw WrongExtensionType(name()); } void ExtHDU::setColumn (const String& colname, Column* value) { throw WrongExtensionType(name()); } Column& ExtHDU::column (int colIndex) const { throw WrongExtensionType(name()); } long ExtHDU::rows () const { String msg(" rows function can only be called for Tables - HDU: "); msg += name(); throw WrongExtensionType(msg); } void ExtHDU::checkExtensionType () const { // throw if not overridden. throw WrongExtensionType(name()); } void ExtHDU::addColumn (ValueType type, const String& columnName, long repeatWidth, const String& colUnit, long decimals, size_t columnNumber) { // overridden separately in AsciiTable and BinTable throw WrongExtensionType(name()); } void ExtHDU::copyColumn(const Column& inColumn, int colIndx, bool insertNewCol) { throw WrongExtensionType(name()); } void ExtHDU::deleteColumn (const String& columnName) { // overridden in Table. throw WrongExtensionType(name()); } int ExtHDU::getVersion () { // the version keyword is not stored as a keyword object but // as a data attribute so we don't "addKeyword" but fits_read_key instead. static char EXTVER[] = {"EXTVER"}; int status(0); long vers(1); fits_read_key_lng(fitsPointer(),EXTVER,&vers,0,&status); if (status == 0) { m_version = vers; } else { if (status == KEY_NO_EXIST) { m_version = 1; } else throw FitsError(status); } return m_version; } long ExtHDU::getRowsize () const { // This should be overridden for Table classes, otherwise throw. throw WrongExtensionType("getRowsize can only be called for Table files"); return 0; } int ExtHDU::numCols () const { // overridden in Table. throw WrongExtensionType(name()); return 0; } const ColMap& ExtHDU::column () const { // overridden in Table. throw WrongExtensionType(name()); } bool ExtHDU::isCompressed() const { int status=0; checkExtensionType(); return static_cast(fits_is_compressed_image(fitsPointer(), &status)); } // Additional Declarations } // namespace CCfits CCfits-2.7/NewKeyword.h0000644000225700000360000000405614764627567014327 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef NEWKEYWORD_H #define NEWKEYWORD_H 1 // KeywordCreator #include "KeywordCreator.h" // KeyData #include "KeyData.h" // FITSUtil #include "FITSUtil.h" namespace CCfits { template class NewKeyword : public KeywordCreator //## Inherits: %39355AA90209 { public: // Parameterized Class NewKeyword NewKeyword (HDU* p, T value); virtual ~NewKeyword(); // Additional Protected Declarations virtual Keyword* MakeKeyword (const String& keyName, const String& keyComment = String(""), bool isLongStr = false); const T keyData () const; void keyData (T value); // Additional Public Declarations protected: // Additional Protected Declarations private: NewKeyword(); NewKeyword(const NewKeyword< T > &right); NewKeyword< T > & operator=(const NewKeyword< T > &right); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes T m_keyData; // Additional Implementation Declarations }; // Parameterized Class CCfits::NewKeyword template inline const T NewKeyword::keyData () const { return m_keyData; } template inline void NewKeyword::keyData (T value) { m_keyData = value; } // Parameterized Class CCfits::NewKeyword template NewKeyword::NewKeyword (HDU* p, T value) : KeywordCreator(p), m_keyData(value) { } template NewKeyword::~NewKeyword() { } template Keyword* NewKeyword::MakeKeyword (const String& keyName, const String& keyComment, bool isLongStr) { FITSUtil::MatchType keyType; return new KeyData(keyName,keyType(),m_keyData,forHDU(),keyComment,isLongStr); } // Additional Declarations } // namespace CCfits #endif CCfits-2.7/PHDU.cxx0000644000225700000360000001031214764627567013334 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman // FITS #include "FITS.h" // PHDU #include "PHDU.h" namespace CCfits { // Class CCfits::PHDU PHDU::PHDU(const PHDU &right) : HDU(right), m_simple(true), m_extend(true) { } PHDU::PHDU (FITS* p, int bpix, int naxis, const std::vector& axes) : HDU(p,bpix,naxis, axes), m_simple(true), m_extend(true) { int status (0); // If file name explicitly asks for compression, don't create an // image here. Primaries can't hold compressed images. The FITS // image ctor will have to create an image extension instead. string::size_type compressSpecifier = FITSUtil::checkForCompressString(p->name()); if (compressSpecifier == string::npos) { long *naxesArray = 0; FITSUtil::CVarray convert; naxesArray = convert(axes); if (fits_create_img(fitsPointer(), bpix, naxis, naxesArray, &status) != 0) { delete [] naxesArray; throw FitsError(status); } if (fits_flush_file(fitsPointer(),&status)) { delete [] naxesArray; throw FitsError(status); } delete [] naxesArray; } index(0); } PHDU::PHDU (FITS* p) //! Reading Primary HDU constructor. /*! Constructor used when reading the primary HDU from an existing file. * Does nothing except initialize, with the real work done by the subclass * PrimaryHDU. */ : HDU(p), m_simple(true), m_extend(true) { } PHDU::~PHDU() { //! Destructor } void PHDU::initRead () { //! Read image header and update fits pointer accordingly. /*! Private: called by ctor. */ long pcount=0, gcount=0; int status=0; int simp = 0; int xtend = 0; int numAxes = 0; if (fits_get_img_dim(fitsPointer(), &numAxes, &status) != 0) { throw FitsError(status); } naxis() = numAxes; FITSUtil::auto_array_ptr pAxes(0); if (numAxes > 0) pAxes.reset(new long[numAxes]); long* axes = pAxes.get(); int bpix = 0; if (fits_read_imghdr(fitsPointer(), MAXDIM, &simp, &bpix, &numAxes, axes, &pcount, &gcount, &xtend, &status) != 0) throw FitsError(status); bitpix(bpix); simple(simp != 0); extend(xtend != 0); if (numAxes > 0) { naxes().resize(naxis()); std::copy(&axes[0],&axes[numAxes],naxes().begin()); } } void PHDU::zero (double value) { makeThisCurrent(); if (checkImgDataTypeChange(value, scale())) { if ( naxis()) { int status(0); if (fits_update_key(fitsPointer(), Tdouble, BZERO, &value, 0, &status)) throw FitsError(status); fits_flush_file(fitsPointer(), &status); HDU::zero(value); } } else { bool silent=false; string msg("CCfits Error: Cannot set BZERO to a value which will change image data\n"); msg += " from integer type to floating point type."; throw FitsException(msg,silent); } } void PHDU::scale (double value) { makeThisCurrent(); if (checkImgDataTypeChange(zero(), value)) { if (naxis()) { int status(0); if (fits_update_key(fitsPointer(), Tdouble, BSCALE, &value, 0, &status)) throw FitsError(status); fits_flush_file(fitsPointer(), &status); HDU::scale(value); } } else { bool silent=false; string msg("CCfits Error: Cannot set BSCALE to a value which will change image data\n"); msg += " from integer type to floating point type."; throw FitsException(msg,silent); } } double PHDU::zero () const { return HDU::zero(); } double PHDU::scale () const { return HDU::scale(); } // Additional Declarations } // namespace CCfits CCfits-2.7/FITSUtil.h0000644000225700000360000006116614764627567013641 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef FITSUTIL_H #define FITSUTIL_H 1 #include "CCfits.h" // functional #include // complex #include // valarray #include // vector #include // string #include // FitsError #include "FitsError.h" #include namespace CCfits { namespace FITSUtil { /*! \namespace FITSUtil \brief FITSUtil is a namespace containing functions used internally by CCfits, but which might be of use for other applications. */ /*! \class MatchName \brief predicate for classes that have a name attribute; match input string with instance name. Usage: MatchName Ex; list ListObject; // ... ... // find_if(ListObject.begin(),ListObject().end(),bind2nd(Ex,"needle")); Since most of the classes within CCfits are not implemented with lists, these functions are now of little direct use. */ /*! \class MatchPtrName \brief as for MatchName, only with the input class a pointer. */ /*! \class MatchNum \brief predicate for classes that have an index attribute; match input index with instance value. Usage: MatchName Ex; list ListObject; // ... ... // find_if(ListObject.begin(),ListObject().end(),bind2nd(Ex,5)); Since most of the classes within CCfits are implemented with std::maps rather than lists, these functions are now of little direct use. */ /*! \class MatchPtrNum \brief as for MatchNum, only with the input class a pointer. */ /*! \class MatchType \brief function object that returns the FITS ValueType corresponding to an input intrinsic type This is particularly useful inside templated class instances where calls to cfitsio need to supply a value type. With this function one can extract the value type from the class type. usage: MatchType type; ValueType dataType = type(); Uses run-time type information (RTTI) methods. */ /*! \class UnrecognizedType @ingroup FITSexcept @brief exception thrown by MatchType if it encounters data type incompatible with cfitsio. */ /*! \class auto_array_ptr \brief A class that mimics the std:: library auto_ptr class, but works with arrays. This code was written by Jack Reeves and first appeared C++ Report, March 1996 edition. Although some authors think one shouldn't need such a contrivance, there seems to be a need for it when wrapping C code. Usage: replace float* f = new float[200]; with FITSUtil::auto_array_ptr f(new float[200]); Then the memory will be managed correctly in the presence of exceptions, and delete will be called automatically for f when leaving scope. */ /*! \fn explicit auto_array_ptr::auto_array_ptr (X* p = 0) throw (); \brief constructor. allows creation of pointer to null, can be modified by reset() */ /*! \fn explicit auto_array_ptr::auto_array_ptr (auto_array_ptr& right) throw (); \brief copy constructor */ /*!\fn auto_array_ptr::~auto_array_ptr(); \brief destructor. */ /*!\fn void auto_array_ptr::operator = (auto_array_ptr& right); \brief assignment operator: transfer of ownership semantics */ /*!\fn X& auto_array_ptr::operator * () throw (); \brief deference operator */ /*!\fn X& auto_array_ptr::operator [] (size_t i) throw (); \brief return a reference to the ith element of the array */ /*!\fn X auto_array_ptr::operator [] (size_t i) const throw (); \brief return a copy of the ith element of the array */ /*!\fn X* auto_array_ptr::get () const; \brief return a token for the underlying content of *this */ /*!\fn X* auto_array_ptr::release () throw (); \brief return underlying content of *this, transferring memory ownership */ /*!\fn X* auto_array_ptr::reset (X* p) throw (); \brief change the content of the auto_array_ptr to p */ /*!\fn static void auto_array_ptr::remove (X*& x) throw (); \brief utility function to delete the memory owned by x and set it to null. */ /*! \fn char** CharArray(const std::vector& inArray) \brief function object that returns a C-array of strings from a std::vector< std::vector > object, such as used in a string valued Table column. This exists because the return type for a specialization (T**) is incompatible with typenames T other than string, which return a T*. */ /*! \class CVarray \brief Function object class for returning C arrays from standard library objects used in the FITS library implementation. There are 3 versions which convert std::vector, std::valarray, and std::vector > objects to pointers to T, called CVarray, CAarray, and CVAarray. An alternative function, CharArray, is provided to deal with the special case of vector string arrays. */ /*! \fn T* CVarray::operator () (const std::vector& inArray); \brief operator returning C array for use with scalar column data. */ /*! \class CAarray \brief function object returning C array from a valarray. see CVarray for details */ /*! \fn T* CAarray::operator () (const std::valarray& inArray); \brief operator returning C array for use with image data. */ /*! \class CVAarray \brief function object returning C array from a vector of valarrays. see CVarray for details */ /*! \fn T* CVAarray::operator () (const std::vector< std::valarray >& inArray); \brief operator returning C array for use with vector column data. */ /*! \fn template void fill(std::vector< S > &outArray, const std::vector< T > &inArray, size_t first, size_t last); \brief Convert input vector of type T to output vector of type S. The functions FITSUtil::fill do conversions between CCfits' internal representation and user's input types. They encapsulate the task of memory allocation also, facilitating support of implicit conversions between the users data type and representation and what is required by the CCfits implementation. For example a user can create a std::vector for storage in a single row of a Binary Table column, of type long. The internal representation is a std::valarray object. \param outArray output data \param inArray input data \param first first element of inArray to be written to outArray \param last last element of inArray to be written to outArray */ #ifdef _MSC_VER #include "MSconfig.h" // for truncation double to float warning #endif template void swap(T& left,T& right); template void swap(std::vector& left, std::vector& right); string lowerCase(const string& inputString); string upperCase(const string& inputString); // Check if a file name includes an image compression specifier, // and return its location if it exists. string::size_type checkForCompressString(const string& fileName); struct InvalidConversion : public FitsException { InvalidConversion(const string& diag, bool silent=false); }; struct MatchStem { bool operator()(const string& left, const string& right) const; }; static const double d1(0); static const float f1(0); static const std::complex c1(0.); static const std::complex d2(0.); static const string s1(""); static const int i1(0); static const unsigned int u1(0); static const long l1(0); static const unsigned long ul1(0); static const LONGLONG ll1(0); static const short s2(0); static const unsigned short us1(0); static const bool b1(false); static const unsigned char b2(0); char** CharArray(const std::vector& inArray); string FITSType2String( int typeInt ); template void fill(std::vector& outArray, const std::vector& inArray,size_t first, size_t last); template void fill(std::valarray& outArray, const std::valarray& inArray); template void fill(std::valarray& outArray, const std::vector& inArray,size_t first, size_t last); template void fill(std::vector& outArray, const std::valarray& inArray); // VF<-AF void fill(std::vector >& outArray, const std::valarray >& inArray); // VF<-AD void fill(std::vector >& outArray, const std::valarray >& inArray); // VD<-AD void fill(std::vector >& outArray, const std::valarray >& inArray); // VD<-AF void fill(std::vector >& outArray, const std::valarray >& inArray); template void fill(std::vector& outArray, const std::vector& inArray, size_t first, size_t last); template void fill(std::vector& outArray, const std::vector& inArray, size_t first, size_t last); template void fill(std::valarray& outArray, const std::vector& inArray,size_t first, size_t last); // template // void fill(std::valarray >& outArray, const std::valarray >& inArray); // seems no other way of doing this. // VF<-VF #ifdef TEMPLATE_AMBIG_DEFECT void fillMSvfvf(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); #endif void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); // VF<-VD #ifdef TEMPLATE_AMBIG_DEFECT void fillMSvfvd(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); #endif void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); // VD<-VD #ifdef TEMPLATE_AMBIG_DEFECT void fillMSvdvd(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); #endif void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); #ifdef TEMPLATE_AMBIG_DEFECT void fillMSvdvf(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); #else void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last); #endif // AF<-VD void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last); // AF<-VF #ifdef TEMPLATE_AMBIG_DEFECT void fillMSafvf(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last); #else void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last); #endif // AD<-VF #ifdef TEMPLATE_AMBIG_DEFECT void fillMSadvf(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last); #else void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last); #endif // AD<-VD #ifdef TEMPLATE_AMBIG_DEFECT void fillMSadvd(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last); #else void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last); #endif // AF<-AF void fill(std::valarray >& outArray, const std::valarray >& inArray); // AD<-AD void fill(std::valarray >& outArray, const std::valarray >& inArray); // AF<-AD void fill(std::valarray >& outArray, const std::valarray >& inArray); // AD<-AF void fill(std::valarray >& outArray, const std::valarray >& inArray); #if TEMPLATE_AMBIG_DEFECT || TEMPLATE_AMBIG7_DEFECT void fillMSvsvs(std::vector& outArray, const std::vector& inArray, size_t first, size_t last); #endif void fill(std::vector& outArray, const std::vector& inArray, size_t first, size_t last); template string errorMessage(const S& out, const T& in); template struct MatchPtrName { // Parameterized Class MatchPtrName bool operator () (const T& left, const string& right) const; public: protected: private: private: //## implementation }; template struct MatchName { bool operator () (const T& left, const string& right) const; public: protected: private: private: //## implementation }; template struct MatchNum { bool operator () (const T& left, const int& right) const; public: protected: private: private: //## implementation }; template struct MatchType { ValueType operator () (); public: protected: private: private: //## implementation }; template struct CVarray { T* operator () (const std::vector& inArray); public: protected: private: private: //## implementation }; template struct FitsNullValue { T operator () (); public: protected: private: private: //## implementation }; template struct MatchImageType { ImageType operator () (); public: protected: private: private: //## implementation }; template struct MatchPtrNum { bool operator () (const T& left, const int& right) const; public: protected: private: private: //## implementation }; // auto_ptr analogue for arrays. template class auto_array_ptr { public: explicit auto_array_ptr (X* p = 0) throw (); explicit auto_array_ptr (auto_array_ptr& right) throw (); ~auto_array_ptr(); void operator = (auto_array_ptr& right); X& operator * () throw (); X& operator [] (size_t i) throw (); X operator [] (size_t i) const throw (); X* get () const; X* release () throw (); X* reset (X* p) throw (); static void remove (X*& x); protected: private: private: //## implementation // Data Members for Class Attributes X* m_p; }; template struct ComparePtrIndex { bool operator () (const T* left, const T* right); public: protected: private: private: //## implementation }; template struct CAarray { T* operator () (const std::valarray& inArray); public: protected: private: private: //## implementation }; template struct CVAarray { T* operator () (const std::vector< std::valarray >& inArray); public: protected: private: private: //## implementation }; class UnrecognizedType : public FitsException //## Inherits: %3CE143AB00C6 { public: UnrecognizedType (string diag, bool silent = true); protected: private: private: //## implementation }; // Parameterized Class CCfits::FITSUtil::MatchPtrName template inline bool MatchPtrName::operator () (const T& left, const string& right) const { return left->name() == right; } // Parameterized Class CCfits::FITSUtil::MatchName template inline bool MatchName::operator () (const T& left, const string& right) const { return left.name() == right; } // Parameterized Class CCfits::FITSUtil::MatchNum template inline bool MatchNum::operator () (const T& left, const int& right) const { return left.index() == right; } // Parameterized Class CCfits::FITSUtil::MatchType // Parameterized Class CCfits::FITSUtil::CVarray template inline T* CVarray::operator () (const std::vector& inArray) { // convert std containers used commonly in FITS to C arrays in an exception // safe manner that is also clear about resource ownership. auto_array_ptr pC(new T[inArray.size()]); T* c = pC.get(); std::copy(inArray.begin(),inArray.end(),&c[0]); return pC.release(); } // Parameterized Class CCfits::FITSUtil::FitsNullValue template inline T FitsNullValue::operator () () { // This works for int types. Float, complex, and string types // are handled below with specialized templates. return 0; } // Parameterized Class CCfits::FITSUtil::MatchImageType // Parameterized Class CCfits::FITSUtil::MatchPtrNum template inline bool MatchPtrNum::operator () (const T& left, const int& right) const { return left->index() == right; } // Parameterized Class CCfits::FITSUtil::auto_array_ptr // Parameterized Class CCfits::FITSUtil::ComparePtrIndex // Parameterized Class CCfits::FITSUtil::CAarray // Parameterized Class CCfits::FITSUtil::CVAarray // Class CCfits::FITSUtil::UnrecognizedType // Parameterized Class CCfits::FITSUtil::MatchPtrName // Parameterized Class CCfits::FITSUtil::MatchName // Parameterized Class CCfits::FITSUtil::MatchNum // Parameterized Class CCfits::FITSUtil::MatchType template ValueType MatchType::operator () () { if ( typeid(T) == typeid(d1) ) return Tdouble; if ( typeid(T) == typeid(f1) ) return Tfloat; if ( typeid(T) == typeid(c1) ) return Tcomplex; if ( typeid(T) == typeid(d2) ) return Tdblcomplex; if ( typeid(T) == typeid(s1) ) return Tstring; if ( typeid(T) == typeid(i1) ) return Tint; if ( typeid(T) == typeid(u1) ) return Tuint; if ( typeid(T) == typeid(s2) ) return Tshort; if ( typeid(T) == typeid(us1) ) return Tushort; if ( typeid(T) == typeid(b1) ) return Tlogical; if ( typeid(T) == typeid(b2) ) return Tbyte; if ( typeid(T) == typeid(l1) ) return Tlong; if ( typeid(T) == typeid(ul1) ) return Tulong; // Carefull, on some compilers LONGLONG == long, // so this should go after test for long. if ( typeid(T) == typeid(ll1) ) return Tlonglong; throw UnrecognizedType("Invalid data type for FITS Data I/O\n"); } // Parameterized Class CCfits::FITSUtil::CVarray // Parameterized Class CCfits::FITSUtil::MatchImageType template ImageType MatchImageType::operator () () { if ( typeid(T) == typeid(b2) ) return Ibyte; if ( typeid(T) == typeid(s2) ) return Ishort; if ( typeid(T) == typeid(l1) ) return Ilong; if ( typeid(T) == typeid(f1) ) return Ifloat; if ( typeid(T) == typeid(d1) ) return Idouble; if ( typeid(T) == typeid(us1) ) return Iushort; if ( typeid(T) == typeid(ul1) ) return Iulong; if ( typeid(T) == typeid(ll1) ) return Ilonglong; MatchType errType; string diag ("Image: "); diag += FITSType2String(errType()); throw UnrecognizedType(diag); } // Parameterized Class CCfits::FITSUtil::MatchPtrNum // Parameterized Class CCfits::FITSUtil::auto_array_ptr template auto_array_ptr::auto_array_ptr (X* p) throw () : m_p(p) { } template auto_array_ptr::auto_array_ptr (auto_array_ptr& right) throw () : m_p(right.release()) { } template auto_array_ptr::~auto_array_ptr() { delete [] m_p; } template void auto_array_ptr::operator = (auto_array_ptr& right) { if (this != &right) { remove(m_p); m_p = right.release(); } } template X& auto_array_ptr::operator * () throw () { return *m_p; } template X& auto_array_ptr::operator [] (size_t i) throw () { return m_p[i]; } template X auto_array_ptr::operator [] (size_t i) const throw () { return m_p[i]; } template X* auto_array_ptr::get () const { return m_p; } template X* auto_array_ptr::release () throw () { return reset(0); } template X* auto_array_ptr::reset (X* p) throw () { // set the auto_ptr to manage p and return the old pointer it was managing. X* __tmp = m_p; m_p = p; return __tmp; } template void auto_array_ptr::remove (X*& x) { X* __tmp(x); x = 0; delete [] __tmp; } // Parameterized Class CCfits::FITSUtil::ComparePtrIndex template bool ComparePtrIndex::operator () (const T* left, const T* right) { return (left->index() < right->index()); } // Parameterized Class CCfits::FITSUtil::CAarray template T* CAarray::operator () (const std::valarray& inArray) { size_t n(inArray.size()); auto_array_ptr pC(new T[n]); T* c= pC.get(); for (size_t j = 0; j < n; ++j) c[j] = inArray[j]; return pC.release(); } // Parameterized Class CCfits::FITSUtil::CVAarray template T* CVAarray::operator () (const std::vector< std::valarray >& inArray) { size_t sz(0); size_t n(inArray.size()); std::vector nr(n); size_t i = 0; // for MS VC++ bug for ( i = 0; i < n; ++i) { nr[i] = inArray[i].size(); sz += nr[i]; } auto_array_ptr pC(new T[sz]); T* c = pC.get(); size_t k(0); for ( i = 0; i < n; ++i) { size_t& m = nr[i]; const std::valarray& current = inArray[i]; for (size_t j=0; j < m ; ++j) c[k++] = current[j]; } return pC.release(); } } // namespace FITSUtil } // namespace CCfits namespace CCfits { namespace FITSUtil { template void swap(T& left, T& right) { T temp(left); left = right; right = temp; } template void swap(std::vector& left, std::vector& right) { left.swap(right); } template <> inline string FitsNullValue::operator () () { return string(""); } template <> inline float FitsNullValue::operator () () { return FLOATNULLVALUE; } template <> inline double FitsNullValue::operator () () { return DOUBLENULLVALUE; } template <> inline std::complex FitsNullValue >::operator () () { return std::complex(FLOATNULLVALUE); } template <> inline std::complex FitsNullValue >::operator () () { return std::complex(DOUBLENULLVALUE); } } // end namespace FITSUtil } // end namespace CCfits #endif CCfits-2.7/configure0000755000225700000360000233113314764627567013770 0ustar cagordonlhea#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.71 for CCfits 2.6. # # # Copyright (C) 1992-1996, 1998-2017, 2020-2021 Free Software Foundation, # Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh as_nop=: if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="as_nop=: if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else \$as_nop case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ) then : else \$as_nop exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1 blah=\$(echo \$(echo blah)) test x\"\$blah\" = xblah || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null then : as_have_required=yes else $as_nop as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null then : else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$as_shell as_have_required=yes if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null then : break 2 fi fi done;; esac as_found=false done IFS=$as_save_IFS if $as_found then : else $as_nop if { test -f "$SHELL" || test -f "$SHELL.exe"; } && as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$SHELL as_have_required=yes fi fi if test "x$CONFIG_SHELL" != x then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed `exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno then : printf "%s\n" "$0: This script requires a shell more modern than all" printf "%s\n" "$0: the shells that I found on your system." if test ${ZSH_VERSION+y} ; then printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." else printf "%s\n" "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_nop # --------- # Do nothing but, unlike ":", preserve the value of $?. as_fn_nop () { return $? } as_nop=as_fn_nop # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else $as_nop as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_nop # --------- # Do nothing but, unlike ":", preserve the value of $?. as_fn_nop () { return $? } as_nop=as_fn_nop # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='CCfits' PACKAGE_TARNAME='CCfits' PACKAGE_VERSION='2.7' PACKAGE_STRING='CCfits 2.7' PACKAGE_BUGREPORT='' PACKAGE_URL='' ac_unique_file="FITS.cxx" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_STDIO_H # include #endif #ifdef HAVE_STDLIB_H # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_header_c_list= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS STLPORT RDFLAGS LIBSTDCPP GMAKE HAVE_CXX14 CXX_LIB_PATH pfk_cxx_lib_path CXXCPP LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB ac_ct_AR AR DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE ac_ct_CC CFLAGS CC LIBTOOL am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__include DEPDIR OBJEXT EXEEXT ac_ct_CXX CPPFLAGS LDFLAGS CXXFLAGS CXX AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_os target_vendor target_cpu target host_os host_vendor host_cpu host build_os build_vendor build_cpu build target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking enable_static enable_shared with_pic enable_fast_install with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock with_cfitsio with_cfitsio_include with_cfitsio_libdir enable_msvc_code ' ac_precious_vars='build_alias host_alias target_alias CXX CXXFLAGS LDFLAGS LIBS CPPFLAGS CCC CC CFLAGS LT_SYS_LIBRARY_PATH CXXCPP' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: \`$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && printf "%s\n" "$as_me: WARNING: invalid host type: $ac_option" >&2 : "${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option}" ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures CCfits 2.7 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/CCfits] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] --target=TARGET configure for building compilers for TARGET [HOST] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of CCfits 2.7:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-static[=PKGS] build static libraries [default=no] --enable-shared[=PKGS] build shared libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --enable-msvc-code compile alternate code dealing with MS VC++ workarounds Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-cfitsio=DIR root directory of cfitsio installation --with-cfitsio-include=DIR specify exact include dir for cfitsio headers --with-cfitsio-libdir=DIR specify exact library dir for cfitsio library --without-cfitsio disables cfitsio usage completely Some influential environment variables: CXX C++ compiler command CXXFLAGS C++ compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CC C compiler command CFLAGS C compiler flags LT_SYS_LIBRARY_PATH User-defined run-time library search path. CXXCPP C++ preprocessor Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for configure.gnu first; this name is used for a wrapper for # Metaconfig's "Configure" on case-insensitive file systems. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF CCfits configure 2.7 generated by GNU Autoconf 2.71 Copyright (C) 2021 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_cxx_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_compile # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext } then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO" then : eval "$3=yes" else $as_nop eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. */ #include #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main (void) { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : eval "$3=yes" else $as_nop eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_cxx_try_cpp LINENO # ------------------------ # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err } then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_cpp # ac_fn_cxx_try_link LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext } then : ac_retval=0 else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_cxx_try_link # ac_fn_cxx_check_header_compile LINENO HEADER VAR INCLUDES # --------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_cxx_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : eval "$3=yes" else $as_nop eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_cxx_check_header_compile ac_configure_args_raw= for ac_arg do case $ac_arg in *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append ac_configure_args_raw " '$ac_arg'" done case $ac_configure_args_raw in *$as_nl*) ac_safe_unquote= ;; *) ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab. ac_unsafe_a="$ac_unsafe_z#~" ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g" ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;; esac cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by CCfits $as_me 2.7, which was generated by GNU Autoconf 2.71. Invocation command line was $ $0$ac_configure_args_raw _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac printf "%s\n" "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Sanitize IFS. IFS=" "" $as_nl" # Save into config.log some information that might help in debugging. { echo printf "%s\n" "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo printf "%s\n" "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then printf "%s\n" "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then printf "%s\n" "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && printf "%s\n" "$as_me: caught signal $ac_signal" printf "%s\n" "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h printf "%s\n" "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then ac_site_files="$CONFIG_SITE" elif test "x$prefix" != xNONE; then ac_site_files="$prefix/share/config.site $prefix/etc/config.site" else ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi for ac_site_file in $ac_site_files do case $ac_site_file in #( */*) : ;; #( *) : ac_site_file=./$ac_site_file ;; esac if test -f "$ac_site_file" && test -r "$ac_site_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 printf "%s\n" "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 printf "%s\n" "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Test code for whether the C++ compiler supports C++98 (global declarations) ac_cxx_conftest_cxx98_globals=' // Does the compiler advertise C++98 conformance? #if !defined __cplusplus || __cplusplus < 199711L # error "Compiler does not advertise C++98 conformance" #endif // These inclusions are to reject old compilers that // lack the unsuffixed header files. #include #include // and are *not* freestanding headers in C++98. extern void assert (int); namespace std { extern int strcmp (const char *, const char *); } // Namespaces, exceptions, and templates were all added after "C++ 2.0". using std::exception; using std::strcmp; namespace { void test_exception_syntax() { try { throw "test"; } catch (const char *s) { // Extra parentheses suppress a warning when building autoconf itself, // due to lint rules shared with more typical C programs. assert (!(strcmp) (s, "test")); } } template struct test_template { T const val; explicit test_template(T t) : val(t) {} template T add(U u) { return static_cast(u) + val; } }; } // anonymous namespace ' # Test code for whether the C++ compiler supports C++98 (body of main) ac_cxx_conftest_cxx98_main=' assert (argc); assert (! argv[0]); { test_exception_syntax (); test_template tt (2.0); assert (tt.add (4) == 6.0); assert (true && !false); } ' # Test code for whether the C++ compiler supports C++11 (global declarations) ac_cxx_conftest_cxx11_globals=' // Does the compiler advertise C++ 2011 conformance? #if !defined __cplusplus || __cplusplus < 201103L # error "Compiler does not advertise C++11 conformance" #endif namespace cxx11test { constexpr int get_val() { return 20; } struct testinit { int i; double d; }; class delegate { public: delegate(int n) : n(n) {} delegate(): delegate(2354) {} virtual int getval() { return this->n; }; protected: int n; }; class overridden : public delegate { public: overridden(int n): delegate(n) {} virtual int getval() override final { return this->n * 2; } }; class nocopy { public: nocopy(int i): i(i) {} nocopy() = default; nocopy(const nocopy&) = delete; nocopy & operator=(const nocopy&) = delete; private: int i; }; // for testing lambda expressions template Ret eval(Fn f, Ret v) { return f(v); } // for testing variadic templates and trailing return types template auto sum(V first) -> V { return first; } template auto sum(V first, Args... rest) -> V { return first + sum(rest...); } } ' # Test code for whether the C++ compiler supports C++11 (body of main) ac_cxx_conftest_cxx11_main=' { // Test auto and decltype auto a1 = 6538; auto a2 = 48573953.4; auto a3 = "String literal"; int total = 0; for (auto i = a3; *i; ++i) { total += *i; } decltype(a2) a4 = 34895.034; } { // Test constexpr short sa[cxx11test::get_val()] = { 0 }; } { // Test initializer lists cxx11test::testinit il = { 4323, 435234.23544 }; } { // Test range-based for int array[] = {9, 7, 13, 15, 4, 18, 12, 10, 5, 3, 14, 19, 17, 8, 6, 20, 16, 2, 11, 1}; for (auto &x : array) { x += 23; } } { // Test lambda expressions using cxx11test::eval; assert (eval ([](int x) { return x*2; }, 21) == 42); double d = 2.0; assert (eval ([&](double x) { return d += x; }, 3.0) == 5.0); assert (d == 5.0); assert (eval ([=](double x) mutable { return d += x; }, 4.0) == 9.0); assert (d == 5.0); } { // Test use of variadic templates using cxx11test::sum; auto a = sum(1); auto b = sum(1, 2); auto c = sum(1.0, 2.0, 3.0); } { // Test constructor delegation cxx11test::delegate d1; cxx11test::delegate d2(); cxx11test::delegate d3(45); } { // Test override and final cxx11test::overridden o1(55464); } { // Test nullptr char *c = nullptr; } { // Test template brackets test_template<::test_template> v(test_template(12)); } { // Unicode literals char const *utf8 = u8"UTF-8 string \u2500"; char16_t const *utf16 = u"UTF-8 string \u2500"; char32_t const *utf32 = U"UTF-32 string \u2500"; } ' # Test code for whether the C compiler supports C++11 (complete). ac_cxx_conftest_cxx11_program="${ac_cxx_conftest_cxx98_globals} ${ac_cxx_conftest_cxx11_globals} int main (int argc, char **argv) { int ok = 0; ${ac_cxx_conftest_cxx98_main} ${ac_cxx_conftest_cxx11_main} return ok; } " # Test code for whether the C compiler supports C++98 (complete). ac_cxx_conftest_cxx98_program="${ac_cxx_conftest_cxx98_globals} int main (int argc, char **argv) { int ok = 0; ${ac_cxx_conftest_cxx98_main} return ok; } " # Test code for whether the C compiler supports C89 (global declarations) ac_c_conftest_c89_globals=' /* Does the compiler advertise C89 conformance? Do not test the value of __STDC__, because some compilers set it to 0 while being otherwise adequately conformant. */ #if !defined __STDC__ # error "Compiler does not advertise C89 conformance" #endif #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */ struct buf { int x; }; struct buf * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not \xHH hex character constants. These do not provoke an error unfortunately, instead are silently treated as an "x". The following induces an error, until -std is added to get proper ANSI mode. Curiously \x00 != x always comes out true, for an array size at least. It is necessary to write \x00 == 0 to get something that is true only with -std. */ int osf4_cc_array ['\''\x00'\'' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) '\''x'\'' int xlc6_cc_array[FOO(a) == '\''x'\'' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int), int, int);' # Test code for whether the C compiler supports C89 (body of main). ac_c_conftest_c89_main=' ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]); ' # Test code for whether the C compiler supports C99 (global declarations) ac_c_conftest_c99_globals=' // Does the compiler advertise C99 conformance? #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L # error "Compiler does not advertise C99 conformance" #endif #include extern int puts (const char *); extern int printf (const char *, ...); extern int dprintf (int, const char *, ...); extern void *malloc (size_t); // Check varargs macros. These examples are taken from C99 6.10.3.5. // dprintf is used instead of fprintf to avoid needing to declare // FILE and stderr. #define debug(...) dprintf (2, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK #error "your preprocessor is broken" #endif #if BIG_OK #else #error "your preprocessor is broken" #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // See if C++-style comments work. // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\''\0'\''; ++i) continue; return 0; } // Check varargs and va_copy. static bool test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str = ""; int number = 0; float fnumber = 0; while (*format) { switch (*format++) { case '\''s'\'': // string str = va_arg (args_copy, const char *); break; case '\''d'\'': // int number = va_arg (args_copy, int); break; case '\''f'\'': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); return *str && number && fnumber; } ' # Test code for whether the C compiler supports C99 (body of main). ac_c_conftest_c99_main=' // Check bool. _Bool success = false; success |= (argc != 0); // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[0] = argv[0][0]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\'' || dynamic_array[ni.number - 1] != 543); ' # Test code for whether the C compiler supports C11 (global declarations) ac_c_conftest_c11_globals=' // Does the compiler advertise C11 conformance? #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L # error "Compiler does not advertise C11 conformance" #endif // Check _Alignas. char _Alignas (double) aligned_as_double; char _Alignas (0) no_special_alignment; extern char aligned_as_int; char _Alignas (0) _Alignas (int) aligned_as_int; // Check _Alignof. enum { int_alignment = _Alignof (int), int_array_alignment = _Alignof (int[100]), char_alignment = _Alignof (char) }; _Static_assert (0 < -_Alignof (int), "_Alignof is signed"); // Check _Noreturn. int _Noreturn does_not_return (void) { for (;;) continue; } // Check _Static_assert. struct test_static_assert { int x; _Static_assert (sizeof (int) <= sizeof (long int), "_Static_assert does not work in struct"); long int y; }; // Check UTF-8 literals. #define u8 syntax error! char const utf8_literal[] = u8"happens to be ASCII" "another string"; // Check duplicate typedefs. typedef long *long_ptr; typedef long int *long_ptr; typedef long_ptr long_ptr; // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. struct anonymous { union { struct { int i; int j; }; struct { int k; long int l; } w; }; int m; } v1; ' # Test code for whether the C compiler supports C11 (body of main). ac_c_conftest_c11_main=' _Static_assert ((offsetof (struct anonymous, i) == offsetof (struct anonymous, w.k)), "Anonymous union alignment botch"); v1.i = 2; v1.w.k = 5; ok |= v1.i != 5; ' # Test code for whether the C compiler supports C11 (complete). ac_c_conftest_c11_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} ${ac_c_conftest_c11_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} ${ac_c_conftest_c11_main} return ok; } " # Test code for whether the C compiler supports C99 (complete). ac_c_conftest_c99_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} return ok; } " # Test code for whether the C compiler supports C89 (complete). ac_c_conftest_c89_program="${ac_c_conftest_c89_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} return ok; } " as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H" as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H" as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H" as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H" as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H" as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H" as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H" as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H" # Auxiliary files required by this configure script. ac_aux_files="compile ltmain.sh missing install-sh config.guess config.sub" # Locations in which to look for auxiliary files. ac_aux_dir_candidates="${srcdir}/config" # Search for a directory containing all of the required auxiliary files, # $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates. # If we don't find one directory that contains all the files we need, # we report the set of missing files from the *first* directory in # $ac_aux_dir_candidates and give up. ac_missing_aux_files="" ac_first_candidate=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in $ac_aux_dir_candidates do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5 ac_aux_dir_found=yes ac_install_sh= for ac_aux in $ac_aux_files do # As a special case, if "install-sh" is required, that requirement # can be satisfied by any of "install-sh", "install.sh", or "shtool", # and $ac_install_sh is set appropriately for whichever one is found. if test x"$ac_aux" = x"install-sh" then if test -f "${as_dir}install-sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5 ac_install_sh="${as_dir}install-sh -c" elif test -f "${as_dir}install.sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5 ac_install_sh="${as_dir}install.sh -c" elif test -f "${as_dir}shtool"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5 ac_install_sh="${as_dir}shtool install -c" else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} install-sh" else break fi fi else if test -f "${as_dir}${ac_aux}"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5 else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}" else break fi fi fi done if test "$ac_aux_dir_found" = yes; then ac_aux_dir="$as_dir" break fi ac_first_candidate=false as_found=false done IFS=$as_save_IFS if $as_found then : else $as_nop as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. if test -f "${ac_aux_dir}config.guess"; then ac_config_guess="$SHELL ${ac_aux_dir}config.guess" fi if test -f "${ac_aux_dir}config.sub"; then ac_config_sub="$SHELL ${ac_aux_dir}config.sub" fi if test -f "$ac_aux_dir/configure"; then ac_configure="$SHELL ${ac_aux_dir}configure" fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 printf "%s\n" "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 printf "%s\n" "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 printf "%s\n" "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 printf "%s\n" "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 printf "%s\n" "$as_me: former value: \`$ac_old_val'" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 printf "%s\n" "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`printf "%s\n" "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`${MAKE-make} distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Make sure we can run config.sub. $SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 printf %s "checking build system type... " >&6; } if test ${ac_cv_build+y} then : printf %s "(cached) " >&6 else $as_nop ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "${ac_aux_dir}config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` || as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $ac_build_alias failed" "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 printf "%s\n" "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 printf %s "checking host system type... " >&6; } if test ${ac_cv_host+y} then : printf %s "(cached) " >&6 else $as_nop if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "${ac_aux_dir}config.sub" $host_alias` || as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $host_alias failed" "$LINENO" 5 fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 printf "%s\n" "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking target system type" >&5 printf %s "checking target system type... " >&6; } if test ${ac_cv_target+y} then : printf %s "(cached) " >&6 else $as_nop if test "x$target_alias" = x; then ac_cv_target=$ac_cv_host else ac_cv_target=`$SHELL "${ac_aux_dir}config.sub" $target_alias` || as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $target_alias failed" "$LINENO" 5 fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_target" >&5 printf "%s\n" "$ac_cv_target" >&6; } case $ac_cv_target in *-*-*) ;; *) as_fn_error $? "invalid value of canonical target" "$LINENO" 5;; esac target=$ac_cv_target ac_save_IFS=$IFS; IFS='-' set x $ac_cv_target shift target_cpu=$1 target_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: target_os=$* IFS=$ac_save_IFS case $target_os in *\ *) target_os=`echo "$target_os" | sed 's/ /-/g'`;; esac # The aliases save the names the user supplied, while $host etc. # will get canonicalized. test -n "$target_alias" && test "$program_prefix$program_suffix$program_transform_name" = \ NONENONEs,x,x, && program_prefix=${target_alias}- ac_config_headers="$ac_config_headers config.h" am__api_version='1.16' # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 printf %s "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test ${ac_cv_path_install+y} then : printf %s "(cached) " >&6 else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac # Account for fact that we put trailing slashes in our PATH walk. case $as_dir in #(( ./ | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext"; then if test $ac_prog = install && grep dspmsg "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test ${ac_cv_path_install+y}; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 printf "%s\n" "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 printf %s "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # Do 'set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( am_has_slept=no for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi if test "$2" = conftest.file || test $am_try -eq 2; then break fi # Just in case. sleep 1 am_has_slept=yes done test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if grep 'slept: no' conftest.file >/dev/null 2>&1; then ( sleep 1 ) & am_sleep_pid=$! fi rm -f conftest.file test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using 'strip' when the user # run "make install-strip". However 'strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the 'STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 printf "%s\n" "$STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 printf "%s\n" "$ac_ct_STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5 printf %s "checking for a race-free mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if test ${ac_cv_path_mkdir+y} then : printf %s "(cached) " >&6 else $as_nop as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext" || continue case `"$as_dir$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir ('*'coreutils) '* | \ 'BusyBox '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test ${ac_cv_path_mkdir+y}; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 printf "%s\n" "$MKDIR_P" >&6; } for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AWK+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 printf "%s\n" "$AWK" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AWK" && break done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval test \${ac_cv_prog_make_${ac_make}_set+y} then : printf %s "(cached) " >&6 else $as_nop cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } SET_MAKE= else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null # Check whether --enable-silent-rules was given. if test ${enable_silent_rules+y} then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=1;; esac am_make=${MAKE-make} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 printf %s "checking whether $am_make supports nested variables... " >&6; } if test ${am_cv_make_support_nested_variables+y} then : printf %s "(cached) " >&6 else $as_nop if printf "%s\n" 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi AM_BACKSLASH='\' if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE='CCfits' VERSION='2.7' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -' # POSIX will say in a future version that running "rm -f" with no argument # is OK; and we want to be able to make that assumption in our Makefile # recipes. So use an aggressive probe to check that the usage we want is # actually supported "in the wild" to an acceptable degree. # See automake bug#10828. # To make any issue more visible, cause the running configure to be aborted # by default if the 'rm' program in use doesn't match our expectations; the # user can still override this though. if rm -f && rm -fr && rm -rf; then : OK; else cat >&2 <<'END' Oops! Your 'rm' program seems unable to run without file operands specified on the command line, even when the '-f' option is present. This is contrary to the behaviour of most rm programs out there, and not conforming with the upcoming POSIX standard: Please tell bug-automake@gnu.org about your system, including the value of your $PATH and any error possibly output before this message. This can help us improve future automake versions. END if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then echo 'Configuration will proceed anyway, since you have set the' >&2 echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2 echo >&2 else cat >&2 <<'END' Aborting the configuration process, to ensure you take notice of the issue. You can download and install GNU coreutils to get an 'rm' implementation that behaves properly: . If you want to complete the configuration process using your problematic 'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM to "yes", and re-run configure. END as_fn_error $? "Your 'rm' program is bad, sorry." "$LINENO" 5 fi fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC clang++ do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CXX+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 printf "%s\n" "$CXX" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC clang++ do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CXX+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CXX="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 printf "%s\n" "$ac_ct_CXX" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 printf %s "checking whether the C++ compiler works... " >&6; } ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else $as_nop ac_file='' fi if test -z "$ac_file" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C++ compiler cannot create executables See \`config.log' for more details" "$LINENO" 5; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 printf %s "checking for C++ compiler default output file name... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 printf "%s\n" "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 printf %s "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else $as_nop { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest conftest$ac_cv_exeext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 printf "%s\n" "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 printf %s "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 printf "%s\n" "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 printf %s "checking for suffix of object files... " >&6; } if test ${ac_cv_objext+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_nop printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 printf "%s\n" "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C++" >&5 printf %s "checking whether the compiler supports GNU C++... " >&6; } if test ${ac_cv_cxx_compiler_gnu+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : ac_compiler_gnu=yes else $as_nop ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 printf "%s\n" "$ac_cv_cxx_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+y} ac_save_CXXFLAGS=$CXXFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 printf %s "checking whether $CXX accepts -g... " >&6; } if test ${ac_cv_prog_cxx_g+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : ac_cv_prog_cxx_g=yes else $as_nop CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : else $as_nop ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 printf "%s\n" "$ac_cv_prog_cxx_g" >&6; } if test $ac_test_CXXFLAGS; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_prog_cxx_stdcxx=no if test x$ac_prog_cxx_stdcxx = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++11 features" >&5 printf %s "checking for $CXX option to enable C++11 features... " >&6; } if test ${ac_cv_prog_cxx_11+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cxx_11=no ac_save_CXX=$CXX cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_cxx_conftest_cxx11_program _ACEOF for ac_arg in '' -std=gnu++11 -std=gnu++0x -std=c++11 -std=c++0x -qlanglvl=extended0x -AA do CXX="$ac_save_CXX $ac_arg" if ac_fn_cxx_try_compile "$LINENO" then : ac_cv_prog_cxx_cxx11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cxx_cxx11" != "xno" && break done rm -f conftest.$ac_ext CXX=$ac_save_CXX fi if test "x$ac_cv_prog_cxx_cxx11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cxx_cxx11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_cxx11" >&5 printf "%s\n" "$ac_cv_prog_cxx_cxx11" >&6; } CXX="$CXX $ac_cv_prog_cxx_cxx11" fi ac_cv_prog_cxx_stdcxx=$ac_cv_prog_cxx_cxx11 ac_prog_cxx_stdcxx=cxx11 fi fi if test x$ac_prog_cxx_stdcxx = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CXX option to enable C++98 features" >&5 printf %s "checking for $CXX option to enable C++98 features... " >&6; } if test ${ac_cv_prog_cxx_98+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cxx_98=no ac_save_CXX=$CXX cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_cxx_conftest_cxx98_program _ACEOF for ac_arg in '' -std=gnu++98 -std=c++98 -qlanglvl=extended -AA do CXX="$ac_save_CXX $ac_arg" if ac_fn_cxx_try_compile "$LINENO" then : ac_cv_prog_cxx_cxx98=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cxx_cxx98" != "xno" && break done rm -f conftest.$ac_ext CXX=$ac_save_CXX fi if test "x$ac_cv_prog_cxx_cxx98" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cxx_cxx98" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_cxx98" >&5 printf "%s\n" "$ac_cv_prog_cxx_cxx98" >&6; } CXX="$CXX $ac_cv_prog_cxx_cxx98" fi ac_cv_prog_cxx_stdcxx=$ac_cv_prog_cxx_cxx98 ac_prog_cxx_stdcxx=cxx98 fi fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 printf %s "checking whether ${MAKE-make} supports the include directive... " >&6; } cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } case $?:`cat confinc.out 2>/dev/null` in #( '0:this is the am__doit target') : case $s in #( BSD) : am__include='.include' am__quote='"' ;; #( *) : am__include='include' am__quote='' ;; esac ;; #( *) : ;; esac if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 printf "%s\n" "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test ${enable_dependency_tracking+y} then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CXX" am_compiler_list= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 printf %s "checking dependency style of $depcc... " >&6; } if test ${am_cv_CXX_dependencies_compiler_type+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 printf "%s\n" "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi CC=$CXX case "$target" in *-*-solaris*) LD=$CXX LIBS="-lm -lsocket -lgen -lnsl";; *) ;; esac # Check whether --enable-static was given. if test ${enable_static+y} then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS=$lt_save_ifs ;; esac else $as_nop enable_static=no fi case `pwd` in *\ * | *\ *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 printf "%s\n" "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.6' macro_revision='2.4.6' ltmain=$ac_aux_dir/ltmain.sh # Backslashify metacharacters that are still active within # double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 printf %s "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case $ECHO in printf*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: printf" >&5 printf "%s\n" "printf" >&6; } ;; print*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 printf "%s\n" "print -r" >&6; } ;; *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: cat" >&5 printf "%s\n" "cat" >&6; } ;; esac ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then if test "$as_dir$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. set dummy ${ac_tool_prefix}clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "clang", so it can be a program name with args. set dummy clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi fi test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 printf %s "checking whether the compiler supports GNU C... " >&6; } if test ${ac_cv_c_compiler_gnu+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_compiler_gnu=yes else $as_nop ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_c_compiler_gnu if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 printf %s "checking whether $CC accepts -g... " >&6; } if test ${ac_cv_prog_cc_g+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes else $as_nop CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else $as_nop ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 printf "%s\n" "$ac_cv_prog_cc_g" >&6; } if test $ac_test_CFLAGS; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi ac_prog_cc_stdc=no if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 printf %s "checking for $CC option to enable C11 features... " >&6; } if test ${ac_cv_prog_cc_c11+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c11_program _ACEOF for ac_arg in '' -std=gnu11 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c11" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } CC="$CC $ac_cv_prog_cc_c11" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 ac_prog_cc_stdc=c11 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 printf %s "checking for $CC option to enable C99 features... " >&6; } if test ${ac_cv_prog_cc_c99+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c99_program _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c99" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c99" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } CC="$CC $ac_cv_prog_cc_c99" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 ac_prog_cc_stdc=c99 fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 printf %s "checking for $CC option to enable C89 features... " >&6; } if test ${ac_cv_prog_cc_c89+y} then : printf %s "(cached) " >&6 else $as_nop ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c89_program _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi if test "x$ac_cv_prog_cc_c89" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else $as_nop if test "x$ac_cv_prog_cc_c89" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } CC="$CC $ac_cv_prog_cc_c89" fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 ac_prog_cc_stdc=c89 fi fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 printf %s "checking whether $CC understands -c and -o together... " >&6; } if test ${am_cv_prog_cc_c_o+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu depcc="$CC" am_compiler_list= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 printf %s "checking dependency style of $depcc... " >&6; } if test ${am_cv_CC_dependencies_compiler_type+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named 'D' -- because '-MD' means "put the output # in D". rm -rf conftest.dir mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with # Solaris 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with '-c' and '-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle '-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # After this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested. if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 printf "%s\n" "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 printf %s "checking for a sed that does not truncate output... " >&6; } if test ${ac_cv_path_SED+y} then : printf %s "(cached) " >&6 else $as_nop ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in sed gsed do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 printf "%s\n" "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 printf %s "checking for grep that handles long lines and -e... " >&6; } if test ${ac_cv_path_GREP+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in grep ggrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 printf "%s\n" "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 printf %s "checking for egrep... " >&6; } if test ${ac_cv_path_EGREP+y} then : printf %s "(cached) " >&6 else $as_nop if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in egrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 printf "%s\n" "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 printf %s "checking for fgrep... " >&6; } if test ${ac_cv_path_FGREP+y} then : printf %s "(cached) " >&6 else $as_nop if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in fgrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 printf "%s\n" "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test ${with_gnu_ld+y} then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else $as_nop with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 printf %s "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 printf %s "checking for GNU ld... " >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 printf %s "checking for non-GNU ld... " >&6; } fi if test ${lt_cv_path_LD+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 printf "%s\n" "$LD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 printf %s "checking if the linker ($LD) is GNU ld... " >&6; } if test ${lt_cv_prog_gnu_ld+y} then : printf %s "(cached) " >&6 else $as_nop # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 printf "%s\n" "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 printf %s "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if test ${lt_cv_path_NM+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM=$NM else lt_nm_to_check=${ac_tool_prefix}nm if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. tmp_nm=$ac_dir/$lt_tmp_nm if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then # Check to see if the nm accepts a BSD-compat flag. # Adding the 'sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS=$lt_save_ifs done : ${lt_cv_path_NM=no} fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 printf "%s\n" "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_DUMPBIN+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 printf "%s\n" "$DUMPBIN" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_DUMPBIN+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 printf "%s\n" "$ac_ct_DUMPBIN" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 printf %s "checking the name lister ($NM) interface... " >&6; } if test ${lt_cv_nm_interface+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 printf "%s\n" "$lt_cv_nm_interface" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 printf %s "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 printf "%s\n" "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 printf %s "checking the maximum length of command line arguments... " >&6; } if test ${lt_cv_sys_max_cmd_len+y} then : printf %s "(cached) " >&6 else $as_nop i=0 teststring=ABCD case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; mint*) # On MiNT this can take a long time and run out of memory. lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n "$lt_cv_sys_max_cmd_len"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 printf "%s\n" "$lt_cv_sys_max_cmd_len" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none" >&5 printf "%s\n" "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 printf %s "checking how to convert $build file names to $host format... " >&6; } if test ${lt_cv_to_host_file_cmd+y} then : printf %s "(cached) " >&6 else $as_nop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 printf "%s\n" "$lt_cv_to_host_file_cmd" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 printf %s "checking how to convert $build file names to toolchain format... " >&6; } if test ${lt_cv_to_tool_file_cmd+y} then : printf %s "(cached) " >&6 else $as_nop #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* ) case $build in *-*-mingw* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 printf "%s\n" "$lt_cv_to_tool_file_cmd" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 printf %s "checking for $LD option to reload object files... " >&6; } if test ${lt_cv_ld_reload_flag+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_ld_reload_flag='-r' fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 printf "%s\n" "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in cygwin* | mingw* | pw32* | cegcc*) if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_OBJDUMP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 printf "%s\n" "$OBJDUMP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_OBJDUMP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 printf "%s\n" "$ac_ct_OBJDUMP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 printf %s "checking how to recognize dependent libraries... " >&6; } if test ${lt_cv_deplibs_check_method+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # 'unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # that responds to the $file_magic_cmd with a given extended regex. # If you have 'file' or equivalent on your system and you're not sure # whether 'pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9]\.[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd* | bitrig*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 printf "%s\n" "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_DLLTOOL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 printf "%s\n" "$DLLTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_DLLTOOL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 printf "%s\n" "$ac_ct_DLLTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 printf %s "checking how to associate runtime and link libraries... " >&6; } if test ${lt_cv_sharedlib_from_linklib_cmd+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 printf "%s\n" "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO if test -n "$ac_tool_prefix"; then for ac_prog in ar do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AR+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 printf "%s\n" "$AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_AR+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 printf "%s\n" "$ac_ct_AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${AR_FLAGS=cru} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 printf %s "checking for archiver @FILE support... " >&6; } if test ${lt_cv_ar_at_file+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 printf "%s\n" "$lt_cv_ar_at_file" >&6; } if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 printf "%s\n" "$STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_STRIP+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 printf "%s\n" "$ac_ct_STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_RANLIB+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 printf "%s\n" "$RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_RANLIB+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 printf "%s\n" "$ac_ct_RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in bitrig* | openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 printf %s "checking command to parse $NM output from $compiler object... " >&6; } if test ${lt_cv_sys_global_symbol_pipe+y} then : printf %s "(cached) " >&6 else $as_nop # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_save_CFLAGS else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: failed" >&5 printf "%s\n" "failed" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ok" >&5 printf "%s\n" "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 printf %s "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test ${with_sysroot+y} then : withval=$with_sysroot; else $as_nop with_sysroot=no fi lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 printf "%s\n" "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 printf "%s\n" "${lt_sysroot:-no}" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 printf %s "checking for a working dd... " >&6; } if test ${ac_cv_path_lt_DD+y} then : printf %s "(cached) " >&6 else $as_nop printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in dd do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 printf "%s\n" "$ac_cv_path_lt_DD" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 printf %s "checking how to truncate binary pipes... " >&6; } if test ${lt_cv_truncate_bin+y} then : printf %s "(cached) " >&6 else $as_nop printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 printf "%s\n" "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test ${enable_libtool_lock+y} then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `/usr/bin/file conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `/usr/bin/file conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `/usr/bin/file conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) case `/usr/bin/file conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS=$CFLAGS CFLAGS="$CFLAGS -belf" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 printf %s "checking whether the C compiler needs -belf... " >&6; } if test ${lt_cv_cc_needs_belf+y} then : printf %s "(cached) " >&6 else $as_nop ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_cv_cc_needs_belf=yes else $as_nop lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 printf "%s\n" "$lt_cv_cc_needs_belf" >&6; } if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_MANIFEST_TOOL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 printf "%s\n" "$MANIFEST_TOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_MANIFEST_TOOL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 printf "%s\n" "$ac_ct_MANIFEST_TOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 printf %s "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if test ${lt_cv_path_mainfest_tool+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_path_mainfest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_mainfest_tool=yes fi rm -f conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 printf "%s\n" "$lt_cv_path_mainfest_tool" >&6; } if test yes != "$lt_cv_path_mainfest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_DSYMUTIL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 printf "%s\n" "$DSYMUTIL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_DSYMUTIL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 printf "%s\n" "$ac_ct_DSYMUTIL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_NMEDIT+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 printf "%s\n" "$NMEDIT" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_NMEDIT+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 printf "%s\n" "$ac_ct_NMEDIT" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_LIPO+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 printf "%s\n" "$LIPO" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_LIPO+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 printf "%s\n" "$ac_ct_LIPO" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_OTOOL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 printf "%s\n" "$OTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_OTOOL+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 printf "%s\n" "$ac_ct_OTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_OTOOL64+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 printf "%s\n" "$OTOOL64" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_OTOOL64+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 printf "%s\n" "$ac_ct_OTOOL64" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 printf %s "checking for -single_module linker flag... " >&6; } if test ${lt_cv_apple_cc_single_mod+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 printf "%s\n" "$lt_cv_apple_cc_single_mod" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 printf %s "checking for -exported_symbols_list linker flag... " >&6; } if test ${lt_cv_ld_exported_symbols_list+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_cv_ld_exported_symbols_list=yes else $as_nop lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 printf "%s\n" "$lt_cv_ld_exported_symbols_list" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 printf %s "checking for -force_load linker flag... " >&6; } if test ${lt_cv_ld_force_load+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR cru libconftest.a conftest.o" >&5 $AR cru libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main() { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 printf "%s\n" "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) case ${MACOSX_DEPLOYMENT_TARGET},$host in 10.[012],*|,*powerpc*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; *) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } ac_header= ac_cache= for ac_item in $ac_header_c_list do if test $ac_cache; then ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default" if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then printf "%s\n" "#define $ac_item 1" >> confdefs.h fi ac_header= ac_cache= elif test $ac_header; then ac_cache=$ac_item else ac_header=$ac_item fi done if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes then : printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes then : printf "%s\n" "#define HAVE_DLFCN_H 1" >>confdefs.h fi func_stripname_cnf () { case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED "s%^$1%%; s%$2\$%%"`;; esac } # func_stripname_cnf # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test ${enable_shared+y} then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS=$lt_save_ifs ;; esac else $as_nop enable_shared=yes fi # Check whether --with-pic was given. if test ${with_pic+y} then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac else $as_nop pic_mode=default fi # Check whether --enable-fast-install was given. if test ${enable_fast_install+y} then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for pkg in $enableval; do IFS=$lt_save_ifs if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS=$lt_save_ifs ;; esac else $as_nop enable_fast_install=yes fi shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 printf %s "checking which variant of shared library versioning to provide... " >&6; } # Check whether --with-aix-soname was given. if test ${with_aix_soname+y} then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else $as_nop if test ${lt_cv_with_aix_soname+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_with_aix_soname=aix fi with_aix_soname=$lt_cv_with_aix_soname fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 printf "%s\n" "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 printf %s "checking for objdir... " >&6; } if test ${lt_cv_objdir+y} then : printf %s "(cached) " >&6 else $as_nop rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 printf "%s\n" "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir printf "%s\n" "#define LT_OBJDIR \"$lt_cv_objdir/\"" >>confdefs.h case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o func_cc_basename $compiler cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 printf %s "checking for ${ac_tool_prefix}file... " >&6; } if test ${lt_cv_path_MAGIC_CMD+y} then : printf %s "(cached) " >&6 else $as_nop case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/${ac_tool_prefix}file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 printf "%s\n" "$MAGIC_CMD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for file" >&5 printf %s "checking for file... " >&6; } if test ${lt_cv_path_MAGIC_CMD+y} then : printf %s "(cached) " >&6 else $as_nop case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD=$MAGIC_CMD lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/file"; then lt_cv_path_MAGIC_CMD=$ac_dir/"file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD=$lt_cv_path_MAGIC_CMD if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 printf "%s\n" "$MAGIC_CMD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC=$CC ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 printf %s "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if test ${lt_cv_prog_compiler_rtti_exceptions+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 printf "%s\n" "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 printf %s "checking for $compiler option to produce PIC... " >&6; } if test ${lt_cv_prog_compiler_pic+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 printf %s "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if test ${lt_cv_prog_compiler_pic_works+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic_works" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works"; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 printf %s "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if test ${lt_cv_prog_compiler_static_works+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_static_works=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 printf "%s\n" "$lt_cv_prog_compiler_static_works" >&6; } if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 printf %s "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test ${lt_cv_prog_compiler_c_o+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 printf "%s\n" "$lt_cv_prog_compiler_c_o" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 printf %s "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test ${lt_cv_prog_compiler_c_o+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 printf "%s\n" "$lt_cv_prog_compiler_c_o" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 printf %s "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 printf "%s\n" "$hard_links" >&6; } if test no = "$hard_links"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 printf "%s\n" "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 printf %s "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ' (' and ')$', so one must not match beginning or # end of line. Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc', # as well as any symbol that contains 'd'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd* | bitrig*) with_gnu_ld=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='$wl' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='$wl--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/(^)\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='$wl--export-all-symbols' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=yes ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test no = "$ld_shlibs"; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if test ${lt_cv_aix_libpath_+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if test ${lt_cv_aix_libpath_+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath_ fi hardcode_libdir_flag_spec='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' $wl-bernotok' allow_undefined_flag=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl*) # Native MSVC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC wrapper hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 printf %s "checking if $CC understands -b... " >&6; } if test ${lt_cv_prog_compiler__b+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler__b=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 printf "%s\n" "$lt_cv_prog_compiler__b" >&6; } if test yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='$wl-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 printf %s "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if test ${lt_cv_irix_exported_symbol+y} then : printf %s "(cached) " >&6 else $as_nop save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_cv_irix_exported_symbol=yes else $as_nop lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 printf "%s\n" "$lt_cv_irix_exported_symbol" >&6; } if test yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='$wl-rpath,$libdir' export_dynamic_flag_spec='$wl-E' else archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes ;; osf3*) if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='$wl-z,text' allow_undefined_flag='$wl-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then archive_cmds='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 printf "%s\n" "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 printf %s "checking whether -lc should be explicitly linked in... " >&6; } if test ${lt_cv_archive_cmds_need_lc+y} then : printf %s "(cached) " >&6 else $as_nop $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 printf "%s\n" "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 printf %s "checking dynamic linker characteristics... " >&6; } if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /Users/birby/homebrew/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /Users/birby/homebrew/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec='/Users/birby/homebrew/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /Users/birby/homebrew/lib/hpux32 /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /Users/birby/homebrew/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /Users/birby/homebrew/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if test ${lt_cv_shlibpath_overrides_runpath+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /Users/birby/homebrew/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/Users/birby/homebrew/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 printf "%s\n" "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 printf %s "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 printf "%s\n" "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen=load_add_on lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen=LoadLibrary lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen=dlopen lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 printf %s "checking for dlopen in -ldl... " >&6; } if test ${ac_cv_lib_dl_dlopen+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char dlopen (); int main (void) { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dl_dlopen=yes else $as_nop ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 printf "%s\n" "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else $as_nop lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes then : lt_cv_dlopen=shl_load else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 printf %s "checking for shl_load in -ldld... " >&6; } if test ${ac_cv_lib_dld_shl_load+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char shl_load (); int main (void) { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dld_shl_load=yes else $as_nop ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 printf "%s\n" "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes then : lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else $as_nop ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes then : lt_cv_dlopen=dlopen else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 printf %s "checking for dlopen in -ldl... " >&6; } if test ${ac_cv_lib_dl_dlopen+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char dlopen (); int main (void) { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dl_dlopen=yes else $as_nop ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 printf "%s\n" "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 printf %s "checking for dlopen in -lsvld... " >&6; } if test ${ac_cv_lib_svld_dlopen+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char dlopen (); int main (void) { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_svld_dlopen=yes else $as_nop ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 printf "%s\n" "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else $as_nop { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 printf %s "checking for dld_link in -ldld... " >&6; } if test ${ac_cv_lib_dld_dld_link+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ char dld_link (); int main (void) { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dld_dld_link=yes else $as_nop ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 printf "%s\n" "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes then : lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi fi fi fi fi fi ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS=$LDFLAGS wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS=$LIBS LIBS="$lt_cv_dlopen_libs $LIBS" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 printf %s "checking whether a program can dlopen itself... " >&6; } if test ${lt_cv_dlopen_self+y} then : printf %s "(cached) " >&6 else $as_nop if test yes = "$cross_compiling"; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 printf "%s\n" "$lt_cv_dlopen_self" >&6; } if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 printf %s "checking whether a statically linked program can dlopen itself... " >&6; } if test ${lt_cv_dlopen_self_static+y} then : printf %s "(cached) " >&6 else $as_nop if test yes = "$cross_compiling"; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord () __attribute__((visibility("default"))); #endif int fnord () { return 42; } int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else { if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "conftest$ac_exeext" 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 printf "%s\n" "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS=$save_CPPFLAGS LDFLAGS=$save_LDFLAGS LIBS=$save_LIBS ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 printf %s "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP"; then striplib="$STRIP -x" old_striplib="$STRIP -S" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi ;; *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi # Report what library types will actually be built { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 printf %s "checking if libtool supports shared libraries... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 printf "%s\n" "$can_build_shared" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 printf %s "checking whether to build shared libraries... " >&6; } test no = "$can_build_shared" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 printf "%s\n" "$enable_shared" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 printf %s "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 printf "%s\n" "$enable_static" >&6; } fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu CC=$lt_save_CC if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 printf %s "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if test ${ac_cv_prog_CXXCPP+y} then : printf %s "(cached) " >&6 else $as_nop # Double quotes because $CXX needs to be expanded for CXXCPP in "$CXX -E" cpp /lib/cpp do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO" then : else $as_nop # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO" then : # Broken: success on invalid input. continue else $as_nop # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok then : break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 printf "%s\n" "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO" then : else $as_nop # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO" then : # Broken: success on invalid input. continue else $as_nop # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok then : else $as_nop { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu else _lt_caught_CXX_error=yes fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= compiler_needs_object_CXX=no export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no inherit_rpath_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds reload_flag_CXX=$reload_flag reload_cmds_CXX=$reload_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_CFLAGS=$CFLAGS lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} CFLAGS=$CXXFLAGS compiler=$CC compiler_CXX=$CC func_cc_basename $compiler cc_basename=$func_cc_basename_result if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test ${with_gnu_ld+y} then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else $as_nop with_gnu_ld=no fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 printf %s "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return, which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD=$ac_prog ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test yes = "$with_gnu_ld"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 printf %s "checking for GNU ld... " >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 printf %s "checking for non-GNU ld... " >&6; } fi if test ${lt_cv_path_LD+y} then : printf %s "(cached) " >&6 else $as_nop if test -z "$LD"; then lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS=$lt_save_ifs test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD=$ac_dir/$ac_prog # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 printf "%s\n" "$LD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 printf %s "checking if the linker ($LD) is GNU ld... " >&6; } if test ${lt_cv_prog_gnu_ld+y} then : printf %s "(cached) " >&6 else $as_nop # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 printf "%s\n" "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test yes = "$with_gnu_ld"; then archive_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='$wl' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 printf %s "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test ia64 = "$host_cpu"; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag= else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes file_list_spec_CXX='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no ;; esac if test yes = "$GXX"; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`$CC -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec_CXX='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. no_undefined_flag_CXX='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if test ${lt_cv_aix_libpath__CXX+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO" then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then hardcode_libdir_flag_spec_CXX='$wl-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\$wl$no_entry_flag"' $compiler_flags $wl$allow_undefined_flag '"\$wl$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if test ${lt_cv_aix_libpath__CXX+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO" then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath__CXX=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath__CXX"; then lt_cv_aix_libpath__CXX=/usr/lib:/lib fi fi aix_libpath=$lt_cv_aix_libpath__CXX fi hardcode_libdir_flag_spec_CXX='$wl-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' $wl-bernotok' allow_undefined_flag_CXX=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' fi archive_cmds_need_lc_CXX=yes archive_expsym_cmds_CXX='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds_CXX="$archive_expsym_cmds_CXX"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl*) # Native MSVC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec_CXX=' ' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=yes file_list_spec_CXX='@' # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=.dll # FIXME: Setting linknames here is a bad hack. archive_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, CXX)='true' enable_shared_with_static_runtimes_CXX=yes # Don't use ranlib old_postinstall_cmds_CXX='chmod 644 $oldlib' postlink_cmds_CXX='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' export_dynamic_flag_spec_CXX='$wl--export-all-symbols' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds_CXX='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec_CXX='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec_CXX='' fi link_all_deplibs_CXX=yes allow_undefined_flag_CXX=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds_CXX="sed -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" if test yes != "$lt_cv_apple_cc_single_mod"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dsymutil" archive_expsym_cmds_CXX="sed 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \$lib-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$lib-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring$_lt_dar_export_syms$_lt_dsymutil" fi else ld_shlibs_CXX=no fi ;; os2*) hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_minus_L_CXX=yes allow_undefined_flag_CXX=unsupported shrext_cmds=.dll archive_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds_CXX='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_From_new_cmds_CXX='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes_CXX=yes ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; haiku*) archive_cmds_CXX='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs_CXX=yes ;; hpux9*) hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='$wl-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec_CXX='$wl+b $wl$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-h,$soname $wl--retain-symbols-file,$output_objdir/$soname.expsym $wl--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib $wl-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5].* | *pgcpp\ [1-5].*) prelink_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='$wl--rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' whole_archive_flag_spec_CXX='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib $wl-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' export_dynamic_flag_spec_CXX='$wl--export-dynamic' archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) ld_shlibs_CXX=yes ;; openbsd* | bitrig*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='$wl-E' whole_archive_flag_spec_CXX=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else ld_shlibs_CXX=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\$tempext\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) case $host in osf3*) allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname $wl-input $wl$lib.exp `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib~ $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then allow_undefined_flag_CXX=' $wl-expect_unresolved $wl\*' case $host in osf3*) archive_cmds_CXX='$CC -shared -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='$wl-rpath $wl$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G$allow_undefined_flag $wl-M $wl$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='func_echo_all' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then no_undefined_flag_CXX=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"' fi hardcode_libdir_flag_spec_CXX='$wl-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='$wl-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We CANNOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_CXX='$wl-z,text' allow_undefined_flag_CXX='$wl-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='$wl-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' old_archive_cmds_CXX='$CC -Tprelink_objects $oldobjs~ '"$old_archive_cmds_CXX" reload_cmds_CXX='$CC -Tprelink_objects $reload_objs~ '"$reload_cmds_CXX" ;; *) archive_cmds_CXX='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 printf "%s\n" "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no GCC_CXX=$GXX LD_CXX=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test x-L = "$p" || test x-R = "$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev in -L | -R) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX=$prev$p else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} $prev$p" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX=$prev$p else postdeps_CXX="${postdeps_CXX} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test no = "$pre_test_object_deps_done"; then if test -z "$predep_objects_CXX"; then predep_objects_CXX=$p else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX=$p else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken case $host_os in interix[3-9]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi lt_prog_compiler_pic_CXX='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_CXX='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the '-m68020' flag to GCC prevents building anything better, # like '-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static_CXX='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static_CXX= ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; xlc* | xlC* | bgxl[cC]* | mpixl[cC]*) # IBM XL 8.0, 9.0 on PPC and BlueGene lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-qpic' lt_prog_compiler_static_CXX='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd*) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 printf %s "checking for $compiler option to produce PIC... " >&6; } if test ${lt_cv_prog_compiler_pic_CXX+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic_CXX" >&6; } lt_prog_compiler_pic_CXX=$lt_cv_prog_compiler_pic_CXX # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 printf %s "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if test ${lt_cv_prog_compiler_pic_works_CXX+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" ## exclude from sc_useless_quotes_in_assignment # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works_CXX"; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 printf %s "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if test ${lt_cv_prog_compiler_static_works_CXX+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_static_works_CXX=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 printf "%s\n" "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test yes = "$lt_cv_prog_compiler_static_works_CXX"; then : else lt_prog_compiler_static_CXX= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 printf %s "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test ${lt_cv_prog_compiler_c_o_CXX+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 printf "%s\n" "$lt_cv_prog_compiler_c_o_CXX" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 printf %s "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test ${lt_cv_prog_compiler_c_o_CXX+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 printf "%s\n" "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o_CXX" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 printf %s "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 printf "%s\n" "$hard_links" >&6; } if test no = "$hard_links"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 printf "%s\n" "$as_me: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 printf %s "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX=$ltdll_cmds ;; cygwin* | mingw* | cegcc*) case $cc_basename in cl*) exclude_expsyms_CXX='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms_CXX='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' ;; esac ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 printf "%s\n" "$ld_shlibs_CXX" >&6; } test no = "$ld_shlibs_CXX" && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test yes,yes = "$GCC,$enable_shared"; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 printf %s "checking whether -lc should be explicitly linked in... " >&6; } if test ${lt_cv_archive_cmds_need_lc_CXX+y} then : printf %s "(cached) " >&6 else $as_nop $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc_CXX=no else lt_cv_archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 printf "%s\n" "$lt_cv_archive_cmds_need_lc_CXX" >&6; } archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX ;; esac fi ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 printf %s "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=.so postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='$libname$release$shared_ext$major' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; then # AIX 5 supports IA64 library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line '#! .'. This would cause the generated library to # depend on '.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /Users/birby/homebrew/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; esac dynamic_linker='Win32 ld.exe' ;; *,cl*) # Native MSVC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='$libname$release$major$shared_ext $libname$shared_ext' soname_spec='$libname$release$major$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/Users/birby/homebrew/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[23].*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2.*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib' hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' if test 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /Users/birby/homebrew/lib/hpux32 /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /Users/birby/homebrew/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555, ... postinstall_cmds='chmod 555 $lib' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /Users/birby/homebrew/lib$libsuff" sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes dynamic_linker='Android linker' # Don't embed -rpath directories since the linker doesn't support them. hardcode_libdir_flag_spec_CXX='-L$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH if test ${lt_cv_shlibpath_overrides_runpath+y} then : printf %s "(cached) " >&6 else $as_nop lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO" then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Ideally, we could use ldconfig to report *all* directores which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;s/"//g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd* | bitrig*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /Users/birby/homebrew/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='$libname$release$shared_ext$major' library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /Users/birby/homebrew/lib /var/shlib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec; then version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext' soname_spec='$libname$shared_ext.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=sco need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/Users/birby/homebrew/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 printf "%s\n" "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 printf %s "checking how to hardcode library paths into programs... " >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || test yes = "$hardcode_automatic_CXX"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct_CXX" && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" && test no != "$hardcode_minus_L_CXX"; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 printf "%s\n" "$hardcode_action_CXX" >&6; } if test relink = "$hardcode_action_CXX" || test yes = "$inherit_rpath_CXX"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test yes != "$_lt_caught_CXX_error" ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_config_commands="$ac_config_commands libtool" # Only expand once: # Extract the first word of "$CXX", so it can be a program name with args. set dummy $CXX; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_pfk_cxx_lib_path+y} then : printf %s "(cached) " >&6 else $as_nop case $pfk_cxx_lib_path in [\\/]* | ?:[\\/]*) ac_cv_path_pfk_cxx_lib_path="$pfk_cxx_lib_path" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_pfk_cxx_lib_path="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_pfk_cxx_lib_path" && ac_cv_path_pfk_cxx_lib_path="$CXX " ;; esac fi pfk_cxx_lib_path=$ac_cv_path_pfk_cxx_lib_path if test -n "$pfk_cxx_lib_path"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $pfk_cxx_lib_path" >&5 printf "%s\n" "$pfk_cxx_lib_path" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking standard C++ library path" >&5 printf %s "checking standard C++ library path... " >&6; } CXX_LIB_PATH=`dirname $pfk_cxx_lib_path | sed -e "s/bin/lib/"` { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CXX_LIB_PATH " >&5 printf "%s\n" "$CXX_LIB_PATH " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking maximum warning verbosity option" >&5 printf %s "checking maximum warning verbosity option... " >&6; } if test -n "$CXX" then if test "$GXX" = "yes" then ac_compile_warnings_opt='-Wall' elif test "$CXX" = "CC" then ac_compile_warnings_opt='+w2' fi CXXFLAGS="$CXXFLAGS $ac_compile_warnings_opt" ac_compile_warnings_msg="$ac_compile_warnings_opt for C++" fi if test -n "$CC" then if test "$GCC" = "yes" then ac_compile_warnings_opt='-Wall' fi CFLAGS="$CFLAGS $ac_compile_warnings_opt" ac_compile_warnings_msg="$ac_compile_warnings_msg $ac_compile_warnings_opt for C" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_compile_warnings_msg" >&5 printf "%s\n" "$ac_compile_warnings_msg" >&6; } unset ac_compile_warnings_msg unset ac_compile_warnings_opt #AC_COMPILE_ANSI # AX_CXX_COMPILE_STDCXX(VERSION, [ext|noext], [mandatory|optional]) ax_cxx_compile_alternatives="14 1y" ax_cxx_compile_cxx14_required=true ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ac_success=no { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++14 features by default" >&5 printf %s "checking whether $CXX supports C++14 features by default... " >&6; } if test ${ax_cv_cxx_compile_cxx14+y} then : printf %s "(cached) " >&6 else $as_nop cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ // If the compiler admits that it is not ready for C++11, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201103L #error "This is not a C++11 compiler" #else namespace cxx11 { namespace test_static_assert { template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; } namespace test_final_override { struct Base { virtual ~Base() {} virtual void f() {} }; struct Derived : public Base { virtual ~Derived() override {} virtual void f() override {} }; } namespace test_double_right_angle_brackets { template < typename T > struct check {}; typedef check single_type; typedef check> double_type; typedef check>> triple_type; typedef check>>> quadruple_type; } namespace test_decltype { int f() { int a = 1; decltype(a) b = 2; return a + b; } } namespace test_type_deduction { template < typename T1, typename T2 > struct is_same { static const bool value = false; }; template < typename T > struct is_same { static const bool value = true; }; template < typename T1, typename T2 > auto add(T1 a1, T2 a2) -> decltype(a1 + a2) { return a1 + a2; } int test(const int c, volatile int v) { static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == false, ""); auto ac = c; auto av = v; auto sumi = ac + av + 'x'; auto sumf = ac + av + 1.0; static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == true, ""); return (sumf > 0.0) ? sumi : add(c, v); } } namespace test_noexcept { int f() { return 0; } int g() noexcept { return 0; } static_assert(noexcept(f()) == false, ""); static_assert(noexcept(g()) == true, ""); } namespace test_constexpr { template < typename CharT > unsigned long constexpr strlen_c_r(const CharT *const s, const unsigned long acc) noexcept { return *s ? strlen_c_r(s + 1, acc + 1) : acc; } template < typename CharT > unsigned long constexpr strlen_c(const CharT *const s) noexcept { return strlen_c_r(s, 0UL); } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("1") == 1UL, ""); static_assert(strlen_c("example") == 7UL, ""); static_assert(strlen_c("another\0example") == 7UL, ""); } namespace test_rvalue_references { template < int N > struct answer { static constexpr int value = N; }; answer<1> f(int&) { return answer<1>(); } answer<2> f(const int&) { return answer<2>(); } answer<3> f(int&&) { return answer<3>(); } void test() { int i = 0; const int c = 0; static_assert(decltype(f(i))::value == 1, ""); static_assert(decltype(f(c))::value == 2, ""); static_assert(decltype(f(0))::value == 3, ""); } } namespace test_uniform_initialization { struct test { static const int zero {}; static const int one {1}; }; static_assert(test::zero == 0, ""); static_assert(test::one == 1, ""); } namespace test_lambdas { void test1() { auto lambda1 = [](){}; auto lambda2 = lambda1; lambda1(); lambda2(); } int test2() { auto a = [](int i, int j){ return i + j; }(1, 2); auto b = []() -> int { return '0'; }(); auto c = [=](){ return a + b; }(); auto d = [&](){ return c; }(); auto e = [a, &b](int x) mutable { const auto identity = [](int y){ return y; }; for (auto i = 0; i < a; ++i) a += b--; return x + identity(a + b); }(0); return a + b + c + d + e; } int test3() { const auto nullary = [](){ return 0; }; const auto unary = [](int x){ return x; }; using nullary_t = decltype(nullary); using unary_t = decltype(unary); const auto higher1st = [](nullary_t f){ return f(); }; const auto higher2nd = [unary](nullary_t f1){ return [unary, f1](unary_t f2){ return f2(unary(f1())); }; }; return higher1st(nullary) + higher2nd(nullary)(unary); } } namespace test_variadic_templates { template struct sum; template struct sum { static constexpr auto value = N0 + sum::value; }; template <> struct sum<> { static constexpr auto value = 0; }; static_assert(sum<>::value == 0, ""); static_assert(sum<1>::value == 1, ""); static_assert(sum<23>::value == 23, ""); static_assert(sum<1, 2>::value == 3, ""); static_assert(sum<5, 5, 11>::value == 21, ""); static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); } // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function // because of this. namespace test_template_alias_sfinae { struct foo {}; template using member = typename T::member_type; template void func(...) {} template void func(member*) {} void test(); void test() { func(0); } } } // namespace cxx11 #endif // __cplusplus >= 201103L // If the compiler admits that it is not ready for C++14, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201402L #error "This is not a C++14 compiler" #else namespace cxx14 { namespace test_polymorphic_lambdas { int test() { const auto lambda = [](auto&&... args){ const auto istiny = [](auto x){ return (sizeof(x) == 1UL) ? 1 : 0; }; const int aretiny[] = { istiny(args)... }; return aretiny[0]; }; return lambda(1, 1L, 1.0f, '1'); } } namespace test_binary_literals { constexpr auto ivii = 0b0000000000101010; static_assert(ivii == 42, "wrong value"); } namespace test_generalized_constexpr { template < typename CharT > constexpr unsigned long strlen_c(const CharT *const s) noexcept { auto length = 0UL; for (auto p = s; *p; ++p) ++length; return length; } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("x") == 1UL, ""); static_assert(strlen_c("test") == 4UL, ""); static_assert(strlen_c("another\0test") == 7UL, ""); } namespace test_lambda_init_capture { int test() { auto x = 0; const auto lambda1 = [a = x](int b){ return a + b; }; const auto lambda2 = [a = lambda1(x)](){ return a; }; return lambda2(); } } namespace test_digit_separators { constexpr auto ten_million = 100'000'000; static_assert(ten_million == 100000000, ""); } namespace test_return_type_deduction { auto f(int& x) { return x; } decltype(auto) g(int& x) { return x; } template < typename T1, typename T2 > struct is_same { static constexpr auto value = false; }; template < typename T > struct is_same { static constexpr auto value = true; }; int test() { auto x = 0; static_assert(is_same::value, ""); static_assert(is_same::value, ""); return x; } } } // namespace cxx14 #endif // __cplusplus >= 201402L _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : ax_cv_cxx_compile_cxx14=yes else $as_nop ax_cv_cxx_compile_cxx14=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_compile_cxx14" >&5 printf "%s\n" "$ax_cv_cxx_compile_cxx14" >&6; } if test x$ax_cv_cxx_compile_cxx14 = xyes; then ac_success=yes fi if test x$ac_success = xno; then for alternative in ${ax_cxx_compile_alternatives}; do switch="-std=gnu++${alternative}" cachevar=`printf "%s\n" "ax_cv_cxx_compile_cxx14_$switch" | $as_tr_sh` { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++14 features with $switch" >&5 printf %s "checking whether $CXX supports C++14 features with $switch... " >&6; } if eval test \${$cachevar+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_CXX="$CXX" CXX="$CXX $switch" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ // If the compiler admits that it is not ready for C++11, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201103L #error "This is not a C++11 compiler" #else namespace cxx11 { namespace test_static_assert { template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; } namespace test_final_override { struct Base { virtual ~Base() {} virtual void f() {} }; struct Derived : public Base { virtual ~Derived() override {} virtual void f() override {} }; } namespace test_double_right_angle_brackets { template < typename T > struct check {}; typedef check single_type; typedef check> double_type; typedef check>> triple_type; typedef check>>> quadruple_type; } namespace test_decltype { int f() { int a = 1; decltype(a) b = 2; return a + b; } } namespace test_type_deduction { template < typename T1, typename T2 > struct is_same { static const bool value = false; }; template < typename T > struct is_same { static const bool value = true; }; template < typename T1, typename T2 > auto add(T1 a1, T2 a2) -> decltype(a1 + a2) { return a1 + a2; } int test(const int c, volatile int v) { static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == false, ""); auto ac = c; auto av = v; auto sumi = ac + av + 'x'; auto sumf = ac + av + 1.0; static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == true, ""); return (sumf > 0.0) ? sumi : add(c, v); } } namespace test_noexcept { int f() { return 0; } int g() noexcept { return 0; } static_assert(noexcept(f()) == false, ""); static_assert(noexcept(g()) == true, ""); } namespace test_constexpr { template < typename CharT > unsigned long constexpr strlen_c_r(const CharT *const s, const unsigned long acc) noexcept { return *s ? strlen_c_r(s + 1, acc + 1) : acc; } template < typename CharT > unsigned long constexpr strlen_c(const CharT *const s) noexcept { return strlen_c_r(s, 0UL); } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("1") == 1UL, ""); static_assert(strlen_c("example") == 7UL, ""); static_assert(strlen_c("another\0example") == 7UL, ""); } namespace test_rvalue_references { template < int N > struct answer { static constexpr int value = N; }; answer<1> f(int&) { return answer<1>(); } answer<2> f(const int&) { return answer<2>(); } answer<3> f(int&&) { return answer<3>(); } void test() { int i = 0; const int c = 0; static_assert(decltype(f(i))::value == 1, ""); static_assert(decltype(f(c))::value == 2, ""); static_assert(decltype(f(0))::value == 3, ""); } } namespace test_uniform_initialization { struct test { static const int zero {}; static const int one {1}; }; static_assert(test::zero == 0, ""); static_assert(test::one == 1, ""); } namespace test_lambdas { void test1() { auto lambda1 = [](){}; auto lambda2 = lambda1; lambda1(); lambda2(); } int test2() { auto a = [](int i, int j){ return i + j; }(1, 2); auto b = []() -> int { return '0'; }(); auto c = [=](){ return a + b; }(); auto d = [&](){ return c; }(); auto e = [a, &b](int x) mutable { const auto identity = [](int y){ return y; }; for (auto i = 0; i < a; ++i) a += b--; return x + identity(a + b); }(0); return a + b + c + d + e; } int test3() { const auto nullary = [](){ return 0; }; const auto unary = [](int x){ return x; }; using nullary_t = decltype(nullary); using unary_t = decltype(unary); const auto higher1st = [](nullary_t f){ return f(); }; const auto higher2nd = [unary](nullary_t f1){ return [unary, f1](unary_t f2){ return f2(unary(f1())); }; }; return higher1st(nullary) + higher2nd(nullary)(unary); } } namespace test_variadic_templates { template struct sum; template struct sum { static constexpr auto value = N0 + sum::value; }; template <> struct sum<> { static constexpr auto value = 0; }; static_assert(sum<>::value == 0, ""); static_assert(sum<1>::value == 1, ""); static_assert(sum<23>::value == 23, ""); static_assert(sum<1, 2>::value == 3, ""); static_assert(sum<5, 5, 11>::value == 21, ""); static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); } // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function // because of this. namespace test_template_alias_sfinae { struct foo {}; template using member = typename T::member_type; template void func(...) {} template void func(member*) {} void test(); void test() { func(0); } } } // namespace cxx11 #endif // __cplusplus >= 201103L // If the compiler admits that it is not ready for C++14, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201402L #error "This is not a C++14 compiler" #else namespace cxx14 { namespace test_polymorphic_lambdas { int test() { const auto lambda = [](auto&&... args){ const auto istiny = [](auto x){ return (sizeof(x) == 1UL) ? 1 : 0; }; const int aretiny[] = { istiny(args)... }; return aretiny[0]; }; return lambda(1, 1L, 1.0f, '1'); } } namespace test_binary_literals { constexpr auto ivii = 0b0000000000101010; static_assert(ivii == 42, "wrong value"); } namespace test_generalized_constexpr { template < typename CharT > constexpr unsigned long strlen_c(const CharT *const s) noexcept { auto length = 0UL; for (auto p = s; *p; ++p) ++length; return length; } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("x") == 1UL, ""); static_assert(strlen_c("test") == 4UL, ""); static_assert(strlen_c("another\0test") == 7UL, ""); } namespace test_lambda_init_capture { int test() { auto x = 0; const auto lambda1 = [a = x](int b){ return a + b; }; const auto lambda2 = [a = lambda1(x)](){ return a; }; return lambda2(); } } namespace test_digit_separators { constexpr auto ten_million = 100'000'000; static_assert(ten_million == 100000000, ""); } namespace test_return_type_deduction { auto f(int& x) { return x; } decltype(auto) g(int& x) { return x; } template < typename T1, typename T2 > struct is_same { static constexpr auto value = false; }; template < typename T > struct is_same { static constexpr auto value = true; }; int test() { auto x = 0; static_assert(is_same::value, ""); static_assert(is_same::value, ""); return x; } } } // namespace cxx14 #endif // __cplusplus >= 201402L _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : eval $cachevar=yes else $as_nop eval $cachevar=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext CXX="$ac_save_CXX" fi eval ac_res=\$$cachevar { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } if eval test x\$$cachevar = xyes; then CXX="$CXX $switch" if test -n "$CXXCPP" ; then CXXCPP="$CXXCPP $switch" fi ac_success=yes break fi done fi if test x$ac_success = xno; then for alternative in ${ax_cxx_compile_alternatives}; do for switch in -std=c++${alternative} +std=c++${alternative} "-h std=c++${alternative}"; do cachevar=`printf "%s\n" "ax_cv_cxx_compile_cxx14_$switch" | $as_tr_sh` { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CXX supports C++14 features with $switch" >&5 printf %s "checking whether $CXX supports C++14 features with $switch... " >&6; } if eval test \${$cachevar+y} then : printf %s "(cached) " >&6 else $as_nop ac_save_CXX="$CXX" CXX="$CXX $switch" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ // If the compiler admits that it is not ready for C++11, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201103L #error "This is not a C++11 compiler" #else namespace cxx11 { namespace test_static_assert { template struct check { static_assert(sizeof(int) <= sizeof(T), "not big enough"); }; } namespace test_final_override { struct Base { virtual ~Base() {} virtual void f() {} }; struct Derived : public Base { virtual ~Derived() override {} virtual void f() override {} }; } namespace test_double_right_angle_brackets { template < typename T > struct check {}; typedef check single_type; typedef check> double_type; typedef check>> triple_type; typedef check>>> quadruple_type; } namespace test_decltype { int f() { int a = 1; decltype(a) b = 2; return a + b; } } namespace test_type_deduction { template < typename T1, typename T2 > struct is_same { static const bool value = false; }; template < typename T > struct is_same { static const bool value = true; }; template < typename T1, typename T2 > auto add(T1 a1, T2 a2) -> decltype(a1 + a2) { return a1 + a2; } int test(const int c, volatile int v) { static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == false, ""); auto ac = c; auto av = v; auto sumi = ac + av + 'x'; auto sumf = ac + av + 1.0; static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == true, ""); static_assert(is_same::value == false, ""); static_assert(is_same::value == true, ""); return (sumf > 0.0) ? sumi : add(c, v); } } namespace test_noexcept { int f() { return 0; } int g() noexcept { return 0; } static_assert(noexcept(f()) == false, ""); static_assert(noexcept(g()) == true, ""); } namespace test_constexpr { template < typename CharT > unsigned long constexpr strlen_c_r(const CharT *const s, const unsigned long acc) noexcept { return *s ? strlen_c_r(s + 1, acc + 1) : acc; } template < typename CharT > unsigned long constexpr strlen_c(const CharT *const s) noexcept { return strlen_c_r(s, 0UL); } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("1") == 1UL, ""); static_assert(strlen_c("example") == 7UL, ""); static_assert(strlen_c("another\0example") == 7UL, ""); } namespace test_rvalue_references { template < int N > struct answer { static constexpr int value = N; }; answer<1> f(int&) { return answer<1>(); } answer<2> f(const int&) { return answer<2>(); } answer<3> f(int&&) { return answer<3>(); } void test() { int i = 0; const int c = 0; static_assert(decltype(f(i))::value == 1, ""); static_assert(decltype(f(c))::value == 2, ""); static_assert(decltype(f(0))::value == 3, ""); } } namespace test_uniform_initialization { struct test { static const int zero {}; static const int one {1}; }; static_assert(test::zero == 0, ""); static_assert(test::one == 1, ""); } namespace test_lambdas { void test1() { auto lambda1 = [](){}; auto lambda2 = lambda1; lambda1(); lambda2(); } int test2() { auto a = [](int i, int j){ return i + j; }(1, 2); auto b = []() -> int { return '0'; }(); auto c = [=](){ return a + b; }(); auto d = [&](){ return c; }(); auto e = [a, &b](int x) mutable { const auto identity = [](int y){ return y; }; for (auto i = 0; i < a; ++i) a += b--; return x + identity(a + b); }(0); return a + b + c + d + e; } int test3() { const auto nullary = [](){ return 0; }; const auto unary = [](int x){ return x; }; using nullary_t = decltype(nullary); using unary_t = decltype(unary); const auto higher1st = [](nullary_t f){ return f(); }; const auto higher2nd = [unary](nullary_t f1){ return [unary, f1](unary_t f2){ return f2(unary(f1())); }; }; return higher1st(nullary) + higher2nd(nullary)(unary); } } namespace test_variadic_templates { template struct sum; template struct sum { static constexpr auto value = N0 + sum::value; }; template <> struct sum<> { static constexpr auto value = 0; }; static_assert(sum<>::value == 0, ""); static_assert(sum<1>::value == 1, ""); static_assert(sum<23>::value == 23, ""); static_assert(sum<1, 2>::value == 3, ""); static_assert(sum<5, 5, 11>::value == 21, ""); static_assert(sum<2, 3, 5, 7, 11, 13>::value == 41, ""); } // http://stackoverflow.com/questions/13728184/template-aliases-and-sfinae // Clang 3.1 fails with headers of libstd++ 4.8.3 when using std::function // because of this. namespace test_template_alias_sfinae { struct foo {}; template using member = typename T::member_type; template void func(...) {} template void func(member*) {} void test(); void test() { func(0); } } } // namespace cxx11 #endif // __cplusplus >= 201103L // If the compiler admits that it is not ready for C++14, why torture it? // Hopefully, this will speed up the test. #ifndef __cplusplus #error "This is not a C++ compiler" #elif __cplusplus < 201402L #error "This is not a C++14 compiler" #else namespace cxx14 { namespace test_polymorphic_lambdas { int test() { const auto lambda = [](auto&&... args){ const auto istiny = [](auto x){ return (sizeof(x) == 1UL) ? 1 : 0; }; const int aretiny[] = { istiny(args)... }; return aretiny[0]; }; return lambda(1, 1L, 1.0f, '1'); } } namespace test_binary_literals { constexpr auto ivii = 0b0000000000101010; static_assert(ivii == 42, "wrong value"); } namespace test_generalized_constexpr { template < typename CharT > constexpr unsigned long strlen_c(const CharT *const s) noexcept { auto length = 0UL; for (auto p = s; *p; ++p) ++length; return length; } static_assert(strlen_c("") == 0UL, ""); static_assert(strlen_c("x") == 1UL, ""); static_assert(strlen_c("test") == 4UL, ""); static_assert(strlen_c("another\0test") == 7UL, ""); } namespace test_lambda_init_capture { int test() { auto x = 0; const auto lambda1 = [a = x](int b){ return a + b; }; const auto lambda2 = [a = lambda1(x)](){ return a; }; return lambda2(); } } namespace test_digit_separators { constexpr auto ten_million = 100'000'000; static_assert(ten_million == 100000000, ""); } namespace test_return_type_deduction { auto f(int& x) { return x; } decltype(auto) g(int& x) { return x; } template < typename T1, typename T2 > struct is_same { static constexpr auto value = false; }; template < typename T > struct is_same { static constexpr auto value = true; }; int test() { auto x = 0; static_assert(is_same::value, ""); static_assert(is_same::value, ""); return x; } } } // namespace cxx14 #endif // __cplusplus >= 201402L _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : eval $cachevar=yes else $as_nop eval $cachevar=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext CXX="$ac_save_CXX" fi eval ac_res=\$$cachevar { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } if eval test x\$$cachevar = xyes; then CXX="$CXX $switch" if test -n "$CXXCPP" ; then CXXCPP="$CXXCPP $switch" fi ac_success=yes break fi done if test x$ac_success = xyes; then break fi done fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test x$ax_cxx_compile_cxx14_required = xtrue; then if test x$ac_success = xno; then as_fn_error $? "*** A compiler with support for C++14 language features is required." "$LINENO" 5 fi fi if test x$ac_success = xno; then HAVE_CXX14=0 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: No compiler with C++14 support was found" >&5 printf "%s\n" "$as_me: No compiler with C++14 support was found" >&6;} else HAVE_CXX14=1 printf "%s\n" "#define HAVE_CXX14 1" >>confdefs.h fi # Extract the first word of "gmake", so it can be a program name with args. set dummy gmake; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_GMAKE+y} then : printf %s "(cached) " >&6 else $as_nop if test -n "$GMAKE"; then ac_cv_prog_GMAKE="$GMAKE" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_GMAKE="gmake" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_GMAKE" && ac_cv_prog_GMAKE="make" fi fi GMAKE=$ac_cv_prog_GMAKE if test -n "$GMAKE"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $GMAKE" >&5 printf "%s\n" "$GMAKE" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for main in -lstdc++" >&5 printf %s "checking for main in -lstdc++... " >&6; } if test ${ac_cv_lib_stdcpp_main+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lstdc++ $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ namespace conftest { extern "C" int main (); } int main (void) { return conftest::main (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO" then : ac_cv_lib_stdcpp_main=yes else $as_nop ac_cv_lib_stdcpp_main=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_stdcpp_main" >&5 printf "%s\n" "$ac_cv_lib_stdcpp_main" >&6; } if test "x$ac_cv_lib_stdcpp_main" = xyes then : LIBSTDCPP="lstdc++" else $as_nop LIBSTDCPP= fi # Check whether --with-cfitsio was given. if test ${with_cfitsio+y} then : withval=$with_cfitsio; with_cfitsio=$withval if test "${with_cfitsio}" != yes; then cfitsio_include="$withval/include" cfitsio_libdir="$withval/lib" fi else $as_nop cfitsio_include="/usr/local/cfitsio/include" cfitsio_libdir="/usr/local/cfitsio/lib" fi # Check whether --with-cfitsio-include was given. if test ${with_cfitsio_include+y} then : withval=$with_cfitsio_include; cfitsio_include="$withval" fi # Check whether --with-cfitsio-libdir was given. if test ${with_cfitsio_libdir+y} then : withval=$with_cfitsio_libdir; cfitsio_libdir="$withval" fi if test "${with_cfitsio}" != no ; then OLD_LIBS=$LIBS OLD_LDFLAGS=$LDFLAGS OLD_CPPFLAGS=$CPPFLAGS if test "${cfitsio_libdir}" ; then LDFLAGS="$LDFLAGS -L${cfitsio_libdir}" RDFLAGS="${cfitsio_libdir}" fi if test "${cfitsio_include}" ; then CPPFLAGS="$CPPFLAGS -I${cfitsio_include}" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ffpss in -lcfitsio" >&5 printf %s "checking for ffpss in -lcfitsio... " >&6; } if test ${ac_cv_lib_cfitsio_ffpss+y} then : printf %s "(cached) " >&6 else $as_nop ac_check_lib_save_LIBS=$LIBS LIBS="-lcfitsio $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ namespace conftest { extern "C" int ffpss (); } int main (void) { return conftest::ffpss (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO" then : ac_cv_lib_cfitsio_ffpss=yes else $as_nop ac_cv_lib_cfitsio_ffpss=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_cfitsio_ffpss" >&5 printf "%s\n" "$ac_cv_lib_cfitsio_ffpss" >&6; } if test "x$ac_cv_lib_cfitsio_ffpss" = xyes then : printf "%s\n" "#define HAVE_LIBCFITSIO 1" >>confdefs.h LIBS="-lcfitsio $LIBS" else $as_nop no_good=yes fi ac_fn_cxx_check_header_compile "$LINENO" "fitsio.h" "ac_cv_header_fitsio_h" "$ac_includes_default" if test "x$ac_cv_header_fitsio_h" = xyes then : else $as_nop no_good=yes fi if test "$no_good" = yes; then as_fn_error $? "cfitsio NOT found" "$LINENO" 5 LIBS=$OLD_LIBS LDFLAGS=$OLD_LDFLAGS CPPFLAGS=$OLD_CPPFLAGS else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: cfitsio found." >&5 printf "%s\n" "cfitsio found." >&6; } printf "%s\n" "#define HAVE_PKG_cfitsio 1" >>confdefs.h fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler implements namespaces" >&5 printf %s "checking whether the compiler implements namespaces... " >&6; } if test ${ax_cv_cxx_namespaces+y} then : printf %s "(cached) " >&6 else $as_nop ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ namespace Outer { namespace Inner { int i = 0; }} using namespace Outer::Inner; int foo(void) { return i;} _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : ax_cv_cxx_namespaces=yes else $as_nop ax_cv_cxx_namespaces=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_namespaces" >&5 printf "%s\n" "$ax_cv_cxx_namespaces" >&6; } if test "$ax_cv_cxx_namespaces" = yes; then printf "%s\n" "#define HAVE_NAMESPACES /**/" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler has valarray" >&5 printf %s "checking whether the compiler has valarray... " >&6; } if test ${ax_cv_cxx_have_valarray+y} then : printf %s "(cached) " >&6 else $as_nop ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef HAVE_NAMESPACES using namespace std; #endif int main (void) { valarray x(100); return 0; ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO" then : ax_cv_cxx_have_valarray=yes else $as_nop ax_cv_cxx_have_valarray=no fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ax_cv_cxx_have_valarray" >&5 printf "%s\n" "$ax_cv_cxx_have_valarray" >&6; } if test "$ax_cv_cxx_have_valarray" = yes; then printf "%s\n" "#define HAVE_VALARRAY /**/" >>confdefs.h fi if test "x$ax_cv_cxx_have_valarray" != xyes; then as_fn_error $? "valarray is missing and required. " "$LINENO" 5 fi ac_fn_cxx_check_header_compile "$LINENO" "sstream" "ac_cv_header_sstream" "$ac_includes_default" if test "x$ac_cv_header_sstream" = xyes then : else $as_nop ac_fn_cxx_check_header_compile "$LINENO" "strstream" "ac_cv_header_strstream" "$ac_includes_default" if test "x$ac_cv_header_strstream" = xyes then : printf "%s\n" "#define SSTREAM_DEFECT 1" >>confdefs.h else $as_nop as_fn_error $? "You have neither the or header file" "$LINENO" 5 fi fi # Check whether --enable-msvc-code was given. if test ${enable_msvc_code+y} then : enableval=$enable_msvc_code; printf "%s\n" "#define ITERATORBASE_DEFECT 1" >>confdefs.h printf "%s\n" "#define SPEC_TEMPLATE_DECL_DEFECT 1" >>confdefs.h printf "%s\n" "#define TEMPLATE_AMBIG7_DEFECT 1" >>confdefs.h fi ac_config_files="$ac_config_files Makefile Doxyfile CCfits.pc vs.net/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 printf "%s\n" "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 printf %s "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5 printf "%s\n" "done" >&6; } if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh as_nop=: if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else $as_nop case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else $as_nop as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else $as_nop as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by CCfits $as_me 2.7, which was generated by GNU Autoconf 2.71. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"` cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ CCfits config.status 2.7 configured by $0, generated by GNU Autoconf 2.71, with options \\"\$ac_cs_config\\" Copyright (C) 2021 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) printf "%s\n" "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) printf "%s\n" "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) printf "%s\n" "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX printf "%s\n" "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs='`$ECHO "$compiler_lib_search_dirs" | $SED "$delay_single_quote_subst"`' predep_objects='`$ECHO "$predep_objects" | $SED "$delay_single_quote_subst"`' postdep_objects='`$ECHO "$postdep_objects" | $SED "$delay_single_quote_subst"`' predeps='`$ECHO "$predeps" | $SED "$delay_single_quote_subst"`' postdeps='`$ECHO "$postdeps" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path='`$ECHO "$compiler_lib_search_path" | $SED "$delay_single_quote_subst"`' LD_CXX='`$ECHO "$LD_CXX" | $SED "$delay_single_quote_subst"`' reload_flag_CXX='`$ECHO "$reload_flag_CXX" | $SED "$delay_single_quote_subst"`' reload_cmds_CXX='`$ECHO "$reload_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_cmds_CXX='`$ECHO "$old_archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' compiler_CXX='`$ECHO "$compiler_CXX" | $SED "$delay_single_quote_subst"`' GCC_CXX='`$ECHO "$GCC_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "$lt_prog_compiler_no_builtin_flag_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic_CXX='`$ECHO "$lt_prog_compiler_pic_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl_CXX='`$ECHO "$lt_prog_compiler_wl_CXX" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static_CXX='`$ECHO "$lt_prog_compiler_static_CXX" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_CXX='`$ECHO "$lt_cv_prog_compiler_c_o_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc_CXX='`$ECHO "$archive_cmds_need_lc_CXX" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_CXX='`$ECHO "$enable_shared_with_static_runtimes_CXX" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec_CXX='`$ECHO "$export_dynamic_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec_CXX='`$ECHO "$whole_archive_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' compiler_needs_object_CXX='`$ECHO "$compiler_needs_object_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds_CXX='`$ECHO "$old_archive_from_new_cmds_CXX" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_CXX='`$ECHO "$old_archive_from_expsyms_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_cmds_CXX='`$ECHO "$archive_cmds_CXX" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds_CXX='`$ECHO "$archive_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_cmds_CXX='`$ECHO "$module_cmds_CXX" | $SED "$delay_single_quote_subst"`' module_expsym_cmds_CXX='`$ECHO "$module_expsym_cmds_CXX" | $SED "$delay_single_quote_subst"`' with_gnu_ld_CXX='`$ECHO "$with_gnu_ld_CXX" | $SED "$delay_single_quote_subst"`' allow_undefined_flag_CXX='`$ECHO "$allow_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "$no_undefined_flag_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "$hardcode_libdir_flag_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "$hardcode_libdir_separator_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "$hardcode_direct_CXX" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "$hardcode_direct_absolute_CXX" | $SED "$delay_single_quote_subst"`' hardcode_minus_L_CXX='`$ECHO "$hardcode_minus_L_CXX" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var_CXX='`$ECHO "$hardcode_shlibpath_var_CXX" | $SED "$delay_single_quote_subst"`' hardcode_automatic_CXX='`$ECHO "$hardcode_automatic_CXX" | $SED "$delay_single_quote_subst"`' inherit_rpath_CXX='`$ECHO "$inherit_rpath_CXX" | $SED "$delay_single_quote_subst"`' link_all_deplibs_CXX='`$ECHO "$link_all_deplibs_CXX" | $SED "$delay_single_quote_subst"`' always_export_symbols_CXX='`$ECHO "$always_export_symbols_CXX" | $SED "$delay_single_quote_subst"`' export_symbols_cmds_CXX='`$ECHO "$export_symbols_cmds_CXX" | $SED "$delay_single_quote_subst"`' exclude_expsyms_CXX='`$ECHO "$exclude_expsyms_CXX" | $SED "$delay_single_quote_subst"`' include_expsyms_CXX='`$ECHO "$include_expsyms_CXX" | $SED "$delay_single_quote_subst"`' prelink_cmds_CXX='`$ECHO "$prelink_cmds_CXX" | $SED "$delay_single_quote_subst"`' postlink_cmds_CXX='`$ECHO "$postlink_cmds_CXX" | $SED "$delay_single_quote_subst"`' file_list_spec_CXX='`$ECHO "$file_list_spec_CXX" | $SED "$delay_single_quote_subst"`' hardcode_action_CXX='`$ECHO "$hardcode_action_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_dirs_CXX='`$ECHO "$compiler_lib_search_dirs_CXX" | $SED "$delay_single_quote_subst"`' predep_objects_CXX='`$ECHO "$predep_objects_CXX" | $SED "$delay_single_quote_subst"`' postdep_objects_CXX='`$ECHO "$postdep_objects_CXX" | $SED "$delay_single_quote_subst"`' predeps_CXX='`$ECHO "$predeps_CXX" | $SED "$delay_single_quote_subst"`' postdeps_CXX='`$ECHO "$postdeps_CXX" | $SED "$delay_single_quote_subst"`' compiler_lib_search_path_CXX='`$ECHO "$compiler_lib_search_path_CXX" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ AR_FLAGS \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib \ compiler_lib_search_dirs \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ LD_CXX \ reload_flag_CXX \ compiler_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_static_CXX \ lt_cv_prog_compiler_c_o_CXX \ export_dynamic_flag_spec_CXX \ whole_archive_flag_spec_CXX \ compiler_needs_object_CXX \ with_gnu_ld_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_separator_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ file_list_spec_CXX \ compiler_lib_search_dirs_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path \ reload_cmds_CXX \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ export_symbols_cmds_CXX \ prelink_cmds_CXX \ postlink_cmds_CXX; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "Doxyfile") CONFIG_FILES="$CONFIG_FILES Doxyfile" ;; "CCfits.pc") CONFIG_FILES="$CONFIG_FILES CCfits.pc" ;; "vs.net/Makefile") CONFIG_FILES="$CONFIG_FILES vs.net/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test ${CONFIG_FILES+y} || CONFIG_FILES=$config_files test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 printf "%s\n" "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`printf "%s\n" "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 printf "%s\n" "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 printf "%s\n" "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. case $CONFIG_FILES in #( *\'*) : eval set x "$CONFIG_FILES" ;; #( *) : set x $CONFIG_FILES ;; #( *) : ;; esac shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`printf "%s\n" "$am_mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`$as_dirname -- "$am_mf" || $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` am_filepart=`$as_basename -- "$am_mf" || $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$am_mf" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` { echo "$as_me:$LINENO: cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles" >&5 (cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } || am_rc=$? done if test $am_rc -ne 0; then { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "Something went wrong bootstrapping makefile fragments for automatic dependency tracking. If GNU make was not used, consider re-running the configure script with MAKE=\"gmake\" (or whatever is necessary). You can also try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). See \`config.log' for more details" "$LINENO" 5; } fi { am_dirpart=; unset am_dirpart;} { am_filepart=; unset am_filepart;} { am_mf=; unset am_mf;} { am_rc=; unset am_rc;} rm -f conftest-deps.mk } ;; "libtool":C) # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2014 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='CXX ' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG # Whether or not to build static libraries. build_old_libs=$enable_static # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method = "file_magic". file_magic_cmd=$lt_file_magic_cmd # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive. AR_FLAGS=$lt_AR_FLAGS # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects postdep_objects=$lt_postdep_objects predeps=$lt_predeps postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '$q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. LD=$lt_LD_CXX # How to create reloadable object files. reload_flag=$lt_reload_flag_CXX reload_cmds=$lt_reload_cmds_CXX # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_CXX # A language specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU compiler? with_gcc=$GCC_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_CXX # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_CXX # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to "yes" if using DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_CXX # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_CXX # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_CXX # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds_CXX # Specify filename containing input files. file_list_spec=$lt_file_list_spec_CXX # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects_CXX postdep_objects=$lt_postdep_objects_CXX predeps=$lt_predeps_CXX postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # ### END LIBTOOL TAG CONFIG: CXX _LT_EOF ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: CCFits project now configured." >&5 printf "%s\n" "CCFits project now configured." >&6; } CCfits-2.7/ColumnT.h0000644000225700000360000020660714764627567013620 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef COLUMNT_H #define COLUMNT_H #ifdef _MSC_VER #include "MSconfig.h" #endif #include "ColumnData.h" #include "ColumnVectorData.h" #include "FITSUtil.h" #include #include #include #include "NewKeyword.h" #ifdef SSTREAM_DEFECT # include #else # include #endif // by design, if the data are not read yet we will return an exception. // here the test is if the entire column has already been read. using std::complex; using std::valarray; // get specified elements of a scalar column. These two functions allow the // user to return either a vector or a valarray depending on the input container. namespace CCfits { template void Column::read(std::vector& vals, long first, long last) { read(vals,first,last,static_cast(0)); } template void Column::read(std::vector& vals, long first, long last, S* nullValue) { // problem: S does not give the type of the Column, but the return type, // so the user must specify this. parent()->makeThisCurrent(); long nelements = numberOfElements(first,last); if (ColumnData* col = dynamic_cast*>(this)) { // fails if user requested outputType different from input type. if (!isRead()) col->readColumnData(first,nelements,nullValue); // scalar column with vector output can just be assigned. FITSUtil::fill(vals,col->data(),first,last); } else { FITSUtil::MatchType outputType; if ( outputType() == type() ) { // in this case user tried to read vector data from scalar, // (i.e. first argument was vector >. // since the cast won't fail on template parameter grounds. throw Column::WrongColumnType(name()); } try { // about exceptions. The dynamic_casts could throw // std::bad_cast. If this happens something is seriously // wrong since the Column stores the value of type() // appropriate to each of the casts on construction. // // the InvalidDataType exception should not be possible. if ( type() == Tdouble ) { ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tfloat) { ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tint) { int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tshort) { short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tlong) { long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tlonglong) { LONGLONG nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tlogical) { bool nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tbit || type() == Tbyte) { unsigned char nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tushort) { unsigned short nullVal(0); if (nullValue) nullVal= static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tuint) { unsigned int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tulong) { unsigned long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else { throw InvalidDataType(name()); } } catch (std::bad_cast&) { throw WrongColumnType(name()); } } } template void Column::read(std::valarray& vals, long first, long last) { read(vals,first,last,static_cast(0)); } template void Column::read(std::valarray& vals, long first, long last, S* nullValue) { // require the whole scalar column to have been read. long nelements = numberOfElements(first,last); parent()->makeThisCurrent(); if ( ColumnData* col = dynamic_cast*>(this)) { // fails if user requested outputType different from input type. if (!isRead()) col->readColumnData(first,nelements,nullValue); FITSUtil::fill(vals,col->data(),first,last); } else { FITSUtil::MatchType outputType; if ( outputType() == type() ) { // in this case user tried to read vector data from scalar, // (i.e. first argument was vector >. // since the cast won't fail on template parameter grounds. throw Column::WrongColumnType(name()); } try { // about exceptions. The dynamic_casts could throw // std::bad_cast. If this happens something is seriously // wrong since the Column stores the value of type() // appropriate to each of the casts on construction. // // the InvalidDataType exception should not be possible. if ( type() == Tdouble ) { ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tfloat) { ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tint) { int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tshort) { short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tlong) { long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tlonglong) { LONGLONG nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tlogical) { bool nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tbit || type() == Tbyte) { unsigned char nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tushort) { unsigned short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tuint) { unsigned int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else if (type() == Tulong) { unsigned long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); if (!isRead()) col.readColumnData(first,nelements,&nullVal); FITSUtil::fill(vals,col.data(),first,last); } else { throw InvalidDataType(name()); } } catch (std::bad_cast&) { throw WrongColumnType(name()); } } } // get a single row from a vector column. There's no default row number, must // be specified. template void Column::read(std::valarray& vals, long row) { read(vals,row,static_cast(0)); } template void Column::read(std::vector& vals, long row) { read(vals,row,static_cast(0)); } template void Column::read(std::vector& vals, long row, S* nullValue) { if (row > parent()->rows()) { throw Column::InvalidRowNumber(name()); } parent()->makeThisCurrent(); // isRead() returns true if the data were read in the ctor. if ( ColumnVectorData* col = dynamic_cast*>(this)) { // fails if user requested outputType different from input type. if (!isRead()) col->readRow(row,nullValue); FITSUtil::fill(vals,col->data(row)); } else { FITSUtil::MatchType outputType; if ( outputType() == type() ) { // in this case user tried to read vector row from scalar column. // one could be charitable and return a valarray of size 1, // but... I'm going to throw an exception suggesting the user // might not have meant that. throw Column::WrongColumnType(name()); } // the InvalidDataType exception should not be possible. try { // about exceptions. The dynamic_casts could throw // std::bad_cast. If this happens something is seriously // wrong since the Column stores the value of type() // appropriate to each of the casts on construction. // // the InvalidDataType exception should not be possible. if ( type() == Tdouble || type() == VTdouble ) { ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tfloat || type() == VTfloat ) { ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tint || type() == VTint ) { int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tshort || type() == VTshort ) { short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tlong || type() == VTlong ) { long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tlonglong || type() == VTlonglong ) { LONGLONG nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tlogical || type() == VTlogical ) { bool nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tbit || type() == Tbyte || type() == VTbit || type() == VTbyte ) { unsigned char nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tushort || type() == VTushort) { unsigned short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tuint || type() == VTuint) { unsigned int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tulong || type() == VTulong) { unsigned long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else { throw InvalidDataType(name()); } } catch (std::bad_cast&) { throw WrongColumnType(name()); } } } template void Column::read(std::valarray& vals, long row, S* nullValue) { if (row > parent()->rows()) { throw Column::InvalidRowNumber(name()); } parent()->makeThisCurrent(); // isRead() returns true if the data were read in the ctor. if ( ColumnVectorData* col = dynamic_cast*>(this)) { // fails if user requested outputType different from input type. // input and output are both valarrays. Since one should not // be able to call a constructor for a non-numeric valarray type, // there shouldn't be any InvalidType problems. However, there // is still the vector/scalar possibility and the implicit // conversion request to deal with. if (!isRead()) col->readRow(row,nullValue); FITSUtil::fill(vals,col->data(row)); } else { FITSUtil::MatchType outputType; if ( outputType() == type() ) { // in this case user tried to read vector row from scalar column. // one could be charitable and return a valarray of size 1, // but... I'm going to throw an exception suggesting the user // might not have meant that. throw Column::WrongColumnType(name()); } // the InvalidDataType exception should not be possible. try { // about exceptions. The dynamic_casts could throw // std::bad_cast. If this happens something is seriously // wrong since the Column stores the value of type() // appropriate to each of the casts on construction. // // the InvalidDataType exception should not be possible. if ( type() == Tdouble || type() == VTdouble ) { ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tfloat || type() == VTfloat ) { ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tint || type() == VTint ) { int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tshort || type() == VTshort ) { short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tlong || type() == VTlong ) { long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tlonglong || type() == VTlonglong ) { LONGLONG nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tlogical || type() == VTlogical ) { bool nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tbit || type() == Tbyte || type() == VTbit || type() == VTbyte ) { unsigned char nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tushort || type() == VTushort) { unsigned short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tuint || type() == VTuint) { unsigned int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else if (type() == Tulong || type() == VTulong) { unsigned long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); if (!isRead()) col.readRow(row,&nullVal); FITSUtil::fill(vals,col.data(row)); } else { throw InvalidDataType(name()); } } catch (std::bad_cast&) { throw WrongColumnType(name()); } } } template void Column::readArrays(std::vector >& vals, long first, long last) { readArrays(vals,first,last,static_cast(0)); } template void Column::readArrays(std::vector >& vals, long first, long last, S* nullValue) { parent()->makeThisCurrent(); // again, can only call this if the entire column has been read from disk. // user expects 1 based indexing. If 0 based indices are supplied, // add one to both ranges. long range = numberOfElements(first,last); vals.resize(range); if ( ColumnVectorData* col = dynamic_cast*>(this)) { for (int j = 0; j < range; ++j) { if (!isRead()) col->readRow(j + first,nullValue); FITSUtil::fill(vals[j],col->data(j+first)); } } else { FITSUtil::MatchType outputType; if ( outputType() == type() ) { // in this case user tried to read vector data from scalar, // (i.e. first argument was vector >. // since the cast won't fail on template parameter grounds. throw Column::WrongColumnType(name()); } // the InvalidDataType exception should not be possible. try { if ( type() == Tdouble || type() == VTdouble ) { ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tfloat || type() == VTfloat ) { ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tint || type() == VTint ) { int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tshort || type() == VTshort ) { short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tlong || type() == VTlong ) { long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tlonglong || type() == VTlonglong ) { LONGLONG nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tlogical || type() == VTlogical ) { bool nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if (type() == Tbit || type() == Tbyte || type() == VTbit || type() == VTbyte ) { unsigned char nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tushort || type() == VTushort ) { unsigned short nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tuint || type() == VTuint ) { unsigned int nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else if ( type() == Tulong || type() == VTulong ) { unsigned long nullVal(0); if (nullValue) nullVal = static_cast(*nullValue); ColumnVectorData& col = dynamic_cast&>(*this); for (int j = 0; j < range; ++j) { if (!isRead()) col.readRow(j + first,&nullVal); FITSUtil::fill(vals[j],col.data(j+first)); } } else { throw InvalidDataType(name()); } } catch (std::bad_cast&) { throw WrongColumnType(name()); } } } template void Column::write (const std::vector& indata, long firstRow) { // nullValue is now a pointer, so this is ok. // got to cast the 0 to a pointer to S to avoid // overloading ambiguities. write(indata,firstRow,static_cast(0)); } template void Column::write (const std::valarray& indata, long firstRow) { size_t n(indata.size()); std::vector __tmp(n); for (size_t j = 0; j < n; ++j) __tmp[j] = indata[j]; write(__tmp,firstRow,static_cast(0)); } template void Column::write (S* indata, long nRows, long firstRow) { write(indata,nRows,firstRow,static_cast(0)); } template void Column::write (const std::vector& indata, long firstRow, S* nullValue) { // although underlying code needs to convert the input vector // into a C array, this must be the underlying implementation // [which the others call] because it accepts string arguments // which the version with a pointer won't. [no version that // translates to a char** argument]. parent()->makeThisCurrent(); firstRow = std::max(firstRow,static_cast(1)); if (ColumnData* col = dynamic_cast*>(this)) { col->writeData(indata,firstRow,nullValue); } else { // alright, input data type has to be rewritten as output // data type. FITSUtil::MatchType inType; if ( inType() == type()) { String msg("Incorrect call: writing to vector column "); msg += name(); msg += " requires specification of # rows or vector lengths"; throw WrongColumnType(msg); } else { if ( type() == Tdouble ) { ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow); } else if ( type() == Tfloat ) { ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow); } else if ( type() == Tint ) { int nullVal = 0; int* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } if (nullValue) nullVal = static_cast(*nullValue); ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tshort ) { short nullVal(0); short* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tlong ) { long nullVal(0); long* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tlonglong ) { LONGLONG nullVal(0); LONGLONG* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tlogical ) { bool nullVal(0); bool* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tbyte ) { unsigned char nullVal(0); unsigned char* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tushort ) { unsigned short nullVal(0); unsigned short* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tuint ) { unsigned int nullVal(0); unsigned int* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tulong ) { unsigned long nullVal(0); unsigned long* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } ColumnData& col = dynamic_cast&>(*this); std::vector __tmp; FITSUtil::fill(__tmp,indata,1,indata.size()); col.writeData(__tmp,firstRow,pNullVal); } else { throw InvalidDataType(name()); } } } } template void Column::write (const std::valarray& indata, long firstRow, S* nullValue) { // for scalar columns. std::vector __tmp; FITSUtil::fill(__tmp,indata); write(__tmp,firstRow,nullValue); } template void Column::write (S* indata, long nRows, long firstRow, S* nullValue) { // for scalar columns, data specified with C array if (nRows <= 0) throw InvalidNumberOfRows(nRows); std::vector __tmp(nRows); std::copy(&indata[0],&indata[nRows],__tmp.begin()); write(__tmp,firstRow, nullValue); } template void Column::write (const std::valarray& indata, const std::vector& vectorLengths, long firstRow) { // variable length arrays written from an input valarray. // does not allow NULL value. using namespace std; const size_t nRows = vectorLengths.size(); // Calculate the sums of the vector lengths first simply to do a // check against the size of indata. vector sums(nRows+1); sums[0] = 0; vector::iterator itSums = sums.begin() + 1; partial_sum(vectorLengths.begin(), vectorLengths.end(), itSums); if (indata.size() < static_cast(sums[nRows])) { #ifdef SSTREAM_DEFECT ostrstream msgStr; #else ostringstream msgStr; #endif msgStr << " input data size: " << indata.size() << " vector length sum: " << sums[nRows]; #ifdef SSTREAM_DEFECT msgStr << std::ends; #endif String msg(msgStr.str()); throw Column::InsufficientElements(msg); } vector > vvArray(nRows); for (size_t iRow=0; iRow& vArray = vvArray[iRow]; long first = sums[iRow]; long last = sums[iRow+1]; vArray.resize(last - first); for (long iElem=first; iElem(0)); } template void Column::write (const std::vector& indata,const std::vector& vectorLengths, long firstRow) { // variable length write // implement as valarray version std::valarray __tmp(indata.size()); std::copy(indata.begin(),indata.end(),&__tmp[0]); write(__tmp,vectorLengths,firstRow); } template void Column::write (S* indata, long nelements, const std::vector& vectorLengths, long firstRow) { // implement as valarray version, which will also check array size. std::valarray __tmp(indata,nelements); write(__tmp,vectorLengths,firstRow); } template void Column::write (const std::valarray& indata, long nRows, long firstRow) { write(indata,nRows,firstRow,static_cast(0)); } template void Column::write (const std::vector& indata, long nRows, long firstRow) { write(indata,nRows,firstRow,static_cast(0)); } template void Column::write (S* indata, long nelements, long nRows, long firstRow) { write(indata,nelements,nRows,firstRow,static_cast(0)); } template void Column::write (const std::valarray& indata, long nRows, long firstRow, S* nullValue) { // Write equivalent lengths of data to rows of a vector column. // The column may be either fixed or variable width, but if it's fixed // width the lengths must equal the column's repeat value or an // exception is thrown. if (nRows <= 0) throw InvalidNumberOfRows(nRows); firstRow = std::max(firstRow,static_cast(1)); #ifdef SSTREAM_DEFECT std::ostrstream msgStr; #else std::ostringstream msgStr; #endif const size_t numRows = static_cast(nRows); if (indata.size() % numRows) { msgStr << "To use this write function, input array size" <<"\n must be exactly divisible by requested num rows: " << nRows; throw InsufficientElements(msgStr.str()); } const size_t cellsize = indata.size()/numRows; if (!varLength() && cellsize != repeat() ) { msgStr << "column: " << name() << "\n input data size: " << indata.size() << " required: " << nRows*repeat(); String msg(msgStr.str()); throw InsufficientElements(msg); } std::vector > vvArray(numRows); for (size_t i=0; i void Column::write (const std::vector& indata, long nRows, long firstRow, S* nullValue) { // fixed length write of vector // implement as valarray version if (nRows <= 0) throw InvalidNumberOfRows(nRows); std::valarray __tmp(indata.size()); std::copy(indata.begin(),indata.end(),&__tmp[0]); write(__tmp,nRows,firstRow, nullValue); } template void Column::write (S* indata, long nelements, long nRows, long firstRow, S* nullValue) { // fixed length write of C-array // implement as valarray version if (nRows <= 0) throw InvalidNumberOfRows(nRows); std::valarray __tmp(indata,nelements); write(__tmp,nRows,firstRow, nullValue); } template void Column::writeArrays (const std::vector >& indata, long firstRow) { // vector, no null value. writeArrays(indata,firstRow,static_cast(0)); } template void Column::writeArrays (const std::vector >& indata, long firstRow, S* nullValue) { // vector, null value. primary using std::valarray; using std::vector; parent()->makeThisCurrent(); firstRow = std::max(firstRow,static_cast(1)); if (ColumnVectorData* col = dynamic_cast*>(this)) { col->writeData(indata,firstRow,nullValue); } else { // alright, input data type has to be rewritten as output // data type. FITSUtil::MatchType inType; if ( inType() == type()) { String msg("Incorrect call: writing vectors to scalar column "); throw WrongColumnType(msg); } else { size_t n(indata.size()); if ( type() == Tdouble || type() == VTdouble) { ColumnVectorData& col = dynamic_cast&>(*this); vector > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow); } else if ( type() == Tfloat || type() == VTfloat) { ColumnVectorData& col = dynamic_cast&>(*this); vector > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow); } else if ( type() == Tint || type() == VTint) { ColumnVectorData& col = dynamic_cast&>(*this); vector > __tmp(n); int nullVal(0); int* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tshort || type() == VTshort) { ColumnVectorData& col = dynamic_cast&>(*this); vector > __tmp(n); short nullVal(0); short* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tlong || type() == VTlong) { ColumnVectorData& col = dynamic_cast&>(*this); vector > __tmp(n); long nullVal(0); long* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tlonglong || type() == VTlonglong) { ColumnVectorData& col = dynamic_cast&>(*this); vector > __tmp(n); LONGLONG nullVal(0); LONGLONG* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tlogical || type() == VTlogical) { ColumnVectorData& col = dynamic_cast&>(*this); bool nullVal(0); bool* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } vector > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tbyte || type() == VTbyte) { ColumnVectorData& col = dynamic_cast&>(*this); unsigned char nullVal(0); unsigned char* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } vector > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tushort || type() == VTushort) { ColumnVectorData& col = dynamic_cast&>(*this); unsigned short nullVal(0); unsigned short* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } vector > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tuint || type() == VTuint) { ColumnVectorData& col = dynamic_cast&>(*this); unsigned int nullVal(0); unsigned int* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } vector > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else if ( type() == Tulong || type() == VTulong) { ColumnVectorData& col = dynamic_cast&>(*this); unsigned long nullVal(0); unsigned long* pNullVal = 0; if (nullValue) { nullVal = static_cast(*nullValue); pNullVal = &nullVal; } vector > __tmp(n); for (size_t i = 0; i < n; ++i) { FITSUtil::fill(__tmp[i],indata[i]); } col.writeData(__tmp,firstRow,pNullVal); } else { throw InvalidDataType(name()); } } } } template void Column::addNullValue(T nullVal) { parent()->makeThisCurrent(); int status(0); #ifdef SSTREAM_DEFECT std::ostrstream keyName; keyName << "TNULL" << index() << std::ends; char* nullKey = const_cast(keyName.str()); #else std::ostringstream keyName; keyName << "TNULL" << index(); String keyNameStr = keyName.str(); char* nullKey = const_cast(keyNameStr.c_str()); #endif FITSUtil::MatchType inputType; int dataType = static_cast(inputType()); if (dataType == static_cast(Tstring)) throw InvalidDataType("attempting to set TNULLn to a string."); // update key but don't add to keyword list because it's really a column // property not a table metadata property. And it needs to be automatically // renumbered if columns are inserted or deleted. if (fits_update_key(fitsPointer(),dataType,nullKey,&nullVal,0,&status)) throw FitsError(status); // The following is called to make sure the HDU struct is immediately // updated in case a column write operation is performed shortly after this // function exits. if (fits_set_hdustruc(fitsPointer(),&status)) throw FitsError(status); } template bool Column::getNullValue(T* nullVal) const { parent()->makeThisCurrent(); #ifdef SSTREAM_DEFECT std::ostrstream keyName; keyName << "TNULL" << index() << std::ends; char* nullKey = const_cast(keyName.str()); #else std::ostringstream keyName; keyName << "TNULL" << index(); String keyNameStr = keyName.str(); char* nullKey = const_cast(keyNameStr.c_str()); #endif int status=0; FITSUtil::MatchType inputType; int dataType = static_cast(inputType()); if (dataType == static_cast(Tstring)) throw InvalidDataType("attempting to read TNULLn into a string."); T tmpVal(*nullVal); bool keyExists = false; if (fits_read_key(m_parent->fitsPointer(), dataType, nullKey, &tmpVal, 0, &status)) { if (status == KEY_NO_EXIST || status == VALUE_UNDEFINED) return keyExists; else throw FitsError(status); } keyExists = true; *nullVal = tmpVal; return keyExists; } } // namespace CCfits #endif CCfits-2.7/vs.net/0000755000225700000360000000000014764627567013270 5ustar cagordonlheaCCfits-2.7/vs.net/Makefile.in0000644000225700000360000003110314764627567015333 0ustar cagordonlhea# Makefile.in generated by automake 1.16.3 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2020 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ # # * Copyright (C) 2003 The Board of Trustees of # * The Leland Stanford Junior University. All Rights Reserved. # # $Id$ # # Author: Paul_Kunz@slac.stanford.edu # VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ target_triplet = @target@ subdir = vs.net ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/config/m4/ac_check_package.m4 \ $(top_srcdir)/config/m4/ac_compile_warnings.m4 \ $(top_srcdir)/config/m4/ax_cxx_compile_stdcxx.m4 \ $(top_srcdir)/config/m4/ax_cxx_have_valarray.m4 \ $(top_srcdir)/config/m4/ax_cxx_namespaces.m4 \ $(top_srcdir)/config/m4/pfk_cxx_lib_path.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CXX_LIB_PATH = @CXX_LIB_PATH@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GMAKE = @GMAKE@ GREP = @GREP@ HAVE_CXX14 = @HAVE_CXX14@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBSTDCPP = @LIBSTDCPP@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ RANLIB = @RANLIB@ RDFLAGS = @RDFLAGS@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STLPORT = @STLPORT@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ pfk_cxx_lib_path = @pfk_cxx_lib_path@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target = @target@ target_alias = @target_alias@ target_cpu = @target_cpu@ target_os = @target_os@ target_vendor = @target_vendor@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # The following is set, otherwise it would have to follow GNU conventions. AUTOMAKE_OPTIONS = foreign DIST_DIRS = CCfits cookbook EXTRA_DIST = MANIFEST $(DIST_DIRS) all: all-am .SUFFIXES: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign vs.net/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign vs.net/Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile installdirs: install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags-am uninstall uninstall-am .PRECIOUS: Makefile # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: CCfits-2.7/vs.net/Makefile.am0000644000225700000360000000052514764627567015326 0ustar cagordonlhea# # * Copyright (C) 2003 The Board of Trustees of # * The Leland Stanford Junior University. All Rights Reserved. # # $Id$ # # Author: Paul_Kunz@slac.stanford.edu # # The following is set, otherwise it would have to follow GNU conventions. AUTOMAKE_OPTIONS = foreign DIST_DIRS = CCfits cookbook EXTRA_DIST = MANIFEST $(DIST_DIRS) CCfits-2.7/vs.net/MANIFEST0000644000225700000360000000020314764627567014414 0ustar cagordonlheaThis directory contains files specific to building CCfits and its test program with Microsoft Visual Studio .NET (Visual C++ 7.0). CCfits-2.7/vs.net/cookbook/0000755000225700000360000000000014764627567015076 5ustar cagordonlheaCCfits-2.7/vs.net/cookbook/cookbook.vcproj0000644000225700000360000000610514764627567020133 0ustar cagordonlhea CCfits-2.7/vs.net/cookbook/cookbook.sln0000644000225700000360000000260014764627567017420 0ustar cagordonlheaMicrosoft Visual Studio Solution File, Format Version 7.00 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "cookbook", "cookbook.vcproj", "{9ED49C71-F4D4-4CA2-979F-CD53B285E0CB}" EndProject Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CCfits", "..\CCfits\CCfits.vcproj", "{D21AEDFD-0753-4905-B5DD-21083E8BDE7B}" EndProject Global GlobalSection(SolutionConfiguration) = preSolution ConfigName.0 = Debug ConfigName.1 = Release EndGlobalSection GlobalSection(ProjectDependencies) = postSolution {9ED49C71-F4D4-4CA2-979F-CD53B285E0CB}.0 = {D21AEDFD-0753-4905-B5DD-21083E8BDE7B} EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution {9ED49C71-F4D4-4CA2-979F-CD53B285E0CB}.Debug.ActiveCfg = Debug|Win32 {9ED49C71-F4D4-4CA2-979F-CD53B285E0CB}.Debug.Build.0 = Debug|Win32 {9ED49C71-F4D4-4CA2-979F-CD53B285E0CB}.Release.ActiveCfg = Release|Win32 {9ED49C71-F4D4-4CA2-979F-CD53B285E0CB}.Release.Build.0 = Release|Win32 {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Debug.ActiveCfg = Debug|Win32 {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Debug.Build.0 = Debug|Win32 {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Release.ActiveCfg = Release|Win32 {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Release.Build.0 = Release|Win32 EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution EndGlobalSection GlobalSection(ExtensibilityAddIns) = postSolution EndGlobalSection EndGlobal CCfits-2.7/vs.net/CCfits/0000755000225700000360000000000014764627567014443 5ustar cagordonlheaCCfits-2.7/vs.net/CCfits/CCfits.sln0000644000225700000360000000157314764627567016342 0ustar cagordonlheaMicrosoft Visual Studio Solution File, Format Version 7.00 Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CCfits", "CCfits.vcproj", "{D21AEDFD-0753-4905-B5DD-21083E8BDE7B}" EndProject Global GlobalSection(SolutionConfiguration) = preSolution ConfigName.0 = Debug ConfigName.1 = Release EndGlobalSection GlobalSection(ProjectDependencies) = postSolution EndGlobalSection GlobalSection(ProjectConfiguration) = postSolution {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Debug.ActiveCfg = Debug|Win32 {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Debug.Build.0 = Debug|Win32 {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Release.ActiveCfg = Release|Win32 {D21AEDFD-0753-4905-B5DD-21083E8BDE7B}.Release.Build.0 = Release|Win32 EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution EndGlobalSection GlobalSection(ExtensibilityAddIns) = postSolution EndGlobalSection EndGlobal CCfits-2.7/vs.net/CCfits/CCfits.vcproj0000644000225700000360000001301514764627567017043 0ustar cagordonlhea CCfits-2.7/ColumnData.h0000644000225700000360000005314714764627567014265 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef COLUMNDATA_H #define COLUMNDATA_H 1 #include "CCfits.h" // vector #include // Column #include "Column.h" #ifdef _MSC_VER #include "MSconfig.h" #endif #include #include #include #include "FITSUtil.h" using std::complex; #include "FITS.h" namespace CCfits { template class ColumnData : public Column //## Inherits: %385E51565EE8 { public: ColumnData(const ColumnData< T > &right); ColumnData (Table* p = 0); ColumnData (int columnIndex, const string &columnName, ValueType type, const String &format, const String &unit, Table* p, int rpt = 1, long w = 1, const String &comment = ""); ~ColumnData(); virtual ColumnData* clone () const; virtual void readData (long firstRow, long nelements, long firstElem = 1); void setDataLimits (T* limits); const T minLegalValue () const; void minLegalValue (T value); const T maxLegalValue () const; void maxLegalValue (T value); const T minDataValue () const; void minDataValue (T value); const T maxDataValue () const; void maxDataValue (T value); const std::vector& data () const; void setData (const std::vector& value); T data (int i); void data (int i, T value); // Additional Public Declarations friend class Column; protected: // Additional Protected Declarations private: ColumnData< T > & operator=(const ColumnData< T > &right); void readColumnData (long firstRow, long nelements, T* nullValue = 0); virtual bool compare (const Column &right) const; virtual std::ostream& put (std::ostream& s) const; void writeData (T* indata, long nRows = 1, long firstRow = 1, T* nullValue = 0); void writeData (const std::vector& indata, long firstRow = 1, T* nullValue = 0); // Insert one or more blank rows into a FITS column. virtual void insertRows (long first, long number = 1); virtual void deleteRows (long first, long number = 1); virtual size_t getStoredDataSize() const; // Additional Private Declarations private: //## implementation // Data Members for Class Attributes T m_minLegalValue; T m_maxLegalValue; T m_minDataValue; T m_maxDataValue; // Data Members for Associations std::vector m_data; // Additional Implementation Declarations }; // Parameterized Class CCfits::ColumnData template inline void ColumnData::readData (long firstRow, long nelements, long firstElem) { readColumnData(firstRow,nelements,static_cast(0)); } template inline const T ColumnData::minLegalValue () const { return m_minLegalValue; } template inline void ColumnData::minLegalValue (T value) { m_minLegalValue = value; } template inline const T ColumnData::maxLegalValue () const { return m_maxLegalValue; } template inline void ColumnData::maxLegalValue (T value) { m_maxLegalValue = value; } template inline const T ColumnData::minDataValue () const { return m_minDataValue; } template inline void ColumnData::minDataValue (T value) { m_minDataValue = value; } template inline const T ColumnData::maxDataValue () const { return m_maxDataValue; } template inline void ColumnData::maxDataValue (T value) { m_maxDataValue = value; } template inline const std::vector& ColumnData::data () const { return m_data; } template inline void ColumnData::setData (const std::vector& value) { m_data = value; } template inline T ColumnData::data (int i) { // return data stored in the ith row, which is in the i-1 th location in the array. return m_data[i - 1]; } template inline void ColumnData::data (int i, T value) { // assign data to i-1 th location in the array, representing the ith row. m_data[i - 1] = value; } // Parameterized Class CCfits::ColumnData template ColumnData::ColumnData(const ColumnData &right) :Column(right), m_minLegalValue(right.m_minLegalValue), m_maxLegalValue(right.m_maxLegalValue), m_minDataValue(right.m_minDataValue), m_maxDataValue(right.m_maxDataValue), m_data(right.m_data) { } template ColumnData::ColumnData (Table* p) : Column(p), m_minLegalValue(), m_maxLegalValue(), m_minDataValue(), m_maxDataValue(), m_data() { } template ColumnData::ColumnData (int columnIndex, const string &columnName, ValueType type, const String &format, const String &unit, Table* p, int rpt, long w, const String &comment) : Column(columnIndex,columnName,type,format,unit,p,rpt,w,comment), m_minLegalValue(), m_maxLegalValue(), m_minDataValue(), m_maxDataValue(), m_data() { } template ColumnData::~ColumnData() { } template void ColumnData::readColumnData (long firstRow, long nelements, T* nullValue) { if ( rows() < nelements ) { std::cerr << "CCfits: More data requested than contained in table. "; std::cerr << "Extracting complete column.\n"; nelements = rows(); } int status(0); int anynul(0); FITSUtil::auto_array_ptr array(new T[nelements]); makeHDUCurrent(); if ( fits_read_col(fitsPointer(),type(), index(), firstRow, 1, nelements, nullValue, array.get(), &anynul, &status) ) throw FitsError(status); if (m_data.size() != static_cast( rows() ) ) m_data.resize(rows()); std::copy(&array[0],&array[nelements],m_data.begin()+firstRow-1); if (nelements == rows()) isRead(true); } template bool ColumnData::compare (const Column &right) const { if ( !Column::compare(right) ) return false; const ColumnData& that = static_cast&>(right); unsigned int n = m_data.size(); if ( that.m_data.size() != n ) return false; for (unsigned int i = 0; i < n ; i++) { if (m_data[i] != that.m_data[i]) return false; } return true; } template ColumnData* ColumnData::clone () const { return new ColumnData(*this); } template std::ostream& ColumnData::put (std::ostream& s) const { Column::put(s); if (FITS::verboseMode() && type() != Tstring) { s << " Column Legal limits: ( " << m_minLegalValue << "," << m_maxLegalValue << " )\n" << " Column Data limits: ( " << m_minDataValue << "," << m_maxDataValue << " )\n"; } if (!m_data.empty()) { std::ostream_iterator output(s,"\n"); // output each row on a separate line. // user can supply manipulators to stream for formatting. std::copy(m_data.begin(),m_data.end(),output); } return s; } template void ColumnData::writeData (T* indata, long nRows, long firstRow, T* nullValue) { // set columnData's data member to equal what's written to file. // indata has size nRows: elements firstRow to firstRow + nRows - 1 will be written. // if this exceeds the current rowlength of the HDU, update the return value for // rows() in the parent after the fitsio call. int status(0); try { if (nullValue) { if (fits_write_colnull(fitsPointer(), type(), index(), firstRow, 1, nRows, indata, nullValue, &status) != 0) throw FitsError(status); } else { if (fits_write_col(fitsPointer(), type(), index(), firstRow, 1, nRows, indata, &status) != 0) throw FitsError(status); } } catch (FitsError) // the only thing that can throw here. { if (status == NO_NULL) throw NoNullValue(name()); else throw; } long elementsToWrite(nRows + firstRow -1); if (elementsToWrite > static_cast(m_data.size())) { m_data.resize(elementsToWrite,T()); } std::copy(&indata[0],&indata[nRows],m_data.begin()+firstRow-1); // tell the Table that the number of rows has changed parent()->updateRows(); } template void ColumnData::writeData (const std::vector& indata, long firstRow, T* nullValue) { FITSUtil::CVarray convert; FITSUtil::auto_array_ptr pcolData (convert(indata)); T* columnData = pcolData.get(); writeData(columnData,indata.size(),firstRow,nullValue); } template void ColumnData::insertRows (long first, long number) { // Don't assume the calling routine (ie. Table's insertRows) // knows Column's current m_data size. m_data may still be // size 0 if no read operations have been performed on Column. // Therefore perform range checking before inserting. // As with CFITSIO, rows are inserted AFTER 1-based 'first'. if (first >= 0 && first <= static_cast(m_data.size())) { typename std::vector::iterator in; if (first !=0) { in = m_data.begin()+first; } else { in = m_data.begin(); } // non-throwing operations. m_data.insert(in,number,T()); } } template void ColumnData::deleteRows (long first, long number) { // Don't assume the calling routine (ie. Table's deleteRows) // knows Column's current m_data size. m_data may still be // size 0 if no read operations have been performed on Column. // Therefore perform range checking before erasing. const long curSize = static_cast(m_data.size()); if (curSize>0 && first <= curSize) { const long last = std::min(curSize, first-1+number); m_data.erase(m_data.begin()+first-1,m_data.begin()+last); } } template size_t ColumnData::getStoredDataSize() const { return m_data.size(); } template void ColumnData::setDataLimits (T* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = std::max(limits[2],limits[0]); m_maxDataValue = std::min(limits[3],limits[1]); } // Additional Declarations // all functions that operate on strings or complex data that call cfitsio // need to be specialized. #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } #else template <> void ColumnData >::setDataLimits (complex* limits); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData >::setDataLimits (complex* limits) { m_minLegalValue = limits[0]; m_maxLegalValue = limits[1]; m_minDataValue = limits[2]; m_maxDataValue = limits[3]; } #else template <> void ColumnData >::setDataLimits (complex* limits); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData::readColumnData (long firstRow, long nelements, string* nullValue) { // nelements = nrows to read. if (nelements < 1) throw Column::InvalidNumberOfRows((int)nelements); if (firstRow < 1 || (firstRow+nelements-1)>rows()) throw Column::InvalidRowNumber(name()); int status = 0; int anynul = 0; char** array = new char*[nelements]; // Initialize pointers to NULL so we can safely delete // during error handling, even if they haven't been allocated. for (long i=0; i(0); bool isError = false; // Strings are unusual. The variable length case is still // handled by a ColumnData class, not a ColumnVectorData. char* nulval = 0; if (nullValue) { nulval = const_cast(nullValue->c_str()); } else { nulval = new char; *nulval = '\0'; } makeHDUCurrent(); if (varLength()) { long* strLengths = new long[nelements]; long* offsets = new long[nelements]; if (fits_read_descripts(fitsPointer(), index(), firstRow, nelements, strLengths, offsets, &status)) { isError = true; } else { // For variable length cols, must read 1 and only 1 row // at a time into array. for (long j=0; j(rows())) setData(std::vector(rows(),String(nulval))); for (long j=0; j void ColumnData::readColumnData (long firstRow, long nelements, string* nullValue); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData >::readColumnData (long firstRow, long nelements, complex* nullValue) { // specialization for ColumnData int status(0); int anynul(0); FITSUtil::auto_array_ptr pArray(new float[nelements*2]); float* array = pArray.get(); float nulval(0); makeHDUCurrent(); if (fits_read_col_cmp(fitsPointer(),index(), firstRow,1,nelements, nulval,array, &anynul,&status) ) throw FitsError(status); if (m_data.size() != rows()) m_data.resize(rows()); // the 'j -1 ' converts to zero based indexing. for (int j = 0; j < nelements; ++j) { m_data[j - 1 + firstRow] = std::complex(array[2*j],array[2*j+1]); } if (nelements == rows()) isRead(true); } #else template <> void ColumnData >::readColumnData (long firstRow, long nelements,complex* nullValue ); #endif #if SPEC_TEMPLATE_IMP_DEFECT || SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData >::readColumnData (long firstRow, long nelements, complex* nullValue) { // specialization for ColumnData > int status(0); int anynul(0); FITSUtil::auto_array_ptr pArray(new double[nelements*2]); double* array = pArray.get(); double nulval(0); makeHDUCurrent(); if (fits_read_col_dblcmp(fitsPointer(), index(), firstRow,1,nelements, nulval,array, &anynul,&status) ) throw FitsError(status); if (m_data.size() != rows()) setData(std::vector >(rows(),nulval)); // the 'j -1 ' converts to zero based indexing. for (int j = 0; j < nelements; j++) { m_data[j - 1 + firstRow] = std::complex(array[2*j],array[2*j+1]); } if (nelements == rows()) isRead(true); } #else template <> void ColumnData >::readColumnData (long firstRow, long nelements,complex* nullValue); #endif #if SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData::writeData (const std::vector& indata, long firstRow, string* nullValue) { int status=0; char** columnData=FITSUtil::CharArray(indata); if ( fits_write_colnull(fitsPointer(), TSTRING, index(), firstRow, 1, indata.size(), columnData, 0, &status) != 0 ) throw FitsError(status); unsigned long elementsToWrite (indata.size() + firstRow - 1); std::vector __tmp(m_data); if (m_data.size() < elementsToWrite) { m_data.resize(elementsToWrite,""); std::copy(__tmp.begin(),__tmp.end(),m_data.begin()); } std::copy(indata.begin(),indata.end(),m_data.begin()+firstRow-1); for (size_t i = 0; i < indata.size(); ++i) { delete [] columnData[i]; } delete [] columnData; } #else template <> void ColumnData::writeData (const std::vector& inData, long firstRow, string* nullValue); #endif #ifdef SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData >::writeData (const std::vector >& inData, long firstRow, complex* nullValue) { int status(0); int nRows (inData.size()); FITSUtil::auto_array_ptr pData(new float[nRows*2]); float* Data = pData.get(); std::vector > __tmp(m_data); for (int j = 0; j < nRows; ++j) { Data[ 2*j] = inData[j].real(); Data[ 2*j + 1] = inData[j].imag(); } try { if (fits_write_col_cmp(fitsPointer(), index(), firstRow, 1, nRows,Data, &status) != 0) throw FitsError(status); long elementsToWrite(nRows + firstRow -1); if (elementsToWrite > static_cast(m_data.size())) { m_data.resize(elementsToWrite); } std::copy(inData.begin(),inData.end(),m_data.begin()+firstRow-1); // tell the Table that the number of rows has changed parent()->updateRows(); } catch (FitsError) // the only thing that can throw here. { // reset to original content and rethrow the exception. m_data.resize(__tmp.size()); m_data = __tmp; } } #else template <> void ColumnData >::writeData (const std::vector >& inData, long firstRow, complex* nullValue); #endif #ifdef SPEC_TEMPLATE_DECL_DEFECT template <> inline void ColumnData >::writeData (const std::vector >& inData, long firstRow, complex* nullValue) { int status(0); int nRows (inData.size()); FITSUtil::auto_array_ptr pData(new double[nRows*2]); double* Data = pData.get(); std::vector > __tmp(m_data); for (int j = 0; j < nRows; ++j) { pData[ 2*j] = inData[j].real(); pData[ 2*j + 1] = inData[j].imag(); } try { if (fits_write_col_dblcmp(fitsPointer(), index(), firstRow, 1, nRows,Data, &status) != 0) throw FitsError(status); long elementsToWrite(nRows + firstRow -1); if (elementsToWrite > static_cast(m_data.size())) { m_data.resize(elementsToWrite); } std::copy(inData.begin(),inData.end(),m_data.begin()+firstRow-1); // tell the Table that the number of rows has changed parent()->updateRows(); } catch (FitsError) // the only thing that can throw here. { // reset to original content and rethrow the exception. m_data.resize(__tmp.size()); m_data = __tmp; } } #else template <> void ColumnData >::writeData (const std::vector >& inData, long firstRow, complex* nullValue); #endif } // namespace CCfits #endif CCfits-2.7/Table.cxx0000644000225700000360000004143114764627567013631 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman // Column #include "Column.h" // ColumnCreator #include "ColumnCreator.h" // Table #include "Table.h" // FITS #include "FITS.h" #include #include #include namespace CCfits { // Class CCfits::Table::NoSuchColumn Table::NoSuchColumn::NoSuchColumn (const String& name, bool silent) : FitsException("Fits Error: cannot find column named: ",silent) { addToMessage(name); if (!silent || FITS::verboseMode() ) std::cerr << name << '\n'; } Table::NoSuchColumn::NoSuchColumn (int index, bool silent) : FitsException("Fits Error: no column numbered: ",silent) { std::ostringstream oss; oss << index; addToMessage(oss.str()); if (!silent || FITS::verboseMode() ) std::cerr << index << '\n'; } // Class CCfits::Table::InvalidColumnSpecification Table::InvalidColumnSpecification::InvalidColumnSpecification (const String& msg, bool silent) : FitsException("Fits Error: illegal column specification ",silent) { addToMessage(msg); if (!silent || FITS::verboseMode() ) std::cerr << msg << '\n'; } // Class CCfits::Table Table::Table(const Table &right) : ExtHDU(right), m_numCols(right.m_numCols), m_column() { // deep-copy the right hand side data. copyData(right); } Table::Table (FITS* p, HduType xtype, const String &hduName, int rows, const std::vector& columnName, const std::vector& columnFmt, const std::vector& columnUnit, int version) : ExtHDU(p, xtype, hduName, 8, 2, std::vector(2), version), m_numCols(columnName.size()), m_column() { int status=0; // remember this is the writing constructor so user must specify // what kind of extension this is. int tblType = xtype; naxes(1) = rows; const size_t n(columnName.size()); //FITSUtil::auto_array_ptr pCname(new char*[n]); //FITSUtil::auto_array_ptr pCformat(new char*[n]); //FITSUtil::auto_array_ptr pCunit(new char*[n]); char** cname = new char*[n]; char** cformat = new char*[n]; char** cunit = new char*[n]; char nullString[] = {'\0'}; for (size_t i = 0; i < n; ++i) { cname[i] = const_cast(columnName[i].c_str()); cformat[i] = const_cast(columnFmt[i].c_str()); if (i < columnUnit.size()) cunit[i] = const_cast(columnUnit[i].c_str()); else cunit[i] = nullString; } fits_create_tbl(fitsPointer(), tblType, rows , m_numCols, cname, cformat, cunit, const_cast(hduName.c_str()), &status); if (!status && version > 1) { char extver[] = "EXTVER"; fits_write_key(fitsPointer(), Tint, extver, &version, 0, &status); } if (status) { delete [] cname; delete [] cformat; delete [] cunit; throw FitsError(status); } delete[] cname; delete[] cformat; delete[] cunit; } Table::Table (FITS* p, int version, const String & groupName) : ExtHDU(p, BinaryTbl, "GROUPING", 8, 2, std::vector(2), version), m_column() { // +++ I think there are too many other variables I'd like to pass in, so I want a new constructor. // ie: if we want to tailor later and allow GT_ID_REF, etc // I may update this constructor to pass in that variable now, and just have a default = GT_ID_ALL_URI int status=0; // create the grouping table if ( fits_create_group(fitsPointer(), const_cast(groupName.c_str()), GT_ID_ALL_URI, &status) ) throw FitsError(status, false); // now move to the new extension // +++ no, I can't do this until addExtension() in addGroupTable() // +++ the GRPNAME keyword is already there. Do I need to add it to the object members? // +++ same with EXTVER (m_version was updated in the ExtHDU ctor) // should I use HDU::readAllKeys ()? (in addGroupTable()?) // // +++ or use Keyword& HDU::addKey(const String& name, T value, const String& comment) ? // try { // addKey("GRPNAME", groupName, ""); // } catch (...) { // std::cout << "caught addKey" << std::endl; // } // // // update the m_numCols data member // try { // if ( fits_get_num_cols (fitsPointer(), &m_numCols, &status) ) throw FitsError(status, false); // } catch (...) { // std::cout << "caught third status" << std::endl; // } } Table::Table (FITS* p, HduType xtype, const String &hduName, int version) : ExtHDU(p,xtype,hduName,version), m_numCols(0), m_column() { getVersion(); } Table::Table (FITS* p, HduType xtype, int number) : ExtHDU(p,xtype,number), m_numCols(0), m_column() { getVersion(); } Table::~Table() { // destroy existing data (garbage collection for heap objects). clearData(); } void Table::initRead () { int ncols=0; int i=0; int status=0; status = fits_get_num_cols(fitsPointer(), &ncols, &status); if (status != 0) throw FitsError(status); std::vector colName(ncols,""); std::vector colFmt(ncols,""); std::vector colUnit(ncols,""); ColumnCreator create(this); // virtual readTableHeader(ncols, colName, colFmt, colUnit); for(i=0; isetLimits(newCol->type()); } } std::ostream & Table::put (std::ostream &s) const { s << "FITS Table:: " << " Name: " << name() << " BITPIX "<< bitpix() << "\n"; s << " Number of Rows (NAXIS2) " << axis(1) << "\n"; s << " HISTORY: " << history() << '\n'; s << " COMMENTS: " << comment() << '\n'; s << " HDU number: " << index() + 1 << " No. of Columns: " << numCols() ; if ( version() ) s << " Version " << version(); s << "\nNumber of keywords read: " << keyWord().size() << "\n"; for (std::map::const_iterator ki = keyWord().begin(); ki != keyWord().end(); ki++) { s << *((*ki).second) << std::endl; } std::vector __tmp; ColMap::const_iterator ciEnd(m_column.end()); ColMap::const_iterator ci(m_column.begin()); while (ci != ciEnd) { __tmp.push_back((*ci).second); ++ci; } std::sort(__tmp.begin(),__tmp.end(),FITSUtil::ComparePtrIndex()); for (std::vector::iterator lci = __tmp.begin(); lci != __tmp.end(); ++lci) { s << **lci << std::flush; } return s; } void Table::init (bool readFlag, const std::vector& keys) { // read and defined the columns from the header. initRead(); // read data or keys if any are requested. if (readFlag || keys.size() > 0) readData(readFlag,keys); } void Table::clearData () { // obliterate current contents, then remove pointers from the map. for (ColMap::const_iterator col = m_column.begin(); col != m_column.end(); col++) { delete (*col).second; } m_column.clear(); } void Table::copyData (const Table& right) { // ensure deep copy. clone() calls the copy constructor for Column. // Column has 'deep copy' because all its data members that need // to be copied (i.e. not the pointer to the fits file) are allocated // on the stack by being Container types. ColMap newColumnContainer; try { for (ColMap::const_iterator col = right.m_column.begin(); col != right.m_column.end(); col++) { Column* colCopy = (*col).second->clone(); colCopy->setParent(this); newColumnContainer.insert(std::make_pair(col->first, colCopy)); } m_column = newColumnContainer; } catch (...) { throw; } } Column& Table::column (const String& colName, bool caseSensitive) const { // For backwards compatibility with older m_column implementation as // a map (not a multimap), just return the first key that matches. bool isFound = false; ColMap::const_iterator key = m_column.begin(); if (caseSensitive) { key = m_column.find(colName); isFound = (key != m_column.end()); } else { const string lcColName = FITSUtil::lowerCase(colName); while (!isFound && key != m_column.end()) { isFound = (lcColName == FITSUtil::lowerCase(key->first)); if (!isFound) ++key; } } if ( !isFound ) throw NoSuchColumn(colName); return *(key->second); } Column& Table::column (int colIndex) const { ColMap::const_iterator key; for ( key = m_column.begin(); key != m_column.end(); key++) { if ( ((*key).second)->index() == colIndex) break; } if ( key == m_column.end() ) throw NoSuchColumn(colIndex); return *((*key).second); } void Table::updateRows () { long numrows(0); int status(0); if (fits_get_num_rows(fitsPointer(),&numrows,&status) ) throw FitsError(status); long oldrows = naxes(1); naxes(1,numrows); // If the number of rows has changed, it could be due to // a write operation into a single column. Therefore other // previously read columns will no longer be up-to-date, // as seen by their m_data buffers not matching the new // nRows in table. // If we got here from Table's insertRows or deleteRows, // every column WILL have had it's m_data storage updated. if (oldrows != numrows) { ColMap::iterator itCol = m_column.begin(); ColMap::iterator itColEnd = m_column.end(); while (itCol != itColEnd) { const long curStorage = static_cast(itCol->second->getStoredDataSize()); if (curStorage != numrows) itCol->second->isRead(false); ++itCol; } } } void Table::setColumn (const String& colname, Column* value) { m_column.insert(std::make_pair(colname, value)); } void Table::deleteColumn (const String& columnName) { std::pair itRange = m_column.equal_range(columnName); if (itRange.first == itRange.second) throw NoSuchColumn(columnName); ColMap::iterator itCol = itRange.first; while (itCol != itRange.second) { // Don't assume if multiple cols share columnName that // equal_range returns them sorted by col idx. // Note that both fits_delete_col and reindex() are O(N) // where N = total number of columns in table. Column* doomed = itCol->second; int status=0; if (fits_delete_col(fitsPointer(), doomed->index(), &status)) throw FitsError(status); m_column.erase(itCol++); reindex(doomed->index(), false); delete doomed; } updateRows(); } void Table::insertRows (long first, long number) { int status(0); if (fits_insert_rows(fitsPointer(),first,number,&status)) throw FitsError(status); // cfitsio's semantics are that rows are insert after row first, // while vector's insert semantic is to insert before the initial. ColMap::iterator ci = m_column.begin(); ColMap::iterator ciEnd = m_column.end(); while (ci != ciEnd) { ((*ci).second)->insertRows(first,number); ++ci; } updateRows(); } void Table::deleteRows (long first, long number) { // this should only be able to throw the FitsError exception and // should not leak resources as per the standard library guarantee for vector. makeThisCurrent(); int status(0); // cfitsio will reject invalid values of first, number. (e.g. first <= 0). if (fits_delete_rows(fitsPointer(),first,number,&status)) throw FitsError(status); ColMap::iterator ci = m_column.begin(); ColMap::iterator ciEnd = m_column.end(); while (ci != ciEnd) { ((*ci).second)->deleteRows(first,number); ++ci; } updateRows(); } void Table::deleteRows (const std::vector& rowList) { int status(0); makeThisCurrent(); FITSUtil::CVarray convert; FITSUtil::auto_array_ptr pDoomedRows(convert(rowList)); long* doomedRows = pDoomedRows.get(); if (fits_delete_rowlist(fitsPointer(),doomedRows,rowList.size(),&status)) throw FitsError(status); ColMap::iterator ci = m_column.begin(); ColMap::iterator ciEnd = m_column.end(); const size_t N(rowList.size()); while (ci != ciEnd) { for (size_t j = 0; j < N; ++j) { ((*ci).second)->deleteRows(rowList[j],1); } ++ci; } updateRows(); } void Table::reindex (int startNum, bool isInsert) { // If isInsert, assume this is called PRIOR to insertion into // column container. // If !isInsert, assume this is called AFTER deletion. makeThisCurrent(); ColMap::iterator itCol = m_column.begin(); ColMap::iterator itColEnd = m_column.end(); while (itCol != itColEnd) { Column* col = itCol->second; int oldIdx = col->index(); if (isInsert) { if (oldIdx >= startNum) col->index(oldIdx+1); } else { if (oldIdx > startNum) col->index(oldIdx-1); } ++itCol; } } long Table::getRowsize () const { int status = 0; long rowSize = 0; if (fits_get_rowsize(fitsPointer(), &rowSize, &status)) throw FitsError(status); return rowSize; } void Table::copyColumn(const Column& inColumn, int colIndx, bool insertNewCol) { int status=0; fitsfile *infptr = inColumn.parent()->fitsPointer(); const int inHduNum = inColumn.parent()->index(); makeThisCurrent(); // fits_copy_col will prevent copying from Binary to AsciiTable, // so don't need to explicitly check for that here. if (fitsPointer() == infptr && inColumn.parent() != this) { // Can't give the same fitsfile pointer for in/out in fits_copy_col. fitsfile *tmpfptr=0; FITSUtil::auto_array_ptr pFileName(new char[FLEN_FILENAME]); if (fits_file_name(infptr, pFileName.get(),&status)) throw FitsError(status); if (fits_open_file(&tmpfptr,pFileName.get(), 1, &status)) throw FitsError(status); if (fits_movabs_hdu(tmpfptr, index()+1, 0, &status)) { fits_close_file(tmpfptr,&status); throw FitsError(status); } if (fits_movabs_hdu(infptr, inHduNum+1, 0, &status)) { fits_close_file(tmpfptr,&status); throw FitsError(status); } if (fits_copy_col(infptr, tmpfptr, inColumn.index(), colIndx, (int)insertNewCol, &status)) { fits_close_file(tmpfptr,&status); throw FitsError(status); } fits_close_file(tmpfptr,&status); } else { inColumn.parent()->makeThisCurrent(); if (fits_copy_col(infptr,fitsPointer(), inColumn.index(), colIndx, (int)insertNewCol,&status)) throw FitsError(status); } if (insertNewCol) { Column* colCopy = inColumn.clone(); colCopy->setParent(this); colCopy->index(colIndx); // Not going to assume we can reuse inColumn's m_data array. // For one thing, it might not even have the same number of rows // as this table. It's safest just to force a read-from-disk // next time a read operation is called. colCopy->resetRead(); reindex(colIndx, true); column().insert(std::make_pair(colCopy->name(), colCopy)); } else { // Can assume the write to existing column succeeded, else // bad status would have thrown above. ColMap::iterator itCol = column().begin(); ColMap::iterator itColEnd = column().end(); bool isFound=false; while (!isFound && itCol != itColEnd) { if (itCol->second->index() == colIndx) isFound = true; else ++itCol; } if (itCol != itColEnd) { // For a non-inserted column copy, the various column keywords // (ie. TSCALn, TTYPEn,...) of the destination column ARE NOT // replaced with the incoming copy values. Therefore DON'T // replace CCfits Column object with a clone of the input. // Simply reset isRead flag to false. m_data array will be // properly refilled upon next read operation. itCol->second->resetRead(); } } } // Additional Declarations } // namespace CCfits CCfits-2.7/PrimaryHDU.h0000644000225700000360000001660514764627567014220 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef PRIMARYHDU_H #define PRIMARYHDU_H 1 // valarray #include // PHDU #include "PHDU.h" // HDUCreator #include "HDUCreator.h" // Image #include "Image.h" // FITS #include "FITS.h" #include "CCfits.h" #include #include #include namespace CCfits { template class PrimaryHDU : public PHDU //## Inherits: %394E6F870338 { public: virtual PrimaryHDU * clone (FITS* p) const; // Read data reads the image if readFlag is true and // optional keywords if supplied. Thus, with no arguments, // readData() does nothing. virtual void readData (bool readFlag = false, const std::vector& keys = std::vector()); const std::valarray& image () const; const std::valarray& readImage (long first, long nElements, T* nullValue); const std::valarray& readImage (const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride,T* nullValue); void writeImage (long first, long nElements, const std::valarray& inData, T* nullValue = 0); void writeImage (const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& inData); virtual void zero (double value); virtual void scale (double value); virtual void suppressScaling(bool toggle = true); virtual void resetImageRead (); // Additional Public Declarations protected: // Constructor for new FITS objects, takes as arguments // the required keywords for a primary HDU. PrimaryHDU (FITS* p, const int bitpix, const int naxis, const std::vector& naxes, const std::valarray& data = std::valarray()); // Custom constructor. Allows specification of data to be read and whether to read data at // construction or wait until the image data are requested. The default is 'lazy initialization:' // wait until asked. PrimaryHDU (FITS* p, bool readFlag = false, const std::vector& keys = std::vector()); // Additional Protected Declarations private: PrimaryHDU(const PrimaryHDU< T > &right); PrimaryHDU< T > & operator=(const PrimaryHDU< T > &right); virtual std::ostream & put (std::ostream &s) const; const Image& data () const; // Additional Private Declarations private: //## implementation // Data Members for Associations Image m_data; // Additional Implementation Declarations friend class HDUCreator; friend class PHDU; }; // Parameterized Class CCfits::PrimaryHDU template inline std::ostream & PrimaryHDU::put (std::ostream &s) const { s << "PrimaryHDU:: Simple? " << simple() << " Extend?: " << extend() << " Bitpix: " << bitpix() << " naxis = " << axes() << "\n"; s << "Axis Lengths: \n"; for (int i=0; i < axes(); i++) s << " axis[" << i << "] " << axis(i) << "\n"; s << "\nNumber of keywords read: " << keyWord().size() << "\n"; for (std::map::const_iterator ki = keyWord().begin(); ki != keyWord().end(); ki++) { s << *((*ki).second) << std::endl; } s << " HISTORY: " << history() << '\n'; s << " COMMENTS: " < inline const Image& PrimaryHDU::data () const { return m_data; } // Parameterized Class CCfits::PrimaryHDU template PrimaryHDU::PrimaryHDU(const PrimaryHDU &right) : PHDU(right), m_data(right.m_data) { } template PrimaryHDU::PrimaryHDU (FITS* p, const int bitpix, const int naxis, const std::vector& naxes, const std::valarray& data) : PHDU(p,bitpix,naxis,naxes),m_data(data) { } template PrimaryHDU::PrimaryHDU (FITS* p, bool readFlag, const std::vector& keys) : PHDU(p), m_data() { initRead(); if (readFlag || keys.size()) readData(readFlag,keys); } template PrimaryHDU * PrimaryHDU::clone (FITS* p) const { PrimaryHDU* cloned = new PrimaryHDU(*this); cloned->parent() = p; return cloned; } template void PrimaryHDU::readData (bool readFlag, const std::vector& keys) { // Default reading mode. Read everything if readFlag is true. makeThisCurrent(); if ( keys.size() > 0) { std::list keyList(keys.size()); // keys is converted to a list so that any keys not in the header // can be easily erased. internally an exception will be thrown, // on a missing key, and its catch clause will print a message. std::copy(keys.begin(),keys.end(),keyList.begin()); readKeywords(keyList); } // read the entire image, setting null values to the // return value from FitsNullValue. It would be easy to make the null value // a user defined input, but that's not implemented yet. if ( readFlag && (naxis() > 0) ) { FITSUtil::FitsNullValue null; long init(1); T nulValue(null()); long nelements(std::accumulate(naxes().begin(),naxes().end(),init,std::multiplies() )); readImage(1,nelements,&nulValue); } } template const std::valarray& PrimaryHDU::image () const { return m_data.image(); } template const std::valarray& PrimaryHDU::readImage (long first, long nElements, T* nullValue) { makeThisCurrent(); return m_data.readImage(fitsPointer(),first,nElements,nullValue,naxes(),anynul()); } template const std::valarray& PrimaryHDU::readImage (const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride,T* nullValue) { makeThisCurrent(); return m_data.readImage(fitsPointer(),firstVertex,lastVertex,stride,nullValue,naxes(),anynul()); } template void PrimaryHDU::writeImage (long first, long nElements, const std::valarray& inData, T* nullValue) { long newNaxisN=0; m_data.writeImage(fitsPointer(),first,nElements,inData,naxes(),newNaxisN,nullValue); if (newNaxisN) naxes(naxes().size()-1,newNaxisN); } template void PrimaryHDU::writeImage (const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& inData) { long newNaxisN=0; m_data.writeImage(fitsPointer(),firstVertex,lastVertex,stride,inData,naxes(),newNaxisN); if (newNaxisN) naxes(naxes().size()-1,newNaxisN); } template void PrimaryHDU::scale (double value) { PHDU::scale(value); m_data.scalingHasChanged(); } template void PrimaryHDU::zero (double value) { PHDU::zero(value); m_data.scalingHasChanged(); } template void PrimaryHDU::suppressScaling (bool toggle) { HDU::suppressScaling(toggle); m_data.scalingHasChanged(); } template void PrimaryHDU::resetImageRead() { m_data.resetRead(); } // Additional Declarations } // namespace CCfits #endif CCfits-2.7/cookbook.cxx0000644000225700000360000006107714764627567014420 0ustar cagordonlhea// cookbook CCfits demonstration program // Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman // DO NOT define this variable in any other program. #define CCFITSCOOKBOOK_BUILD 1 // The CCfits headers are expected to be installed in a subdirectory of // the include path. // The header file contains all that is necessary to use both the CCfits // library and the cfitsio library (for example, it includes fitsio.h) thus making // all of cfitsio's symbolic names available. #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif // this includes 12 of the CCfits headers and will support all CCfits operations. // the installed location of the library headers is $(ROOT)/include/CCfits // to use the library either add -I$(ROOT)/include/CCfits or #include // in the compilation target. #include #include // The library is enclosed in a namespace. using namespace CCfits; using std::valarray; int main(); int writeImage(); int writeAscii(); int writeBinary(); int copyHDU(); int selectRows(); int readHeader(); int readImage(); int readTable(); int readExtendedSyntax(); int main() { FITS::setVerboseMode(true); try { if (!writeImage()) std::cerr << " writeImage() \n"; if (!writeAscii()) std::cerr << " writeAscii() \n"; if (!writeBinary()) std::cerr << " writeBinary() \n"; if (!copyHDU()) std::cerr << " copyHDU() \n"; if (!readHeader()) std::cerr << " readHeader() \n"; if (!readImage()) std::cerr << " readImage() \n"; if (!readTable()) std::cerr << " readTable() \n"; if (!readExtendedSyntax()) std::cerr << " readExtendedSyntax() \n"; if (!selectRows()) std::cerr << " selectRows() \n"; } catch (FitsException&) // will catch all exceptions thrown by CCfits, including errors // found by cfitsio (status != 0). { std::cerr << " Fits Exception Thrown by test function \n"; } return 0; } int writeImage() { // Create a FITS primary array containing a 2-D image // declare axis arrays. long naxis = 2; long naxes[2] = { 300, 200 }; // declare unique-pointer to FITS at function scope. Ensures no resources // leaked if something fails in dynamic allocation. std::unique_ptr pFits(nullptr); try { // overwrite existing file if the file already exists. const std::string fileName("!atestfil.fit"); // Create a new FITS object, specifying the data type and axes for the primary // image. Simultaneously create the corresponding file. // this image is unsigned short data, demonstrating the cfitsio extension // to the FITS standard. pFits.reset( new FITS(fileName , USHORT_IMG , naxis , naxes ) ); } catch (FITS::CantCreate) { // ... or not, as the case may be. return -1; } // references for clarity. long& vectorLength = naxes[0]; long& numberOfRows = naxes[1]; long nelements(1); // Find the total size of the array. // this is a little fancier than necessary ( It's only // calculating naxes[0]*naxes[1]) but it demonstrates use of the // C++ standard library accumulate algorithm. nelements = std::accumulate(&naxes[0],&naxes[naxis],1,std::multiplies()); // create a new image extension with a 300x300 array containing float data. std::vector extAx(2,300); string newName ("NEW-EXTENSION"); ExtHDU* imageExt = pFits->addImage(newName,FLOAT_IMG,extAx); // create a dummy row with a ramp. Create an array and copy the row to // row-sized slices. [also demonstrates the use of valarray slices]. // also demonstrate implicit type conversion when writing to the image: // input array will be of type float. std::valarray row(vectorLength); for (long j = 0; j < vectorLength; ++j) row[j] = j; std::valarray array(nelements); for (int i = 0; i < numberOfRows; ++i) { array[std::slice(vectorLength*static_cast(i),vectorLength,1)] = row + i; } #ifdef VALARRAY_DEFECT const double PI ( std::atan(1.)*4. ); #else const double PI (std::atan(1.)*4.); #endif // create some data for the image extension. long extElements = std::accumulate(extAx.begin(),extAx.end(),1,std::multiplies()); std::valarray ranData(extElements); const float PIBY = static_cast < float > (PI/150.); for ( int jj = 0 ; jj < extElements ; ++jj) { float arg = static_cast < float > ( PIBY*jj ); #ifdef VALARRAY_DEFECT float val = std::cos( arg ); ranData[jj] = val; #else ranData[jj] = static_cast < float > ( std::cos(arg) ); #endif } long fpixel(1); // write the image extension data: also demonstrates switching between // HDUs. imageExt->write(fpixel,extElements,ranData); //add two keys to the primary header, one long, one complex. long exposure(1500); #ifdef VALARRAY_DEFECT double re = std::cos( 2*PI/3.0 ); double im = std::sin( 2*PI/3.0 ); std::complex omega( re, im ); #else float re = static_cast < float > ( std::cos(2*PI/3.) ); float im = static_cast < float > ( std::sin(2*PI/3.) ); std::complex omega( re, im ); #endif pFits->pHDU().addKey("EXPOSURE", exposure,"Total Exposure Time"); pFits->pHDU().addKey("OMEGA",omega," Complex cube root of 1 "); // The function PHDU& FITS::pHDU() returns a reference to the object representing // the primary HDU; PHDU::write( ) is then used to write the data. pFits->pHDU().write(fpixel,nelements,array); // PHDU's friend ostream operator. Doesn't print the entire array, just the // required & user keywords, and is provided largely for testing purposes [see // readImage() for an example of how to output the image array to a stream]. std::cout << pFits->pHDU() << std::endl; return 0; } int writeAscii () //****************************************************************** // Create an ASCII Table extension containing 3 columns and 6 rows * //****************************************************************** { // declare unique-pointer to FITS at function scope. Ensures no resources // leaked if something fails in dynamic allocation. std::unique_ptr pFits(nullptr); try { const std::string fileName("atestfil.fit"); // append the new extension to file created in previous function call. // CCfits writing constructor. // if this had been a new file, then the following code would create // a dummy primary array with BITPIX=8 and NAXIS=0. pFits.reset( new FITS(fileName,Write) ); } catch (CCfits::FITS::CantOpen) { // ... or not, as the case may be. return -1; } unsigned long rows(6); string hduName("PLANETS_ASCII"); std::vector colName(3,""); std::vector colForm(3,""); std::vector colUnit(3,""); /* define the name, datatype, and physical units for the 3 columns */ colName[0] = "Planet"; colName[1] = "Diameter"; colName[2] = "Density"; colForm[0] = "a8"; colForm[1] = "i6"; colForm[2] = "f4.2"; colUnit[0] = ""; colUnit[1] = "km"; colUnit[2] = "g/cm^-3"; std::vector planets(rows); const char *planet[] = {"Mercury", "Venus", "Earth", "Mars","Jupiter","Saturn"}; const char *mnemoy[] = {"Many", "Volcanoes", "Erupt", "Mulberry","Jam","Sandwiches","Under", "Normal","Pressure"}; long diameter[] = { 4880, 12112, 12742, 6800, 143000, 121000}; float density[] = { 5.1f, 5.3f, 5.52f, 3.94f, 1.33f, 0.69f}; // append a new ASCII table to the fits file. Note that the user // cannot call the Ascii or Bin Table constructors directly as they // are protected. Table* newTable = pFits->addTable(hduName,rows,colName,colForm,colUnit,AsciiTbl); size_t j = 0; for ( ; j < rows; ++j) planets[j] = string(planet[j]); // Table::column(const std::string& name) returns a reference to a Column object try { newTable->column(colName[0]).write(planets,1); newTable->column(colName[1]).write(diameter,rows,1); newTable->column(colName[2]).write(density,rows,1); } catch (FitsException&) { // ExtHDU::column could in principle throw a NoSuchColumn exception, // or some other fits error may ensue. std::cerr << " Error in writing to columns - check e.g. that columns of specified name " << " exist in the extension \n"; } // FITSUtil::auto_array_ptr is provided to counter resource leaks that // may arise from C-arrays. It is a std::unique_ptr analog that calls // delete[] instead of delete. FITSUtil::auto_array_ptr pDiameter(new long[rows]); FITSUtil::auto_array_ptr pDensity(new float[rows]); long* Cdiameter = pDiameter.get(); float* Cdensity = pDensity.get(); Cdiameter[0] = 4880; Cdiameter[1] = 12112; Cdiameter[2] = 12742; Cdiameter[3] = 6800; Cdiameter[4] = 143000; Cdiameter[5] = 121000; Cdensity[0] = 5.1f; Cdensity[1] = 5.3f; Cdensity[2] = 5.52f; Cdensity[3] = 3.94f; Cdensity[4] = 1.33f; Cdensity[5] = 0.69; // this << operator outputs everything that has been read. std::cout << *newTable << std::endl; pFits->pHDU().addKey("NEWVALUE",42," Test of adding keyword to different extension"); pFits->pHDU().addKey("STRING",std::string(" Rope "),"trailing blank test 1 "); pFits->pHDU().addKey("STRING2",std::string("Cord"),"trailing blank test 2 "); // demonstrate increaing number of rows and null values. long ignoreVal(12112); long nullNumber(-999); try { // add a TNULLn value to column 2. newTable->column(colName[1]).addNullValue(nullNumber); // test that writing new data properly expands the number of rows // in both the file]).write(planets,rows-3); newTable->column(colName[2]).write(density,rows,rows-3); // test the undefined value functionality. Undefineds are replaced on // disk but not in the memory copy. newTable->column(colName[1]).write(diameter,rows,rows-3,&ignoreVal); } catch (FitsException&) { // this time we're going to ignore problems in these operations } // output header information to check that everything we did so far // hasn't corrupted the file. std::cout << pFits->pHDU() << std::endl; std::vector mnemon(9); for ( j = 0; j < 9; ++j) mnemon[j] = string(mnemoy[j]); // Add a new column of string type to the Table. // type, columnName, width, units. [optional - decimals, column number] // decimals is only relevant for floatingpoint data in ascii columns. newTable->addColumn(Tstring,"Mnemonic",10," words "); newTable->column("Mnemonic").write(mnemon,1); // write the data string. newTable->writeDate(); // and see if it all worked right. std::cout << *newTable << std::endl; return 0; } int writeBinary () //********************************************************************* // Create a BINARY table extension and write and manipulate vector rows //********************************************************************* { std::unique_ptr pFits(nullptr); try { const std::string fileName("atestfil.fit"); pFits.reset( new FITS(fileName,Write) ); } catch (CCfits::FITS::CantOpen) { return -1; } unsigned long rows(3); string hduName("TABLE_BINARY"); std::vector colName(7,""); std::vector colForm(7,""); std::vector colUnit(7,""); colName[0] = "numbers"; colName[1] = "sequences"; colName[2] = "powers"; colName[3] = "big-integers"; colName[4] = "dcomplex-roots"; colName[5] = "fcomplex-roots"; colName[6] = "scalar-complex"; colForm[0] = "8A"; colForm[1] = "20J"; colForm[2] = "20D"; colForm[3] = "20V"; colForm[4] = "20M"; colForm[5] = "20C"; colForm[6] = "1M"; colUnit[0] = "magnets"; colUnit[1] = "bulbs"; colUnit[2] = "batteries"; colUnit[3] = "mulberries"; colUnit[4] = ""; colUnit[5] = ""; colUnit[6] = "pico boo"; std::vector numbers(rows); const string num("NUMBER-"); for ( size_t j = 0; j < rows; ++j) { #ifdef SSTREAM_DEFECT std::ostrstream pStr; #else std::ostringstream pStr; #endif pStr << num << j+1; #ifdef SSTREAM_DEFECT pStr << std::ends; #endif numbers[j] = string(pStr.str()); } const size_t OFFSET(20); // write operations take in data as valarray, vector , and // vector >, and T* C-arrays. Create arrays to exercise the C++ // containers. Check complex I/O for both float and double complex types. std::valarray sequence(60); std::vector sequenceVector(60); std::vector > sequenceVV(3); for ( size_t j = 0; j < rows; ++j) { sequence[OFFSET*j] = 1 + j; sequence[OFFSET*j+1] = 1 + j; sequenceVector[OFFSET*j] = sequence[OFFSET*j]; sequenceVector[OFFSET*j+1] = sequence[OFFSET*j+1]; // generate Fibonacci numbers. for (size_t i = 2; i < OFFSET; ++i) { size_t elt (OFFSET*j +i); sequence[elt] = sequence[elt-1] + sequence[elt - 2]; sequenceVector[elt] = sequence[elt] ; } sequenceVV[j].resize(OFFSET); sequenceVV[j] = sequence[std::slice(OFFSET*j,OFFSET,1)]; } std::valarray unsignedData(60); unsigned int base (1 << 31); std::valarray powers(60); std::vector powerVector(60); std::vector > powerVV(3); std::valarray > croots(60); std::valarray > fcroots(60); std::vector > fcroots_vector(60); std::vector > > fcrootv(3); const double PI (std::atan(1.)*4.); // create complex data as 60th roots of unity. double PIBY = PI/60.; for ( size_t j = 0; j < rows; ++j) { for (size_t i = 0; i < OFFSET; ++i) { size_t elt (OFFSET*j+i); unsignedData[elt] = sequence[elt]; #ifdef VALARRAY_DEFECT double re = std::cos(PIBY*elt); double im = std::sin(PIBY*elt); croots[elt] = std::complex( re, im ); #else croots[elt] = std::complex(std::cos(PIBY*elt),std::sin(PIBY*elt)); #endif fcroots[elt] = std::complex(croots[elt].real(),croots[elt].imag()); double x = i+1; powers[elt] = pow(x,(int)j+1); powerVector[elt] = powers[elt]; } powerVV[j].resize(OFFSET); powerVV[j] = powers[std::slice(OFFSET*j,OFFSET,1)]; } #ifdef TEMPLATE_AMBIG7_DEFECT std::slice s ( 0, 20, 1 ); std::valarray > fcroots_sliced ( fcroots[s] ); FITSUtil::fillMSva(fcroots_vector, fcroots_sliced ); #else FITSUtil::fill(fcroots_vector,fcroots[std::slice(0,20,1)]); #endif unsignedData += base; // syntax identical to Binary Table Table* newTable = pFits->addTable(hduName,rows,colName,colForm,colUnit); // numbers is a scalar column newTable->column(colName[0]).write(numbers,1); // write valarrays to vector column: note signature change newTable->column(colName[1]).write(sequence,rows,1); newTable->column(colName[2]).write(powers,rows,1); newTable->column(colName[3]).write(unsignedData,rows,1); newTable->column(colName[4]).write(croots,rows,1); newTable->column(colName[5]).write(fcroots,rows,3); newTable->column(colName[6]).write(fcroots_vector,1); // write vectors to column: note signature change newTable->column(colName[1]).write(sequenceVector,rows,4); newTable->column(colName[2]).write(powerVector,rows,4); std::cout << *newTable << std::endl; for (size_t j = 0; j < 3 ; ++j) { fcrootv[j].resize(20); fcrootv[j] = fcroots[std::slice(20*j,20,1)]; } // write vector object to column. newTable->column(colName[1]).writeArrays(sequenceVV,7); newTable->column(colName[2]).writeArrays(powerVV,7); // create a new vector column in the Table newTable->addColumn(Tfloat,"powerSeq",20,"none"); // add data entries to it. newTable->column("powerSeq").writeArrays(powerVV,1); newTable->column("powerSeq").write(powerVector,rows,4); newTable->column("dcomplex-roots").write(croots,rows,4); newTable->column("powerSeq").write(sequenceVector,rows,7); std::cout << *newTable << std::endl; // delete one of the original columns. newTable->deleteColumn(colName[2]); // add a new set of rows starting after row 3. So we'll have 14 with // rows 4,5,6,7,8 blank newTable->insertRows(3,5); // now, in the new column, write 3 rows (sequenceVV.size() = 3). This // will place data in rows 3,4,5 of this column,overwriting them. newTable->column("powerSeq").writeArrays(sequenceVV,3); newTable->column("fcomplex-roots").writeArrays(fcrootv,3); // delete 3 rows starting with row 2. A Table:: method, so the same // code is called for all Table objects. We should now have 11 rows. newTable->deleteRows(2,3); //add a history string. This function call is in HDU:: so is identical //for all HDUs string hist("This file was created for testing CCfits write functionality"); hist += " it serves no other useful purpose. This particular part of the file was "; hist += " constructed to test the writeHistory() and writeComment() functionality" ; newTable->writeHistory(hist); // add a comment string. Use std::string method to change the text in the message // and write the previous junk as a comment. hist.insert(0, " COMMENT TEST "); newTable->writeComment(hist); // ... print the result. std::cout << *newTable << std::endl; return 0; } int copyHDU() { //*******************************************************************/ // copy the 1st and 3rd HDUs from the input file to a new FITS file */ //*******************************************************************/ const string inFileName("atestfil.fit"); const string outFileName("btestfil.fit"); remove(outFileName.c_str()); /* Delete old file if it already exists */ // open the existing FITS file (Read is the default anyway) FITS inFile(inFileName,Read); // custom constructor FITS::FITS(const string&, const FITS&) for // this particular task. FITS outFile(outFileName,inFile); // copy extension by number... outFile.copy(inFile.extension(2)); // copy extension by name... outFile.copy(inFile.extension("TABLE_BINARY")); return 0; } int readHeader() { const string SPECTRUM("SPECTRUM"); // read a particular HDU within the file. This call reads just the header // information from SPECTRUM std::unique_ptr pInfile(new FITS("file1.pha",Read,SPECTRUM)); // define a reference for clarity. ExtHDU& table = pInfile->extension(SPECTRUM); // read all the keywords, excluding those associated with columns. table.readAllKeys(); // print the result. std::cout << table << std::endl; return 0; } int readImage() { std::unique_ptr pInfile(new FITS("atestfil.fit",Read,true)); PHDU& image = pInfile->pHDU(); std::valarray contents; // read all user-specifed, coordinate, and checksum keys in the image image.readAllKeys(); image.read(contents); // this doesn't print the data, just header info. std::cout << image << std::endl; long ax1(image.axis(0)); long ax2(image.axis(1)); for (long j = 0; j < ax2; j+=10) { std::ostream_iterator c(std::cout,"\t"); std::copy(&contents[0]+j*ax1,&contents[0]+(j+1)*ax1,c); std::cout << '\n'; } std::cout << std::endl; return 0; } int readTable() { // read a table and explicitly read selected columns. To read all the // data on construction, set the last argument of the FITS constructor // call to 'true'. This has been tested. std::vector hdus(2); hdus[0] = "PLANETS_ASCII"; hdus[1] = "TABLE_BINARY"; std::unique_ptr pInfile(new FITS("atestfil.fit",Read,hdus,false)); ExtHDU& table = pInfile->extension(hdus[1]); std::vector < valarray > pp; table.column("powerSeq").readArrays( pp, 1,3 ); std::vector < valarray > > cc; table.column("dcomplex-roots").readArrays( cc, 1,3 ); std::valarray < std::complex > ff; table.column("fcomplex-roots").read( ff, 7 ); std::vector > sf; table.column("scalar-complex").read(sf, 10, 15); std::cout << pInfile->extension(hdus[0]) << std::endl; std::cout << pInfile->extension(hdus[1]) << std::endl; return 0; } int readExtendedSyntax() { // Current extension will be set to PLANETS_ASCII after construction: std::unique_ptr pInfile(new FITS("btestfil.fit[PLANETS_ASCII][Density > 5.2]")); std::cout << "\nCurrent extension: " << pInfile->currentExtensionName() << std::endl; Column& col = pInfile->currentExtension().column("Density"); std::vector densities; // nRows should only include rows with density column vals > 5.2. const int nRows = col.rows(); col.read(densities, 1, nRows); for (int i=0; i pInfile(new FITS(inFile,Write,string("PLANETS_ASCII"))); FITS* infile = pInfile.get(); std::unique_ptr pNewfile(new FITS(newFile,Write)); ExtHDU& source = infile->extension("PLANETS_ASCII"); const string expression("DENSITY > 3.0"); Table& sink1 = pNewfile.get()->filter(expression,source,false,true); std::cout << sink1 << std::endl; // test 2: write a new HDU to the current file, overwrite false, read true. // AS OF 7/2/01 does not work because of a bug in cfitsio, but does not // crash, simply writes a new header to the file without also writing the // selected data. Table& sink2 = infile->filter(expression,source,false,true); std::cout << sink2 << std::endl; // reset the source file back to the extension in question. source = infile->extension("PLANETS_ASCII"); // test 3: overwrite the current HDU with filtered data. Table& sink3 = infile->filter(expression,source,true,true); std::cout << sink3 << std::endl; return 0; } #undef CCFITSCOOKBOOK_BUILD CCfits-2.7/CCfits-2.7.pdf0000644000225700000360000234513714764645212014227 0ustar cagordonlhea%PDF-1.5 %ÐÔÅØ 2 0 obj << /Type /ObjStm /N 100 /First 831 /Length 1528 /Filter /FlateDecode >> stream xÚÍYÛrG}×WÌ[ B`ç>“¢¨Ì­**6!¼È’lTØ–K’1ü}N+¥–Z;»+KØáÁ³³£Ùî>§/s±V•òÊV*(íœÊJGüUÊøJi«LòW6Eü œ1J'œVF«CÉbšW)àTŽQ’  IÕ²0A-²|VÂ\Â3)tP§ƒ×=鱂èŒxq¬±ÊAi!“2Æ=äå„§S¦JZy¨ÔϤŒ©æë{Á(cuVÁã !!ÀÐŒß3,5•Š€™²Q–g ‰  ¬1x&˜ ØPa‹=¨´>8N¬Ïª P ¢mH˜l3”B”ÓÀŸIdNÊY rÐI©§+€ôp+á…8—ˆ¸*£‹I€Ë]‰F¨€ Û¼&¶áoЀnt\îiC4U4âѱ˜çx§ÉâjëBš´ž²}+Ü}v¨,kaÒK¦íˆšC~ý³hSþ¾“b„²_¹é Uà‰d;”¾[}·JƒáJÿ`7KÒ½ïÍgÛªãLwÆÍ˜§œnñ½ôÝ~ý/OZ½bKá÷^FļP”λ#Û–þŒ+Ř• 7 —¥ Á%«?p,-þ‡šß$¥_jÜ]îUUÀû–uäR8ãÞI-7?JB†²¶Ô·Bi~Åç²xÕÃk#W¦²Œ [íJ9`1 _å&ÂwEÌ©L°óf´¾®ñ£Ô؆ö½œz¾‘ÒëSßÈ §åe»¡05~¼œð‚šo’싦¾Åù¡a™Ê I' nÀêœÍ­ËkýŒsbÌÍrÂw,×äSÖÌVü‰ÙZ¾<“Ÿ6Dç]°•Øšp ý¾Q;Åüò£cYÊ®ùuT›úR®0£ŽÔÉux‡… ý ËŸ®8Õo6IWm‡Œ~iÝ\Wôº0µ^zW—Ö¼ÎÝÜçüš±hA¬÷B\²båmÑoö×—9©í^ö^Ë õy+ë†ò Ö–nâHÔ—'*±ãø^8c}kí6¬«ÊýUrxU[ª÷=­·X×´)ù,3ê—šMf…ãçƒÚ2Ó)õ­¼ú˜âÁkÚóí)ûœµ/m#]zÍ®zß•Ï×{šcÜÛòÁRsay$¯ï&åsñ¬ ÖRrl8m\ Ö È›BõùÖÎ_,…Q»¶¶œ.ì~JUmÆ›¡‹”=¤’”ßÀU¹!øÎdœí‰-7^}µ)zÍ8F…«˜çlË¥Œ©î ©v¸½£ŒÞ5§nï¦øR-ªo6òNr~³ó¯1?(Sn‘œ=n{w‚²ÚèœÈŒYA´\J˯xF’’qáÊ^p;’«³òåöŒn˜Vðý ùŸóBÉh;ÜñÞôò."dmÈ¡+é·6·Æf»ÿ eŸýTm~ž€^ewX/nÑÏöæåêwn¯ù:Ç\Øÿ±¬ý ¹cÑu endstream endobj 203 0 obj << /Type /ObjStm /N 100 /First 897 /Length 1086 /Filter /FlateDecode >> stream xÚåZËnÜF¼ïWôѾHÓÝóêÀð!’ä;ø¢Ëz½È»yü}ª™dh®mA³"!ÚaçÁª®šµ# B$dŠŒK!I‘„qË®L1áGЦ¸&Êm\© Mب ú‰PÍy!¢Ä¡ndbô”B,UH4+Ɖ2q¬¤‘8¡£h"ε"¨˜W¸€D!6M ‰xz0@‰ÀŠZôŠMøÄ„QÝ'§(dP’„JHIxpõZ2RvšY嬤^“œI5`æ\Hc8¨jJh*LZ³–ˆÀQ©9ÓR)gŠJ¶Q²-¤*²ç+²›0«ÔB±#hbAÖÄØ3‹ ÍS\¸Ë{êèZEPñP3JŠšB«ÕŽDÁ$S®ÞT(`€‚ ¼Ð'‡ ñ2ƒŽºz*ž€ŠÀé"59™'@(gäY¡`.Ñ<%€N¡` !znÀ% ‹ø((XàýS¢‚‚í}ŒJñQP°”È ¥bP¡`1ˆ¦P°†Œ>¨TdªƒR(XÕY@³šJ¡`MÙç*@)4«yV(X ÉvJàGE®ÍݤPÐ:­Y‹ŠŒAA‹.#îZòÔAAË §PÐ*`BjÙ¨îçœÝ£êòÃÑA°ADD>Œ9øJQȈŠ)t„Ñ„tˆ<=¸ÏÁRvËxduñä ¾¢Ãﶯ·txL.¯ßúÏzuu¶Ýˆð<¦§ONµd|ÊiáÈ‹­/.½¸òâ‹k/VíÞ¶5œ†þ½æëÇ^¬ï2Óq»½jý?´Ù6mä²Eg=ôÇ·a¯Ÿ²ÿ±= {ÔÛV@{Þm†,ΆÉÛ#•žÇ—4ìŠ÷m²«¦Á7­ø¶µv^7 ïó†ð?Gíö²Ívùq‡“6äý0sëa²Ö·ÐGøSf½ú„ Á¾»Á~«¨ôÛ­#³^8ò@ŽÞ}áôZŸqmF[.:Ý墳^.ú@–KÜ×réûý0´Ãu›¹Ÿ~Õ¢Nφ¶þíËÑgœîâŒs[œ=õtŸŽþ½Áùrø.1Þ¿?ñx‡{[ðø endstream endobj 404 0 obj << /Type /ObjStm /N 100 /First 899 /Length 1150 /Filter /FlateDecode >> stream xÚåZÁN$7½ÏWø¸\Àår•í!E!l8ì& C” l‚´³Q’¯Ï«VÖ=†aµ 0ã‘vjªÛ]ö{õž‡V÷FÏλ蓋_Ù‰\(8¦àÄG|‹“¨øV§ŠË©¸ä1¼+‹]‘0‰!: 1$$ŠŠqF “£PÃÁ‘2Šð!MvFeA$UÑ»à U‘‘ØÌ1ºU1¹À¶v4¬Nv@'Á…(„Ÿ(x@)H$1ÌøQ‰è$jtÌœq&!1¨šÇ‚™9 ‹@É)¢* ’lg¬ ÎRB•U†ŒªÌF’&ÑÔ(g[XmÈ B!0tY(ਠÅè u*Jq¡€w¢&´•41Ú’€N ›d¨&ø¨ñH§¤d³: Éf§lJê.Æujè§)a2¨™h"/'ƒ€ä$S(lX\bFLŠ® L: ©KÙ°@Á”¡•@Að3Û0’Ì8›ÑzœIH žà“^˜+ƒ’àòÀ •yàs±Þ@Áâ ˜žÃ5hV¡ÂAgKôh,æ ‚EáÁ\E± @Á’¬£èHÉåPcf,¥ tä $DVt"Ð|Ì ÉZ@EòjÊ@FdÀ(Б|VÔ,ùbp $‹`a‚Êè6ê‰]Vˆ‰Lu²»ëvŽÜÎëëéµÛÙw¯î>œÙ¿‹óÙåõÕvàmÒí°åöö&¯N8)>éÄ{ÿ…k Wî,Ì,ÜZø`἞»®'>ú¿uþxßÂÅÿ™i¿ž>¯×ÿ^g»ª•§5»¡o-¤?Ç==Â|ïêl³Šü«,Z˜Z8jGßVG-Íß,|W™ÏsV}_ÙÜÕðñ‚+ñw5»m›1,r±õº§mzÈ~jìêe…5 üò aÏ+¢¡èæóE¹ms=™_Ê“ßWIFã,„ØxÖºø¦†±1³ÅæX®ŸsÇ~ÎìçòD?ßý¶Â¿]Ìf¹®+»®l®ë‚×ý9ZãQ]VæÄàûu"°m˜ïÓç‡ôßÔ†µÎZ|ÄvP]µ4ñÜËî*zÞ]uÐ"9­Æ\Í¢ŽwmðoyxÞ;âãÄû¶â´¹ž§:vÛÞ<ÿ5ÁMÛ·Ýùý<°÷Ÿ\>m*nÚëÇ»ïÙ¡«]1Œ—i‹aÒ¯?i‚Ý’}js¯jÇ¥«ýÓ†H{•\V#ùz«-½ª­ËTûMÛîñÑìÛ:0Þ¿¬…îÚ«î©ÝÇûÖµ<õ*yîBòÚ›õµÝù¹W”nm°f?¥S°ïÂÓz‡w³V;Ÿ}¯ºÓ2u?®y^ÁþZG‡Ú¿Û&,²ÆJN2õªåžÎ½n_ãï—§•ÍYËf5½ý>¶M~µúëñj…Ÿð4³‡ÿNÄÜñáE{äK4I|6“Œ‡ØíK¸Ë*Ïøö{ÖR¹[Љ~þdÆŽ-7÷}Ëj\|XYœÖ¿‹:ß½×Ðý¸X:v±¬³‹ÿ\c_ endstream endobj 704 0 obj << /Length 198 /Filter /FlateDecode >> stream xÚ…P»NA ìï+\îkÆÎy)  ‰n; H”%]BÈßsÇžh(¨lç%ƒŽÚøgÞÖáæAA¢\DŒêiÎ ÕXÇHõ@Ïn³yôòá_ëc€“•8 ¦Å(Hæ„ÜùÊi¦RˆÆcŒFð ÚÛvjg/p»K;ø )»½W¸kßïÞý îëzl§'6–ßì©_,é§«qN™‚F]¢«—Éë³uíÓHŸ µIkØZÊìûç1÷uø‚HFÇ endstream endobj 734 0 obj << /Length 1096 /Filter /FlateDecode >> stream xÚÝX[w›8~÷¯Ð£8]³º !õ­¹Ö=[7Óíž“í6²Ã)—,ÆMóïW x'mOÓæ!šOßÌ|3+€Àùè(ý~æ1 \É9Á`J]Ÿ À%s¹Ä ˆÀ<~7 N§ÁÌS‡±ó1x3: Fÿްž¼óv%b`‘Ž®>"é‡or©à¶z5ÔÓ¯bóaf£?GÈ‚A.aæÒü4Ð8ÀÄ•³6滄2‹-ÏJ••ë R;U…©XYp—çýe"0&Âõìú°3ÆúÿƒÑs‰/àI¾Ø¤zê°Œó¬3=¸ÆõØ­´KªçJÏc컜xÖ¦[YåN²²È£ÍbŸA)t1c¬þá_wÇ¿ådßbjLú_—º”KÙ«y¾)k/•×±õ×Û0s0‚›0é³È¸÷KF"Œ5„QKØ¥JT¸V5QÓ¼T–³¥CÌ‹úæ/GÏ­Šµ‰Ãj€¸¾¹ð5µö‚Æ(~¾L´¡ã5¡cV¼)¯óÂRfQ}ñjá?e¹ƒ¼MT´Ré@Yôz%#ß/*žÆÌ½\ô¤oܨñ]&üšbp’Þ$j+z;á2Ô?Îî1ù þ‘Vÿºª{[˜$oÖÆ ¿ÕcYn“½P7I¸P»ÏŽÏ&Álâ`ø®Ño²þ‡{†˜¯d+pS½¦z}/^ôâ´¼¶y<+âÁ(,¢Þ»ÄóšF¶:Üï‚(ij#ã0¥M˜fë2L’8[õ(¹0ÙÖ‰ô ú¿Ú¾Ì‡ÞÓ×¶á{‘„åVFL¹‚âϦ€|o÷zÆ:mcýh'‘qå ®xÏ­úþ0òˆé‚!Xk(¥¾ŸNþ'ñ'ø6nŒK&èOÑaêˇãj‡bYy/Š|/mõøgQ]ÜTø’ýK-B$–xñ½çta—aù˜sºæ°»Do­vä„t)·r®2U„¦TPŽÔÛnÕœÔXo†Ûc…zĉØK,›ã ²=žèîçæÑ]sRgúœ/wÖYùÿï+{ò endstream endobj 765 0 obj << /Length 914 /Filter /FlateDecode >> stream xÚíXMSÛ0½çWèVy¦1ÒêÃÇBéh‰;=Pn"À3Á¡±SàßWŽl’Øù"igôd[¶´»ïí¾•LÐ5"è¨ñ!lìµ¹@Ê×R2^!ʘH…¤¾Ô…=t[g§ááiØñš P8޽ËðSã0lüjP»Atj"õ5¨{Û¸¸$¨g_~BÄgZ¡ûñ§·ˆqû)Í'öQ§ñµA oÜBÃëbÅó¥þ‰À&œ”yM!>7Q/N®½fîä}œÝ¸»Ã‡Ì$=ÓsOí¸oÜÝit[Üu“,zU:ƒ.šThÍ1ˆb¼êœ½ÚɾPAáw^| ü;ŒR·ü¹é›(-­2“VM亦„3õý&ÊÞy’àÂ5š${oOâ4µðo£¤¤õûO¨µÚÇÅaçø¬†á\aƸ¸×2Í÷5ç¨I_/½ö©×””ž‰ªßU“Z ì»HÇùÜ'¹Ýô¿oH_ aÎr/˜—Í¡¥À)P¯*¾ *ñsPU³y^*s.w6¯6›>K,,Í m–µ9£(Ò­zŠàAoàðû§µÜb”2±ØXMª·ðÉ 7*…÷تq.‘5ÅM­ù%¬Ö˜ Ôg°¦´’®eú¿.¢­òB¹µò^™ÞEÝ• 3¹ƒe)«’ÁŠÍyÉøJ“Û0¦ÝZ­~”¦+Øb„Ð Ù*ëM—lMÙû›¡g‡¢a÷Æc?VíDÿ§m–6 ϦMmN9´Í+0¥É›ÑIµ }´ÞæÝÑ­ÝEY> stream xÚå[[o\·~ß_ÁÇä…˹ñR+j‚$…a«E[Ù¶¼I„*».¨óïûÍ1u¬µå]YØS ÖƒHž³äðãðr†<ÊIC 9Õ Y l2qà–‘KPÂÏ”ƒ#Gl!s %á™)4nÈ5´B³Ì(U¯P£6~%QˆF¡àH O²d *£g*bPª ¨5ÔQ œ$ͲZ`ö.µ¢€×YU¬† `¬ ]˜vÈÙ2 ÉV×tBÁG–)H"t‘“™G€o †rnA”ÑWaP1 ’ )…Œ.0©n® o^!¹!ÉUƒ&†d(B£Ìµ¢PƒTum4FÁµAjñN¡n-†æ­­U0$m© @Á¨«Ü˜K²` M”$(@FBM†75X–\¨•¢¡`­‘ =™|*›|Ä ®Ð\g…Ì•9ä£u®¾ZѹtöBóŸQpLâÁƒ¢_ µbwñz…½é5§ÙðК¿É¡’ )øQê-`K( €-ÕÀH Õ'¤@}µ‚£okÅœ4¨Í›‹“OʬH MŠ+¡…f*nYñDjR”Cko)¥ŒÎ@"JÎ)@GIÄ‚“I‹—@Ê”Ig®Jżmsz7ŒÓÀT4ñ¨JΟÆ…¶ "‘zÿÐ6‘9´'4vÕìmÑÌlo/ÌŸ…ù_W‡«0ß__¾:__œ¬–‘%Jþ:[áožü8bÿÓ“ÿ®úõç£h¹Ç-˜¢õîýaD2týëˆé;OÞŒÍö®æðúãOâãáØÁïãtŸ®|1ë=æo½‰¿?¯këÕº ®Œ”Z®óðdþÿ2¶»“ñÞ.|í§=´…ïýáËa7šîn7Onp6>‹¡hº¿†lÙP0ü/ÄPèî†r8öújŸÇZè[ =lk¡/ÅZxk¹m ûŽ.§ë#[~>›ã{lsü€lîÈOzSxæ'/|Ô{{³ùáŸ,ÂüÉË_³ùãÕòb±¼8e8¿:›?]œ¯.ÏŽçáððêçÅ듗߮ބ£ägüÄ¡4~1ƒˆ3´E½2Ôëâ¯wûÏý;H,¹†œK¤VÃòòôôÅUåôõÁp.‡fømþäluülqŽ€tÿ Ìo.ÂØìæ!ȇCþ¤!Ì¿Y.Wu4œ;?þrJ=§žsÏ¥çÚsëyîyéy—G]wyÜåq—Ç]wyÜåq—Ç]wyÜåÉ[yï©hÏlþìòÕÅðüÓÉò?³ù·«³×‹³AéÅüûùóÇG4<¸òŽ¡uŽ¥øÍL‰>V‰Ã½‡ä(YPï›ð­u+{kû»¡Þ½_ Á驘ZÔBx®Ñj¾Æ;{§)°XãèW.¬|Î)Å–i;žKÑašD(f¿Õ©Me;™‹Y)A ¿è³lx ,ºC,¶ÚÖÚÚ’ùÉO©Y;Å쀵,„Jd NëÊ6ð¬U°Ö¯eÅWãJÁ’ÄTe;ÞýìhÖè‰>;ªä÷•ÈyãôL@XÕ†E…°¨$ï>¨4…·©D&™nÑo9i´[ŠIi;–]NOáúE=è—â¦é·É æðÇ™²†f§ºy‹GZŽŒÝŽK‹Ö,(TÔZ»%ž è+9Ç* ÆlàBF±Í‹‹îž1örc`Ðþ…„ÔS·2Fw:CWal?ppØÞ‚ˆS(oT‰í7~—.–# ßeÀ˜¬m„‘'€~¨¢{¬'ì†TrleóòV&€M¯šïÇ­`±mQªmDQ'@Ap|à,ÁoÌÁ“Ò6›JÛ=‚W”a±NS†Mà pmvbÓ8ÀËÔ\ yØ÷Dɬ›qL`®Äðžý­ 1ICÊfk ©Çx"7ÄxØÉ)4ÆSCœb="ÕŒ‡Òvýeû úËr×èOzT&=Ê’eiÚ´ÿ®=jÓµiÚ´GmÚ£6íQ›vyÚåY—g]žuyÖåY—g]žuyÖåY—g]^îò2M  ÇW6Æ’ÒüS7?¶Dƒ²{g'0üG£Á¿ÎþÑDݼÝÐQFƒÝ`EV…ý«G8(›W7²  ,o^0`5X5Š•·ú±d“DLjúü«LßntøtG+·3E¦Ù;‡f<¬Q3&®ÝŒL“"ÌhØ}*6b¬'—Ÿd ]&pO<lXk9ÁÅZm‰à¿nö’¨Lò`¯``à(X\Šn›2…«j±a f,lð ‚8ºeG¬S„5r³Á]j ¸àÃYÞ~†R'QJâˆYñ/¨aÊ!Á ØB”6A¤S‡£ ÿJ;šÇƒ¯~ë) µI"÷éÝ…ê:,w6…Ó:Ëf%îµVÿ¼¼FÑ­Ë,§I”B}A†Š…M†c®ÍÛ1O°õ°qÁññÀGp$DÆb[uBSè„A òð<ƒ0 Ï~ÆÕ6ûú<ÁÈÈՃЖbƒ× G!6ÞºÌò'9ŒÏÿ×+&x®ì‡\í6'Kg @ .¶4LzÑÜn gœ¬ÿ¹WÆg endstream endobj 800 0 obj << /Length 851 /Filter /FlateDecode >> stream xÚÝ™MsÚ0†ïü :òÁ®¾eqk€dš™–xzIsp@0ž1&5vÓüûÊØ$”Bj•ľ`l#±»zÞÕÇ"0œuN‚ÎÇSÆï)!(¦SêIᡸ'Á\ÃÞå0 ƒ+Ç¥!£(rn‚óÎ èüè`Óx£%öâ`<ï\ß 01/Ïò¨òÁýê§s@™ù).Æàªóµƒ*sÊŽÒYÕã¨2 M™oÚ ¸ô奄zØqF°×ûŽÉ–Ýî§å8ŠÃ[Ç|ÆÚq‰ôa/—ËòëHOŠ Nu2Ö+—Ö¦€kWH =Çå\”~„»º | 㕅ÛA„x 3àbé žBREJû: £XOJ§ûz9NsÝeÑ"Ùö#F^ÎòcÅ'2±/hG HˆÞ"Yf¥ïù8[¤e@><Æåïwý…ƒá8Ÿë$ w‹"ö¶^n(À£¥—z~«+ûOód¼²»òæW0z‹a”ût÷PM¶…~%‡Èœ¯G¿/µû–j'mV;Gõu@P»ûâíÔþo/7‡»j縞ڟ“n«½·ˆóyb'q_°wCó†Ä9±”8mµÄe}øéÿJ\>/Šcë[ÖÏb´‘úömgs¶[ßÝîçd™O‹‡ãȸ80‰9Ö…³KËÙݼyµ a©VÖfµ ”Y3Õ*¬—¦|?ÌÅÊô§C8 ãhÒ³°\²>ÜéÒѺ …`^U€.Â*n—W‚¯žÈ.â]¬Ê»i1?®ÑZDy·*)=<ÖMÈ=Ì q&ôɶû¿Ø#Ê… endstream endobj 834 0 obj << /Length 839 /Filter /FlateDecode >> stream xÚÝ™ËrÚ0†÷~ ­:òW÷ Ë:$mfB¦Á.Ò,q(3`ScÚäí+cÃ0%mˆ½òllýGß/éH ΧÀùxÎ8Pž‚‚à`J=)š{Bc<€[è_wƒN7è¹-JBpôÛ½ .Nàür°y¸ôGìiÄÁ`âÜÞ!ð`n^äQ­ÀŸÅ£@™ygƒžóÕAEkò%Ãâ7Eû*·ObO—¡ £´_•-ŠØid=žÆl[¬étΠïÿ@ˆ¤³vÛÇóIÔnOâh˜‹M2ž§a¦QBÜŸÍr¹7á£K “0„›ZµúD( d»d­©*ÁŒ 3³€×ff 3Ù€¹ó”~>û–«9[¡Õ»éí²¸­H£= ,<@^ácø„Їd®u8Íe^…“û°p>‹†–Þ££St¤¶v9­ty1e™ Œf£lèZŸ¸Ž$’¯u«:nÆ*‹j²[·À˜¾Ô­r?ÞÿÙª»5î™m€|þ%+lPeò½v{Ù ÜÖ ¬Ñf°ÓYMÍ -¦gVÇyK¹:-õ%¯°»)¸úQê'a?µ,¯Ä’õ7t²Ö¶NæMv²¶¡œ×ÓÉZ[s.vr~= Cûf}v$èT°SÌ\D(ˆ²^4x"ä¾| ªTÔŽø"w"/+‘ïÆ½ùàçö„ܼoŠ8¶E\6ql±<“uE[+ªq3¢'.Fp¡¢›UÝio>f"‚é’£÷Œµ~=ÐÄhÕl ‰Ъ®@k õ&УtÖI’¥Ôjd³ñŠ*\¾·º;wµu‚n¶¨…t]@×¾XyÆlÆcmsƼ<é6‹:)Xù¤[iŠ"qa&ýÕ°¿,ßW#8/¶a¯úE ³³ÇìJáÅ/²x;sf=º&û+;>Í£ûìÖóê˜Ê˜óéyhºÁ˜4Ú”ÿÅçÏ- endstream endobj 868 0 obj << /Length 1041 /Filter /FlateDecode >> stream xÚíš]oÛ6†ïý+x5Hfyø%ÒlN¬@²µQ‹YQ¨“ð×lyköëwlÚ©c‹²”8mmä&ŽlŠäyù¼‡¤(Fn #g_ÒÆ«ŽTÄP«µ é !h¢ ÑVQm¤×ä*jÿv‘ž^¤—qSpž˜èŸøCúºqš6þnÖìÝÔ2EºƒÆÕF®ñÇׄQa ùwQt@„Ä¢0¿±O.olÙ_ÑävYãÛe÷8[ïž4x/'Z%” å»Çå,n*µÛ2Æói«ÕéåÓÓÏ]7Î{£aÜœ÷ºÝϦSÿï[w ¹‰‹!vÝ"žU?ÈUÓ0Q¬Qiÿ¡örUõ®ML.;µ) áœZ¤ Õ\®I@ïå,:qyÖë»k뉛v'qTÔóblÄŠ-ñýõý9dYèÅTHV¤÷j´GÃiî˜uóÑÄ«òý8Û¿Œ°±îlà†yV¤˜`òÙCÕ»B]gŸ ê¹|rË :³a÷ û'£’x€}« FÙ A>ïÄŠEYžõK|^`rÅŸê§8_×u>½óëØžà|lkôŸÔößôįé廼×oµ²Y>ú˜M&1 AæN¸û8Æ60plãU'a‹S+×~jÅjAcs‹ŠôEξ˜T…\•ø£ Ce"V~ Uq_bͪi 8dn0îg¹«âÞDí°QXHP‚jÉ·ÑáGo$S›.¤«ý󴊘š+jLu¦Ò‚Jjø*La…õÔõ …5ž,–«Û¢¾€¶e>í}Ò mw’&žNšÜiÜÚzb{Òl˜4Üi+¶I“GOš­ÒT iq‚”í„ ¨Òð5`ÛGZ&•×li^c¦ÀÃêxiKJ ¡¦ƒ¨gy÷¯‹làŠH‡Õ‡˜AÏT! X˜()¨»M”>j¢J •ì j6(JP‡²S–×ITeX C•(Rñ¸±‚Ú«/SŽÕï¸g„(”®¤¥RÉCÁKò]@AÉÖQb?Í6P樇‚ØJ@g+)©¬°˜ÿ^¶†?ž'´Ž½_·¯ùѾðô€'ÁÊyòƒv7.^Naâ`6‡š±:»Bà¥ÓŸÔÛt vÜtñÚtA®wÉëŽn‡½ÿbÔÅ] %K*Ÿ6Ûß A8¾`xÇ=Þ¢îrGl>3?›Œfc?´Ù§ÿö]ýSca¾“#¤° !@øq"«Ÿ£> stream xÚÍ[ÛŠ9}¯¯Ðãî‹Jq‘30¼»° Æö›ñƒÇÓ,f {°Û0û÷{"+ªª§÷Òê¡4+3+ód(nŠ8©îÕRI½ŽDª©·’Ø*FJ*¸Þ$ÕÖR#5ñß9 {"Ún°DÜý Gà²ë½$ª W:%êwNd7wI4`º&&ždî~Ð+ûO=qm~Åwò+ÃeÒ]77 I7J²‰kœd“×$‰²ÿ¤Ij÷Ÿj’NþSKb˜W·ž´¿bII!f‚‡h×GIªâóļk÷NÚ™p ImS¦ZJÇAM•*ã ¥ÊòTU,™@]Õ§ “Â|ý¹k&NgÙ™â4| ‡ãâÈx#1;2æC,Ž  Öá¿âÜp·éæÏæxxHî® _‡;[Å;„©í ³"Á$Æ„â¨Õ€Nâ>dïá&¨x‡8³á)„ŠË·…¸|pPÒZ6[à¨Õº{ñb·û¯_nÒþÛÛÛ»ûÝþÍ×ï·ó¿ºýy·ÿîîóO7ŸßÄoy¿ÿëþoûïßÑv²Û¿¾ùxŸÞ!üró˜kF‘B¹y0ÍÐîú6½x‘öoÒþ/woïÒþ‡ô§/_ôxúÓÝmfΔåÏé›ovøwy´gx1ÒBËäayg‡ž•Ûÿ”è,_P˜PNYà»lЊ[¦\G›ÓôsA„ó–+Er%χP~ßÒj¦Fÿ]¢£,¿±ÒË»ÛûíÖ—pöŽ *é5Nàžý7î_}¾ûøæ/NûW?¼Lû·7¿Þ§÷¿Ë«ÿ¼Ùí¿ÞÍíý$—ÿµKüåîëç7_¶ä·]úÇÍOŸ>|w÷kÚæè¡_}øŒgñæ~¸oSϼ՗Å#ÿ0ZŒã0ö#Å÷c9Œc±Åx=ðzàYàYàYàYàYàYàYàYàYàYàÀ7oÞ¼xã€÷þ²ÁÔjËž(…àϾ¦48òD0ÉE}÷LMZî‚ É0¹`‚8+â’}5•†ˆµ+o®Ýfº|ºi¸^¶H‡ÕPå®}V ɸZ͵úò SŠ„8&üçòÚ©n&9¹*±¬cÒZ¼À}PÌeÁ¢|tŸŠÅ¢L˳@?X"šW¶á=K*˜YVxÕŒ5Åk Ùêaɨç&œG.®5w8ðÉ{ c¡9å¬È†ÚGöêüè=j–«É¬@—wm¬fG÷Q\î•gZà>ªš+$C‡–½ç¬x‹è„ûèå•ÃÀõä>*È‹eÒZºÂ} *S´r'÷!Cò©³ñå­%6òð~5rÃ"†v:k›‰özqíHG>kçhCjœ´V]`-A¦èAÖ’w"žh…µÄ²÷û‚¼ˆ¼œÐ9#ýØ„µÚåµC#{¿~²ê°^'Ëž¶Â\¨Ã*Ž“¹î$cV æbÔaCîF(Q½9V\¯æê×7OÇíd.F!f¦sÚé ÌÅ(Äú¨£¹…˜¶6+Ð s¡K÷ÆbP.hô¼Y7I…vyåæ¨ç²™Ys¡ÉÂÇX‹FÏNž¬…J¬™hµÈJ†TÈÒÕû?œ[m&ŽËk§¡'mç\H¯Lvc…¹P„ =w9„*¬ó¬<+¬…R¬’¯©ŒssVA6“ ©ü1<˜ècÌ™íßɃ¿äß #Ç(1jŒ5Æãñ9‹ñÀKù'‚ÃxxxxxxxxxxxxxxxxxxxR.ʃ±R5K=׃NƒµI'¦²„ ³¬r.œ›Ë¼D ⪡ƒ¾Š¢V®í)6ì< ôS(k?§Áç1a+ÈÂvd{ž`ÂK´Àbµõì_¤°`#ÖËLƒL Ø'µÜʹ*„®²õɪ–ðsG>ìh1TaZÛ´D t|Ø‘ ónë´@+(´•*‚KŒÓb\úŒ -àè:êM¬W'’u˜ôYƒ-!鎜ؑeÁåQmZ"^GбÓ-ÒŸÁŠÑ•Ñbtu¼é‚ ÷&ý‰V-X½ë¼@ ‚^:ZÀ† ×’{kÛŠo2õQpU‡Ò¬Ëù« Sc¥Ìý²îHÙŸ'¨±Ç­`ë‚!Ī"'ÈÆÿá3ˆ³€­CifMÏóÅ[fc~]w"ÇŽŒÂäØc‰V@ KZ$Qÿf‰óŽèŸùlJ ø:õžΠPE_>`Køº`ÇŽæz‚{,Ð sIæß0Ìd#É ÚŒ½lA† ¡s䙨¬Á–PvG‚ìÈ=A=–h „ʬvÙ6&øfHçÉD§Ê ¤¢ÔÓsäY¥Ù”¸„µãŽîôœŸ"ÉKÄ SÖì?˜²Ö~'Sæ;E R0ML“Ó$Á4I0MÌ•ÆsÌ•s¥Á\iàiàiàiàiàÕÀ«W¯^ ¼x5ðjàÕÀ«×¯^숳xM×ì;Peðx?cÇ—ëÚ2ÆåÚöŒq¹¶Mchñ®1´„ÏÙ5F×µmŒ®mߨ"QJæÕAp!y’){ Ï ’L€Î1ÿ,–Œ/K$>`É|ó˜ô›ð¥y–Œ¯Œ%»ðÆÞ£~ZA{ªIy/ò$Mö@žœ”rö5ô¤Ÿêäél|éýM¦žGÝh²>³€ë‚¬g,gõ £²>»K´®PÏqç˜b5ò¿¨šÞ8ÆíªvŽq[¢ È”œå¨Oî{ O_Àuô¦çÕÔ¹1±ÉÞûý7¦ËÙsÈ1¶ë"ÇØVèÇEA'¨Ð>òÏ3vŽñ¸®­c<–¨'Ø1/ëòäæ±{žËfŒ²ÿÅßI?(ÄšLÖ>R–èåDØvŽòjL躨1¡ú!”c:‘¾mc{Ææ19ÕÎÿég@ endstream endobj 904 0 obj << /Length 916 /Filter /FlateDecode >> stream xÚÝ™]sÚ8†ïùºêØ8çè[ÌN/’~M³»‰»7i.\P²Ì“‚i“¿2¶;ÖÚ!mÌØ–dWÏkéH@n 7½ßãÞÉDGFJF₌EJj"ˆ¤AOÈU0üã<>=/Ã>£|›†×ñûÞiÜûÚC×lTÄÈ€ ãYïêÈÄ=|O bF“ïë¢3¸+ŠEÅ”\öþêAÕ›²¡ÅmÕâEÕ? ÍþqíêR"…Š(eÿ(‹ û‚Ãágš/ƒ·£OaŸ* Ód¹,ÿ^Ø›A`6Ûuõ«ÉUŸ+D®QýˆGW[oæªm*u€(ª~oJE( rÒGIÊÂDèêRF6O¦©”ZŒìr¼û(‚é]>g›r pz¸¾?‡,k=B Ðì’¶©AK5>ÚÙ»(µ8[eãµ¥2óñjf³<Ù.Ë‹‹²ÿhä–àO-1¼ËBý·Š I§“ÓûÜfKh¢»ÿpg Tk×-L8õ&œ;áTzÎk‡ól™—¬Æù¼býÕqž>¹w탟ÿu¡îÄ\´ÀüÝ,¹µ£$OÜ+éhéî¯õ›" êƒQ.})GO¹ú/Ê›ƒþ)Wû¿ïÏŠ¸rã®ÚñÝx¹ïóùù*Mÿ8¾WÛ8vŠîAØO\¶ì{gÔÇ‹{ö`]v•uíͺÚÎúåjüχ;˜‹¯úÃ÷!˜/&ÞÔk Ï‹¹öÅ\7æÆsÕUÌ7æzóõòÄ-Å‹†NÎ\jl\ÂKe‘ðˆP×äºòoe‰Ç)1¸L˜Õ%â-m¨È(¬ ¼ÞÕ¯K4 Ufvv—&¹m±BbR¶ÒY»E6"RÀžò¤ÚZ > stream xÚ½YK“Û¸¾Ï¯à)EUE‚oú˜™ØžM¥¶²W³>pHŒ„˜"e‚ÚYå×§_ ( e×î!' °ÑèÇ× 0ô6^è}¸ùÛãÍíû$õŠ Ì²Ø{|ñTyVxY™Y©¼ÇÆ{òÕjå…w÷kF£åÑ}_vº«Ñô²$I`å—ÇŸnþþxóíFÁ¡§fUP†©Wïnž¾„^“?ya—…÷JKw^œÀR…¶Þ§›Ý„"&36Âñ< ç‚ç*È¢ÌËÒ<ˆâ”â ‰? ý{=V¦Õˆ¯m=¬Ö*õÍžN€‚» ½§µ “ÈVë4M¹É–FÙ—üÙÑ—DYúV~RŠì—J‚v­rÐJ2×FÄÚ¸ë;;²õج•¿LÊy;wßÃfs›_h,“ÿ×Qƒ(Å}±ù€œy* J¥Rô„uœEZxë$ B•N.¬Â0œûptéÃóó¼m/µ{é사£"H$n¦Í.4…Úô·ƒ´›ãhùê¹Þ?€šz%ð§þ™ ò<‡æüþáñÓÃÏç"/h% ò´¤ïתPAÅ žÔ“‹Z§˜‡,ï0ù[müàôàiQd õï<s߀:l3¿þ®G¦õ‘`ŒSZÝáe‡~Uk&½´[Í,œ6ˆÚšg8,pì¡¢%±š/ÌN‚pójݹ°°=ÈN°•Š½á½Ž‹Ø'éPtìªÎì-xT·a îɽ_Ã4|ßj\þ»y^A¶šgvÕFº+p%Ÿ·éìù&¡?òä§£õø¨‹­£vYk´Sµà\Š¢(ËBÿqkìÙ‘2>shÛ×¾’ÐQ–ûÍ%º~e-,ÏïÅR´7L~í˜à+—ô/WÿLÓ°¶ŽÛqÜ¿»½ÝêÊVClìKtÐ6ä—¿ÝB˜Ø[Û¿Œ¯8ÉoøL?uV½ÁvܵKyè.B¢-…Ò£zîQ騥ó¤‰C$q|sÿM0Ñçèdø|AæhØTCÃ#ôo\{E#´ÉÐï–âÉл´Â‚㊳ l2ô‡Í–±šÓP·f³]·sÔ`:G i›)¥°iú›¯–WQ ÉYºá$@dr¤~$XßOÂ|îÌ(‹0A}¼_„¢Ï³&“¨$óA™ûf·oõ,OÍr v0›ŽpF¤Ah·„DqL*Ìå+:´Ëx’OézŒ,й朼 -2%hOTÐÞ3ýÕ XÇ¥ò_%ŸòE ~a¹+¾½3ëÃXD1òYçÈý=dM6aƒteQœE£,––xAñKê€ÖÕãÀKfD,è z…$Å6?Þ¶’”â<ó¿¢4šD¢üÔÍiJ劦™8Kš# ¡âAÝ·‡]犊rÏç®5Âá~R|%.§Æ`Ðñ¸7¨ä#ÏLå0ì,8Ô[þÊ™ÖCA[Õµ¶–§é ÔÎù¬:¨£áš+Å3z¹f¬Âºb²sÇÜXE?1D¼€Š"’÷tصãzãu? \ΪÒßR¨‰ãÅ–£žü™²\!Zåê"Ét’;¡j90ñxÂiÖü=© \ÆÓ‹B=ÊáJO׈k(«¸è¡M]ó¡ùûó0CK˜aÅgPB¬h‚>È1c¿35âxÔûyåÌuq…ˆ"úOÂ"r>»o{«ˆa”Ù‰QŠk{*¿{¸Þï̧+ÞÐõ¶3ßè{IXž€áØC°aGÆQ½í{ŽkÎ`‡öB_ÅÁ¤`ü¢zsdJ%û]Iº8õdµ>íð#¿<+pÐuï¶ÕžT„³*þâb}=uF‰R)¹( É­€ÔË"ðÆÑT­(â%ñ%y 7‡›£ã*èw=»Ãš»Åsí¶œ9 Ž2À¢Öb™´gÍm݃˘ªW²ËL\*pºx„³º8 ¦™½® POWžP®0°E[YËßÔï&vé$"ó} RDÈ9^¡Øåæìy*Ù¿÷Œ“þ h! :`X‰Q((€*¸OD*Òœ+ù4wØþr½P"oÝWy¡XЃ¤b„u³])Þí*á3û€)\$@g£» Å”µÇ{«2| 7Gl–sÓìÆxÝ­`ÑUÍdøìðrVu0øø(\+n$ãΔÇ1~ðš'٠蜊" ×@²°gß7Æ~åž«ËiݰtZÞž°5䧇¬†ŽøÊ4aäó\„©Â‰Ë=ŠZå GÂb¼…žã bÓÀ3g›A­ ³S£8„È?`ÂŒ²ù•Zå¬&J ±ãª‰pVíÎçÏ0àS§¤”³6)Ý zÿž—k0–"@T•¹·!Ø|á²Pr[8Ë©b V%¶œÔô^¨üÄ \Dáô‚EýŽ[¶"öŒP챫ùKA¨3¨,õ®ŸDBÝïWó׫8UP8Y5Aºˆ')A.x•'^ü˜Ñ¡YzÈ™F ´‡íCíèR5<š²À„Å\)Þ°Ìú j™U½s;9VãaŠo$œ {ÐkÏ‚1Àò±{*3­å¹ÃÈ#[|ÂW>†Àk°ðJìà`ñß„ Uªòü›p¿N² ʳdþë¤(ƒ8“C|@è«F÷ÓÁ½à<®ðR"ÿ³’v%ÿY¢0J…’¿ ÓwªäÑ Á½ÆŸÿŒ™ìÃïô¨µã_v}Ý-(”ð?碖 endstream endobj 935 0 obj << /Length 2260 /Filter /FlateDecode >> stream xÚ•X[sÛ¶~÷¯Ðô¥Ô4b’àÅOÇqlÇI“º¶Úf&éd ’8¦H• £úüú³‹(R¡s&á²»ß~» çú|¶™yøwsæaþ_-Ï^^‡|–¸i³åzÆ‚À£d¥ÜR6[æ³OŽ?_øqâÜîö¥ÜɪmQW4ö¡n¥‚f¦ Èý½|{vµ<ûçŒÁþÞŒ öcnêñY¶;ûô·7Ëaò-h¤Éì Ew³ Q† ËÙÃÙïgÞHeR5š1Ïytå±ëœte.hË<Ïs.Vuׂj~â´ÛBQ뽨æ±Ó‰R«jíðòÚ÷Fðf ?t#žÐ–KZ ·Íë¬CP¯óÀsžÌãa’j/³â³çùÙÀ`k\S7GQÒmÕlŒÑîoÎfŸ´Àå%®oÕH[3W«fÎ@ø Ù4RäÒЊªwf¢·Øl[Û±{ô«H9ÛÎ eð Ýì×ÇÁ Ÿ21¨„nb “¹áà{YJ¡$q¯Í>² ì¬Í ?ç¡ç€î Ì@lƒ¾[Æ6b¾çó`í«j+ªLG‘:ó'‹Ü8‰Aœ»<5æýìŸì,Ëyä|ˆÿ:Ôî*‹Iè½yýÇù¹ÈówZ{úЕåg{ðc(”„+2ðR«ù{¸„Ö0¼ê&W4CŒ„Ë+œ€Mi\{^”T6‚xèÈ:‚„XhÜ$.óO¢hE"ø7Ôðóp¨hˆâåË1¾å—~_¬ÇËákĶ:Wÿ½‚zÓ×Ãe†p¡u¼ö×›€L V} CG”Ê€ze0½«su1ä4…*RϺ{Dáè–i¿]­™ZH¬¥lM¯¤[isÇ©fX6.ß\|¸¹z ž\š‰¼À,H¤…vè4ŸãŒqðpU¯[b“ÆÄÝ‚A¯èÐ &?JA›—… |b††¢˜¢ù@þŸ2ã®Ñäüµ¨;ýÇÀ틼qpü/Ä–B[›Í.]»­)ê)À©’€ÆE†Ê?¢ŸÁT¥ÌQË)5ÕøöBßç„gË)?0¹ï;ã¶¶•ÐLàìÑèï- ë4º\È è_J³˜—랎‹É$ˆ“aôãâ¾Ï 0ž‹Öl. «<©Â*2.§^L!¤Ïf:@=çXz¼+ÚE½N?Ô½Îꢤ‰ûá€-Êð ðM¾ÃÙQí¢¥*³ŒþêÒ඘ ó=Ôš£Ú‚ÂCæ{…NÁÁ×}ýQépñPn[#'*¥ÕLj# Ò3å$T›½ŽÕÃë“ø,F¯M‘6ÅÄî0#ˆi-‰œwx›®ú/õMÄ‚MryßTÌM7ª™ABe[¹3ÒÐZÙËŠJène¹_Û³DþµÈä9Mž³ª5Ï¢±› ]NU,fTðZCy¤½Äã4F6A¡#žQ³ ÿUT9q´ò!Ú_þyùË/n%[ô w‰g™LGKbçÞ¥þ{š˜c0×¼¿»]Lé{a2lÄlÁÉŒÕ[(§ ¾iü-°¡¢B’éM-¨¨¥‘ßVTïÓŽ<Ä%NƒoNHœ¦v¸ò‰¬Ýû§T·ÙHež#-i“É ¶‘½A‡ôMŽæ6$m˹7w‹?>žÈ^Ü~´…!¾C[S5–ƒgâT>°/Gþ}Âä^¢‹jï…¬k D ïÔ™ðC á´ \œ»$|šº©ÑW¹Ž&Eþ+Œæ„5ÉÌmc6@µµœ‰Üï%’¶0â÷]«alà÷XLÙ1`nDß)g¶õ2ˆ¥A|Â|7M"ûÐ̲uѪÿl!5Š&s7j¹´ÝMýõ{¥)‹b7ˆ}» "Í5™ða”05ï'lX @'Cƒä0¤±¡™M–&à=Ï xrR:áƒÀ*õ(—%‰e…ÈNC*šÐÀJ*fJ#£¿oÀ`O”Ê.6‹ˆÍ’¦$!ˆêvt(¥P˜k0ðcßùK+p"ò[ÂàÕ¨L9Åõë-#*ì“'Ì‹ ›CµQ–ž÷¯dÝ!5qZP-È¡Úl©1À9vU·ï]Bz]o뮜Ì«Ó÷ÚÞeR™—ÙÞàØ&ÔöiâcѺké£Kÿ]Š“¾Ô{¾3ÆM5z®ÇxÿYOCð›ïzþTÉ7QY%nȆŸÈ ^í<8~OÑ=;JÏS|ºhpSû`þG©Ý¿G±»>ÂÓ…, =ÃWº˜ŽÒdxv¥Óðèô¦.'ŸÞZM€ã*€hÀÜóª$ϺÃ9]zÙÁFWå¦b,Ÿ¼pÂOTJþD"”@F‹”i~ñqò-5T ËDcV–Åb¤Íä—Zæ1—³ôG¾ÔÚÏÈ‘ëÇQ8ü4›¤n+ÞÈJ6‚>iá‡8óš[Α:ƒkzìCƒ1ú×~‰Ï=~ÎRþ12{ðh¶_×:Pž6uGV§×ÿN‹ì+ endstream endobj 944 0 obj << /Length 2448 /Filter /FlateDecode >> stream xÚ­ْܶñ}¿bžbNÙCà½I¥*‘£Ã%[ï8yô€%±;´xŒxxµþút£r–+¯\yØh4úî(6·±yyñÏýųa´Iý,ŽƒÍþf#ƒÀOâtg‘gr³/6ï<µÝ©$õ^×ÇÊÔ¦ôP¶ Á~jÓÃ4³Ô ¶ö?\ükñéB}±‘3zÒÏD´Éë‹wĦ€Å6²tsgQëMªÄÕæêâßbΤkLF‰¯‚ˆ˜¼î¶RxºÛîáÝÃ\xþvŠÌûï á°^õ-°›eèçc¥Ë†–ú¶f¤ö†P†òC[æ('~Ôº0´~ƒ$ÚŽ·º)tWÐWUžñc7ä-(¯lLǤÜÑx¨ÄÝIÐSÄ"•+ ßÑ «Š&–Wïe~ iÙÓx(‹Âð¶›®­if…ÂÉØ›ŽfïE$4o*ûC;Vͯ `HßZWø*BÃàð½'ÞHá'Q£e@€ ô•°ãør»Kïùó÷B¨QÀl§ýw4oÚ&c€–þüÅëýÕë·t(»Â™Ài*ôã(£Ó~l{ D*Í‚fu3Tä @7H$š¡w;¢…"åÑìéhy8è†fŽ]7´´J4 ŽNŽÕ3ÿ C&Pé+æ/ZK]…¤£@ÞÑt“Ó©È«i¹(;“nÞ$Ü×ÏÞnCß[aÒçcPJ¦_˜¾¼mLA_CK«(8æ¶ß!û¦ªv…  ß¶À†©Ú#l^Á2«ó²*‡Ò ÇâxRL@.hÏ 2ï¨Ùve>V0Èv“–‚w0Ma™¶„ªxµ¿‡ùŒ>Ëû 2i¥Ö·Š’A`ã»&¸F¨•E—•¾Æ¯j5$­nå=ÿö[š»öUBf­kŠí$ ØÍãÛ·4Þ0¦ÁC¬6ј2ò>‚¥b•xW”‡ÕÜ Tyišüž Ö`0Väê0k·°•¬Ðñtþ7DZ3ßœ¸] €¾ 0*‡)›Üçn0ä‚®ôœW䬀sTÚoÛ{úº›qzúì̧ü˜¿@­[pôí‚ñ˜£MИ¬¡Ú‡=ÁlhÀØ£‹Ü•ƒÍŠø YÆ"y YΙ !žZëZø–ÄÑÚ'£å‹¨Wc Ál½ ½WÖ&(§a?^1c½¨ÊÙ&:V`’]²ÐГÂÐäR%y{OPMè¸m&'jm ¯Ë~âb ¦ <ön56Jp\8õ;®/†ý=׫†kɧ©Hÿ‰²¢¸¬üã§«×\.¬q”;I¹B“+ªÌÈZq†üü}>§|z¡±¹TEéCg2tv¢„íOwË}ÐÏ//6ïìž©ÎÏã5(=Q&æ±MRôõæa¥‹þ7“."ln9˔áî׬g›Ûêž±©Û€—xEÛÞÅåb\Íåí·]Ž¢‚@oI.©öo0O3醉PzÏ͑Ԋ ¨»Ea‡1&ï•éÖ[&nc4w1c]ÏT4ë—¦6ˆ+<¤+ãúCéüuÂ[kÆ “—½Ka)u†6,l+c?Ip¡ØO3vá÷JEçE±÷êû_zÒŒî¬úNMcApHiê3›êa <Ž‹íõ¯Ô ”³”¥E~(./k”w¬ Xõ9xözî \]ÙP·G€'Ëçße ‰Ÿ„Ò!L©¦¹E“J+Ó gtC^Än„@°rxèg©r8_9¾ˆÃe9 ©Ï´žù!ÄëN‚8!Ç­ô×TNÑœ$*„|„µˆsоqÌ6tÃÅ›\­#Úžœ¬6õ5!Rk\—-T×3Ù)¾ ×WèÑpù!9Ù­1ýöú×­ô qK0Ck#UÅt«@¹n,X°XOYt×»=-ïÁš"½SĈ’à@?ȶžUƒ‚÷MiÛm‹>NÕ[*¶ÅÌf×e³ ÌÞèÎÝ`“šòÓèÊêB»‰ÜLKÁ㦠Íck;–ÝÐîÐ=?hăkïžp¦f›ˆT÷5]÷¼ã¡ìëKhØBÔŸÒ›¶Q XÊÍ ÊO—qØCîJw›ã¶çìŽgY>9æ´‹Á"K¹–njˆÿXuáªê®¬­C:åÙ‰-ùAw+žf~*Wý,…„pŸp° YòOGhSÀ6Ö¿`Ŷ+÷4Ÿ„µùl–€h9¯tßO}H2¿4ó¯­}viè§Ðp,“©¹-Ç‘:¥2ç2€~Ä׳,)sžúèyË#\cNEãìN´âàðE.s×cã*ו ¤8„\U5–†:=hš½ƒ€¶.Š ÒÓu¾Æí…;Ý‚QåÉ!¶ö’+)°fuO) ‡Ü³’ÌÁ<|r%ٯЈü0ɾ¢ Dó‚°ªÛÔ—Š4}Y±ÿÙ¦‚eƒ+btRn0)fSE=Ò4v÷MÐMÉOU¨Ï6éó"QŽùÞÉ~wjÌ¥±¤¹˜Ø=7L¸™rqOT\SÎδ¦å&+tÖ ã3늳.¬ý±ue„)$ûŠ>ÁQDWÌ«K?ÿ¯Žn"VýGI?N¦lµð›]raì(i¨Ð:ÏBňf/ßéžnðtƒæ× |˜^ñJmo]þŽ\ÐzàüÀ¸ä4½=ð%™ŸÖ˜à½Þ/N/欔O® Nuߊˆüé é°FÈÛ—vbÑ—1<ÙeyéjôŠûF× ²ËèƒÑvRjöv…ÈxKÁÑ^äQlà?׃[¦z ú©¶JîÎÔYŸÇÉZÎßÿ«èü$˜&§ðã5»ü —ÆY•BÀ¢€F"² ›õXuã½ù#9ûdº§Ær!Dh¾ôÄãú'7TêцŠL„ÏÖKçAY¦¬†]Q¤7K"Vþ“[ã»7© ésŒèÄ*Ú4{B4L²t±ºõ)†£dÑðÁÅÿL¦ S_…ÉY¦Y_d—²ÀÏ„\jú±,”ž•¯u)|L™"Ù6V芳牲¤±Ëàɲ<µÜ> àÖÿ²’NS Ìûº¥­þ’Bú‘̾æ×ûoû*A‡=ý‚î3pYæ¥iLçbÿtÛo3ðQN[?jþ"%J@;@äRD—2sùMñ³{’Îÿf$é¬7M½ï[ûtq‹TP¥ÏÅÿ¨T£ endstream endobj 961 0 obj << /Length 2047 /Filter /FlateDecode >> stream xÚ•Xë“Û¶ÿ~'ZjbÑß¼ét¦V}—Kã$Í©©gì|àQÄ1E°|XVþúî HÎi?Ü X,ûøíbAáìáÜß¼Yß¼¾ #'õ²8œõÖ‘Aà%qêÄYäÅ™tÖçƒ,–~’ºu×çUUÖ;ž÷{ŃŸpóbá ÷S¾Âø«q˜ 7\ü¶þþæíúæ?7ÎŽœœ#½LDNq¸ùð›p6°ø½#¼ K#±œ V‰+çñæŸ7Â(/¦FøbjDœz28J-–Ò´z!#÷s¹QLèúÍííç…¹y•·-Ú–£±'”õú´ÊàT?¦SeìE"étÞ_˜e¦Xâ%¡´ ë+2"/LRËð×+¤ËË‘7Muú("±fu·8.4Ä ç™»þ$þñºnÛЗº~µX†"p{ͼ$‹Ùr<ØYJ?õBáÃb7n‡ºÀÝù­A‚æ_•{3ªÔAÕýÜå Ñ £ ~#/ Y^øañãh?ŽÝ®* †!LfFuLC?tÊp3NaðͽêûqßcŸ·è·W›oŒ\emƒÉ­[žä†¡<,É9£%×4•É…;¿ä ïçN„'‚¶BØ}³õ£ïG×üðöK¡cWnÞ*ìTm­V&=…aˆê"é®ì»Q“ö¥Ù×B¨‚qÃq_b裓ÁÛeÝ›CõÐ3ÓAul=¤—…EÌtùN{ÈjþUm«[¢%n^o˜Øª~@—FnmØ®}«+žÿ¸W-y‘r4æU $‰&v!©´âòa·ï½Å2–û£®Ya1Ôï'Õâa‚ÚçýÐñØäú Ì|¢/úIÖÏ8^Ý=¬~â ¬Ãsînx*ª¼3¢)8è£E$\HÆæ0\Ñx?‹ ¨³´·K;^)tÛª®ÑõÆBÎOXÊkþ-ëcÊÛÙx$"Èwà»fØù3êØñ G·¼ ºê_²’\èûÆ-¾•95/èÚ2L +±>é¡Þ˜ý#Ž•p F ¤AuØá~r8Õ“p"˜&‘û ªrE]¬ÇßXPðÜ=”.š8³çã¸ßç=JpoÉÇ3ªPîs5p¼Š(8vv«fvWå“ÉID¥$-wñãq‡aÈážYaRÐêÉW3ꉣnØAfö—äñî: f‚©ÙhS/xÃÃÎTjŠ)ü¹Çö!Æb˜Iáý´ôC¸ÏÄxB†cÿ …ó·øØ@ø!6`-4 ö˜äÓ‚xíXá%QF÷¦ ² ×™½ë¥9òç*ï·(W·‡n.úvg’_î/»AÆÄQÊ2W+¤ßw—e:H.>I8©Êߥø¿ÝJh|`çz†LùÁŒÒ×^<‘{0’s{.7PŸ;ú¨ 8>·àOO&¡m¾{û·ÇŸîÖ3­/ ¥—†cOñŠáLƒ“YÙÀý7 žñØq{à'âdžJDz7À¯«o¿åQâ hƒ4°QQÕÃR÷Ê£Rˆ›ký‡6KTeì›Øåäí @.}þg}Uì‰8¶"¸Î¸p¼ù3ö–~{h`‹—Z¸žo øf(+*Å_9þkë…„ŒÃ¢-3“} ƒ§_ÂÇÙdÄ^‚‰Ü/¡×¶­>°ÌNm¡Xl¡©Ë*5Bx"ÿüëLJ÷˪ü„ê^,œì'º5¯ÈôŠ€:©0|Áy 9ú¨Òiw,kÛ=»è.ñÓ>· ƒ3æÌZUŒL.ýhP¯š±òCWpg%âžÑ¡#;ßDxÑô]Y´ºÓÛž§SäÛ3™± W/Å_Ën€ÊMøþû¤¹©¨%òc?lJ½© êm3ãI±x•3@¾—ÆããÇK¢£©½Í‹òë•&yWºFˆí†ÉÝšx±íl×)ÈõbÂG„®0KÓ3áXVØFÒ-ZEW+R{+àAJ©”ÝB.Ÿ²5ùHÒ³%‹—ô¡)+j€pBz0 îµî^ì(Ô©ïÞ¯V88·ÛHÜ(‚C>T=âúsp¦Â€Ëð±n8¢Žlº4v’ÌgÓ¶ ‚ɤ*ÀFFðb  ¶:÷s3[V9éZ]µí\°§‚C ûS£®ít&W»SÝç_Æ;t™e^š¥sUÀSÓj~õó›Ò‹@·ÿãó›ýf{~‡Óo†iæö¹ÇN˜¿MPçg¾­\½Æ¿ïrK)ù×~d(É­ˆnefáŸ?v4ç§ÉÉ\ªš0q2_ëKóÿ ä›F˜ endstream endobj 870 0 obj << /Type /ObjStm /N 100 /First 893 /Length 2388 /Filter /FlateDecode >> stream xÚÅZQo7~ß_¡ÇæE#‘%Fqi‚ÜèA’íÁaëlã¯á]÷zÿþ>Îj½vc²3“ÙH3æPI‘9S”\pEÙEQŒâ¨FŒê„³«]Š×É•ÌøEC´ r1jïF ©‹’“‹©º˜Åh²‹¥&ÅQ ðËÕQ4†%8bcX¢#1† #5†…e©˜@¨RÓ¢”ä8âŽc±Ç³c6†¥8ˆPJu¬[©ÁqÆî öÃ5€¦’“@SÙI4 «`›àîDŠÝÁÆ•±DÍN²IX‹“!F­.(¢†àň ¹Ä‰]Ù%0Âè’RÅD]ÊY;I•‚3 4¨=UR"<œrµÇ£ÓdGrªX´’8-Ñî°Óš°(.r€t&J&ΠƥïÌ„?ae¥Ûu ‚{†àxR1IxKeMw@RȘࡪ´¨¦Ëql¢cÂp†«i% äf(U‹MÔÌqÙÌ¥°²i0Ú_LÝ 7LFĸÙj2ؾ¿ŒÛÅbwM*ÁvÚ®öô 7ÀSWÁO±9ûÏbøq}ñvuñ:à„†7Ã?†Ÿ†'¯ãx±^¬Ž·îuÌÁ› |Qœ©"¾˜°9úÈdÝÑ‘^ºáïëWk7së՟[÷ææŸ/߯Ã0_m7vbìqÛÈf}yq¼ÚŒ!g¼õÏÕÛ“åë?ݸuÅ™ËÕÔû|ygA—vt£Ö6XÕB¸Éb!|7R¹ÒÆ=¶1·±´q·'‹Ü»±ñ+_iüJãW¿Òø•Ư4~¥ñ«_müjãW¿ÚøÕƯ6~µñ«_Ýñ³(m㛉¼H²Ï šî“,!y –ª8q¤wºÑ5âÉ}ZYq¨òÕ±WQ_«vú4Ïp안B¾:eÈ…9©[¢)ÏýÞb!zÓr.^‘4FœÐc1™\?©0,%WKUP§ Ÿ Ò-Ñ KR¼à83”‘íSª>”ƒ¥éÕÃÁWæ{ƒIô$½i#Ía°˜<’Ì•½°NáØ-Ð ö’š½Ê1r¾)€MO!÷L'Wà˜G`í½Á¤D Þ˜¨3LË •f1Ám Ên‰æ°˜”3VJÓ)Yô•‹åéõCðJN‹ÁKSè‰y‹d-\W‹(uK4ƒÅx£ŒY 11šˆÁ£¸ë±X™\?œ‡Q í-Æ…p»S=eƒ1P™ ~ÜÃVÄÈ ÝÍa0óL« ƒøœÆî„O¥+‹Õéõ«—r¨°,§Ü©Ÿ:‡Åû„âyÄ8Â¥¸vK4}H%¡b=ˆh–Bé–ˆ§÷!R䮳Uˆf9-C´ÚáB¦W@™õLö.DeÔyÂ$ÌàA„r!²*˜‰ÝÍà@f"zp b¿D38P2+DÖÓõŠ‚ž€ÌRí©}d†–P6X¨}"YÖΞ¬;ƒD@f)jk›ÄvKDóµÍö]*³¹[¢9|hß8ñn¿"¥¢oÐ3‹å“žYÔö̬k¼ë%isK[¯)†66ú¸ë]YŸxwÍm”I{R­ç’…ÝYKªûXÍÑûU *áxu¬žD¡_¢ %:V%[& ö&YËZ ˆE9߀ΖW›óåñêÉ“w'ÛÍÂܶzp8³W«£†ðö&l¿:'S̵ÅÛ~Æí ŽÆ†Ç£2†—Ã//~²ßw¶Ûóï‡áÃj¹Y^û÷›wÇþ sÿ~ýÇðv}¼6ëwÛÿ“ødÝÿaûñôÑdÖe‚Ø„òâkéf”ûÑ}‘.ï/LB­ ¥‡x{X¥€ÚôŽâz6aÄÀl ˆ„ÀkÄp"_)eQ‰a‡22}ѱ"–ù îßQ/Îg¤æ1d‰-›¡N¬Àj9ùxGy6¿0,#Îß»/Iò‰¾²0ˆA>*Ìb>b…Â^‚;¨MùÞfzê^Û;è1‰þúۿܸWTW9Œ½Â³ËÓÓ7wÓòH«¾ ª‹•,ä¤NbhšY{‰šSý<1%ón„ Ë0¡SæhŒþ…s*¦ÏÜ>³wñ÷üEx…Ó'x…ù¡x%¦†;N¡†S¨án8…Naš0¡Ê¿n¨8æHwPx°Ï¬þÓòµOXBVŠc£L­—ÙÇ„€QiÑíÙêbuŠ»š!è0T`عÅNg¿Q´Åwéì Âlin,dïÛ­FÖN‚B™"Y[¡úbûªã¶Œqس&Ó4Ò"Bng.ê{i#`PáÒI ¸’©t%Œ9âFö¸–#nd‡& ùô£yèG!öÍÕ„ €¬~ƒg¼pwAâ€u¹¸3»÷ûèuÚñ¬£8«T>O{@@´ôybƒöÍ ð> G'g)"öÑŽ/W˜;‰„T;¥°®ÚIlŸMP'q,€¯5w‹ESùBv­U„ +—é@™ÆOÎXª=c©²ÔšH©³T&mµìŽœ «ì.öz뎞æ„E9ûìW{ë…£tXý­ŽMg¯ãÔˆp1üM¯kãÿ/ÔÓË endstream endobj 978 0 obj << /Length 1779 /Filter /FlateDecode >> stream xÚµXÛŽÛ6}÷W‹+kYÔÍÖ)8ÝtÓ½¬Rlò@ËòZˆ,:¢gûõáŒdIÖ¦IÚ¾X¼ ‡Ã™s†cºÖƒåZ¯F/–£éMZs'Ž"ßZn,áûÎ,š[Q:Q,¬åÚº·ýñÄ›ÍíÛBW2ϳâúÕ6¥Æocßµe2ö\û½ ×øÅÙ(ˆ];¿[¾ý°} Ø×µDkáÄnh%»Ñý;×ZÃäkËuüxnèÎò¸0·îF¿Ü¶ñ0ƒñ^Ô1>œ9ž’ñßãæÓ›0ì‚Æ´‰ôÓ^•Õx¹®½xóæÙbAK<·å˜yäˆY³ä­º+©·t~ýXTòŒ \hMâØ™Ã&bæD^@+þ‹ÀµÕV$²à¥iÕs¦\i•*îíeÅ›Tª'˜¨Ý>ËÓ’zèýZýq,B[UwåAóÊlCß"MR­%h€ø=Bà\Û1'p»¶ß¥µm¹þ¼U¶×ÔÚ &g=äüøÃó;µ©® .é÷VÝúiÔ‹Wm‡t[U{}=nS Ö'΃Þ$NmçA}œ®U¢§Ôe™Ns‚Δ÷"ìô‚Û;¯pVã}1ñƒÀ^ÜÜ.ïn%ËV‰¬2U°6´¸|`LÿñjÔ×´X¼u]¯ÒÍ­{£ªL?²2ÕµCe ÷5¿ê òB‰ÃÇ<Ëå {9‹¨¢ƒ²F«®ÒCûíAøÂl²JgŠ?ΤP?l´íò¯ˆÐ ]ÁÜÞ©Ä€³ÓDhïL¤ð ~`/Wl1y8”< ¾dûŠ8 ïD*>fyN-’?,.ߣ˜ $¬‘<¬ö'$¢x«}šd›GÄ8·=ÑÑòaÂÍ—‚,$ï-hðE@°ÑhÀNV¾ð ¬p‚)›®ë.}%}ÖܤRuæ0càXéÊ5©MgÉež­.©©«' b£’Ya´®g_€š„H•)ÃRy3ÂD}XB« š’Åšd1H8p™I~X§—ÔíæaüÍ0Öµ¡£}{q5hõ6EŸÍf'aÇd~lœ@äÏ"Žηá‰xâÀ1Ã+[’Öj0,giB`> „}S“gRì|’»}n°rEŽÀ«gOû7g8S-@1ƒü¶ÐbºøEÌÕ†—pa`ŸDB{zÐå1ŸO›­§WÈÙ¨v!H‘yÐ躺îæÝ³˜ÀÀ›U:Pôx3™ £' e­gm;ih H¤ž¨©'ÚÔ}êyL=aª¢F‡ƒ‚9ØR'W Ci’?ëØÉ¢€Ë8t1À¾ˆk‚ô †¸GZkÅÜ„+[xä=\ØuàõܘctÂTuÄRPQ‡¢¢y~H-X…1V6ÉÑ ny– J"gY#`Nãd³DA«ltÀ¸Ù)ð|Z† H%ZÜÔCf´·%ÕH“ÙÜ=± ÅØƆ]=Nì2Ýp€ 7À6wù!Ë+šÃðãwºU»t0QFÓ²E£æê(z—HsÅph¨rü™p¬ž ÙæÊd‹¾88¼;$=È,/vÂ9íÛ¸Þ‹LY[¢õÑŒn˨©/ikudR*×4KRY+ÀÎDæ‰8ÁôÄBþšDZU{TWíQ·†x¢¼7럨ÿÞ  ¶©©‘„˦ÊdžýÕ/™¯êR'¾6‡}J^>¿ûLâ ë8áúðào}^úö7:ùÉflO5©¹Ubæ&LÕU‘ioè›È’éEµÈ«CEsÍš kÈX‡¤N÷’È[±üYª€E›Rízj5”ÅI:‚s|—F¼;ô«±°éâMr—ÒìÐJä4ÎU8mlª¶I$ðß5M¤§/N¤®Ó‰û­ sœÁÑ E#íŠÂ=ËàáPü^<:\ÄI ÎΓG°1íɵC„"&•à„J’ƒ¹“à¨a> stream xÚµXëã¶ÿî¿BXôƒŒÄ²Þ–H»ÝÛͦ¹äºç¶®AÀ•h[8YTõˆoû×w†3”e¼Øé›ÉyüæA¹ÖÎr­ûÙÛÍlyFVâ¬ã8°6[Ë g'V¼ŽœxíY›Ìúdó…¿J쇲iEQäåŽæí^ÒàÃÆÉIWÚ”7×(Õòbn ±åÇ[(ãʉ}–ñ¯Ä"ŸX<ŒÓ5pjg ×nsº4v]{±¨j¹Í¿|w¦ß6'³ByÁ‡Ñ¥!郓ƒ0´ßv9hl,7`Ð „woÅx÷ûæ›oˆÒìE­A ã"¢°C ºö3Q¹xØô$‰’©’G¢kÕ ‚ÏÌ„–ã­Æøe/À Ì`†±¤£öíú¥©€ÝNxm‡p–õȹ÷?ýƒæH BFGÞîU×ÒDÔ»î K°öÿÓ먘|­?ö'–3ò›¹‡F )9z8ÚçJ¾$søZ™µÈ¢ùI×È¿¡„êARÔ¾]ÑRÞ<•X=%2\b„ý‰wâ@I\[“Ç·?…YXæl}vP^¦E—ÉóÃ&°Æ0ZÙ{)2ƒ-“²(­jm‰kÉ•.AÈ^ª–ϸüûÜ ®*}ddò¦Ñ@¶VÑÿ‘3zk@Èt©a©Œé.$@¯Z )³3 cÖ eâJLȼGÙ‚Ä8 VÌ xÅö/s/äúœT¿€+Ý‹r'iŒ±C#Œ7b$I'=´çš«Š‘€ì{9™ÿO ®Wã2‡ÕÕõ42üuÌ7"9\®i]ûB°…ÎVóéÛ5SÞ÷u ta°™<ˈ®7çƒpˆžÖRw ú€’1!´Ì:žMöœ¤´“P_iŠStÿ“ê¡ÓŸp^{tˆ¢Qœ ð–Ø]•õBóv„oûñáíã›Ç_~ûðfóýŸ’!å—JÕ-å›Ñùß]}UÏsÃ’¼S2˜þú/£Ó®þÜÜÈX˜¨ÞãÔ9s04Aøw/Œx*“¾“Ä‘©¾ãã£NzŸCƒ xUÚ¢SýÄþW^B²ñ<ûxÞb’4hç‡N%}zÆ<é®qîÙMË%:¥”¢W(7ÜÀ"-´›ü5Èд²jˆŽ€A’Ž5$è€ê{\R[fÝóÍ7w›?õëüT *d]L¥/V=BÕO9pÜ…kˆ·lzc}¶Ìèo³‘‹G(Ø·mu½\BhD:»f›:%Œú}y·ù°DG¡sZ¢»sµL—ïÞܾŸ|m¼sŽÔÕ¾à¤aÀômh-±©Â—‘¯ß™ç¾ê×EY'{>ëŒQT9×Í3xõp=•S·OñJÑ€0ŽíæM' ZúØvY®ˆþtÚA‰h7ïûÖé=Nh•®§¥SÉ€¹S†¶m­¯u©¿$&jÙ£ÇãÑáŒÁëçɃÛQõî%wE±ã¯=spzj.7Æ+=©­#œJÁ´’èÓ? ä‚…y=z3•6_Á—þœÉpÛ·‡â5èåË=Ý&ö›mkº‰®üo^UôHLs¦é­¨oXÓ&\þ¨¸—?*ÀæàœJnLTÆ#¸ä‰zäÐ5O ‹Ì—ʸ¨*)êó"-LùDï¹¶„ïıã¹=Ë Šì*{t]ÒV‡l÷”åµL[eŦ¶`àv“õybÑÅ$°®¨ÏñL‹ä"Æ}$¯¡ÄéÔ¿ŠzW`¹é_Ë0ùx­ZûÜLóž©oƒH#á'Œ^ŠƒÉZWÃw¿Óg+Ó@QˆA–+Î;ÝŠ^”Ö—LÌ¡/.Y½ß=ù]Ïs='‚*ÿ¾ë™‘ã«8~ÏKÖN`:…{YÊŒ;Êï›9ø¯c‘ßìzœ«|ט²ºv£kom ŠO¯¬3Óè™yÙãøVéIÏüY³«ÿ?Œxw endstream endobj 1002 0 obj << /Length 2054 /Filter /FlateDecode >> stream xÚ½Y[oÛÆ~ׯ üb ˆ.¹¼½ ub×m““S ½ - š¢%"©ŠäqüïÏÌÎ슔6Žƒ^lîuv®ßÌ®|gåøÎÕì›Åìù¥ŒœÔËâ8twŽC/‰S'Î"/΄³X:ï\9? ’Ô½*û¾jVÔ¹éó´|·/—ðÍ_¸Éü÷Åw³W‹ÙŸ3ô}GŒè /ó#§ØÌÞýî;K˜üÎñ½0K{µtã„– ÜX;7³ÿÎü1“oc2J¼ ŒˆÉÍûeµ#Þ..~óý ïæ"r½Û909Tõ’æŠå£k@8ôL$^H"¼XWí¹¯êšZ·%}û57àì²è[` ôݻ۵޸®Š5Ÿû:§ñ¾UÙ”»¹ðݼ瑪çÓ¿ºäNÞ0ßÛrw7‡3ð¨ r7Ý#FÏ&KèƒRº/Ë¢Z–ŸÁ\˪}Àév8ÔÇ=ª1ozf¦¥ïЕJ½tæB³x7èmuÕñ­ânÝâ–ûf$ «sÙ¢ó…bËÍ5V¢v>à?>îù×6Mü¬VœþoJ„…a€4Üꆢ(»Å~¶WjGóC§â›?UÝ×Ô¾é‡eÕžÎ#ßå…§æí”( }UWý(ÕwŸ¡^|2-Îu-mOj7›²Ù{#ÄN¤…]·-Ÿ:=y³·öu}çGC7ïhV9 6 ‹Cí¶¯ÚLIá~KFÀJ¤%^YÝUã 8x_uk>¤¥ï¡£Ú„!†„pGAŠÝªé”{b;§Ñ3´IÏÔ¾~ùêµöü@ühÐԔʘš91ßnwíxA+|8zb9ø~~ ¸”þ1â–"&)¾ %ˆJ¼D"”©¬¾l¡¤^œH½ö«O;±Å&xÅû™”žÆ&¾.•Y3÷ ›쓸$úÐ`/~,†p15>€+aŸJܦÄÉ âä;2 +?WýšI+xU<€×S0À°¶¦Åk6ÈÀ@ȹݰìî: ƒ±»Íû5µôe‚;ê]\^/n®ÿCºº%¡FðkÈÜu™/KÞ7åh„NÀÆ>9ÆšÈ=={yñúÅ÷g61^ýñöÇW—׿üñöÅâ[€‡@¦û( C© ³425~m•„p¬ì©¡D•:@c×¶ K÷ŸÎN‡zaŸŒÿRI£hz6bTI%RU‹9[tiÒãû; tÌ$ ÝÆ”â0±Îq™¹Š"aúLdTEŽ×j‹ªœ¡Q@v¿…¿ƒ*fFÅÐçJiui«M+…W“Ò0}ä]%=*0uå’@;H„–õ¥ªÛSiêá>€ìø¶¢†m"Â<"[&L)š\³³Ç//!}Ú¡ßü,¹qR¨“‹ç(‡b0½=0ž_˜OiÏú.cnf2&VTçØpTQWkñµº¨Ä¶)*‰"4¶”Ʊ1IR2§®–è´ÒÈX¨ºW“°¸‹íõkš^ð’†l•x¢/·Ô’ç¶·!ÊñɃÓ|ðƒÐ)c •LˆÉ@€Ìë i^HÁãýÑi ŸHE¬žH§hçÇýËE `,Ç? ¤™ÆÌúú"û!²Ï\Ì3ÀáuÎWj!èøAÄ#ɹ‹Œ¯Ü Ðb8z¦~Ù*ý>¬àrbQ(áÿYÇnÜ endstream endobj 1008 0 obj << /Length 1034 /Filter /FlateDecode >> stream xÚ•WÛnÛ8}÷WhÓk5Mêj¹AÖ¹èf·QûÒ-Q6QÝV¢›ûóKФ-ÙR¢<‘çræÌCA`:ÆÚ€b¸A1åã‡`4»²c|×µŒ 6eÏ®ï×GF߯ödjzóñ5aŒfk¹¸g¸ä38f$â£ïA4žO~G—Áèßâö¡öð¡c„éèÛhD|ó#Gcùsã¡M Ëæ¢H(&ÆýèŸlA–P]Aà9¾ÛÂêxÀ´… ÉAÇ%ýMFs>þ»œ gœ¯KœÖ5ÇãìÊq ˆh„hpm€\OÚžÍ&S—[6DN–˘²JÎ7G¤T \* òX°¦H¬X.ǕڥYÅp’èmš)m9TÛUDK®ž—;ù%z˶ë´Q±ÍÞj˜l#µ(0Û­…x¢M¿'˜sÍ»f8rÓDÉ„yÆ0G­p&‰v™ò­¶2’ªÂ¸|[)C«œm°<žLÛsdd¶„¨è»ÓæöQà ]•{O8‹Žè…šwÈ~‡ŒóRg §EBÞ¨8X‹ËJ!, WDÚ˶ꃟâ_â¸<Ï"ÏnðŸÊiŠÃR¡HL3Êh¾ÏÀoL¼JHgŠ_јkHÉ›÷_/.ïþºº½þyÓ¬"[Ë6«æŒ':¦k°9ë(¸W$‹hüTM±®ƒ6ÈlGÊž?H:TÓTm‹"/ÙyZéà:/H‰kÞÀi>ìÞsÔ:IÖ&zBhUV+ÍÅkQoŸïîQ>3Å̬¼ÍãÃÓí“Pþ]3Žèéí“^e(Ji_=$ª b¦ï‰çˆÔ×Ùá$æiÁËõ@"ï!kÂzj·YçMŸOK†)¿ñÞ ºñZôé,n-¯z®ä §¤*px8o ~¶UÝ[rÍâ|«ulX¦)•hÆô1§™H•HÓÛë{Á‡’2r›â5é·»ÄßW!¥Ã­ çeù0/v7_Ù®H»Ùçü¡dºä‡è¦>Hƒ¬ ñá´é@Üœƒm_>2~ñ‘è~Ç{àã‰Z³Ò:“Úæ¿ú›iŸ¿{Z®nƒûÅ¢"ì+)W¼?åQ”•[Òë–ñZ> B:A6°øó© 3>ôÁ?NËêÐå*-!)ÕEq~®ºD_A*³È²³³Î,œ8nè‹·4{;}ŽÛ¥þ"ÏmUþê4‡}tl†ú=R{Q¸§Çi¨×SÍÇûtçëAä¿äõ¯M\`z‚ÁÃsîKxM2ÑØë_þS"úŠƒ‰ÏÛ%‘‹Oõ Ÿ $GšŽúâ- ³@¾\ÅS6C±X.¿ChŠ)V+±µ“ó‹|bÁñãn-þ3x»8ÿŠðx, endstream endobj 1017 0 obj << /Length 2083 /Filter /FlateDecode >> stream xÚXK“Û6¾ëW09¤¤ªÍ7¥qrðÎŽG%UëQÕ&>P$Fâš"´$è±’Êß~"%N6Îa†@h4º_çìÏy7ûÇföêm;+w$¡³yrü0tÓdå$ëØMÖ¾³)œÇy´XéjþNSÖ;î<˜¬–77ª€ï:õüùzñaóãì~3ûïÌýžãôùîÚ‹ü0{üà9 þèxn¸^9Ï4õà„Lõqaå<Ìþ5ó†FƱ“º¸ ™®ÄN§nÆldù´X&ž7ÿÕ‹½¯•?²ÂüùøÇã­)nosÕ4Üýö[þ~ÍŸ«…¢Ô£úë×x>°i¹v£$zaÛM¶­þÖ¶£…/nûÒiï?Uªx8Õ&ûüwöŸÖðEçoU¥ró^?·_jÀõÊë—~ä†Q_È×`Íûÿ1áœ<3ùþlÖÛÒ´÷Ÿsu4¥®¿!Ý×çxõŠ<—UÅ­–ÌÊ”UÓrßìý\s{{âïÝÝlxòΫ® [Cë›F7í„Évû'ÝÕÅX_ŽêJ}>Ok2Ó‰_}Ç_ï…cýN2ë¸Á†t·zÇqw3q`£Z#Öwu~ž;»mºe䦫`ÔF™®-žU°v}ž¼zxƒã©¯Rž²Ù«Å2ôãy[޵“y‡QùiÄžplônáÃUÀÙgB2t­a“gš½èiþœ¢‹}ýÄDïV·2ñ  1ãizsݰØXãªrË{à€7?AÛ›C… çy_BJd}@ÑXNÈ>.Ѫ`•pŽb£¬ ž –Ö™ˆî:H]”}*Ûr‹ Ð+(0Z¾{\xäZcoî‚YÉ[Š"û=ŠW™4ªôgÆN¡hÓn·C·MëØ±Žà½öõb…ñ•ýá*_)n”5~Ãy«"ɳ–bÂâÓb…žÇ% uK–QÀh®kÓèj¨TéÃAËyÙäÝa9e4\É:§=ã”î¨Z€Ü8+^ñ á,‰¨7<7³K¼€²ÆÛ½îª‚å[Åßš -NÐvíñH€Í=:\œ°åЖ(Q¡Š=yr,b†7Šæ?k¼ÓXè1©ñËi«d£&¶j-ë {Š.—5ªm¡¶r§«+èZ奴Àa&ÃÊàž¹½Ñ©›bô/JR 3- R¾Ø@£ñKFcãÒhl4† ñ û”˜'â0L^š°˜÷ïfÎ#͹»ÃP™Vf1C‘1ÊHlj0KŸ}àÖ¨ Á5@{ùš£ÂdIÝíöÛ½¥$o”d±ªÑÛ(¢Häô(ȶtP6‡EìŒ@SÀÖåVãZ.\J6'Ç¢¸Öõo8_5šGl1"5.˜8á9C¥k48B”Ìsö)Ö¸ñ=4DªŠ#Æ— —B4 {»Ë OÅûרœm&™áÙäÑÊdžúѱ­Ÿ˜k®¡ž Ö“®D O¨Å°#lgÍi” åhµv¨w²ú†KYùnà¯Ç>ª‡ÉFB:°a«jËÝ3Qà†€B³Ä&òαvÎ%Zg‘pDôެ.x`ŸaúdASx# Õ’5»î j3ŠwÒÃ!m<ÂÓQ.>(DšÛ‘ßÎþQ}!Aìzëäšqrëq ü Û×uo¾a{Æ|”¨Û™íÜ£7Îì 罞 –­ 9F¿\œ„ÑA(ÑàšŽªÎËø3¸ؽb ¤‰óÇ̃;q Ì…`™A‹úÑôBM–=Ân{Íú sB!:GêÁ¹ŸÐ¤g\1Èø’b‹a5Üõ¹' 53¤†þdQY%pø¡™ÁìÅ.ø¨(yû‰üE®xbŒg-°eײ€`„RH±`’¿¤F¾nhešeHµáõ‹ûªˆ²˜QÏ`Pöð0;!QÉróW,æ¼ò|‹Aßß¿Y ÉÀ(êoÞßý ‰y¡Ufs¤QG}δ![ ,óÀY² £\ùEM:˜U-UËŽATe9jøÈ="ÙðÅV@-O?3kÌ+ݲ ¡Ãäªå×FD;LÜÓXg¿åTµEî 2  ¤ˆš«”²|âò@!<—%â¾Ämb¯03>KÎÔxè³·?l<·ÿQ¹¸´ÐêŠ-—¬TÍ@#@‚Eßî‚Æµ9A©øHôÞ°˜Pä/à±'Xl¡,½½¥ÃêÓøåNøÚ‹þïCÍòŽ#s²O%Ûq`Óa`Óa`-Ã;Ve^šêôš/[†#ëP©ÝΦ[ )ÜÎo"ö®Q©¬î7ïŽg’5‘Ó1¤KÁTàp ðÔÃ)½¸ù.µºkrβIdý7E=ôB‹€m,âwˆ¶J@$¤Ÿw¸U]’NÄiÂþ©`Ö¢Ðï¡-ìa'b—D gR¢‡žV’ã‚ ÓµmS̶¶2-"h^?ÃW>—2û¬Ì$Bò|”×y¯*‰<Þ:^X?âȲ® îåÕ(.\ À–LUoÁËH'Ó‘þðr5¤ðZ .ty¥¯@ê½Ö ˆ"±Å¬*ÍiL±&˜õ=à·ÀE¿à‡Yû«qâ)þ–sþÕØnhœy§jÕð£•|#Ý,ÖPËä ?g}¾àaà±HÒ[/¾õ×ö°Á'û7õìkÛÿ¤«þù¾çÁ%¹8þÿÈZüŠ endstream endobj 1029 0 obj << /Length 2007 /Filter /FlateDecode >> stream xÚµk“Û4ðûý tâZò» z}qÌÀ”6 0-Ãèl]"êØ©íüyvµ«ØÉ¹åJáC¢õj¥}h_Rè­½Ð{~q¹ºxð,N¼<(Ò4òV7žˆ¢ Ks/-’ -„·ª¼×~²XÊ,÷êÌ`š5}¼èÌVu‹¥ý[Â\mÕ¾Ö§{Bª¦š›%ÜÓ÷ƒnzÓ6@,â(¾¿®¾½xººxw!@ÄБDP„‰Wn/^ÿzL~ë…ATäÞÁ’n½(R kïÕÅ!ëNõ•áTß$ ’$ñÒ$ d”¾o¤L¬n÷z™$©@}ß ´Yë7aÂO0)ÊÚ­Yè—vY±é20a¬ý¢©ýÖsf[ßµÖT¶£Œ¡·EPˆè¾J<êKcî§ÄãN«ñìYºìŽn¹?´Ž„F˃ÀÕBÈÐW× ø¯ÏuúTº43ê§+–fÿˆb4LýßÚ•ín|¾yòã=uâ“ó:—Çj{­‡ƤÖ<ÿÌÔúóœ«×µ.‡—íŒwèï'î+»æ(ìœ!Ÿ¨a!ÀôŸ#tõ ütw?±^íQ(\èŽ>Msƒnñ3ñ·àA-›ð¦k·'ާöq±ãû²Í‰ÔŠš’Èçïô`þ8‰0î,(¨uóJW¯n›A½¿·  Â(ëÁ ›IÐÀncˆô½Ú2D|NÅd‚ ϱƦž ½H°è,Edyæ-ã0ÃâXdE†“*+Ç*›Û4#©ŒfXEs*±Òeã³9Â| dœÕ@0­Ìƒ˜‹ýjcpã"`.ٱ᣽¡qØhʶb¨Ò[à0t˜KÔ yui3ëùrCEÒCÙ³HýK]ª}Ï;iŒª?SzL®€†rèG¸fú-²Ü÷jg=:„„‹øF¡ƒÑf°WR ÿE ØCÒ" ñlu3| _L×5XqþÙÕêA%)ˆ5a_m×%ú–ý´f) ªf0`ˆpm¯ÂúIžúË9ѯÀhqȶF T=ChG F%ôÁ–A#h§Æõ•¶ùJíëxÄ–CK£¡) M¿a,„Þî†[­ Pt tyµzqõ3Á_ÓÏ©„–ºüeõô·«ïž£±$zð ںѱK2XiW<kå ú¾ëàŒð#é¶f`¯ÂI´Žtb¹sJ$E iJ gD•£nwL~g§œ¸½%‹u¢N©š¦Ð ”Q%¤ž]­J›(«n[-ä‘ìOˆXún‚FWl™“•aÈ0=š¦[ïÑqy¡mM`#æ#&|ØWqÜ›Ê2iå¶$µRÚ˜´—Òïwº4(dé¬ Hk#)•p†D ›&TÒoln¯mHO¶”ÑEa²ÎZË0e­›õ°qÙ"ÎRÿ‹b\E;÷3›A&mŽÌ(õ@2$ŠE-º¢­ù©ê¾%̱4oaCã–à ə׸é“FJrÁ™±3å%ö¬d6Rìf.@·±Êœ†§ÙöX°zTâ²ä²u§¹æËEµgžÇb7‘ÒÚڱ͂Trò}‹ MÆx°X*ú°&ˆ‚@mwÖ½c çwvž|'ì¹Äì;Öç!Ê&7³LI!œÏ»3› @“ãèìq®“CifÕkÅ߆oW÷FÄAœäŽËükÝ@¬ÛXŠÂ,ˆäY,,,w¥p¯–Ç}f3Ê#ÿºÅüŠCšÒØv 3ÀCAË[×sFŒ8ŒàD&ý’Чi  –”§N•bAO}oÖ;~ì©` ÿ-Še«Ò­õ¿¶«zš)Ñê`ÂÄQU¶­BЊÍI .—á1‘"ØïËR÷ý;æOª2éƒ+·ëF÷¼ßÁ@uŸ‰&²´L9è,3¶§ˆëi†ƒ2MìüÉi¾l(¤.,b¹…óã:=¦f€¨ 8ÝŸ"û)öZ£cÌ–¨&·ÔÊôo9¸Ôðè qxå®ópo94.& [†]+B÷˜´ÛžJuLR›krêQ{ÀZwUµêhná:<8xh3jÛ3!]Y«ž¥8lŒMiÈa¿Û¡5Aø¡Ÿ³EÖ<²ËŸ˜w¬‹Å¹ßî4‡äzs²è†F®Rš—–ˆ…¢0•”W`+c»¬`M\a©ÞRèÆ®y„¥ý»½µ "»›ÄÚâÓÕìî"cêégì1_$t¹iÌ»ý\ÒN\/…î“›õ$?IÇðÉU/É|ýiÓÔ™`Ó#Œ¿ø‚€ÉqÃâ™ã¶›¯ÝQ ›mÏ©L¹ÚK×k#@ jij¸ýèÙÓÝuVð?Ìñ26õmÚ áP=|øGð®å vçž i?ñ² ÈBá®FI¦cN_,SÈS‡nîÉ‹ N9)þeqpk²U H¾ë=x@ÛØ×'M°¢B;{÷»åÙ®S r²~0Y(—O8éPœä”i¥Áãú æ‘CÌèQ·ŽUCä2º}‘#߯N 9ût+B¨å¢ø”§[÷4BqGAƧé¼"§Ós ÉX Î!Ü+Ìj)eÏñâW!h”¡äm‘= “‡¢à·t§–‰?>^:Ï<íIkKè-?e7çêÿ ²Öñú endstream endobj 1043 0 obj << /Length 1450 /Filter /FlateDecode >> stream xÚ•WÛrÛ6}×W°yH­ZB@R”DÅõLëØ‰3‰ÝÆÊ¤3Ž'“—TŒ¬fòï€ VÛ Xâ²{pö,½¥½×½_罣ț‚x<½ùÂóÃLÆSoG`ûÞ<õn¢þ0˜L>q"]êÎoœäˆ÷‡><ÚjËeŽú²·¬l¸ÐFDS×Wm;˜„Q9Ø…ÿÈ÷ûwó·½óyﯞ/]„žßrÉ1Œ¼$ïÝÞA/•ßz„ñÔÛTCs/É¡¾š˜y7½ß{°gyO _Å`O¼q4Aé83¦¢CxDÑ#.nƒ;ÝûYÿ}Ó!„Ý Ôï/•Ûr«¡/¡ b½Ü‹úkŠ“ q¬;¨l¸f„ ̵E0ýq9¿1c„þ_”4Ý+¶Æ@·ÏiQr…qå¬Y@XÉi6ÎÄ`4u}É0ú§ºMfa–c±"6ö"™Y™˜­Ó-E9IŒwYƤüí †…Hg3ä—µà'*¦S=m}ADñFÊß ˜à[‡ëß*›?˜v¶²1±¯˜o$7 Âø‘¢‰†d¸®XáÝO(ã¥ÛÖü¸L$UÍÙTq‚w6ºB9V!>û \i "ž=°àLnoÝGæPñf—ìþ'Âp¯Xã„,¶õöuT)f ±]Û5©9rEkã.ãÍDåÚp&Ó ƒüºÊq}&­¯;ðË1KËË’—™@³²È žI+¸ÚË„qI×5£i@p%ÉÑ¢µ¥iS)…dI-µ‹ã¢Ác`1Wȑ؇-‘%¥è)(°•ªÃ&s½ns|…Ä%E°Má˜ïwçöjÎpŽ©_¿£E‰0Þ©ÄŠE ·`e†Ääocd»rŠ8G[p ö´ò·èh]F„°R¼@4!ui\!jƒðJŒjâéÖ¥øÑ,Æh¶uiwOP–”Y+õ-úº¼ÀÄÓ‰<ÑŸZ¹Þ2[Ô›º/Ö±+4Š3~ ô©pà¦ÓΗ[Œc'dgÇÇ]ñ°€Ýó ”$e®"«‹Ù’IZ®r'/k6t˜¤«v½‚÷¹Åg`Z• Ü üA5XéÁDùÕ<ȧ1-X¯1ÅŠBæi­8¢þçýX²Õ¼­ß«Ç¹jÈ'uõÀÀ¼ãýÉ F3?Ö½E?Ðw.Õ9;û a Ìãý^}2¯ûW¬£ǭyÀÓÝðÿltPA endstream endobj 1048 0 obj << /Length 1662 /Filter /FlateDecode >> stream xÚ•XmoÛ6þî_!äCk¯ŽBRo–“èš´K·¢Yë¢Ò PdÚ‘'‹®^âÃþûîx”,96Ú}HHžŽÇ{yîÈ3³æ³Þô~™ôN^»ž5²Cßw¬ÉÌâŽcþÈòCÏöCnM¦ÖMß‹`Ô•˨L²9­¢lJ“Ïy²¥–ªþJãË"NšN#ÖîœõSI¤ËÇRfE¢€öEŸ‹ÁíämïrÒûÖã "³xK%n‡Ì³âeïæ–YSøøÖb¶ެµf]ZŽ ¬7¦ÖÇÞ=Ö¶Óó¬ÀƵž°Ga`ù^` Ç#;g*ûŒõ¿0%YI‹„†Ÿi`§ê Yµ¼“ùûÙµ. Ë ˆáhèpÚ®ïÒ1ÿhm.FôÁœåy´¹)Êéx\¤I,Q—*ÿ]fóòžö9#¼qÌÁr#ð'ýÁµƒ‘°Z䢄pÅ_ã¨(ÏÀšsmê4l r$ÝÖF¢¤cî96~Gë\­aƧÄÚ°´Íø·¶™®DHÄ“Ú#ˆ$Í µ4³iTF4kbPÞ›oÉ2𛩬ñbïqkª„†í2•K™•E'vÚ³QWË*%ÐÀúòѾ“ó$Ã¥öÑd6m(|¨Ï{jª–ÒÊd•&²8CÎëmø÷ÔInkçC”ꘟÍR•ç¤eeà£]mÈVëh«¬0@ÕBhz}õË_[(¿ûz}uÂ=f?âî¾ñz ÿÅ¢‹N»Ï8¾É…Åb7¼CÉPë´µ&Êç´u¸-ðm;” Þþ\0äÅÂDbÄmĶ Æá7‹ÅíS¸Ä ]Ï@…V8÷¨»ôI.08«äQ¦(Šw¢°/GÖPQådÁ6wÆÆQi¡ Q.9ÀÜ„¢X'e|ŸÔ9r'˵”ÙžˆÔZüzñ©Ø—gZ¨ÜÇçZO4‰Œ¶Â?Ü¢ø­Ñtjl\¥ÿ–£l©vÌ_åpl¾¡Å½Œ¦2ÒBe†½K‹Õr•ÊGûppÈ¡+UT¹6Ò„Ê5-²“²PÇæ:aÛ„ì@ØÜs£:M¤Cº¨(‘ Ù#ÿÇÅì jxA²«×IYŸ¯ Ðuɲ!(¿É ..ÿ¼~ÿñӇˣa×Kã‰*£”ˆ—†H«I²”G‡¼÷ãÞ¿»|óòh¨]9<"y¯È×&–Õ9&WÊT5£‘ÓÐ=[ŒÀ)NÔ“P³*‹Ë&‡®A©g4}}5ù8·µ4‡Ê²Ê3ƒÏ¨¦Íd.³X@­º[ÀMK8pmÇõ»uG®rY@¶`RR]i1¹]Å÷ghyºµ`-yµR¹üV£Ê³ÆyyS¿Ö*ŸFjTë\;|•«‡dZo‡«.ÓÍî³GeS¤WUéü‚n )¿‹p×ô kvÏ͉QVçw„ÙÖM¬ûúÕWCUåª*_NÚ­Ý-Ñ!õ)”·vׄ6²L=­<3ïŒ=€ë2è}€™tïÝC©Ü¼ç·WzøôÛc¶ð°Àá ¶K¾Å…rîa’]f3î6gX¸¶­’¨[%Ñn•„i•„i•ĶUØ*ù¶JuJ¢Ý)iL_sòZ°VóF©äš®í ä:QBü9AÐ/¤)yHÆ#Q €Î96g9þà Câ’8ë§;Ò#"Á=+ Xm2€—ª-¨ÃC9pXû^Ù zmV†I[>¡};.ãÚeuä íóLHÖ€Yîõum#”Ï¥™Æ*­–XŸqo{šaï:ráÊÀ¾uÿ¡Z8à߉.šÛ‰sý*Ñ“LkòZø Ù0´€N7›¨}Ñ$-KÑ¢9”˜h•í³‹ÞQŽÆ÷ DF>µ¤™… ÑwðH/ï«‚fšáa ¼¾Ì7I‚>Di% 7A&ñ©°jâ‰{v}æ…ýÏèiŽ–X4‘ÑøÁÁRh”™upº·ŸçŒÃë=ü?ý|ý{…o‹ËÜö÷ŠQh;uÞ¾‘^ Òü>¡²ú÷‡еùåáú'œÓ(˜ð %3oÌCZÍÐ!Ê0¿zõ…1Í ®4`74¿Pè|îã=³kþ‹ÅŠå endstream endobj 1054 0 obj << /Length 2100 /Filter /FlateDecode >> stream xÚ½XYãÆ~ׯ üD+.Ù¼'q€Ýñîz dsŒ‚XA‹lS¤ÌÃÊÀðO]MQZÎA€è…ÍêêꪯNÊwžßù°z»]½~ÅNæåI:Û½„¡—&™“ä±—ä³-On²Þ¨4sï;£‡ªyâ7Ý”¼øGW]¨Ckwùù¦/ªŠ—Ûuæ»z·|·6Lz÷ïÁ4}Õ3\œ(7×?n¿[½Û®~^ ¢ï3•/÷c§8®>ýè;%l~çø^˜gΙXNk€kçqõו?·SùKvÆ©§Â˜ílP·±®×›ÐÜ_Ö*vu=š~Äî+$¦l5îž;Ð9vÅt¤h~”z0¼êáiž¼õ& "÷áxª«¢&N9SÊçM‡€Øëzf¨êzDq ˆöëÐwÛN8Žú 4ôÀâMPÅb•Þµh ·¦ä©[¡ì4rûñtB)‘ï‚hÐ4±ßÒ™3^hðQmûöø i(ðlL+á"2(ÅA³%Å€¼–Iä^«Ã'wˆÎó’qž¯@l‘fUÁðú=¸÷âð0ñbŠ öt;0ÏuP`,¤–çV}QdÅÁÙ=I”þíÃÊùÄirÏ: G ÈóHÿM e`Eê%*â«>¶3ÄpÅN÷Á“(ð@Ôvÿ² ¸ÿ‚ |öd$Ž Ìú»5(ѵd±èÎ0î'ˆ·›â 8Z—´¢Š¶*íþeŠaRys§%lîû‡í#^GYºoŠÂô=gÖ¤}ûÍßyAÑw)Hª„÷Ôq`W%*…;âZã%w`^ ÖÇ"ˆôýØd:¿=°¸Î £Ey!Ò:C8˜Î4 .Eœ|x¨­p‘PѤ2$BìÌ©3½i$]€&Rebˆ±Y-Ä]ö,š«ü#Ábrì—ÕfYÝb¨ •‡î~ìk,k*nÅýbhQw\ÒµÈà ”p8ÀÄ‚Ô$xÇ9Û†Åcðtíøt`20.f8#»C—åv(êŠúÀRÁ¢'—3XÜeçPÞ† ^\™Ô3œ§ŸOÕ þ"yØQXÒbþ:à…?%Ë´m F¯¦2Œ±‡%àR•øÀW[˜ü"`Kˆ¥á‹Ѧ…“ßýnbâ«–gÛ7f >«AvjÝÂÛ=Anì†æå.ønL\z=I©>šÁVÿ Ä)‘Ÿ¦ìyI¹ìçîÎð;Í[¶Š)\^3÷mÕ’! cÆwJÎ:=Ö(ùA( Ï$x­/Ònƽ1VMŽ™%k,ÔùדrýX«Zs›ƒ$|j=‘Ê¡¥q) sÖ†hîõxl˜&ÍV•p°ÂÎëµÅ/†—Œ¢Ö§³Ö¥Råeʶ.¨%àл»{¾úóN—d07å–} Õ$ðT_×jq­ÊÔUBðYID&³@¬b2E…9A}vm¡ÆÍ‚‹©”r@©š’Ý# A|jâ;–z¬Þ“~PùT·^¿&jîÅI;PEñßýÏ?.£"9óütº‘´º—V…kKðùæñþá—[½«e×\æ3|Ä ì4<¾‡–,%––¼HøÑµg޲PùTëÉT)S¢é´u¥ëÿ_‰ä^‚í(‰®a+ $Mgq‡v3•¤`tá“3’x$*.#¾õ|ùx¼~×ôcg¹F¡»â’œ¨K|­KmôOF€®ö"¸…áè09gO ‚9äêòz¦/iW×mAÍÈ›_$F÷C # ùÏÓÐýmú#;½‡Yãšû÷K‘=tÏ ªÏð…¯N…?œJ|/PѵP /VTµùoü ¢¶€âí«á«¯·éÓÉØ`¤rB ›óbh[ïá}ÕöãfŽ |;ýRµc¿äXœ®½/)t¿§9ØVŠÉH ñó独§ÁË"æ EÁ1¢†¾1-z5¡ÐÜà±o! Î3MJÙ8·c]ΑøB4Ê•åx<>[œª£îäEw–å¹¼zû°ýËÃ÷_g7Uãã›ï¿ö'æqB¡çá×ë€ápc'Æ(’mļÂÿ U_[‹%^66g¦ü¶ÅáRÈÙ}wwüyt¯›áÏ`óòþY´ƒöI®«‰çI h;›þƒ¸I÷7N*¨mãêhÜ™ëFµøOeà^ ƒôñO¥ý'6ñTŠ*_þ¡Ìr/´Ö}0éôôo”g·ëdi¨Ò2«?•¯b¡¤w~|äv°U—ÁvúÇhþ7­¿iiÀy†HÅ?›[óÿê—ÂÖ endstream endobj 1058 0 obj << /Length 1277 /Filter /FlateDecode >> stream xÚ¥WÛrÛ6}×Wpø‘ x©¤žI;OãqÇJûช-º©‚dm5“ïâ&^LfÒé ¹¸ìâìbq°Àƽ÷“·ëÉÉ…ã> <Ï6Ö‰Al-=ßðy1Ö±q;õf kéOÏ «4¿—­0¥ð;K›ÞªÐ£òÿ¦ŒÒTŠë™§áfFð4£²ëü©¢y™0ö¬)qfwëËÉùzòׄDl$‚ìÑnr{‡/ ŒìÀ7ÅÔa;0•pÅ̸™ü:Ám?]×X¢`‰‰ðÓ'ÈõÃs—Ȳ]é'£UÍ‹‡ñtA^q(ÆÂò!–±ã9rÞ71‚ÀYì¬Á‘ûœÆR=+xD¸ÄŠÇò3v±eKkjÕ²b©ž¼ë«pGù|óú—7Wçë›/onÎ>|0Ÿi;Z;^­þ¦QU°×ÒÒ©4™6eÏMs|õqý‹‚íFõ`ýOyZ ê·ãv":´ô!ȶSûIôÈ…•ZÝ1MÒœÊ%ª­rpt.Å8¬Âê°×M‘¥\Øoe…™lÕ€¬”bR°ž5ûè@½ËKÃÆÂî@ ¼Õ-ýYØ–‹ˆß µÚ‘[|'øYþÌë,ÌieEW«žÊ»z+ÊÌ¡-ÕJV_‰Ÿµê`nƒÚîgàB ˜˜Þ–zcÄô>¤ÄAÖ(ž>ÏðŒ¡“ûhþÜ¡ÓûhîO¢Ý {Ðh¢ïÅö‰3®Î:ñ(/+•ZÛ‰)®…<üCi%W¹í"þj~¤,ªÙÁœ›¿Ñ¼.á²j ÿ!ãÍËzŸòD™›7!g7S¦§³D~ÔßÉ× ×ÿ¾Ëé®8<æu‘Ea^PœÕûŠ#¯³ e©Ëpß1È7pºÓh˵Å‚]dÁÑFo~Êcáÿ$`˜pÍhYÖŒšÚeBµt·«aðX¶¾piYðw|ÛXÈÄ"Ä‚†í‰ÆÒá âCÃÏq–ccÞj®íØ€ÑñíH²"TÛËÍ ( 2þJ8,d;Ѹ\äZ‰Æe£ÀIŽÀmî½>D ¡‡®Ãç'Šy÷{ªÉ7T4M¥ ®4źá&Ót^ôˆ8iH:Í(’âUQé_Çá¨Q—” ðƒÆ©–:•Ã,ëi«b…‹úRx›ªz`ÝàçÕœ J! ˆ!;(oË£ÝÃûÄ”½=—¢ŠÆhˆ6äÂ|À‚½"òÈ9Ãw¤ê†8·àª¤Ø_@4§a‹1NWªÚ˜sÚš«[c®¨z®Hr®ª ¹v+¦"XëMÖðÝ@®–é?ô‹ øCâñã]ÌÑIéUGùuSS©—/8‚ß>tOª¤knS±èÃÝx9rÒÚïÕJ\µÅ‚â*F_4HCÖ‘e'÷M(£yÔËu5z&–‘æ Ûñ:Q,6Š«ÔpsÅÁü*͈X~w¾ÎÅiÛ=]œp?Ð#õ´‰X9'cä÷Œ‘ž1ͤ2ãÈXMù=“Vߤ¤ÀgCŽ*Â*Ú6YÇOÉùSD÷> stream xÚX[oÛ6~÷¯üÐŃ͒º+éliÚµë ¬qÚ‡4(h‰r„Ê¢&QMŒ¡ÿ}¤Hꮡݓ$êðœó; ƒ׋ßv‹ç¯lÇðAຖ±‹ dYÀs}à àÈØEÆÝ™»Ú˜žvUÌ’ì ¿pÉ—EÒ®2ªÿÊç¯e˜$òu·òáÞ¯ô ×ñ€i9çóç« ¡Pë÷—·çç!M«c&×BZ¥‘|MÔR^$Y˜äŒød}”¯X>¶ô¦ ®:\ÈSHrƯN®Û&¶k÷ÅÓB>KzT¬){ j1NX©x…¦<â“ZËÊŠ€.o­dÇ÷Hº/äs©·¬4¸GíÕÕFP”üZ{ á%€¶fý-B%®ÃÁv1ÓXaÍI˜Ä Q&ΰ†¾¬wr/Y¾ÓC4€@ž’’õ!p£éM˜‰ÏOȲ³å…TÉCÀ³±A<Ì@²þ¦ Ø]ÞA&ßþêÍîæ–%éù9®ýŒ‹Ÿ>ç¬x±»TòKôkiH­ «Œio¤¤U*=S‚¿”N‡H­Dãq\$¥Úô(ß®6µV¥òÆÖWL…g5†®ö8Ã)=ŒÜˆÓ´œˆ«F¡ˆ¤„‘»{í‚’¬kK0eÜY›¦4;\*ùË„‡·Ý'èÀŒ¨\w<óÊ{¾Œ.&Œ6ËÐÑN"hâ[ãXŽLªÏ²±sË>Ôï::µ³€jø¼»“æÌÓâX³ölÙæípˆx$:@"}nV‘ˆ‹ú6AßLÞ* ˆ€ƒ‚¹Uз&.0=á‚öÖÄ€¥½õšdÂ\DÝ’ÐLß‚<{ÔýÇŸ\Ãú!ù4¡é¨ï:ç(_ñÊ”÷õ=ÌÕ'M1S‰¯½øu’ï/éÊ‚gO'n$.†ðÿ"zÅò endstream endobj 1066 0 obj << /Length 1630 /Filter /FlateDecode >> stream xÚµioÛ6ô»…/µW›©“i ÍÑH‹­Š! 0Zbe²äJrRØß#uF=‘HI?>¾‹ï”m][¶õròb9Ù?s=+$Ü÷kyeQÇ!Z>÷ˆÏ©µŒ­‹i0[° œRTIv¿DãæC‘´Ð*7§¸¼H2QÌÔžî°œ…öT¬fI%‚N?W2+“<<‡¹tJýÙåòÍät9ù4¡ §mÑŽ\”pÛ³¢õäâÒ¶b8|cÙÄá¡u¯Q×–ã*USëýä·‰ÝUÖó¬€ðÀ¦ZY‘–ï„9*»¿?[ø¶=½eö¤Â}”ÅvSÉV77WI*‰,(X‘q$RVñÁA”oÍýÃC\7gIU.Ž6¯Nþøh{6üÑ>‚¾'³8}öEªw2ªòâ°¬ 0ú^[grgŠ$W4›Ëœ¸¾‹w¯òqînqùûYjâúôém+-²»¸½ì@‰y}¾ƒóž0]Mj#?I.™¼¯-žn×îó«.ó»yåq½GYŠUçU” /«îÎÁÙXÃç­X+ˆ:¼OâêÆì·<ÁýE¾©ÀGEŠ?¸Ä2JÖ"-ç¥Î¶ë•,.Gž¢–£¾Œ¿³æYºÃ]!Sy'2ãCÍ^¥¹ÃMžÔg±¨ŒÃ]”Q’t…*Ç,æÖÖZ‰8>Öxêý–héùÞ¹~è$Ú›S{¾g ”±uïKÎÖÒ¢-1u‹ÜCÖ³dsúM_Ñ7oÝ*Ž"]IMáD ßoòÓ N“–†[b11fiÚØäï:9ÉõMEFŒò0'(Ÿê ä0#ð/úÀ%AȬ¸Öã«cáû„»¼¯Q!«m‘5a®ñ('λ†úW§]›0OeLµ¼TåÁ·(#œRO¥LPÉá$ ܦ2P¨vJ«Kë–fJÃÒÀšÒêÊÀTeð=U, ¬[´\&ïŸ1»S°@ ×Tª¥r §¥îèÂã0ä!Þ}†•G!AüÈâjH"ªA%¢¯óÂ@¢|½ €ô+‰m)<±è]UÚã„8 š¬¡@ *d`<óìé¼q@(kžyíÝŽçMïfÌ›êt¿ËäŸþRiQ­RD7¸û+’iú÷*¨µ!V5º ÈWNඇ™Tî«ÑrÃk»Ù(¾.D[G]ÍzÇp¤“&nM¶A&#Ê5mƒæ­6±,4Ë*I“Ê4 J;µvåh»Œún’mT2æõ‘.žçc]–ÑlX [9Ç ®N!œè7ý¯uâ“´kÒ69ªXöEU!k[´%êgø¿ÎJÙ¬>¹>ÿÇP®×ôËjLW¹ª‰º†E*ÜcóÐ<ÂIÆE ~Pÿ±g®¹üŒ N`©õ£ý¨~õúýòÝïŒv ÞòîüüôíÒ¨#ô0Òs¨›q»<Û^²÷=`ÑD–K×4ÏÍ¥§ÝWîÚIZÅãC„‚râAûßkîãæ$C<$¶?]ê°ïLÖ/^¿}®Ì©Ç§vŒíÇ—ÞÌÓ¶ØZdÉf›6”ïŒ÷ê©'¼ûè×jSâQþ#_oêOT>tj’j?Q…*¨±êK™ÉBè4:“gµ p˜â?œ×!H)®ÌWDHp`{”×)™™ÎPyÜ1tC¬2N¦Ét¨'¹ÿݵþ¾%³¡úÿ°á endstream endobj 1070 0 obj << /Length 945 /Filter /FlateDecode >> stream xÚ­VmoÛ6þî_Ax_ìµRH½ËÍØ®Ó6˜3,q; iÈåªI—¢—dÃþûø"Å6e¹ °Àˆ¤ã=Ïs¼#ŽÁ @ð®7YôÎ.<Dv.Xä¹®bßb¸„CË £Á”á„d¥¿’é—ßY±³rZ¯êǤ Zž´a1Œà Y…¥ÄÚ4{ä˜T%ÂÏu<4@áðnqÙ›-zßzHÄ Ú‹ Ù1ôAºîÝÞA‰ÅKm7ŽÀƒr]×®HKpÓû­÷7ëû ´ã¢ƒÍú¡í¸¾ÞìÙ™T±í° öôÂÿÇŸâ¶jòȆ¡æþ[ÙQl#'–Ë^PGSñl4J¶œÞo8;¿ø°¸ùyh6¯>CBñ½Qx(⥠ËÙSc–Œ^K*:ôO)©¸fW²gª®Ò%¾JÖX*öŽ+.,v^ðþü^ä*@›á s Ò4?è¹inx_ËS$Ù‘^ß±ZM¨{{øçˆ^šðôË3N§"¸j4’B£Ñ4!ü× &J +'N$޼s@Ê0ß2¢Y­& }?3 ±ö|`¶âT¯Î4¼¤M.}P•s[©óš¢ïÿ%Û>ç}1žü2»Ÿ|¸_ÿÑ™wUº?qÊ);×Dõ‰IiÙ0…¯ûýnñnüeëNüÐÿH ~¯Òæ6ÇPÅy ï4î'ýè“íz‰YÕ?&Ú`©ð·-&)6PÞ!Ê1Púð=!×€,‹•UŽW- ¡åÀ,¥ëM‰-F)?­éÐüÔP ̼¤I™0«&èmu½[uˆÆ]Q*w³¼ì Mù;-ÿ·'ùÝ–ÿ§“ü^Ë~’ßoùOOò›©EóÎtÊãßJç:=¢»ò cæt¹-—W3«Ë„sÌ |ZÇÌíZè`Ö†bfŠOjø/q6“»)Rª_—”Ïsgÿ©û‡ì?uF…Ú»wXÀU¾ú8ŸÌ®­Îþ™S¶»…ªâ/|_“}=Ø |s`=ß] õ«W_ÍÛÊß¿­¬ýi¡Öþ¡È3œküûñ§ÙýÍâZüf㹂¸‘íøa»[S±OñÃɺž-n8«ïº}H#‚Ë —Oäí%”$+r5õ5ÓÚÑéAdû(~Éô׌¸í„Rn7õE±í6a¿Ã31ÖÔ#­œEõ´ÃÁ¶žSçr’•/é§¿¶„#èP¬¿ò¡´vžN?CèðJ-åR= ¿¥CŸVj>ÆÄÜþ¿ÆÇöJ endstream endobj 1074 0 obj << /Length 1237 /Filter /FlateDecode >> stream xÚÅXKoÛ8¾ûWèh¯c†¤ÞI¶‡¤I‘E»ˆ‘Å" Yf¥Ž”JÊkýï;G6)Ó±Û,°Cäü8ï“:3‡:z‡ãÞî‰ç;‰ƒÀuÆ×s]‘Ä> b挧ÎE?ŒxõJ‘ÔY>S³$ŸªÁŸe¶¤Ö®ªÏa–'å`ÄhÿEƃˆö“É(s¡HÇϵȫ¬ÈaŸË=ÖgÑàrü±w<î}ï1à“:Lã‹‘˜úNz×»¸¤Î?:”¸qä<5[ï׃­Lœ;g½?zTÖ÷Ä!e°!'”ûNà‡„»¾öþ¬ŽJûê›?Ü™„Û!Û—,ì(&^à©“°o"ÊêâöRmû]}ªºõ|¥>•Цr ?& hÄbÂx¤à‘í ÌÃcEL‹¼ª7û[\áøóÉÉÙñXârºDíœÝÝU›ŸÀ`B ‹{Q‚MTÍëä®d¹úN“:Q£÷<&ó¤,“—ƒñ»¤ˆ´.J˜«)R¥ƒ¬*©eÏh`ŠþN;Ý Æ £zÀÖ¨ ßš•˜ø€­‘F bEÔùÆkQ(µ€¢ê+žE™fî¨opp4¢e|œ$0LÓ Ö¨“,£·—݈ô[»vw?ÏjrºûY ® t®IQß i^$uGèiñ0™ Pýr/à2‹u«zº··Pç¼Èg¨ÑJ|y*¤w¦whvQÇ•Q,‡Ï›•5þ*ÄZnº¸çÓ5 yÆtæB_r›îñ·FŒÑ}ƒŠqZO. ‡·ò ×ÿ(ÿÒâ¯Õ²x¡‚«Ù2ºÌâ… #®{a' 0dÙĨâ3×TâÛn²Ÿ½·#­2´~;£”xÜý¡m²ÈºâñíÀ[Ná ¸¹MMoc·«-à nç4دå™ù„Å®5õÍD.³.†÷I6)ò$M³E±™4ùdÕSׯBfÁ÷ ê^!Ñu£Á[ ­Âµûļ^2¢©*  Ã5šr M!™VcJ¢ÀpáCÁʨ5âpuMQF¨˜KkÖ2=éÕ«pÅR³½NͶ]p)…ÔäRqkó±~ÊÎP“c«y–ŠŽ8„@ä…[¹ìŽ:·Ó4# ïå°ÑÍócsÕy€>n– ,bZÖoÞC7ñzY…Àz™´%ZžgfCæ²×ËZËŸ*«ÈÓ}ñ¶}I[=üjQô6EÏ€µÔÄžZ”f†-‚2-‹¢®¶aÒ Ùt'&âõ«ëšÍ€Woj26Ýb\ö¸ªb[«œjͣч­¶ÅmºF쯯[ÿÏêbѼÞè}9=üˈôOW_Nw]J¬,þÑ–…ˆþR!ÚØ–ý·…h] ê¤#™¸6Ô[`)Ƕ´Dm£LEob«q‡&søãm“Íá)ÍŽª YnÀŒxÿd˜1ýØŽäHKÝp—ÄÌô‚­„S(ѶCLæí¿à}9HsÃÙ]2[ý߬o´DÔ³ÁW†Û/ÖF4Çñϼ0´Ï(á¡dcùŒÅÄm%ø€m>›È÷õ"C~À·OòµDS_N¹”pú{,V³ë‡ì‚›Ž¾RÊeΑ³‰\Âç–÷ÅÀ5¼Ìš7‘wÅÿ#²B endstream endobj 1079 0 obj << /Length 1052 /Filter /FlateDecode >> stream xÚÅW[oÛ6~÷¯üd/CJ¢.n`Mãbºaˆš=¸A!Kt"C¦‰ŽíûïãMÑer“4öDòüøÃÃsx qk@ãýèm4:»Ø@èyŽ­ ä8À÷à 1ðBdD©±˜øSËöƒÉEIb–Ñ[5Šiª:–Y#e…žUÍÛŒÆåÔBprP‚hÀI¼œrIN”èrÏ­²‚òuŽí¢ §7чÑe4º!ΨŠb#ÙŒ7ÐHùä' Œ\º1—/Ebcn\þÁ¶²>}ˆ¤² aÇð°l+e¿;RV ’³›©åA8ùY5\þb¸7×'ˆwÐA’[!p=·µ÷š$¬(j`µ×B!@v ôéE½^¬o@Iªì/"xü>Ÿ_]Fÿ"‚û[†(T,ͪGÝnèž5ië\­5§”v«Ãè¹’Ë5—ù:xÿ"#uÇ™¯Mÿµ>Ü êMrȉø­’NBãÇË:ê–Ý‘'²{Ü'æ‹GòÑ*/bfŽ%Í+r?÷8¦%ã' s ÕIÿ,ü÷Qf¤‘2öìjx|Ï–/Ê CÏ1O\ú8MŠÍלì-ù|ÆÇóŽû_ ´G=V ƒ‚`¾¤©Ë,ؾ Û”YAœÚ.ï %%wY]V‰zHUL!œlu­ôQüÇD!ÕÚÐÆZâÏ žñÚIŽVS›¿q½øââ3„6«Ôh)¦t9ö®˜:p²?ÜÊоúÿ#(ô² endstream endobj 1084 0 obj << /Length 1450 /Filter /FlateDecode >> stream xÚ¥WKsÛ6¾ëWp|©ÔJ0À—D'íLêÚN3“t+éÁÉ&!‰)EÈ(Eé/ ‰¤h;™žðZ,v¿ý°Àboéaïfðë|p~FÞ %qxó…G‚Mã™'ŠâÍsïn8MüélxÉ6# ÷Eµ´ieÛ«¯’V¢`0¼§rG) ®‹’ŠÑ„$8ކ>}ž¿\Í¢,ÀiœHP‚#/[î>c/W‹o<Œ‚dæíŒèÚ B%JôÆÒ»ü9ÀM7¢È›¢dЉq#òÑ,™zq4E~Y7„Ì/.2VËÑ$Æxøò¥6Æ‹}Dâ©7!ê¨Ð þhB4ù^cº¢»yz_ÒÃvÓ­´ÊËf×$ŽQ&JŸÕOìÎós+›Ó’JØÏ*×YØV®Ü/–E•–v”±²^Wí¸­×Y4ùÅj¾4²Ÿp„Õ®wéšÞùŸÕˆ¼èÛìŒJó:¶QJÁ3*Ûr¶Îé”Kóq!)?ˆØN€l{Ël»£?”àÑ*Ý‚§$„ÅB®œ‰ ã°máñÜpãñt<³Ãû2­þ~˜¢”Ë÷Jƒ†%GÏâQ±ÝØöŠª™46( ¶ã… jÐ5X*èCM«Œ~üˆDñÕSÚ+ð3lÔ3Ù|Uˆ&QÛ¾]á€Ü”iç©LÛFmÆ ¶.× Ñò„m)×~bª|^?ùìÀ¶³ ÛQ~KÎŒWœ§{Ñö´Ðo„ºWë"cëMI¿N8cRôê^dzmÛQüÜÝ žæ³¡c›Î>Äæ„HÛzqak*W,2ÖáŒP×ð‰hf,ÁCDÒ²¤p% îUêbÞÈ@ìþ ͤËþrç­X]æ*Ÿ\9rôý›rŠ»:þ“w“ˆâ—d|ïÐå Û&»­su•Iój8·Û@8&¿þ탃ڡ{Éi% µµ7{œ¢§T‰>¬…GÓ ý–ó]ê¢Äi*OÂ$©8ÒèòrQHq’#œÛiYȽ!µ±(A‘²¼IxP à™¶Ðêú ÒÇÀ!]ææ[*€-Š‘`e-è¢v9¤æ&èIp6úBdu™òãøô½Ò’aܲ¼¯3ð¦)ýœ;«T`ê쀳dG˜;×ÌüÚ²®aÓ*oˆ\²õZqæ ò˜­ Ùýú/M×`Ó÷=Á™5²çö|´ñíhÒÖf¡6NÙ*­–´ƒ”¤_åéûök*Dº¤ÆîàA äΉN·« _jõfÛM¢ÏëÞ¬¤aDö-רâq‹(—¼}{õn¾º…ÞÙ£ÀwâÕ Å7Å !ä<+ª.9uÙïÅó?Шÿýß(§²æn순 ¢Ö›áþ×üÏ1ò#ýµÖÍ®bø(!$ÒkåSˆ&á¡8 XÇ@WÄU>T~»:ð›Õïªs&üåϯ}ܨGÔaþ …Pˆè3 gx6¤zèô ;·àlm{æ‹­;Ÿ0ö¥8öK˜×÷$ÀSe*dG=Y€àväGC;9ÜÛ)ußFDñµX®äBÍøN—D)Ï! Ôÿ-h>.ê]2Ï›#‚ªo"ÀYgUµ¯Ê{Õ*6û‘zy˜ìôÆ1gZ‰{š¥*{bº|âK¨£Þß ¼»‰úêÝ›¸šµ@ñà¡.¸~ô¨u ø©5\ÿ>¿µöaû-ÝfŒ+ ¦¯¼–vó©[®móp=i[ †$î(ÕsÑ}Veгo€AË< ç@9_ét¢.Óßpƒà¶Èa"%µÊÇë>…ÆH­eUd+'°)((‡Ìx@±·r%˜ ˆ$ßS¹ºÂ;FþT§Òcá=KPànã ­(·¿ ]J»úz>JÔNíàmÊmGìtëc?‚™éŽ.HbG‹‘1Ñ¥¼£ˆ-ØõÒÞöcæJí—úZiÕuÿ?Pz>… endstream endobj 969 0 obj << /Type /ObjStm /N 100 /First 943 /Length 2212 /Filter /FlateDecode >> stream xÚÕZßo7~÷_ÁÇæ…KÎpÈaaç&õ]+$9àÚ Ь$Bm)”sòß÷Zr-[ÎéÇÆnìåîÉápæ›o¸Jì‚«Y]—Š«¸‘ê"‹«¥8J„kp¬×è¤Ø=¹ÙU…l09v1ÔrT :g<ÉhØkU Už$%Û âb hhtQ2•›GÑ ÆÀ•±¢—¢!ÌGµ&G…0žRÐSÅqE#;Ž ¨ÎÌÖˆh`0Á5‘É4 u ÖŠ^¥Œwjbˆ"¦¨Õ¥(bÒìajÜ$æjOZÚÞáYbXÒ –“’Ù"—2‡#´ð¶P{›Ñj:D´TL.¢‡Í‹Šm†½ã¢U$艖:ɹõlA°ñÏŠ*æÀVH-m”ärÄ?¼ .S2=)ºÌm‡ˆ\–ÐZìræö=J¶yaÜ\Cë›] MØhå£Ì®Ù P ËiRÅÆ4Ѷ®¤d§äаÉᶈÚ\ð©’¥½­®üËxRª½.šÌN sªÚZa˜bž…gâ4 Ý•’i„P®öVÈijkâT’Í…½ÐÜ4‘ŒV/£o‘„9° U1+æ€V5+fŒW³’Í÷m¡ÑÕ«YNÅôÌhQ°Y̓¯Vmr)šb§b»1Ì\¥í¼¼f2-`r³¶a`ó·ÈHmóÎæOj~ß¼Â#„æ*zµƒ0pkH9:>>êž¹×Kî…ëþûëoˆ0ö%7÷õ n2ùt~þæè‡6 SÃûYaÇEÔ«äÝŒ¸¥ MåñtyñçOןճ#ôΈlIÙ×Yÿ©ÑÒ{shñH9–‚}QÚÕ yJ¹‰<Ô§ñ@“m€g knÀË$í‹5Zï`–í°¦ÞÅš´ÄYbÌsê s–×ÊËûåµ.ûéêºêŸ¿‚M;ï+Iò6àÊÈ— ri+çä•òA1¾³.àZ,&xFBN€Kã9_c~ À!ƒ;ðšàà.°ô°§¯žß‰×a÷â§“g¿üä/ǓÇ›bü[˜Á1× yõSH¾˜‚}bäÚü0Áõ¿¼¼ôËÁï#?½ïÁª!ñ@Ìê9R,>>¶RQ+‚6]Û*V€´Ðß&7Fè]¬Ž\æÆ¨ÅS-·ÜHÊÀLm‰Q‘q¨žˆ@\ëƒ(öŠ:(‚g¨9*ÀÔt‰ ëëRÓ¨¼+je9èpDšJ”ã>¬Au;Öp[–‘Ö2jg8pد _B\}A­yX!´FNÖª"¸JMzSAéH·©J;›Ø“«Ô¼äeyÕåµöÊ9ªQ;62?@†>Û 2ñCÇ <ìÃW±5¤PÆòâ&{`„da‘—ŽRš»J*  ôÐ@PŽv`KÀDYÌŽ«=Þ#vÛyܶÁ{[ø* )HO[Js4æð¤Éjòjt %Úrì¸ðaÐpÖ a4Ð hwBƒµ•V£õ|C,w—eO°k'²¦N;]6hÕèð*ûXì|Y½ZHÅêY(!ÁP߸°aEiG€[cØvÞ]Ä[•™¢xÖø—g‹–&Ö#"—? ƒ PL;] Æç‹é÷áiõ«è¡N(V8ÿyÜC¨iCßJ˦1¦=ŸžÄ@õn˜RÙ?Ly”iÙ UàÒ*pi¸´¦kaY5ú=8‰¡ŠÚÁ %~sG€Ñ×NN.gãÅh|{õ™¦“GVrüÅ>%™ ÎSò5òF=óáxÜ£ 0…ª}ŽJÞ¾’{±¯l¨—7Nÿv<̾ôkj_ç’²€5™>Ø ‹-uN?ö©H„ Ñ/Œ¶ÂÐDìD«l>*‡8ÍúÔU¨Ú÷ËäAõRàv\ŸApïal³Ñà sÖç^ToŒIŒNgÃ?ì ˜¬€0q*÷jÑ{T`ÑÂNà’öaœÌÕ ‰Ó¿WÅàíyŸj¤Š=‡gV¶OÍ(Êí.ÔºO€²£ÉÙèlþe²|¾C¤Iw Ò´¡²M/¶”N©ÇîLv×`nŸYi•t ’÷È ßM:)îM}õ•S÷_Ñ2Ÿ¶#ó1H¸»¤²ƒ×¬ /‹ šýâ`KiûPhw ²æ5}ðIw )´›!o’´bû=A½JWŸ?ì'Ví&ûÍFŸ?vW†19«Y¤•,”Ù+ƒVØ÷¿J{ÕÿÂÅÔ´|c4‘ ±'Äž”G‡“¼á¤0‡ý—”ãã/)oXR:`I²B® /3%˜g©e[iãËšúCÈ['J7Κö6q L¬˜¸>º×” é l›–¿9º¹¤Â¿¤ w),I}Iºa—tÇ]º™´µß\ÍFè퇯Õ#æP_! lU}޲WvTÞ|Ö…ï¡gùaû½ endstream endobj 1089 0 obj << /Length 1351 /Filter /FlateDecode >> stream xÚÅWKÛ6¾ûW{¤"æ’zZ[ôצ´šuE²DoÔÊ’#ÑÙl‹þ÷Îp†’íuš9tË19ïùf(JïÆ“ÞóÙãåìü2N¼…ÈÓ4ò–kOE‘ÈÒ…—æ‰Hså-+ﵿæa¶ðŸtÛ@%þ]ÝÞÐFÑÒúì“ÑíPwüs¥Í­Öüã²nôÌU.ÓÄUðvùböl9û0SàôÔžE%r™xåföú­ô*8|áIå ïÖ²n¼(V…‚w=ûe&÷Ãå©0’L„QBal{ð#ñëMD$ý»`KåÿøôW$B¿[ÓFAË›0Œ†n×—úŒÎ/¯–×|$eØh¢ëÖttÎr­BéßÒs‚YÌ3û×»Õ ?ìtkˆ[à‰Ëß@{%&¥Wó1Î$'á8Ên[ëŠs¶îˆn‹&ªëi=PÎL’þn³ÒÌR ´ÖM³L§…µë¦CßoƒTBΗL¤aL¾¼ì Û4ï ã(ÞêͶaº,šÆßÍ­ç—W&òL*¬è!óŒôcÎ/.ðÿ™ÈRFR)ýÁTà0€ñí¬i˜`´0;‚*ÎD²`ůtQaº!:ë/ïaO÷v7öט;L$ž ó–°Ù—¹W?­Û#¦ a#Îý¡s˜4kamtOâ£Í®~×¥9 †¾×ök+jË0õ6ü$Û ?]ˆ(Z€´•ª[vé~žB)Ò$œY§­)”–†qÁ6p£b†zàJU´¦F4AÔa”Rñì8i¸Wô¬ ×ewÓÖ¢"Æ<_€ùaà¯{¨Ö„-†1iA¢Á#µí­¯ëÊÁÚðɤ¡kn¢a«Ë“SÒo˜¬zÎ Z5ÇÛ“q™‹Òœ2‡]PKD™äœáÑAŸA²¢<œäܰAºÛ¨ô3ë-Ï5cpè¢f×ÈõÍ{Ã^t´VõðL¢TeþuÝ–ìÉh˺te­uþc•ÖvxF<˜bƒè9’Œ^Ü¢Ì!µÒ'HùŠ’“# Ñ0жžd®@EJNvƒs¦ÕºXOÇ’UuIJ‘(ÞÀø±PunxÕJÔ‘ Fo×q–Õð˜ÿŠ!—º&ã¡êï m8êÜCÞ\Ä)âüÜnæ"Ic ®G†ÛwßüGÆšBf£ÅÑ7¢l6PnmEDÔ3AÅ·c¹ï6Gru»Ý™ihóiǺhiõ-4GÞÿ/%Ð܉û”øËž¨\¨ÇL'Xyï]Q½Å=…Œ}û’®'y Ä#Öµ9ÃR¿Xü¯ªxŒºVŸÕµï׈1l€Ý€’ò³ÌÄCü?Ð"O2özÓ}´nìy%Êwà¯1™Ç!(qXzªm»P8Mu …zÍ«ƒWƒÝÏèÓŸjœ:'œqÚ»-ΖÄY¡1ƒ_„ÔÄ@uÃX*x:mc«À—”½-b¿+ ~J8ãŸù¢±3÷ä&‰vÏ é>Xœmš_Hm‹ÞÔå®)ذ)pôŸp{Š–‹xTχc¾ö8!ôô͉?W¼ÝÚïN!ĉ”³=J¦t‹Qî…ž¾É Äè¡ñwâlùèñOÏÞ=¾zùèÕog‡Íc‘-Âã1»¾=h¢¹ŠEg‡|ÓÅ!Âï \¦ëãäƒII%•̓ɽ÷RfóôPZä"r¥x®[ÝO÷rX9¼ø"ü¹à«Q)ZC&¼“]ÈäBåôk÷yòïvwõî¿]žvöëè:nxèßûÉ€$üSBÅ. endstream endobj 1094 0 obj << /Length 1774 /Filter /FlateDecode >> stream xÚµXmoÛ6þž_!äÃ*¶BI–d¹]¬Iºt[¶5Š¡-:Z¦c!²äê%n°?¿;ÞI–b9hŠí‹y$÷òÜ i ËñŒCàðúH ã³£“‹±gL¬Ð÷]c¶4l×µbø¡gù¡mÌÆ{3Œœ`b^«DEeœÞÐt6˜Sζ0EKg²”@ù~˜Ž3ø8{st>;ú|dƒ6aØ-é¶ ψÖGï? c›oÀ67œ[ͺ6Ü1°Úx01®þ8Èpß°+´m¯c¹XŽë5–ÛBˆŽéšî{hz@–;l9Ú[Csráˆ.Â9kÌ€ÌVqç\a.«äf)Íj¥E™#&²TÌS®ÙFñVs"[ÒøA')a{d{&Ù «’€©£ S=¹'ºh9Ó<Àùm£X–Ì*‹å=zˆ®Ø¿Ç¡Ž 0£,]ÄlLeº bË&ÕqÌr`›+µæIÆü4¤ mÛÒDû¤Ð !-d9¸v7põå²g®%¸§å9³C(’XмqvêÆ×ð2w^/©"âœÃé6ô>¹§º¡iè?P3»5jêgè¨z…ãc¯pÆ–#ØÑ¢e¬qùеL+™XušÐá¾§O_¶Ôk‚ДëM s•PÑ| µ?º ïCêT»–Dk=Ý"—ìKe‰’©†@ñ¡×Nº‰¹[L­´ÉÍ,¹k®‹,åüÔ-F®cÈ¥,©Ög°å‘L \³Ô~e4\ySÐDçr«c*ê_.kkv\3’TK.÷.×¼¸œ]O§;L´ÀœÙeJÿîmZêYÛ¢G4lWq´bRª/×\É¢¯¾×€2µ×1ã%Žu‹À…ô"N˜Ö}w³ªl­æLðh+rÝ4¸±Wst{ƒáÙÀƒËBÉÅ3b'û¡yzÂëoϬ`¡t¹Ê*) V™õ•MIç*EQ#ÇÑÃ¥…ÕMI× ´nJx3[Ûȇ¬5º@vMÂX@ëIÑ6âÝJ¥Ä¥Û9²íl¥Ó+&ªBgP¯×jSUaOŽ"¨NîìA’w/« _V=ÙþAxâ4)ø|¡ÔA…ª09~ ð4%Vß‘óüKÉ7Î(QºÂ´ ÇœîÀÇ Íît£]W/+ „]¿àæ6]±¤†Fï·Ù¶@»kiÈZcŸqúG¯Ù¡e;!m°¯¾–XP™k?¦„GÇøŠ*—qbAÕÆ>ï‘@ —ˆ–3TÎãæ¤jÛȉ¾ÆžžwšŸZÑ'X#Ô9fCçTô¹“Rˆ:ˆ²§4ns]z“¯ÙGă¼ïSQ.¦SY•Ù§M™¿ÀV÷’ø7—é’½jdà6.P†ïPë ÐÞÿþËéÕùìúÓéõ«ËËãÚ—&ê¡åÚ6俍µÁf¡¦]Và­¯>ô}KXk9nìeÓ­UîcŠït?t:fáJm¢ÀÁ#ö×rªí§³?¿ãÌáÒ?ÔùŒ:F/V%^”À|Bn«æÒÕ²Îί®/gÑûæZâø`ªÍäÒM‰ÏT¬ö%çÑ•/HwÚ[Cý5×”&=YØs~íý±Æå>9êïoºû” çª¬rŽxÞyfõ~³…myvø”Ïbõ<ßrŒõî;Ø$´ÜºT^«Tå²ù#_¿gƒPг&¿ÊœÛ¦ÑŽÇ+ÁTxS›?.ñï]ÆÌ¯^ч€ý/g™þoxƒŸààÿØC÷ÿ]hg endstream endobj 1098 0 obj << /Length 1370 /Filter /FlateDecode >> stream xÚWKÛ6¾ûW92°æ’ÔËr· ´Iv»)¤Yç”W¢m%²äŠr·èï ‡zxë6I/Öp8äÌ|ó¢¹·ö¸w;ùi9¹¼ #oÎÒ8¼åÊAÀ’xîÅiÄâTxËÜ{ë >Édî¿Ö*/ª5-~†…nˆ.ªÕTr¿n¶ª-ꊘ«Æò¶´RîÔ³7Ó™ˆø2˜¾_¾˜<_N~Ÿ0‡{b¤^°”G^¶¼}Ͻ6_xœéÜ;XÑ­„ *ð`éÝO~ð±OQä%,M¸8ñ)J˜ "òé/«œ3á9üÜ"±'$K…ˆð ÷fAÊ¢d>À 8ç#äI8ˆhŒƒ´8 oK+åNÖgõåä£0€f9g¡Ã¹)  üվʺ›¥Ÿëm]™îç¾jµ“1ºÔ Dö~]i",ôxlÕ1ßnÜÞ;Îe©ÑÎ `¡ß .ÊAlÓûX_Œ9,#«fè. t‘CyÈUåDìàè)ª¶O¥zßAŠ€øˆ©£ñçhº-å„6 ùŸ¦ ÕI?hí´ ÙôõwæÚdN÷ír׫GrY]î·° ‚¬÷)a±Œºh `XeÏT‹MC„0PkÚ±áÞƒõ€x¹¶x©}ÙÒ&-Kãn{Ç#n´[<è²F#Q‹tÚ ¸ªl5¡_Aºõ€€H¦Œ†û3MüæÈ6tf«¸v.R=¾`ä›­ï³¹MdU·CØIvY~R˜˜å’%IJ&@JLg1Ô^@e…  #Å) ã¤ÿ´<‘2!SpjGº{2, º ŠÃfÒ÷¯ž?]¾~óï|Ò-žàíß÷€Œn¹¼Œ!JÑg§š¶Èö¥jhmë ‰CÑn)¤-RH¬ŠR3"©Œ‘ÊTY·;æ‡}guØÕÛÈùèÔ8(¡ÙXu¶¶ÇîžóÍ´ùb¡ömýÛ®m®nî–÷×η» Fˆ*} n[ÌpG°ÝF=¹Àx1T|FHÿ¢Ò'@6z¥]eRµ4h‹öèP³uqbïòz±Xë>WÚ}S™ÓÕJncsžn!^ß9œÕCé”ÿpâÿìZnueVT?vôks¥ pËúx¨›Ü\ÐRÎÊ}Þ'g»©M‡Ž1uV@?χ´rÀPgbçL°¾04àDzüEMW:ÿið®é‹®7´Ñzû×¼Él»FÉ««àر¬¤®òò¬z Ir’˜‰ar’å_3£g!KæòÑ çµróøn«¦‰Ì9´Ë¯žÁpj >I<ÌF\`)"Uã¶PµDQS†¼ì@–)¶»R/¦³(t Ib‹ )x(<|€ñMÜÂÝœJ›¸ |@Ê&‹ÎÎ_O7¥rsÖè®Å×îKópßOþñàlƯ½®ÉçôœÀ¹Yu£À>Aì=ömu„¡“ø´Ã«t­¿ÑöÀÿ1$06Ï1ÁA9Ôikºq&„“‰› 6Tß®òtŒÅ¢Si3û“‚Õ¨ãÕýµë%Ö.4ƒ}Ñ÷œKRÀnWhs2[Sü)‡]AY‡l÷jªŸÂ”4Èê’††5…7®$›1­Ýö½8¥”´¡ìO£I„(eÄ™”2ÅÃTúEK_eè[éL£º|‡ô1æñ# m¸è¤Í6x²@cž ÿ¬Tà¿=€d ù]«6ï‰Ù*÷|$ '?ûoCpÁ"‘~Ë¿îŸS QÅÉð/cž² k`·ºÒ Uî¸d–Ó”cÑÙÅKåþDaׯä2rœdÁ£…H»:’X<}ŠOöÖåNÿÎúYm19®±B2=vÿolXœé endstream endobj 1104 0 obj << /Length 1807 /Filter /FlateDecode >> stream xÚ•]“Û¶ñ]¿‚ã‡XjN4’’hŸ3ÓÆ±ëtÚicõéìÉà(H¢"iÌÝ%“ÿÞ]ìB¢>Îã>H‹ýÆî‚"ÚD"z7úÛrôâmšE‹8ŸÍ’h¹Žd’ÄóÙ"šåY<Ëe´\E7c©&S5_Œ1zUÖZh–“…ëÛ‰ãÊè§gj[65,™ÏÆ*|Zþ<úi9ú2’ÀXDrÀHƹȢb7ºù$¢lþ‰8ÉѽGÝEI ¨VчÑFb(½—¤Ïæ±J2’¾CÙt½é’$7k³±î6ýÎÔÎØmµ£™íÛ¶é&ÓTŒ¡~™Ðð' ¡ f sLH•¡åNvS´å:+™±™$bü wme^d–xv·žX 4J0QÆÚXS80-V‹…WF-rPÖ̧ÖiV‚\Xë®ÙѦ¦aSþ6QˆNûmù€Â˜ Q9 RÞ¸Ýk°c_!aÏ¢¿µ (³q ¢Ï³ñÃܽYðPQik/)Ò™µgÖ™º0–"ÇCÐö¸ø÷ßßü—C­^í#k<Â]§ËŠ%ÁX 1Æoï<ÎçBb €,*‹E>#YÊ<=»ö=ÚUº Ó þ‡‡É<–*§”]ãV/_êÞ5¿¶®»~û~ùá¢Ú¾¯×eåiÖæž`¸€gÚë`;^—îÙ^±+×õˆ,ñ÷jo;s`è9¡i¾#:ìqœ¾>â6ý¡¬ ÇE2^àß4ø³Ó×=ÜÙMmVD¥jê ˆ/Ì‹¦vxS.yñâ`:šéª¢IoM7µ­)ʵY]¬hšnhÍï\¿³5Åíw´º3–5¬iô!uPùÜ1£­ªÀù¯*ÀöaÎ*>‰Ô¤‹‹³Uclýœ§íö1´—s¥f%?÷–w·ÀÐtA³uRÑô|äúúÌÕä1M½ª.ÊŒ>d#?`0 ÒY?”Þ4â,ÆÆžUçgåWãsݰ†ˆz ôù(NÅ«#èõž[€ÿZ~ýªÔ(unºÆ:ðëî×Ò™N»¦»¶Û¦s|1¡‰½…¯ž}”Iêž=eFlñÔw!Jn>S"NU ºC½bþâwÒx¾PÑ øtu8Ô>/÷ÚaµMå7š©â ðT 8})‡ÐsÔ¶~ìÇúþùdž8'v|:ãú®Þ{ÚóæÌ!¿‘ˆU†‰ÌÕé,’*Î¥Ì8Y§"2=t#`y1hGU4…íÈ,ÃvdN݈v#úpÒ8oŒ”û=áDÌǨ)jnp‰—šf¾€ÃhË]éK"Ÿê‘aŽºŽr³u\¨î±8énEpû—=üéÒW Ú!q$º5…†4Ê¢lOݶUYhÇjÖÖ’ë)÷…C¹p]Ù›°nÃÝØ/ïFÑÇøñÇB(g¬Å{¤‚ %7” \¹†¡<mËÀ¸ÇÙrƒˆ:Lˆ¸h+]øj·Ï„ráÌš,}{%ó±»GƒõœAz±_-!hß|©Pˆ„(BàÚ¡CÐĽïžÐ¸ æß¢êÙÓHë–çµ5á`Õïj²ãzƒÞÀrzÉöo+Íòë׬7³6ŸNÚàæ éau°CÃm%ªÿjœÁnNr£Š³r ¼E"âÌ'd ²4¶zßÛ¦gÍ)‘KÆJEÂ>:xò©ÐÁ=ˆa{¨k0œî§’GÓ:¸T¿S|CO ¡oŠm]~é‘ ®!ú ¶Ù-:k6£Ö¶Š­n–X\È„Fßõ#-c$kÙ|4ÄW¯±÷M¥Ä|BÄúú·òy¥0_à0ˆô—!Q*Ä‘„ñ;êjì )¶ð‚¨ò84±ƒt8~ѯ¹U&tÛ¡mŸÄ1êñq†Å¦ÜôMÏ8«ÒÞ ˆVMÃïbPž;‚ÓXmY€ï{’ÍIEwf×P{$€…zëÏ@«*ãM›Ïéù» <­ì) £‹-Íö÷ æ·†.&LY;˜•¼é0q‚½jxwd i¢·|²Ï8»&¤³FÇ¥©@ImB À¿©`솯]AÄ‡Ú ]ˆð¡ß.~×BÆ™ÌÿŸïákÌ,VsÔòð=c‘ÇI°É;ScW oˆ­å$‡DÁ¡÷OÍïb)iTBe ™¿ÙK™‡G´:<¢÷ùÛ¯|’à+ñ¦ñ÷qƒ×ØÔ§êÿ6±Ä endstream endobj 1112 0 obj << /Length 1833 /Filter /FlateDecode >> stream xÚ­XÝsÛ¸×_ÁÑÃ5cÑHŠ¢ÎõŒ“Ø9_¯¹6V:n&SÅ–"yEÓéÿ~»X@_QÚøÚa±Xû…ý-Å‚ç€o¯æƒË»$ ¦Q>™ÄÁ|ð8޲É4˜äi4Éy0_!Gc‘MÃ÷J.Êú™&›Ò¬ˆºýlT½P šÝ••"ê\;êa[ùy4æ‘ñP¤£óŸ·óÁ¯z°€ÜË£œ¥A±<~`Á XçÓ`cE×Aœ€(ÇUð0øË€“¦AåãÖ˜TDÓ< &i‰8%c./Gã ca!«Š(ÓÐø½ézõ}D“ùªÔD-ûº0eS˪4[bm¤[3J4é²v¼•"¢’ÚÕ©JI­"´tçQ2IHm³Ù'U˜¦»Ò¦÷^ÓžÕ¢×g)ðÃ8Üé AGö¤ÿ@ÃðÏ?ß¼»?|¼yx}?üáÌ…v?Ù6¿yõóíÇW÷ïnÞÿm¿‹C^ˆü@OÙ›æckº«»ûùƒÓ³½¯—rTµVâá22†ËѲ4à ̟ ¼ÿb)+[ø‘q‡÷ARýøæ¯ß9—ʧJiìn_+L> áÁûœm_=ôÀÙtÌ Ÿd%»Nºè^•µ‹ÛõÑжçÂ`u‹Š¦ê×V‡aÛlT÷ ~¢Q6ßàÙ6˜þ  "øELÄÿª±+šu[©ÏW‹¦•®Ï™PçRâ î¨q×4FÝ¢x¡!ÇZÓp¤û²j¤9Öy¹ü&·/¿¢ó^ÛåÒi›|‹®EÓ»,¸ºú¯9Çl΋ÛS 0Vÿ§;ø‹ïè”é;W•IŒyqX? ÿ¿m9f‘H±’âðaap圧XJáä„EŒ§{Dà ŽÝC‚ØA‚8‚±ƒ±ƒ±ƒ{³+à—w‚@\)¦Qâ0èÞ ”LB¬Ê"KC( qÚFëòi$ à*Z3nE¶mµ%–Å,<À© DŸ ¿¡vH5 µC*ä¢ç¥&þBé^ OÃòÉŸ€劕lêˆÉ1›%Í |hÚRçÀ¯7ßÑ8i¸–õˆ³°—Åy›•ª‘JÂÎ;Ù i$`T2M£ñ!¦„°Ç;ýÀèõ8 ïk¿Ñ_W¶;ÜáºUE‰*}΋3gš‡€p@ä  âH:@\ÔÐ=¸ðâšÏC›rHø……jÑ/^¸­oý ˆO#/§WšDÊSª§´ˆ>XœÓ~ø+ôBPÂhÒqÞÔ¨ñ–&˜°H‰°iAKÈl‰úkZÖȆ¹oßð­º0’cq7ùX››5ªÜ%Z)’êvùmEWe±"r­”ñGªÿh ¬]ÞAO™Cõ¬>ñ$l ¬à5IÕ'΢iƽD ðDœ ëE‰æB¾¤é4¼±• W(ÕP¤ï:'œ¬ÀYJ¤¡–•î!à çl¿o—¢‰Ëu±'[ƒ{±ŸÝRO²ˆeù±©m% ߢKCãî1ïÓÕIãpIôÅ[-=›êÜÁYö­ÓÒÓ? oϾç=>$BìÌJDì^rýÃFn/™Tö‘õäÄzMÇÄ~g•A)ƒ¬ÓR£‰í²eü'‚ÈÙDÙ9¨À”õþI3«®&¥sQ[”…gZü¦ìžû5„\cªBbÄPH~tœ3*köuZå’6’_q‚`°´ÃªtúMGÞP/hfV6„·GdáÚÂvl²@=9Ø–ëÆ£½Y5Úqóޱf£¸k('Ä™ŠObÎ;çtoÀݦÔ.¿äK@g6ûå°½kÌCß¶*o§ DŽ.T»Orj:ÐdWkðmÇIÞíêØn£EÑÙÑÁûçèóœ4bðjí$'ÙFµ4úü÷Ôz‹½~M=BÈ>Þ|pUôåhE,è¿­¨Çµ‡øß_þxæàw\þê÷\~Ûuà®/‹)ú"‹Ò©óÁÂRÇy8¦š Nšàì #л²(£$4ÁŽá^;’P-÷mw%±jj¶p²tÒ4ìZˆ²è+¤‘Y®åóÙ¢Q5…4¾¢–õIÜCüA•NHô³ ªÖ²¬]öµ>Naü7=‹“„#Ûo¾ã×t¥§æÿÉ#1 endstream endobj 1119 0 obj << /Length 1760 /Filter /FlateDecode >> stream xÚ¥X[oÛ6~÷¯ò0Èh­ˆº+M ¤žS¤]³ÌvWIÈm •%W—º~Øß9<¤,;nÚu )òÜ/I›ÚB3µ7½×ÓÞé¥ãjzž­Mç³mÃ÷Í ]à ™6M´[9ýåúMÉûÌÕ¿¦ESÑʘg<ª8}\5ÇuÇ5CÝòú÷Ó·½Ñ´÷¥Ç@™©±Žpf„¦«Å«Þí½©%°ùV3 ; ´ ]i¶¤ 3mÒû«gv-v]Í7BßdÂb×2‚Ð×<×7,Û%‹OOûÏ4õaS–<¯éƒ«y^¥ENŸ›4Ëh6ã4V\RÖ7\\¦“‡‹Éðꊖ¢yÍKšÆE^Õe× ò ½ ¡áxQÕÉÙYÔÔÅú.Ï/¯¦“Wĸ¾ÊçiÆïL×Ìù†ÖpNfĶyZßîpû;Ú_o‰ã•PÉÃv<Ò+w ëþd1ü{!¨]²®yqÑHŸÏÏi<¹c¶“Ü™$2߬=ÅJ„ôoð*&)#Å­„×hؾVa Ï“LÚ+…3¨L+$éÃ"kVùo*ö2w/ R©3bÁ.B,Ãx²‹Ï‘Ä}åq]”çIÑÌ2.—Æ”W-W×@Utù¸ØTÒ­eÑd Í‹<“™Kó8kYteK¼IëeW϶u §ù×(«TöŹ6ºÈLˆÒTÊêGf½l%¨^ÅèX, ¤iÝNüìyGò#Ò”y!Û%´Æ¤/Írv.Øå׳g©(ŽÃÒ~ºf[ÃnÓûƒjã‘>pŸ”yP‘¹.yÝ”2)¦’ ö»öþ#@Ð4,ñ ‡7ˆ¸žÆ,#dÌEÉvhöµXËLÄ[Ö‚­Õ[K­.¡ñôÒ2;Hb­ÀpLiðQ¤†é¼oCi–ôñw?€n/ #qÁ2<š¼n+WM‹µAñ Ï’‘|Å}ËÔ?oð”ˆÊDª«uT§³45KWUÕðêlÏ~y†ø`¶k8Ž àe¹ûT·×õôKŽ&èZ˜–æ ZøŒ6pü·CÐ9aHàëó²XM‘sZº3M+ã´ˆ¨kQ^ÔKy×ÔŸãJÐê¸È²w}GI¯vP†lyAb²"_àkÈÈô”2Éaˆipø¹2b í@Ÿ~ºy¾›|xÿðnô©ÏRm‡bããp²¿€I‡ñý͘(Ë‘m½]KKÌ}3(0¶A¶él¨Ðˆåbo;б]˜ŠsÐ,“^7ÒY¢^8*%Ѫ5SœÇD}4c ÍèÛÑ/¤ÐbNR (¥:‚T\›Žù±.'Ÿdpl+¤Àá÷a2ï¶:f FH8[Ç”KÆ™ò æ ý5YƆÔZ´W/£ú˜Qõ2•EsÁ M%£*ýñwyøaé!ß¼ÉÅ-DÌÒ¯Ÿ ÷õ¦âÕžž@¯àh¦¥ŽOÇÌ?^]ÐÓqTó" $&UðÉqÆ%ÐpJì^Kdc„Fà>Ýö¢\KCÉ+´æ!U‡«J&ñ2‚F¤Í„W±´l&òûi¾Çêk0l”ˆ+Hj¾ÂRó;TQY¢Û É 8 ÀOWÏ•pY$]ïu»„‰åp?Šˆñwy¦/80¶€ƒñ^¯³6øµ$x¢~9—Ýs#~Œðt™ðÿìó¶|,Yâ ч`qY8 _Ã9Ëó¸5\y(ÎàYšG%–¦¾}Ø:¸ÝÃ&ƒG9ä=æ+¸þŸæ"ID.C¸ \E~0½†`Ö+q5ŸQ– Ç6rYT òÖ8ƒ(Ç´àC¨\ÈÑXèCŽá±®mé*EÕ¤Y²§„Aø‹Ï³ôCA?g¨°EÐeh7K5ëHÙHKqó¥ˆÓZZ©Š«åÐBÒŸ(ËO~¹–ÆÇªD¯Û ”—xwaè19(ŸTë¨[ª{W €Æ’jUuHÿ|ûÝŽ}ýº xªØLý—|óuÅ ¼¦àóo'„æ8C Ä­½—'mÉ~ dS5yúê¥á‚BÞt ”Òœ$`ÙòÕ!k\ˆ[Á¢!|ïVÓBaðA4¢DÆ,ÚÛ <ãd.@—-ë5ç1¯* Ç¢ùó•7Ê#Qþ™,³ªY¯1‰”²ÒEHÈB¸ò…Â%™hµð;§ðÁ57Ë4^¶å%ƒ¡Î€áŸ×Ó«ë£G‚ÃóÑS˜É —…ÿåÇõ³gX>¾Tv?û¡a«wÑžóª:ÙÇäi`­áêY S¥OW®øg¦{ÆBÕcÖ®ÇZ¬Ûál¯ß l‘oÛ>‚«Üÿ¡.Ól endstream endobj 1124 0 obj << /Length 2138 /Filter /FlateDecode >> stream xÚ¥Xm“Û¶þ~¿‚“/¦f"šà«¨i;ã;Ÿ;µÓžU§S'ãÁ‘8‰ E*hùúë»/€Hy©"°X‹}yv—¡·õBﻋËÍÅÓIê­‚"Ëbosç‰8òlåeEd…ð6•÷ÞÉbå+ÿo½ZˆÔÿXwƒfÊj”ÔŠ'o:£ž¤aáGùâ—Í«‹ëÍÅo. =19\E˜zåþâý/¡WÁâ+/ âbå‰uïÅ ° ÜØxo/þ~Z‰Ã©äQ8•< ƒ4M½,̓(NYòŸ£(%9Ü>ïý2M3ÿYÓ°ÌÚTëõ­¬>”R&©EúŸJu0u·~kŸ*{û̶C%yRÊa»³oQèßó¸WwxŒêU[’ÒÃ[Š,ÈW¹J V"a!/‡-ozQ¢Mz}.óܦÇ^F‡¥aæÿ†Ñ'š¿¹ìK¥6êûZ›f1 Œ<²­2]uû½j ¯ß m mÐc–"Œ ÿ§jyWÙPôûºµ×¬%¯˜¢§¯ÁûÁò©5ÎV™§ãm¬‚³k¾eÚ~!Bh̲©[ËV·‡ÁjýˆœR;ÛXê¡ïŠÏn¬IÈ øè(õ÷ÒU1}8t-ºÁÀ±Á¹Z—Vð"Hÿ—W iuO)U¹›F Ðsz% øW}ºýŽ¿W]3ìÛw‹xB Vz.ÄÛž¾€x(Àߣ ý= £ Yp?Éô'f9 ‰<Èá†V×ÛÖ‰¢w(Gúfæè´„©Ýø—™“E1;Žîöß ©>¹ùDyQ^Y,¾L'ÿÇ\Eä¶ñJ€*iȱŠjÂ/«I?áYÝŦmeÃ$ ÇáÎÆ¡=ódœ”Êê@Ö­¥˜éó{Fu ½»rùˆckw.9ò2Îá”]]îp(|YULëH4“éµ@•ü1’äo,x,³(ÔÒ–©nËf¨”žl¾>(UÖ{æéÑçJBÙC+xÆ‚³Nm\=™_Å špˆ¢á÷ûçÿ¸Â€èúõpám)²8®7/!Eø/1NŠÜ¿|{õì¯×Ìò+êJþ-º¾â…Z·OŒ=†L?´Õ·ˆ{ .#3 áü–£¤±Üò˜aˆ³Dæß*¦öJ+ÃCz |C4‰ýúúc­-g#Yû0„×5Ó=¬£?ÀÓ?ÔûíõÛP4÷åÄHÃúŽÇ­*—g¶³2+­¥Et`0‚!+ƒT^ËÒ põ=/Ve‹>vov q=) ³«5/RRôÀþ1zà[²á-ðNÅøŽÆ’ÝåN¶[´æŒÔîà_}··Ø4Á)ÖÏêz¡#oU¿¤Ýc¢àˆ· kðï\vü¹ü×õÍ<œñ›¨!×ნ;[í<Äuî^Ÿp= R¼Â{¤£†";)$²È*äR–Èö+§µ¾Ò.)ì‚·uSû¬—Z_U*ç,lb(ÛÇÈ™4w"’âÜmd>lTÆìDí&k²³[;ß4<ÄÌŒz*Â\Úš¢áפ‹ŠeJR_—¶8<Ê$ÙDJXæÀ©›ŠK8XfXÇ똮^K›}‰®ïµQ{LäiÝ¿—v@ÊJ²©jàˆÉ¥Ùx©•¨kI?Õmuª¼©W„Êì¬9œíd¾<<Þ¸øNÓpD0@ÌÕª˜%7ÌœDàÝ™(|Z2¸zÃ?!Ì‹ÄÕ'€*¡Î•'Ûceì œ;’$d NBªLjNF¤± |3/OÂÛ6Ñ´LŠ| „dëÓ Xŵ[Ì¦ÄæÀÀ†“§©–sø·^³Ø/@•Ü"5NÚúM#]…UºÊìüÿ¸Q4‰O®€¨'˜ß[ýÔ¥‹Gt}ŠÖÎýf²lívιÂ/{†ÀZA=cE†”Ñ.0!y]𸄻<Ö†!íBBJUÀb8GÌä¨EöÑ]`òn‘cá7(ÎçTÁ#]Y•ðìÏ8å»Íäî¯ËCäü¨ƒð¬[M ¹ Z¦ŸwHoGOœ¯XæVÌÁÎ)üêÊM4+br=5±íìͺþžaÉX<»åù÷wAx Ž_Õ€ÉÜ(P¹¨™Ì¿Œ°‹©ÚajÙõñ‡®eTEÒ›gÿ|ù–‡³ 0z¬±ÕD–[{ýN×ÎÔKr04|öÕ8çÆ™ý›+B¤¢øþæºÿÎY½o2ýï¼*‚8³Ò|§ZÕËÓ:×Omx™íÂ^K›…p}UdÛ-‘¯Ãt- —F£1žŠ£ÏþÛ>ïxï·ø‡=úÁóÿ ¶õò endstream endobj 1130 0 obj << /Length 1786 /Filter /FlateDecode >> stream xÚ­XKsÛ6¾ëWpÚƒ¨™ˆáC¤DOzˆí:q&MÓXM;“æ“°ˆ1*FV}w±EÉVSÇ9ØÄâ¹ØýöÛ…|gåøÎ«Ñérôüb; /M’ÈYÞ8Ayódá$iì%ià,sç“Ì&Óp¾pß·|ÄîÑt’z>ð’3ÉIx×(Žý³ØOÝp1ù¼|3úy9ú{Àa¾ 6¼Ô¬}úì;9 ¾q|/JÎFO­œhS\X:W£ßF¾ÑØjúCÍcß‹ãØIâ¹F1iþWÆZ»Îù4ãÄ]N‚ÐwÙõþ—¨ô,HÜŒÕÔ¨¼æ†„‚ÕyÉm|õ å¹[M‚ÀíJ%Ö4cîfMÙUµÙp#TA-U˜$«L‹fÒª{áHu…;¡3 ÀF±½†û/KÙ%7ÿá”e¨Ðí³67^9kª5SâZ”Bm°‹2%šÚƒ­‚}‹LÍy©—†_1ÛË<ç¹Ù¯[¯›Ô÷]E=7“Èw± DŠËòçA7¡ŒÊÍ }ßþúîþ‘¤¶k.ØETlÖ2;uüG郴µãPB5ð;>Sƒã±wë¦æµ¢žºQ -†Ràn ^SËYÞïs;Ñkáß|€Š›ã¾LBðHÙáµôz„Âsë\?jà¨z5]7¢VC“ô˜€¨‚™Ã7öâtF+O»M¾w¨?—'ûVo¾°‹¾b«ËjÝjÜkÕµ›“È­x…΀ͷԑ±¬Ð×G¬‚­Þ*(ìÜö ;Í»¬ÖÁ€MÖU×¼%Yƒ#™¹]]ólz$¸”l§\>òÖ‚Žå¡åÿ÷Ý3B4 Üö8£š(Š:+;©¡"j߬©Á•áÊ+HÎ;N ÕÐw üX+ÁÊáüHdJRѶ:É[96Ó:8Z³†j*ñ*lã’uªQMSšp*…2 %¢‘^Ÿÿ>žÄ¾‹z/fîç<¿¶†µI˜ G),Л¼õ_ÐŒ¾öf‹ÐÎÓVM§Ö2í5”F ôÍ™S!>©! ¢k¯ÃMz:AA…X\š);‚ u¬Í/J¢”݉ï -ôGG§K+¿Ód²9ÓÉÁ:-k4ü†üvN´\aÜp耄nÂIÔö«t„Æh*áKIU<9‘\½•P–¿»šÍS;‚~Ôa–£Çæ©+Œyá#IÖ1_âY“dtY‚½”?Ãe]CìZò:3‚]øn ‘¦Ùc „ŒAœã¥WG¸;ƒL+J“'úôÅDÙµ6¡Ù‘–gÜ’û¢Î ´fÒG!;kØ+Õå¤z] t¢|*­Y»úP³))T@_gÞŽIèmLâ.tü…»,›z…4–é¢[úö Ñk..—WThA. ¯”ñR½:ÂeG ó¨[—,Ó7©ô1©˜µÄ&‚:Žì†È±ê#ubE4ĶG๼喰,U³Ë$…¼¾6çî=ºOèpœ¥3®£g'6· ]ãë-YMaÒ3“6õã…ë{ooëºÁ²áKÜ’”ð*D¾üö> stream xÚ¥XYÛ6~ß_¡·Ê@¬ê¶d´º»I³=‚4q’iQp%zWWGÿûÎEIv¼iš<×ecÒ3Ô¶7®k§ “ï$ä2è[²KNî° ³@ÛXÁ7r¢T¾TšóÝwRm.{]5Õ¢õ¶(‹þÀ¬›®ôúØg^쬳cøqÏ>A³Ò¢€ËxÇ4¶ü^Þlžßüömà?’åØóÚ;i~/h#?Jí«+Œ¾;=÷˜J; :0 bÜ̱QÉéEÍ_År2­ZvÝ‚»Ò\Í¢îeOñî=¸ã|4@ÞIy/›ú®£b´XFA,шõ]m·xx[j<_ vGºé%p°nIXeÚ°øÛÔfM sk(ÐÇZ ¥U¶E¼?ìdŠZ²:¯´RoÐMï8÷õÀÁ1VÌ­¬œdÀü†%ŽÅÊY…žØœÙ"rÂUb¾û¯Ök Sb$£Æ$§Oõ„Çáxb9…# ^/wleÈðÀ¬ È&\×sG3­œØ—3×àèLCKê»±j>Ø_çcØþX~ýGå$…ã±~!È,†÷Îzn—ñ(á«9.Š¡!åZVq¸Æ` ìŸPO5òRÇòõš{11¼Œ›ñÖÏŸ^/Hè$]Q€9Z’0 $ØLÝfloù—7™g¤çþ8„èráØÝÄÑÈ¥ÞŽ³€R(Ì“ˆ+;ðÞÌÞ 8®š\(sœâàêåGÁUÑ Hbƒ9acŒ×dûóÄžP,RS>Á`Á½”™À´3õýÏ?3qrwÀç Æ‘SÏ)UóÌ_C'œs¹Ã‡‘๠ÓãÀ4$Øq†D´lÏl°ûW ųÂZæË ëÙˆØsd¼ {£õqòV Ú,z0½þ¿<(¤5 endstream endobj 1142 0 obj << /Length 2109 /Filter /FlateDecode >> stream xÚ¥XM{Û6 ¾çWè6ùé¬RŸ¶skÓfËžµÛZo;´;ÐcsÕW%ªiöë ${Nº­›Á/àÅ PÂÛ{Âûîâùöâéu’zë`“e±·½õÂ8VÙÚË6imBo[xïü0Y,£ÕÚÿ¹S‹0õ?éfèIòF•JöŠ:¯£Pž¤bãÇbñÇö‡‹—Û‹!l&¼p¶xlDêåÕÅ»?„WÀàžâÍÚ»³ª•' âÄÒ{{ñË…à‹ùÉ#1?y*‚4M½,]QœÒÉßGQjÏáæyï–išùÛžyú;Ùë›™ÿi¥¾êzÝÔ4ÖÜÒ€qÊ×7Û·$Ê›º7Ýb ÖrÓt‹TøßâÐÊ¿;¨š”4¯ó;)j£H^5…µ£›€mÙóœ}ݰz½Ÿ¶‡+ÀUÃÈ[†`º”o7ôªû·fotJ/¤‘ץܓDÖ5šÖÀ½dI½–·¨$4báß“øÃ"¾ÂŸ{^Q×í`‚c .ù › \%›ùX Ž6`ÕoÃVhü·Fű÷"½*‹¦r ½‘µÑÒ¨ÆBÒº©ä^‘B^ʾ§&4À`•ª i5­ê!ÈÛn4.vÚN-0%9¶­ÙrySµº”†Ð‚;mÔ"<@£FS}Êóù e±ðÿMönÿY²Üiƒí•ÿ# n5|¦¡¦.ï¡OˆËB_’x' RÏeoHÄvG¡îIĨÕû½êO`Èò(âÌC¦¡„I$«jòŠ PÎ[ÕÜ·Öi™~ÂíâÔ;’ õ\Z6õ.§!@·E¡$MëYÊŽ¼» È¢xeúê¦@¿iÛ¦·ñ†bÚå鸞UðA3:èÇA–ú½Ñ׺ïY‰!¶Ž™<G‰%ËK¶#ôo‡:Gtõ¤_7ˆÔ;ßâ%Éy~ERIùA弼ܿáiÀÏ0Ëa™„•…Nit[òI`ˆA`é$;ÐA½—·¾ñ+5n; YË2m«äœµ,sœ Ýßð³Q5Ò,†>…8*Œ­d»ˆÓ¯pµ³] ¾Ìm~BX¡Kðÿª)‡ í> …ƒ*Hf°„²g¶Ž³ c 'îþT¹qô‹K”ìB¸†êH©6æut…áŒMFóð­O ¬Rª[C­¡ÖÀŠ¥þ ‡UaÍãA¶…Tº²ÿbÑÏ%„ê ^ê  m§Km˜ñoú~Pýå±Ã,X­Ý’ñ㦾Aó­"Gذ¬9:E²\–¥ÅC¼Š}ôi­…j£^:0Ћ ê={ý‚fóò$=HË»å$ég’‚ftêö!®â«s„~ÁÅfJ4Ö= -("G(0 §´¸·ƒÖñ<ýî óéPÄ–Ç Ðe‹ù ¨D@à[ž²ÊÒ‘Ó„…°Hù¸·H€ûlP<’ŠOÌÃHÙø¯ë‚â)©T;ëI\*›^Aâ™;Å|d —`±L¢‹(Ý+k4é™ÓÓ)mº)ÎfË®#” ÄJšœÓë˜a^ÕÈÜ;;ų¼B-äï’ø©ãw› SCÏØ Ù‹ ãj›GÕ" Ž„Q™fá´Z´RÍçå!ömyHK²†¤¿GÊr«î©~IÀ¯“1gIM!„£à ûì†î·2…øL v7Í´F‡µv0š©Eá i‡’ŠÜ ™ç=¶í" —DëXE´6–çÒ°ƒ7a,MBĘÅ~é¯ãÆ„ö$æ3ØñÁ4#[°p}g‚s—UééŸ œnšegœR}Ó¸sJnŒ2x I–¸úÃêûïgiaJÏͲՋ=trˆ7[å‚Bh†²¨¿14Ô©ƒîxŒY¥•]œ3 yM³Õ!ˆp—þ4£3X:«ã…Ð&øxŠÆGÃß« ÓrO’b¨ YsÓ·§YM×$²³ÏKŒù±8‚Îo‹µ˜Þm ˆ‚ˆoUË!6£-VA±-^Ö`ñ\á‚W +à{µÛóÃõå›C¯0(LÂþc)4úBÉXªpÏ5þ(/÷ªv¯‰Si?ì—9–N"ÚÑž;þ1;â[ªXJˆsÚ¡\ïЋfÛ¾ÿ²ÖuOøà ?3©=U°ÐÁ*l O;ÌõF»ä„#=”ŽùëÆ”ùÝÕÍÐp©—¶áý¶‹Î.í èî)—uä^™¥Õ¾_Öc);•à_•3¶ÄøPt Ê)®žsU>Jr{Æ©îÝ¥pó1Ü£?Ö8-x0Sš‚ÙäÚRÆ™`:Ø­wÞ(ðÎ⇆Ì p*h•ût@$†ß€\°OÇ“ðdž9eMoÕó‰»PŒÃ±nCé?=»æÿWùèµ½Ñ#¥^™7#ŽI$¯`³8e%¨D? uçôð{ô . ¾ðUê¦j»‰Ï­[CçNM> UñG '9R$ •åìñ¸ª%ÊžfØT¦ÓLwlcŠxz7'ç1T)* ÏÇÓï“©ëZÆ <þù}^5õXÊ@‘aM—a]\/-Â#%™Ëv8hÃ%sßý8åg)ÇcöàW‡ ׬v™(ºé\å’‰ÕX¹€ÖAçM˜K®5-6©©áÌà£Ú.Wí üÅ­%q]šÓ¯T¯tÞ5}ãòìoºÜç¿«'O¨ñiˆc¨žý^Š0HÃÍù^ë¾,gA´Ê’ù—åõ&ÒÍ¿Ã'‹}—À·‹ ܉¯ÿJ2ºÂÐ%sIV—"½ 7.*£YTº<=‰yèEcíyöF¯Ô§×ÿʇòÖ endstream endobj 1152 0 obj << /Length 2092 /Filter /FlateDecode >> stream xÚ­XK“Û6¾Ï¯`åDUY4À7uHU2™qœZ;»mj«ì #1¦H…3Ò¿ßn4@R²&q&9¨4^?y[yon¾]ß¼¾/Š4¼õ£Ç£(ÈÒÜK‹$H î­+ïƒÏãÅ2Ìrÿß½\ðÄÿ½îE’ÙH¡$uÞwZ¢>‘j-¿é{4«@?œÍœ|ˆsG™]i·ÂøŠDÖU(´>WöD£LSp7CÃ^÷^#Û­FG9áÆœ=E>è†øÿ‘±ðˆgÉjùTW´ 44÷UÀŽƒñ·zÜtPÔ9ÀÆ0fµ9ÑR8£"§ÃÑtc“þ*il"†FŸ¹0%Ý'œb¤O85]: e²% ØÏ¶,–rP²§VUWÔh;M „§T¶Óµ’î÷÷àÂøÌËÐ饠ûG,ôE[‘tâ`âý¡17:Ò\‚<a8(ÛìhP• ·rǔfpÝÙãqÍW¶·|'”`¾"sœésf|›ƒgPšÛt#mˆçÓ%µóJ×;Ëêå†~­Ø›ƒ=„ÔÓ¨N’ù÷o×?­V¤>œ® ?²„ÁÓ„).±gà›-x'n}v5¹¸Z˜È'0êK [4ci¡ïöØÊüX„2h4ÁQNªšº¬5ÆŽU²¯Kš HVv-:›xi;tu«ÝY˜%QØõ•¹C%­àz= Ô”p h]¸\±0îðúžÇø0 SSyð,…}É£ŒE4묆ÆA‘‡ÓœÑOÙ”? Z@¹8 Xšx`ô )bZñ­(QËO”‹úÊô,t½©›ZŸHôV©A®Î1ÅÓ Ë3»ãŸÕL ¦Ÿù„`dÃTŒˆ€ÙtcüƒÏö›z;u° •òÞ8J À­©4€røD´žp;U•¬¨I9!óïŽúûïþûú¹ð&Ý9TÞ·R/à´Ä"¡+na’ŒæW44f6ì`ÙZÖ­BçkŠ?»ƒ’¢/wÒ¤¤WXÈ]m7ñ t­Ô ü¼Q*C(mãºÝ¾² }Ž®< ¢0üpñ¸XQÏ sA*o¤´¢ÞeƒPIíXÅ2ɸÿ"¹6™gÖV"°ED,ºˆªÑguQ¹Êh·¶­vÝÐ\–/ñhü[ÙIê àß>áVa 0#î·–?X›H¹ÅÒ Õä}t!˜]DÈ­QÎFšƒÅK1c$\a8#öL4…±ü™ÀÍ‚þÿ0pßuUÇ›çÈ|¦Ð%‚…8åPœbrp(t*š`J¸›¹ZuSÛΘŽšÂ#ãioG1¸þ`ø´Á‚ÏÅjÕŒE”0˜Ï{û#üìí”A˜Æá†Ä`F®¾ðÞ´ñ09µZ¯D gÐ."·ÓeæyDYöe5úîKT˜XÜQÀÈBv5.¥wº£û´ß…Vì/p³8Má¹QIj™ÿäGd$ÔŸ½ºÒù£*M-QÇzÅlW+E¥:wÿ[ÿ|÷@íO˜UMò>Ù·šÝÞPÔëô€Òæèù)ÙB2»%Uµ!å£á´1¥G>/¾! r>澯¯º­£Çùg.Š€¶¾–ígÕgù»lEy¶ »á?8hXž+ZÑ,»©ÊÜÍ&”8ê. v4Jx¢¶­š…+\Ay<ÏÄÕ¿~|ÿdÀ¦Þ×Ú¦°Jâžm튂pâ¶.‚G¯ ­…gÝNG1óƒÝeâœe¨:q²+‰óÞ”…Íyâ4¡’ihYÓ] š”ßõj µ•‰—ª‹f\Åœ…$ñ95 c³Â¿A4nuÃEŒŽiAy¾EŽ_"¡!Ç\BFlpeá–àĘê¨VFYÝü[º¼4gŸAÌj ¨ºr (Æ—ò®Æ84}ÊÎX!ðs KÌ#AÑÑtäSÚÎEØacÎ0ëÇ“=qvk»CU÷@;Á„ÊÚ$®®äßàןqé |/zèm Œü»¾Ç QŒýwR)Ù†ññ©®ÁÈób¬‡k¢S1”ô¿º;–ò`ë4H76h"ë/#œ|Dœì€M$}´}“ØÏL*ûžx2ó÷¨õV:2 ¬š8 ÕšþKÑRc#é¿—ŽÿΈŠ]D [° ¦àÛ&¶ŸÊ’‘i3[¦Û‚H wMèu›_ê"¦*#lùî#Œ+È#Oß(&õ€‰F¯Vöîð¦Qqõ“-gÙºËifPºf—sÖÔ^ðle/FÞÙ4¾^Ìwß—Þ [|9w©L’lÅ’/\§J= }1€ÚßuÆ#'‹Þöòúÿ‚nëŠ endstream endobj 1158 0 obj << /Length 2378 /Filter /FlateDecode >> stream xÚµYë“ÛÆ ÿ~;ù`jbÑ|?4ÎÜ]ü8ÇqÝ;¥™‰+r%±G‘,¹Œ|ýë,°¥Hñ8m¿ˆX`X,ðvåZ˵^_Ý,¯^¼ #+u²8¬åÚò‚ÀIâÔŠ³È‰3ÏZÖGÛ gs?Iíœy‘ýkÙ =qîe%E/©ñ¾QùaäfvàÏ~Y¾½z¹¼ú÷•‹¹–7™Üs27²òÝÕÇ_\«á[Ëu‚,µöºëÎ BèêáÀÊz¸úǕ˻SÍ}wªyä:QYq”8~‘æŸ|?Òz˜q'ÛMϾî{·k»™ïÚ þü*‹ÙQ²ŸçxÛü*¹® ¦n$¸ø®éäåÜv¨, 9—¸QQû›²Î«¡`)ÔšPº€×õÜ»cA-%%u Çúy³kËÊ10ÌWÐn׊(rÒæø®iÏ›o¿ ÀÀð—…ú p©(Ííî-Jã^c,w!Ù B>B&]NRÒܵ°«UY•Š×¹ëûáSaòǧ°¤ÒÔg ÿ#`¶©ƒ¨¶ Ž.„(9ÄQO²ñ"†ÓMËoÿäÞ{R‡û¦ŒM0^Jƒ;=€¦@e¼˜ ¾;΂TÛ5 àK/LÌR"PÆÙç§Î®½wü’CÞ–¤‘¼T=IBÌZ&h$ËÝÙ«B[IcC?ËÈO3„oˆ}—S#ðúA”çDÎJÒ—‹ Ö]³£aZØ­té‰ i=ÜPƒöÖ±â-O¥¶ç‘Ø&Ä›ñÄòP[w_"¶¡Gª#kEÌ#‘çøÐC ¸ÌÌO2 Cpqª“Ïb‘WM=j ž èºX@:žÑÆ,Ë;:ŸÓû@æQàá…æäöpõ3ún-‚¤ê†¾€­}†ÏSÝøV ÍrM ébÛ=}‡Ú$ã©P¢}àÖyÉ—T™•.ó ŸŒý̾гbö*ùɉ1_¡Ë–(#ãפà(GñÓ•2©¸fXÿ’K]Íé•ù s DU}¾GUìøþ3¹ê@ˆMnXìT¥MttwÞ¶|3Kmó¼=Ô…D¿ªO}3ˆ9zÐÙ?7<×s"/ûš?7Ìß01xkNÿ†I3'ˆÙ"¯e-;1–mF÷å,c[ý 8p<¾¾ ^OœdáF /3îsá9…îßÕƒß5úHŸø™¶>ÝþoV½ë endstream endobj 1169 0 obj << /Length 2153 /Filter /FlateDecode >> stream xÚ­X[sÛ¶~÷¯Ð[¨iEƒI‰~sÜ$u¦iÝÚ=í4éxh–0! •€Žìó뻦Y™ãöE+`/ß^1YNÄäÝÉ뛓ӷI:Y„y–ÉÉÍý$’2œg‹I–§a–G“›jò1ˆÒé,ž/‚ßV…{5ÍD`y~Õ)«Z÷íáÕÚZÝ.ýjÑV<¸(êÈ~òöòæúò§é,ó8 ¤œþyóþäÍÍÉ_'H(&ÑH¢(ÌE:)›“ŠI‹ï'"”ùb²%Öf"`ðõäúäç1V3‡ÔLça,SVóbU´K奿ŸJ˜ŽäaAº¥—è—w'“,þÅ'!bg=Ÿæ×¢pÎ;uªV…U<ÉNÅü­~À÷§‰[©1µ®Í4Jƒí`Å»i,‚ÍÒžíÊeá|1ŸÌâ4Œó˜ùÇé¾´iš7tD’è³³Ò¬ñ¨G¤ÍƒûM[:mZæhhôÈãmgœb&×ïÿÕªbâ÷ßýÊDgö¸ÐpµB= ©ôJ8f«tÅl­ñ@Í4 @ñ$Ø’ýaƒ iƺiçÍe¼Y¼ÕвTÖªê€eï70HŠå)©4ÊV¨±÷ÆV»•n_„… Ü%̼Üy8Ÿ'Ç}òÛJ¡Éó TTìm˜”¦Yw½Byè¦@Ô’%Ÿ—0?‚VØÄ®Ì¦®ø€ ì,XýãõåÍÕåïLåHFêç¿_^ï;ÃÓgt§ÂŸÇí4B‹W`LåA‡Ó‚-.#DwÑòJ Žé\æC`Ÿ>‰T`°ÐD[fº+ÈH2~³‚?ë•+f²›»F;×3à‡XÉ~5MPBŒª?3Þ¬iC8?z±K9̲(x}}qþÃ0/lÑ©…åÉbÀP/[Ó‘û³8Ð÷LtÃÖ¼ù姯ì ñÕ¾r<.jkx+…¡ñ ­ÛìðʥǕ»'€° ìdîýwãfæ~f!'(¦l, u—ɺêìÌöæn—¯¦)\+oa]Nf'ÒÚèÖ©Î#~–Š„7É$¬:(IºÀlQ?>βØô ¹d8ÚÂ+Ižà…‹#Ä yöÑò`ƒ"øù5Ö 5@Ro5k/ÿÛe&;Pf¢èTdGª<îÉóª"!JÊb}§kíPMОr+|·Þ[”ý‘mœ”`}œ”f±̶e½ñI Ö3þ´Î-ï±eW¬×”‹¾ÞÅk]òëÐì—޲µnù‹¥Ì;¹.,»æÅ‘{ ›&‰ôõ±¨ªKÔÐ+˜,0-w* +ÈGᘠ°XKTgÛ•Æt„åJ•¨ÞgËó¡0á¤àØt6D%7!ã>c憰\°}õÚk$lÑøÑ§qpî°iîÀ ©øZ»l$Cã(˜¶pvņµoˆÒ§Mé˜Ð(…ÿ˘+Õm{§e""¿­Ñ¶_ OÏæi|(*0¿z¦c ŸÙµi˜2ƒW0:yŒ@"šï†ÞÂÞWöë˜þÔ¹Qï_®Ãòá¤HQpŽe l‚ ²XÙ¢9ǶHÛC•¨)8…ÛÞÚ>ã6H¦/Î!›¾Ððp¸©}ب‚-_ë¾Ko‡ów:úgGõ  Æn`õ¥&yP)Ô²Õè•oû¼ØP»Ì"S&‡ÚoX·<¸÷ Rýý¤R-|Ò«—êAC{ݘãñåk,oöÕÅÈLÄ<¸Äò ]™UªÁCò²¡öhž›nZR•ç¢ _josjtˆPZ!®DÚ÷jàžÖs“"¸Ë Ê´ß·(ݺìƒÑÚoNF,œòz`Á¼6}*Aé‹ Òp‹xeÙ‡1VÛN­ïÂý>CrºïLã/“>“ÿG[òâ›ox e»ƒèHšúJÓòzƒI攋°ìƒT@à;r®Üq¬‘á;¦KŽy ÏwïÀRâ:W>ÉîJÆ•&TKÞ<8ž¡QÐq‡qÄ7¢¸ïÎÁ½s SÌSh*»)߉âdÔJÂLK÷7 ¯ º£3Ùo˜ì%j1µéÿôtбyÒþHưTfÓ'–ÐrkÕÇ…” h‘ é‚»4Cß¿Gã)[¶oJU­SLÔ~±1LéoH‹< OŽk%çóy/¥9$ñSñÄRÖ÷8ã7Žþ&ÚGí¸ô+¸;×׊KþFÛ§êݼ¼Ÿ£N)¶ÊkÊð@" Í¿0‘ã Š‚£{7Wꉩ³îú*w:´î•âývUtÅïiF7Z¦ þȰݶÊ(?.Ú”¥H8p0 '$§Ø?ê&™ƒ³z£èöÀŒ†¿\oQª[–(rÓ5T$ÏœZÔL§öà`÷maýØW#«ÿ7<Ü     Uû‡ˆÛÞ2ˆ¬ŽeçG™H Y§èfü¼Ã·¼lÅaE)¾r ×™‡y"Ÿó`áßë’½×Å;¯yñâ‹ÕÑk^Ü#=¿æÅ‡kÿ! E­Y†‚±¤1ÈFÇ¥ÛÙ{ïQOÂYºàÍ>K Uú\-ûǧdHå…¿ØŒxJ†‚6<­”-=ºïøQKúò ñ"·f·Á–éÁ£¾Ø¯)8ÜÉËØÊ[¦¯{ã€PQ»•Ù,WG#¨+Ï6xÒ§E‰í‘ÕË–ô¾‘”[©AâøÅåLCw.cHœîÜö€HA5îäî³íΉ—ö÷õ Ú2N ;2|íD¦Qþÿ¼ööÙYϳdüÊ»ÈC™yc¾S­êŠáJß'á›i^ñÑö¡èúk4cû'ðh~&Ò³(ïoïñÓ[âà€/Þ ¾3Th—ˆí@µûêÿ Ý“® endstream endobj 1178 0 obj << /Length 2729 /Filter /FlateDecode >> stream xÚ•Ùrä¶ñ]_1O1§¼¢yJ*Ukyµ‘“×Ö¤ü «¶ ¤aÌk ޵Ê×§/ðQ•ÍÃF£Ñw70ÞæqãmÞŸ}¿;ûî*Š7™›'I¸Ù=lü0tÓ$Û$yì&¹¿Ùí7·Žoσ4s~=¨á›mâ9†ç{mt3¼Y_ýPS6²ªš=.UUX&W×»›ëŸ¶ç¾—‘FÛ»ÝgïvgŸÏ|àÐÛø3Ž|7÷âMQŸÝÞy›=,þ¸ñÜ0Ï6O„ZoÂP}ÜXmnÎ~>óæbÞš˜qêaÌbþæyA¥·ça;µjÊîX©¡lw{å™sµ =§ía¾'_TÝÁ?v@È0 œ¶Ó Ɇ$Hb½:†M(1Ãù<#ؽæõNð#§ücÄŽ ”û­ï9ÄA-dç>¨$îŸeqä,Z™ï k½gàý6ðœgC{f˜O€>áɱSãRg =CÛ”ԑısSÖe¥x±zÞ<ÔBäeŽî{DeV¶¾ÃÜ΀z8agEËo¿EçðEÇ…îPf€Yë=@˜5rÕÀ€eYÑñӌØfPÃÑð¸h÷Úˆáp§xgàÔ-Bÿ7Ýëá OÑZ(ÿ퇭«¿%âdÀ¬?á¸4ÓRš³‘AÕ5(› -h ‰`.áFûÚº,x¼p ÝB;ý£Ñ/ïÏ6·„py‰l F°8@€ÿ7+$…çá¹+Ñ“V­… €…Ì!|ËfТ{%K ´‹‹ZýŽ6×»Ci.}™ã7/öàç3ÖDªRŠ?¦ÓE‰l£ÜQä Š¼‡t‹Ø½\«G±ë º1 Š{dã¹ Ên8è6Æûš¡°Îƒ^>jCÌSµÿn ÁY¨ïÎÏKÝ$ˆø¼_p߯³}¡ç¿P;ÂF^B/pXu3²ŒºC‡Ã1ñˆh h†•2†U‹SÎ0èzqð½Þÿ@~ˆ›l/ëâµÒ5؆!h“UZtŽÔaoú„Úø4c’9¬&¬c·‡ ðê˜Ø†‚dÈ3!ÜuÃ8lÊȨ}àïŒkÛïÇàÎ=›ó K"nEª¶AMø>‘Æ/2nçÀ¿ÂQ€QA¹ÛgS\ƒ×?‚cJƒ¡Ÿ;ÿh1ldv#y”+b\\U­- ¾ÍÂ0¸l©¨ ÿ¢ýÞ¼ÎHö•p&ŸJŒ'¤ Yä|MÜ=…P% #6‚PW”ÂâÉD㨴ÞH^€…enÄ=d"(•+a .jÕQH³L;sÑï’2óéht¾ËæØuUI%&Ž¥B•cÊà ǹƒ‰ˆ1íŠB!ø÷D%ÊŠ1ZåT‚/0Ž;@úû6z)0bPò°×Ñ_!Û:LXÂ4N×Íš‘Æb$Ù˜ãÛQÁ`žaŠ*¤²†|Ž^g¨h 6ëFë†EÊ=a N’"¥?XR‚Kþ‚ÄØË–§XWÓgªø´¸‡^‚ÅnàÅ©?pƒ =ÖZ$)EÖAÈ–aÅAq-¨á¢E‹ÑÆÀÏI»D©›ÅÀ$1×´ã,{ÅÄM²Àâ ‹µ,z­a€'iN°‰³%DnKé±D†‘7/Ocr°Ñ(È€Z×÷$ ŒŽMa« Ìù`U!ÝÏGé+Èà†#±Öœmö ¦-AGݯ&‹e± Ó“¢uY jó}2v~L’ˆý‘jŽnÇîG‘•¨ îxÄ® ƒw_†iù Íñ~A{·õÁ‘Ç0XažÓk i[CzŶ𠗅 $hè®x{i0qL¥7 ß­ô0‚ J¬ã­*Œ,"Þ÷ž7"3*á •Ñ¯Vb® GW|=ÕR#¸á´÷ÿåžp.ÄÑâ–GYó„ÓAK¼jñe§Ë0:àA(‚M[›HìSW”€Zêi; ƒ½ô§–\\â_'Hï0ysFLü)ËAäK³PóÜ ê C)óTÇ-/,ú)Ã%ö’€™×!|ò: 9@¡ÔŒ,º\Ƨkº‘‚P½YoñÛã#Ý·sê¨i w7¢ñH¾ +ãíîU5%žq ÆwUš<0%ÅÓNYç+Žô‰@{M‚!޼>ã»n ‹C®><ÈÃõ‰[ކ;ó\°ܸñóÒ“ï¹iœS¿äÂ.©}Cw|æßá‡ò(£‡ò sþIJ Æ÷ôÅ]þ¤IªAä&q.ž}œ*Z¸r–²E»*ïÙFS‡ Ðù«¶¼ÒßÎs£Ø\Ä„­ká$½ôr Û§×¢•¨ÝÙÒ\¶¡°Ü™)ú~gÐüºÓ9›8Ÿ³IíÂ0I÷r"±IÝÉéí-Î|çÒŠm‡`ô‘·˜óåy§™5·ù:¹)ùê9|Cõæ ‡2ä–k£”)vc>ÕrÌâ Øcî½2Àì…µ9E­“’B{b¸ ®Ð(ý€oCšÞõ1‚K~¤Æñ¶<å¼ËífÓÿàšÞ¯þA°ñ%sbÊ—W>Úò°&ˆ\sUÏä¨ °ž1Wm2ø$@WdC7©-¯Ã¡6Œ*8’wë—Îk–gu-=}O“œ/Å´µ]=¶ì¾ò¥…3ÿwiói:Râ÷ \ŸšÊ(:¹§á²’UM¯ñã \Å#üó§ƒ 0n¢ºy†J‚&¤ƒ¥uX1Šn ÕI0’*ö{lí«ùô·Ï+QàŸ‚¯üEá.«úžïÆ~þÿüIhÿMÜ M¢ùŸƒYHö‹žÿ­t»-T“£$ÃJÒ¤ïó7ðùçÔO/¼øÂÏyö€Jhy”v®ÿÐR;ùüˆut{*þÎR endstream endobj 1194 0 obj << /Length 2231 /Filter /FlateDecode >> stream xÚ½Ûrã¶õ]_¡§”š©¸@ðâév&q²gºÙ´«Bc—GÒLÜws\0Vj`| ªPPs…”=ø~¨Ò¾¨«¤,zJ‡¶UU_>ÒömÑuš\t?:V»1ö¯÷³ùg½~{Kb9 Hù+—¾ƒfªÑtôÛÔ€{½*KE·¡Æ4õÐvŠÆ½atƒ»P7Ö&v1T™"=”D²ÏF¹éIY¬cZg>…ÐѦ¬hUŠüƒ@ƒK)„víóœŽ3œk„du8JªŒßû3Ý–I×)sóºîóSŒå Êˆì —dÂóf ù)ÍÁÓת¥M–/Z!ú~ZH°‰¢'þÅ“ü1TcÎBUN[ÕèãÒÑ2Ãæ>i°àÿÒR@ØìÉ?_vŠ 4@Ÿ‡{ø<˜ÐˆK¨bã8ËBÊGôd\èòz(3:2tÊîöGw¹2£lÁà Íú­ Gy˜w¨µVž- Dྠ"SÒ"}ï3dîÞ 51á¤yRm´îºM2E#ºG;<•,Œ¥Á‰]¡M–~ü¸¢ÁZÑÒ¶hÛ%§¡ÚY5®KvÇÎÚ6v£zý˜4Qí•Îp¼ “ǪJëmQ´Â#¡gŽwh,;îº:Å`˜Ñ†]Ñç´B† c"¤Ë€st¡VÝ£0êÖì©uÌÖ `(ÀH1@sÌL\+U"W»Àcƒž¤ uŠ C£µÇ…"Øh·u‰&Mu®ƒüþ6DPVF¶?º$1k{j¹“`¨5·¿ã5mT’ÑnÈ=öuŠ<ÇÒ1îñÞ[xíC“^B%â/"O%%'Ø–œä²£‰I}°j‰E(±€P2M„5KàÜï4Z§|“hb´|‚ ©W—s wcƤÉ\¾çzLî =W‹@šJ›Jojçû@dýnÛ_“³¸B† ‰g䬻ŠC‘.Iø<ôÝ0ö…âã+¼pá?‡øWÄÍ…8÷ÏUq]Þ!È[\¥Q¼gåF:ºèÁln%Kuõ–éšàBO²„îØõ ÷„ŽY£þ·ªL%`›6¨mŸœ[UuTãÜì´M2ð:¡w–²f0´õ¦3 Ä6@³a团:ZÓàiâú±AG•ü爽!WR°'—^ÂBL¦Œ›¨ €­ìn›àïF‡õ'Y¢VŒéãÔæ!ø“œ ü´†×Mñ aÁ•$@añE÷†Ç\‡5rYŸ6:æúœ½À1ªäA—èÝÿgw‚A'ì³3½õ×™y-HŒeÍÇ;kUS&éhãkÀØèï[HMä6Ù¨çŠxž¡øQtÎP.V#~OíÑX;Á¥c;‘Ðzj)ãÆã2ÖF4ñ>ÒŽì¼Zœ…ÀÍâë¹Eü¢9 zÝúáµh<gcOXi‡a<ÍkŒ^7¯<~NÎãkî;AôÊeÄëxNÜm,…õ2Á‘ïÊèaQ^';–× ´ c/­®‘Ô—iÿ“heà|Ÿ ÐÀagŽ 3¾ÖÂè-$_ŒzW¿Ìö}û£¨ù¡_ý=o=nâ,=J”™‘}P±~/ÆA6¾ÕàÞ\Ù>§¦ÙÄ›y@êè‰ ¿ã~Ýt?êg¦º57èWøÍ‹M®ŸÊ¡9¶]BbúœRÂqC=¹Í~0([•d&%YfßÂmtâÙ{ìýaŒÚJʱÉO>jgµêª¿ôvb‘æzU ©¨ ÷y™/‚æß€·øìy>ñ!ú}âû _KO÷ý‡eìEâ†Qýݶ)ÕVÙbòÔKÌ$½•eiž'érðɧ„ë…ÀÅQ*úÝÃ|Ìa¡y÷øPgƒ®JyäÜU`³Œ9‡"8Àn¡'?|1¹ÒÖ >|ÙrËÃÀŸ~ðŠb(§ŒE¾W•j“ñŒ­£V‹X¿léɇÄTŒÑ/÷¸4ðÆ“7,¶ÕßW_㫦žÑó¿­ÑEM…\5ῃ0º endstream endobj 1086 0 obj << /Type /ObjStm /N 100 /First 969 /Length 2205 /Filter /FlateDecode >> stream xÚÍZ[o[¹~÷¯àãî 9Ù! clwôÄÞ¢mŠ$'F˰”vûïû e%N,·²¤*y°ÅÃ3$‡óÍ•<9±„rªŠúo ¹xGK¸k*û LÍ_p(ä=-)ä Æ Ö`ÖŽÐC¡’ø+ -÷Qþ/[ès©b Ó†ê¿âÝX.çNØÀ q¼`nÞWEí­²&'N ±R±~[Ÿ¤uIEjõ92Þ6ë}(g].L¤Ù[Øaaoe$–°¼ri@¤Î-ÈYrV3FÖ\¼¥cÕL)p²À)A;jYZ+½OÑê3k ÊÖGHP).+MAµZZÉg"Ú´·8XîÒÐŒŠKC]»\,vm™˜/ nMÉÃ:¦®O@Õ,»Ô[ÒG¢UÝ2À±f¾ð­Ž>ZâêÝ[ í*›k µ”®h4jª°bPͪÎH®x[]©3,®¶¤ßR‡êÚˆzË\‰|Yì¤I×cȨYWhhk}Û@©5á£ãã£áYx•}ž^†á¯û»[N45KöpõñòòõÑO?uê“ÙÕ"‡á¤¸Àd9ìDœ…|û| vº|€’[Òþ€)†7³ñét^…áų“0œM[„O³ŸýûzŠ£wÓ£á)Vš^-æîEš?^Nç³7ãé|éYzß§“‹Ñϳß«„ÍÀ§Ñk,4ºÁhZ_|µÂr·õîn©ïÖ’DðùÅf×ߊFK$À»‰hîà+9AÁñn¢iå¾h`=Íðäêj†Ù^-ݳóóÕ²àhøyv3™ÞôÙÒëá—áùð0‹×ÎÀ¬Ã,c3¸¦èÖD¥F…(ÄúîôãÛæþpqõáÉñq_ax2^\Ì®†Óá×—Ïýï‡÷‹Åõï†áýt4ÝŒã»ùù8^¡ßÍþ9Lfãù0Ÿ/þ… ç‹ùÅìö'¾_|¸üÌß…°ñ#ðnkLA G…ßÚÿ ð·Ç»®Á[·7…f­#M›R§“mHL S·M!ÁÔµ|{w…àFžWl„QN÷lÒsç§§0ç­a…nYëm5÷‡O¶Ú8üI‹Ñšr‹ íGÆ Ð=é¢; Ãïgg³Ñÿp5ú0_ÆÓ§OÝÞ~ Ÿ-m7f¸Q`MY¢ø’klžR‘D£ÇòâJâá{cÕþŠx©QŒµ=SÛŒš*Ä¥Ú-&ÜQÆ­õ/Ó}ýËiý³•þÕU£íU-GϹhôŸ(dž¼aÑ5Õµà/Góùø7ùM>y~vº?eD¾{†`x\æ«CÌ«ñ¦ ù§7#mš-N?^_ÏnÓÉͦ€S¯‰$ÖQ¨E$HPr4ÛÊlr~„Ù|I¼4„BIiCj®02ÙŸ×N<•Ö¶£ µ5&dÛ›PÖ} #»òʨ{l\ 1Î’SD±´ìõ1°¯É‰‹5Ä_Ù”ºHÄßw­iM´¦¢5í5Hk,Ù+@Œ"Óƒ³WË,ëAúÖ Õ÷o–;º‡5m7‰^û°6Nk ¨;@`{…ih+°2dº~dÁÕeüJBÀ‚ÙåÇWÁøÙͳÑbôßÀhßvŒåjÛÁ|›4pÙ+*J±¸#©ùÕŠm¡4/ô°Ù+9^¥'­Ùý2ò…âGi„jXt+Ìú}©EY“T–M“ÊRî«Å^SÈ[8—®+˜P·sÝ €’÷ÀÖ2—52—d^äÖ‹®«Ô¾¬Rû²W\ Hæ–€°Oýp9CyÇ%r>¬‘fxŠ |ÑG÷J”S$?O5Z–oà y\÷Ë[fq½}çå6#I>Ù!Ü‘éáÅ"~ª_)PjÑÉ~ÍòV6,yN´„vk%ûñ¨R×X·noÝ²×øúIA'ý¬ ¨9jÝÎ¥Š}_1M×Tyj; °ò¯º:±Ó¼jЪ±J‡´¬òÿÀM¥D+ÜTéÀæÌp÷~[©)G¿°òÔYP}¨›¶úˆL(˜ªâ§:T£ß` L®ßÆýCÖÚès,ª,*Ü/mX5²{~Ô˜l´4ÖL–ŒZT’¼^›ç¦LzÁ›HåúaÛÚ kW^Ü÷õÛá~¢•›Dó Täõµlw΢9gÑ5''”PùÛ¦ÔÙJO‡£ÞÄwïãÛÖDOÛ!zê*%¶•_¶½úeöPÔ©Š± Fä†Ä/QPx¡¦N… ÚOcE(6ÿú£PD®$Šì+ºv.ŠÒ†Î~í„„Ã8úªK¬medöˆ[Í/‰¡ÒqH\þõ«ÇÚòNIÌ~¬bÍçyÓÏÖYE]å/u•¿ÔUþRWÉN]ÕËÏ4–ŸœìÓr2¤\ œ²<~óc8ö/‡àŒ]C2KTFÎ PR›••ºáØ¡k%v÷›5H†'AmÍ­Å”%¡„¾¸8½½œ¾•s™È(Ùdbiôv4®ÉÛ6iUªò>ùNý,€Ù˜ì9"œsAj(²ñEßè|*(’x2I2>/É÷ˆsžÊ$Û¤LFuŸ£L'ÿ8*—r ä(æùRB¾¿ùÕ䨪Óy¡±A¢"éí蜪5™žùÅ9–¶<M¼”±_íÃ)S̛ݦ¾øåÙ¯÷œüc¾êù‚ð8‘’gšwˆÿ“E|\ endstream endobj 1228 0 obj << /Length 988 /Filter /FlateDecode >> stream xÚµWÉrÛ8½ë+x«" 6BÇ(¶ãTâ™q4sqr€(HbD*\bëï @I´%Úq’@,ýï5ºAÅ4XÐ6W#h»¦}7½½$4H"ÁfËaq–LЈ ÌÁ@I8ŽynäFU[™*÷y/Tˆ(x°ŸX€Yømöqt1}!tdEÒ ÝŒî¾Á`a&?w°H‚ûvé&ÀÄ,Ev£¾ŒþÁžÏÎW q*XÏYÊ£Sï,P8FBð¹X4ZU­SÝ‘ß^Æðè¼0Ç$b4q›?¨Ò.«\+]£³ªv½bé'´vC™ô`p}zI„81˜† ä1/¯g_œ¥‹‡Tmë¬È;—-åÊ3y{5 îì:†A}´SŽ¦Ø jAÇ*Dô iKÒ±¨q'*2¢>pÐÁˆaD`Ü™Þ+ðÈø'ËâŸUcQ¤ÍFåµZ¸ï¼óÀ[¸ÏêµëÍKã$™ò&ªJýá´¢OUyÆÓéW㺊v¥ f%2+©×åÑSyÆè¢ÊòÕá¨CáqÌÍ9k²ª:>dî‰Zéb.uÕqaMäÙ3ÁˆÌ‰Ïðtޝ6 Ûƒ?¾ÿÖ™~dìÉæS¤Ükýó¡ƒ9·¡ƒãÁ¦E^Ë,oɵÓË&OÝ¡Û馲qÔš1!Uæ–{ ;76·dîè1¦c;o#»u˜ùx8©xã#ÓÚm|„߯³4Dø¨Ýd«µŸ™«þ0κÎÒî/J?[¯•ïÊíVg©|FÔ„@ù™‹]‚!> Ÿ¦6Ü~=¹àÎì>¹þ©R–Vš4䆪V£—'šÙºK0YÞ²e“@-óîòM·®²ôöy¦,šÕZïŒRð¤Œyá;i±ÙjU«þZ©·k9Wµ‘GëÝ«kIwõ'“i¡›M>(ld¦Ãw·åé¤ù¶h7.F@B_k<««}-@!f/@ ô> stream xÚŘÙnÛ8†ïõ¼”.Ìòp§1`ÆY&-ê.QÚ™¢PcÕc@–\Yn“>}D'qSEvìd|c-&ùŸg¡HFÆ„‘ãàï8xv$±Ôi-Hü…€ÔhK´ST; ñˆœ‡à¢76dÉ|îoOòQ /£ž`ܺP˜ècü<8Œƒ¯ààŒÀÊ`@Säbœdd„>'Œ gÉ÷¦é”‰M¡î˜‘ÓàMÀ–Þ½¶X¬9PD+C¹PÞâÁà_Æx5ï÷E¶˜æýþû2â,,ò±Gš…W³´1Ú[[Ž—f¿=Èy´ÃF.[´›ƒ?=Žp`îê^Vÿœ­èâ‹4ŸOŠM¤•Õ"´JÛ»ÒG'ñ)‚'y5(Ó¤êâœ[:·³Ð«Y𝓯vÒ§‹‹XøNl‡7(;‰!P™Tè­aQ.f³¢Ä¸ga•ŽºÜ¦Ge¾­ò¤š–>^Ê@…ù„2bËȬϪIÖïŸåezQŒóɨ‡óšŽ6É ¥dˆS¼%c“'y$Yø­M²Éè!™¡Cv®QþdšÔQ5öspTÉ&vhŽÍõ.v ‹á"ËÞÕbI¶èJSà‹›ÝÔ®ÓçE]¸›ê}õ}løÛØd=ëvKý8²ˆø¹ÏÒUK|-îæ Ck„{ )qoÀc^5Þ®’¬c–hª”Þ¡pø¼JUñ))ˤ½ú4«šl~v„ë›Ãu‹k¿ÒJjAãxÍ8ø&¿.m W4qÝâCË –JsÓàÏ{Ø~[0²]`k¢ª'pv•åë±Ý0·ñ2ÝÅæ¼qË †:嵎J­ní£¿ë&N­[O,ŸXPiå-±{<â¦ZuºYQ‹CýÿnvŒJ§ŸúeRùr5L¦i2çTJ¾?A¸l`B6› /¦­‘æª}cÁãf[àM|üº*ïss]°Þ5liá–ž„ºÝÓ³ŠÉ}@+ì%žzõ3ï·Ç@³‡*f°—^ñ5ß »{«äs¨±ækºûëÊot;D´á64í­Ç¸w£ ÜCŽ ®4åFËÕƒ \ü…^ž §y½«Ã=\s†QäþGŽ…øýÝ<¼LJƒ×\9Ã݆cúLõ¯C¾,?ýÉÈr:üÓg¿86÷E$XxyµÜ^ä¿Lâÿ ƒýª endstream endobj 1289 0 obj << /Length 1144 /Filter /FlateDecode >> stream xÚ½WIsÛ6¾ëWðÎT4$<Î$Þ’´M[W=¹9P$d³#‘*Ayù÷}Ø"Ù’(i2éE€Þúá- Žî#ÝŒÞOFg×)òD Á¢É,"Œ%™È#!y"$‰&Ut‡(ŽÇ4ËÑżÐÚm?6•Š GÏñ˜ašKÄòøËäÓèj2úwD@9ŽÈ†2’HÌ£r1ºû‚£ ?E8a2ž,ë"b)°#8þý1ÂÞ÷ë3‘ÐŒð,¡Œ;/.þƘöúüü㢈 F÷ñ~ÕÕsoÜ<»STPaTd$)è·²?:Ž×F0p°À1Ù¥#‘ ?Y,ݽGãöfËu92„J/µ;òhLsˆ” Øœ${é$Î1*¦&Ú¹Úã@t7¦<“‘”[#iB2æmåom½Óe]k²,C)¶‡÷™z_7Çb„ ”æßØMSŒÚÕòH›D Ž!ìÀÝ¥4áDî³úû‡Ë¿âʰ ˆ°އ#ûÙ”«­Ù—'£´2Ë($ {“( åfk›Ð""ìn2ÚùB¼8Á$]·‚1þÚ?hèúÇ!å8ɸ´%)Âp’bÔ&d[ñ/µî_é<»¦x£æLž¥‰àŸªS®£aÓ?øMi´*m ûÁQtßEŽVe¿I^5uÛøÆX4•ÛÔM¯ºYÌ ‹JåŸêþÁí¦NQ­fî¥téIËÞh;ßsÙ‡ZŠÇÿIJ]׆LAš€4­tÝôoÕ²SZ5}ÝÜ;ŠU8”B90ç '«F[÷—ãü`Ù!9Ô[Ž@#•oÑ€6êŠÎš—L@tдÆ$ËRtÑ6}QÛ$ƒã²¯÷Ã&è0©½éª.‹¹qÇ`ÜúõQ•}Ø»NgÒøÉ ”®V·@±LóC öô[¸°ÑÆþÝê¯({_A…ujYgéÌw·Á¬ÜeÓ´Ó”)ïý¹ÈaÐ N¿ ð`iôjfˆe r5W Xôat®žKe[G ÆBÛ¸_O«gáL¹MUô…ÛéÕr9¯UåþíËAÐSW÷^¬]ª®X›ªµ[çJë]‰Ø?Mèrþ®:58xRx¡ñÝŽSŒ#ż®.ƒI, f—ê$”ݬxòfþù)ðʘ‡ÁÂnåQϸ\ fR ‘ÿ? |^-¦ªûmvë";-ý(ÙN?C3éG C+­:GQfFíþniÚf¼luÝ×ʉ4¦UZŸÇcâÓÙÊ­¹6ÓP8ÛÙVßó£oýx¶)¾?/…  ùmWyúÏ_ãÙƒ¿Ø.@a«üfϰDEß«ÅÒ-ËÛºµSEåv…'lNCؼ£iêÞ“1å ¼ –Õ®& Â»(\C¨€#Þõg9ÊðNÜw~pLìsû„Îða ŸX™H7?…s™0᣸Qi}*ÄâK~KÀÅWò¯aèâVŠ)÷”ìós"w4Š~¸™£·¿lÍ#òùžZþ%ó¼Ù endstream endobj 1334 0 obj << /Length 1266 /Filter /FlateDecode >> stream xÚµXMw£6ÝûW°„sj*!>½œL2Íœ3™6qÛ…›… rB‹Áb’ô×÷‰'l0ÄŽ§ñJŸ<½{uõô1 b|š|˜O~¾r=#´#ßgÆ|ePÆìÀ ?òl?¢Æ<1¦C¬©„æEÆ« «×y",ê™ÏÖ”'ŒLY÷óÏ“ËùäÛ„‚qbÐŽ1jGÄ3âõdqOŒ?ÄfQh<5S×sa*UfÆÝä· ÑKe¸|Ð+ÜŽbp;rÃ÷Ûab¸¸ø‹GV³ÙE‘Õë|6»Î-—˜ß-‡˜¨¾•¶ T¹©eÕNæk1¯+m¡Üz…m±õ LêSmY“9B| Ôêã°%WWˆöÝÀ1v&¢ÿDùvÌ•Ê_6âÄÓÎFN;3Û1.¥XoZáÆ4ýq,0ˆ2uTQÅ<ã%Öwr„a=í;Ä ”Â>« —üuÌÀ}g/Ÿå/?NÖÞHHR,áÝÁ`_wúS !¼Ž&\]Ïïú‹-+x”¥È+?L·ªŸ fj‹&&ØÖÔwàºZsmvB†Ù—íÇÚ-ž'cÏ­ÓR}ž‰še$Œ|3ðÎÂvG³[·P¶¡–bØÄˆc—V¯¹ŒøG¡ðñpã5!q"3|o…1†ý‹X+©€lù÷î›RT"—|ÇN±Â’c‘¤Õ?̨êW~fâÀ N)(+ôÎ@ „:žË ºò ò˜ØÿO³º}áÄh¸©ç¢“Â…8®cFÑÙ ݈ü € e¶#þnq³ç’È„tí, oŠ»ç›bòÒÕ¥êy9,ùÁZ }œd™6 él-B*ýX$âu|ø†zо¶ ÇM!ï:Ù¢HNWŠ[¹½¾<•¿æUßd3e—ãÀuäù!d©¸I8¬.ö¦Ä¡ù F•ÚTw%2¡ºw‘¯³¨3ú¶Mv1fµO½ën¶_ß‹H½+(ùŸIn0Ø‹TVãi툭ÞVhì¯ÐêK«VÔ=ÄocƒçðÞy}D•@§?Jçèïä¶G£S~÷´?q|Û |·û#*Œlækw?‰\ÅÕ6mõÜŠ ëCÿ_R¡I)–q<Ý̈7£‘Žœ-íÍŸ-½ÍÈð±P?„ž_t,ퟀÿÄÆª endstream endobj 1206 0 obj << /Type /ObjStm /N 100 /First 994 /Length 2514 /Filter /FlateDecode >> stream xÚÍZ]o\·}ׯàcûÂ%g†_€ÀQk uÛ-’F°–×Py7ÐJmúï{†«Ù»Ší„öª~Ú¹{Éá¹CÎp91&\ŒÍIÖŸâéou‘‹ ÍÅÊ.Rލ©•SÄoqœ{Srù$þIÜûW£¨P]KÚ'@Ch‰bPE¥¨cU•0t"}Ñ=gÕÁx¬A%ÕÔDf¨TÅ1©æXu«£¤¾Š²¨¥Tj—¿©RôsŠ~ÁîSH%q̉ô#šci—£ãÄjAmÁx•ÕÂúé::eÇ¥[#áe ]WR{("C¨!‹¡ýÐ&)k;ÎNJ9¤ê<Æ“V{æR솗àu¼]5 ¹”ºe%妣‰8ÀlC’K­öÙe1HÅeE¥ê²„Þ·¹œDû¦àrîvJÑåÊý‹ÈA±öMìJŒÚ#‰+” ÆÀà…[ï‘]I¢–ÍÑ•\õÛRu¥j®*µÞWWE·>¿R·¦ºJ· Õ$Ú.'WsÍ#gW+©50Áµ•>–TŒ]KÚíZð¢IÐv0SK}æ ¹–[ÿ]«¢cq­UC'/DÖ /°{ ÒûpØEô ©éˆú*”n’ŠçPû:VóÆÐ§Y¿¸/zˆ0WdÑauÆÔ­¦jbNø$5v,p%¼Q©Ozíªÿ±ºO¬µÿÛ×—®DêÏÒÝ¢[<«Å8tp¹‹±’TT5!ç“GNÏÜø'ÃÓ_ºÅ÷?üSGð˜",Šà,»¾¾¸x{òÍ7¿ÝZRò Ÿ6Øš¢Çw 6ŽâK“ÁÖ,ÅcVF[öêƒc­|Ä k ùF¿2Jð¸nµ>ݬ¯Ü£Gnq*êKi×í!«@ñî!i\¾Qx £,¸Ý¢bÃ:»yˆp™Ö |ñÝåæìÕêʽq‹ïžºÅëÕ/Wn?îëÿþ¼Â‹åO«“ÅS`X­¯¶ºÔº²“ÅËÕvs}y¶ÚîÂ[ÿﯫ÷çË'›_Ü›€?Q–ë[ ´¼DoVq×ðñz½¶7»M@ñôMàFh7B &DȾxßFLH&dlˆhCD‚¬;ÙdC A;Í¿2Lÿ„“Å«ëwWýù/çë,žl.߯.û燷‹?/ž/ž¾‰ýA-v[KÎ>~Íë&¥z)«AÐîqŸíWnñ§ÍëÃjùÃöúÝÏ7k§‰ÔÙ; ˜(Ù7,+iäSÒåšýêïWçGD“£¯HDÄ÷t¤_°»køç’ŽÂ€«šýD 9öªÙOc‚ZÔÜØWì·"ì…þO+˜a˜z``A>°‚éø`8b­ '20LY÷ÞßÞ†Zòõ sÏ1€‰rL4±çXH@wkç òEÏ­ ¡0ƒmy¤»š¼Œ€‘°pðqZ3`?ÔhKšK¨¾SY³Ï"`òñÁÄ ï)ÓæþëË€k#ÛœLäóuƒÔ·†6¦ÎF4¡™°¤ ñxK› )‰š°PõàË#Qæ–_+kг“Ö@5”üç(Ưï(FjUF§‚P[ b»€1µæªû5q[Œæ€øÜ›Ääð)‰Iõþ$†Œsðž—áý+£#lt„ްÑ1:"FGÄ舘f1ÍbšÅ4‹iÓ,¦9™ædš“iN¦9™ædšSž…ú$ÝôÛD}9ÒÈÞãñ½3#=RʹƒÈ‘‡v—8CJ‚åæ©M{]Fì(CÛKLÇOIR È¡§ý%µê+ %Hy4(ҔȦ‚d; ­›2¤úzî»G“Ä·¡-&ÖÐø<í1 A6Œí1m0AééÁ²Ñ#³ÎŒ$?Mgðõ6ƒG A3C–¯¾æ)¯î>ŽdI<ƒƒ ¤ñ€&/adó .‰  Q:QG‚ÏààÜtÙØ!ìÚ1ü„f@SàCmÊh¹4ðŽ!v8ƒO±À‡Êü‰âP¸¡9LCp¡i[`Nz86†gƒd\dŠÄÁoÚHì£9Î*H0M±©¸ÇH죢 áW/CöhJÐkš43Dd >×i #iV²3‚f†hC OµNцô`Œ†\j†t‘Æ·|p¥'cahÏOÄ">È´gêñ7בØÇa4z2ÐèÉØP:1_ˆ j{‰z6–†Ø }r¸ÚØáÂXú1nkû”˜×rbžŒgc»ÙØn6¶›ífãÑyßËxt6]ŒGãÑÅ4Ó\Ls1ÍÅ4Ó\Ls1ÍÕ4WÓ\Ms5ÍõÈW‘»­|<œõóqž!ô(ס»óq‰_?>˜ûÓqúšØ8Ó×ÄÆ%|ElœÛ w‘¡LAF‘¼–IÔKƒÏ;ÔÙÅr»Ý]DþŒ·gç篗ï.VǼå×í“:½Ò’;jÙgÝNûå[udDû»I$=¹Ðá„Åöu›5.0Oä…äàúm`1Ï“óõÑç¬èUh^ó-êE)!Ú*H¤>_ˆ†4g ¢z‹0ÑŠxýÀ!q?g ¢ôNî ž K1ÏÓÍÅõÇõg,c×DâÄ€¢×/„­"$xF¦/\qÏ i*·(â…¸ÀfŒ˜E¦/Óº],ìü…;÷ÏšG¥çëíõ‡çgçÈB¿½X}ÔTv†‹gøZ<8X@éÓÐÁ‚Ì`7ü òTªj7€AYË]ÍöïåÅùûgË«¥‚š£l]n_oǸn`o18"«b÷Õšq"B‚r?“½¸þønuù·/7ÿ™a¡Å¦A= Ël\á`f‹È2“Ö߇è£V¾a'йÝËl0×Îrs”hXåƒzd|CgÅå^ë®øo7¾¹µGÂ'£¥ymw%øÇ¿“çÝù-êÏL÷§þÕÈw5òÝn¨¶–ÄßÑ2M’ Ù„bB5Á4[É2[É2[É2[É2[¥2[¥2[¥2[¥2[¥2[¥2[¥2[¥2[¥2[¥2“i¶z&ÓL¦™L3µcž%˜ÃÚY,¡çÞý,¡|û 8,&xùqu5‡Ïfø,Ü æ„½ŸÒÃÖ+íͦ喚îƒi%æàïå^l^À‡ÿ±¼¸^Íqôp›íç}ʳg`´ 1+!éÇæÞÏÌSEt¼Kž­ÒËåú§Õ·——›–VÂRJñàl$c6s½SÉ×ÿ^¥·á endstream endobj 1387 0 obj << /Length 1427 /Filter /FlateDecode >> stream xÚÅXmoÛ6þî_¡P«|%yÀÖmútèV§#1‰6[ò$9i÷ëwäѶìHN†&Þ'’'òŽ|žãÝQÄ»òˆ÷fôr6z~""/ S)¹7»ô(ça,O¦Q(SêÍrïÌg$³8ñ§sÕ4Ø}Wæ: ‘ÿ-sÂ’Ô$8Ÿ½½žþQPN<ÚQFÔD^¶/‡ï=ò4ñníÔ…ÇL¥fáÜû4úmDÜï¶Fq}å,üÞ{‡©`žŒâñÏ0~!„µÍdrònöé´-擉ZµÕWU×*`ÄÿþuÙÖæ ÏO`)hcaB%˜³z~Æ)» Øáëô(IBo&üb‘ZŸhOטò$Œâ:Zävÿ`–ÌÏÌF‘3l¯U‹½E±(2+å Õ(lÚ|2 Æeþ¼¸¨UŒ)œ?Ú³›Û5ÅÏ`œpÿÂŒWNù­Tõ_ÎêmÑ^›Àîwö¸²qçÛgÊ;_\ú”Ä;ÜO2XÀ©ðÆ ,Òd˜Óé‹Í>úÈ$–ó‡“9ëQÞÓ’ Ú(0¿ÔɪÌÚ¢*ƒ± ܯ.þÔY‹ýZ·«º,Ê+NMöÀ¢ô²¶|,p¤°¹125ßNMˆ㘦~£õ0!Fÿôs ‰¿Ûæ@v ØDè£=×­*æ9gΓ§ãüóaÒ) “ô~ÒÅ£‘.C‰!Ò9K6¤›~‡t3œš&í’n¤[ÒÍHas:ªÚi¼Äu[G¨ïî#8‚H£ÃŽ`Mû>ì&¬½Ãîõq‘€?¤Oèw¶|'Da’°ãÅ’†RÒ€K0m\‚ ÙóæÓ_øÖqómŠÒNðÅ%1£¦Ue®¬(Çù» í÷²o6årþªÑ9öŠ[“j†y† †“>Ù3oT.–s½Ðe«,$ƒZ)£L<©÷|PmÀÆ®U Ýç;Œ…B°ã……1ÙË!k™jMª‡ŒºñÎã­÷迺:z×Êm7'*–朶§Ú¶.\î×?™t/ýÅœR”Ë•SÖÀdpîÓHÜ-œ§ßË4ŽJ‡è€ÃšrRæQ?„ÚÕ¢7Q-щ¥!ƒÅ;Ðuˆeiܹúi—Xˆí Ê[ÓÛrkFªÄ¶ØêV +÷I&q—d–nHÞ]߆xvIhul&“'û!÷øc[]eSÛ§òxŒCmO£x¯¶wáµSc Ô;Á©Yýg¨¨*ç†1X·Ù‡’…ôB·›ib[X˜fYe«l%!ÜÜTzòú/+'¡ âˆÜñPÊèQ¸ÃýOÔAùuêf¦ û¾ì½x^Ä©VÁ¦eÖ_1ÙÖ_ÐwAzXm5kñÁr‡ ”;Ä•Ð7XqVÕµn–U™c9gLTت²/ÞvØ–!û6EæÄá<lEÌ€töd¤Ÿ–µÎª«²øÇu:ï’¿…c­®{¨×ß2½t<Ø„†¥«¹·NvÑ}zôæôºÝ&›]º¬æ²›.³jeï Xk0ùåªUn+Ȕ͂YµXª¶·D†d vçzÿÒfSQظdD<1oÃÕrf~¨õïåÂýáã©yg,Á9¡ Ç—)H6×…®ñ-xCµ2wš¦Ê åž¹ °Rhßj•ëû¯,¼¦wZmÓè‘·¯Nhé¡ÿ „ÀŽ?2v`ù~ ^ªF÷†á·°šÏ§„;¶P|æUcÄËH ^ç.O\à»lø™‡1åUÔ Nï_ZJhÑô¿ü¥]ÿ{•!‹¥èþ?NÒK‡Õ]‚Ç´ëÇcå³ …Ô¡øA9È 1Ù–9I> stream xÚÕXYsÛ6~ׯà#9SÃH€¤¦Ó™ÄGêd’¶±Ú>8y€(Hf#‘ ;ú÷]ÔAÒ’å*™é p±X|ûíbgæ`çÍàõhp~0'B1ç¾3š:Ä÷QÈ#‡Ç ñ˜8£‰sçRâÑ0rßç“z.ÍóežÔ ™U¢Jó †‚0än@¼Ï£·ƒ«Ñàë€À Ø![ Š1s’Åàî3v&ðñ­ƒ‘GΣ]8~¢DMœ;·ƒ?ØšÙ½+ÅÅÌ®ð±w#Aˆâ€:œ…ˆúÌläââÆ´*‡Ã_/ÿo2/ÀîƒG±+æéäê[%³¶3ò8vWK©7Ó, AaàœØ³ ¯¾%rið}âV¹ºcw,íû}¡”çaI§F¦.eaF ùµ–eUš7©„KŒh¥l± Eeža?fy¥ìw,[?ÕÙÖ•e•ç3&J»³6ŒÎþ~³ÁîÌ;ƒ«Xv¸sÚ?ÿU™¤éȋֱR4o!i¤òb¿–×iö´ŽÞY1%¡K(kI"g]K@=‡+»]ŠJ¼ˆ445iÔ]{,Ž:¤QßiÔÝF=mH£Þ’BŠÆ|j4‰föޱÛ2¡áV­´Êz¹ÌÕ¢ÀCi 4V®Ìsb`Jó=Þ¤˜Fàþ=ó!ÿPÏç)ôż>~°_ïöd¦¿¢ª½—R~1O²0R&´ÌØÔŽè—/:ŽWv ®“=QE~…ß Û:Qþ¿§LêÚõ¿†,:1d½¹ïüªR µ…rU[B %E•)=÷g#±[}0HĨOŠÃµŠ_ä¶–vJDÞÌ&4>P`} …3åÕ¸¬ ‘ØÜ1¥¥H¢æÏEiý>‘j¥,Íf ƒ¬\šU²˜ŠDîòco¡x–±¶æŒÿ‘Iµ‡U~Ä|—øôĬú"ñ0x€ ¹,d ýU¢eù¼Ðü\í¦³è]7èÄ~×7£Û>jcë’ÜWŠyÑ韺ÙÐ(Vî Žv'~–Û¹õ"Ÿ×‹ì¨T®Si@Lñ×ï­Tª¾5²Âܦ"×…4ßÌ||©ŠTÇÀƒÜ’†ÎÀØ¥‡Ê¥LRµ9é+ù2ŽÝ Ÿ‰…¥^CššJݦZ…@½Ë=J"SpE+_#ÊÔ£ºé4ÇBwÂTžƒðÁ™£( 7‡‚1ÞœFhû4rhŒBë, ø˜6ºQ£]_ë^{¬<¤x“¡ÄY¼زìeáù5ÅÛ•ƒ£0‚-SŠ"ßÒïmõ´€'cÜMt¾Ø¿ás A‡Ã"›É«¢XgÕþ 8¿f!˜…yš’ƒÀ:<#lÍ’?v;]ÁTMÙ°hYWe#(lÍHDÝBñJ™»n ò¢læZiKo“3…íOó¥4s+\Ês`ÚÙo ö³õwÂOˆ;´º û»È³ÙÖ“ÐîqáN¸:Î\-D•Ü7 ½qåúЩg‚qÇâÆNˆ› @`­Èª u¸ùÏ@=…„¦d“R·!L̲&ÃI•½níûÁlÚ òÛRf?“\-ºÅ˜´Ü4(ÇÂrz²èj|ßîzN”ÙZPÙù’þKÕj¨2ÌMõ:ept5j²ºÏ'=q×ûO`‚‰ù§Öü)㈆<ØþåÅÈçÖ)od& ±>ï7 Œ¼ ½åÄ{aó8±¿á”ÏìH8ÄlHâžC^ã³n›q™kÔWö蕵·ÿ/ùî¨ endstream endobj 1339 0 obj << /Type /ObjStm /N 100 /First 1023 /Length 2838 /Filter /FlateDecode >> stream xÚÍ[mo9þž_¡w_d‰"% (hÓínq·½¢/{/E¸©o7¸Ôg¯½_åÈNw›b’Î4Ú˜k(Iñå‘&¦\p1v1g#Ä¥PŒÈŽ%QœÔvE]IÕˆê*¾Äqk»?Fc£8€Âݬö5wn†5¶³Un÷GA£QêˆÚ±:JíGBvEG¹6ŠįªÍKì0c£ðTLbÊ.qj\ŠK²§.j¿V—´Ãm¢Í›T†¸Iñüx$Ì‘4A¦°âܞ͚ì^ÁµZMBN¢èMR°y…p6™µ:Éí9Dœµ9$CµdÏ!Åå 6‡¨Ã°vou9»#—¥=[Ž.ç&s&—5Ù¼`Ÿ«š&!x‰ÜÆ lÕl«³G.®äØ~…%Ë–Ku¥¶'/Áih\JtJdòršš[@ ÝJPØinÏ[Ä©6 –ì´Öˆ9À´BOvM]ÝZ¡À]˜ì‰×d« q5›| {Ô\l›<i$F‡­ æ@a«ó›_À<¦¾!_dÓ3܇´±UÛUŒ‘ÚUü‰d73¼;bJ1óÄælþ›O°‰µ´«Ð …X"›ŸSÌvÕ¶®mžN,í*¾SÁHÌF…ÛüDªö”±­­Ô”æóÙHmNÕ˜ Xa'¦fJ²§hZkë…í{ªð6yl¤= å¦H„ÍO¹Í#°hlÒ5£·uÀÙüÓþs |pïÞÁìŇ³…›Ý_.W›ƒÙó‹7›öý¯'Ëÿ̬ÖoëW!"¼žý8{<;|Û—ƒÙ³ÅñƽG_áqBêK´ØA>ãY$UOœ0î¾»wÏÍž»Ù«+7{èþt|:???<ü÷Éæü(ÅÃÕéÅ»¥Q_¯–¿l¿šTvß}w€_.%çì6’}©ÕqQϰ–«üI!Ï/ÞœãÞ“ÕÒSò1Ž'LW+{¬Šì3 ×äá1C4öýûÍ_Ž'qð+ >á+" eòÑâ¿FÏyˆD¿x>¾¹8¯²7b¯G~b/šÀ^©øi Òpñ¢e¸Áv.ޝ‹å9DÆË|µôÕÕ–ÄsªCÔ–&P[ (_’%Õ„HÁ_ß«h½eõTñ‰¼‡|íA Ä©wçæ©Z€I{{A Éyˆ½x|{!ý{«äHØ 29Ò·WŽŸ–f³¾8Þ|¬ŸÒçËÍáz1ßLàÝ(‹YvÊBUãQQ–L ,,-A}C\½0*K_³õ¥®«¿-–cj þce.‰·¢o§ª”¼ŠžyM¤7†¦`¾jflQTn¢©'«çÇ¿Ž›ùB±n¢"8*RMØà‡…¨Q¥é†#D(®{§ qb¹2¾å+L-„êÊj‚TDtËÁ¿×s“ñÉjóüâìlµÞ,ÞN 7¬¾œ÷‰ÏBZ¸!zÓ ô¾1¢z4Gègɧ:,ñáóûõzµQ*èHуR >Ø:lIå'…k‹ƒé¥ÚY."×} 4©ˆ¥À:¾å¢*J!X uq0è£*¤Œƒuôþxqfòo=´>6ý Í²žXóµ¥Âב¬[Ý12Ÿì, £Ñ¤0™áåÖ\¬=Hƒ8]•ð ==šoæ§è^v~¯#4Í¢Câ}Ô>ă"™cŽgnöþ˰,_ Ôiµ¶[^œž¾îƒ­–›Æý&$í.ü6{º^?_@<7{úð‘›½X¼ß¸×?ñÓù/‹ƒÙ!X,–›sƒ`ŠÝov¾ºX/ηXN»öÓâíÉüÁê½kºÈ‘\©–&žÎ׸»Á&ÛM瘸ak&OƒÖ¶„ô+²»BHàKKâòŠt"w¢tB;Ñç>EîSä>EîSä>Eîœsçœ;çÜ9çιtÎ¥s.séœKç\:çÒ9—ιtÎeËùõ¸Ë##1š– \ÎE¤¡)ýåæäÔèùÅfut4_¯çŽŽÎ6ä… ÇÆÞ­˜lHE´b&@rÀz…§‘Z¶‚4–Ù™·F]o‡÷›ÎFTW`KNjöPc¨‰È eCêÍüyl/í)ÈW¶hw\åë›Ëí94!aj"-Þàp)Öˆç[¨ktƒ"E¨Gàîi_ ÔˆRàîí¹Ó`R¯m''¢‚€èƒ)äoÈá°dߘ|!A hhEböZQ{k@º6мxR½{mQbŸÙ6²ñå¸dÔ†—'\tÐØÖ|è‚}±=¹n¿`½š ±ßhòðxôãÅÛÞâgðñÏ™ï§ùæø×'ów‹ ôÅÈHa°@R‚ИÑ(„^¥‰„~K}]¼›@]p' [;uE»>¨¼˜hI ªÔ€€È“^ßN]O7ëq=,ÖÐö„ oe1Ä“|ÛU/\¿¥EÚ6Ѿ5³ h(qñ!TXU,Ø;´*¾¦x{³Ž¹vVM hv” ë3¡“¯E¾¡¥jH;ó>˜„Eeò ¢„@‘mS«"AºDäƒÜr Œ»hP±a´ø4šÉÐ=Ù6z1ÐÝ%rØs¼ i_eÈÖ{ S@Úâ ú^Ãùk4Ü?£_ª7í_.׋ãÕ/Ë“ÿ-ÞŽlFA¥¡H’¶Ö¡u*ü-xÚt·…xt'iH´Mq Ð= À'2뜴}rÝþ°^]œ½˜¿9@I±Z–ܧ$ôHˆKCÐÑ4Ž R]nÉÛ±'eD‹ôÕ÷»,ÛzCŽå×QŸ«¡ÜvˆHïlÿ-fË~tË&Ï4¤ëHé8­æ/Àigb´ãv_Ú2Õ?€¶Låö ­v”S;Ê©åÔŽrê%ÊiÇó. êDêÄnŒt"w¢tB;q‰±Úa¼K¢sŽsìœcç;çØ9ÇÎ9vαs¦Î™:gꜩs¦Î™dJdÖò#Šÿ› ³—'Œ/›Ÿž¼èŒ%4˜0{F\Mèé ʰs°ÌjT`<~ÿ„x# ¥È’i'S"4N™o"Óýóã““‘câè•®ˆeª*é&b=8YN”n¬'žX·je<ÿ³Àúg½¾ùÖÃùf>M­s{ø:Éð5CŠØÒfÅççàëOkíÉê RÐÏóÓ‹)”e{®²ìÀëpíÙ¨ß)k,Ê(« `•‚šç&ç“wº²ÓGY|ø/æœ@[pùÌW ~*מú¶&€¢¸96Êh.p)hK*wÝ÷Xp†åä ,>–!ØfÒ)°àÔ r;Ý#f7ä –AQ}t2HIEÚyéj'[+ÊK5íY¹™vVCm¯²¯¥M¦5þà6¶1Z­l±Pc²Û,ƒÿ§ã¶>ÕN³B€¶Ì‘ùì JjgÌ3}ý“‡ z‰%íÅ1ëU¹‰<m‘å¶+¯@ NC2.‡)βC=7 ADÛ€ön4(ãNTÇ™DÍp» _ Y^§ØÁ°÷iRK²ÁŽCWÆê`ýìóìö- )ö">]9>^}´¡Èc1hËŒØa"!ÝF;"jØÙ°7nöoM=›/‘qG>-ÚŒptnÛÕÎGC‹éÛyå¥ËÙNl6˜m½@ZÛNû¿´°“%º†ØÙ p;*r·ï ì„C/¨6Û1{ë^™…îúh>Kk›ÑÑxmзÚû›$¾Öz‹ipœ½n:ŽûÄàÔ'fOCÇÚ~2ßrðÿq¾Ä endstream endobj 1467 0 obj << /Length 1390 /Filter /FlateDecode >> stream xÚÍXIwÛ6¾ëWðH¾W1IpÑ-ñ’:}q_m¹Çˆ‚%6¡`ô×w°P Kɲ-×9aŸ|³È™9Èù8ø0¼;ˆ“úY‡ÎøÞÁaè'qêÄñã ;ã©së7 ’Ô½¤ &–4gfxÊófÁ*IeÁ+˜ œºQàÝ? ÎÆƒo Lƒ7ˆb?CÄɃÛ;äLañ“ƒü0K½uá„lÅê`é\þ +)Ú”8@›äBœ˜$~#ñ— ZŽöœs;$$vó’ a”dõÌŠx¥·¨[œ|A(b4:¿_F¿/YíaäÂ-=ìòê’Ëëf¹äµ7Œ+Ùt‹O·}wNÅY¢„ ?ÈBgˆ#?IR#«œ×ÜÃÄ} Ã(pï½¹Š|a·©Ä63½…¯d‘|¡Îÿk$uE“ÏÍY*Ìn*%[,íaìJn¦+Y.MßJ ÌŽûš/ìÑÊÌ :cê¢p©!F~F¬ðL û]²J€þ= Wwü$©§Bгºöiâ¿„ÐM?i+A!ŒȹuFΖÖ!ôÚZ¹j<ñäþ0ýŠWÃÔ"ƒ=z&7W*ìP€k5–IΧL«ù “cƒ¼ºÛëÝK~Ø*lÏÜCwW¾£´,{ô"WŒœ·ÜÊbbM¹£Zǽ¥Î=¢¼ž–/ :·KN+ ZÞ g/ŠÖR'¬ÕÖ ŠJ2E†¸-w@k˜hg#O9>rÌ¿‘E9ÝT5ƒèšóYU/Ž=¬ŒdÉ^Šþáb¯ØŸ©ÌçýBµ^soñ—Þ*çÒ…ÕßlÉòW¬®r¾XBºÓ"”vö¡ónŠÞÌ~=½.*%àßX-‹éÙw• M&z-M…ÈØ|ˆmóz¼™¿‘Á\­7‚Õf¦fß&¤0£­”i¶ð 1*M/§pK²âvÒðÚÕt(9Ÿšyº¹6_gæ>*‘+¤¶5ÅÃ^äß‹¼( ¨´5‹s[åÉd>Õ^"?“9R €;y5Çψ ¡ÐêªÆ›ÆÚ…¡5æ¤zksR£¼ftMÛÝ´=­ ·­%ëéÐÓf¥:ÝS˳ @]znˆ­±K~Ù”åŸ^U6ÏWN²;*˜ßc_7X_úüªðdÔ•÷x=}j=÷ ^Ãká7¥ÇmÉ^#ÁýTP3zl‡´Õ¸[6‹ê¥Xžm¤˜ôCB“ Ôx3ýÀ|»šFG‹²©™Y7çáÉÇ$À  ­,÷ì{4çZ|ÝK–êÂú {Ô:¿Áb[;«ùŠ.¬`&tƒG™K‡})ý5‹ Û,úü€(xT£Šbt–aL´ÃÌG©nÒöª>( 2G[?A÷‡bK=<Ÿ,V<@æù [ò>¶ Z­úvWìÞKÀl¡ÊbûLÈ‘·Òw¾UàtÉEQÍÖ¯˜ƒ ±/!k;fÖ‡h55YÉ'´lK@¦ŽW…lÿv*aë!x²:=±\ú ½û[ƒó%ÚS”¾Ø «Kžán'ëçÏ[ÖL¨gR« Ío¿HWIgmñ÷ÿ­ýØóÑ QÖA+¿n«×ÝN±ÔÑý˜)R]̆Q–ÏÁµ‹Êò7áJÖæ¹¢¦ENK-¶¿j0g‚].ûC”§­7®Âää~Œò~"¤yjçò€ÇþS%jkÿÉ_€hF½_ÁaŸàì)_ÁíguìIm~V§™Æí¬b55UìFU1ö2È3öÒŸ©-$06m€@Ef&!2ÂY I°®:6Bç¿è”ëŒöc¦’XL÷úÿI÷¸S endstream endobj 1503 0 obj << /Length 1294 /Filter /FlateDecode >> stream xÚÝYYsÛ6~ׯàSJÎD4<4Î4²å8'i£ôÅñEÂ[^áÇýõY EÊ”|HV;}/»ß~»ø!e© å|ôf>:™™Tqtײ e~£`ÃÐmËQ,—ê–‹•y \©„hcb;ê{/fEæùL<ž¦~³¤ôÊ0Mà±±£š†v=7:›¾Ž0L‚Üë.¢Š®®‘ÀÇw Ò ×Qn릱b˜ÐóŽ‘òiôûIKQ×b‚ºS¤SJ‹Ú:1¨°ø !´¶£é§\)µT?òŠB~à–åKiâuîÕÙ÷òíéç^çÍëÉŒÚ`²\›[@ˆN\CcSwMS°ð ‰’˜²¾½Ñ ¤¦¹xð¢h·!³‹ù§Mø{ÆGù^²¤°Ã+0¸Ð0U_‹ÇPgüIׯ†iª±·”¶œ5ݤA^ˆ›¹† R½…¿+DïîÜ [Ÿ‰îR¼7è÷|}ä—,æØ8w©tñóKqŸ³,gE‡¬üûDA\‚°øûyù‚‰ØñA Ëâ,ÏÁé]ÈÝïþ,‡‡–ó†’=åJÒJ0ÒgÙÛr•§[ù\3KÆ%I“ñ?ü#ƒ6"G8‚%S<¥JNâ§Á“ùHmëÑËÀ;8ü6ˆWOîG£x8媙- ¹†¡4i„:>¥gJ/Ú· \e)”»2ô¢ëÇ‚8ˆdå‚ cÙP>LJƇ¡jâE[“Ô‰EÑq)}ž§UÖ¯óû<]£ØÖ×0Yöªê*dú 0Ð/õÃZü–y“Á8ˆ»Ï ðB“µ–"¾ÜÁ•šoö›VÈ×W·q²ëî:xüE½ 9aƒŸC1û7ÍD¹¼¢Ýrª¥y°o¤~]¥ m# kGÀøÂ•´œoËu] êȶj¹‰ó^®ÈfÿVD? ü]E£0ƒ„ï¸-ÏI‹~nQÜíOê]•Z'”ßò ·Ã´ºv`K·[Dw,‰ù\3õ.c»)ã·¹§’c€O®ýÀ–ªã6Ê-˜LbÎÜ**C «±—ñN'3ØÓ¹0>±øø°¹´ F©GþY´è[ÞfÓ¢–gd͉dùz7vөГ“É4ª8Ùˆ6;¦`¾ZÍDÐϰ×ÖM»5æ—-“y`4ÀKÅcsgL£cØœ÷²GÐ ï õBºAy‘U ~⪣Ö54ò6Faºªd'É WGNŸcg‰f«UÌrOh§ÓŒ%5«âÝ‘ÿS³!i¢Š­q:¸xoØ5T,¾i ÿøüx0`s« %.”á™òšsñAªÂ¯U(»CE쨰 ’—Õªçyá™U‰ÿ"©s3…äd^, }µ;FiuAŠÂR,ˆé†Ömì¬ë5b«¹6˜i®s˜¢£º$À÷¢|ÞrðJ¡åª\ãLvmÝpÝ>‹>TeVIm‘f8ê ¬n¦ %Ò-­‡4d}$Uˆ¤\%÷%‡ O:1ûÏG}½rlQ/þÇkÅ-ö´aÍ£]-Åo¢»Ú”¬Xë°¬²+K‹CŸþ_™s_i˜2éþ”ÙnäÖÅàA>œb÷)ùÍ_ –Nl¾&­ÿjp\ݰä"sÎ. XÐ?Z™k.¬ýrQ½ô¤Ë‹+AÀ4ñÆž :Án YÓ»]µï¦õ¡ÏPeɦû?€ö; endstream endobj 1521 0 obj << /Length 1565 /Filter /FlateDecode >> stream xÚíXKsœ8¾Ï¯à´ÅTeˆ$Þ®ø?㔓ÉÚØµ[N˜ÑŒÙb€ "‰÷×o· `œŠk÷¸'$õSÝÝ ÄÚXÄ:Ÿ%³×gžoEN®•¬-êºNDVûNS+YYw6có #ûcºåMf\mOª¬ÝòR¤"¯J8b!lÏ›IÞÏN“Ù×#Ä¢=¥Ô‰‰oeÛÙÝb­€øÞ"ŽGÖwɺµ\X) Öõì÷Ñž‡ù¸Ä‡ñ;˜òÛæúÆo‡:t¾ „û„‹4/ø ßy“íòZzŽþ;¯Ïé©%Ö‚yNàGJá(¼ÌŠªÉËÚ¦E¡uá¥w}û«ó™u'Ž?ÂD3°¨iY‘6 o´¦r¥›¢ºO }ºâ(^æèt3§¾í(EƒÐŒâp™ýˆ0‘ÓrÚÁ]—ÀÈNæ^d?Ö\Giá¾×C£ã8)3]è¹2„ FpƒlAæ@\Š™øÜÎñly‚ ôg`üI€Gi[h½p Ç¥ÞPûTô¿Í™/í©H °8N…xàùN-Ï.’ë‹¥Á×6×â)-õ™ø$/Õ:Këöíb hèLû””sJì¶(^Í~äÚÉ}.`Ř}¨ÉÑE2§ŒØÈÀa›GÁG\&§¯ôº¨6y–C†ËåùÅñÛKÃÓ¸ Hb·ãõ×ÉÕÅÇsͶè\†÷Ö×Rî´ÍC*ù4‡V&Æ JQQáõÞ ¯¨+].å•=bô¤ ,QÆ“¡RGTqt\ 8s«T ™Î.—o÷Nâɪje6 >08õ“åÍÑ%æØ%±dÕ¶1—Ø?ÔÉ¡&/?|º<ýÃð­”ûarrtÙãøÝJÔIû¸]ô1‡Zn§=2H<\ø1Ïep¼ó\ ôPÔjJl +àbI²M»2 …¤Ó ¨A¥=¬(ª:r¼ÇJéü*’>TgÝv@Ñ\FÚ€¦á¤&˜ ¡îƒ2²Øç]‘û™\$“hÞ'«Ïí=üzñzÅÝÕ¥ý¬-³}÷xq¿ˆû*»~шÕÁAháéV)þM=ª›äZvbp’r ±Ã¢À´’7½7ºá æ„ÐñYÇ…epã“&¥tèö¤âxà³–n^M€+2jX2èÔBéÞñ¼f/p∱]¾yÊØ‡î½§Š p׋,tªîò²ÈKþågS΂E¾ùT÷KWI.[Q·B¡Jß'0y,\xaäѯz†[“×¼J÷Ïw'7úØôHÑ"É·KgÐ%Íûý7XŠè^3¤]‘‡i&$€“oó"UE¦xTTQ)ôou°UU¨³õªÝÖúÔ8ˆç©:Óó‚<Â5¾“¾ªŠ­^¥Œ×BÛyHEgi§måZº¬´•ç“%lUmu$ª§ñ¬S]Ýrlë*nû€úöV¾oÎä€!oûvÖîvÛ¦{vŽ¥ 7º#CµV4¡‚'ý¤Kš1ú씋bŸ ½ã …«û¿¸Êê.e~p%/ÚãÚÝt§ó §Öäc2x£S‚Q)+ÑÍjzdNEª‰ßòìÁS1K‘êÊ«ÁY›ne¦ºZ3ó7ÕÜ#ö$n?í*ôî[Þ¨ ‰i]Uy3ñj©äv/‡àåŠëùp½á´'~¯¸ô»ÝlºO‘º•H¶ëªá?ÿT€júq`ê¼u 슲ùRÀÚu#òBÕ¯þWl¯øÆ{€|™½pLuÎÊx@÷c“@¾™¸-{.ÀÊ,|Ü•êú°_ë®Ô¨mÛÈ ‚8†TW(]Ь™Ÿ|ºÏ3y«TÈ×x ÒÀÞÖò1|ïùàâDf+,%hu]ÀXõï¾ýØ ¿†9ƒÑÿüO2hüšü}B u|¿ä÷‰ùÁ8,Äùmÿ£$Š× 㜗8W™JcjU2!$úVR} JÕ“æë“ð€ø46×gûëwA—;&ýóHöÏÇ ÿ< á9¨¨Ï endstream endobj 1545 0 obj << /Length 1578 /Filter /FlateDecode >> stream xÚÕXYoÛF~ׯ RÀ h½w—+ÔZ;J A¥}H‚‚–Ö6]!©$î¯ïì%‘´.Çh€¼èØÎ|œã›Ùňòè:Âæëi›ŸðýǨw:Ly”!%‹FWa I‘EBq$‰F“è}LYÒ§2‹Ï§yU¹Ÿ‹ñj¦çu^‹9,q³8åÉÇÑóÞ“Qïs€‘†B‚æÑxÖ{ÿGØ|p˜Ê¢¯Vt±D‰yp½í½îáf‡UD„"EoåQÆ7` Æx–vÑŒÁmÎF’+a à¨Ï0J1 ª ÊÏ?`Lëj0ø½Å(<Î/Oµ3Ù°þF_Á†.õ|¬[ÆO‡7|ÖhŠÏœµ†·ßèe©+xb~íV¬U¯Ì¸¹¼öþ~ó´½·"£„Pl@Áç´mØK<ùVëy.©ÂcdDN‡œG Ñà"‘ Þ·¿óñt5ÑNBµ‘ä ¥à+øë]É4ì;§å—Sn¶(“IF‚ðoN¢å«¾‰=•^êŸÍot âqQçÆÙö-'E~—æ#Ÿ¹Å«„áxQú¼î³é¸A;_:ßë!Ó©`Ò'eâ*5‰þ¹‡ˆÈ„°Ÿv+<æNŸÍHt±€´½#9Ã}o¨ß°Šãn!3(d v­ƒ^­lŠc—˜/ôìÒ8Ìü®æãڦ¶×íxŸ$3p>…Z”Þù(åÝ$ã\Ä_ °â¸^åÓ¤/ˆŠ¿$”Ç‹b²;}T>™œ/¦«Ù¼«Ôl~Àï|<þ+‘¿éJ»HÞ.õ6µY‡\yœô%æñÞ½vßÖ>‹Lµ™…“±Eò2Ÿ5Ÿ˜.`ƒc…L‚ã¾PJ½Ôyýw1©o@8ÿzõÀwmõfÁ¨7/ê³ÆŽyÃGà“xÖšŸèq1˧Õö[Uñ¯¥ÿñھņÛÀ^®LÈϰQ¼#Ò\ a¡¤tŠˆd #E*õ‘†È¸ºÉÝ×\›Jùêþ8Ûîw½ðrþ¿6E÷­¨64Vwèi•ýyñ®AÇV»òÓ$&U6$(§÷Hн0¶°CI›,&Qº¡< ¶C}½yŒ…ÇÆ÷­ä½¿†ÏFo÷aK3”±.´yFƒÌÒfŒ±Iå#’2OS‰vú´ Á)\šÌ¸m¨wu°×ÀÑGšÜ‡‰¤G0‘‘*u>¹È뼫Óì™(\.^_ ôå1œæ×g¶Ã@•ÆPT0¢U= ¬}^²Ó©dH´ÓRÛ<œ¢LfA¢É+wÕÁ #ÝÛS0i›1N>™L·%~[†-a`b{AC?cì8ÐT œÊ} ÍTA6‰Ì-³Ënf–ƒ)"k'¨‰w“̪Àb~µé·R-’Í ¡½HðF‡…åªözJ7‰¸”ËîŽ¢ÍØ(„'£(>2¯J“Z‹"aíþï}k…˜Ê:DŒ –úbù~Ê’ qpÍaÎZ§°Š-=Îq(=£ÕÍÂÉÍdezûÎþË9‰]•§ž¶•¸i·})Ë„/!?vyÛ6SÖàsõã ¨­íg¬öǡļàÒlÎŽ§ ˸g¶a7«|§/ `Ø‚ü:o-;Ñ|ÏÛG”‹sã’?¢Å$¾*Ðafî«¶ÉÁÉæÊi‰øÉ+Œ…2T¹Õ§Ä˜Nõú<ø° ë!„Á‰|8a("¿‹0ÖSÀè ìfá‚à9ÃwwÐl› ñøkÕØkh;¢óC!.÷–šYÏnÔ‡þÍQFT»(98>oØf+?@Y¤bÍ›“Ðì@0‡c/ßû"-õÛ¼chÐÇlÝø1€Ôiúãp|³‡³ú_+ÑœïväŒØ¸çä ¥Yö=T,È&Û¡m¶CÝlÞÄqv;¿öý=¯¥í¤y^îÓ x±{8?¢uCQþSuíwµC<€GîqWn’ŒÓÆ ¨L!&Ö§z®Ë¼SòÂOÉ£Dáxå'广•#þ¸I1t·"˜ˆ Wxôîžûg[Êm¸©¶½ïöÚÜÜÆzÞ}ýÿ­“„« endstream endobj 1527 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1AsciiTable.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 1550 0 R /BBox [0 0 500 672.27] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 1551 0 R >>/Font << /R8 1552 0 R>> >> /Length 446 /Filter /FlateDecode >> stream xœ“ÏnÛ0 Æïz ×8’¢þõ¶vEwÍæ=À,m†ú¤Àúø¥Ë’á5[ l~"¥ï'Ò‹@‡gzo{óñk´÷GƒöÞ ‹vzm{{ÝiB²>B`g»9Õ‘u )Xç Ó¥Þ|¸¹ÙퟎWWŸŽÛý¾ûñóñ×E÷ÛÜvfc$RfûGº3[¶™L$†ì¢× 7’)ý~œ¿s@pÉ©R2×Êÿ`$D­P.Àà«7ßìæMdÙ±JÌB^€-™^¥PP„–¢T"N‰€|ã­Ô*å ¦äwPiÙØ/Ñãcˆ ¬Ûç§/Ÿ¿ÿ›Ë%!ðÒp¥rIBmt¥X+µJ¹ÄýR_ê9¾§_JÆèlÀ IdAö_X>fj°ŠR±Bd¦¡B¬•Z5´Kç/ñ`*Ȅň9è_°2Ãqê)$ŸtÃñNþZRrJ8Ìx^+ ‘AoŠ"§“uŽc«,wy0»ËWN.ó:…úÃ89k¶ä”pžƒÙl±bÖÉ ¡1Û(Ë]Θ-C8…žµiDgÍ–œÎÝÍž¤Æ«÷]ãµQšŠÉêÆ¼X @ endstream endobj 1554 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 1986 >> stream xœ”yTSéÆï%ɽßÌPœJã£&Œ[ǺŽU§® ÌŒè(²) ND0 [ , I€’/ kH‘-QÅâÖR\êèѱâP±ËôŒ=ÓgNß˹ô´Çžöœö¯þw¿ï=÷½Ï}Þ÷÷?€ I206S.Í_“-?¤˜9/eæ’̼f>k¦â§¶q y8ß>©gÃéïƒi¼IðI2lW‚㸘„¥Ë–-ÈÎ)ÎËÌ8ª ]³úݵ¡éÅ¡¯*¡‘ÒüÌ Eèî¡P*ËΑKÊ=™òô‚üЗŸ ‘fÈåýçÝ¿»ýý ‚˜½-"rG¾òýCE釥G2cãd b±ˆXL,!b‰8b)±8@D‘ÄN"ŠøXG¬'vs‰`΂OH‰_‘;ÉK‘u<>¯‹¿žïâ¿ìœ¦(*†ºJýƒÞ¶ ©#¸ ™·ÛÈ©x·0Ŧ·ýœµ2wBTûÉ´v»D[šdÁA7¤rô8l͵NÉxM.jp™#§>kD8¯¤"ÞŒŠ ž.»hèÄv ‚¦Vi†˜gIîÈ›"˜a9 )Ca©V…˱ڦ®=xü@C2Çd»cwì–®ÂlbÓ@Ä΃$üåÂø qqëöÈ÷å°(ïoKˆ½,ûÁ_‚ÅW‡ ?9+öse»?D3¿ÔÏ<ë'¿™d( y-s Ÿ„¿=ysäÎõþßã¯ñ—бýŸFÝcÉ>v>FlGõ¤²¡Â²Mï¥ÍÛµÚ­F1Ìm¡ÏÞpî··K3/‰Çâ×a–Àìëéa“û´k1:¬môK‚à¼1äŸ'yÌsØ$̦’ÞNÉcšQµÐf¶à30¬¤'LN­3u€ZIi7j´a&Ä®„<ÊÒ[SÓÌåtšÚ4-kÐ ª ¦»‹¨‡FG™5bF™)¢LQ…Š˜~:ˆé=Ú6f]ÇìŸß„ðûoŸ‡Ïà®° æ t”±ÂXmÀ¬·êj• ÊÚ|Œ~“±ßøY’äZÖiÕñ|,¥ËNÜyt`R).eW;©z{ÕQpbv˜: (ø¼¡«³ªmîØ­k÷–ò£> KÜÎ>®öâ.Ñ ¯ëÂÕÞ¬w;ÄAàÓ3~òþ˜xá@”Ýd3Š÷…É3%ºJÃŒ’j‹ÉfB¿`¯Pa½i×/x‡OŠËš rKË °èˆºë–Îü•þn/ A_ù·I™ä¹ç€ÏMm­Ó:̤Û@›×—ë6¹Uó¹éWf/myh·?®GnÖWD?6Øõ–mˆgG þU¦wü«K³W5æâ=òÞçŒdöüRX¢ÑÕ)+›‡$@ãacÚ[ЗæÞ‹ÑŠm£•n•×ÛÞæ©1ךë%¦Fs®G]~ÏÙË]Š8ñš]±§¸Y ¼óg[|}â®wwïõ—Ó¾ ?Ð}$³6“¶¤)váœÖ£¸ZºÄ91;Ë…Mc§úGñ(öf;×¢ ø 7ª~8ÔM¾àx¸ÉñÀÎ‸îîð8õŠVqK®C#okkG_jçGÑ 9)¹’ܔРó{(üدٻ”i«^YÔàtÑá6]~„à.Ñi\ók“³Ç&×O¼|‹5½‹ú ¶²ÑüÐU6vU¬@M7XV‡ÅŽEÞÆÒT «¦MÛÊõQÕ(øð§V s”Êl…§ »×ãééQzßåóõ9ê¹ôJt ÃkÊæÏÓp…æÒ¨½ÄÃ’ÈK`³`z”2°›^ªÈöã@[Ñ•éjʼ®\6Ããù€¹°gڸ腿ñ¦â¦~$dÕEÔc£Ke]Ä-£ ÒyNÒ.ÙV‰zs.û+ûñ-_‚úÅ ¨}Eô“Wß¡Ùmãá°ÈG§?;#öžk¼€#h¦­ß657¢—®šàµÏ‹Š¶éìæÄ<§«¬‰¥Gt‘%¢Ò:ºÉâ°p é·k’%Ó¹´9N£Ù]5óªx`9<ÌcR…ò¼¼cŠy=¾No¯/·S.aYþÝiš™x;¤4S¯?}cÀø¤&ð{ñOÁx endstream endobj 1440 0 obj << /Type /ObjStm /N 100 /First 1008 /Length 3115 /Filter /FlateDecode >> stream xÚÍ[moÇþ®_±ßb£ÈÞÎì{a%Ë1j;F$§iÀ8OQšHªUúëûÌ’+ÛòKO)Ĺ»½ÙggfçíÖä,+£ÈqT.à7à·r#(å‰#\!XÅ\«²ÍB8E&Ëh籋BÍq.½ðs.)Š\žâµ”1Øy£Ø8yדbÊN(Vl×÷¬bO$”S ï'[¨ 8gÂ>*KX¨¤, ••uœd1FYeÞ@ÊF–§•M…_HÊÂÓ`Aà~–5“Á›Ò€0AÈ raæ•cç +gma‹7#¹9åR ‘”7$KÄ¥'/‚ŠVykd‰Ñ)/k啯aŽ”^æVŸË²cRÁ„Be˜„s2*X/œ“è$ çÄ*‘¯ÃÚC,¢MN…ìÊ^E“æHAaý²ìU´±ŒK*z.÷²Š¡¨ ŽÉɼ™TZ¯#³JTæ…®“-\ ¯$‹åUÌ‘ƒJ±˜CŽ*å"!ˆ ,€›Y¤á!ˆ åAAÿ ¨,c¢Ê~-g¼ëSyï Yy2  Ü#•‹ìe 9¹ÂŒ!y…ÀÁP‘$fjL#ë1ÅZ=áã!˜×D.¯áÚ@‘˜Š,À*% o‚t2RnbJ`…Äò ÊÂjEö^M\ø3Æ“µøËb«deb«ØfX4Jl2 Ï‚ÌË"°}´l3 I˜Êt” ±±‰å.þ0™BZÙˆE"ÂÜËnÀæ°{í5‡ê Éþ0êgÕüúb¿Z±8fm±Cg—Óéo{?üPFÍg+õè‘jŽ µhýúµ#¬>ao¬/ {˜ÔæÚˆÐæúû3C:r~ͫż;îWêj^©æ¤¿Z©ë©N~¿èñ =ë÷šLÛÏVKÙZ…ó^ós¿œ_.º~¹ÞŒåÞ‹~Y,æ‹-¢Š¤ä iìvD6á+B¼/PQÁÉi†wçàµDŸ“ŽŽ£ºêú QèöÅå£ÕA™5#äùd¡D{ŸÈªÌk‡PÄÎëŒ@ä˜bŠì¨]µÓ ‚§6!–!'IäGnèö|½šL…~=[ôÝül6ùo?`Û*â’@‡8ªK¾ W…øá}~,W‹Ënõyœ/ÚUw¾]€×’4^{$^–&–D-hãí‰_ËϳٿÛédüä qj Ü2ÎÍAú§³E†l"~‘cfœtÌgïHn‹Ê…7CÂò“ƒ’» ¨ýe7™œ´£é6m΋u} ª § gr X'³-ƒªv†‚Jg'væt@º‹_{η·³¢ÎC¸•Ýìgf‹‘°/P@8›µ1á8_Î_"oü¥^îž1:#ß´†õQ’‘F²v+tÇ—Ýùßúßÿƒ9·•F) |À‰üÝ"¥AÑ¢ØÝ{„óéå»-Æ3ÔÓ:KFâY乨!#ç`5óç#Ǭ}×//Ú®_£Ü¾´(øhö*Sqn¨çîÍ@%5%Ò{N%éLÉJ+qrB( §(Ulñpé~<Gƒ\C KXŠWΤQ(B‰ͽŠÉ2b¥t‘¬–Æ 9 c‚hëÛÍ#ÿHИG'…ê„’û6H¥`áÂKÁ‘Ä Ôþ¨^ÿÌàuu´L³±GsŽšòNGJƒš _j%|ÔqøÖ¾‚7ö“¾‚4•¾¹¯j‰j‰k±k Ö1ñzLmÄÚˆµ k Ö6@ªm€T9§Ê9UΩrN•sªœSåœ*çT9çÊ9WιrΕs®œsåœ+ç\9çÊ9çÝô'$MGaApBaÝŸƒv:2a¤Û ¬‰]T‰ðx¸T:Áe„U;´ ÛA[DJ-‰¨¬¥lœøîñXøb‹Ý©Eì*+>ZÄÅ’¤{24ë|‰©Y:\&!Øç{îIã#™pÝ8òödù¾Gò¥q+r(ô<îgëþ #ÄYxªë¾Q@Õb㟡oäÿ:e“ï ÞKÇ&ßwßî2Á¬Þ!ˆy±—NÿTOóË‹]Ç p$•,ÞJ!Šhvi`U·Ý)¹ò)Oj"8s§-I_CŒîϵx|Òi³ÑÒïw!Ksþ~š?× 2Yé»ÃÀ¥OàÅ5 ’ÑÖ‹o‰)ÖDå,iF‚ '@ò é¿ö%`gýG¨Ôܦm—•cé” ê¦¼Ú®iKIk¡&ƒpŒ„Pú'FÚPÏdî~«I»ÕÉü²§$f4ÏnÒ‹Z_Œ’–oñÒp tE-ç\‡”k‰¶ H äDÞµÒuÈï9âÒ_ý¤-¤·­Íõæô4ÚѨÍ}öŽ:ã¸O£àZrÛÔ(Ë^+.Ô]ŒP$ Gäë_hÉ}‚–8“Ïarìúp:6!äÔåÔÆ6öŸn?¡‘^z^QöÅô´}¦»mÏ1Åo¤ï…”LØ Tö„#&ºL=4NM" ¶èòغqðcʦߢ¢­´0åÈÈ®M®(ü+hwêJ®Å‡šYòµø("9¥0L|Fæ]è8a¯D7J®÷HÁCÛµÙw1ì@|¸9b9Cò¸;Ͷ³œdñ¦´Ì¤Síäd‡û!{÷xª:mDŸÞ«ÓE*v :G¾ËÆ[n;ãFП7¹3†FÑäQÇíÔ¹k3ò´˜¿ w×ÍPMÊ &TiVª5ä¯Y(YI÷ã·7CåÞàfèÁ›f(R}KƒG{˜¢ÍCG*'S†fk`VKl“ÉG£Ž¡è¶×j½qì‹ä_úcMX¦O›°”¿¹ +'KÿQÎÿmW _‰P‰X‰´Ífeý橜|ÞÚ|s e?¤;þæ&ÛCN¢:dÚ>w*}0ÚÚ;Î0,‡òÜ2¶ˆüz$e¨ä¸YNw_Uáp©$Yþj’¯¤Ž¥,ùºpêI•-Š'y]Ž>oàÈgîur8ή ‡‚¤WîZ6„DÚ™p_²©pªlÁùT6Åi²¹EùxðÚÑINCG“tÝxàhŸ5w1ÚI)g†"QÛà·:ZŠH¯8;LÈ™åìÌÍxöåÑ&h¦¡!‹¬7 •_>íüQtŒ’ºr}É{„Túc±ÒùOc¥³ß+ëAh¿9 bó9ÐÛF-U‚+Q«­ÕÖÀj+C[«­œíÏÀø²ëêÁÓWÏÕÓóùrµì“‹•ÊšãC¬{Ñ—SćíªWÿʆ½±D„ Êæ{ã¾3æ;Œ{1ÿ¿!'“Õ$’¼„K¨Üç˜ýp~õûY?íýËÕ¹Üyø±ž\­ž¯0Ã^óÓ«ŠêÓÇí²/ÒüºÿúÙÁ_N&p6ßÿ<×ÎÖ¦sدW¦å\~ÿš©<Æ Éb¹:8oʧ½æy»¹ 6{Íß'ãÕ¹¨‰ËWà÷ÿ"‹"àx ˆ>¸û¹2âËOå »äLëïò×ýšëyoÎo¥4»¾‡wadOfÝ|<™)ÀžíÏ–“zã?/ §Eû±ÖBý|Y¤‹…cÞï‘Õɾ I ãi{†Í`åf@‘ËNL çöâÇ~rvŽË°ýûõ3¼¾×<[µÓI·?;ƒq@âÇ«þÝ/ò_B`S“åè‹lj¯ùuÃÅ\ˆ–dó>hö›ƒæ°y‚€uÒ¼nÚfÔtM7ŸÎgMßœ6“fÚ,›Usõpþh2íÅ)¬ÿ ÀsM’†HëäSŠOÚĨ‚Éðká>˜Fv0 Õ^2ÒÊBŒ„Ú„„3ÙÛòzÛ²óÁ,gt:¢0ö‰8ØQìûRד©ÀÿVÁ endstream endobj 1579 0 obj << /Length 2474 /Filter /FlateDecode >> stream xÚµZK“Û6¾Ï¯Pù¢ª,‚©Ý­JìØqª’Úµµ'ÛEÍpM‘’òdòëÓ(Rq^Þ!l »?t Š/.|ñîì§õÙ«·¡^$,"µXoB)GÉ"J5‹R±XoŸ©–+'Áë*ë:j¾iòý®¨û¬/›ºtÄ“ Œ–_Ö¿žý¼>ûãLÀ|!FK¹^仳O_øbƒ¿.8Si²¸1Sw ÂT/V‹gÿ9ãv—ÇO³kîy”Æf×±dI‹è˜I¥i×7ír%tPöe}I›Î›ºë©wŸ÷M{¾\©0 ò¶Èú‚¦ÔÅRòà†~üØåeiT"]ÚK«Ô‡wg‹OfÊz)`~voU…KÛ´3š‹ÿyOoÊþŠZý•]°».òò3ç²Ø¸MVû]ÝMD½z+ùÈI+)™LÕb%$KµuÒg)õä%ïžµŽH­û7þ™k~RùàíûõÇ£=Šp‘Âe„{Œ?"Úç g)²4nÎõRéà%¡¬­Åê¥àÁ~wQ´°q¤Ÿ[x‚…•N˜â¤‡!Éoæù@£Î úåÍ}/!;ÄöÔ…¿àP­•³D=š7ÑM…LKé¦mÛfGV*–Š–Ýêˆ(ÐÎf‘$â”)8ž…Ò‘·&äÁ׊{|³8|ý>Ôï •œz}SLŽûRsg &5JÁ £±MTÊ8XDAL‰´‹€L0¢8çÁ›¢ÏÊÊœW ‘°èò¶¼6qpÆÒNmÈ"’ÀQ(ýP\·E±tpÞw‰;?ÿÙu»êà&DÌ"iíó[†¸¹…EÄ©º2­Ã$(XS· GfÄÆ/èîò¬ÊZêm\á†@w ûRVoh(£ßÝ.«*êiñPdõeA#Í–º7Yoçö·×E7F±ÇJ ²ØjÐR¶ž»ÏP€¬-fåîº*0«ψ`»¯óÞXÐüD7åV¹ ×"0v‚'ôñl$»@¸¢E(_ˆ 7(1êC¦’Áš²¬êvšy•6 F¯ªÁ=ã¼þ«ÀÃc'†@3ÊMYUþ…\~j›= µ°â·ˆ ¦ý.±õ ‚tÑúR5¨3°ÕóMÙRnM98¢ë38DŽ‘@¨uz_0þ}¡“Á;»Œ}nÊî`ZðY±A6‘…%*˜–µ5ˆdlèÇÅhÅîëªÌK« º¦óºµ™9R™œ|~žm6³:Qb7/0À ã»Ä˹#Zá£D:‘’L ^…‰ÁƒYÜøS5¨tKNwl7@·¨±¥çì)r*ûû1¾wN¨[¨_VyHùWF 2píŦ0xÎöUÿx?ÌìÄkì±éí »n›Í>/æåÿTÖ÷K&Ý ùó©Ž{²œ´Yîµ9”8M¢ûaÈw“îi%0IÔ“¥‡ ˜Œ’êë×{ÎÏí©Œ4ꃺž.X: †z\ÄÀiÂM9ÈQ pððÓXM8‹V~úÒ®5¶ €*IÝ ´hkû–¢k¢Ápw%kÅ>¼xµÙÿží¬Vÿ´ÄO6»’H ÔFÓ"h…/M:^'eq¹u|oÿÛ MSy¤`Ì= cÀÛ*臆ʻe`Q’+o³ª+<’eÊ’$yðþœ…aͮߜŸ+ É»b´úTïxäÂÜC}bÝuW 4`¸1%ZVQ÷·%°’¢µh‚áQ}n&`©c¸=´‰4ä±vP&ªàG;#k‰¸»z ×Ûú,å †DºÂOOÊ?ÅãCɅÆKAçWÔŽ˜¥)ëM™§ìhÂÍU™_ÑÕOØ2ôG‘p`Ç…ý¸Dî§±£u½þµYdù,4\¹ÑÝŠi•[׳ì`ޏ´=Ê‚¹>¸BRéy‡þOå /w®,Á+# q]cçôÓ¹»¦-|:[ôf^tÕYN¦>ÐcÕ†VÖÓ˜-Ÿ¢àº)Ý{T<éib˜%Ú–_DL2Cÿè5ûÖdôö tæV~–ÿ±/»Òªu|<–8®¥³/è îšMQM ;§ fuviJG6CÖŽ¯D ¦D6Íxh#Û¿—q I>‰Î{Kã—<ê½2–ÈãR9e±HDÕñÿAHŠBÞ+ÇsB¸Ëy$ãpG=$ž$d"°!Îwsí¹0O%‹SñÔ5')I¤Àž ¥M×l\]F…ȽµÍ}·Ú®Hr7·‡šºöÄü¦jBÉR?AMAWÉ3ò\!(Pá$‰zP š– ÊJXO „ÓhyÚÂ~´Œ¶‰”BÉ÷¸äÇUÁv JJ§¡òh=^Æ4 Ÿ •ç 1PªËg"E™*G `Ó"šTg—3XyÒÊ~¨ŒWÆ":»œºvS¸p°+këæ›«òh;è²î8WQîó\Î`䱺y¼ "”ýσÈs… DD1 Åʬ6¶h;‰‘ª¨œÎqc6wOÈäIœ »\ YEb·Ðw¸2wÈ”ÅïMi¾K$é]ÔBŸåר$ ßεãàý–¦Õ’S l{TÀ …M¥e—04¼ÿ†ßå[»i¼­G oOÓpáoo×OžœÇ{û.êQŸ—qÿÑy¶st4ëZ!a®8}r"ÎBH7"ŠY˜ÚïvãºñôÁyÒâÞs3YÜsnd2-e±cTÊš/ž«*Ô÷[;ØôÔ˜ÂO…ÜB Ç>Ø2ðÁÎl;ûîôÊÀs”ú«¬wõFŸ_¹¯EŽÆ ·Ó~$>Ö| ˆX?“>Aˆ¿Êñˆæ‚i‘>æß0î¿:pJcû¯+,ÁOø6.¼+ꢵšFt½L9–ÝæÇo™BÐSr©mO|Îõ¹H±—bï.è-es—-æ¿@·—x•µç»øùoÈž³ endstream endobj 1602 0 obj << /Length 2358 /Filter /FlateDecode >> stream xÚÅZÝÛÆ¿¿BÈC ¹Í~“<´Ûç&€ÝÔVÚŽh‘>±‘H…¤îz-ú¿gfwI‘Ô’w:ÙéƒMŠ7œ¯ùÍ,)ájv3£xyuAñ®ß-/¾½–j’Hk1[~š1!H Ã™ŽÑ›-“Ùû9‹K„ó相ªìí‹bµß¦y×Y‘Ã#¥i8—ÁâÃò‡‹—Ë‹ß.,@g¬Ã‘ˆªÙj{ñþ%ðÇ@…³;Cº ¤ _ÜÌÞ]üý‚öd¶²jŸ¬* \¨FVÂ'|qÉ(¥óçÏ¡”×ÕÕÕ³j•eË…Vóøã"˜oRÏ#PDó_¨¢¨ÈÐ42$4@<³Ðõ÷Ëw–ŠÉYT\#gD©°!‚Å…% D‡U@šÝ7n±žn”„ ’#YyU[áÞÕe–ßà}8ÿÚÃZq¢$o^\'û7ñ6EcÌ}Ëœ·’dyíáÈa¬åX.8 ¦æw•#Ú?êË D3 ²Ù%p‹”óUU'WW·éª.JgIÖ±¤HÔrú“g©ˆ„­7œY޹€<¢¥úËÖ|íu–¨ÑcD‘j=ÿ~W5ø M>¬Ñ ™o¯9íŠÁ[p ÂõÙ¼{WBTó¬¶PŒ‰mût~½Z\ )ç«2ëÔ’ä)¼;û÷.‚›òÆ¡œ·¯.fï ÉrÁ€ðü€¢+££(>þ ° ï²zmïêµ[°Ú¥« AKš4Bb¤Vf RðC@4w-ñ%‰#EÜS£GeÄör»àw6Y2®’ýõÅOCÙññÝ:[­-£Ìñ…5’{{ûi!”ÓœŸu®®Zo¤¾…²¼‚X»”t^¿u¨£5¤¶†(v‘`w„£Òx)w¬lŽFÉ’¬úuB6µ˜®' x07¡vo÷¡"xØ-bð3.o \·T˜4–×{ûÚþñWd`ÂüþªT¸ Šˆ3mxZ(–KÒk<Ò6á`¢L”îêv_˜g.÷©óX×ò}ð?H—°»#€\’¨þ?.¸=™¡›W}~ë·!j®ÞFQTO·0S™n[˜/À$&š)®ØÚäËÃtO*è&_º‡ÈKB«öû…ã6.â$€~ð‰+÷’3‹`@rï­œ[HùñÓt†u]Û)i¶.ìõ£[¢Í=ušë*CJX¨ž ë±»‘…òuVÌœÍÄÄ 6`ðÆY1À p+CNdèŠPÙÉË#Aó´¥ýAÓ]:Çtµß~LË6t̵ÉüÊòA‰¤!L‡ožýüý;Þ@‘x8Y +±Išæñˆx8—‰‰hSUMk°ü7žBÂ.J &º¸úÒÔÀþÁ [x » †ÁyÅáŽÀ™dó¤ðvÅ›rMXиÿۑ̉úÛ>Þ¸œÕ1ðQBëåÀïö‡¶ìÌNÏŽ5Ç9|—åwŠž¹`]”ÿ³¤“cg§KE:нHñÔH7Ÿñ@UÔÃò0Õ=€¤\?t©kž ÒÃ9H'syqûE&½\@ñ‹ú“^œI~–!‚™Ïž˜z‡iÜ£¨À¸iíÖ!ë©&B"GÉŸÊbëvn§gÕ!^Ý|²A 8$–&ŦÅvvéf·œCúÂTƒwà`7Y„ò´¹·dÍd ¶)$µÄ½_¯15áã<µ„¹ø}•£㸕ڴ€›)2¾_ØG/^¾yöú¥o¶û¾É&u272„løÁ>ô /Vê§v35û8Ô²³›]ü:uvçõ>_ÕíÉÇ‹átdÂhÒ±$ZE]ö„¹nqzYd(»ÓIBêÚó¦ò±|¡#èÚ õ…¦fÚºÄ,zÇ;›¡ÃÙµV|:`òŒ>úBAv¾Pc_(H¥|ê#+ATÚŽD¿’nŠæü¬Ÿ“ ä-÷2Ý¥qýÏ,©×>Î2$ZDCxtÐîGt8Tpçˆ@í= jË]öÕW#'w*"ÁÁ´þ“;¦Úò(K$é*ÛÆ›jBJü¢-Ô'‰¨àA±ªì?‹K܇Ç@4\†'«é+'æÈ¶þú m9 åÀŸ÷SPȈ:ìÇ ¾ýasû £ÁÙT söAæmVÖ€¢¦‹c¡9öïU·8ið¡çˆ²;§hæq>V8êAñ;µ¿˜ùj>HÓˆ§dÞºÚ¹íUš§e\70¹i–‹j®ƒ¨¯cW5˜ë´8åÊ= ®¨ºbQXù°6‰×Íkš“5óÁ›1ÞýISi>TÿwpK=¢ endstream endobj 1615 0 obj << /Length 1929 /Filter /FlateDecode >> stream xÚµY[oÛ6~÷¯0`†%)‘¢ŒnÀzI×+¶ÖÅÒ>(ã•%O’›äßï’²%Yv»{HD‘Ô¹ñ;iê-=ê½¼œOž_†ÂS$–2ðæ7 IåÉX3ožzW>¦ ØÄGk»ìÙÎIqOJ OemÿsÊC?©’•nt5e̯{²Gu GÇ=‚ªŽ{&‰drëÙÿ $F!À@„Ç„ÀtX!œ DuƒqÂa$h‹CÃæa­GV6†pÇìT­œvµÆ’„\ö´ÎoµÅZš4‰mCL«¼q=í¤E™oV…ë,íóÚ%iªÓ}BE SâFÖd°ã2þÎb@ÀbBCqÜsÙa ˆˆð(ðd¡"»6ÀF/"qļ i‡?@†ÁÈIFC¤kÔ#ªÿñÈxªÙ#kÊQ@Sçã\! ¡`-;îL ˆ’ò02BJ0,‚l¶Òk4gis{'*G@WûÍ4 ~YM/‚ öû¨xgÂÏŠ¥íø>åÂOòNŸA‡Ym‡Ì3¤.Øqg1M„Ò¸X2½<ò/G”SF}ØÝÜ…íu Ää¡.q„u k¦!S~½Y¯óL×ö͘ƒ cº^4¨ßs],Ñ>l£}½ÉU9w5þ#)üwN|ægË¢¬óæe<|IêE–9Éõ”SÐÕ3Øeú¾ƒ-I“ÙôôõßÏ”ç¥ÒÙBL*E·ÑJF"ˆ©ˆBBY¸%ÙÏ âp¦y4zšÇå+º$·o_(å:OíK½Ö‹ìæÁdUa7`r}€}w›÷*èüó‡wóZìTžìâÈ*ƒ ÎϬÉÎb 3SçmÇ`#]¦°«$¯ å$Åã@é(Þá#Ì_'²«®¡‹÷P‚S,±Â€ãk;‘Yv…çÖ3kÇç0„ ÄNGMØe¥\Œ1é’vœ{hOÐDBÃñ™8;Wâ,T $|¤ˆ1Œä£uŸ"(ˆÙ~Ý7ø»š!x¢MãìÚ´a(儨Õa(£m ˆc]â;Ö„8kB|_TPÎèöϘÆþ»÷UÙŒ…À(2, $¨ÀÁ­Ê@q[d@Ÿ-7í¼r0_¨R eTbOG6”-!3"<@áceEQ¡²1»=…,*LÃ¥$öX1µž2?ßÓûŽM7Riûa¥³"Õ˜¡÷øÏ)‚Œ››r §îÖb1–%"j#"cmK–ï™ Œ$µ{ÚÇ¢,°±eP‘éb¡í—&€0ë¦Òyj{¬YÝX2BR÷•µàìhn“b¬È©ô¢\­`MÐǃ òt€ïg?ʈBq…œ d$ÕZa@±põõG­Ö¹Æ»íꀛª\¹K´¡Z:c>¾xWö¢è¶©g³7÷Íï¯?÷®\@¨ iÿ®ep™ëÁ9 XÐ^AFÂà)5pý2CƒxWÝo¸Q̧P÷BA;›!Œ_Û"„Ǧ¬é_—eŽf<¿ÆëÞDD*Œ¯ÃA’^æ ¢fi•ýb?DÇð0|À÷¡l¿¹ÍLˆæ1QJµ³žÙ=§a? ·ªùucuÖM:›}·§ócí0¹ÓþbD. p§øSSabì˹àJª~&üz@žhåý<â*ruÐNø¦1ÅêÃñã!‘t;ÿ¸·¾“ýbDZ©ÀõÖ6hÏË=9í8â¦-[‡×Ž’Ð°;‘È‚#k,x;éê{V5›$ÿÚKŒA:B´òQÜOËÊ»òÆÕ݆۱ñ ÙR㿇ºS¶·[vdÅ FÏŠõ¦qr*ËH¡Т6W =BbpÇ㟴>Îó)ºÇÈNþ[ów—Ééà29êœLÍËÆñ»¡mó…n’,wçÜ®}î4ó®å¬úÕPøîbò»í-ÃÀÙ;4:q/K]h·%õص¿>VhžÛÓýöü…¦çºžõ8F*Ð"b·\_8Ã5ÀŽ.{K…!½íOFÿ9à—&mqˆï!-"[öi B¢Ú݇ï(·T/³¢Kñnp†æG}º2µÂ‘Ã-ˆ§Õå$%¬+]ÃʺSŒòAg‚%fÅADáÄãÀÇ€4]Ô€˜öšF¨ÐUŒ²Âéߦv ðBÊÜGAw½Hrc´K÷ìÜÔ[îBÈâüq$½ËœO òü§¬Xä›Tí:P,Äñc<ÜŽãš%×¹¶ÐÚßÀ°BêSqŸ r!ƒ,/nÛ#_“˜ÂÐde–,1¥\!:’—(u¬ŸL£¿÷0ʈxì¸Öÿ%«ýMÂñJ†ÝZKÅ$.Øo‘ vDÐRÊ|ÃyÅ9÷Gâ|`Ì>9…d´=ÑŒŠ‹[‡ù¾ÃîòÛìíïx¦X~Xb–B†îÿ ~ôœË endstream endobj 1641 0 obj << /Length 1454 /Filter /FlateDecode >> stream xÚÝXKoÛF¾ëW9$­÷½K£î!v&@‚´VÚC´DÛD%R!©8î¯ïìƒ2IëAÛMŠö"‘»ÃÙog¾™ÙY\8x9z1žqhKÉ‚Ée@CJê@Æɘ“Yð!¤,S¥Ã“yRUîñ´˜®i^'uVä0$$Ö!£O“×£Ÿ&£Ï# à€´cL£Ÿp0ƒÉ×F,ÖÁ]Œƒ(1΃óÑ/#ìQnûo– £X“@P¸”f‰Ï#D”ÊJ´íTó8|µ Ái ¶–DT˜Gów·Ð¸YiÜZÊÙPn°!×I¦ ß­."γ)‹êðMº¸HK÷|¶Ê§ÆŒ•µ^—‡g·•K¤´(ÅŠ;Ý)oƒc!dø%ƒ8ëU2Æ’Äá—ˆŠ°Èf^Úlª¼ò»ûÕ~g¤’Ù줘¯y_©™üˆÞúyø[¤p˜ÌWé$"‡·Ët“ŽÚŒ>Æ ‹p {¯Àó ÃL–_¹ƒ©Eò6Y´¿˜0ŠÁ0„cÜ£L—iRÿžÍêkæ`_¯¨ÖUoŒú÷yV·fÌŸ=ƒ_âØÕ¬ø,f‹d^c?UeXé~‡vl±á.°·+ãòcloñ4°T#,ce=͸ tpsïiðŒ‹¿ÄýåiV¾q/nm÷\^ο§Ãá׬ªíέDra¾§Û¹`Ä~>}ßó`ˆ:=~bÒØÀ‚ ú‚î„ñ"Ë£z¨ „1` Ò`P LaÆ-Ž1Û¢¼‡]!!å?›‚×ï‘×@Ùg¯&ç»°q4ëCëáà6Éx™¥å‹w°!òêï0â1ï’§›œÂ¥áÅmK½‹‚Õ´.Êán&ÉC*–ò‘*ÓdvšÔI_§™3^¸( ¯$#ÎÎæÉÕñ¥ÙÄh“/b*›`D«zvtd×O›M‚‹HËET1$Éš?lð˜U+ÝH´³Ê}u C%]³ñÇ ÚÆ ò–¼›/þ4L·~[Àål'h(gŒ M%Â\í­âäŽÈÂæµ¡¹mL0€ vjüÝNeU“ÃühÛ n¤ZBB†(¢©Éšüw6ËUíõ”eD€Žò€ Édbß+æÕœŒ"-½gÞ•†ZE ž°ë~óz¾1BLdíN‹&aѧ&,©‘òA+b6ð([×^J{¥Ýà:¸ž­L]ßZ{ãFܰcc€SߥÆ`,áäJT7–öG'ˆ0õý§«í¿ëÏ›óáå—0ÿø‰@+Ó ‰`}P¹W–þ'Ž Oˆ)?5¦bĈzTLI¶Ž)‰{1P}X5Ñ!¹÷À. 3zSµæm0; 4bÀÇÄæs2O ­Sïš‚ÁB°@DîmNŒr h΋.\¬{Ìæº}ÌøöÀ»ÚÚÍ̘jè}{~8[Ôì/ Òdw¶‚@%bà. ÑGe+)hc~¡ÔóCÿ޹þ~À»Ú¼ùmw X7p…4&]?ì‹Ú:Iù¿(Nc´××Üx´õö’ñoV‹'·ŒP-$Ü ¬mðÜ~íÄpkSÄßpHßÚ¶q(#{M¡PÝdõõn5÷oìðÝ6œ”¿¾ä.‚8ô½kræ-¹ÎΘs­MzY‹È*ï^“œ¦¹€ØÙ2]–i•æöÔo&íþnݤ¬+/nC•H8¥iÃ,Èœ"ö®)À!¶S—X?¡§÷Ù›n6:²×dk1¼/h³z(•$œWi—H³tϱnã=2ÁP£ Š=๹å–ÐqzšxeÎaMS÷2ÍÓ2©›F²ðä$Šn¾™|“xÇ#C1x¨#,ŽHìÞ.Õ /|râ¸áÞθ[tË·[à:ÍûÛÿ\o•º endstream endobj 1612 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1BinTable.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 1648 0 R /BBox [0 0 500 793.65] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 1649 0 R >>/Font << /R8 1650 0 R>> >> /Length 501 /Filter /FlateDecode >> stream xœTÁrÔ0 ½û+|²dÙî±¥S®%á ÃvË4@i™òùÈ»ñÚžÝË298~ŠôÞ³ä&=½ÂžAÙÿ£ R¶Q¹‰ü þ”ô胤N}Eš˜u ØÉ=²J ©h P g{ $^WIx¼7¿þùuzœ\çÂuúSBÐ×Ní1âö§/(À¤Ä qQ®·Â±väÕøà\½CË~§j‚×äijü0™Ó”¸ˆNš% rgÏDj¸GÆ[³y·ÇêXi8i†Ë¦k|¯©Û5Q[Ç€é²{ßµºDiXãm6¦h$éØv:d¬ÑdàîuèEû™M#Ðh0$=ÊŽ¥c…FRGe9 É­ùûÍ> stream xœUkTSW½—À½ÇÊP…ª 3¾ÚZkuêÇV|¿yCQ$ „gB ‘ä$áMB@Dy ˆˆ,ÓâmµZ«Ö‘¶S;Ú:3¥ÓÕﲎ³Ö\ÔY3kÍüš÷žo÷·÷¦)w7ЦiϰTirÖ‚Ðté.ÙÄÿÜtš›áÆÍ`"_åÁ‰<)ì)ÀžîÍ3&{zÿ†ò—!g åNÓË6GZ^ |}þü7ƒÒ3ò3S÷¥dû/~{Ñ;þIùþ/*þÁÉY©ûdþsùœdIz†4Y–½-Uš$Ïòv®hò>¹dWæ®ý»Ûÿן¢¨i²5éAÁk3³ÖgoïÊKJÞ›.YAQÛ©YT5›ÚAÍ¡æR;©0ê5*œzŠ ÖPÑTµŽZOm¢–PK©­ÔtÊ—Šr§ä´LáåvI°R`sŸåÞí>î!ñøŒÉfÝÙöšhdÒŠIòIÇÀìÅ•a;'üˆþr‚G‡¦BЉ6Z± ÁQöì©K7FƒÉF1Ifõ›T…1eH{llL…ÚbDÏ>N^ý¾¤`ózÑ=¶Ô™—ªŽTø°UæcFí5Š11²†uQtò_ˆ{¸1»7xŒnl°Ó|5ŽOŽêê4Æ@ô4„5©ÊP|ÃÞÁ7›{ŽºœöSø,(èKë¶eX65 Y›kÍÈçÇÃ-6Wÿ«à¾è ‘nbÈ·Â'ø´Ö¥@>Îg·%m}‡çìÙ–ŸT²£eS }îPÀ[Ê+F_ŸA`¾µøU¼2j×|âAÑ´s‹Û鎇PÿPf.QH¦-šODdÆ£yà Þ?ü bð]ø˜¼".JŽ^œOf&~Càž½Ž¾qúPá üúþôå›"þ½Êî§>º`œâ"…Å ÷Èa´9…ª\\ŒfEELctuÀË%[ÃÖnM^ˆ‰"‰àGf@,xüíôýK¢üCk‚7H—c¿-x§=±7lPòƒ;‚ÁœóC9{úDÎ4[zÓ¦‰Û)H5NÎë’÷íQ=ÍÇZA¤BÐbªZÃU‹XŸ¼ý®VMÿt˜ü¸Ã˜²öÛ7v&d…%ˆï°ZSxNJQX_![c¬Äµ­ÒĉŸ¦°8B­ Ñ"ŸSð×%ìvþ|p™$ò‰"n1Aq¡®NþÉ{yŠ¿ê¡ÿ>Æ1@ ¦BÿÜ}yøÚÅžoñüPvwçGë¯ÚEfbDZó˜{¥Õ%/è_£Rê„rW…]µÕýß\-L=+º~b &&/%-[%Û¡z£Ý*žL/°.€š^ú¯cî1¼+LgbŸIfP3Ël0âã0¼ÅŽê­*kjE6£Z¡T-Ó#òd2ÆÎòòvŒ`:O½]Ù°fÊ`–ÇÓö<æ–ÎRd š¸™>¨Htåq=¬|Íëf¹þbTP1JmÌSa½þ"9ëì?×^Y£ÓÔ‰l ‹ÎŠ‘ÃÖØÞcOÝ•.Šÿ™Õ™vÊ÷)wæóðÖó"±`t¸¦0AL̬>R«Ý¢æ)ôÓ´¨ìÜ’Vï.CÀi<ÞŸÂ'ƒ0ÓCÍèJteZ¬Å“º"»:»" £•¡‘A;»¿Š_Ø,·1 KüÒÒ£Ö¥ôŽe‹ ÉÛV¦ª¶ÜÄäU‡-úÖ µmGÚ§ß½ráÆ¹¬îí.1¡®¦7*¸ÍïDWÛéóûµNP©ìã~é£ÀpþOãÑð‹Tç3wuÕ%¦Uˆ,eÓ¶g¬!ËæÛ·70(:9x¥íS<ŒÏåõîë”58¼ µ2%°ÏCÎhsó‹r°šó«âmqÕñ<÷±d™G_o ¼îI2¸áo0L9Öw Ak©³œ/G^Ð¥â<ôQTs¹€˜Z½Y'Ú±Lš*+P—j' )3êÍzôò!³¬3ñâ`¯c¨[TT'?PX,Ç~{mWÄpüGvb@ípv\vú—14M…®&&°Re1ÜDÃ$’5,-V¿«ãm¨«‰}QáBXã­ÚÚ;U¨‰tå±w´µãjD"È0Dü¯ÊÓµÿê2a)8o;ýÙ(¬pYç„:&ÆTZm8ƒà²¸€½\fÑàhDT,N×)•ê ¹D%ÅhOÚÑ~1Ü#s•ì}½Ò‹H»òlÔ­žã mm¢“'=–³åúsvWÝõ~^\ˆæ|èÎ×á=ü^»ÏÏ ·ícaR¥S`”]Z? †Hé:¹+±)£«c¶d7å:Íö–rC…¡J¬¯1Tã*Ôælél“…‹¶±dÁ¶üâÄdy®2ïçGhË@ÂÈÀ‰æ¡‘5¢âPî‰éGq³åX/_" ±T§ÎQe*3Jr0JI?zR\Î/ ô¤èyÞüÎFC×Tx߯Hpnƒd€¼Q¾À³©­ÃÖmò³‘Å ¶S_«ÅJ¬RÉ3%:­*¿(·Äâ«h-¶êËóºJxS²Y+;ÈFv+jØNÜPÔ÷˜Ìö% &iJ÷—ù)`Ž•©+¬U•Öúfñ=xù;â_®5ép©Î/=¸_ÿŒ'7ù }}rÿ$€ãï u¦$eFql‘Ÿ¬Ä£­4šq5F}5Å»ÄOXÉèþûà;n0 ¦¬z4oÛŽ”è\Q„ûñ3®¡öÚ¼f‘SÒ²!"ˆÝßrD4ÁÊu9uÑÜ›°\»*Q¶‡âÄÙùüÞR§þ2‚¦äš¦#Ó)u½ß‰£q\~rj\RF0@Dts °ßß¾T¿ˆÜ…7…uwöŒàìH·¾ƒž[Ño°«þ‰WÇe^äe^›:{[¬Ù!Q˦‘÷¡C‡Z] G¶o‰Ìˆ? >_²Ïð{öGò £Ô¨ƒ'’ÝjcÌê:|Á'àÅû\ßü˜÷ݱ¥£Ó|®ó^®±1+Jk ·{ÐL†y(Øj£Åd1Öb?Ç3'S°úÕÅšõeÈç+p[˜‘.k‘·w¶´ttd·Èž›6÷¤Ÿ†*Þ²£š„åEÃ爫þå-¸¹ …ÐÈÁhá=§#Œ–¼çá`ZnnÖ„>|ZÆ–k–M¨óÔ„œùˆåì|ÞÀ?ãáão‰"¹£³åšfóéÂâõÚäiFìfI Æ1ŽŒ3ùÎÒ|Á­g²ýrB¶®<öÞ A_cÉêûðз}z\äè¯9ï ¨gM?×Õ߯AÏP¡ÿ2*hž j³Å¬®5 #î1{ÐU¸WÌg%[g´ùÁqÖ*ùä<À•ʭ'¶ªAFÐ÷A €\‚Pš™™&;œÙÑuÄÑÙuàˆTLˆû­y)빈Zˆ¯gz_z0¹×ìéy¯ÜóWõOwb@ endstream endobj 1556 0 obj << /Type /ObjStm /N 100 /First 1003 /Length 3244 /Filter /FlateDecode >> stream xÚÍ[m7þ>¿ÂßtJ·í*—튻Y .lîr¡U¿ ÌÝ2ƒv‰üû{Ê3½ËHfHo&!LWwWÛëÍU¶qÁgc „Ÿ”p†\VÂŽå å›dË“`r"%Ä8'I©h¹ò ·,<…f„µ-_ÌlœÏθ¤/2ZLI›e|šÑ-(|šcT*o½6ÇJ´‘˜Œ÷[>k<£ vÆKÁÍÞøJȆ¬U>±KðJaT>‹RÞ'…!ñú-ÆB±´"l(û ÛèчˆaïK+Ñ0EE…1sضœ!¦‚ ÂâõÛèL°•ò&x«_à3È­ ÅÞð“7^ (Ž: *ë$. ㋌1ƒÊ&;h o­ÉÅ!“Ym"1YŠQBJY’*#ͱÀØžÌ`£ó†Â½ó Ô¼-åì´íÑZµTÑKûÖÊ-Ãfœeà\H`·Ú’ýq6ëgjÖÎ'‡Ñx´è8(tUfHõª¨MŠÇXॅ¤:Vïø¬ó^”W¡{f¨¡W‰‚Ä>ÆÂ@ÅëxöàÁ¬>ÿùí`ê‡Ëåj3«_¼k7åþÉbù¿YýhuÕW?Y„û²þ¶þ®>ùÉ•›Yý|è6æ'/T À’ä*A/dWøN²%ßCóà©_˜úñê|eêSsoÙ¼Öo›n89™/6ë‹FÁÀŒ‚=2ï­HN]NMlâÐùù}óõ×3üÿûá’M•†"W!"!¤ÊB‡Ä¶’ÏÀí.›õzÕ]¸oO˜K\©¦È¥ vƒ`&•FYÅGÝÏÃu·Xœ7íå0,O\8Ø5¬« cû"XMËÜt]ßçÆJëã:ÁÜü¡rŒ˜½†¹or‡y+Pƒxé1™D7¸0¡`F¨$jäI™yªˆ¨ç ùP๑–ƒ&vm—Ü<ù®áÀ󞜛ӄò¶¡òö¸:”FÁ€Ol)WNçgDÑDÃÇÊMv4@†cyø¨`$+UIZv ÆLY9:XÁ<ÇÌÜ‡ÆÆ¾¶i›.õ¾ mî30™XÁlÃ5pUpÒ)qà+øTŵ湩ü÷µú" $=¢àòÝååË_a¦Â,,•GbqÜÈ:«è÷å& žܞá1È0oqŸ­–›"Æ3šçm?;ÃŒ‘Õoo¼…€dwƒ¼,{·»Á¸oM!½Ù½a$^©Ü §úÇïÛÿªVµ§ïÞhZéãõËgW«îÅ•›úÙ险χ÷óò¶=k^ ³úh‡åf­‰léVe½zwÕ ëmÂ[ž=úEóhõÞûdr1k ~Ö\ákT(Ñn‹m®Ñq)+O©*v„ß!ïydä‘‘GhG¤‘‰02q$ÒHŒ]ı‹8vÇ.âØr[ŽÛ–_N•2¦T”\&2ò¸BÛ"\Áçöñ·; ]˜ë¯ë*Åphà m PNœÈ=*¢Ä1Ùy—¼„)!ð󶇥T]{Þv^ÒùÇÖE3NÖ2:U„ŠD)º£ežˆF(n`ÁÌñçXÓ&裱9BFJ^¡%)*¶*§C­­ï{ÑJbO¡íIzê;–æ2m¢Ê €UYxÔ9ˆƒæœ?‚×"ÙCn0ð 5¢‡U û˜…RJGKƒt¦×§Ü®A\ ˜W:,ò¡ÒÕqB‹‡ÀšçJÐá–2*˜ì*¸\¡Êñhêóh 'NE‘õ£ü£Ì@é+ GSŸc*« ,ŽG°G©A„uQd¿¨¡Áþ¢I#ù9û."‰Á¶ÍÜc a˜wº67¡$}®’K7c™Þ‡LÂv ¦w¨Q3¹–bã¨é²sV‚å)M2Tt ™ÀåPÈSÊ+ <ºX¢‰u†L%éÏŸQëºì•’\C¦áå|äG‹åÔN-H GÂŒát-S®]bD*åx3dUö ‰“ƒ‡èvD©¶œ!&#¨t©Ùkn¤»(‰£ú.º”àÏsQ·dª²M=juÀX%úk¥xé€ ý6ó®æ<ݹÚ;À}Ý'+ôOqÃ[Šì÷äö¶ŠÐ]p먛kûq;T#º[³'7,-,ïϬܪûo­|°PŸ•-¶ä>µÀPvÕ|ø†/]*ë±T {-_¼TÇ:>U{«ö<Î È+oWa¡²ÊˆWš4–ó ˆp±1àrÌü:îÕJ/e¿-D5Û@fFŸÙ·Ø¬úÕÅ…þZýÏM(Ò|`4Ìe3×r.`ËŽ¦³D€á¯a1ª?'‡ š>Yu`ÆHqPq²+gX*=T¢«¦PÉñ cx]£ÒLQtñvT“Z·Fr=reaÜzHÀŠžœÈQ`× Eì~ļKñ*È}™‰R±¾}¹5žÐžÜ^×wìÞÜ>à*¿‡{ŸýÛiÚ­\ìöχ‰ÙíM¡›ð‹³4~™¥9Ú/K—?ÎÒô`PÉ¥ô\Жpv$ܤٕÓN§gÂ*‹,W"x=@‡™8ð^3Ì7ï7°û‹Æ5< Éö ·°tÝXµ. ÔgÊsS†3Wy©«{MZäRŒe¹øI¡K®ÒTVþ1Š^=¦aÞ.$F‘^¢<îcŸz¨'ôDCâv;å. `ø„ÇLóH õpdY…§/“bñowÀ&õGÌ»Xb9…°7Äéèö憤}Û&ë*$À{r{-JÄ>_…Þqu¹Ý/¾·(yÜò»ÊQv£)wD ‰8c´óc´£1Ú‘‰±e[¦±e[¦±å`¯GÙôïºáÊÜ{üì‰yüzµÞ¬»«ÅÛÉ•÷!’«¡Ù,VËÓf3˜{§óÖ‹ìÛÁn½ýÊò_¬ý øž®úßb9_l.Áp¢žò÷æÍ0¶¾Bï§«÷?¿–xôðÝæµ>¹[A_lÐìþþÙSãÆ·šõP ©þÇ“GÏ_<üëùâͰþêùêM³ÜšØé°-Ç7‹f¶êk0-®Ö›“×Í*éYý¤ÙÝ8ogõ¿ýæµjЗõ”ÿÀËßèË!]\®ãƒ‚¡ŠÀÝòmqmŧšú¼p7@¿_y‰QwVË1Ì³ËæÕÚ‡>×:CÝÍÛo‡Å«×¸‚p1lßé·³ú»Ms¹è._ÁH ù›áÍ?³à{ºX¯½èBWGgõ»fXp£ÚRÿ¾W?ªOêÓú›ú1¢úyýCÝÔmÝ­.WËz¨çõ¢¾¬—õª~[_ÕëzS¿«ßßߎâlq9èqÛ°]Ršè¼€z— ,q{S×#YôY8¤Ü¹hÄ)7mDp”—}ƒ))Ÿrg{ x„=þ5Ø‚Áº¶c]º>ÌEe£fËUÖ¬ÑÛJÏ1JÞ/k¼ƒ==Káfú¬:>ÔT˜;ëcã[7wSŸÑ´BK-þ§4Å ðü ìS>öݦ¨;•þæ8pRcãÃä˜m×6nQPO]ž3ÒÙÁ6~N."_¿ƒÃÀYôÈ’²Œ¢rMûí|}‰æ½Oã!©~‡ôL¤óƒõn ¦)O8AÝ”®akAæåÔŸ¸ÅXÿiĵõˆS–ú> stream xÚµZ[oÜ6~÷¯òPh€˜!)‘’m­S-°‹n2oid‰ck£‘\I×ûë÷^di†#Çì‹E‘GçÆçÂ1 n|¸øesñî:AJ2)£`³ X‘D¦Ì‘ 6eð9äÑê’'ixUç}o†ïÛb¿SÍUÛÀ”4 ]}Ùü~ñëæâ¯ hÀ& ɨŠÝÅç/4(añ÷€’(KƒMº ¢H~XŸ.þ}A­–”pC|8¥Og‘ §3á„­.¥4|¯†¼ªU ŠrÐ]õEWÝkÍQ_'çÝ5§¶4¸ä1‘"5 ­ñ‘HÃê¾S=X_5·fæ—ªÉ;ÒðѲDÛ»[ë„.‚Ïšp³bœ†ùÍ þÖj&ÞRüú÷ štëWL„du)Ò8¼jÁÕUcåm½ß™—,|¨†;3Ýy­µ€qkŸßV\„ªàd¡M öAX'u-Êx0[ öÀGð^)+ú„%È$!’[&`û3VRA;Yµ»¯BõO£p»oŠA›« ѳ…Õãw '«ÆÐwjÁ½@øœ"¬õ`&¢b0Ì ½±Æ×R²pBŒTÔôÒç·ùx$0­ëѓҨ `×+Ö&øÞn Añ'¥|€M6¯ý½*ª¼®þ‹<4Ja²k÷€/e%lW€-³‰~ë‘èÙ@îT^ªÎêØMß^KÑHðKø˜lO³ð¡S (öv<ƒ—Ö,.n<¯*p+l¼úª)ê}©÷¶WF`©rëÞÔiØçF£ýÅCU•ÇTwªÜB<6Kï«N!\¸vಎþùnëicEüÆ"“›ÿ€ŒÞ ±Ï²êŸ° Uå6#âÚÁ£&Ë;eE§òA#ÄÞL(âçïûº**k`³¶R`׎:ºH?\ÿ¶ù´^çe¹hŽ>ì &“!!žâžü· g—KË (}ü€ò0ÜttöU3h(‹°kͤ3Çm£ì`kžË„-ŽâÌcíS'½ô±ÍN‡×öôê8{ì>ØÝ·fMïŸÁ¼ép‘¤Çø±I¸²Oo`P*'ò}=Øè=Kyô8Iå4cr›1¯tdØëÄ¡“æcîœMÏë€©ßæ¢³©6&è«+×km«hj–Mà!6é¥U/)a"a#\ ‹ƒ ¨¸D*Î •™#Á‘!J¢ +<ýÌÑÜ¿µÂfe¨ÏFY:”å> I™·³1¡Iê>¼+÷ÿÊwÖ®Ÿ 9@èIÝK–¥$Îâ9ºŒôÛ7ú`xäd$I¤“ã3A’vßÜ´míá‚q0µÅãy]ç‹ÐÂ8òªe„ÓQò6¯{åáÌ3’¦éwëç< 2û¡\¯¿e ì/›HŸÛý£‡/вQ°Ý®c>€Ñø‰ìççøüàEQœŽš|Õ'ý±?í78Ä”Pv°ÕËÖJA’'Èÿèáš$fÏZ  æÖžæƒÈ;;«ûâ¾BÍî ˆû™P>úö„yð]oB#Ä/êbÓ‘-óY𮔘‡ e‚;¢Ï÷];€ïUùe©Y¸äQB  ‰XütXL$ÀÐ>­µp+5%öa±q5#„EK¾´`ù;JðÌ–¶¹0l·]»³ìÌ!|§SçIÕÛî‹°ªÿjFÅMBÃb:Ét1½¨ú’ÞÕGe;].£$ÓDOÆŽ¥ºÒoìr«[=(Åõ›éˆ:g|Ál¿»ÁJß±Šœ6z07LÒð–"ïL7±ŠF´ÃPO×O5·½·û𷑉˜4v𢋜D†_Ñ:SíÙ•ª)«ê<ûúpWwfXæCnFº$Ä–äÈæÆ¾#(цHØNÖŒÜ ¶–!Ô1®´`¤k5=ª¶O3níložÍ£ÿÀ–îl–æ9?#•›v|p#w®Kz‹ˆ'·–f˜ÓîÚNùÌP[ÜÊ¢·ã¹”¦e±~13Ɖ8ʳf ,Þ·•ûÎgý€®÷"p¬)ͤéÛrÜ<»vßÙ…Ü|ý“…åŸí«¾r% Dsê ;ÿHÚff&Úê‹Ñ¶+ûwOå³4(§®{e:Ö½ÌÕ½ò(?y*­‡ª®Í•òlñÂÙTÞ84W°0ðifëÞ(IÂß¶†¬i“ʨЎ'­ f׌ÛÒ–¾ã®ÞÝ0Z¥aÔ£…‡Çi¼/´¿œ>:/ÞmêcˆŒŸytÎe¢“$¡ÏThÙé“#)‰¡&à'<¶ û´£<}p^%Ün¦Â=熧M.LLš\}ïpg±Æ¢^l3˜Ã/Š©…®Ùf[øà)»Þ~;¿9ðÁó.\32wîÛ2ã/Ž~$¾Ô}  AÏ, _ÁÄß³fPo –½är÷û½„'ãéoáPDîbÿƒjTgš¤ÐÍ*£Ø“ë—æ6v0fžœrag’5k–™·-F6hܵ½­ÚÜïMúÿ4oñ‚?TçרçÿTiÎb endstream endobj 1686 0 obj << /Length 2624 /Filter /FlateDecode >> stream xÚÅ[mÛÆþ~¿‚ȇ€¢Í¾/÷ÐhìžãvR[n 8þ@‹ô‰REÊ×˯ïì )RZÒ'ñâÂ8¢–3³;ÏÎ<3+cDEtasyq…Í-\X\}ÃE” -%‹Ÿ"ÂR2‰¤Hj-²è}LÙlNU?[¥UånŸo–ûu^Öi]lJx$$NbAf?]ýmqõŸ+ pD: ÒXDËõÕû8ÊàËŸÀ¦“èÞ]GŒÃPb^\Eo¯þ~…{6;[eÈV¡e¢±Qóo6'ãøÙ³_1¦uu}ýCQ.fRÄéÇ™ŠWùɘWñ¯X`3‰“e‘(Q L³Jn^.ÞºQ„GFQiFQ‚$çÍ PÌÜ Å:¢"Z6c¶ßye½y åG,7eU;ÛÞÖ»¢¼u÷ß$ ŠLšï²ýët›uˆCZ8F„·†e–p³›QofDÄ÷UH",=Dzo8ŒŠæT&H)ÍAžÞQU]_Ηõfç—’t–’)¤u#êOeüÑ|ïæT XÄÚQҮطAoñƒ„åfµ_—nU)SñŸÝ 0£ƒJÁ‘¢Í ãs”)Á&Ù¦â䋳d%RMsXŽ8ü‘°¿üÀ%b<èb• ùÔÖ”=ÆÅœÒqwä øX÷]|³¶[Ž=ÌD“3<ÌžÈÃòky˜+ô0EB’'u1Ácò <êã¾ °“…<òò»²0n4ìf y‡ýüüÕv²T|<üƒÏ9Â{>ÿœïL¨\â§Ipõ‡\ЮpÙÓ‡iôÄÀ -ZÏ¿ßî65ø Ï>X¢ÑИïo(îš­á-¸ãƒmß½ßA&qQ» ÆbÛ=Ý7~qs¢¤þ­Å„z¦Ùé`÷t—§u^¹©»|žQà«"ó&´»õlèÍ‹«è½öãów½9øÇ÷wÅòÎ *¼\Б=¸ÛO3x7.ù™÷õu;ã<¤¨™BQVàÏ9ÇqýÆçöv!ŒÓ¥[ˆÍÖxÇ–ïUf‚—t+4#±Y$°,+ªßFl£º%N=kà¹!i†‚™{;o¸î·,®»O—ËÍ.×­À |P‘©»«¶þÙæ“»æ©]Q°ÏmûVKwšÛY^›Õ®‹2Ï ¾UüÑðž‡õÚh4»‰>¦»[ˇÝ(³17?¿yå¾üÍÈ­”{³ˆ0•ÊS€×åLÇU‹“’õ8vÀÚΰDù¶N­±–ÍÂ3Å}î=Ö]ù>»>ÚœsØAÀR!"Ý0ë_f”Ã<ý˜5"$®úòޝÁŠ£¹kƒ­ nÙÖ€ B8T+T1!¸‰±N†-O„긄#ì’kŽ–x¨4EJ“KuöB”@‡d_ç/30Ÿ{¨Ô›á]j¾íR1mýHúÎC®t×F´ˆËtå­·«¼[ Â3Ø\i±:]ž@)’ˆ àÔûF†Œ1 B“…X#NàI°}•PÄÞ/ì†t™æ0ºšKWù€+!¶Ž"ÈÖÖ"QpÚ|ü7$ó’öúÑ+h“W—#ˆ9{¦g›Êe\Æ#3UˆEŒ”Hp> 1 ^€[WÂ|ÝÞÉ눹Ls1Í¥ÉvûõÇ&ð˜”l®­E>|x Üyçe1“M_ÿõ_/ßÒ†% áìY)M…+&¢aª‹NmWkt6Pû†Ã‡B=‡«‚¢®SûÌ-Ÿ€úLUt_-ÆIרtçØ¥!4}¬4¤ÍÜ›äAÓã>nL%}êžghAçN/à{ÙD3YˆÕ(I&r<‚舃L.“ãÉ0N.ÓJW÷#r@0ù´þC1söTþ2™ÊZ¦ ± êWÐd2hQ`A¤©¿;-—aÔ\¦<Œš®r“A6[ÃDÓ•Í!޾civ†@ãêÌnÒj`ÔÖWaœ=³€A£S‰ÊT!$X@e3‘¨H ÄrNÀ0ÐdëÕ|Wùzw%—i£¤«=Œ’®M. ‘š/6eÌ ÓvÏ(\ΞbÀÓjw5•Éœ/$°Ø^S f§»5Î㬀2±²]%ø,\Ûž»åªÓÓqe'“¤w cÞHˬûŠíɘk먪v£ ,ï¼K/÷~X}WxÕE°õUn|’—ÞÕË&!ŒöP@ £(‘¼s0Éü±ä«Üã‡Bµ½/—uÛL}~Üôh¨ñ”#)tW<"^ÁgÓ¬Ù¦ƒÅôØ)hšÁMö¬ÉLJé¥méþc&±m--ÌqÐiÿ˜ `JíY‚ëÌ œFB´úøÌŒiÏ<á~àÌSèÐùÜ€X³(^Ò'½«MÓŽï7Ñ!h«¶‰¾Ë·yZÿ³Èê»ày*T€ìd ´3:8F;SðÇ0:ØXgÑN´qØ7ß m^G Nh]ŸŠ’ØSÄÞ±Hšež ùäfÛÔ÷§ŒºaÈMÏ/7¡ð¿Eu8O©z=çfÂóÓaξVcš2``R.,ÄP/J4ÂPMëA•KHD‹Ntä\ª r®žÚEÓó90k—'ºl¼m …Ù”l€ä<¦TçÏ àA³ƒÆe<S…Í‘"OÑ¢Äl:Þ’é ]dS!]›Z„ôºÏO†‹s­>u¨‘ ™†ŠÉB,*D‚8—ã“ñ¿%.Þ1JhKƒt`;ÌgÄý—) §½-ÀpÀÔ]šæŒM>æA{Ò™Š/ZVÏüy²9ß¶<¸·±·¶ØŠE³¹ *¾ (÷`îÇ.ÝSÁÀ1­¡sœ$qµßnW…i`šOÖsã L÷£óy•—·Æ>soìë n;çî^•éÅ^pq[nvæìÚ|hÏ|H«eQxÝd}RñœL°‰Ð#5ëùþìA¹š¸•¦ ±[ F`M'¶8I@3×H*Ý'øÃûè2Íá}ÔÕÜ0·¦ÅÑ®`š¯< ¬¶Àì?=(]`;ý°“à{ÈÜögï^¿\”ã5çO1àe(.=‘’Mb¡µ«JØ´d ö˜…a¦;'Žª¬a¨\¤9Œ”®æB˜ ñ6umRG¯áíáÄ q¡¾èöÆÌ6¾ÂõP1šQ‡ˆ_Xš‡>8™GNÊ<KƒÒ!ê@íÜ% €Äô&~Hšb" ƒ°/±¿þÏà›éKàk¦™th¨%1éæE^æ»´ÎýNnš•‹™†¥ô;õUê[–Ä÷6)¦Â?Q×X\Ý´4é¡çÝ4<­j~ eÿ€-nm»%ï·«ÀÿHt  endstream endobj 1704 0 obj << /Length 1713 /Filter /FlateDecode >> stream xÚÅXQoÛ6~÷¯0`€š%)‰”Œ®ÀÚ¤Y ¬ÛR¯/i‹N´É’+ÉIüïwäQ²¤(I¤Ýƒ-‘<ï¾;‘:uNf¯–³ço‚ЉH,„ï,×ó}"Eäˆ8$"fÎ2uÎ\î{s.#÷užÔ5¾•«ÝFMÒde]¡ ‘rïóòÝìx9û2c°uXO!#1 Õfvö™:) ¾s(ñãȹ6¢Ç@”鉹óaö׌Z+'”…’þÊLtʆJbPÆ Dܧƒ‚ ‘RX­PöÑ;¸ôD$ÑZ•ùnSÌ5 aÎ`ßaˆCïw›sUM€s"íÇ™ÄiߤX€‹¡IåVS’{ó@w›T£n²Q cºê­Zeë}V\è¶´{À±B £á¦Ý”(s®°½ªTÒ¨”xó˜ÆîÛµU6S˜…>QÊUêÍýÈw›K…/í’~Äݬƾ$M;¹r$¯ ½¤#³¤îéé~F€1Ê}­¼o˜@ò¢6¤n£— (w“¼0T£{PMm‡=ææ°÷tmýjG*…+•©ò|êÞè?’d¡»¼Ì¬’ÃYL:Œ9 _RDDÄî¶*=Pp•!00’Ôö‰„#§î•ÇC€(SÅJáL Ô»í¶´;Å40«sü¨$µ³Ð:ÀÚÑ\&Å”¡•Z• „Tïñ–%, ¿Ý¿o‡¾VÁÅã#ÿq:&â¬Õ%bÈQ8UÙf›+MŒúx4Q®«rcAª kËéÉÌ9CV}­}¶©‹ã›æ·£¿­4r(E<)á¡îÓÍÚ¢g çÄgAË×Z„{sF©ñ…À-3mï÷–{•KO„nrîI7W‹…öࣤI´`à~¢!ÅX>/Ë\ñü p]É “$ëIú&O´Ã\àR¿à$ð‘&â0É õ»9ë$¯Õ„j“(ŠZ©g(1ز üVœ¾npͺI‹+µjÊ gAB9¬Î¥³šöbB/,ìwz?4•މÛzæ ª{ì*Êb¾-ë¬ÉðÛû—Zª‡:kÝœŽ¤˜[®±¿j÷‡â%ööýÛÎáÉýÕâß»6ú~þÚö'M£6Û¦+•¨WM[§µÓ±1D8Ò—C&ÙÁ_Ùf’ŽuTÛƒç [Í úýßâþ§•ôà²ìÇ”5eU©¶ÐÝ9gw@•ú²SuóCýô}ù~—ç=}ï”囹tò˜QMü-×Àí%5|ñKôï^"]wÙL~¢?Ÿ-”K/¿´~÷{b½“1|r `\ÐpÁâ–»ù»ÛèvwTš›³ý…®½Á«0Àöÿ‡­®ü endstream endobj 1732 0 obj << /Length 1485 /Filter /FlateDecode >> stream xÚíYKsÛ6¾ëWð”¡f* ><™êØ™fâĵÕv:I KœP¤ÊGÿû.€")YòCv“i/EËÝïÛÄÖÜÂÖ›Ñ/ÓÑËS—Y =ϱ¦Wqä{å… y!±¦±õѦÎxBýÀ>NyYªË×yT/EVñ*É3¸Å<ØÌž¾LG¼[¤# 3+ZŽ>~ÆV ßZ9a`]7S—–ãÂT"¦Öåè·ÖZÇFkæƒÖØ ýFkŸ¢À…—0Q‡)­O¾Eb¥Ôs½À®E>&̾nþûvr¥îs5dc‚í:MÕïcÊlžÖB=LJ5–+%Ÿ0¦"Vó®“j‘ו~Z¯VyרÖw®Š|©&бƒíoIY%Ù\=‹ò´^f00jB0 Y¨_‹b̰<Ý/O)îP5¡Ñеùަꥬ·Èú8a̳£†:õ@ÒRÌ5?ÍIéÏæâ¤(À„®€á8€¾UÂE>u•ÊØ})¼ÊÕ8ú‡ ùÿJ.‘àÉ?I¶ª«ÒL䕺Šx]êÕ…$Kª«þ ©tiÖêÙ ^5UWù €%Änܶ” Übúhˆÿ,òl~Üh6Ší›•x,Ø' Àšû¼ªÄr¥Ü¯K"a‚š«¡ŒxÊ‹M¹žÖ‡ˆ*CWÌ+®aD”IÍå •w½.˜NˆpE ”òçõlìÛi$Øgb9…º>­³H±´  QÄC~à7|ù̽…§­´HæŽÛPìr*Mû„Ž@‡j7¯· xÖ×Næ‹ d‘[lÙKr”¯d€ÜR@#)˜ÙuC¤ŠŸÔ#‘xji˼R¶ì»AYñ,æ…^›&3bð’Þk+žd¢8pà|MtÒ¬yz Î/O‰k… žzR¼ã¢ pá¡’‹,× tð‘ï3g7Åw¥fB¡b9=nb±Aưiùˆ4™ý –jl‘œòJ(›¡`ú(ôq3úˆAŒé‰¯ZTÖ‚}Z±#Á–U|tÔ92šõ6Í^mÑŒ€îNkëå6àÒÎ.ã­Ó¿ÐÛ†æ BŸŒ¤¹Énò·(«û)/ï|H3 áÚñúQp!L"mj§Be˜ë×é|ÏqDNÞŸ8€ú0Ä?¦ÿ²Ãû¯dAzµ-âÀ CŒ¿'»÷dç=™`†ˆk\™=³+Q'ø¯þ{µþ€QnxðÖ‹ÄHxŸ‹æ³§‡¨ï¹ÝÏžAˆ™f4øIÜÿ2‡¸ÝëŸo'zE18¢ºãavDBÓ‚Òu z|,×|áj¶97æ³jÓtÝ@™È†æÿU@ P endstream endobj 1771 0 obj << /Length 1479 /Filter /FlateDecode >> stream xÚíZ]oÛ6}÷¯ÐS'5ËQA; KÚ¢E;l‰·—¶‹IµÊR*ÉͲ_¿K‘”%Y¶•ØM‡"/ M]Q—çžsï¥-l]ZØz5ùe6yòÒåV€BÏcÖìÂ"Œ!ß ,/äÈ ‰5‹­÷6eΔú}œFe©†'ù|¹YUIžÁ÷p`s×ù8{3y1›|™x¶HkA‚BÌ­ùbòþ#¶b¸øÆÂˆ…u]›.,æ‚)‘7¦ÖÙä÷ Ö^öÿ×^s¼Æ^è×^û.<„ûˆ2®¼.Dµ,¤kv¦|ŽÔ¿2É.S¡ÆEîn_«ùEÇî«·Šy•êó:ªïˆÒ¨(‚á ÃöMˆñüÉKŠ[`O)E4dÖ”Pr öJùúM>">#ò¦ óµm%WiT iÿä%@ç£ÐǵõÇ1|ª,: yˆÀ³ÍJ7W"‹–³]Œ¨ûŸ›[ÛñXÃn Ò\¡†$Ob½#ɈâRSãôÕÄz¯Â ¢¸³g=ÿs¼BVÅÂxÂs©W#ÂÚž=ðŒ€ï¬ÙëÙÐÈõÙ¶ÍÕK¸Æâ‘u)éóX–æÙe‡U%¸O:ÛZ…´Cßicær. ]÷»Ò·yiéiÒ~À˜eµ69ßLÜ–h@=nž«°G€×AC€LfÇešþéø%Ó¥­J8¢ë åTT@qØR"dÆU¨;S†©GU¤FE¾P#=QÎe¢Vc# 9VÒh ™½)”õæÜ‚ÀG^/ ¿=0õÁc¹,ïê*½I$ÈòYk¨éëOB»UˆTLåÒ°÷ÐEÜ“”Å@Ù°EÙ(«ÐC½9˜t*yO€!40þn»û‹˜Ýƒˆ½"&1°…#EL<#biÃHO4"†q#bk· 7•`\KR^ZIn’$LkIÂh%I¼·Êè§EÓ¶.iχ b~?Ò#AþÓÿE£¹Aˆµ‘¨ªÄÀ¸Ìb!ÓZ&b9ákyÁ¶Ë‡Z7R_ÏÛH—woZ P@Üñ]ëmì7]ÿ žR7„“bä®Z²»×ÔñÊ %ùH剪«´&•ì­¿¾±Yk(FåCýÚ¡/9k·¾&£õ"J¼pÿfúrwéËóݶ¾ mÐW°¼¯/†=­# àJ_íybzV99T7§û(ðy7fß´~†À:úÝ%<ϳ*J2Q8|WÅtˆwô}¢ ”æÜ³¿&à­‹íj¥­‡Œ*H'²§ßP†Àéµä{ªû¯çç úpùUôÖìýlžègxL¨ :g”(v7M¬ !7TS¨þ¬Ž+r¤Ž+rT}ÒÉ)NÊÏý°Ê‹[;Vl€+?ÿXó“$BÙ,+4MTz9@:ÀÁDs Lþ• Š¿ª]1¿Qµ)â+ð€Ûeu×ø\Í5pëÇ꥗™^H(LüVÆF¡ÈH9€xO·‚Æf§!HêÅ{ûTtê¦lS³HkÇ0´Æ Ò·8o€¦;P Æá)³–¾”T‘Xœ‹b[Oú·UѹC± ç¦Ûél•â|iÖÝ ›üBDÜ—ÌfgÇÏßf½úòÝË þ$z°¥¼ì£¨u=ÍN^¿Ó(|–1òÏ͵äO^ć˵·Ø~ õú¯Ê)ƒœý¶‚ý)1¸[‰IÓÂÍ"y%vßW»Þ·ü¦©¥ìwM‹PûÑÉ/Ñ|½êïõuB2_µšéÑvJ-!ÚɽUïe–T½6yX’ݵW’®Îþøõõl3Q×T±Oþ:Ïót»¯*goEvY}ƒ.„¡ðà»ÄIx›w-Ì› ¢¾þUK/„ˆyútõJÀ±ÎìºWÈ5”3'„Z©yû.Ò“h¿)€ÔŒ„ù MWAW]Øñ±lÔMÜëZwcÞ4‘™ìŸà*D©—×aûÿz2B, endstream endobj 1657 0 obj << /Type /ObjStm /N 100 /First 1003 /Length 2992 /Filter /FlateDecode >> stream xÚÅZ[o·}ׯàcû²9äp8€ ±ãÆ@›¶Û¦ c¯[Y*$¹uÿ}ÏðûèZq쪫 ðeVrÏ’s93dÈ19ïBŽìBJ&dGM—ð7äD.5!ºœMŠlTb'œMÈ®x2A\Iå ÃÕ5e .x¶‰bqŠýŒ!¥h30&fÁcÎx²ßfŒ(b29òdóæè(ØT†€"{¼"³#&C–:K+Ž Õ±’ëoÕÅ*–è"Ù¤!»=tÉC`Óg†¤†Å”Þ øYÒŠ8Ú§ŠIÅ0 Æf²zeüL\ÔTg).y­zêÕï)Þ¥l-Jp‰3á˜*I°/+Ñ¥Â6KÁÚkÅRŠc…'¬ ûb?Z±N§Ä>™¨…ÙB‰‡^ ¶ç`c‡¥NŒ=f­;Ž]Ê¡ŽUv¹ŽÍšvÙ>\›îëo‹ËÇTuUßáa !œA‚)?’aÑÞ&>C2‹!¼CL†°\’Ìd«/l6#øGØÖ Ü؂àgÔV^|q%Ø~‹‡IÅf|%i•‚+f¡È•ºó¢Sï“IÉi(Ub§Š`ë•SÕ§Õâhñ2츘¡{ÏÕñ§hŸIfÆ"™9›=‹½ÌÛ2í»csÙJbœšˆï Aìk B<׎ر]<¾Sà‡¦j3˜/†RßfJ]/óÅ uÁÌ‘‚WLMÔ: ÈÛ¦‰˜Ž‚Ñ=ztvxõïÌîðåÅÅåÍÙáåûá¦>ÿþíÅßÏ_]^MóÕáÀ¿>|sxvxüC¨g‡óxã~*Ùî¨ïÄü±t¶íäC‡÷BíK÷è‘;¼t‡ß]¾ºt‡'î7ãy}ýøñòöæúMxž>{õò·î‹/Îðg<¡3 Â]»ÁGº3À‚uÙ‡5€¾z{ñªÎçý@a­»PMø*ÇÎ\v¨ožüqÇEbé,ÀsÜ-6ÊÔEÞ²Foú0 ) Eiây’1O0ë0¦eH#ÒÅè?Eý¯ÎÉ€½p‡ïÿòW"upn“é°iïÏÏ_ÿŠr¬ÊISÇU+µ‰:ï×jG Vë´ÉK'È[ë´#$ÜÖ~zyqSû©åMxyö4Y””Ó‚Ž™ôñáBdŽËàò§ {zz°˜Ì%Ô'¼êðýwÃßlïíUÏÞY‚S´_>¿º_Î0 wxþä©;¼š?ܸ׷míyÿã|vx ¸óÅ͵e°:ÞLêúòýÕ8_³_ýÙæémÿÕåW­Ð^%J°«çýFÛËõ¨X-ø/®LÀðT"pô$dß„ÐjBlBj7!7AšÐf>-Óë½Ü;vé “v\ŒväN‘¸a’ïÚ9àT¿Âe•å”Ä €åa‚ èS—‘ý¦˜á< /@íH°Jð%¼½ó òå±J 0¬¥Ë1>P®àŒX, d¹ójÄ›:ã¡0,ÄìÚ;Kë ¸àŽ^CŒ¬ Îú0 š‘s„a©Wî"('îPI¬åoú iI4JAÑÃ~è*¢™ c‹‰a{ØØ*I©²ÔÞ.Á5ª\„[µ¤Wµ:(;ÀÌ)z,‘•â]©fÉÂ=!þßuÛ*Û’°RÞV>R3P„.hY©ÍD.®TFõŽx~?Ú‘rGVj“Ï]LëµòýlõAµNS„œ¦~Ž»~BqïÌNKþœ–twv*CJãÒØiiì´4vZ;-qWž‰òLáA ϱˆšc_dáuÍsñSŸb`ï=8<ÇI£Ž!ìÙð-¹¶}±†;2'R:ƒ{~M½òvÌ“:±eD9s=ì±bÓ2æ<å>F]ršd*v‡§ç^5ñ°cÔƒ[3Ì*2°uû-üÁÛ³vœ6äû=—Ñ‘µÜ´Ã~C*p)²ò+o ž]\¿_–·ã[8æ×çó;óî{j|ã¸ÝŽNì-mEúÏþüíô¤¿é Ô=€ è˜%tvþFDVûß å·ïß óÕwË‹ËÝÃr†‚Ä[beMvblGYîXï%ü$;÷‘.Ö#qëåÑ]a"yôïæ›{A ògGý±ó(c_m\Ðo/¿E&ÿSþþ³RÝNFWSœŸ(Ÿ(Ö‹¬ÖF@ÐµÚ vU×jƒôZ«­oöÓÃ/œ[g<·øÊ-ú³®ž¾3¯‰ŸðØyò]yߟøHiBc(Á7¡éœN§êÁýIHMà&ä&HÚÌ¡ÍLmfj3S›™ÚÌÔf¦63µ™©ÍLeOÕÜ-ÃÝPˆÚˆNílÙAã6o{Ñ_ü8}uuyá ûˆlUj¢·k’7f«?_]^üx|Ü9[N±aDóñ ŠF5Á)mé>ø0N%õ°,.¥ôý4r.‹ú2L¼ëA Šj‹K'Ì–ÿ­úß zϽN]J\˜»Ì-3jIK­›º8Ë8y’Ô›¾ŒQÃ0²éuˆ‹ßñ %HF¤.!“’?æ+o·«Ä2ë–|Õ“öCƃH*€""ä©H˜¦yÎËÒ'ÎË,{6/2vÞ:þ( ÈRoÆÎFCÒÙúƒ!;[·º°øzÅ¢¬—ü m©Ò#'D¶ÏX¸-ˆÚÎr)j/óÔS‰ U#I™fYx@ªÒeÏ+3¡CýDäá¹Z¡5å-†æulzïÓ °D߈ì ,Ømõõˆö2GÂd—d¬aÏdW?Áú¶%ò1£ªBp—~ég?§"¢c¡¹xS¯÷šÙú%A[ÿ„˜7¥rÏq™ÑSZ攇ÅqZ¦9r¾Ðæ:ùЈ?e[Z\Poâb ™ò<&–¡×©PÉsœø³»µÖ«[ß]‰?wµA|g—+Wj<ÖjÛ™]‘´VÛn+¬žÛ¾ gkµ0ØËž½˜_º‰{çîËñNÆíîKÖuݑϻ/Ô:"© ÜZ#ÜZ#ÜZ#ÜZ#ÜZ#ÜZ#ÜZ#ÜZ#í¾®´ûºÒîëJ»¯+í¾®´ûºÒîëJ»¯+§ûº¯÷uC»”ínûÉ Qyuº‰¢ ’†8“ˆ‡ëåIûÅû¥ÄPªE¨yáú5D8 endstream endobj 1809 0 obj << /Length 1311 /Filter /FlateDecode >> stream xÚíZKoÛ8¾ûWè´°€šáC$¥ èa³M°ö°‰±—´Õf²”Zòf³¿¾Ã‡dJ–i“ M|H$QÃÑ çû†Cš8¸pp6ø}<8:x£DŒ¯Â’"D‘HH0ž—CÊ•ñð$KËÒÞþQL–s•Wi5+rhâÇCÎÃ/ãOƒãÁ·à€x J0&óÁåLáå§#–ÄÁ,Q¢;fÁÅàïvVv¯Æj.Áj,i¬–Å|„KD·V-ŠL¥ù;kp©*{SîºG„—Ê>ήŒíÖèŵ³þül\Zß‹l9ÏŒµÃ½¹IݘüR>L­ÚYú5¤x˜9í™Ê¯«OLMªbaŸEîJýµ>ptJ±›¥ˆ&,Šîbó™RÞµŠs1ÌŠüz»Gw³)˜ÔãÐgÌ1ükÞ¤È˪%¶2¯„ƺ%Qd­[¨j©ÝäüÖf†ÑÜOÓ* 7˜òC®›NɈî#B¡ÝÈVj~›¥•ÒòG§2‰‰•ˆã¸|o%ZŠ"ðíZÓý­ÊÓ¹ ìEÂ#*’ZþC£ÐsG2o€\X9‹b6Ý4/ëI_äl¼,æ«éñ±·ÚÔ ¡ÂLjÊuœ÷2xâZâ¢GIŒ"ɶ¹kT4¿ÍryÇKƒSg<¦‹²:·t0Üu€†°ŒÛ¸ó†ÉèNû©W\ùÌÍ–Ê1y–×YÂu,'i–.Ö!\Vº5ÂÃjV»q7«‰Þvè­Â›?¼up!Á.†‡÷}@'E”î:ûy GOt†‰“ýÞ• yz€üfÈ×E9AîœE0ì¬Ç(ÀIÜäö `ÌϽòã± QÄû õÄ=mFj9û_]uíÝ Û¬å¶‚Ûj½Hø1j·Ü_O£!ñ®=Æ>¸MÈnk‚,³ìŸPb“¹÷¦#¥ð ÛÂGaù#:%’p,ùB4Äk:®æ áÍbR¢¡”Ø4d€öIÓCeJ¯6Kí.¸8‚€$<±Ž¨oË4k¯íÖ†ªKåêFm‡ééŸã‹>€Öš;“è×n‡éî-Uxûd‚gJŒ#"¶%>ÃeC oLJXIØ”Ï.%¬T4)î›” Û;)š5á®ì¨l¥{e)áPü ð*“ˆ#.Äóâ‡0(ú¹*ûñ èz`nÅD•eS@/ó©Ò£˜«éÚÒó0m¦Í'^‹>ó¶‰í™_«v¿EkÕZ·nØ–´såaòxãëɧ¡Ãsl—? “Ã/P@}¬Kñ>œ¾ü Æ ç·úg,·Á9n§t~h­#V™yCrgDnOîœËÉÝSá%÷×À»×hÑzÛ¿ê‘ÞU§ˆ¬`°“ëUÇȬžG ë urσW$@F@Ó¡Ðz}“ ãxÉ ×ˆ©½~A¨nM=¥Íǰã¡Nq1mïÀKÿ g¯Ï3БÞChF•“ä!‡Ðê#rQ)"ÿˆ\œ &\dÎT®@r·ÃQ¸ßÊÇ!¤ìz«ñ¯ú×tâNVQ YĶÈcÌIbŸ®ôɱ:Eœhß+—ÏÌ¡²ûúžN›ÿÝÃ0ATÞuÿ;ï…Ž< endstream endobj 1841 0 obj << /Length 1940 /Filter /FlateDecode >> stream xÚíZK“ÛÆ¾óW tتÌñ¼g Š\•¬Wd+Ú­"ù€åB+¦HÁlä_ïîyàAb±¤%§RV. b¦§§§§¿¯{K“»„&¯f¹ž}ûRªÄ’\k‘\H˜Äh›è\³äú6y—r‘͹±éåªØíüÏç›Å~]VMÑ,74)MmªtöÓõ÷³׳Ÿg &  ë)d$§*Y¬gï~¢É-t~ŸP"r›Ü;Ñu"$ˆ2¸J®fŸÑ`%í[ËißZE‰R*ÑÊ.”·ö=çÊÙǹA†0#²„qhw²M¹Þ®Š¦Dùo_Â܆ä†:1nˆ¢6 þÉK iÂrÑjú´-«b]z÷\(””pGùïZ…ÝræF€t2gà*Vót³¼ +B—ÖwÁ·o_Í’ws.Uz_gs¦Ò¥_I»òÐûž*-’Ióqó÷¬ÐÑ¢÷”Š£$É-‹2Ëê¶hŠopÃYºÚTw™› z±*1vázy¿÷íÛï»ÞþX˜–×»&ÈdšFcsF 5g™\eŒ¦ûÕꙡi±Ú—à 6ðR'Ê€ªap7 ¨ îÝœB)½ºž§Á|ø0éex«kœ®ÈM?ù¦Í/á6çßùöeÕl|OáüÈꮎ«£óz­í´Ni¹h6µo^lVûuå(Òm½Y”»ÝÒ{Z§ûê¶DoW¥‹&XóÜ™«¼iÞ@˜C¨¨œ±?gƳ¯wÖLázw‹MµkÀ8kÓ]sûôiðò0P¢Ñ] 3ük޽Ðã> OÖJ\è°Ž'Ö=TqÑÛæé¨Ý>ÒF¬¥”h!O7×ÁDONgšÜâÿ¢³jîBì¿Éƒ½ü[YÝ5[ú8 ô¿†ôs*7#@4>Ì B;ˆ Ýâþ€P±ŒÏ>3à`†Œ¥ÿRxlÿû~Ù|ô»m¹Xâ Ѯ˓Ýú¦¬ûS˜¸9Xç'ѵMÔnËzŒꎘÏàþur‚Pv‚„p Ÿ€-Ø ©ô#ØÊe>E9aÖ<‚«\Úc*àÀÖ\spB•yÔ\ûpJ˜’g˜ü¿JÜH—­á1ÈÖFødÛciï¡4èFôão@?°ÃGÿ2 lè¾Ç)†àôDA›ãlÜÆq¿ õ¬J@Ÿ\ ˆ|ª€Þ‰ \ûÛ*p(ÿBìÂG8ôÆÝ'àVåÄNÓ Xõx§vÒŨEŽ v€L`%‰pÐêøw‡«ò¨S*½œ–ó* :˜íµï–¿ =AS·-®3;NqÀ Ð]ÉæÎÊÕå#ÛcÞaÞ$}l €·ÿü9i^JÞ š?÷£dw)Y?éãÐÐ(,ádQæ§A✳…Ýò ÝãE.lçØ¹Èͨ¹ ²ÓÔÕÒÆtH€rLÜR€j¸)_<+[Ÿ\íAV¶-|Æ w'qó/˜ò©žƒÚî n°¾+@­¤i³Œ¼U4CÄYëpçHé d¨ÕáÙh°f Âí¶>ózÙ4–-D?c_wÍÎ5û4˜¹Ê§úÓ*x!ˆàUð½¢ù ƒy {ü¢€çºf.ø8˜¡&grä¾@·×}ÊŽ^èy\ °äpƪ"K¤ÿ•;>J ˧.øT¼‹;Œ'óº§" èéˆ^üuŸD!Uÿ²ŽÎÜøgGÇ×¥cDÁ7ü,¢½,Ø. #+ˆ ‘ë‹–ÉúŠ}ÊÄ¢è³K@›R:½Ýìo2NÓU9`˜ÚW]àªCÄ:rUÔEDàgÄî ÁÑšÙ‹Ž»2°÷õ?_¼ý±:X¶× ™âuJÝ_»ÀœX ð¦FÛ7 „Šs$·éë2áà÷Ë}µÀ¯,»l‚]'}tqnä®u":ûÒ—Ÿ‡×–:â½¼°¸…ÝÇXÿ¦sªÛk¾Š…'F ޏðC~@‚þ¥hja|1ØzÈ Ç&1—1Âiç`z¼.O Nr³$ü¸ø€ ðÅwº.T%Û»OÉäÈ}µl¦ì‡ñÞìb·q»LÇtND~Ö÷Œm&üša"·#h^÷ÑtÛ> stream xÚ½Ù’Û6ò}¾B•/Uåq¦Vs¦µ^E:fRi¢ö”ÚÒá÷­Þ^k¿­¥êbëÖ¸æÑQù“…BÆöÙ/kÉóí«Ý›XœãB¨w\sø‰Éš¾¸Ó1É£4F"¥d2U«k2-œDý)—i–Ïk{QÕ#é¢Û­äÒ? }ý0CöŽsٵø4k¡6Ù;SÌuÏ´¦“(¦hÖ×!ºcVÒ)m·½¹©Û®1ÙgâàÙeVdzjšãJ‚g­U—eÛý¯Z,ªÎ4hüAå)/ö‡ÒŒƒ ¼¸ƒmVB!âKC–('YL[ øY¨É©"b"Ž=T}€ã²®nÖš{0©‘f| Ùa4VºOW×J²P;fŠçílÑ–’ k R2cœÙf]F#ç@¦q°ÇÙGà¢:OBÞ½Þ¼™“†ó]vþ\GÝu¬ô”ô*|¶yVf »G$j]™ž+ˆ•Úq¶à ¸ðWŠm2ÈMY’!ã´å½"O8a)û@{¬0p²3–uî­=Þ;5áÑý Ååí6ÍËÈúAÂY¤’Áp-ÈÄ8b‡ÂlphÆ©øÇ ~„Æa/L”HC0 ™c"(”°Ò!Åy0”º¡w’²ÒÚJy¾šUÛÑ6Ô (°ðꤥ¦F­>¹°˜HÚ°4•6L<ÝλsÇŽd Ó½¬tMLþ¼N8‘xF±f\ŠÏVAò1ˆ‘”RÁË6/ŠÍZ€h{‡@  Ÿ­ÉBeuUº‘s4zéÝÁÂ<Г”3,Ÿ³:3ÎÃ?Ìòµ³“³0£Ï´Èûs 8Š‚§A3‘œöaó0<³Ê½¬ã|ÐÀ¥¸‚ó³pä#›ÔŒ{A#»ˆùöÖ¥oŒK»Ó3d°3ÙÖ¦1€öš¸ G^#§k¡˜”S«-‹¶C E°¡R$J‚Æüz,Ë¡} GÕñY _bä9fªã±’q°Çšô¾}»·ÕN„6‰¯•]ÜnršÅ8{%G(¬iûH„n Ø]q°ƒ2¢¤‚+\Þ®—Ï9Ëñ¨øO”û_±ºTSneŠ5•ôÖÖ[?ghPÕ ÚãáP»û›ÙbHCŠj¸:¿!ÁTcMF7$˜³Õ<éÊ \ A þdg)Dx*È—P0ñ 2b­>’Âêd5ÿêi©E­IδÒóðeKLx"/n—ýe †V°‰¶¦-+›‹av(àÅ<`í®“€ÉŸ³ ¥‰øOýš:7mKÖï¶ÎÆÁ.ki°‡ >ÐÛ¸.G4ÿÁ5ãö,‘ (ÝݳjsSmѲJš8V9™;pkýy$þñŽéòVÑ-^1¿7û{kÐI8*ëñm|¾r„ûTX/žñ~Ãp™v‘{%¥‡üÿVlÍTD“6§Eµ²+¥Çe­锲ζ‹7 ¾­ÓåÖC-µYŸÜ9!ÎÌh¥+nfúDPäEG`~÷w®« á#®%^qbg"f„æl¥žÎœWu+Y&\¨Õ>ô+=·4Ý·Úú-vz.~\„ßÒêÈòS§ÁO CJ¸:tì »%š‡º(s­|—ù†‰µ'\šÆ[@üÜO3ÙþН™UøE½·Çw)N_Fr¹ãïÓêv¹óÅ'„Ͱð &>îX–ΗÕû—›?ˆkä-á„™†Õ3ž™c¼©›ä]FW|&^•¡ñÈMGÞUÓ0+KºæŸ¿$P`h½@éo|ïµvj´tÐxÐûÞŽvÔ8½Ôµã ý:éúu·Ø±lŽ)±e÷¬ïÜM¦§úI‡srô¼—G‡õíA¯ÿ›ÒÒ!x›—è©ó Ä8ä¿AÁ3–dAy°g«IUº¯G›âq×- Ê>Gž´èOÚÔBCeÚ~µ®ìÏëƒO™¾CLŽNÒÕ½“Qßp|Ýñ[ûÞüÐô™HÛAêÊ··,îÉñû6ߨÉ?¶™ÞÛ”ôe4&¢ì ÁÆx‰Iž–g°~lR4ùt8ÀøŽSÛÚ8,V°Êx°Mî@:OÓ¶h!þó̺Ïv ¾SçEæz#½Ç¹âžúh“ï£ ÛGÝÇêSM,Z~Ü¢gё͌ V( –Tio¨ó_W[ûMä÷ç & àè%ö 7]CVã%s×ÀÁpy£s~Èö¹ž/xlûƒ~^G`QåÑlp€Ùøôìþ08&¡ŽR÷茉{ ¦¥:á&qãF‹ž›LM|õÕ’Î"ð 5Ï$sÖ9PÛ+ím_’¼¿˜u„ÖÔ;G©ÊÖ²O>ú»ˆ„clKöO¢ûø Å/ïØÚÒ"ý”/ïþÿ"&cú\é‘%)S‘‹ßHOY7¿:mÖ)Ô_.fŸ¹êV¸®’Kífâ®oDê¿ J——ÆEçI­ûªÆtóû‡G¢L5gÿ¿Ö9i endstream endobj 1874 0 obj << /Length 1957 /Filter /FlateDecode >> stream xÚÍZm›Fþî_ú¡ÂR½ÙwàÔTJ“\”(¹¦=7R•ä1܃¸×û÷}‚ocȇê¤ãewgf÷yfvv0ön=ì½Xüº^<ºä Q$%óÖ7a 2ôd$Œˆ·N¼÷>eË Bÿi×µ¹}VnöÛ´hâ&+ x%$}.?®_-ž¯_`ôaám¶‹÷±—@ã+#…Þîºõ‡®D ̽ëÅï Ü·’b—•"@” cåúsfÛ”EÝTËþ~Ó”•yçy¹„Ww¶Wó957õ.Ýd0¦›v6𲼹ГiÀˆ u«./Ԫɞ=+Œ¢Hz+ÊQÔšóvI¹Wñ6mÒjIˆ_å^ò[ÝKJ„ÙøŠJ$‰ìVôûˈ” ÂQÈ1!ÐàÂÊЈŠ`€hˆ,¡$!â’š%Ü”ù~[¼,’tɰÿƒ\E°t¢CNEqz`Áºåˆ1ÅÜK‚ýýöÀúÀ"bDB1Á"6 CŽËø€ç Q‹#!ƒñÙPèKެ\5`žÄö^©eôÄ[Ù5ÑÍWà<ÇAŸf”ó¾QnÌ•)<~2_–û©úw§ØPV‰iX¯ÿzû¼8΋³~ˆ¨ÁÆEœ¦Ål!šRB¸ gÑ" ˆBÌ!Avý›ûÝê“t:QïéÜ×)È!bߨP£¶ õ‡ø*|Ãço³"+nMÃÆì„ê¶¼1×µº0?+ÌãSMžgq«¹<º„9F`¨Õ0ĵ´ZûϦËÀÈœ´Ö$„m‡_NIÞr‰­Uï–!°WíŒÆõV‚gÒzŸ4CŽÙØ÷6ýˆ³œ‹µƒç ‹h¦³Ì¢EÀóy»¤dÆ ˜ò6;ë«87#®3Í·ïô-h\3QôÑwÚº¾üí7ÅñpzœgOÃ(ÈNe£'i1Wˆ¦'Hˆy¬8ØÁ@”@„6¢Ù&iu3¡¯õ”Q-ü^½\O‚ÿ\ÓÀ&ÈLôç ÑèÓ‘(˜ÈÔI0À6dˆÝöÓtºÁïëTà›#ŽRWÝZ½¼Xxï æKÇŸÒy:8Ù»2+š±¼ú|ãÈQ˜H΄® ?‘(äl¦÷Ãy…r0Ãn€X !w7¦iv“ §ù¸Ü©ctœÃ=1^¥»v&öEs¸1ôã•9¥›%ÏÜ=~l®Ä1öI½É²!»j­ý8Ξ¿ƒ Cr>“Gs…haÈßÂhf¡H‚+ "Øðn„AÓtºÔ×é&Â]–4ŸGð<Û ƒÎMgÊPhrXaÂfÖSœ«B%K €võ”­ªÙÇt¢f'¦NÍÆÓKsýdqŽ“$M†M>§qûÀ>:þùf?Ž«ú$›yªž dX÷3Yé(ur¢0`mAÁßrE0Æþ›T—¢V”†þ徨Ø&=,Ò¯fÂ+Uº”pÄé‰GÄ*hÒí.›Ôq’“€ñƒsìÀþÁaPíu%E›ç:r ¹=;8ÖFpˆ¶ÃߪÈZf‰øô©ªâ6õÅ…9ç^\ÄÉ2ð“«}ž¿[rUÞ[Ýf_áB¶VÀÒö]¢ˆG­SðS2àç£h€Àýp·’ÁjxÈŠF\ƒÃ EŒp3ê:m¸¿¾úóõëâDÁɽ‡šô[»Œ—HR«ç·"¿‡ô€PØ•s]X…E~¬¼S½í2¢ªMz›V¦Åôƒ%L̳QRÛ²£¤³Xµªb¼ºj›”¬n¸yoJ.êNïØÖ¦A0+[ý¶s‘¤«n6½¡ê^hATú»ªÜ¤u·° ¥ÿ$ÏM 8ù¥Ê,0DK†c¼hº¼ÔŒøºsÛRšW±’»}cš~h©aZº)þ`šãÊJ«S; +•XÇ„:{Ëe¾GôIócœk_ö ËÁJpwU§êòé>%ì·{«ïkpns_9·U^ŠÙ&~ÁCfÛpBm8Ñ_gŒ^7•1î<æÃI1¬ïµÂæ–Ô~ì1. kø_$¡„!Ñ…¦÷Y‘gEúqÜ/ÍñUÚìMéÂzâúÙËe‹Cƒì·Jk `m€×Šú9ÐÐê÷úœ¬™VUJ^¬ ½¯[Ö™ÞžÔ|ÖRï{^¨Yõ> stream xÚÍ[]·‘}Ÿ_ÑÙ—¾dU±ÈŒ¶ mìF¬I Ãèf“!Š&ÐÈ@ößçï´¾ì·åÖji¦úÞjvu±>Î!91‹MaŠ9áG‰.ĉu4%O9š 2YÊiŠáª­S$*.å)Jj¸Lî ùeö;?,ù›"“K4Gv‰'’⣨L¤ê·iš¨Èt"3õ¡hb\»ÄE<# $ÍþYšø:T˜¯ÏKH.HW ’áŽð™ñÏ WÆ(Z& c‹“D<ÃhÎ>Šñ$É_:›L’Ùï°4Áøq‡N)èò”(ŒoË”x¼›Ù”³?7L)Gq)N©¤r‰& lþOJqH2)ÛÒ¤©Œ9 “º!ÅIKPÿ6CÂ|Å"øÖÒ¸C§Lþn…hÊ\žA˜É¤~ÉϹ(Mx¿â’NÝï¥<2¾(’ýidSQ÷_á0W†§bÙŸ‹ µ˜ÏÀ ™ÇÉCJ“)¹-=HÐ+#êzÅç·ôLÆ{(¤2î…A!°ßŒàˆ!&ñ§@=°»ºø„$®À¸!è¸í¢gŧ ÷ º1¦¡€‘ƒàþŠ"þ©Ç©¯‹xט1V©1øâÞ£@î9̱‹ ‰4¹äaÌ#5¢G?f¢ÛQ<¶‰Ã0F\õ!öX+þN$~GÉ.¦âÏò) <&Û㮳í©@˜d`â¡ç9‹ ðyDôû+zàºWyälñ)áHz÷Åw—gÿû6]¾|ùòþõÝåÛ××ãú¿ž¿üÛÝå«ûW[{õ]@ß_~wùýåÉwq\Ü]þÐêëé;¤ËÌæ1l³¸¡†kD”†05è}9}ñÅtùvºüçý³ûéòõô›úbyxxò¤?ýðCü!>¹ñãß_þ°ä¾1ò¤%Ö…“,IZôu‰-ÔØÓL¿ýíþh4—Yó[£“ØLzÄæÍj³ØJ+¹ÚÂk)«É¶õj›PßÊù6ÃÉóˆ¶G›ÅÊ,éˆÍÚsH)mH{ë&}Í´tÞ:ªð'°YÊ"‚”⌑·±8­ºá‚€HÊš×®½hC5ZÓè\‹“ûPæ¨n1Í!{(3壃÷(!^× -¥ÁÅD›ð²”"Ûí<£)ðQîXË̽R`4Ê3ç2;dôÊ,bÛZó¶1õ61n´&ÉaÍ|¢ÑL0-…ÏÞïÙƒ‚zðLv  OœüÂH¥æÓPºGªqŠ3Ð?QÃ[ÉV(õЬ­tE.¹-áüC=Ÿ­¸‘Š` E(GŒf¼tï]K\znhð+Ǻ²ê¶4[úr¢Ñj³wÈ"sö–maÔ2ÌûL‘àë’x±¶•Z6 -¢u³ZH—~ftèlGèâ³£LììèÐY—½d^P£ZjÜx‘ÒÂJ ym(ç— ôP ¥gB€ðø!O‡Üe[C¯±­`Ý!Hˆ%ËyÙªÒw€9ÒâÅ8Fäå¡ÎAaÓÜÔò*̵õDKYP'ÃZãŠNx¢Ñ)K8ãp£=bdäeüY£_.oÿXj{4|3=%QÚ¤ißjH©V–¼äV©ŸðAßšKÐ'ý¢¹ÿ.0BêiSâ æ7˶ñºÄu#D¸‡ó‰FGÅK‚ÍìP{d&%”‘C¨­š·•·Ú—ÔVDÉZjíIB¥h3šÉ`uŒçå¥o°|üYú\Î3ˆ“›ìypãlˆ-åd+¶öÐ-µ¥õš¨µ5Õ¸Äh«È»6=ìfýaºüéÏGhv²CU˜^þøâÅ÷¿ ÌC™=ÍÀ›nÓ&DŠ.ݨ ?à›µ½ièÔÚJ3—[ß2² ~ð–Oï_¾óíñ~½í)‹Ö_/(Lίä\m¿p.^ÆÆ»|óê¾~Û Ó囯ŸN—gퟯ§ï߯o–ÿiw—'xl{ùúÁWÆ`F÷?¾ªíáºò0>ûï¶=_¾ºÿç4"O‘¦`ˆ¥o–W¸Û—_oQû€5·g,¹\‹»@»À» »vAwaÇÞŒs}í±Ðò(Ä] ]à]]¸ŽüýY™osB8!\g l3ãRÅ©ÅçL|•ŒÍ£G7)9/;F"7ó\š]%«˜Ä%+R|x•êùh@ѱÄ1,ã·zˆå+Wu5àp+ÀpÐ(¨‚Ž-IHP÷?Á ƒÆÁ'w£S&”˜CF§Ö8Y%R«!†¥§¶QïaùFƒ¦E¤ÝhjЉCý5ë-÷UyÛàé”,mÙšõ¸ÞÏä‘2€L €ç(ŒlCó™°BþLíu_©AVÙ/ŠÑ,ù3o)W­]%S¥j,àa±ÖE%ð‰+bNbðI@nÀÊÀÌP)|uIÑ@oBƒOÿìÛOàC(oCQP¹T…b­­K¡¶$šJÎ1!H‘Gõ8€Fò;NŒÀ«á3z‘  J~[…Ð¥¤CU¨.UÅT©-ké¶­4Š}­ÖÚ’ã‰^ô91/Ò9xÑÄ9«~ÎtöU!¡·¡ø1«B½é tµ×¼,’.5‚Ë$]{‰ŸÀhtxßòØmƒÆÓŽØs Ut‘¼$·TA›´|/ô°~‚UyÒ0¿¬”ÁT[_YŠiÏ¢¥m[ÖZjÎkˆÜZlçÚ,9 ú~2c“qÆØÏŠÿ‘¹sÀÑÿM2~@Î=°äç?€#ü,<±ßø±G÷˜~\’¶¯r­¼¯ü¸"©5ªÜª fñVm”•Ùÿ–à6m*én·j§<øÞ©Ú¦hãï)»mlà±™¢GYïa©÷ ×;ÀêòÔÿŒ"QúY4–0Büu,ËOX¦`9žz %¢ô–4Ö‘DÈFÈèàÏR>Šá™Ì| qÞW~L`Àîµ½:2¹QÀ]ñÅ™Úþg þgbÕ[_Òϳë»|ã_<­ý- endstream endobj 1885 0 obj << /Length 1822 /Filter /FlateDecode >> stream xÚíZ[oÛ6~ϯÐÓ 5Ë»DcÐek±¢»ÖÛKÛÅVm²äIr³ì×ïP$mÉf|SZl] –Eê;ä¹|ç“dÜ8xqñõôâés.‚))Y0½c(’q •@R‘`:Þ„”Æ4ŠÃË<©ksøM9[-Ò¢Iš¬,à”8…½›¾¼øvzñç8 @‚Álqñææ0ø2Àˆ©8¸k§.Æa*ÑæÁ닟/pw•ûV)"D™0«ü±ÈïGcÆIX¥y:b8|?¢"LF$,3p­Ï–•þ‚ìhÒ›´2#fj¾JçfpVæ«EQˆÑh, ¿»6#Ímj.™þðë«W…9ùLjâ0ÕÿîïFDÛ˜›IYm&,«´w=oB†YSo™ÕŽƒÍŽ xIØ Ýey®•*¼Jµ×qx«…eM“f¤)õ•OŸ(p•Ú=R"¬$Àµ0o1ff’ˆ:>äHÅÄÍ)ô¢WyþÛ¬$¹™Þs9UˆEÔÍOйµk—v½*f6àt•6«J§E>ܵ­$’8r`Ù•qÂv¤Š¢õVñš…¶iŒƒ9¯ûõ@V›™EÙ˜&Vnù:ô¸ˆŽÀ˜ŠbFûØD©ÍýÌÖ ¤à\Z¤ó'æŒõFÜõ|;à "$â›xµKLòÚçJ¬…Ýè“q}zRô9Wn¾s€ñ*,Êy¦=‘ÎQË®r1¢BêšjdsLFåpÀ!·¬¯Q&U²H¨MBº¸ýÙ³°=êg"Ì|ì%"ÈO"×Dôø .ÀˆB¶¦›44-öSGR} XB ç–'Eû™+è(Ô2§[+xfÒbYjŽ­lm”[5bªÊ2Zr¥«7wåãxZ©›ÒN*n¶ oàt‘¶œ½³icDbqƦwï1Ø~ŒÃ9tH?ÛM÷–ž¾(DŒb±îÞHÿIð!Æ@šéb™'eh·¾Ñ#Û/ÍŒžE|Ý4šûeZ@¡‚ÿ™ _{¡¡s¹¦«¯<€ Ö¹æ•÷ºöËln//5¥4õdrÙ6ãɤJ;ö <óˆAvÌ'“÷éL'Éî‹átß–z+ðm"B˜Ò£÷ð…™±ž×8:›léý‰‰â.uç%$ü.Ú˜ÆaÁm’kž§•Nýºñ!Xd@†Î!¤XOJêÆ‡$Q$¢M{¤GÐ[ô0ŽL'°hŠaæ¢_RÛò³L³=OšÄr@U.Ì‘=QÏ’<±œ`ä™mÇ…£7±M‰´M ´ú*B’ÚV3½m™ÂVÎ(§(”SŠy^j—ÞæQ•c¯[¦Õ†ªD¸0g3(°l–5æ›Ý`Î@P·ÝªnaŒ¾d1Ÿf~ë’¿féÒê¸Ð A¼ò Åæ¶2ët¹výÙykÛ°9oLeuSo8ó¸Ö‘Á¥ˆˆ£™߸9èZšuëÑ­› Þ–ô Ö92X1®2l«îÙgšööìžé©kªåªY®šuæ4IV¤¶ˆ@}óÍľȵIÚÊÝ:û[gTêÚµŒ‰Žé,­k]Ì€÷÷êÓ7ë 8`ÐýGdÍP6k8EwPÖ@Èh‹÷ç]êÚw„ý@âœgÝŸ8ëk1V/› ¥åËJ6æ­*]\õ¡îê{ôÚéëö„G|`œr¬^ãXµ8]½}P½FÒk,:¤×àfÓ£×ȽFœ^“N¯é¼ÐݼJôѽO¹ÁZbÆ(·ÍZ|Û‘HEÑÑ»ñ+7¶yHr@¹1&+7ˆ3äG¯{ÿ'”ÿÈÊ­MÍɨmP g ŽûhO ;"EÒÌ`ÝjÒ—êQ c1w›qX œiÚÛgz¦ÿåôÍzb >ŠÑ挾û$òQä ƒÂZ;EŸœiÞŸ7]óZ œ¾pOüƒ’”Î9V ÐØ(‰®@‰? ”ÿ‡@©4¬­¯ªˆ»¯¨ jBõEEçõH_ dÅ{"Ü«TW¾IçɯyÔ3Dbœ..œ},qAÛ‡-jE Ñ‚Br`ÌE\P‘p‹3M{›DÏ´W\xÓÄ̺úîážpú:=±"Ňޘ øPp¢b$p<^ÇQÙÊß°Š?ÞgZöÇ»kyï$@_\¥ë¹»·?s3¦;HÝhɨ$°~W•Ø\"š÷¨ˆÓwºlÁ–1g€«"èÉžŠPŸ_K}’¯¥>mí°ìþžM0A‚¨S~ôä~’%$ïV–fÒºõE ·¼P-–{Ü-ît¤pè~¦ò½{äBˆùöL4ÁbB”{ÛN7oÛ]z[âkSã~òÕ¾.º¿Ñ¦ÅööÿÁÈì endstream endobj 1897 0 obj << /Length 2010 /Filter /FlateDecode >> stream xÚíZ[ÛD~ϯðr¤f:÷K„`¡HH@W¼´}ð&N7ÈqBìtY~=g<ãÄN&ÎÅ»´ *ÛÇç>çœÏ1Ž>D8z=øîvðò‘FFJÝÎ"ÂRRGÒ$ ‰n§ÑÛ˜²áˆ*ßdIQ¸å÷ËÉf‘æeRΗ9\ëXâáûÛŸ?Üþ€#Ò`HÁ"š,oßãh 7Š0bFGé"bH‰}0‹Þ ~`¯åöˆ¨°K{¨u—-Ý)RŠFRb8j§û/CÊãd,Ò2] ‰‹JÇÞAûwÖ ÖÝ–I$‰ÜZö LŒed‚w1rˆƒžGåD¡šNT qf€—D†;~R'Yˆ®—Cš\)™â¦d#§²%ùö>uù¶Ü”«MéÖ•:é¤\®ý½»?àìP9®1"Z\¡\ >Àƒtó8#È}™TAf¤g€9Ò°o$ãHhåü¼^‰ˆ:|¹Ôpp›R·Ñ­ÅW'ùàx³¸K}xË¥;ÞÕÄi w€~žöÙ0u÷Þa‹2ûÇå<ÿà.'>sÜ'¨#S.²2`†‘Ƥg–\Îätet¬…ш¯êÈþgb îJ«,)Sëž—¯ xBÏKƒ´ ®zðkGÑ’ â¤&(WiœÎXü&À6¯©¿ °yTÕm _ΧŽÝÍÍ;ŒiYŒÇ7Ël³ÈÇãušT÷h~½”qQNÇã®HŠ'L#\ùï¨A- B&@‘2ä” º&øÊ(Öò3¢a$¶5öE€…èKSSfKHëCn#ª’ qä“´"¶¾ZÛÍU”!ΔÔêg¢ÛpÁ f¥!ké¾ÇxÛc|k(Æ‚>ÁtëW ²ì÷¡´¾Ù¤±LBI¥;®‚´úû^Ø9°·F”"F|“ù-TP†#&p/«ò¢FvI½‹~œ¢â»eyï´kõª¡ä0lª¶–=Ì b¶»#ɧ|” $LK4GF÷‘¼Neù²t lÝKU\:ÏÁ•$·èÑžèx3$q>Mí¾Êm×±×ü|´I ÷ÀÜ?XÞ{æ–:óë‡y–yg¦.„DòáN± ŒÕ´NFßϪ.§±íˆ‡Þ‚Ʀw1x2oÁ®†•Âe“Ua²\Í]Ó­3¾Rì> ÕâÈ…n;Lî q­Z„nË@ú"—æoÒÔ+àºÀÜKžîá¸4³›Ùí7p-t>…£•ò³wì}=kLÓ2™g{¡Õ\÷ÊÏC¶ÔNväß‚\SD¸è7gôfb§Q£íƒO98…RçbŽ+EÇÒ–è è€ý©‘§»dä;ÂÙ&ŸøÄƒ3·ÃݨZÌÿ¶ÅÃÓ•÷sŸÌÓIZUÁPbŽN¦—8ðP¦çtÚ›I•5z Sý²FhD+…¢uŸªÆ˜OìÒ‘9׉gNS|Y'D±J|2,g§hc;Êvà“ËxpÖóuEo&Up`hí™´*ÀœC£R}íH&\§B8*¬–Ð÷ìvLãZ;ÏÍk [ßÜ4g {¦8Ûç ›M]™r±a ¬{¾ó¸‚ɹh– c¬i£YòœhâwÍR¡º± 2€gáQ< DÏî@± ”¬×‰›HÈt‘˜t#Û†.G-=Û˜#À–²3-ÝÁðãÀVmÇ_pm®e¸<îq­]9\kWþBkíºÆµví§üá×V)imJ†ÕЂTJM¤ÚG Õ^ö°V¤nu=£â Ý£p?'Ý`”1zŒB{ä¼Åv/åü« P¡£Œ‘úõ‹U, F¡×v5;Žæ9@…Ã¥V~—Z%Ú¸Ô½}Áж@FŠz°êáÄ—2¬ë;1ôfbgK CÔŸ'Á¥Ô@7!ò\\z¥èàLÙý9âÒË= ¸åY¿¤éË£ÊÍ`€—O‚J©€$é%¨ôJñá¼iŠnTz¹âøÙ?/ºyœ‘}™TY ”> *¥J R#” `é•:„S¡©Ã'Ç¥—[3ð°£_®\Îä\\JíKs®Ú¸”~Á¥ÿk\ê縵åêŠj˜3ýÙƒIeˆ©ö¿¤ë´´c)d†ï!‰o*€î²ÐwuIÂ_íl±%¬=¶l0=‰--QZî>ñ8(H øCóY³ý;ë º~ÜŽV]vØs–©Ãe‡Ã(ƺv*fÀy îÇpÝù¶®-…£rH°“_zHŠ8§]ÖAp$ ooäs ԵƤGêš'ê×;w@äa¯$9QàvÛüTÛiÝõ~L4jÑ3¼q q’PÇõÙÅÊ~Ì@ô¹Å*-ƒpÑ“|•8kmâVkï ”&%b.ù^¶þš™/7&m“>±_§“²®158¼h#¾òýœx#ìët{¤Ðpü5ÆbLŒ˜U»óÄõÎõ㣽õX-lÍþëñƒ­Fqšï›ÿÆ(R^ endstream endobj 1914 0 obj << /Length 2133 /Filter /FlateDecode >> stream xÚÍZKãÆ¾Ï¯à)¡€U»ß$±xm/` @²;Èe¼ŽÔ#3¦H…¤v3ùõ©~ñ5-­$zc»««ª«ª«¾jŽvŽÞÝ}ÿp÷ÍO\D)ʤdÑÃsDC‰L#™ $3=l£Ç˜²Õš&iü¶ÌÛÖþü¡Þ÷ªêò®¨+§±$«?ßýøp÷ï;pDF ʰˆ6û»Ç8ÚÂäÏF,K£Ï†t1¤D/,£wÿ¸ÃNËþ‰¨Ð?õÃë.'ºS”$4’Ã3µºÿ}Eyœ7ù^uªY·FÇW¼ƒ2æ³á NÏïL"Id¿³¯À$ÓLÀ€LðsL€ü „ãaŒ(’±†8Ë€—D·6ü´¢"ÎË6àÝ Lar£dŠÇ’3‰8•É¿*oõ±;;û{SCܸSà­ÖŒóðùXm\LÂÛç¢,í¯FµÅWDÄŽ®ûµp¡œ»g¥6ªmóâøåõ^yŠIÅ { ¸xó<.ˆ™¥LLÌ0²,^DЍáÑHë¶_0¦MÛ½|Ñ šëE‡f,ºóÐrõ³ Zûÿ³óöŠàø¸RsWû@É·èŒ÷¯R:à4†QŠÉBÏ_ÏäËÉÓ²YŠиÄôá«5ÁÇÚʼSÚ<ßü©:ƒõàX/3”JâÌ¿XЉ„%œx‚îå *HÊ`s™Æ 9G˜1Oÿ]€!pî)>éD_[Ëñí[ƒ]{ÿ¶.ûêþ^ûõ¯M“ëxi-Õ/XàÕZ0·Ýöþþ“ÚtuÐ…HŠ8§çv%¢òÖÚ€¡´lµÈ¼Ì½ðÐfXï,ÿ %©ô!{餙æZSÌÃVËHz?üÉR$lâ(&èȬXçþ7V¢Iö.*ëjàF$†À0™A[²CX¹tØæEuŽ ²JáˆÐ¹ÅøÌbÙH1´¦½(›3ÊòŸ+©mrT±LBN&WA&xc– ã°¶„1âª^£ºc£AUì2XîRšê‚­Ž:jSµmD»²©‚ý]T>Ýåšú¦×àór¬¶J;¯RÛ{m„ šä™ù!Á(Ëôfœý¿šÐO·(å.f¢‹­ *Uö»4F$‰¸¡Ý(:Xp'¢ÿˆíúÍ<ØyDÍR&&jp†(¿ L„¢”Òk`ÚâÑ3ÿµ¡ÚõŠ<0“ £`)L˜¦KÁ:5 X`Œ¸LçU-ªZ8nÔ! c5T$ÕLÝ«‡v~°/7Þõ»¼ÙúZäóøH ‹ë7ñÚ£š‡Lé²°¸É¥(žKŽ(–S/Š!eÁO åòN#! ÿ4§ŒJ÷¬8ã÷«µ ¸ x0¶ðÏb&ÆïÐQ 8¿@|à¦ÓçÀašDŒH™w8Nûý&Ùa·d[¯ :õº Öë0Þyç~ûb¿;’avHð2$ MRÛÁ¶ÓwÇŽ(ïüJ‹pÓPÀ‚Qá‚U}yÛCQU´WjmËŽ¿k­ˆ`黈˜\ÚnÐ4EB°i»!_·4|1ïÁ‹!°ýFFèI¼ ý†®º‹ª,*õ”êÖÌ®Yû ÕwZ¥&@±ÃYÌòÝ4ù˜PÉËVM°"cEšqQeÞ™“Ã/æžÜL`Ì$MÕ/´yÌ«RZÊ:GY˜ï+@{†–‡À]‘x¿Ï+÷îµ´4êú´q`~„sÀ”A®¯”¡Ù-Àç¦o~ô²¶Ø4lÖ£ê`ŽoaöóÉ G/ÜP[£qcy½+·°íìÖ$ÅE AHáùæ'íK²yû ‡BíÃZòÄ7 @²÷8Y¿ÜÏc«žŽÇÈS[gæÚS‡RÙ±âÙvîÔ˜Æ ÔöéƒÆhtzãzú‚Û9jßÏFISuãb=¾@ríÔî¸ï‰¬§ûã›B?¨rëñ²PÍürïl€§gÚ'ŸÄ%ŸÂÈçí¢Z÷æÊëÔcÆ6uå.GOäü…o7Ý—0Íô#N1_ÖåOúÀ«†ô”Èë%]ÛV‡{¦`¯D0A‚d×üãÿ·$èCÉÇ…&Í“.6ß©J5yçïý÷„‡U›wÆû[îL@Ü¥ÅT¸‘ä‹{’ù ¤CPúXqÝ…žzñÿödÎäËN‡W¬ª@|‚þ6©žH endstream endobj 1932 0 obj << /Length 1953 /Filter /FlateDecode >> stream xÚíZ[oÛ6~÷¯ðÓ 3Ëû%lÙZt膭u÷ÒöAW¨-¹’Ü,ûõ;)Y²;¶’¢†!ERçÂsûD#*Æ‹1¶Í³¶]hžž<åb¬‘‘’g×cÂRR¥H2žÍÇo"Ê&Sªtt¹ŒËÒuɯ6«$«â*Í3ëHÒÉ»Ùo£_g£O# ð˜td°_­FoÞáñ&q˜Ñã›zéjÌ8,%öÅåøÕè¯îÉìd•!Y…B”‰FVdÿˆžL Æ8šç›÷-’‚ —o1¦Uyqq™/7«ìâ¢¼Š›É·XàÉÔj{Ä]åYYYµž<bl€9•5s­‰ak¶oÒl™fÉ»zší}ò”âŽ¼Óæ ŒaîÍER¹-½ºüéEæúŸ'TDñr“Xz@kJ’Ô«Ø.„5©µåѦLæn¤ÊÝ>¡ØQJŠÉ”ã¨r+b×Ìã*vK㢘 ã G·n²HÖER‚Yåžá<-?º‘´-,ûpmiäöAD«¸òôK7 [Ïrð˜lZ½À+„×ëu™\o–n¶t”µÁj_ùm*«ÜI»HÜ@~íÚyºH«ôß }ç~TDÎ$=_Úq$ì-Âû.d¼ UÉj½Œ«Äy8èÖ ¤AZŠÆ ~p+z´Rœ4 ªÛu’Å++8Ñ«AxÏ/ÿ1@–òv,“Zm¹Œ.'$Úsï›"­7ïÜ›âº,«ùÅÅçäÊîê¾8D‚}ˆ>¤`O J ,ï­ÒwnbÝÀ¡#.tß]ÒÌš÷ûA ›¾ Íež-D!¢„äÍ"»m…u²z™Ûö&@ò ¥fû 䈃áN4¢¤ï[7àÒ@ÝÙ<4îÄ»3BϧÛ<àÓ.ÄZÞ{Ñf¯¸ kò&Jbómnè&­>¸^­lOÑV‡ƒq2ÅÈ›¾œ:…þœÔ œº‚@HTöéí¶Á:Ô´ÁÊ!`9Èq°rH$‰l+Ç#1––ˆzˆ,w.êhÔEK¨®ÛIŽc@ R‡2]WOC‘‚*|&ãž;#‡ˆì1ž}H¶™Òõ{ïgZ­’ í‹È!4‰gˆ0ÐÀ† ´ôP"ÖÒÜ@Ëô0K ¹“-È4Mí„^Ðâg ´xO€Öâ^÷PxyŽzÀÝpºÄû¶³43Ãà "÷EšÊ!•¬(~T˜€ï‚ ‚éÃEU 8€[@ ; {`]ÄV›"¶½Û \°E•† ¹ÂpáZÐFA iʾe´ÀŽ£…Ú=Øþmàö¥pƒô'5–L±Õ„i X=n`ö²A“ÇpÙŒƒU¤ÇøápÃé"Œ4Õ-=”HmiEQìApS; 6œÉ?lðÿGC § °œ‚yÅšÿt"÷E ŒÄé£ò˜¨±»P'âHqe"€¡† ‰tÊ=&¤ü=€c¬9„§"}o$!¡…¹¸ôOw#ÒŸˆ¹§vÃ' báãäå³ÑøãéàBW?s<ô’ÅN>“8B_;œ Šƒ×©aYf0[d¨G”s A¥DŒßóâLÆÁêÒcüppâtFB<†L¤¶´ÀˆãÇðͪ ’Fìdö>uØÖ]Þ­­û™©ÉWÕ¾+²Ûy`ãtv<¢L¤v¦âA°&|ù#ÉÉi`óLÂ.ÒàÑÐæélÇ”çÇÑg¹/Ú¤P¡}´Iÿÿ)ë«ü)K~™Ã)€dAÜkÁˆØU¸ Û!;p}´ÓVÂÌfêÍrù·ÅtÍØ»l%"‚Üÿ`LaàpàdŒQ[ê¦û;š}¶U¥÷çaŒ |ÁÃr÷àßmŽÄl¿9«Çû¨Ö9Tk{û@ö{˜`Äþ€¾Œ¯Ú7’eb¯K”¡ß½“O›xÙOkÛmT~wд-“QúÓç³W!ŒÞPÞ½gâ£Ðeƒç×þòƒêgÃ÷M®º&ï¾€Éö\Ø^ZKFY^¹¶›F©+þŒ’ë¬×E¾öfö)+¬®}!¤nÍ¢U×>mÕ­oÒfâ½)7ïË*­6õµK·½‡`gãfyÏšðÍ[Û²gÓ<´mw‹¶w6 bžÐ6‹4ÞajïØQb%ø~Œö8C kr’Áo©"ëÿ°Éí¥ £;×>¬dP \ÏENé‡?$…_ÕLëTm|Ù6u‘LKüŸ´ôߎ0:›ºý%j˜Ü9Ïÿãõ‹úŒÐÑG{Ï%±ÿno,—¼˜»‰:š '6L3ËS¨#¡#îÑ ±:à¿ø£Ü*|“–žS|„OZ•¿E^„˜¹í¸JÖÍ+íîúXµ>x(”õ?šƒŸ­$ˆ9åÞUs+L"ª ¬t°…6`o€gI–qÕ\µÉý³‰Mòùê÷æ'B\K1~D]`qaïØ¸ë>t{ݧ9iò¯6lsë¬Þ•Û……3Q’íªÿ{2óØ endstream endobj 1951 0 obj << /Length 2134 /Filter /FlateDecode >> stream xÚíZÝoã¸Ï_á§BÎ<ñ[ Š>t›]ìá.¸Þº}ÙŠ­M„:RN’7MÿúΔ-)´cYIQ ‹‘DQ3CÎo>éxv;‹g.þ¼¼øþ½³„¥ølùeF9'Z%3e$Q†Î–ëÙçˆñù‚é$z·IëÚÝþ¥\mï³¢I›¼,`Hª8‰ŸÿºüáâjyñûñŒvRbb9[Ý_|þ5ž­á峘p“ÌíÔû0•⇛٧‹¿^Ä])Y’Rj¸tR¾Ÿó8*«ù‚sý#Žy ·øœDe^4îÕªÜlï‹zNeôŒH5w™ÜI\ÝzÑùp1ûl¿~ÿqùÉÏp"ÙqsGÛÍÆÎkÇ ÉÙWWWîî:½nå’ñuÙ,ÒÅõöþ&«à™º¯¾Î™ŒÒÍ6CÁÈ|!‹>eV0`¹ °}Ò¯Ô2@-¬`™¬©óÒ=º§ßa€FÞd¿ÁZ÷2â”/ÛbåUOëqB»‹øp_VžÓ:kÒ|S;Ùº;&ñ/Mª£§ELŒQ³„2á„ÿyÎD”Vé}Öd՜ҨîÓ^{ô‡oÃP£’$‰:5EU;¨½ƒDb ÆÙ1"0ÝiÖѰX—º‹u%€Zšpš¸MÌ‹uÚ¤k3Œh0Û3÷Ì("˜ê3^¶Ð³üí]ãÑwãßìà×dy.¢HbBy†ˆ% {3MÓS‰ ¦%¸7®“iš–Š*€–€1oëhÓUÝüR¢é=Öø™5Þ`§q/‰{¨¼×± ‡!p–atEøy.!$@ü½ÄPß‚+‡p`»ìã.†à¤Ç»|uçÆ³ß·¹Ÿ A2Ü ~€½Ü@L–®T;-ÛdÄjÇä1ÇX‡œo¼8U¶°QtAMB§ý`ú°IWÙÚ7÷A°éb~Ó¢:oî¯Ó‡‡ª|ðhO›#YÎe8ÞЃ<à°ùŒÕvøJ‘DO4žÑ4úÝ¥ *ÜI.€ŽhSP‚˜‰Ò8Ž£&»Źÿþ= ÕÀ÷\ø^’ì1ôG7£ÇA-h;¡yzÈ ÈF`÷E} ’vþŸ£ÙÁñ+&8e¾vß½sYÙåå;›w^^>V™áKj³AÀhB!)-¬k…/êf}yùµŸnÒªJñî) HE-´'Whi¡—¦Û p4ïfx,<‰ñ¾M9Ãý.@ÁÞ';–›òóçD).L´“lÜÁMØGAØ¥qŒ¡r¸^ÑÅ1"éæî°'l'áÞýª½û²U„Jº§ }×ʾkN.fà…ƒ¼Êã{Ÿ³ÖT¦u”#E¿úä&”_Üuç.j÷¸é²G¢^á÷nÈ•>î¾npvÒI8Õ{8x9È:î7¼ààKÑ_º/`tçzU xûtÓOž³€g}j…ÓDµUÈÇ/ðØ4â¹æuWó=]rCèÞmýGyT”»‰±¾d̄ʞ9NøA°ðDûž:á]Ä»?Rooê&o¶ :¤»‹Ðø6m§÷´¹·ºìé´ m»ø?´5|´=:ŒEÇsK[ÖR<7Õg°÷„ŽR˜"|O• þžq€Â`šs›ùŒ î®m¸á»¬òã÷–©uÝÆ'ÀpMÝå2 ‰ÿ+¯½•Áè²ÍF(D45ðœ×ûñGÛOI¢Îþ{zD.eµv/¬5I¬ÉÑL ä)õ ¦#˜Žì™Ž˜Ž5z•¸àǼöœÒøäM}UU°¡fn;VÙCÛ7J¬ÙØeÝù¢¢ =w¢¾µw¾µw:'7`7ÅOJ['Áš'X8êWiïð®8tJ{çLÆÁR¯ÇøõÚ;ãE ( h™ã‚4=•ˆÕ´Jl–ûí®t\wçLþa…wø¿Ysg¼ÀÍ Lئ©*«~!ˆ¤â5š;\Aö߯´ÍóD +·æÎÿbsg´¶ÀœÊ‰Ö3žÈ©ízJ¸é·wÄ[¶w8?ÔÞû®Á.—ö¡öÔx¾Ãï}‡Gé`;‚Æ€ÙD¿ÜЪo6Z+†Ò—[+j¿ØÂž:ØM2ñ½KÀ?ñ¤ov#[6⥖9¡e#G·lØé-Èp•n[6<вѮèÃCrÿ4hÙXÔÆR?Õ·fŽú«g±…™Æ³\euíJKxÞmM¸ø›³S{IbÁÿ[©=fOLø&ÁˆÏ¸$4毒Ú3VnNËìÏäŒó]¾¯—Ø—0 "4ûxbf7™ˆÕ3X´f¢ž!’ ¥ ¤TÏzDÕ籫ºË{§ë:ÿ7 áŸlǸ›àì¡pVç¥ýã×Ð+Ðó–©4,4(~¡^¥æch&l\Ñw¦a€tx³ªo¼ÄÕa;ÙL<•œL€E,&þzÇ—},¦P†šÑeß™2„1Е¡W÷u5¾sº/X>åÅö9ÙÔYÓq,W9°ñÛñ€ ’ˆ‰?:ƒÈ©…U `Ý/Œä·sïÿ·sï—Š3:õ=@ÆÌée 5ÑâÈIö¾Ö9p’ÝÉKz'Ù¡rÉ}YÜò™ªÍ´z£]¶Ùªi<ÜéP¿ –"œ¥¤fÌï•Û_S+Â4l|Ǥí1ò!+²*mZ¯×Ì,çb‚_ÚO©—Rwe1z;¢/cyIM{œÃöÇ9­ÉyÇkOÛ_kÛc·§[ô"QV —ÿ,g—‰ endstream endobj 1961 0 obj << /Length 1826 /Filter /FlateDecode >> stream xÚíZKÛ6¾ûWèÔJ@Ìð-Ò)zè&  @Û,zIrЮé]¶ìÚÚl¶¿¾Ã‡lÉK?åm‚@5úf83Îg.Nnœ¼îýrÙ{þ+‰BZJ–\ŽÂÊ¥J¤Hj’\“w)eYŸæ*½˜Ë¥¿}9»¾›š²*ªñ¬„!!±J%Ï>\¾é½ºìýÓ# '¤HÆ"¹žöÞ}ÀÉ^¾I0bZ%÷Ntš0¢Ä~8IÞöþìᦕǬ9¢Lx+/oMÖgB§óEÖ'"O ¸a8}ðÃwËð~6ò×êv¼ôwõu”øláÞcL?Ù3ô÷ãauëo¯g“»i¹Ì@Í3É¢ B·ãëZ¨¨5^8ñ3Ó ia榨ü}Qõ­ß`®}Na>U˜ÆUFqzWëxáL¥9·³ú‘jæ¯CS™… E:—ÆKÝά‰÷^`Z”öéÁ?™‰±\ú§b¾¸Z«Ê”m|S؉Y™…G}aŸd:ËÊaQh9þ×¾5ï±ÀðŸÄ¦æ&!@ÏüÍrZL&ö–¦E里uý§k3¯3ŒA¼K¯Œ®nƒ-%_2™þ6 È·AÂGÊÖj?fÔÎØO´pþ˜ZÄø™½Ïk ¬õ®-XùÉD'÷Åóò/onXEͨàhµr´ªIœ"·´ê%öÖ^^Û5,«£‘Ö2éSŽt½8þÈ(‡)S—$„@¶ð6¯-üÍ·Ñ.`Éw/p‰$‘«þ Ú‚äa² ¤}°<„+0"oÉQÎX"EBçÍ FJœ¦(‡ZyšÞvaÓq*Ûz]a³éàÔ·Rå*¼i®ZôØB®0"Joa$B¹BŠŽaî âÂ,ABÈŽq&Hi°23ïîõÝéÓTÇCÝÔ]Õ¡†J Ezå*:<ÏF­Š°Q1¦ÓZ×'?ÞL¢])rôÔ"á ~î–#]A\ŽŽfÝrDH¤ ¬)H(Û,–UH•™ršñLi°* Á’ö†±·HìH€£-ŽÄ0ÈnŒàxö¶å»[é%HRUw·Èþ£¼ƒ1N+3O ¿¯?ÿª”†ïÁýð½ÔHIê܇?y‰–†åœÔÕÃÜ”°å‚û¹HßF¡ã…ï‚øÏ<å+vŸmßÇez‘‘ôÂF¿Z¾Ã î~ÅÃ{Ûtd}® ô@¥K\VÃÁࣹ® Ë}lŽ-‡š¨]l›RA“Oé/³fÿB!¹P±–êY‚ÓÕJådVÞD@IŽ4x£ÆÇð,„£ÐÜ´x­‚°‰ )Fõú߯zª5ß'R •spE ªûj³¨‡nÀõ³>¦­ÍÂ÷¹“;¶‹qY—„ðáÂî2Eycvm2õèe¡Á®›àÿÆ™üNȾ²¯Žq ›KWBÖÄva XÀú,ŒŒi°–‡1²G»¯–âóQ²ãM|$‹Á:R²®.Î@/Éyœsz0#;Qu<ÒMÝŸŸ‘?µHtpëݤHW—#@ë¦gad ¨3Sê8Fv¢ñLiðdŒìx‹#±³´¾+#;äPFÆ=š·Yþ”ŒŒémŒL=üE­ÙFƒ’àÅV>ÆtÍÇòµ^Þ¤^44‹ÐàVt¥z!R3µŸÂȵçÊW¡ó‰áÙþ jµTß Ñbà-XÇ­‹ð´ðÄ)ó\æ ¢\/MUŒ'€Â]wiì ØVlÊ6AíËq9¿«^Ø @9yð£ÃñÈ}e¦¼6AréÜfJc©šù‘åÝ|î!¬XFÒ`IÝ{);Í(Ò³_ôÛŽ†Zpr×-ÿ¯®›rŒpÞ±Ðv±;-¥9ì’çéº)³]ª8¬ë>Qqt‡m)>_×}¼‰‘ Ùßvcé® .ÒD@•Ý" Z,’í5éÆž°#Ô§iއº©{êuÅhÆm)¸ŠïÑvEBÐñtŒoW_ á”sð*Š%NÌ«NTpS÷ççUÇO-^ÀÀ„vÌ‘® 6GˆÆH u^E4GœóãxÕ‰D3¥eÀ“ñªã-~;‹!wcìO€@åUD(˜+kó*õ¤']x+¯Zs’-¼JÇxnçUœÔ¼J5ιp8ç²)RL ‹,üïì±/K0È]ñ¯}^Jç{¼R”}Í^àó(4weÃ{Mâ %‡ë½¼¯y¯ß0&“¿í¯ð–jÅÔJh%ÈÁZáàÃ6—T_lÓ¡(!!:è}fû/ë? •ˆæôF9Qº™Ÿ¯MiP=†ÁÞÒ_/3 á Sû½æâ¯SFò¢ýÓÈžùÔs«—{(êöÕCýg§îêáÆV°4÷Æôÿ@ÔA endstream endobj 1882 0 obj << /Type /ObjStm /N 100 /First 977 /Length 1768 /Filter /FlateDecode >> stream xÚÍYMoœ·¾ï¯à±¹p93œ0$JÔh ö¡­`®³ Œ8ÚB’ôß÷î¾®ÖZA”"xs‘†Ü‡Ãá|“/y•T5ï©Z"¯5uƸaR<&#‰JÌ= œØc¶ÕTy€-)—æIMWXeɈb¦%S¢'/ =y >½$ïÁ§Sj•â§–‚f8u‰M»¤ÑÈCžÂ`Ýzåc7 ˆjÀ :c5(ü‘8IëX&=Ø6ÈXã0½`Ye½àåÁCõ1œQ_ÂÐLãW°÷8I/AÅQ¼…Ðe¬jw˜q@:IâÂ-~õÄ´Û­%)AõÄÕ{PIlß^Þ¤/Òú&u¸ÝXvŽH ÇÞ  [‡Ëí°EÄÂnÏkÖ÷ƒpRå…ÄŠØÚã<á1À¾ëﯶo_nnÒEZÿÍyZ¿Úüv“>Šôê¿ÿÙà‡7?oVë3ˆ·¹¼¹Ž¤68¯Ö?l®·®Þn®w‰nÌýmóÓ»7_oKgõί±Ñ›+¬†ž|y "Dÿ-ñP‘¨è˜aÁ;}) \'ÑÚ(“M£ÝruDÃÓsØn-”*šDÃ# Ï¢Eý®Ý¦’‹Îʰ›E³M2‰Ælæ> –l£[AðIؽ1õäÈé~7rºÎEN߉ “nˆœCð>r̳Ï¢¹d“>‹FTFI˜C×^³Ìb¥æÎ<.¹-8£J›D³E.¡Y´F.yHîª5›GÇa9 óo´{™}*î¯"‡QrIy†*Ò©Þ‰…èm ë¯./·àv±keCžÑÉ'¨,Ä® ~"Ú`²Z¿üð¯›1þë»Ë_V믷W?m®†åõú/ëïÖg4!ó[œVŠgðÜ%fJ*’(Ì‹F>£qî«¡ý—iýçí«m‚ñþôöý›ëë³³¿»¹þ‘~¤³íû¿^~Z|‘È8f^a}¤f¨ }ͬt ‘jÕ¬Hr‹HQ"+šû?‚HõWþ/R(ÐSˆ„W–hÏkG±Dªˆpް֖K{¢/E²ˆËÞtøü@8޾¯FGßW#Ž¢v‹:‡ÆÅ a8 &´4‰–ƈüY±£¹j6+¶Ü€Ž5nhñ:Ç‹ê$këb¡ªpôǤ%×Þ&ylc¬Ÿ¿\pž\„ïV#)O¯F\÷%g/òx„ØK¡âö¼Õ>¯)øÏh`Dâ’ çÃå—O’fYzŽ·ÜDâiŠ-2C<`µ,Þf$:ÿîÕËg”ižã™ ušãñ C~îZO r½†BÈpB,{ÉñþBl¹Õ$èf÷èE éÈüñbøðÿÛ««íÕ:$ôˆ:t,D0ŃW–Ê ?ÖŠÞ²i›EãŽ`…&Ñ×NuŸEÃíâ‘y]€›D‡ÅÍê$ÞèØ›ÖQ4·xA˜Õ 3Öi4î8bO¨·³f«ÅáKÙ3Ü]”îV‹ÚGµXn*•‚Bb©(u©(u©(u©(õY+ Ã]\ãë:ulÏÞQaâAÅNžpc(Þ“ÚXX m|‰×qäõê'Hà»W›"AùÇWãÒetºW÷ûRá"‘øé*\­{å.ž8˜ýtnh©pèX…{ž@‹÷`k} ´ZÑÉ9.ÐZÒø·4Qôø#™}v?ªã«ãÖ£ÿQšxdü;.ÇZÑ”‚—ë.îç•&Ѫ–½´i4çB}]!6®¼“h4*³h÷zì“ÉQ4+ÐG›’chB›ŸZgÑœ{çÏôéì9z;Ò+hò›|ZwY;æ²E²Üv«ÿ²Ç endstream endobj 1972 0 obj << /Length 2101 /Filter /FlateDecode >> stream xÚíZÝã¶ß¿BO©ŒÆ I‰”¸(´›ä ÚÞ¢}¸ÜƒÎæ®È’kÉq¶}gHJ"}´½{‹®Àa?‡3äð74Mš¼¹ùËýÍw?å")‰’2Kî–e¤e"• R±ä~¼Ky¶Xò¢Lïmñ‡nuØêv¨†ºk¡IHZ¦R,ÞßÿróãýÍn,@ædDQ‘¬¶7ïÞÓd ¿$”dªLŽfè6ÉrÊpb“¼½ùÇ õ¹ä4Æ¥(Ï„å²×ÚòöÛ‚‹Tï{Ë4ëaÓ[9´ký+¥¼ÕkÛ°Ûw+Ý÷uûh닌¦ÝÞVÖz¨ê¦_0‘#%\ _øyƒ»'=¾h²äœd,÷àW‹%£”¦ƒÞîšjÐH軟@R3¹Ä™R‘R `&þÉŽh¤ÈÙ8`xÚé¶Ú¢À¹HßFÂ^Â<7üû=šO`Ëò´«qGr™Þ-Xz‡{4ô··w]sض··Ç}=hÛÿ+t±ÌKW]Û¶±Ö··¿éÕ[÷1;LÂñ³ò’€C1‘ ¨|¶HߨEæ Xò’’\”É’;BÚ‘u»®†êÛA›^NK6¨ÈÇDYA„ÌÇAí?;T–c£—QÂ^D aôúÁÑ]ä4’ÎaóÓíË}ƒÝQá,²zA(ŸämŒ¦‡¦ù×BÒ´j:¶¬$L°™ª`ö–¸«{ro—Ä“¥¯ÉîˆfÔ+c*­ìÇ^c£O¦Þ=xíÈNoëu;tX*lj{ä»ju8oï&l=³ØÊhý·Pá*@ìô!¤ÅkoôIL—idpì©ù—SySýœ0•©s0%XqùR—¥ˆà¼; RÐé@ªPÑËÀ(¬_½ l¾ P¢$4+¯ßk9ï\ûc£Ñ|FQ¬iF4Zõ}^>¬eRê<úð2C@ÀÏ~r¨±toïÛ“mEðÀA>aÝB‘GŃ"¬Úy¹Esë4LJ"¬OPÄK¢tžƒ"ùÐ0áQþ¥ãû¬n=‹Gó]>ƒGJÆü&zr6âQé9MÔ9M¸MUSí÷–ž¢î^LvÙ}òøŠ»O×¼§RW¼'AJž…¸ô\ïi”š—W\E¡ˆœÝ¸¸¨Ålf$ w,@²ï¯Qù& G™˜=dÃî_uû8l¢è*$)Ô³ðU\ÀׯAÁËç{X…",cá 0áÔ~:T'=’Dèka»¸™„'[F¼°¥~§W5JgÀ,˜o?è½¥kèC;˜@ÇÚ¸ÂÄê Ù™‡šh¢Höè!8h¢H«=ú~¢´Ôò‘¶8oÍ8ëNÕ U_ÿ¿¯«Ùl3vløNaQ8ic„ÞµïíZÚy;,,â6šrÓTÚ?%™Ä´.šY‘þ¹Aˆ~ÜØæ[a[¹Bód;@h ø½¶µ©¡r´g¿ÛY ‡–UÕ4xÀòÈÒÖÚâ¡Þ5Ú¶XÅpËTœ¦^ÆÄ:Ök£"t²åêt‡¹ÄS³]ÛI3¡R5½ÓÀÚ¶úQË,»*ªî“2Ÿðl»ýôô>AG?bcñ€~Gõz9 &pʾpQÕý÷Æh»òôßž‡rR•*ºŽò6QÑ6QKò`gmÇ¢*'*|=QaxEoye7>;Ü@°\C½:rÄNÜS`a¯â¤u7ýˆX$ÀWÕŽ%7ÒJô‡… ±]{½ÓÕ`Ë$MšBç©{½­êÖ©²ðe‚ZmUãh2z¬›ÆÝ¹nˆ‰õÁùIÛní°Äâ»·u»2&<7ëÔ¸ƒ9O×9èÀLSØí:·¡®Ë¹½¶6 k†>tÏ7:Ï©7ŒÕ%½ÉÞN6µãèáЮ¢×w˜ÜÁªuž_=ôžÇ8­ØŽÍëÎ~­”PØTÈŒ½ýç|ÍM½ÚŽå·3 ®'3xÑ¿\R¢À7A‰³…GÏ­Úƒ38€*2–žÐ;ýôO{£O^`l«.g<%‘LNÏÏ@D!ÉHÎÐ"0ܺ¥aR®¢ð=™“"Ë€l¢`¾ïIú*nœ¡O\8Ìõ*Irðé‚…ï7N‘Ìú¦48­¯é©¹ 9ÌK†Áý{9‡‘3LŠWôk‰˜ƒÎÀÉ»tQ¯àhΟ3 ”'Â9Š4vÛBÄTîA€£u^>‰·¸*øÌ £*† êÆ°¾æ«Ià#xíºq¨?¬ Øú¸uꂞQª—ŠQ‡L’ò2‰gèÔk‰Ô,(x@p„ù!dx^ôD>gçÓˆkŽÏÀ¤9Ž“ðˆ¯‚Ê%x1ˑÂf¯Ô€— -}!”‘·7¦„Qò eÿ¾t}‘/]_s5ÿŸ¹šÂ> stream xÚíÛnÛ6ô=_¡§Mf–”DJ4¶[Ö6lk XÛŦ ²äIòœìëw/º…q“}Š‘Hžû•¦Áu@ƒï/¾]_<{‘ð #Rˆ8XïÇ$Y $'B²`½ ^‡Q¼XFi^–yÛš×ïêÍq¯ª.‚-.h ±x»þñâùúâï hÀF‘”›ýÅë·4ØÂÇJb™' ºâ@,ƒW¿]PË%%ÇW|8ž…gž’(æŽg¢ÿ€uF) ;µ?”y§Ãg/€Š„ó‘ÀóB’Lp ¥~i &R’&ÌtwUå{RÇ2|åArp&üׄ@1ëþYDIX[ƒðòò ¥Q×®V—uyÜW«Õ©):Kí åt±LÒn2¢Ë(PHZ@ 4žÈ¢žtQmó.ÿÂÃa”g®¬«k.–1h®z^*ô‰Ö‡\$& ¶– [+mêªí@´( Ûn»Zý£6]ÝxTÊ%I|ÎF’¤¿Ïï ðËErÞ0#,ŸyÕóžÃîOªºîn¼RsARÉÞ­E>h­ß,…¼¬ñyòà G8Ó‘ç"æÙ‹ˆNuÏH qŠ&1¸Œ>uj 4xh|KŠ07ËeÞ} 똆wf³Þá3EWåa^U;Þa[ü‹¬ZL½#˜eQuõ„„Æb,­×íè†Â©èn,΃Ú¨ µµh‘«ãþJiA'®¤YÌt­`Êæª^ÐNUfç óÒX ’)8uduôCg¶È@̲p‡A¦c–X 0ªþœ›‡ÑBúìÇt̼†Bvñ©zUá …Ð{ ]vÅ¡Tæ‹åÔ•“´ ŵQè>5u7àH( ÷ÎÀ¸¸Røš- ‹;½°¸P`eß{ùPúüjѰTæðZ(4Ü-¢PÛ婨¢QqÛpÖ¢,d±LY¾Rö0P0/&)‰•S—ôˆe4д¦¥YïF^|Û«M×ïÅÃEn›j„Òñ«­j7VÊž#&Ä&Åh–ta®%³%éC5H ‰ÊŸê$O<5>Pƒ¾iš-w‡M„«F2éó8œ=ŸÇYÆ ‹“s‚‚ò!k²Y¥0h‘ºöÇ_îL<¾PøT' ˆfƒæ–M¼ d’𔽫XD¨µ`Û¡8W%’§W ùø*A9Iþá*1„Ê$…Âͯâê/€·±¨ ‚ŽNåBÏd,½h»\g‘ÐäVM¶›&l½ÐJ˜)`bÉ(‹À–óNl"õ$¬¾2xµš@ ’‘¥ÿÛŠ Æ!ÊÄP¢,Õ7MEÀ!e¶«øáŠ€`µñ”ü<-±á7ºHgsu"´ö/2OEpME‰­WüK™ùdª¼ŒÍëÚ æÀU ¯ö`mž¹yz—Ý˼™Ðµ€¥¤õ¨PK'¤év7y5ðô DŸ/8 m5ê \dô­™r^ÚçEÕGÓ ®Šj=²SQ–æ­ª-©+ ·¯·¶A#“Är¶F.)‘R`OJ(tôZ²_Z?PÐ:Ðc ßßü9Á?ÿê?“H øÙñS¡Ç63~~$‘0¨/qz €³zâå鸈„¤q Q£x\_<¸Œôòž„'Ù’IAÈ­Âkç7¦mçwç)“ü‡IF 4ïÁ¡ÇF€#=ã†þP$ÚÐ4!<‹?ÌÐ0@J(Å Lö,•þIÕ{ÀÞïGßoïý>MXF<9ãœùÉû?™céGœ%hÿ§#yì%Uœ‚u²é|À?ÍŸæƒ>@sâC':ÃÌäMfòÊwÞ*ÒáVÑ´Reù;Þ«è–ÄCVÆÙn°@¼äÌhbZ߈Ín—`[&,}h4Ãh`:wáS§9&F£I$ï&H¶3Ï!2ñˆÑ$åDRù¤Ñˆ0ËÇ¡©7ªm ã  — ãyG˜SJ7ðã±õÝuµJg»Ñ] ÞÉÕG›èïa±rÿfe«º¼(mƒÿ¾÷'ÂæÇm}¼Z¤f¶ˆ2Oúw±Ì°Ÿjµ1)H²È¸˜Þ3ÉHëT5Î= É¿.ª²¨ÔÛ³~éÎLø¾VVWë?Ÿ¿ü¥š÷çÝÝ}UîÖ0q^«~ÎÞµ»Ì||YãßgF#ú±j‹ëÞz®gì9âó¦nöKÏÜÂÃÛføy褱]\«J™˜ëÕ]Sïg,¤ei"¦÷&4q©ÚÕÄ ög8™G }éú¢(âS¨×KÎEhœƒÜL¿¡¸P‰ÓÇÞÜÞ~Àñõ‚Á°ç8¸Œ’”KaÊJiYȸw…xßç¨Úã77Xitó ?ØÁëKµƒÐQª6êœGS­TÁm‹òüv£ƒå»›åœoîfVF€öx8”EopÏuëüj©>87éé9×p7G7..¶ ®™ÏžÞéQF8“OùñÑý4*´ɸƒË$d$%ߣkníØ^/$@+ÖϹ›1óŒ(8‹ÙIW”¯˜t:Š9CÛF?ݹŸ^Q—·w×è¡§FâÿÀqGo endstream endobj 1994 0 obj << /Length 1498 /Filter /FlateDecode >> stream xÚµXÛŽÛ6}÷W)H@Íð"R¢Ñh÷†  mü–äA–¹¶Yrtéîöë;IY’µ‹ly±)r8Î {;{7‹?׋w×!÷b$…`ÞúÎ#Œ¡HÄž I¼õÖûìS,iûyRצyY¦íAMÒde]\àØQðuýaqµ^|[X{dà ‰¹—Ÿ¿bo ƒ<Œ˜Œ½ûÎôà±L‰ž˜{Ÿ/ð0JÎ= QR1Š’Gˆ2n¢ü%+Ò¼Ý*ûkðs²ç`.%8ë 3#ŠB7~Qæí¡@ûGa„bJœáïÆ‚âA—KÄüGHÐÐÞ{UKÂý¬IŠT™n³dìWú'9˜Î»€a¿¬lÂ/¾`L›zµ21­V·EÝÞéÎ4ƒì_åJ¡^uywùšþC=\5(†­p!Q]o Ä;ƒS«p³lÇ»Ûó.K¨Ì©6Q®›ú烈°të, °‰°qÊ m®þj7AäçYh/þGuØèÜéöu[¤oõìv'… Eq¤C¬ï/”òÉ\nµ³qÿs³ð>/9þ|žGsÁR×è æ8…˜]²ÈÿÔØB;S÷‡z÷«inÊ27­:ËÁß{kÛ*pBžØ`SXÈHo 6C%p…Hº„]=¤êhŽ! ©Ÿ6€Ž}X“ñØ?VJoãAÃJÕÆ¤Ù+Ó¨‡ÁêŽ7×YS_UUY­‚eQ¿(=B|U”íno¬”K‡qÒy¦¶æ©Ç¯~¸w ï%lN’\šÀË£2Ð×Á¯ôŒÐc3¥¬{Tºˆ»ÄUšuu1ÏU×ÉN° 2 r¸%“ÇðGQ,¸#7"qbŒýKÕ$Pš­ÁÛ¥ªÓ*3¹g‚4Ø ‘àñY=LèU©Ã»·ÏÙÝdKÛ¤IìæúLž1µ$´{¥Ðú· +ÇÕÍ>±c[•æI¥¶¨/Ç€¤Öûn*e°{í¨Š§ ·²FOøW:ÌÁ–¡«)ͬ$ Øÿ7 Ü/³­j cel”íÛ¨½±Ìʶ²3ïšîÐ3 Vݘ\)\Ì€iœ‰´<sÕèmw»ml¿KËF¹$âueØèÎGÓ®Týן쾂Yql­Ï¤2QèMÚIÉñX•G<ä/ ü=pÅ©á©Ô"õBSNÕv§½ëÛ³£îñE=¢˜ÑÒ=Šåp±þ`|÷MôD¿.!î¸xEÄ,cB'0¦I)Ôý­¹Q#6ÈÃ!ÂQévtÚYrE \^Φ#ÚsOKK3i‘c Àp±ÉÖûi@#Äã^<@rÕÜòpÍÆOEˆ!º»‰‘—xHã!‰ÎiL ÇrBã02¢q¸‚-ƒiOã`5 qxÐ8Øh†ž8yügÒø,H§t—‰‘ò‡Ìʇ€†p “ƒÒ Bˆ_?«Æþg”Ó¹’¥Ô Ȥg•¬@‚ˆ^Éþ'R; AÛ<+©ÁÚTʸ0J:ª¤‘àJ ÎDÄf„¼¤ ¢É.:–fR ×hÑ?æ‘¡ErQÖMvŽ«ªÚºMòüq‚°´£)Ó. ç cŒHÌ_¾¡™j‚‹ˆ¿¯ôÑ‚aÄáD¼ "†w*pª(f#Š|?¶î<(† ÷bÉ åAÝÝ•Z4cd¡´W~ç2gFäk£ëÛõ§Õª»ðUµ)kõ±4¯Sï”D­ìZN–¯¢gõâ´ÌÀ‚é Ñ+±õr'3rÎ0KâD£S±“SÛì{9vúŠp¯Ë™Ø‡¡Æt¸*“smœæ¹ÑÔ½ÓŒŠwü"|zäPþÄ; }ã¾õŸÆô]§é|×äôáaFÕ={›L~Áw÷ÕF imx*M¬?=Ø}ÞètžR銲àBom2?&¶:„˜¨-·=Ñ ó‘.ëôü«Ä¹>¾,;qÿ¸Óª´ÆL2 ÿ­·xW endstream endobj 1989 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Column_1_1InsufficientElements.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2000 0 R /BBox [0 0 500 182.65] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2001 0 R >>/Font << /R8 2002 0 R>> >> /Length 295 /Filter /FlateDecode >> stream xœ•MOÃ0 †ïþ>ç£I{dˆã ÿ j·¢¥cê&øù8ý«ØUŠíÔvž÷=¢"F•¾)Vß> stream xœUkPSg>‡„ó}۲؅FÍ€ [«nÕõÖ `ÝÅÐz«Èý& Š€äÂ-$!‰ ù’p'!Kx×jmë½ÝqkµNµVtfíÔv¶[»;óæóÇž°;³»³3ûcgÎs¾sæyŸó¼Ïû¼,#`X– J.VTü6Q­Ü¡ò?/æÃX><€Ÿ'"T9홎 äeA ‘ ñÁp¬߯À: ª^bÄ,¹)Íù›”Ä´×–,Y«.­)/.,ªŒXµbåù5ÿ|WPQ\¨ŠX(ÜT(Ô¥ÊUåûÅÊ|MEÄL݈ĂBbGù¿Ÿý íÿÃg&D¥Ž-_WQ©ÙP½³`w±B¹ša¶2 Ì«Ì6f!³ˆIfR˜Tf1“ÁÄ1ë˜õÌFf ó>Æ„ Ê0bFÃ|̾Ξx- M&*Ýc±KüSàÖÀ NÌÅp?¢Eàæ›H/ù„ýz â¦D=³¡ÈÍe8´.âÃp}p¦ß9AðùAÅ9-@–mfÖÁ.7Êl1:­ç1Ô §¹—ÞÙ®¨Ý´^vÕÛÓª‹i:i-jstغéÐeÊ© YŒuMX(háW°£O û‰|ž„ÎY¹„Êhøw‹ B~øÈaîò§ôeyZ2uu G¹œ÷ÖîÚ=x¼J®¾¨½E¾Àߟ½q[<½\šÿù8;X4Íði’}  ¬âÌUZÃ^²èº–ÌíÙ$šD)¶$Ço)XNh¦y ¥á9ûàš¬¦çݸ÷”QDº™$õåM&ŸW¸v:&ÙŸ‰ø§ð;‰šËúuN9oÅ¥Ü|‡ÕFŽa ° MY\W4]%gX­7DZ0]åœÍÛܼÑ·æZünJa^ ‘kØßÐd&fb²[*Û+[*^“˜›4¾óQ–üÊž#{T…4·D¾®hòY¥LKW¸¸¶Îf»“àÐô.â´ øÕ55ö…ÝûôÊ­ [}rÊ|¦> $ÃÒcÃg/{÷¬Øé"4ÎÞšA;Ÿ*Y˜ë´8dÛ"•ŪZc½ÙϤÉfqXðGôc.Ò›wõüäàÅ Y]—¦L»OC¤»ußÊáØOÈoù+|HûŬ›ä» ià2íõíÖs~ «jÑ&§‰d`j@DÝ ×K5 ƒ’à]%‡OÊá>]¨Gç,Ýz[¦-hÍéwŽó ËN ŒBÍ– }¾®»¥Áð˜ôMô±€žùçøB/m×w[¾Ä|²ßu9:p/½P5t™lký-¶ÆŒ‘3#)dÀënÆfÃv7§ {=ŠÓôeHŸû‚z‡GÝv©›®Ò!¯¥ÓLôÄ`Д+̆šº½ûsuû\–æê±z`f·«ÕkÃnºS×¼ÄS7–ý”¾:—r4Z™oªßÓ$ÕÁ7R[\m­®îƒòû0ë[Ñl¶7z)©©oÜcø$˜nó£ì¡¯Dü+°B’_X‘HðòÍ_úë'·ø\¦‚Ny«¦]ÕSÛO¤C{.ÅŸ‹ÌLß[˜/ÏÈU¯'oc*¹¿ DgŽ{Æ|²áÞïÕÜÏA5ÈÇòK!J’“§ÚDIÞ¨êrÍdý¸å†ëÜþ?˜FËÇ•¾íÓHÉ®)(ÎÎ/#јÊn¿ èû»W9)£÷`©¤ëÞá£×Éu2¨v½gÀ¿2;FØŸÛÜlCg ¾¹Úëìw™T=2O™Ót€àÁžž_îÐÖÍi¥9eò²œý…Ö·qtÉ7ô&gYk2ÆùÖåFÑc¹‹á&#Áø•g!÷ž½55'ôsÏl0¹¹ -õþÔè Ë“u¨Ýæ´;mD:ء͕S²¼³Ï´¾ ‡>ñô Iie¥ZÕ¯ñö÷ŽVö«ä3¸ìŸ§DgƒÑÍmv;­—0ÿ5ÚÓµ»qBLµ¢.›ÓÖNðx§^È©2dMÑë·4âàé^ÒÜ‹ìã)Øì¿D©r7—nÓvYc8‚ˆ½½³­íÐÀ©G>Ý_/§JdI4“üXéFIDﱉق¼§Æ{Î|¹§4JN ‘%Á\¿Í,|¤v£2{I‹ÑMŽI!Á »®ý~[zÙ¶YÍåâá’CJë¢6á»ÂâIOªñ8ÿ±x†:´YrÚŠ,Iuúd"´gÌ"°ˆ}"„ó¹eyy‰êPùèØÐ w¬lH)§Tü_gÁún>µrº¹É¾8é ºßôK†ù;ìÀç0 endstream endobj 2011 0 obj << /Length 1526 /Filter /FlateDecode >> stream xÚ½XQoÛ6~÷¯: €š!)’"uÀ–4E X[¿5}PdÆ`K®$/é¿ïQ$-ÉR²&ÁöX"ÇãÝwß…åÁ:Àæçý ›Gøýk9;»d©¸ÿ[å‡)ã6ð©à¡§-Ú²ŒÇpœ¶È%qÏ4!ˆ­»:Ø’„Y÷v¢²„%W=ÑëM¨n+¬—~cNòÄ9søV²%α6ØœCÔüæ-§ÚpL™JAZJ/ ÑÓûƒêz‰-Û %këOLâ1!3 „‘°ãd.ÇœÌ<[‚ø“afÀÉ,!N†Ž“ËÉFæ•pò`—1'÷ü=æäI0ŸÆXzXè›f¾ÎG8£Jwºf"PrmcðdGßkrÆ=8%´íÚíÁD{ðÿ@‰2J0FB$)qK›VGÛ,µ¾ƒ´BDqÐÅÀ¬ËÀñDQh{ÉswvQJ Y2ØõOGÌRŽ}mQÖMîÞ=VF2‰‘üNÄt0ø}Y_ªÄ™HÙfú‹‚,$\íÀë 6ஃüÌ]'ƒÜÛ6÷UØ÷¡&ã]³º÷4Ô ãܾÜmtc.=6—'ºk#tyµü²X¸N⦬õÇr5ÙVû6¡Ö¾M¨Ž}zXOwÊF!ìeÀz†’‰ðxeVRé»B›<ù4qÚñ4ïĬûžq×6îe­ mï¢Çþê¶*w'm˜UºÝÚ6óx±1ù¿ÕõðÚ]¾8âê¡Ë—»jõ¯ÝÝœ©;psãä—g÷÷ƒÙÉz@LAÔS¾Éø/FÑÄ\*º`HsÛw'{oØ9χaÁèàÜ÷1uñ ÄþR '²#ÉóQÞÏtü!ÀÝÍÔÿEª½ üX›þ0ÔÅéñzS‹ì endstream endobj 2006 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Column_1_1InvalidDataType.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2017 0 R /BBox [0 0 500 201.01] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2018 0 R >>/Font << /R8 2019 0 R>> >> /Length 293 /Filter /FlateDecode >> stream xœ•PËRÃ0 ¼ë+tƲåØÎ‘RŽ…ü@§ô&i›ixý=rš”fè…ÉLôðJÚݵ"Ôéë㢆Ûgëh\CÔ=b5ÞhYYŽ‹ IZd=­´õ„E W“ɪly>ÙUïõ6ÏŸ¶óª|½Ÿ·óâ{¿¼.Þ`ZÀ LP™aŸrövö”R¨Ái’ê˜8oÇLÊqžàà2YÈh•ÈÔð‚³ê‘QòHòäl6’ó ÿé×b¹oËÝö$âm"fã@~({ äÉ+íQ~‚mÀÆ”œ.Å£ÎkÃâן£Æ™Ó—ÁåÙÈÂÎ…‹#¦/9¤‘Q+!Ø$wI[-wdØy¥³óÎxËV7âÑ»bƒ© endstream endobj 2021 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2617 >> stream xœ–{TWÇg̽¶,uÁ(Y4ÃÖb»j}U‹X[m­õQDÞPA% ïW’$Ü$„ðHòŒòŠ øBKE­Ý¶¶ÕVkE÷ÔžÚv¶=çŽçúÇN´çìîÙsö=3ÌÜ;ç÷ûÝßw~Ÿß¦|}(š¦ýcsd™…/Ç(d;åÞ÷ù|ÍÏöá爑?j}´Æ—úSÈ_„ü};g?»%Ÿû=¶=‡K¦S¾4¾)ÁñR\LŸ,X¸N‘W^“•]ºlÉÒå¡å¡¿í„FfædÉCç %™¹ŠO=…#§Dm3q¶‹I²*hâÃàÌ©.Ç!ÇܹY’ Œïh”ɵP…w»@²Më0A\¤M¼ù^nŦ Ò[@gI(ËÑ&¨$Ànm47#ØÛ¨Jf‰˜¢µ•IµPpÈõòËzé¾û¸å¾[ùt1™µt‘’Ùß¿ˆqà¿b/~@f°• ñÔä2‡0;Þ^»{ûX «W^CŸÁF¯|. x´X=Âÿ|ŒîÅPôˆâÄU¸Ø¯„Ñ—(5¥¨ ©¬*[òþ¤†TVæn‰Ú’¹HÒ±„ÌÆ)Øï/IËÛÞŠ|[¶I6£íéñc¹÷ö…xã÷â° ã%»I=û\Šöw¼Ñ–q>àRà)\|oVÓFdblhcÖš5M¦«/Ae{»¹!øÙï°/ÃÓ£¾¿=­06ý è-q%Ù•±%h4×£&Û¹Töq6@ñZ.ZƒNáEü€¸bpôúØ2M”H|’×®Kì޼ ñw‡è_ò ¦E­3ñƒ!úõЕ‰&‡¾E?¡ûò›ÛÏoø”Ѓd‚¤»Œ¹¥k¨6¯…£é-f­âþªx ©áÄ_®*sÎHoÆ_…È3á«RåÛ4ËÜ¥iô°Ð3z¡ïÒniàÆy}mJ„øxñ< ™&£Õ Ý.Ë‘Whuzo$µf£Õ? ç˜ðþôɱa÷ø!iesq¾²ªIö¨z>dñÑo…]ä;èϦðú)!}gÅ&Ù¢k0†øG²¬\©up(  @ ƒZ­Í+ÎÕÈܽïð ß"óÔà´±EmNÄVŸIübèhkOôäI¿• Îx¶c°ùýI¾‡:ùtÐ<ôbãl;aQ·¯C>Xn8w¬°œ-w ÍÜo?ß6ü ÔüêšÏNJXã©uq¨ qF®†{‰8‚Ãp£¾¥¶5JP[³ýˆºH¢ íÜè ØŸ ¶è­:kµpé¬KMÑŠê‘ÝéÂ3ðõà¾OêíýVÁM4w!æ"윸ƒ_º-ˆËoý³¸B­1¨,ÒµŒ°8 qCŸÊ]<˜ÞàËo&o.j/u»;;ºêL6“56šöxºŽõÈã¤[yykyUzfq©:ítÞ<’vyäxçøei3ÞÖVz<ä0êt¶Èâ;b$3hK4ê¼ê³‡O²uÀ|idO;Ÿ²÷fâ÷\L.*mÍ!3pbðìßÞÓç:d‘¸È2è76é‘i4ʽ¦¼²´Ú¬ê®rëÊt­D\Îú~³§]ªFÐZ+R‚ C"dœno­D…Ã\@®µ9íõΖNö~î;Z§·N‚Êu5{Oà&Ÿâ/ Ê(¼Ê„Ê´V)kLúZ;Ÿô€ëõ-5-¨IÐÅe?iüe¨ÁÁšýÚ† ÌS°#Ïl²q½I­{ )‹¶Väª JÊÔ¯[%Q¹½¼N‰`aYYÁÞ‚“ŸŒžÇaçYv žæ&·Uâ•ìsÞ¯>ð•ˆ/§DeÆ ¸xó×ürþÚíA'—ÙÄÖ7ÈÛ*ºä`g{÷DÔéðäÄÒ¬ 6)M±½‰øÖ",:u¬u`PÚÓÝÞÛ?ù¤çŒóè¥{îáR¡"4Å•&=ª©jeù«À`IUæh7z¡Ü`¶¡F‡¹ –,™ž¼æ]FÁ"âGž'3®/Ç¢‰áŽÓ‡ÙM ®¿8îG\#NÃi+Jó99‚áq_ãéØwìú—çΤƳÞS}Šå i~!^)NY“.ß„bPzŸüBù°Îc¼ñe¦ú#®¯À#|¯3%¡Ôò̜Ԍ¼H‰ôóüpcS'¤ä&^(n¾yxè2ºŒÜ çrø¤ùç=xg/ý³€+^éžø1ÙÞ?ÜåäämÒÖ|·Aw[[÷`ÚÁw7'äíÈgówTg™^ƒû¾!3Ƶœ6ÒÛØ.aÕ6£Œ€&ÁøÅ‡7¾:5+èS¡Ýp.f£M×èE)5V²8ÖO%$Íaq˜›ÄݨLc‰ ߬â6Ô »Ø÷Ñq^Q‘BÞUÜÛßÕÕ×WÔ%ÚWøŸNÐØ.>±]QWé0 ìh8 wVtº=~ÃïñeFOÞðs3ݘîÜž{\˘VTqá^²Ÿz#ý×)QçL¬u1›­Ú&Óä€K¢r6Rµ4›æ=Mj¡ÕæSœZ½¥R¸@¾eŸMëBG%8àgv_zc[bþ¶8iù…œž8´åU®Üo³S¼0;Å{g'ÇÓÙé`£2…%õÀ¸½R‹©´X„ÍXD߯"žÍ§‰eûä úºûòÊXB|ÿk-@ÝÂÇ7á-Ìð3wž¶úûߪóÿEýÞ0U£ endstream endobj 2027 0 obj << /Length 1398 /Filter /FlateDecode >> stream xÚÝXYoã6~÷¯¶@!5Û¢ÑíCs,²@zdý–ìƒ#3Ž[ÊJò&ûï;À*˜Îc¿"«çÑ™‘õ¨ ê…$å^½Ÿò"[o—ƯËíW °ˆÖ°Á-üuD–BŠ·ß½YÐ݈ ®PJI»ð7¿¢‡9ØX#&ÃÕ‚õÏ‹;Óª³°Fs.óÅÊBRÙŸÅfºQW¡8vØ]ÅB8ë¹Ã°…Ph‚Cb)#A!²RmáÛ1†)s+:]÷©Ý&ŽÎ7":)!,ž Œvô=iÚ9ªšÃHç)E©¤¶¿¶7àçë<óna‚ï@ÿl[dÖ•ëQ…6!©TÙ« ­‚I®)ƒ½öºÕ*ÜûòÓ$ºš !ã¼'¶X»]có¢é»}B dã_üüMY®}¯Î×jï"[ÛÉz za©•Õ ô¡š«q¤9? rÉã¬)wgJßWÆzÔ£u2Sû%>>¡S‡ äÅÊO|8Ë›°è´ªÊj–LSý8†o.Ž¥èÆ±[ú¶Çn¼q»ëÆnÂlS@uÜi¡½Zf&ćpK}o²Üª–ùñÆÔõbµ§Žw¼oÊ4Â)4Öùøž± œ}bšiéïÄÔY•{”_@¿úB¿Ïcˆ|„‡h›ò P›jëœÑ!øóÈÞt?÷" wô0³ùÃvÖzu†}I æÒ…u2åšÅ6¸÷+Ö€*ð ¯:€KnC3 ˜JÛõŽ¥‚9âP™L -"àë9ÃÃöq$¡Q…DºKy€²9é}^< ajƒ¢‰0G£ŒÒ Ã=ºaÜnìç¶Ó£;èÆvwt£ûtc¿Y¿µíÞoØÒ·]º±ã=Ý0,ÝØÙQºé û~ºõÛ!íÁAÍõ*œ…œ—P/ªÅÆ@ð[竟Mé}ù# ÿ°ö¥œ"ŽÉóµ¯D’È]íûÑVƒ{"ÏåÞ,^†+\Üåv‘¢T@A2SÆ"ïð  )ƒä­‡÷ -‡xë>á:–7KtxSžbDRñ†›ŽØ d`®Þiô÷ qF‡Â8…ªå]F—)<­ þ!ˆ+Ý#ħíý¶sÇíÝ=¸MÜ»òÍZ7Ôx÷-Å5}žð)öÎ4wÁEG«O»èì|þe6óLUÝ”µ¹(—f¬æÌƒ?Õ&œÕEÙ<ç\¯†eÄ/ì[Gów:×ë…Œ(#)dB¬¹üMpX*µ fûÿ\M+Sÿ\k\1h%Tåf¼ÐõÚǹ/§Ý«Óµ¼Ñö„æO>/Font << /R8 2035 0 R>> >> /Length 279 /Filter /FlateDecode >> stream xœ•PMSƒ0½ï¯Ø£zX³ 䃣Lu¼èØòKÁ!`¥µþ|¡¶;™É¾ý~û¶(ˆQÄ7ÙÒÃíÒàfØÿ%q2¥Ç»"X”Ž„‹ ÆFF–$œvÈšœJ,<\åyÕì†,Ëûvï»,{ì¾_ÛæýiïßÖ_ÏÕ²? ×Å, x™;)ñV?@œé!"‚v‰UdÃäæ8ÔXã¬ÅõV—òW¤ 2+2bNÿ>ü‹Ÿrý¹kú@§ ikDîD—“”))žãSY ÊhèÆ­†ÄÈz’ƒ2=»Ú®‘)…¦Ð½š¦üiújˆy¥I:´FPTº šëp-ŸGæ3j¨n©¿ô§v„ endstream endobj 2037 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2980 >> stream xœVkTSgÖ>!pÞ×ÊG;Ð(ibk­Z¯mé´Õ/µ¢E@î¢(I¸…kBHÉ›„‚.ÊUŒˆJ¡:ŒõÞδµ­ÎÔ:R׌ڙéW:³Ö>¬×ùÖwBg­™Y³Öü˜uòã䜳ö~Þ½ŸgïGÀ1 4©P–W¶*A!Û'üŽ["ࢂ¸'„„Êæ:æ6†p’P†„ IhpwTè'áðþ õQ¨xŒ ¢w¤¸ŸÝ“ò“•+ŸUW—æ”/]¿vÝ‹Ks«—þýÍÒÍye…ùò¥Ïð7yEŠbYž¼|W¡,WY¶t>ïÒ„¼|eѾÒ~öhÿ]|†a–ȱÅ[J·–•+·WTî«ÊÝ`WÞÛ ‹d/3ÌÛL<ó4³›y†IdV0IÌ&™yŽIaR™7˜4&–ÙÌlaÖ0[™µÌ6ææ-f'³‹YÂDñEc‚%sAð‚àtÐO‚ƒ¾V ¯?|0øW!ûÙÖÅΡÝè#¼Û„.(\pÿ‘W©Z¸baØÂ¸&âãDï ¾˜Í3ÂÎEPàeÓlµâÇ0ŠÞ}§Ç}œàs}EÛ¥4™ÞÒÔ¦7að¢t»Öm>‡¡=ȾøúÞ¢šÛ$·‘ÞšRU¨MQ‰kÃæ´´<àT¥K©™ãµuiM˜O¨àÖïCû}!ظ]¼n%•Ш¯W@8„ÿñ¯ …È5èãÒ:…hæÊJúe³ÞÜtà`ßx…T1]{ƒ|‚¿™¼þ©$lnz‚û~\0X8Çp)¢zP†T°†ŠZM%©'*›Êž~$­5“Ä E;“¶ìÌ[Ch¦9 ¦Q!ÿ;y窤ºóÍoÊ6qIôåŒ%+ºO Ãö¯ÃòKÓÆ%#‡½Š®·è© dº.ìjø­PÞ[á±S™Œì&‹ÆeþÃ:QuÈß«;³~Á°Ûòûç³Ë’²¥¿A랊‚º¤q-rZZˆ‹àQ‡.Sú°‘d­.Þ€#ÞÕܰhè¢òæ¹t$"•¥oŠÍLðIÂ8 >¸zœc‚og…ÜxU¤`3žÌ*¥Ë̸˜]f3[È) V£“Gã‰Á½ *g5/«5Ñ&LWC)kjn –°€M>uÇz|”m‚e!ªØÏŒî:k,~L±uêØF\ÅDap'ÉŸà×3Bû"Ð{Ù7­µí¦+”häÌù§Q×&ñªÜFÁ}Þ#Ç+|…ûÊØ4éÑš¨ÌW'Vóçmçá&ø¨³6[JmÈ”b0Äiùšþâ_ŽTµ"2Ò¾R£Žá!/Ÿ‡l³ X0DýÈ[ù§:íF#®‚ã]h£MÝnþ ƒ–£ßš;Ôî—ùDb]ÆÇ½Ôþóësc1_éàCQ#<¢e Æ&1Uk/o-·—üJBJlâÈþ/3¤—¨PQõ‘~ñéáþÉKC‡ÖõJÂ`X7Í…ŽnÌ¡•K=˜u™lFÉîhY¡¼F«74YL6þ½ÀFå\97Ö7}\Rצ,©­WñAUÿûR8õ ê2î|2[gøòÙt«¾Õ<…át} ºÞäÖ‘4L5ˆ(Œjµ¶XY¤‘|àðè)ܦϨє©]mÉÀÔŽ^y7õ³“§:úû%gφl@ͦó>ÛÏÛÅó˜ ò ͦÄù.6ƪn7ÝÄ\<²Þò¸ïÚp=_…¾4¶é,›2oÔh£ç¯öq¯ø\ R*U±#M^©":“®Q÷,uG.§¡½©8Ť³Íq†½4U…ÆLÝäÓJÇ#­›ÞÖÀ_z›ÑÚØl²‘âðxOÂãp3rð£Ç ‡Íü{šø4*4ªwéI QÊ´Åëhid4”×LB>ßœxÝ¥„Ë\d_øÅ»ðìžrÜ®_‰jÔ£Šàr}û„R™6ªú”þœ®x‚W½žWÞUÙ××íëi6ÛÍ©Éin%Ü?Ò3~®_¾G² ÑU»ªësò”•êBrˆg_ÜDöµ‰ÓÝÓ×$žd{gåé%£¤Û}bŒE×Ü™Q[¡)U7T\ =+mF–«c°à4þa¼àÀð"Øëe‹HeGÑ}R#ïBhWÿ ÷¸Uì¥ëUhÈä25Ñh”¥EFƒ¦º®²Á©ê­÷˜š«†õü$ózZ†,|Éö«œhˆtÔ g> OGR–ÆÈruúCMb,÷"¹Öîq´xÚ»¥·áѯèÒfƒÕHôbR­oì@E3‡î@ä,Á2xlã×+ví.H«”$ŸšòOÕUuKFŠz¶‘XL…;bR²zŽI]ù” ý{ ÖŠ2¶ä—%¼&î @yïÆ¿G—ç’¶([å5=D|¬»«÷â–©èôÔÊü\iZ¶bù¦¢Û«AøÎxǰ_ÒßÛ50teû4÷ãAÿ=¨ä¥¨¹,ª3H#_ôú¶I)÷? 3k µÛÿÕb'N‚O:u¹Rºå·í'˜¢Õ4„>E¿ù"/Žù¦F¥;Ps¬˜¡+¯Šˆ^¯Ñik*Ktr‚£÷|A𹛿¾ðnf²”W€ÖWi8&¸&GTÍ¥Ì='¢š*ö £§Æö$¦÷ÑCWB7V±gI{Ãx&~¸™ž¬«‰ ÌMMz­YÕmúsQ(@Õ‡S!G¸^ÖöϑۨÛÇ äpÏÃQÆÆù’@rå—ªÇô#¦ë®± ¿Ô –ŽÈü{»SHɬÎ+ÌÌ-ÞLb0•|ú on]挄~Ï‹Ú>=y\#} Ï‹óösÿçŒ˽¬þ6·ADi]F³V¬¹ ½÷û¿ãwWDñ.!ë[ù½¤+Ò¸£ý+ Ξ$“ÕþÃÒ‡WºÄk¶V¤Ô—Ö”–—dU'“½$«38uòÐw„dvàOg¦ð©³çzÞ#ø‡÷Ôì|ÏOåëYõ(?–¯t õxtòNIG‰[w„ßo½þìcoÇ¥g•HK²òÍ?Ã1‡K?dM›tÚÍ{äñ¢›¶ÜÂð!„!Þ§ðÁgO fg¡¹]¢<[¥K>Js¡%"Ž^8Oþ@ÎÖ,Ì;}l5σÁ*öfƒ«ÞòÆ‹­^·ÉÀ7hˆo]ã,¶4tÑ õôZ¼Ä>Ìàî‰ÚZÇáG—sV¥Uì˯’ì-)0¬äõÃ|î˳áŸÏþtfqÄÇ‹@çe·ÛõÎ@@6º&)DÅÓÑmu[\DÜ7¿UÈôz½n[Žø‚çÖŠŠËËòåÀPOÏà`y\:Wðça÷"ÐzÙ8›Öe¾ˆ¹¨ÑšZ{P»™§x j³¸-¼TG\jÞà” óµzg#ßç.Rä´àÞ Ä~BT©—MµÔ¶™Ç1œ@ÄÚêr8Žöž=r‚à‰ž‚-R*C¦61PÝr/J$êoµìhèìHçÁ—:‹7Hi>2Åô» üG /*±¶k½ä”r> stream xÚÕXßoÛ6~÷_!t@!3CR")ë€-©ƒè°¦~kû ËŒ-@–RIn’ÿ~G‘”,Yõš{Ø‹EQäñ~|÷ÝÑQæm=¬×3¬‡ðüs5»XFÌ‹‘ä<ôVw C$xìqÉ—Ä[m¼O> ƒ9±™'um†WezØ«¢Iš¬,`Šqû_VïfoW³¯3` $Hbæ¥ûÙ§/ØÛÀÇw N(cï¡]º÷–½1÷>Î>Ìð@g£+÷F‚I>P– DCæ”E"˜Œ±yùcÚÔ‹Åe™öÅbqS!õ¿„ùIžmnË€ÿá¯Ã~­*°‚ö6ÂðVÝÂW•*RÕæÜv±¤øÈgØ›ÓqÞ>¦êÞº<ÕìªRŸ÷`ßÝ|Ò4j늭]Wšg¥’]a'ÌvóRûN]x_«€bÿIÿ”ÅÆ¨Ì@¹™òn ±IÖzC®´`¤M»X2æI°ˆrkˆÓÈXôKV¤ùa£ÌJˆP¿’·¥„ íÂß&d $"÷Ý„í&EÅ”¸…¿›7CL% ¹UÍFû¦ØiW€Y“è8µn²d«UéŸdo&dý6 ðÉ·€öÐ`‹AøÇOÀ»C; 1"Ìc²'–ì_g(ÄD¶ßûQûÁm²7{î]•üýƒpæö˜ùÑ9.=NS9Š)Š95þúû°LçYj þ^õÈ_ŠTöž4v ‘ˆhB‘6Ÿ)e£½ZÛjkÕ¾½žyŸæŒqÿœ¯`½ŽÖgÌp š5&xòÈïrçµø¯6#Ê27£:Ë¡Þ4RÈwlclÃ\ mØDe8‹Œ¢“¤)ñӀİg†!ñï+¥áô¨¦j½›,Ôkk«@«­žxµÌšúmU•€«yDåØfÿ­K{½Å1”ÏÍw‹[‡¾2skeAÞ¦j›ÆI& /Ô÷*ʹ©yß«ºN¶=Œ`7ÂÕ<”ÇðаŠzÒEÄÒî•jpýÆÀêJÕi•ßý‰Êÿ/‰žw¶;*SˆºB¥±]ZTµN{Ýùn0=¬º(Ž—$sX çÕÅ­šiSߥ)LBššÀD j ]„G¡È†–ó!‡u\ Û¥çQ‚"ÆÝÊ6ÅOåé° X+è5˜u´aã¿7õ‰ Ä⮂»ÕÔùɾÌɸRA¯C–C2A œ¼vB °Ä|ƒXœlë ¶t ÀTG ZÂ+37A G®|LÂrL$ÀMÐÈAóˆpÚúÐÈOªd¯P«Ï–^<ÙÖæÓFЈ"LÎ7¢q»Fô?"µ¨â8~îÜipœÙêÙucGñ¿wüÖ Ò¾<ìT³ëÚ‰†R/ZÞ¬>.-ªj]Öê}¹QSdfﯵ²g¹ AQ6çÀõl·LàBß[dôBp=_ÈD€¬0CÄÂhåòn3ºÚ¯NÍÎ91íÿxh›û²U…2W¯FÙæé®*÷£ü6BóÜ”©®…ÓÌ‘«zxåêï 1}ç¾aoÇ·Ìþ›®eÐo0úC›ÓÇlj–îla!˜ Fäsþápÿ¿pD…n¥ûÐÄúªkËîµvgïJ”U ±Î£öå}b£CˆyR ö™±ÀlA¤ó:=½Û6ØtÁöÿǧ­n¡žp8á›ØXÓ endstream endobj 2038 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Column_1_1InvalidRowNumber.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2049 0 R /BBox [0 0 500 187.79] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2050 0 R >>/Font << /R8 2051 0 R>> >> /Length 279 /Filter /FlateDecode >> stream xœ•QMSÂ0½ï¯Ø£zX³ùjÚ£ :^œú´RZ‡€ˆ?ßM[™Ì$o?ßÛÍ1ªt†·Šp?Ëp¹…KØwAž*âC)  “™Á²†¾‘ ierä@6X‹e„›É¤n÷»¢˜lV‡¸.ŠçõÏÛªý˜mŽ/‡ø¾ø¾-?aZÂ+hOVyÆ£ð>AjÁ)•ÀªNbÍbŽqJhÀH!·”È#̯TÏLYÐÈÚ«|¤þQîéoµøÚ·›õYrêë> stream xœVkTSW¾!䞣e¨£¤ØÄÖú¨ïG[¤µÕñQÑ"(AA% ¯@€„äBHNBHHðP^Q©TK­ïvZk[m}TêšÚÖvµSÚYë\ÖáÇÜØ®53kÖš³îýqï¹wíýï|ûÛ›GP</hGŽ4³pIœ\ºWæ_ȆóØYì3|D¤Mk¬8ˆBA|Ø6+h{¾ò¶?‰‹§Q<^Ä–Dׂq‰/,Z´8JžWZ“•]4{åò/ÎÎ(ýç—Ùë3 s²d³çqÅ™¹òµƒÚI%P ©D*‰z“J¦¢¨õT4µŒÚ@m¤VQoQ[©mT8Î1FR êƒ?ž¹ö¹8xb™z˜ýmˆ×!‚b…•X!(¦õÅåšT‰TV•mWsr}*ŠD«s·îˆÞš¹ ‘HÒ±ˆÌÂ)Xð÷3÷®ˆK[Þ\¿Iº‰bP¼7}pÇÙ܇B¼ù ñÜ‹£Åû‡Ä¾Cyë[~ôDŠ¥Œ ¾rk +Ì uÛˆTˆ -ô:³Æiúâ Typ ƒ9ŽŸøâ¹xZô· ãÓ w¤I¾zËÎâìŠe¢rà0×!'‚ýv&U2™ P‚–‰ÕÃÐwðR¶OØ{aàÌͳkÉqh ص.*5n WÌbäÅWNbÇ ï—q>û¿&”Ó)Ïî) sL0žc5™Ñ ˆ^ ÆŒn;v`U­yE­‰0B²ÐæÞÚÚnq8¡Ñ«nZ Ó5xŽ`²[IapUX¢àd,0FU¨£ª¡’=‚ñN$«½¼/Çø¶Xç¡7YÊ—!Vß©sÝuÓ ö¨\7‚žæî£ÅÞœ½rET²ä{`°Ä+²Ôñ¥Ü~9E¸<ì(O“+0&êõ1ZŽÓ÷ÿcK…¸\ÈAÚ5eêHòÜÇ­Ön3ijþäh`z™Ñ®5@%>Ú ÖZÕ¦/ –á¹àkS“Úõ —HÄ´k¼ìK!ï]Ñ7frL_ÇŸ«ñ3-m¨2Ôè‘1­­¨¾ÈVˆàš¸Ä¨xß¾oR$—+i.D¹¢´Cò¤ ÙƒãEâr²ÜMÛµnG¡I ÈeìðŸ¾ëHµ7üö‡—nœ+<úö€„PÉ›U¨Kt²¯ëÌÅÞƒ+:ÄÁ¸eƒ|¼c|\Ï&çaH;Vƒx{„4GV¦ÕéýHjÌF«¾OÎÓ½é—ÏvŽW4(òË+Ht@Õõ¡Ÿøø êâå}6†7Œqôè]]½iâŸÈÊ2p­ÆÅ dH4É jµ6O‘«‘"¸ÿPÿ) ¾Cæ©Áˆ±QmNÄÖ¼›ôÅñM]]âÓ§«A­ñœw á½FÑc LxyŒû]â\+iQ7oB6Xn¹]÷­°•œS‚o Œy_@¦µmÄã‚W{Ù5^›Ïí”HT´¯ÆÃ %bŒL5³€¸Âæb‡¾±¦9D¨¥Á~Ì =$IvæÌó8ˆ …YôVµŠ»tVƒ¥ºÖhEuÈîöÇÓñͰžëuö^+ ž8ðgšë\è×9u¨ ©ô…Ú¼¤ ,•A¹E¨½Á>bç’¤©Àñj—Æ›`S; êÊ–“”°¸±Úit"§µ5Ô«åþÚ¤Æz¦= ‡“Ã\¹õuȆê]®.®´uaß­'Ób°#‘ÙMCXŒ k9eµy¹ÜáÄ2ã.±a!îã÷8ɱÛ>–©5‚EºÆa NhÔУêT ¤·Æ"¸ä]1E­%mÞöZ“Íd—¦zd‡]¾ö¡³]²âm€,ÙVZ™ž©(Qç ƒœúb†Ó®Ÿl½*u'ØZJN†÷£6×±AîYv_ˆ¤m±¦@WUŒ`¶¼ÿ´¤˜¯ â)'á `•‡‡ûfàÝ:•4å“é8)ì>jíêñµˆÊ>ÝÍëz€K¸RÔ\V˜ô¨š#½²áŒ„ýˆ3ÃÔòíf¿ù×›mÈàq“!!ËA¦/¯a‚,%ò™~óEÌ¿0èé—lµ5xþ¨€,º"D:†Ñ–•ä32#vÞÅÓpàÙ›_ž75AÂU€Ö[é/ÒÌfW Ï UN$N,’¾kp—YŸ…ä!˜²JY«¤O£Æª¡T8¹Ÿ­(‹ôû¦¦¼^«j3þÙYÀ/ÕÉA3ÛA[w7ß±C?oŸb™ƒ»¯¦¬M—mAq(½Gv±tPç3^ƒø*]õW¦§À'ØÝ–ˆ’QjifNjFÞz ‰øó—0øñÖeL“Ûx±°ávÿñ«è*ê”»_„´™ç|xo7ï7ίùýâIÎ/·ö¶»Y‹¸)ßÅ4s=¦¥¥c íÈÛ1‰y{ò%ù{ª²L¯ÂÈC_“Ohã:F»Þ?¢¸= Òªm@· þnVà‚çã ÌãOÌofZKœ²~’ëÂpèáóçÐ÷ètÅñüžÌ“G–rgÑ£¤oV9+ÍoþÑ\*™uzޤ^Ž$›Æåo.Éà‚W’«ü=™Â>v7Ôá§.¥/I.Þ›¥ïÎÏÖ/â4û¸Ü—ÆCn¿<63ôÓ¦˜ñЛm:‡?ÕV²l‡@ÅIÂeq™HÔù¸Cª€ñJfc ýN,æÉeíŠîÞööžž¢v™äq\ÞÏcü¶Xë¡c¬Z§édjKRùízNfu Áì2såâsª¹!#˜vªÕ[«9»lå …òŒáÿÍç@xè$syƒiâcYêvûáŽÓÍÇnÏŽ–)0Æ1Úx?»EÔMFnܱÞÓ¾–/¶ä­–,`ŒÕë¶ë¹Ÿäo9dÓzÐ Îxêþ+¯oOÊß¾S\z1§k'Úƒò*Vo·¸©1›üS£ë©ñˆ£6c>ïæóñ,6M(-(8$;\ÐÓw¤³·/ÿˆTBHà­«Ù'ÞÓHN½ÿÄ 5(èNmÐ_(êŸ âÏr endstream endobj 1969 0 obj << /Type /ObjStm /N 100 /First 965 /Length 2208 /Filter /FlateDecode >> stream xÚÝYmo7þ®_ÁoMpÈ.9|/‚~‰]÷â8gmzA`¬vW¶îd)äÖù÷÷ %å,ÛŠ¨Ø‚ÀErÎ ‡Ãy8+TR¨èŒ0Ž¿­ˆ$TPQ(x£Ápà Ҁ’‚|¡ àh£ÐŽÁ^ +©ƒ†N&°ÎX~d„‹Šeyáµç+|Ð<D È#NŸÀV$p¬#/D ±Ò&mh)ɶ´(™`Öl‹Ö…Xü3ÄRx!¶¡5Vy~ŠÖ¥1Ls2²teK ^BEt=Œ'!>ò£ƒfËã|>I¬š”2ÜR‚+A‹Øu©¥92ðP.Dv=¼¢%Kø§É³G£Z+VkXG0S™ty´’qMLcØk4›‰™6ÄY4œN0âí>©¤Ð0´ „· ­ ŒÒl0öÜ(Ç-l±1°{a¼ç¸˜ZŠ„U–:hi´`9),±`L·X£ÐÒše(‹VHºœ°i'“¬™ÉÂBkÅS‡ $©!7( 0ÌδB”Kþ“Ø^§±Û˜0sÄ3áˆ7€‚ðRB¯ã†åe#¸¼„cØ·¡â׫XžÒòµB+¹I¦! fVLÀ¸7*éDØšä%òŽx[¦Þ[^+ôù˜pˆ: «ÀÖJëG¬Ž5Ìõ™#BL{‚sbÀ\„iä•:Q&“p8£JëCFÅ&IÄNIè¼|Ù)wÅ{H‰³|,Êwþ›OAááDEaéðj0øÐùå—5h µ<´Q¶à’‡ÖÖƨl´*¼ÍEÃæ‚(×dXÎE{¬RÞBï†Sñò¥(÷°k±™¦íáàxéæìgºYÇrJÓóŽR"¸8ïp>²´€cƒ¨I¨*ߎGõI;ïEùvwO”§íõT|¶âôÓǪó¶SîÀ¢v8p^"žß)ÛÉèj\·“Y²Lc‡mÓ¯¶G×â=8œeéUcÌpfþ’W'nx…’Wp´ @ïºð&XSX¸ÀY_œôeôÂáÎÊÂÞ»õ÷ɶ^>Ì“m)4òSžlL•Ê”m|@úL4[¸l»IùBg‹VT¸°Ö@kfbÅg^?0¾óBzé|u|uO|ÇÌøáN|¹A|‡{R„s¾À“5è…í‹H5S¶uTÄL,ÒkAÆf¢uÄ£ÉF#iÊuèÅÉÑ2QS®l‰ômr=¢pâ• ¹h¯“Þ«#z)†—Ã{éL,¥ykÓ5öA±Žý¹ë‘6‹õrk8AÚ{‘îlOºvrã³~X×\ÕíX<ÛûZì_Œ&ÓI=îœ ¤ÿFÛjÚ w«i+žíþÌW!\šîÇ–ä i~’ò'àGÍ:Èi:`gPM&oªËv!}í»£ëOçíC[WÓ y¾ì¢W×Óý“)4tÊ£·‡B-žnW“6ík¹õöŸ¯¶þqÚ¿l'/ŽG—Õp¶ã»ílEš®âÉ73¡ü þx2ݹ¨Æ¸~vÊ×Õ¼£HvÊ?úÍô‚}Hž½ºü‡võui‡ýjýŸ1fþ1¡¿=>Æâ“ôðe{>ÎøF¼Ö£¦?<0{¸5œôòäª;MKæ…«e×.;iæ4ÞŸÕ.ÝNá½/ÀP| Æ5\À½Au>A5ƒ]œÔŒÆ&Wmûçèz‡3ÛΞñÜNy0­ýzkxŽÐ€¿O¦íåï 'àû“ lO;€«¾›‹1Þ#>WÏÊòU¹W”uY£aÙ–½²_ÊËrXŽÊ夜–Wåõó™í{ýA›*s“fžH'憳^÷‡ÿEˆÆM;N§M~(…¦÷*uø€Ö8Ú 7.BYV JDÝ‹(¹,ŽÈF ¸­”wND¹?: ä­g5ƒ^:9Sgjg4¸ºrë`8¹êõúuNz5h/9%œUMÝë¡vÂEM†FÊ&ÆJ¢l®êŠdã´ÎÉæQ£•+Š{¢X šŒ®pÜCEý9KÙ;8=9«ê}«c >а›ËÙG·Îºnk{õMƒSz>^/Êf‹™hc‘á´ÊDk°O¤\Ù¨Ï õXƒl®ÊÚ÷Ø{Ñ&.0o0Ü-Â̬„nR)s代î8öXÕÁez«B $ÕËbzçð•šÞˆ°=é…È#¨ZO ê›èÑ¿O޶×(É Te¨'Ê¢P—¶t2!~-‘ÎÆæ­§ ÓU¾I§át‰Nwç„zZVŸIµYA«•×å§[Ô:Ë L­Ößæ #äƒTˆÒ{Sjý îásV±UgU·Û ªW«^m´ªé5ä¹®t®ˆ£ÇgUPÒ§÷°s^•(Þœ}2^M¯syõ6xΔÑAù\4MÌDk\2¼5¹hé6°d34‘)ø·ˆ<´Rºp·_=æÔ—ËuãJ"Ý€.Ó¯îatIþ.]Î~]ÎMOoèXºÜþýÏýã5t©Ý7«7™Hùóä—+ÎUnF™ŒºMš¬õ©(s…“¿Ï ôMyTƒ4»_ ÍñgâüûNM:ËMœ¨ŠPìî÷A™盫Ën;>êþFIZUÎ…nmÈZ+}%5=)P¯nd£è JRÅ—€ä©eŒyBò$·y.ƒ¿ü’ø~ôjª½½’jïCk¼|z3ÑÚ:ú'A“5b&­Œ.HæzPi½ÚÄÌ¿ §|üb6ú.1õõĬ㜘üa‰ù·íÝÃßÖ½¶ôM‰YþX´¼ÊÅß+-?„”­~ÂjV#ß;z)ƒŒg¼|VéÆ5]kƒ§®«›íF…nã¥2=UGõ#0²¡ y¼ŽcïE¯äØûÐ̱D¹–¬f͇£ïpìÿo§U endstream endobj 2060 0 obj << /Length 1614 /Filter /FlateDecode >> stream xÚ½X[oÛ6~÷¯6 š!)‘u@—4E h¿µ}PdÆ&K©$Ïé~ýÎáŲl5Ht/Eëw.4%\«€âãí„âž-&g—±R¢¤Œ‚ÅmÀ¢ˆ$2 ¤D*,–ÁçGÓOÒð¼ÌÚÖ./ê|»ÑU—uE]Á–4 6ýºx7y³˜|›0@vÀEEo&Ÿ¿Ò` ‡ï@H¥ÁÎn‚(R†–Áõäã„t¶ºÊ€Q’%ÊŠ„ðHxeI:1Jix~þ…RÞµóùy]n7Õ|~UM#þ3e"ÌÊbù©ž2î>LyfM¶ÑnÀÞ› ËOúvš„ºÑU®}Þ{g—œ¸Ž3)R«Ç›û\ß9ï€ÃºuS£Ø{÷ûE•×M£óξ:"û²eà­èŠjåŽõ·­n;‚zœ] (Ï¥Ï"ylÅÿŒËíR[JðjO)ÀkJÁ†ð^ Ibn]GÖ#Œâ„¤œyÂ?-ÅÀ'E"éTsºªÖÚ[–¡SiË"[M üÉ6vóvѰnüÆÂÉ)„“÷áÎ88>Òù lÇO€«+ç‚0@½€§L‚õÛ„Dœ%‘¡8Xš#ÿÛ8»Ú$ÁE ÐýØK€Ø0ó’f¢<ÂO³1N9I%·îû°½<–Enáù^onŠ “$IT…¨Ä…æ èuô-ªÛ¬œÞŸÞN‚Ï3!døHטÁ§Ç/TДt¿î¦,txð8hxi×7u]ÚU[”Pr^u–x«û¥"K©T Z rc¢âø$=c…y(4™q…wF¬Ý#ütkIºµ¶‹¶;Ð6¦<üí²èÚ7MSÒfBÅ}#9¬ÃÛÛVwîµ±O0eÕ­-,›;¨¥7èÔÒÉÙÉ:“Ú”(¡¬ê¹A¿Ë—Îß}­ùÍ9N»ôѾ¹E{§óíËíûF·m¶Ò¨3±þ€ö”³HšÂ1÷E—0Wv/t—A¤–“ºÍ›ÂºúÕSýOÕó¸^.ÖÄ9ŠE¨Ñi½xÜòG‡j˜ý[¿¯íbÛb*âÊÉruÁ ®–Y—y6™cì6z .Ÿb‰˜1œ­Þh¯Âeqnذ4ÌrÀÕ¦ .¸³XŠðµ;=6”)k(úßÂLݶç™û"s.'«<óÜ€y±/Eçž­ý°,þF°ëòûÀiMÝj­oMd‹ÒU„ªvT5ê¶+Zí# Eé_´`}ÏϺWeí§™Â=×ÙÝ® FH:’ÜXÝš­)*& ^ìsa°=œ¢•l ú8;¬°}Â=iÎyì0d`((@'U¡/Û°yÝ56±`ý¶~h½"èü´3  #† ¨ÒaEáID”ìŠMÝ?å I+¤ðlmK°Þ|52Ép NSO Î×#òHõšžt•Ó™&…Ù863b§ý„+qØO¸R'ý„C“°ÀÚA?ÁA?‰’ä ®Ái횉Y7öé› ò=m&Haš‰U­.gcUãW÷”Qd#ÚÌöpŸ 4ŽÜ¼3$@´}pœ££7ƒaïônÂ)…D–ßM$‘Lîï&¿€‰&,Má Äbä6h–‡Í´Ó'Œ;0§3…cOºO¿ÕÈå H˜BŸ(v8N*IbHºØ×ãà@mªºíŠS°¼ôÅ~›•І ;œ|*Ä©EqJ KÅ,:(ò,z,žÍÄÀ"‘$‚‹å³`!¡eDÀ Šc,ÕóǸxšÜq\ ÆÁÉDÖò¡¿óÕ°‚öþµ6Sˆ­#w$º¼Z\Ïçæn¢››ºÕï륻‰ø¾oë)ŽÍ~® €ë§Ý2‚ àÁ„z&¸~žÉH€<3Á\/ý8ì¯åGô_Ê»µwbÞÿ;´33…{YéJ»nbîÈ¡©7G©m™–¥ítû‘‹F©Ûá ¾¿º2’úþäêê.ª‡ÿ_ôgØû8¡T=êãüþ~p:ÚEeéêgþáòÿ¿IÂ$û`¤ø·‰K–·èÀÞy> ‹©¢˜9æå}æâÁ˜}r ÙdNÅœ)ïg~úŠëíxôÝÿ¿g.ßW8b†º:6ÿ?òIðB endstream endobj 2055 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Column_1_1InvalidRowParameter.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2066 0 R /BBox [0 0 500 176.21] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2067 0 R >>/Font << /R8 2068 0 R>> >> /Length 276 /Filter /FlateDecode >> stream xœ•PÉNÃ0½ÏWÌ8 c;v܉ âm~ JW'tòùŒ“PðEʬ~ËI!ÇoŠM€ûEŽÛ0náj⚀•,x4LšÙ`µñ¡B¥ÉúÌ£ÊÉ)ç± pS–›ýùTeß~„®(ž»ÏºÝ¯ýå¥>Öa}^o«7˜Wð Ú’rn†¡~‚ˆÀ2ǤˆŒqR¦y\ØAæóŒ´~G‘?ÀòŸ”'-†è³ÄÀ£üç_Íúý¼ï»«äˆË޲AáO9 VV1±D&ùumÆËÁĈ°jÖ({8¥ÉäÚþñÆ2·–˜ãëeÚ˜æ¿èË´ç&§ÜâL#„Μ&tRŒlîÄê7q/v( endstream endobj 2070 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2756 >> stream xœViTSg¾!p¿OËÐVŒ’b¦u«»ÖiÑpE‹ì›‚(J¶°&$’ÀÍ—„²–°! ¢R­”Z÷vºØ[­•zÎt±=]èÌ9ßå\ÌöÌræœù1çæÇͽ÷¼Ïó>ßû>ïË#üý˜/É)Y'“”úþ¯`ByÌ"?æY>b%³­³[Q ù(пsÑx¾ü4nz—=EøóxồËã’_X¹rU¤¬°²8?7¯4lúõò+Ã~•S’Ÿ+ [ÊÝ”åÈ %9ÒÒ½ù’lyIØ#ܰ¸œ\yÁÁâö¯hÿ_|‚ „RYdatñ¶’Rùβòƒ‡ç‰Ë/¼Bo±Äbb±”ˆ'– D"‘D¬ ’‰âu"•ˆ"¢‰mÄvb=ñ"±‹ØCì%B‰g8¹BN\ä½È;í÷‚_½ß¯üJþUÿUþGü?8D6ò'p ¼—Açœùs æxæ&ÍmĦ ¦¹Á»¼/§qÔ4¿}Îs‘©¦j'†x¼õf—ã‚z vŠÙ@ïRU§5@>ìifµCâJð óÒkû ªvoÝcrE¾:Y!¬“Õ`GÐcU¤‰YÐǪkR Hy˜ ^ÿ7¸å>61Yváú•¬ˆ]ôý2îçýøw,Æ!k°óÅ52ÁôÕ•ì³,y`ÇÖÃGzÆÊIJÉê›èøÃ¹ŸŠ‚f×*Ç™ßÆx ù³“,¨Åò€2R[V­*GµHaR˜ÓÚR›3PÚT°'!zOÎZÄúA6 ÙE8ürîî5QeûëQ;$›0Å»³F.|ƒ°?Ä;¿Ç/¹¯‡…äó&½‚á5`švªœ°+JIÕ+JU8 Ù5¸˜4x=âPCÚ­lÝ“ øù€‡ž ò3£Æ Æ:²FY+˜„ïsE²ÉÍû|šo^€5.r‡±º…¾ ± ž™ð4Yu”]äR8tN{\mžeîüƒ2ydªø; 3ÆËs•ñ•\¾-\E8nf’K1$m´I'Ú.É—V©5Z“m¢á;ìE2Ü›uõÂhÏä Q]^T]+GÂ#о÷ÄøÔ¯À×PW˜ynÞ'ÓxÛ4'ß„@G¦5ÍúóÿÈn¨7J…¬ ™N©TÊ T:#ÆwØ¥JpžnQÒ!k›ßJùläTk_ŸèìÙ€M ‘žpÛßn>*Y?7ƒŸKLtFe =™X`¼åtÜ3Áv¢|­³S†­¾ÒoQ©Ã5¼ÒÍlvó˜".SV¬ \ª@MÕSËYGÈlÕ¶4´ «µÛ-'MÐŦ(À(m¡Î-ÆìXˆQkÒ˜ê¸KcÒëijB§kÏÇS!ý5Y¼&4{äw˜8ÒØ4¨ )´%êÂõlqH8.­:‡r Q—ÝrÞÂd*ÀH½CåN2+­ÅMUëØô帥ÞFÛMˆ:íÍ'¹¯v(@7ÝLu¥àPö‡GAsM2£f‡£kmMÈ·¬Ú•cÔYЂÌÖÖ1,Â?‡´Ÿ1™Ýw8±Ôå¸+LHϼK÷ðò»\É1{?T)U:‚¥š–q1NhRׯè‘guÄ"¸úµ´˜ÒŽòžžNwW£Þ¬·ˆi«¾Y`ß`ר…>i¢h/`Wï­¬ÍÊ‘—+óÑQ®úbÆ3¯Ÿîœ¼. v&™ÛËO‡¡NÇÉQî»öžItê2U±²°® Á<ÙÐYq#0\ÅsNÃÇàE,Àû]d*o-gçã”{8°£¯ßuÂ(t±ÀKÛ´H‰T*yqN«ª¬)¯s„(ºktcÅ€¦•s2—³Ékà$;¤°/j­ÈxÀ.aI6B’MiŽ6x‰ HÕf§¥ÉÙÒ)¾ƒŸü– kÔuH#D•šú£4ô)ö)ÐÏ;þŸy¯¤Gç–Ä!¸6æK þöîÍ»ÃN*Ç&n’7KÛ«º°·³£ûRôùð´”òÜlqj¦l;z²‚;k0ÿͱÖaQ_w‡Ç{õÑÜ™džñðúîãr®MTW5z-ªç©µŸ3ïsF•Q¯Þé3æfƒY±RÙbvÈ,´BkØö9vþÔFÌ¿4ê>?$Þ ð²Évå5ÒhT”ºª¼ˆ’"žø%~ û_˜úüâ[Ib_Vcé Ã~q}‡ÎÖŒõçœï]ÃEë¯ §êlÿ$TKmÕr„¼àÏf•Ã7RÁ%#®e¯à—ȇéÌ}ÇÞ<†Ÿ¾’µ:µì`n…hQžv%W~x€Ã¾23ïöÌËÓ ƒ?n]€)¹Ó¬±ú‚`Pob×&(¸ qö<f @¿VKmo€Á_cÿÙu‚ÂÒR™´Kîñvuõ÷—vIÅâò~šæw.ÀjcRÛô— óÔSª¨£¸ªkvƒÃÐŒà MÉíE@Ÿ¨Tî©çœ­ƒ£2É»?c|?>GªØE¦ªíú1ˆOdl¶Y,ǻ϶Dp¼+/ZÌJG©ã}ÇYêñHÙJs›‰x϶ŸGðr{á&1› èX­fŸ–ûHæEÆcfµ âl€ç¾öç})EûE•—óûÑTX³i7¼Å-xIÜ‚—ä[ð¼^kuº˜mt|2ùTc>6`>ï.æóñ"&S ).>&=^Ü?ÐÛã(ꕈYÖÿ¿ž)[˜$>ÐBŽÎ½÷Ĩ)0ðNcàâuШ0 endstream endobj 2076 0 obj << /Length 1666 /Filter /FlateDecode >> stream xÚÕÛnÛ6ôÝ_!l@'3CR¢.Æ:`Kš"E[l­·—¶ŠÌØÂd)•ä%Ù×ïÒ–l%mìa/6/‡ç~÷V÷^N~]LNÎCå%,¢À[\y"X%^”*¥Â[,½¾ ¦3'þi™µ--Ïê|»ÑU—uE]Á‘ŠxâÇrúiñjòb1ù<@€{¢‡P°”+/ßL>|âÞ._yœiâÝЄ*ða齟ü>á–KΤÂ%þ9ž#Op«40­b&å˜fét&8çþééGÎe×Îç§u¹ÝTóùÛúí¶,ÿœ†‰Ÿ•[ Ƚx°|§¯¦±¯]åÚÈäx99—¼§.îÍdÈ"•Í·¹¾¶‘ÜïÖM=Ê¿Á½HýâŠÎ3ÚVSÁ}`ƒÿžJµc†ûEK@íµÎ d_/éâ¦èÖõ¶³·Ûë뺙ÎB F×WM½¡•žÜ¿-Ú®¨Véév­³¥n¦Šû <9WÊKA.Y¹DÌ"’\ßU^n—š ÁD{HªOSx`Á³8t÷¤¶AÆ,‘ÂþLeƒ1SD–5kæ‹j bÌ@ËE—¡µŒ{.‹l…Úmð'ÛÐá*µe|ù^Ÿˆ¹1Ã|`÷Ãðqçá2”Lrá) !“¤èáŸ'à«Alö+sá^Ùƒ“‹MâÕàí÷ù»{0stf=B.Ž8L$K"IJúm{ î\9y÷½¹D¥áú|[åè±í¨¸‹“X‘,­>J©Þ"»ÍÊòýîåÄû0S*òaÓ%bãë¦ {;:\»ìÕ mm67kÝáXI=2Î ÐùÅâý|n»–˺ÕoêåèPSØo&­¶´\%®êŽ=à\Vˈ_¡Ò':×㑌È!SL®årizyð9épZïÖN‰ùþÔ š3³›•®4Mû©!ˆøþäCHË’† *]fìä²ÔípäßO»‚%®›?švílÛÿ°±¿Ãª$çéW=Îoo·£EAp‘ž>æ;šûÊ1c·7F‚ßSl°¼Dî•ç̰˜¦ÜßZõ½É¬=„ ÉA":‰ç\ÍEêô,?µØ™ÝtÕî+¢™îVØáùº:ÿ_ª¿ûœ endstream endobj 2071 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Column_1_1NoNullValue.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2083 0 R /BBox [0 0 500 223.46] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2084 0 R >>/Font << /R8 2085 0 R>> >> /Length 274 /Filter /FlateDecode >> stream xœ•ÉNÃ0†ïósƒÇ»s$*Ü*A"î(jº(n¨Ú;M 9"Köìÿ7>¡ F‘Ïô6ßnÏ p 'à1‰ÓÓD|ªSGå(8¡°náÚÈȆ¼” ¥$ÖAbá®,Ûýå\eß ñXë~=tÝûG7lîë¬jxÅd5üJ’/gE0Bd£»VIòÊ&wiç‚h¯™¼MºLY7Bõ?p¯I9k‘µ'ÇnþœîÕw³ù¼ìûã 9uIkÈúuv'`öÁ“áraßÊ6K2dUGI5c_(òWH3ï­Sfô‚$Mn®–)ÿ;¼Zr^;ÒiCV8³Hm$ý7²œ±ƒö!múðsC endstream endobj 2087 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2238 >> stream xœU{PSW¾!äžcKi%MèCû°µ¥íV- UQyC­ÈCò$! @r’y%„Gx(P)¢P--m}·»níéÔJ;³vj;û°Ý™ßeìÝ™ÝÙ?:sÿ8÷œ;ßïw¾ï~¿OÀ1 $¥Hž_þ\²R¾Ox†‹pQAÜ#BBå ] Dœ4„!!Bܵħö¡â!&X X·=ÝýTjrúÓ+W>§TU•ª£×®^óBôþªèDÇç—(¢Wð‹Šü¥Jž¯Pï,’ï×”Gß«œ_ )ÙWöŸ{ÿFûmø Ã<¬PÆ©6—«5û´oíÌ?XT’&™av1IÌÌnfó$“¤2iÌëL&ÏÄ0›™-Ì6f³ŽÙÉD2bž&˜Ñ0 žœ z:¨E),^ V‰Q†è,+a+Ø«h Ú‡Â[ÁÊ5'þHðõ<ÄÏ {–B¡—ÍtêÞbΑ-"’f2'5àðw`7*öŸ?óå̺DžAƒ²6Æå$û¥¡\:m‚¿Þrwà÷b%›ýèÞ2ú¸ «ØÇ6;9‰À*4oõ=±xôjÖø²Á¸ÎŠé*(cíþææa‚!’lõºÖâ#l<.ZÖ²_XÜ5Ž8¼˜„¬q5†¸F¬åÞF¡ÜÿU´tb™^­6Äò Ëï:Ãv Qÿ4Ù^2›6X°Žõ¢ NC§í X޾±uÜ/óôJÌýF÷â@ØûW öÚ2ž‹?ÁUq#<"2±–:KSi f‡É¥nU»Ê ~59=nÏØ[ßfË.Ÿ¨ì.'%’ÜCʌͅwÕR]ía[Ú›n‚Ã3:ˆÛ:`·aèh£/òÆÇ®½W~l׸Œ2Ÿ(»õƒdHrjtèÌyñši(Œšg¹1Áµy!´riâ€Ùv«Ó"ݽN^¤¨6Õ7:i²[Vüý]çÏ»8318{LZÓ¡)ÕÕjˆä ~ècœü; üò¸0Ÿà³yØ<ÏÓ÷žØÂf9ê[mg1üD×V£+Mn3ÉÄÔˆˆÒb0˜Tš£œà‡ŽŸ–Á]a@g­{6¦.ôê»_¼}²khH:5%Zš­ïùÆ;ÞrIæóɸˆÁ°s·à©›È;àb¯¢ßcVôH»JÝæn‚{zÆsîJLWí-••î­+°½‚c}C¯²ÖfS| +<^ë4uë®B(â­Åƒ_¸vãîKóËÂ?íZ f/»ÕU߀4&E¤G­v·Ãmo'’Á6]®Œê‘uS­yKÿ‚V‹UjµRѯö÷÷Œ¨û²{¸‚¿Ì û–‚ÉË&:Mí¶s˜»ƒºƒ¦x~àFv·½•à±v?qK‘-Õ`ØÑø«` ø ;*íÓ²5ö˜‰’èêUF9}rQAWÂ÷Å_Öõ¯„ø:ÛÆ.Òa÷Øq/íÕ¢ÞœSkÁ¶x&ÂËBwáØ\GÇ»NIèB/ÕˆYÁwóx„üe˼l†]×a›ÄpGk{KË‘©îO÷&ȨY“ͦ=æÔ^´‡º¬|¦¸j¬ç,Áç{Tëe´Y“êw7ð)½¨ÔqÈeò’“Øà¾—^ÛQº;UZu¾h(•ì%ªšõÛñu>šÓøhN D³û×h>ڦ˖ÑÃȺ§ÆBxÙGM ;7A(„(.W,/+;¤8R62ztÐ?ZzT.£4øöB \Z;ìíd'î»uÿ„3$d®9ä†ù'Nyû endstream endobj 2093 0 obj << /Length 1453 /Filter /FlateDecode >> stream xÚÕXKoã6¾ûW[`!5CR"EÝm² ²@€6ñ-Ùƒ"3¶[r$¹Éþû¾,KVÜ<ÐCO–Äápß|34.FÎF'ç1 ’œGÁì! Q„..â’³ypÒh<¡‰OWi]Ûdz2Û®UѤM^ð‰q,Â$Ÿ}}GÀÙSHÄ,ÈÖ£Ûï8˜Ãâ·£HŠàɈ®ƒ(Q¢7®‚›Ñß#ì¬Äˆ2ý¨¼Í< %LòŽÑ,A4bÞhDðxB0Æáé鯴©§ÓÓrµ]ÓéuZ,ƪ¯U5&,,+p‚¶.Âãµz'¡ªT‘)ã—·çäœâ½á`BcÄ™°çªq„ÃçLm\d XMiï•{_V¥>ôÉ­?è-ÆxɋͶ©½`ÚØ§,ÝÖn7Ø‹C0ß½ªª*«ÚïuÒÆK'®Ò¹}*7ÊîÕ–ÕÚ¤ý:9g,àåÎ’ NcëÎ/y‘­¶se%!;­$ƒ¨K Œàoº”Ä~ÝF-Å ”xÁß­D'ÆF‰"îLs¾,–àÐüÈ›T'Éx9ÏÓ…öÒººˆð04ÊjÚÉtÿíqM¬2a£P(Bj\?Ž97í“Yð»Ü‡“˵ ÎJÀøK(÷&þœÉÞA¾Ë6 Nm|þÚÞ€Wyfñ|¥Ö÷ÊÁü|[dCîö‚O8JD¦Pc‰Ñ}G)ëíÕæV g÷õÅ(¸0ÆÃ6¶yXÕ¹¸Ã g`‡ƒùM£öÃçu½øÕUOY®ìS¯€z¾46ù[JÈ Ž°Á\&Úp€Ê@#;|mK5Æ2̰“áÎŒcn*¥±ò¬á£j+Ò,•~3œÆX½òé:.tõ ‡c2 ÙFôø˜Ì'|7&ÿJ¤VÕǒ䘷1·:ÌXbn sè¸D‚.ˆï1P7×Ia˜$ï=µK¤’£*§sêntèµL=-eÝä=¬ è‹‚½ÃÀü€Ž(LòG•˜$Htº%™ h\ Š!A:„ör–ßwìp–÷ÎÍ]ÛM†ºæÝø¸ñäÔt3m^ž–ªÑ— [Í“¬:¿œÝL§ÿŒ)öº/kuUÎÕÐP›»¡Vî,?ÌeƒŽ@ëÍQ@èÀÇu¼ZoW2§Œˆàáºøléoi½ÿúc_³ôAÌÚ?žt:S÷²P…oÊ =U¹öÛÕ¾ÒÕÊ<»k…f€•ª»·½ö¢Ã`V‹_¸è¸kÍþu¶]ÓmnIŒ¾jsöü<0|íĈ|Ëß(þOŽh¢Ù°MÐ#€ë˜:œm(}Rfc‰u™—«Ôe‡¸™”bðÏ~I¦˜M‰ôQ§‡×m7ôë¥þO$s9ø±Ð3]¨Š`@~>r· endstream endobj 2088 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Column_1_1RangeError.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2099 0 R /BBox [0 0 500 229.89] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2100 0 R >>/Font << /R8 2101 0 R>> >> /Length 271 /Filter /FlateDecode >> stream xœ•PËRÃ0 ¼ë+tB–íØÉ‘NáL“`:mZ¦NéƒÏGΣÓÏXZk¥]ë„L9Ÿ1®<¯¶`lá¦/âÖ _%DtÚ ƒÍ†Fƒ¦ `ˈbÉY_b“àa±Øî¯—ªZß©«ªÕG×n–çóñüØ|²w°JlðGß Jà™sr’¢(©`Q8Ï3a.Z¡Â«¬£,› þŸïà(xëÑø ÂÌ÷«ÞËßõæëº?v7ËÚemI29ÑhW˜#EÓ[¼Ïo,õ,^¨W´¤ŠÙrÞžë× þîÏi€†Ù‘ÓÞz†§ê4¹žá\õL"h„=I© q®¤ï_fv°}Òþƒ pÐ endstream endobj 2103 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2466 >> stream xœV{PSW¿!pϱei ’Õ&l[íÃj‚íV- ¶¢EÞ/ÑÈC’ á‘„$˜’“„ð ïGBµZÚŠ¨m×­}¸j­Ô™µ­uv·twæ\æúÇÞèÎìvvfÿØ™ûǹçœù¾ß÷;¿ïÁ"‹œ\$”¯O Šüÿ/S+YÔªê6¢EK®¥mA/˜@Álسê1K(>õ6?eO,Ö–=iöSÓ^Z»v]Œ¸´º¬¨ °"bóÆM¯FäWGüë$"VP^T ŠXÃ,d‚q©P ªØW$Ì—–G<ô‘((–,ûϽ[ûÿìÁ‰cJãÊv–WHV)H,*n%ˆ÷ˆâyb?±†H"^ ’‰"•x›È b‰Ä.b7ñ ñ.±—ØG¬$–3„”øˆõ k*ीú€ŸÙÕìùÀuW‚r‚¦IYbÀ,\—±–mÅ–ªuSœYß,àØvçr\è$3,r‡x¼ª×>‚àÙþ’wø´ÞUÉ3 v‚L«Ún< q5¸—{~Ç’š=»x7ÖœVU¤NSpk@³¥ÕÔ† §U‘ɧMÀ˜ ®Íh€ŒC‡Úìa ÝÅíwÙØBåqè›ÖÒ¬¨ U[•ª-HoÀe¤ÉÛØèA¯$14t+]›áÙ€Ÿ zà©"¿ÒÛkÍ1ðA0ÄÔ*cêau„à;ŒH¢ºYZ`[—c­“Üm–·æ!–ßÉsž¦V½¦çTØõûžYwÑA±4&ƒÿЛ“¤ʤj&ÞvFvZå¹|Ú i:]¼šáôÃ_…TŽå2P¿Y£Œf ¯~Ùbñ˜ ^õ? Çãëõ6=¬Â#]`›EÙnü b^ ¾5º”ö­Œ#®¦WÕM½ÖúÁe}uÃôñN=~&HMêétH‡4fµµ¢¥ÂZŽà›‰i1I¾Cßeñ/Uv”£nîQqúÎ‰ŠžœÞè ›mf&¢°ô6d7ôùßNç¬ï^yã“ WÏ•¼7Χ‰OÅŠ~äæN »OÏy‹7õñBð°f– ö±®.°q •ÊYƒ!i3Xô¼ý[„E¢µVçGÒ`2X ðCú#r‹7oþìDÿ쯶M*‘×I÷ˆÂý ŸøøêÚÍúbï\`è;ÇÑ“™fm‹ñ Ä÷éÍ5àrƒ]ƒ2 ­H¬W*Õ¥Ò•ÁÃGGOòñMzœ1´+MY¶‚7ßOÿêø —ÛÍ›žŠ†sÝãm´sC¨Í\â*¼?ôümüâ-†;jß85J•^`…¶}†ÓšÕ)ú¥ãy] ®ß‘_ÑUÙßßÓÝÛh´›ù†Vc j†n_ïäY·(…·Ðë÷U×å ¤•Ê"TÌÐ?“{ifªgö/Ì‘jí¬œZ9ŠzìcÌy›ƒ„zµLU¦,=&C°P<:Ío¦‹3xÙ|TÉ^q²ððr|ÀI– JWÉ ý4N¿ƒ»ÜCÎ3×IoV¯Á¦CJ¤RIËJô:Uumå1{¸¢¯Îah¬Öº˜”t:š¼&è¤)Z¹j‡³ïÑχÓ$-Ì×h‹¸ ¼Ú Dj«£¹ÉÑÞÿ‰ŸøžŽhÔ™õHËEÕÚúbô3ö%4ĸΦžÅ9Yqå‰FƃÁß?¾zkÜ¡ØøMÒQgM/âötõ;³%3½² ŸŸ‘+Þ…Þ€4çæÌ>5éç¹ûº<Þù‡v?Ç"ã,jŽâdmËíA‰(oH4W=¡õ.C|‰<ö™f¨Ì'?Г†2Pvµ (;¿4ECš÷åkütm'yô ¼ŽÓvcôø%t õ‹¯ÂG¹þ¬ô°~aäy™‘'ý£Ïù.ïD¯C#êä¹$vM“è}㹃ïŧ•æHø’œcÆ7`ôÑoé+¤a»Fëï'ˆ¶¨ÛÐ5ˆ¯à¿ViÑþdŸ°zXž«X~ÝíaSÅT8çÄ[@†”–ÊfiK¸Ä&¶Jܰ#62~Pp¥˜/)—UªÔ õ\™T§F5HÚ¦>Y“&)FG`êõÜû×n žœåM wøÐºœ=µ£‘æ4…§˜Ë[‘ uŒ¹[ƺ ftM:‡Ý#ç:‡†ô}J¤µ~ËÕÞÐ}€àݑڂýÛÓA›‡fúZ“ïó­øGμgìôð`ÐÅë*lËA‡`’¸ðÀÞüÏîû;ÃÖâqÖâ"®Å,öÒ ]¥Ò&¥óqS8øèúM×— ¦¶ n@ª"¿>f«3½ý¨dÕi¶ë˜’åíoYUvÉÊçÍ¸Ž¾„_#dQw8ž¶–IüÔ…¼õ²ƒU¼’BÝZF`x˜ñ}a1ôÆâë +Â>w-Ç'ùŽUÛê7‚A½…ŽLR€“Ýl7Ù·ÿaÝUÃŽ:Í®ö\ÚÈ)­¨‹z¥ooïÐPE¯ˆÿÐ.ë/ ìžåXí$ã-j›ñ<¤îzsºüˆ:–é\M Íd7µ è³)™Ö%Æ¥ro= Yêb …ϲî,àxÿÇf@•9Ét“¼Í8 ñ@æ[só@ßtÇ‚3½…q|Z ‰u’_.N„”.ÓD­À;íë<ƒà\giŸ.†v¿Ž¹$v‰ù¨UíD'¸8àÇ_|kºd ¯z®È‚rPimÔx™ER™Y$Õ?‹ØÍ"ƒ­ò,>Ý IµÊdägPÙØ„Ù¬[˜ÍÆ«¨\ް¬ì¨h lhx°ß;,òi:ð¿öB”íTª ç´“Ý~|Â|³1ø7ñOùöD endstream endobj 2109 0 obj << /Length 1769 /Filter /FlateDecode >> stream xÚÍXÝÓ8ï_qJ%êµ8‰«ã$n—E !l¥{ÒÔÛFj“’–½¿þÆ»ùhØcA'ñÒ&öx>3ž %\x[ê¿W3ªáÿÏÕìâ:^BdÞêÖcA@â(ñ")H$™·Úx|Ì,„ˆü)GNÑG*h5±›FÇ9ôOyðTGù>¯ËroS ßC¥yÞ (Z\Ø7l1ØD#k›À.WHdž'hÂ}“7‚úÏðõX)¡¯VªÆµf§˜0¿¶  ¶°óä:oê—UUVËù"Ìiä&§ªRM«#"üÂòq ›:[ñé¶*¸ßËh0Ò$.%RH4k€õ‘ƒþ—Ü¥ ®j[=650!@Ë0ôŸXÿ*›=ÊÕ*ûPU–k7dø~€’”n•®cÝ>@ñ¥‹@šÀŸiØ+ÉÄå+Õ¤Ñ ¢ôJÕY•cH¾£ÎÊ_®ÎŽ+ëj—›#ÒWÚ¿CEïòý7× ÿǪç·nÝ´µ²"þ”åÖH4ß÷l‘¹tsqçj¨åSÖξ6Í7íÁ:ßéâdÜØÂÖÀ0ð hä§ÇcU-ó´1«qW‰ ®õ]¦—[õsY MНÎû <€ÒàÎ"Â;®€p2_„\ú×}ÉèòôpÜ[ê¼XYkvf[€ëjûTÞ"‡¾ÛÌzßmµŽ”ÑŒw<†fŠ“‚†Þð¾úÜæÎ…§£]ªÙ¨tšS,SSë:§ê"Ê´‡É ™ÒèXk` ­W5^ôêÀDM­‰¬Ö¶†40ò×V>B$åA_”èm³ûIn]¥ÙW¬†¸ìxškÂINP2€³]ת™²{äF @"j©¼Kí€Çãàp]+ö÷¸WbÄQ(üYw£gƘ˞嘴z·q"óâØ6¸–VˆÌ{»[;Æ÷inóór1< åÓw•DUwy=.ÞH^lÕ°à­íû) rõ¦—ÿümš}+oGÛÖ²QIÔ|ÇÝ@íµÐïÔ w½ºî ªÖVXðÎÓÓ1XNƒ6` {Üš[iäѳÁCCC€i €‹™ï:› òo ã› ïx}нoôœÁ%\”] t?†tà7Î ÉQšÆèœô0Å£Ì0­:îùD'Ïc"’Äq?«)ñ1‘Ý@pÖ}{z˜9KL+ üì¾xÔo»‚ >k»4‰M%1l»ôΠí Ùµ]æ\‰Çm—Þèª@dÛ.M†m—^›h»zŽüÚ®I˜Û/ha8» ;#Ìye(=¨FßeÐ>8ÑÉO½ é|¸gˆ£ìáá>"‹NÃýÿÀDj& xä&@ŽEfÐ2sÃiŠap€I–‰ˆ„ApÊÏíÄ× ÉaXf?*v8‚Ii9ûbZ›¢¬›ü,£mÝB[x?Y¿³-ºf…PJX"~À¬‰°(Œ?ËÄ`#¤ƒŸÃF”«Š·ÙoƒãÇäNƒ£/8¿ m?þ®C/š!B° Ø)Ý?Ø201Ôk¢ë׫›åÒV¶uY«·åfrªw-„îÎõ±(›‡Àõh·Làxð‡y|¸ÏÄy`‚eD0ù˜ïœî+lDx¬GæîSO¢¿ŽÙè•*TóÖf8â®æ’êÈ›—·n‚Õ_@õ?§\Ø•xIÅ’I÷ጟ8³”Þºw_yÍ>/Font << /R8 2117 0 R>> >> /Length 270 /Filter /FlateDecode >> stream xœ•PËNÃ@ ¼û+|&Þ—79ÎÐH|@Ô&­š¤¥EÀßãmÒÒÑJë×x<ö3bÌÒ›lÝÁã›`s„ 8Ÿ‹8™ºÃ§J-“o°ZÃØÈȖ؇€Éq¬:¸+Ëõæt,ŠrØ}v}Q¼ }3ÕÏ~u_maQÁ+˜@–à—Ž}Ä×ϲäìFÇ+Äx§áÜO€\ :5êlG£v/ÿ)ž Qk,…¹ögýßõjÚ ýUq¢õ†<_”^ÂI/{‰$á¬qæ_a-Ø(BÖ¦¡ä,z<¢ÕC³u7†s²’kórž˜êäËy"ÕmNN0w¢ŒQ!Æ…Œ¼½ÍÌ9ZX?覿Òtš endstream endobj 2119 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2517 >> stream xœVyTSWwo[J[h”Œ6aÚj§jÝZ+ÔÖeµ[ÙWAQd‘$lBH0 $7 aÉBXÂ"‹ˆ¸+.ˆÚvlíâ¨]¨çŒm­³ÔNϹÏ^þ˜‡sfæÌ9óÇœóþxï¾{î÷û~÷ûý¾¦üý(š¦âó$Ù%¯ÄÊ$»¥sßKØ4»Ð}އˆô—°‡ø¬(€B<àß¹ðñ?áSÏ`ëS¸ìiÊŸ¦×nKrþ.!6éå¥K—EÈ Åy9¹¥¡«W®z-4KúÏ?¡‘Ù%y9ÒÐÅÜKYv¬P’--}7O’%/ }746;G^°»øß×þuÚÿw>EQ󤲈¨âÍ%¥ò Åžì}9yñ’¤7(ê=jõ"C-¦â¨—¨x*J¤R¨T*’ÚLm¡¶RïPk¨íÔ»Tµ€šÏ±DùSrê<ý*}Äïe¿Z¿y Þ´ÿ2ÿÓü·øvþÏL xT‚iHÃC­{¬[Ù:äaè/fpä ¯}Îu3)V¥ B< Nïr!xº§àm1ÉÆwª•©uP…÷ºAªMã4†Xîe^Ü´³ rÛÑm ³$Uäi’TÂJÐhm6;ô6«RÅÄ L;4U)u ¨õ²«½tÿ]Ür—‡­ì.™¿j)‘…ß¿„ƒpÐýŸ±‡¬¸GžWÉ3ÓKÉs„ÉØºq゙ñ2±lRy}8qõSQàÃêcìOã´CÞCŠMÔ`9¿ŒÑ—)«ËQ RYU¶Ô¶”¦tŽÂ ¶ÇGmÏ^ˆ$»°,Äi˜ÿ·_^)Ú¹U†„Ñ(γk,þtÁ]„ý!~û{ ñ¢©É²½ã"ß~·¬ã9ôD‚%Zx9èÆ –ߙ첉ڙæj»éˆWàŠüÑníÄüÄ·Ø/ÂOGýiI\fI|¦ø&Ð[Êr«â+…JÐln@v‡µéâÙ\€5Úz|/gGO|~zyLœLüR7F¤ÇŽˆYŒ<øòÜúú 7±‰‚Å2v£Õ ŠY+É“Vjtú9$uf£ÕÏ‘óÌÚ]Ó§Çz&‡DUy‘²FŽ„ûT}ï‹ñáÁœ .±Aú“¼y†£ïŒÀÀ¤ZtM¦“ß'«+ÁÕ:§¥@R Ì Vk åÕ÷îžãÛd±œ4¶¨ÍiØÀ›§’?;t¸µ¯Otô(? ÔÏxFg[„¿úÄ«nÎÃ;ÝL*o-8FžÅÉ!_『¾~÷Eè&«U`Àh×#5ª®–ôÕŠªòÎUwËX_1¨kå Þíj0C7Ù£j¨µj0ýy1„0$\’¥Õå× Ux‘H56Wcƒ«¥S|?õ- ­×[ H'D ]m¾ñ‘¥3ìÍÊ8Éãk­QÖšôu:ñÒOnзԶ »µ»Z¸xYjÐ[Û¦iªÄ 1…8 Í&›Ö›Òº©²ôÝÊUqY…šã½†«E£¢^‰`IEEqþ`ñÑN\À‹.ˆ9a.sùö+GÈí§,¿Ÿ>x“Ç>W Ò¢rJb\ý¿pýËQ—6Û.n7IÛ+»°·³£ûbÔɵ©Éå9Yâ”LÙ´Áíå˜w|¼upTÔ×Ýᘆsç~Œ¥> Fiv¤mØ%݆bÑ®~é”bLç3^…ø sàCm±O2º³3 ¥ tEv^zVa$ ‡Dôé ~¸1© ¹…— ·†]AWPÌõüUÊÏûðn/ýW}WçÈ{Š+¿éޱ.—VÚ.j-rjÛ8··wfö¾T˜Q$.Ê8cZÃ÷E®1ÆZMä\p¹A¸Uã@7 ¾†Á£K™ÂïÄù‡m^Ú{+oöyyl>"8¼”!µµ¼QÞRd—ÙŠ\¾)rEtoöµ|qQIYyµ¦®VX&×kP%’;4åIEùhL¼™yÿÆ­Þ‰IÑØ`›¡«éG6ÕACH‚¥¤µ"ÏÐH_Óh]‡Ñ‚¡q÷`ß×=‚Π~C·Ú‰nö7‚aÝ-ýYïUåÄlØKø«cûu7»ÇO‰mø{Á´wäÄ`o¥¤UÔ‘ëÈ@{`œ,wçö¬ïÏ •cëÒƒ [^Ÿ™üqë<¬u3oÛtÍsÖ‚A­•¬ˆç«@“ÙiqšíHØóÈÚTÀ¸©F»¥ƒý®––ʤ]rï@WWi—TüÈÅÙ?Oи‘3¼äAx}•Óô9d›ÎÎà:+» {=^ÏŸ½ÂèÉz~ÓéÎ6 ,ðülcZS£];çtÇÁ#Œô_fxó°ÆÍD[5vÓEÈÞµ–då>M$×h€Ãì47!賫¹NSL jõöZø°ƒƒ2Iß™ÁÑsK°ØÍ$›•Ó8Ä#Yšì»¶ x¬+7JL$À«ÕÄÍ]©Ä!u«‘ëy60pÔ×~Á©öÂ01ÉÆz]ŒžÛ$sƒ"Ë~›Æ qÀï½¼>&¹(&A¤˜ÊëK@¨°*l¼Á‰Üè87:8z›•ibÒŒqUêx‰Ôx>项Yo‰€¤V0g íTˆÊõ…Zy†|BBð=]{]“±^XÓ©ï@ÔÓm?o†ÄS¦LöšáuCá!¡d„¼ÈèÚkÛCˆºZÎÖs[Œà¬Á­8ô N˜q3œÚ×á×f×ñÝÌìnìÄ<|®cÒÑ|ÎÎÉhPÃ}š1þóxx!›)ï—,îìí,ꕈ ñÿ¯µ@u ›hÇ-ÌØã_?1f ¸]ð$Eý| endstream endobj 2136 0 obj << /Length 1192 /Filter /FlateDecode >> stream xÚ½W]oÛ6}÷¯ : €‰!)Q”‚eËWS E׸ëCR ²ÄØôáÚR“ì×÷R$mI‘ÓtöbÉäåå¹÷ž{H´D]Îþ˜ÏŽ.Ž"‡¡æwˆú>a„˜ã0¦hž¡‡ù®ÇDäœÉv«_Ïê´-eÕ$M^W0ÄC9‚»_æogçóÙ×… ¢=‡Ç„£´œÝ|!(ƒÉ·ˆ`?ŽÐ}gZ"?SªèzöçŒôQ22…’ Ì|®QÎWRcËFØ`èÎõ‰SoôŸf•›(Ò}@÷.åNbþ,e%7.%NÒÈÌxØÔ¥].ûN‹¢VKïój©‡o a…Üw¹°1 b ™Â<4â[ÆøÐêÆãP' endstream endobj 2121 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1ExtHDU.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2143 0 R /BBox [0 0 500 236.41] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2144 0 R >>/Font << /R8 2145 0 R>> >> /Length 560 /Filter /FlateDecode >> stream xœ”Ûn1†ïý¾¤\{|®P%ZªÂe`y€5iP)‚ÇgÆözÝ4›$ûæ÷Ìçã†K¡¸¤ùÎ{öæ“çË-“|É6L¥$/Ÿyϯ;4®¬p¼[°¼ÿrÑ}c·›1¥ù¬}Ç6|[úk±¬“¼g`tÑë¢N–FfÇ#å¢0Ô\áèÏ|v 9€ÑqP~‡¼ÅÞK 2TÚ¤ -h3 ¶2;V:…‹EOÇuÂJœ7.¸ÞÁýØß/pµßòŽ_MƒSCØÊ†¢×EkIº9ûˆy䚺žŽ Ò «÷w÷_×Ó¤¸<VC¬8YgÆìiõ€ Œðp²’VXg8nÔsäwÛùju„›6ÛB=êÁða8 £ÊiäÅ£"tÀ–g¬pPÂÛø÷zõý,X7Ðeœ$3c24ràÕ!‚0ú<^GA;¸w¿~üþù?À·Â‚«„,¨ÑGAíR'LľD/3åt´T%Mp¿™ E—;Næ1¦œ3‚"tNØ62ÍÛ°x=ÕÅè)¿{µKy5KeeÓ¥F¦y/÷uñt©r°²è‰yûá6Ã&¬¹Vö­› QÞ|™É;Æ”S§CH+È1hFXÌÜBk›å¡Ýõ¡.ûk*•­Çª¦¼ŽÕšïYkHO[iMJc¢ š7cß“\­O­rýû*œ× endstream endobj 2147 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 3242 >> stream xœV{TSך?1äì­RÛ‘%UnµöaëëÖ*½­¢`Õú¨‚¼- Š<$áž I€D’„g„7‚DÄg¹-ŠÚ‡WëUë•¶S;zufÊmW¿ÃÚ̬9Ñκ³ÖÌ_³Öùãœýµ÷·¿ß÷ý~?ã5ƒÞ{“å Yo§É÷+<߯s ÜÂÜ"!¡Š©†© "NêÍo!ñöj]øÜsáÖ?ýyÈyñÖn·¿þÚ²eo¦¥çg&'&eû­^¹ê-¿ø|¿ß"~A Yɉ ¿¥üKNBjZºcÝŒÓÂW…MBêU*zN%úœý+GÏ£,ÄÑøÌÌù3Î ˜ežõŸ³ýg?œýØ{‰w wXçL"-q‚û}‹`*¬YcÕÙ’¾¦îšo.KNk¶Ó¥šÂh£$¢šQt®½Ûn­¯¨“†™"p°'–ÙÓ«2ˆZB2 JÂL8ªÑtØÄ€À ˜:Es¸2Ò‰?|3A¦yä`#­…uÄá:{ªÍÞGð¹ŽÔm2š€Œh £Ê° :PT…Ön:‡!=ŠÛøQjÁö-Ò»¨Ôž—¬ WI P•µÆ\K°³F%£fdÚ­-Š,Ãs¦Vn²e.ˆ&Á0ù ù>§æ‹' µ:sžÞLEÿ2>ÙïÑmr£uà˜ÛÕrŠœ%#C‡»å]éöFëZm­Øç§£m÷ð‹àµê" Ò>¢èâ'ä´Þ­Â>/dwÅï|‘„æ<}8?¾dÁQê— †¼ ™ÛÊ+Í#f_ŸŸ@h½±úEònÄþe&ÌEçäV;Ý þ¬\œ˜Î_µŒJ釯À\˜ûøïŠGôw²¢4ñÄø2ºˆ²1[êÊ‘¥^'Æ;}冔¿¯z„ûû€¯·pŠáÂÅÅ å°úœBM.)&*«ª"ª1²zñ'ëRwîݼ3a¡30 ]Ñ ú÷Ó÷.Ió›6m•¯#’$¤%npï¹Ô¼0l{^¾0šspHê:ìHkþÀ“=•ƒ\çâæ\š{k”ßÍ÷©« r1𨳯fú Ã*ä“—ân× /€Ù?‚¼ /lþáõج½±²ÛHo ÍI*Ú[ )D5æJb#øX•nŸl: ‘0­n·ûœ‚å\¯¸gÌ}úësèL©O¸/ØÝ#õ4í÷í€àçIްa °€É/}WÆ®ü@žŠ;!ŸnùŠ ÜtÁ´=½[Z]òü›4š†`î3q¯­zøûÏ “ÏJXC(Cè¬øµïì‹PìѼEð æø¹tjÿ6)äÁ{â46ú÷1™t± §³‹­&39ŽÀr4a¬ÓÔùãvPe³šwÔšµFL—C&kî)/w ø<-ê†Õø([‹EÓÎ<ö¦Á^d ôdf ,RÁyÜšßñs³®Eð— aÅ<(u°[-…õÆq Jä>שּׁ1èj¥•ÝPGp‡£ÑÙ—Ó’¼?M)ûd°„(Õ!ù|yëù!±|´¦0VF­È®×ïÐòJtmšnMûܯ€ÿõù|½¿„/ÄG`‘HËJ ez¢':‹¶"»:»"‹àwƒÃC\¾–]LéÏmÌ"©’ØÃiï' NfK éÊ:¶ÊVnáò‰¨%vc»A}Wç‘–w®^¼~>«ïC·Œ2Ÿ¥5ª:H—äDo×é =)«Ú=Pª‡¸_‡.`9¿'©HøUL«óÙ;†êËLßF‡?LßD×¾,ìzäüqäœô乫]_’1r>o0±GÑqtngK Q¤dõ¹ùE9DG ­ùU1Ž}Õ1<öÑt1}…ƽÖ0¶[öùûO`ùžÀ ýCýb‘år­ýB9ž½ºQÎÛ%¸>!„j.L¼0k3Z Ò=kåÉŠm©ÞS’2³ÑjÄ¢Ÿ°k{âÆÏ vŒöI‹j•…ÅJ"9¤êº*ƒã?¡g¬zvÜ-‚_'alRØ<z›Ù€JÝtC<ŒÑpdz»Xûž§¡Þfô[„ÛÌ7m¶ÛU¸™öæ¡Ûz›Î¼Ó0:aÿWdzóïâ¡”‹ÜÜÁŸ'àý !—u^l`£,¥Õ¦3ÓÕèJ™]G"1Õ ’fP«µéÊTœàƒ‡ Ëà.]ªFgŒõjs4¦èݳ7Ž7tuIOž­CåÆó-îÚë%O»rjF‹Ð¤‡ËÏ7³þu½ñkOæ–[uöûV>¿óyèÛív-OËÜnÝ…à‹œoÇܱûðê=¾ã¸]Ÿ‹ ÔƒŠàìÒú„#2jèVu(ÝqÍ» ~scÔŽìæÜŽŽÖ–¶rS…©Jf¬1U“*Üåj:×¥•îBôÍ]ùÅq Ê\u2Iá›oÇHìå‘­£—¥>uaM¹'#­öþA>DWܹA›£ÉT§—䜔v줬™/ ÂÌø™RýÁ!€Þyð‘ƒM%¹ ©#ôwá{¼›»º}‰ƒ®V¡£MOÔD£Qf¦ôšü¢Ü»¯ª½¸ÎXž×[ÚÀÓ™£®²ÇŒô€ªõ†¢Þ}è_ÊRy¼®4¥L¢‚—H¡­¨«ª¬«o•Ý…ç¤~åz‹”JH~é‘ãSD]Üì«‚¯& ÷Ÿ…ðæÔ{bƒ%^^]$Q”ˆ Q¥ÙJª ª)Þ/›n@©)÷ÀwfÀbxaÃÃWvíIŠÌ•†y?ãuÕåµJ]©m[H ¦Âèíþá1mR*78Q·àèm!÷¬GoNÌ &xÅŽoýüéõ{î:]‚MV©¬V4´IgksûØæ3k£"rãe‘±i[È1ß]ÂSC ½niW{³³gü)Ú_ÂÈ-àÞ€uâè qŠí$˜Äu+.ä–ºŒW0\fK®éº3]r÷G­á$’ìËOHÞŸDü1•ÞXèo·Æ–Ò;ð†¸öαËä2éH«{ ?#Ç—\°ß)ø;?¯Wøy¥Ïó;ÞÜ3ØV§S4I2ìºFž›šÚݱîOÉeÄ”$šþˆýÿ•~ÁtÚ ×¨s «¶–ÜÂðÌAyS\€«G!åx…S༅·»œB.…ó_rˆÚš[¥¬öͰ¥Ud¼|cЊ _¤È2²rr5Ú²#’¥^K ˆ²V;œž‘Bá°Û±oÝé•ö6ºÈ ¹²ïÄÆr*®ô µdÕÒÒ×ßUí.k6ZÈrôvõ9ýä<é6´«]˜–N¿(>VzGÿ1ÁúŠ÷l8HE«ƒ»GÚkCgeðP<îì?ÝÛY o6'ÕÆ8$-é£ñ×Kyjã«uqrîÉ·'æû|ÅË¥ÎÁn«(­1ÝÄ舕®Ø+R¡j³Ýb7Ûˆ¤ã©X¨qc±nKöù¼¦VŠÓ³³ÓmJgO[[wwv›â™.rO†PÅ«bD³Ø¿¼Ènâ© úÄ«\kAàVëEÓ—Y=]/ê`ÛAÐÚÈ‚?™.cMkŠuk=xÊØ¼‹áZxI‡ÿN…N½.¦ª<ö¶Á‘kY 8"[ô òôèí©$ˆDu¤ŸÉw•«n>eÆo<ÌèÎCwãÌkˆn¼çëAp«ÿËãÒŽášÓä6†zdù¥¶þ^ ~ZÁ¿N[çÖÁî°jm¦1Ì=BG,…‡´A¼7©Dµf»™Ÿ0—MÍ›“ d U«wá-f3qßQÁw°ÃóxH¦ƒ0Öš†0ô#b©¶UUm?ÙØOðH[Òf•#c°Nâi¸l !ê#o“*PÏIWÓ‚/4¥¯“ÑDdÜ­/Ý£çJs  Ëá ­ƒ—@<‚Y/­ß‘±'Tš!¹+”Äô¢uÛñ-Þ‡ñŽ8ÌãˆíÏqgMa´ŒV"cH‘z/áojå/«!˜A(¸B!,äbÅòÌÌÊ£™Ý½=½r¥^ÿkmw™SqÅÓ+i£H¸•´[ô3¢ããÍ»ûË9/æVB£¨ M¯§h ‚qºŸŽS>¨®çÂlSÏκ?{Ðêí}·Üû9†ù/Äj¦ƒ endstream endobj 2175 0 obj << /Length 1669 /Filter /FlateDecode >> stream xÚíZKsÛ6¾ëWðä!g"‚ ¾ýv zwôžO~žMž^…Ô‹"âÍn=D`QìEœ‚ˆ#o¶ðÞú˜SÌbÿ"KªÊü{YÌ×K‘×I¹¢Œ}ïg/&Ïf“¿&Hn=ÔZ©7_NÞ¾‡ÞB¾|áA@xìÝkÑ¥GB)ŠÔÄÌ»žü>VËþ§Öš2©5Œ8ÓZ3 âPnBÀ„­?¦e0 ¡_¯“Ì(=/Vþg÷”WµAÔ_Ïë¢Ôº»=ž^aØrËc€9ñ¦N­[ÞaL;“¼·SJ£îÆæ½òDyg]òÚHF‘Qdëe¾µ†|s6>q>8ñ¤P[èÇkkašß™39õU²|L#û7E‘™—ó¤×"¯Ò:ý`ꋃ„\©ý¤S–~ѤÖÑf»¶./vÃÄ”CÀÃÐL.E½.€üÜ„%1¥¸U±¥Èç Յ“ôz= †~rÈ¿™èûÈD^{Oÿ_­Ä<}! 3 çYˆäÖQàplàS`C'ÛΫ7gãç™ÆFš×þÙ¯ùB('ÒÁÝ$Å!±lŒþVbÙLáàa’~Ë•Ã1~™¬ŽŽ1Œq¬cüõÂY°ËAÕéRÚçT©“4×DÔ5¶TGæÙQá ˜ûšÐŠt1ìX%åJÄîìS‚]hx³47/%ý’û:#ÍÞ*#?éadY™HeÒ¼ÖšWB!ú~ÚgâÈxC®»ÍØÿ†•»•2ÙÎ å…Û²Xš§EzÛ@ÂÒKQÚœT:š¿\þ± ÈI¾p[Aœ‰ ¦¥¿yXeL.§U½W2ÞÚHFØAíL‘‰Z(ˆÈNr[äÕc§Èkö0¡RuþPì"£É ÒüDnâW«Æ£ÈOR…MVHßšq'ê×…Rã¾JÿVŸbý²ÓoØÅJñªÕ<×L»¼6áŠ[ËÒVÙ.A—"YtôÞb§ tÝ ¸ÜIœ¬ûÑœ6êå´º(–«RT•XHŸ®KÉÌ’NêöéRƒÎœz U4^W†ÌÍȪTî`»é œ“çZéú!|\G)v\¯P¥—=‰Ñ]¸¯ zÛ!(UÞ$á^•Ý᳿ ×.?XíMF+¥MF+‡çæºhŠ£ĘtcÙÏöPÚÙN!ˆ8}œd‘Dù7˜ëßi$|w$œŸëÐp4o h´õâ€R<š4%:Éê[X“ì<ö7šg:ŒD{5&{RC@?Bk›ëo‚Xݺš„0»'6Ù™ÌXØ»nh÷ÛQéþ>˜ìg±ð#zá,°«u<Є¨Ä> stream xÚÝ[ioÛHý®_Ñß&Á"dßÇ"Àñ‘È5¶sÙt´+K$Ï$ÿ~_5E¥X1eKY#dÉêîêªêzUì¶PÊ2ÎdL[&¹ ¤ä&0i k™òŠÇLb±ž—ˆÀwÄl™>QŽ D $VhŒ6k9Sœ3áxêB24 Õ ‚'Ê0á5.•Bo>pê×3µp$T¤’’Fõè\%>§Z& ̳A ‰E¢S2IìS ÌŠk¦´¢΃¼a¤ì)†Æ’H.0•¦À=ħ9€LÑ$ &4“pè­™”¨‚IV¦¹‡"¦­%ñ .@yÙEzç4'°hïH8ÌÄÔ 43Ò` aAš0Ì(-i" <†–`ÒŠ„ƒÑž„ 0–‘Z‚4Æ 3¡4XA pËÚÔ@À”‚“D¸ç¡)„a–C@P–YA|B8P!QžY#é)„¶.šøäÂSΜp‰O0'Ô¦$˜”üÌ)‘úÅ-O¥˜Ó<ªAé¤%*õ¦ sÖÀÔBƒÏ“%üÂsE½hÊ&Ê2¯áƒR@'Þ¥{R2xNº§ÈK©?(*$§Ò° Ó¥eÁ$KÀ“‚³dè'$g20X4*à#0–¤¹axÁ5O$<”Cç¤^ºk\L«U4¸HŸfC}A4bpdk‘ZyI*€QAÚÔ ÞãÐЦ fº p‘Ø ëF˜F#\Ô ` @ !¹ ½Ç{ù;ÁÊ–Xç‡,ÿðñOòÙÌ¡5›ÁóØèb8üÔûý÷¸•Éf¼À}0ÍØãÇ,?€A`Ö¦Ù&k»ùÌB+¥¹€æÐ\ÀhÆó'°4Ñ\À|?]a¨üÃëþbÙ õüœVtÛ>|3—GqÆNXþfï€åÇñëŒ]ŠxüíKăâ,öò]ˆG³)ÅNí{ùaœŽ/&eœ6q&Ý{«Añdü•“% ò*&hXäçŒ;£Ñ½4QäIAˆËñ!]uQÆ {ðôÍ öôóx:›–“Á— ™t!Ô$³Áx´WÌ"{°÷oÉ¥“ìkí׿qþø^Ž«›X޳!v‡Åtúª8mïcŒ¾7þúí,Žpkçbö™î<\TÑþ×ÙÓ£Fèå¯ß¼d¢}ú¤˜ÆdçüÙ›½?ßþëxp§ÇçŨñ€½ØÌ&\Hºi:¥Ç`L¦³ÝÏÅa¦—¿(æðÑ^þ~PÍ>':ÒêâÇZ—,€H•Œø«ÔGs¿á[ýшÍ_Û߶ŸvTúuøÒóöÛŒ¦(|_yâ]ð Ø•ãj0:c˜Ähg4´7zùÑE–@j‹Š^TY£B²Öj?IÎy!$@L_¯ ÀÁ°8›"¤Ã¦Ó’\·aòâ˳88ûŒKg±¢cóŒÚöòç³b8(wFgphÿhÏß!n€ïå`:…ìÉ€<ü0ï…^a1ZeòÝ|??ÈŸçoòüÈ˼Ç£¼Êc^çƒ|˜Ÿç£|œÉ'ù4Ÿåù_ùßùׇÍLÃHù„k–ß‚^Òjº¢ºƒÑá~ãI'i%òOù3Œ»{"Ò-^Ä„a\0b@ÌLj)dÚºL;¾8ŽXþt|dJt™ÊÁóã£Ó¢ôÁEbPyM•!­±ýhêòªÄ)ä›p5äËò]2Dîïña‘¹Átæ…ëÊy V7n%`a¤+ݸ%IÝm…[¨ŒË®’°3B¸{€™)?7wÃLg¿ÇL§;a&ò ùf:9ÇL§~YÌüããÎîÎû0ÓÛ­bæ?®›î,#æ:xÉÐ2áóvr•Zï#R¾Êß]ÁÉe”l0r½Û">rŸ¢Ò­ðñÕø‚Ù»bxO‹º¨Ê’W•/룗%êZ«m¨KÎm´îÀEgÖÀÅEæ°3T ¹W£èµÜ+Qô:n±éÕJ7néeF/x¶Â½E¯ã¾G(š^‰»¡hPߣh·GQæ(ø&QTÞŒ¢ò§¡èþÛûo÷~Œ¢ô6íç è"O—ªó mpq½ªs‹8ºJ±WqÔßGýqôp EÏ®­6—TpµM$µç·DÒÃbt÷'“1 ̲´u%uŒ!hÔ™Nx£¥3FÖµç²Ï7¤RˆŒÞŸ·@*¥É®[DÒ ×@Ò ×AÒë¸W#éµÜ+‘ô:n¥Ef¹èÊ-|æœÜ ·ÔÈå|W å2£|gnžIëïîÒN’¿Û_ÁÃw¸KÛ ·Å]ÚI¸+æSýq÷çûï^Ý€»Â¯»b¸Ëçôºþ}[«aW(w{_7½*¬½Çùû.Ø›[B_¶ˆ¾ õ BË­Ð÷ýd<:k.IªÓB×¶T®°2h®¥è‡ÀC¿äµs*Ö[¨eUÈ4æqYË•Á]·Á´ÏÛ‚—˜oÕë¹WêµÜÒ ˜³«$Òø,„íp ‡D¸u€¯Ùž×wC>õý{[Úd¾5òI>G>)[Bµ„n‰¥m ×¾%æ•+m¯Ï ñËBé룽Ã7lžÒa†@)…þU%¬álýO‡ÆêË¿Í aaú&:-Qô]Þ~½ Ç«^%/n¼ÞÛRx•îW)¼“?$&p9Îߢ,î/ó9nœ$Æét©§_Š2^[+ë ¾u–\ ˜ÒI$ ]:­¥ðèðîw.47»ÂóÌPÚ|¦ BÚ  ½—¡‹@XåÏöÞ^¦¸Œp¼qÊ 6(è<ÏAyŽ_&‚̸†)ŸI£Ö³0¾eÙ¯£)B³¾”Ò†¨ê:âgƒ2K\†Na52C΄åk˼IskdS×P!“ÿÙ̘ôF(SÆ­£Æ*ƒL°Fù¬±t/´7ÜWu]TÒTfƒjä„kt¹¥-HDY…—™¶r™E¡cô¼*´Ò}äz…é.LTUPÞ°A™­Búj[™GvÎÕe!à¦(4—»@*€ŒX#ªt´uÅ­ ¾ ¾p…‹¥ÜdòÕnè°r=‰$EIŸqkJ‡;©x;n*9Âc:|›yÒ¦â¤ÕŸ.mÍø+â(I#×§õÀÊñº4…¢ÒÄY¡J:˜DÉ‹ÐeØdðÑ> stream xÚíZKsÛ6¾ëWðä!g" Ï,¦„‹a½ Û:«Ôp*UàxjŒîÄ:ŽÌ9ᆃØTgã’™ÿ0ÕÁÀ4É009˜œÈxÔÉ,¦PÉG=¼Ç¢‡Ì˜›™& ·’ß KN´P“‹ \rðÌ!µæë(¡¡õÎoѪxXjJå}XzÝ8ÐMë¸VBŒ©fHBõtÄ¡[õŸLq9Ü;¬ÕœÇô8D“ØÄS$‡hÀ§4h¹œ”Hþ´Z6n…’7®w8"åV>¸R1À"bšѳÉ2{ÅËÝI¥¯# Ë6öËßÍEi}€]åUá> B¼ó¨·|¿Y [–m°n´êñÙØr:öŠ‰Ø aHJ~XygÚ¤pˆ6ꀰ†Th…gi•îòÄ= mEáùÕöbá‹,½z|‰ª§YÙ¨l¸jI§—CVl<BÒÕ­Ï5.7èÀ"u๢*î‡þ“ß1-Ú:7–§Å†ˆ‹‰ …o#ʸÐ\ë1¡5Ñ1Û‚GRôwü{Lñú9£ ØÐù½Øõû%Þ{ýér]\ßí'Hñã³_w]¤fa!'/[7oÊ<¥Á—?°kmôr¸ûócÜßÕCÎèw«´.P†ÛrH¯ÆØŽ—sí,ÞŠÜ‹3ÕfUèS½·Ý p}y ¶ÞeÔ̇ŸÇ\º¨l^B¹G>[07n/‡Œ5žú™¬§{´'Ö®Y¡¢ÿŒ>6P´ZºŸÍcCÆjóÔ}ô·èo˹âá­ä•Ý»TØÅKmê6øzHQ­I²­yîÈ$ÔL×mÜLõº[.^—+é{]8ošÙ¦‚ÝA}¦Û¦ÑC×zg*–cˆX‹ õ:éöÚƒ¾ƒt‹Q¡Àèú>ÅèÑçä…„ 1›¨˜|YÄS/‹:lF_Í%kSUÜ+ïÖ©õWPc8Ͻ"ºÀaàóB³¯pî™n™Œ=pößР›^ÙÜ:ý³ÕŸ›79Ùja·sÉfƺÍËv|æ 󮼃¿ƒÁß+àÍ#~ÓüJGA?wÞù•NbˆPþö_¢&Z–ý™úyíÐÆËøSêgÆÌëÅ)Ä.·¢O©> stream xÚÍYKsÛ6¾ëWð”!g* ><jlj3M'­Õ^œ(–ØJ¤B‚±ýï»À‚”HQ²<ñ¸¾˜Ðb±øv÷Ãâaj-,j½Ÿü:›¼½ô¹‘8¨25pe]Oþ˜Pƒ’—«¦ú´˜ƒ1Ì<$®Ç󵂖27²?7s'´WíÏOb=¶/›"U.Ôy7£ù¾½téîD £Ð‚$}œç‹ëòÞXëfÊy`×f~ºöwÇåv™gFO…¥Z˜øü©G(­J8ÌN²Yó{²C›Jã å4¬Ò1?©+kõw¥Õß^2ߊ­ ZŸø^(¥jõ|òI±Vçv#+‡Sû'5Adç…™i™5WE&Ú÷¦ï4§ŒƒÎuÞ, p­) qcˆp“!5ào'¢¶¨jÈ8Ç$‡˜`@¹åz` û& •H2ä%b”¢¨‘— * (‚Ö{d0iêÅ„FðqI˜Ÿ+5¸”"•"{ DQêݽüpñ×ÊEEŒƒä²/¯f×½Q¢!‰`>'ÇÓIVs_gs©ý°(¹—ªÉ: CYÕì±F ¬Q"Í:ÕÐËæiä˜rJxôÙ‘‰[ÅŠ¤YÉ@¤IeÙR^uUâ[“W°)©[ØI‘%•‘þ–Ï`°R4·Lq,¡æ…æÎ,”dø^LÜXqøÀÙóðÁóÃåCLg'ðÁòÁ ø€žßçƒ-TW¿Šø{|P± Aß<—›üÞé¤ErŸ×¨®kMÊ}ôöÝdµ:í½s‹‘x®÷ì1×V8æúöÕ:Yˆn{ÇaÜM°iKôŽ¿Âƒ$9„Ê‹ /c©PÞyþ¾OcËù?p”7u,ôT*^&SÁ¹Â·Ú„HÒe®SÞ¨ˆúÊ\·øöôÒMU*{ßó OZÐD†¾ZÝY´IîkÏ´ÀÏ(#œÅOyŸoÿ{7 üÝ—ø(&^»+¿…¨Ùž[OfN WQãé§Äl§ÌÀ\ '”„g”Ÿ±¸Ý{ÝíÞ{~Ž/àû÷Ü‹R;ÿ°Pg[ì¹ÿÖòL endstream endobj 2267 0 obj << /Length 2352 /Filter /FlateDecode >> stream xÚµZÛŽã¸}ï¯0öa k./"%5’;·Y`ÉŽ' Ð;›Ý-Ä–¼’Ü—ýúT‘Ôͦäévò$Š"Éâ©Ã*Útv;£³_.^//~zÊYL¥Äly3cBHÅ3•H¢6[®g×óâàÍ&­*[|[¬ö[×i9TIEã Jæ_—¿^¼[^üqÁ`:c=@F*g«íÅõW:[ÃÇ_g”ˆ$ž=˜¦Û™¡)ÃŽ›Ùç‹\P7KJ¸Ä">š9+ßœeD¸Íœ ã„ÏŒR¼)òª.÷«º(a²<^ÙÇ[=¬. ãŸT-xH”Œ£ÖŒ÷æwJy]]^¾{¬?¼ýÒÎa´@x¥žc²{]Ι *ç]‡x ‰;þƒ—0Ûö®·> ›Ù.ðzW5T¯¿Üõ§÷œ¸EÐ ¸sàO¦óx=Ì&«-3AÖÌ^ÙZ« ’ÑáÁ²Š»®Ë; 'WêjŽ0LíÍ\Р(Wº²ïu°¯´kRöYíw»Í“-§ö‘gèát vÕ(µå­ÓÜß@ ®M”œ¾Y`æÄvmÐ8¼$HićI6kî¹N𝱵ÄGÑO‚uZ§¶Tê?öY©]“osNƒ'û¥¾3­¡Öcøž–Ú~n!Æ×Í]ì-Êôþ©Í¸ÈÙ¢\»IölFaÈ@75°O…¯Ä4þ€œtÈFñùiÅå¸âKÐ1uZñ“ä¤àËÎëý‚(ìû_vN{BðÚÉ €3 Þè&îÎ~ûM—>eÇņ'4Î^@ŒåŸcZp̤Cu€ãD 6Ü`·}‡D󉄩íH/·ºîDÅ"¹À©u (÷ 1¦3W£JV8Š@=ó•¶Åwÿ^^ýüé}±>i5^Km”úÝϹ ôÚø8 ò¢nXwsõÿ­p^¿Þ»¹zÊAyêle_8õõB9.¸%=ËŒ2 Â@k5áî­õ./K®?¸°À³)wÙê΢6ã®ÒÍÆ7ªÓ£)¹?)‚“X ¤@8!ø¤Í†špòý>_¹ù%Áe2ÀoƒKØÎ0(2\™ˆ=“®çQ°~SlöÛܶ“£tÒòÏ9Êãf¯—Xð+C‚EÛÓÂ.ª’£P0î…‚ñh(Ø…+³ŽÉh¬% c|(]|4Ô"ð®¨V©w:­ÿ•­ë;rEÊײn PYƒý5|É3×õ¯ACÁmƒ_‹{öÃáE-¼oæªNX¢óÖz•mÓM5>Ç·"¾`~GóOL NØ`y°UUöç|Ú“>Æ·Qƒ3"ŸJÁâI›;z²Ä„™X$È}‡(œ°oßù´Ï4 Ü“¶ÛAýéí8=Ú¶¡ùõ}VÖût3ز|8ó+];ÙKÝAcdý¡=' (……kçÞ5bÜu‡WéÜèi•öšãwÈ X8l œ&„†nkþŽ*—–à÷5& ,¨õƒçÿð«÷JB€wKضÉ+ )¹jiõID("ä$»iã\=~ËhàÍŒB&(07qO *á$JØK‡%¨4j8¬M.€.=@™£KÅMs ëqB~s߀É.¬ Œ)a FÏ_gƒMc| Î14€cù?¹ˆ`ëFY€w` g‚G&@î‰ØÂÄh §ÆimHå'É‹&åçHR-G\nû¿fÆs§íÙS0R†gã\$$œ÷Éôb —ŒáˆeFˆ7~3ADE?ãxáà~ôGo3&Ð<©ðÑ„ãæüÁ “»`PŠiŠ¡‹Þñ“y†ÔÒ+ÌBL©ä‡…œFò(xïÜåcÚµ]ÙZGBÏ…Ft!kœÊ¾™é`Á¦]6CÄ÷Îoq~XÆù —ÞC<¸ÛˆE¤dðÑÁg8»Í sÁ‚/­ñð%­VYæûçõaFv¼ÀF¤É¸'=ÿ½1d|ž'‹aI à¡<ï UŒD`Q®"B!éDøã^ô²‘½^4¹ ÝŠ¦•鯾aN¨7. ¬vÜßô.ªÌ£®ðì’FlÕé9|BZb¥“&¬²( Ÿ’JR§¹#T{®‰<$`.É´sAi,ðDë2þSqÐ1LŽã¾ƒ_µ÷¯~¾pN~öçÔ‘0Tê„XÕ'a¨¢6Äo}†îlƒ1!¾¯Jg4^[&4 >Þ¸^Eí3Èè$Ȥˆ…£;š!EÌmu6ܴ튃ö:Ç!ÁÏÌXÓÆ°%¤‰\ ¸/¬ÈÍÅ-F6æ´§ÜþôRç’Xca*÷y΂ ^>Ùw,º/¥¶Kåk›Þ›_xpÆxÜÒ„SØ´Û /c¬JDÔZD%ÁΆ,÷™5 |I+÷´U‘c(bà<ÓæÖ{BŒ› ·R[3¼° k×ËÎ àæQߥި¬Ô«b»…=Á5Ž*Èó ~ìýˆMç§%ä WkÀ$í¢½ßt¶Ým4^97×àY>}Ó]&ÿŒº½œ3ØÀƒ ö‚çÇæîhý½ ¯³|Òwù>y‡Ã(#’%Ïù[Ió§…™HØ·^œ¡‹~ѹ.ÓÖp…‹²–óÈ…HŸR÷scöÉ)—®&º¤ò’%ÍoC¼ûm¨1Çño Cÿ§[sÓ­s1Àÿ¯Üp5 endstream endobj 2182 0 obj << /Type /ObjStm /N 100 /First 1021 /Length 3195 /Filter /FlateDecode >> stream xÚÍ[]ݶ}ß_¡ÇöE—Ùဠ±ë&@ ± ´ ƒ’¨Â¨³xm ý÷=ûZ׎\r·@’{/E ‡óqΉ¤4„!’ÆD]àcÿF ä‚)w! 9fl(]È%—Ê@±¸”fº‚D¥èãfÏ]âJ—ü?}º„÷rè&\\²!&îãðC&W-á‡Òßaa`2Ã;Œfõg- ¬ìÏšAêï°säÁLüÙ(ƒ•èïˆ:äàfÑ÷Þw:F2÷·ÁLYûzaÄl*xŒ‹[(2 PÀgá8”X|~(0ªK2Í®+œéüDJ¶þ Bì_ÂÅBßúˆÍ¥À¤x ô¤ É×"Qƒ?†¨þ˜$»‘Å'KîÜð-‹›E|2ë;#BÌþ¢‚û÷i±(™ÿ^¢?%¼ØEQì ìapÞÒ¾ðm_­Geî3 à=þ˜ÇBˆ˜6‰W,]ê–AVÚçòðó¡GŠ}9ˆ¾x‹¹ÿø—)ùSø…0ÈŸ2`êa”}@áêÑ£«Ó‹ýÔ†Ó×××7ï®NÏßOïúç?½¾þçÕé››·K{ûC@‚/Oßž¾;=þú‡«Ó÷m~7ü•nj՜Fó6 ZÒ(‘0ìëáÑ£áô|8ýñæÅÍpz2ün~Soo?^_¿»}E¯èEÞ´ß_}u…P(ä‘‘OÔxL°"bt_@:‘Ÿ>«Ñuý±ÝþTçv§Uå2S ëjN%eÊcAürÄ_äÅßdz‰J0âqúë¨éƒ>‚m È¥ÊäèØCƒŽÙH £G2vŽ3ïq³Ú¯K¥6Ó¶JkV °ªÓ´„°¨³@9rd0:B¹/!ŒZäAò!4À›˜8qŒ“óˆ÷XQ«Â¡>€E]aÉ ø±ÔÙ”Âù8¥àFB-Ãôø‹ªÊ('4’ÜŒqÒ¥H\Û2·©1VKØü¨ ×yAÆ<Þ]GGU)Ý€„㘊íQà—C…¯fÍó¢aZ+/µ.)̡ҎÌA6æ~ ±Øá°H“À†c(ü¿y7.éeÈkT¤ l¾§€=6\Íò,e…Ë0ûÚÖ5ÎKiHqþp ·:Øàã„¿ñµÜ‰‡%„\Ú¥4ª5å5ç›’"EÍeI¥pK>rãYÔN‹ð(5ЈŸ Q `ÎV4'‰øŒÍ OTÝ>­²È5„ 麈­ah_CF)ÈùX¥É‰àoŠg¥ƒÓ€b#XÙ¥cZB] º¯V“ iPŽçXóªéX¥‹³mÔ*sZ¥³ a©«]øÍª¸ò¢S&˜ì´N(+§Vr;¶$HWV:HƒBСž¨ìÊlKRŸxuFÈ­Kàhfÿ>]{3äΧ F0í=Jƒ…ÇyÖ)–'™Ì–hÞªqئÿTú‰çQÌ0|?œþú·¿„d`˜c…4\¿óæå¯ æ>XˆF ¼l4Hr÷üËF“¡F~:÷Ó›ëwÝOAÕõüØSï5!´Î¼ƒœ? ¼øîƒ ÔÙ?`¾Ó³·7óó†=NÏž<N/ÚÏoë³úvuzŒ×¶ëw·Þ31Þwïöæý۹ݞ{+ý»?·åuýææç¡oxB‘²ŽDžÕ·x~˜ãy`w–[¼¸w•\ŸÞTºdtÒ&Ø&äM8¯­w“îÚ„¸ ç™_›’`r¹O I#`®ú‹mžP{×2—°¬aNªñ:§Úb´µéñ©A øAæûÔ€ì oß•„ó"u ÏÎA5N9#‹é\Z% tâ(ÎGÙÉ•u\Žb~ZƘöEüÊ\Ö$‹-X‚‘.Ì­—Ô¥Ù›MŠÌPì\@@ƒFí2tv8AìܦdpùÞÿ@¬:±»jÂTdžÄÂBâ§pmï_;La_ÓÃ4˜+Ð}H+r.ì>Ç4ׄ?™—ã-¡|Ò–ŽÊó®84°]k<϶Äi<Í) àLÐÓ¥ïÓ1꘽ëïUCÒ¹×À»,­´ IÊ–ÃÊ:'‘’ór°r¨Ò´Êv.£ŸØyÖ¼«)B+×5TÎÅæR0̤?x°C‰³•Ù€áò®¾°ÙDV*JfZA(âÞ¾ÀÚ%exñK6(ëâW ¯ÒIY.»ºb WaQGq(ušbóFt+¶0Û‘Íš{;ƒîª_]"J†Ò‘áÝ»,]†^ý ÉBÓ ŠFr,&eG^‡ PÒ¯¾þ'cѹ{éÝ1‘Zìôs<2@-9ñ³@þä!R+d–$÷*q¿*”ö¨tðÑŒäÖÈ  ù­É±ßsô«¡ŠgÇ^d}d0'gÈÐ u0#~a¡Pàúa¡ÍõOýf"4,€d¾wù!î…ôCê{…bʽ¹C¡£ýÚÏøý~⦒0ª˜ß½\¥_ÞÐê\]hG÷âãÁ[÷,¹ô²Ñ~ò³gŸíW„L.-z‰¿p´Ä‘øR½…dtê|ÙhöU²]:%3É¥sG¤4—5R0©ÝÑüO»*z'ŸvU>ô[~sW%}æ¬0éoïªè֪ЭU¡[$mM´5AÒÖI‡ÿy)É~ÀãÜâ·‚Òˆ½€Gç1>À @VÐ…bˆ3vývq¿-ë·ìÊÃÁ?a¢ž«Îp@ ð•í!Ò¦$æèE®ôIS@±ÓÞ-JÿŸ=(ðäû‰}ç6+àeÏ)ñ2sðA¢ùáÛ@‚*h`ô ÎI3JÑEÛúõíüúu¯Ñ¯jMXR(Ó:QZ4žñd­å”çF^ß‹Žp¼ût§8'ï@ïRü›××wjc›3(‰¥X(à|©%ƒ øã£žºÓžS´ëTà³£µÓ¡£ÁQ«ýÑÉ£ÅráÜšPW?[áÓg@ùÒ¹½fkˆ_d´S‡t©IÊèÿëÏýèKÜ endstream endobj 2289 0 obj << /Length 1939 /Filter /FlateDecode >> stream xÚÕZKsÛ6¾ëWðÔPÓÁƒàÃçÑd&é4V§'Ó¡%Èâ„"U’Šãß]<(R¦dÇ–;ÉŤ€åbw±Øï`J¸ô.=Š×#Нð|>={H/&I oºð˜$ c/L$ æMçÞ¹ÏÅx£Ø?ÍÓº6¯/ÊÙf¥Š&m²²€&ÒØéøÓôíèåtôïˆÁÔc…Œ$Tz³ÕèüõæÐùÌIì]iÑ•'eøaîþÑžÍÆÖpÈV.¤³•0NáhÊŽs"!¡@ýZò´Ì7«ÂŠuõ I‚0pb?wBø§§)åM}ròòkóû‹¿NNfæ{Ýû‘J:žaäÏÊ¢nLãYSeÅ¥yÿÉŒ‰®ýR IÜ@ ï}ºRã £þÓ!³B’Ä‘“¾(Ë|HgDBÆ[•i­ÎTQgMöEC~5Ié%ðñ£ ‡ÈË{“$m$›j£ÌàI¶Fƒã óØ:~S¹à$„y·òç_²ªÙ¤ù').Ÿ½â´3D€êÅD°À|Z©fSaªù…ÉÁÔ<*µ ê«J3eššÒI˜Q0«K›‘^¼sÝ=3Nýôb sÕ³ÈJ´s ïõZÍ2L57 ú»kó^àÌ1éÔ&8ÜZþf1ž0±YڀʨPAD˜ MÙ|µ_ôâ#cƒv’×i5†”U™²Ú ²À9]j^²¥Õ !ô]ÇÚàô—lŽCaö°¬L7DG6Ÿºý ²“À’y2\ï µ8ƒQ©ÚÓ¼c‡líX••2"jŽÏ`¬fˆ \¨Yº©U7Î+ÛZ7 l»{X|§œei˧없Сç6È5F "s+÷üf†@eø8 ! €ˆ G¯œ¢Y‚H ' ŽÊ::ÊD‚úÙYÂ1½w,aÇûû²„ž³-™ß2j]{j:µ7„-ÛÖj*öQl¨[™féˆø] 9¹3¹\/Ô+"yüõõÅû™‰9‘qòS“O^(íÂy¦„Œð-üMy—®‡XB@ÎîASÆï@*ð\ñod0 <Š|žÒnxWP›¼¥±vØ{õ¬0^]QŠ÷¨GÛÂòX>@=Šb( ˜üãnc;: Po ÿ˜ÛØczïjÇûûTÏÙ  î×[–èÑ#l x?@ñ¾øžñIZ|‚­Bà—Ú%’AdYó¯OÛû‰v#Å{Ñ!KaÉ]vá’‰-¼ÝÜTG$Z=Ya4 ]hà~l%‡wèà¼ìoпÞŽp˜¼åvd‚ë—}o‡‡Ú„°½z¯7RW`³Aá¡Û‰çí¢¼ó%É”ÆÉoDr°f{‚3¾Ý+¦7÷å8ý‹ª\™_ólÑ"|cšp{©÷™¸•<˜çbCÇi1wCQž+Ëcôºi$Šn‰ÊêfËvˇ¾nqç ÜwÏ•JÑSËBß„@Sç¤Á4Ønb e›Bì§yÖ\›ÎÔj<}õfzöæ}Ú`›Ì:üÇM¼äx¥€µ ˜·cTjÒ;G°›o{ÌÓÀŸ— •Ráecš®q•æòä³é»Êš¥élúÍúP!µ.mŒµP®ŠK'¦Ovò¹¥h`¯°üzŠP>ídšLBakº·6üVϲ얳'{[Åyrð ÄžgÅ-º@‡ÆJ†ù^fÔs‚“¹ZbzÍK¡Q>ª—å&Ÿ›® Ûf×´0Ó ­„ŸÅé¦Â•E£þ™ ¹;[hðû´¿ôXŸjwµöoŽ*µÎÓ(èÓéAŠË(ÓUýnÝÝÿ?‰yo2N vZ—^«BUi‹Žîòk:N`_`¹È»Ô¹f}ã”KÛPyÂókÓçâàíæ9׋RWŽëK}E®Š]÷ÿ*è¬K endstream endobj 2316 0 obj << /Length 1835 /Filter /FlateDecode >> stream xÚÍYIsÛ6¾ëWðÔP3€Hx¦‡ÖYêÌ4iuzp2Z‚m¶é’Tl÷×÷=,2)Q²¼µ¹ =¼å{Lƒó€oG?MG/ßÄ"H‰’2 ¦g‹"’È4J©X0Ç!Æž¤áa‘5¾ªfË….۬ͫ–„¤i˜²ñ—é»Ñëéèïƒ hÀ:QT³Åèø æ°ù. $RipeŽ.‚(†£ XŸF¿¨ãr5.pŠƒç]öxç$Ix %…1µ¼ÿ:æq˜ÕÙB·º36†Ç ÚƒwlîÚMÜ–R"hº[JI$“›RvhÿG„¥G"ÞEŽƒí„X£k ’®#\€[ýçåaU,¥ÕúVý)0Àí‘ÜpÚåFIsÙãfz¡ùñÖúÜ]ÿñí(8¶ï0ë(»êôO=k-ú¯.òÙ…æÎ!ÚÊŽ§Ú޳ê2×óÝRÇ)%,úÐ]¶›îÑø„ ™"4»5Áá,»Œ€1ЉHkÿYU•óë=Áø(f†±ØeÁ8ái^VMîâ(|#VµýðHƒiëw¡5ˆãt+ŽS^åEaéœúë‹lôÌü3ô3¥¼nZ™Õ˜ùø ±‰£´b0ø #{"ý¡*½,%)ä‚§úsF  “$’Ot`€E ð Y˧½¼l ÝMb¶ïõ˜ÓðjblÇO\01G*ûùÃãxö‡.ÏGgãIDUø¢Ι—úÅ÷°ÂdXZ¶C6 yܱÇBÇŽzù/yi·ÐópÌ./u9·»Ê„w3f§ÈJ¡ÇÀ  ‘¼åÛxnV4È÷Vé†î·¤ç¦0«µqP—V–u e×C“XæX'â$èÖ.eWßÓ•Œ†Ý‡d ùÉ]ù„ðë‰J IÆÚò£Î—…ƪØDÓÄ`j·¡1Ö¶ÍÁÁtÌV+põMz“tkÓµâ€Å9‰XäKvÂà“Hð$JiøËà*G¾x÷Þ××íϯ~?8˜ë ds3à[HÀEi²,~jë¼<·óï©—o’¨Ãç1I%n|ºzï¡ø¶g{ Dø£˜Dì!XSp¢*š‚³¬èÍëv™_z Z³ d*I¨TN!®ò³Z³d+¼[i­¥ÜÖNƒí4“9¡1\·ºlVîeNߨy‰º0¡£×…ì²ìT $H‰ÿ£«‰±wcÏÐÕ< aL¯±LHº»]Ú;½ŠRTq‹ô.®mFMˆJX?ª{ÀßRÇç`Jíòi+L;ÛÆœ¹~åBozÁzcf¾gFx°0w€ÈJªž} |Ï'‰êþUóúz¦/1ûÞá´{»'„²bHAg kœ“ B…x@»Ë`dk4cÂdÒ¥‰ƽRO¤ÖÁYÏxëÑ}Àë#(üòšsk¸?êª<탻Í7—z-”o±m2?©ôH3êÓÄ ž00‹Ú"þfèà´ÊJõ…Í] HhþÍ#óߋ켛ն ÝŸâPÁ€eP}ù žðpÂÛkÇ(MM¾¥Ú1î׎‰«‹Ê—|›u#lDÚ!WMþùîVŠq[Ü™5[KnÖyœ2P »g¡ç~Ô«|kÝ.ññD„åZ¦« è.2×U•cFÃåâÛÀn^¬+òÕÚ«^­3g–Ê¿²=j¾ª)Û^m 7éÕc ¤î2òîY§Æë±Å¬}ÜKO¾9š~:úàŽ,ËÙí+‘5ÄɹnO<Ë |#BßÌÈ×è³e1pCuÚfyiKyø\d×ùÂ*Ä.½üÐ{êqÜë3¼v–ërvÇ)vÀQCáCÂmÛÚ^8¾œ~ó¶CÊÊ-̲¢ðØ¿åõÉKrÒ³Jü »_êÜï´ªŠmî—7‡Õâ²ÖM£ç{8Ý6OZã`Ó…üƒÌš-MÜi«Ú«pÙX€™"Ór¹Í@‘ ýØ E°iŠ©ñ)Xê; ,duµ,çvn}&·>ÎKòæd¶ÒÓ‰g({ŸBG,ÿöÿ¶–ÐSAõÛ©©Rõ°“í-h£ÎVrùâu:ÆÄè@öKæ´Ä˜9å­$T0å3¿ÍH^›Ï;¯*ãÜ7ç蜡.”Jø‹š4 endstream endobj 2338 0 obj << /Length 2087 /Filter /FlateDecode >> stream xÚíZMã6½ûWø´˜Ã‘”A€ÉLÏl‚ؤäЙƒÚf÷hcK^Iž™þ÷[ER²d˶ºÝÞ ‚\¬/ê±H¾zU,™.ÇcЇ÷#Чpüv6zõ.”ãˆÄJ‰ñì~Ì„ ZEcK¢b6ž-Æ·“)×Qðf™”¥;}›Ï7+“UI•æÜ’ŠFAÄ'fß®g£ÿŒt@ǬÈHLåx¾Ý~ ã<üÌq4þl›®Æ"„¦ _\ŽoF?hÇfg«ê³UjÂ…¬m%Œø¡“)£”iV}¬ó;¥¼*¯®®¿Tÿ|ûËÕU6ÑÁfõ&_–®ÅïTÂ[1ãxÆÜ½yž•ëÕ;)Ç1tΕí<»cm··ŸÒ¢Ú$Ëvêù}õŽÓ–ÁÓú%@&‚ ÷jaªMSdnn«ÆdFÁÀ;S¸ëüÞ¯C¾Ü¬2¿ië-×7N{ñàçÿç÷£ñ­m0›0Nƒän¿KÓ±Ó·Àñ7ÏÞ}wýÃÛwñ¾dðçñ3• œ"ÒAé®×ÎbM)‰c#—„JíF~ýenÖH ²‹sèH<¢÷sŒr¢c}”cJÉÅ–c=Øÿ#à€%B…â04ÏîuqÙfH˜ÒmL|£éQ R˜ñ}Ûº=²X7ƒj»YD¢m ÁÍÜÊýVäÙ¸‘ÉJX>Ǭǵ١Ãåâ\ƒ¡á‹1EpÍ`U⣷cíx(f+úXä&ƒÏÞÑÒ{',lÉP„‡¬VáuÐCGM›êcZ{°?&u«äÁ;¡™ÔÓì½íд†qLhÌϘÖãN€¸a¾¼w¼¿‚ ¨âDÕBó³IWë¥Á€elUËm´8ª›A½(G¤võ¾‰PÌG¨Ê€qIe<­X‹VdBŠš2_»pMô–wø`–¬Œ ]7=€bSuûozc¢#Y7ø4áa§‹C´0É¢;C©‚²Z\]}BI–IQ$xöØc ³á>:68´¥1¶o8ŠÄa4x4ÿp ´èÌŸØN0xF·\˜ÀôÀAô"Úº9d Çâ½°<@[·þaMÆd±ç苤JjbV¹;ƒÔ£JÒ ¢¿¤ŽgH%¦‰âjfƒuØnj/kà픘PûÔnƒ'¤…Ùk ë… ì<ú[÷U ëßÖÁdöFºn| ±±9»v´ìÃ놕›ž©£ÔÛühgŽ(o@Üæg¹üu¢À=–›>9†¬‹I6XŽäÂL«®¯QˆBp“în«'-ëÊ$ø,Ÿƒ(ò¹)Ëæ³µƒ³zWNí`(%®L¯¢šÎÓ ÅUû¨€g ã(Á¥U¼â )(7ëuîÍGÂgè*)1®¯©ä,Ø”(å97þÍ,÷e¦~ÿÈjµwQÍí Š£}§¨~Ô£îÛ VVya2Â0xýÂrì[v“éAY;ŒD"¶óÃi»À}¢Ô+¹ô×~Ðmqw÷'.ý¼®?ÞÙÂ…+õLvÊÎ]Eú×wH„ú0¸RÁ^^ó/Œrưjq|ç88áñû;á.E'Æ/ñxäƒü}Eå‹k¹åÛºÎÜ•ÍçëÿÄY™~ôYGÖóÁxñ_‰…ýu endstream endobj 2355 0 obj << /Length 2538 /Filter /FlateDecode >> stream xÚÕZYsã¸~÷¯ÐS–ª²08pŽªÙYÏìn’­dÇ»óàŽY‘H-Iíüútà%CÇøH%å*‘F7ºû냦„ËÉç ÅË»3Š·pýöêìÕÛXNR¢•“«å„ A•N”–Di6¹ZL®#.¦3ž¤Ñ›UV×îö»r¾]›¢Éš¼,`H*šF©˜~¼úñìòêì÷3Ð dDS9™¯Ï®?ÒÉ^þìNníÔõDÄ0•áÂÕäýÙ?ÏèˆgÇ« ñ*Â…ly%Œø‰§3F)³Þ¬²Æ k¯Þy ¸B‰ Z ØÏ®ü“›1Ú"!IÌÚ ÍýÆÙÚ€¸BFïA€8n§ÿ%@O“4NÛ _¦<ŽÊ|áè½y󥼩/..ïšï¿ûåâ¢2™÷•t:‹ÕÍâââË”É([eU•áÝ}€¬h•’mÄKHš„PÆN–ænB"Fdzî<ò5pK£Ï¨—ÈØßóÑWšÉ'3#½ZçeQ7xÚ™7e`ZjPY|DîTµVeñ9t| QJ‘½§²GöÞ¶Pµêªn~J¿YÐ6qì.t 1'¼?»ÿsñ7N• „‘8Ý£~ž—_Åâ°üI*Ë/É? –mØO¨›*_ì7y®ï•Öºb<`Hë1‰àŽ”w,èjÛÕêש¢[ØV(Â$ë©Jfá» ¯Þr:R Á$S¼!¸³«£©1ëšc4`£‚íÉ!¾_lòi mS Åû˜Â"· W&€>ND%ü8þôˆ·Ü€6TîÀM5íò†18E*;H¼Yl(ûƒ†H!êuØ÷ÐÖÁ:d"!§Ü‰&ûðZ ös'¶°À?ÓC lh Ñe))nã &èƒÐi)ßÅåWoýAˆ¢ÃI×Î&>p¦bBµÀ­Ñß5-4XÀÅCFÉaý)þR[ˆIÁ¼ã­3³ºw/,>¥è'«éܺáÑNõpª‡2XRoÌ•BÒݧµ×_òªÙf«#^å0»2ÍÖëpç$†¶hté®ÎoëS´AF <ÌÀ„Fæá€à–¹Ë»¹Ù4ÖõFtö]‰#Ôƒ¥=8‰Er°´W’H.úÒ>@û¿D«b‘ Îø!ÂtâÝfL—Á•íÐŒÁ6“!M|¡9I€œ'R™ÉrÈÝ³Ý ™Œº)I5ò*Iª´S݇ Œÿ²µƒ«)CGÞ˜{Ø£/Îà4~V鑦ÓÄèF‡ŠpgE[#ì:J’G*†”ýÑÇ|ØF‘lžßö_‚®5}é@ò×NÛSFXÌwÒ¿mÿiÜ„ÄÏžÐ0yy&ûz´(G Aa¾©^ÀÂ^‚°51 Y%åÏcb Ì„"ÍÒrÝçÜ'Ú×ÓX ÛוÀ—ÕÖÄöGùG×£å8b@RÀ0®— lKP’jñ,¡[r›:!ŒÅmêÔWYI_e`hOb+lgC¶6e^ØD´ÿ-ßèÅø+)¾Äf…3A|éË-÷éüÃÖ*co•v$ó ìñ£> stream xÚ½Y[oã6~ϯ°@!cII¤ìhÓL; t·n÷af›±È’kÉM²¿~ÏáE2mÅñffö%¢y9<÷ï†F«ˆF?^}?¿zû.Ë£‚(!Òh~±4%R‘P9ŠEóeô!æi2㲈oê²ëìð‡v±ßè¦/ûªm`*´ˆ‹,ù4ÿùêv~õçƒ hÄ2¢h-6W>Ñh ‹?G”¤ªˆÌÖM”f°•áÁ:úíêŸWÔqI Ïqˆϳ˜â9—„§¹ç™0NàO‘Ì¥4îõf[—½Fß¾ƒkà È”¨<…»ÌÉ¿ÛÁ’ÈŒù ýÓV7åFƒØ©Š› ‚äœûýßNT¤( ¿á¯„gq[-`Fã››„Å)å}w}}ûØÿôÃï××»ª×vý#Íi2ˤŠë¶YYÚ2=ÔS$ÊSGR»„åq׿™à„SÂÀÜæçHJ"ÄÀos[k4~7Ex,À2š1°xî̱h›®þyl,¯¯ÿB†ÊºÜíJ=M(Qä$gâœU‘ÅÀù”Q™:o† ßL.Iš†\–}9©B†®yÄGö`tò&:iFã}]ÿ‘ jÚë‰[SAØÈx3Ñç£æí;N³°Œd‡„pgN=ì :òØøV*³ì7—IJÁ&fªoñ {6åÊíêúÎ+öx‹™z¨úµ#áölõ¢B×ÓK{~[="U]»mÍÒ êºExh훥Ɠv[Pï–ˆe&‹ïŒB@ÎÀɶ»v¡»ŽùEp[îDÝ–V´îõ²XÊŠ¸¼‡1eܯµ3Ⴞj6ìÜlÙÙm÷(C»³“·y ÄL Ä §Ø×Ìúý¶v‡.€ÇWhK*Rd£›”­@îA|^Èðbœ0|â@ÿ¹¯ÌjYÑ78©bL?.ô¶·›úuéF•ÿbZ/Šx ¦ˆ»®ºK8km'™íYwÓ þ80.þ´î»¹ÓþãÛ3r`¡C ik¨få~¶÷ö›òÙaÆUÓëÚ<çzXW‹µ[u(µ¶že˜ÔfFèO˜ÄÃÍ‹v³i›úÉÍZÃè%±q ÐQ,Ò0¬ðQ_|ÒçÀ'{z¸œ€ wsóî¤ÜãŽ&™ƒŸôöÍçzу‹œrÃ#iv>‹ð3âOH™Ê‹¥šÊä ¤ ièsàøG’ƒ£Ç¢½pîq*Ùgœp1ØËãZÆ^ÐCP#ÒózPT\ ‡°¾}†Ê ˆ–É(è.–›&å³r_„ç"•/ià,žF õ’ôâ/  Bz˜SjPGñ‘Ü‹+8QžXL+¥ýtû»N»T†qµÒ¶Y¯®þƒ tÛ»ºZhsq - âÈdVüúÜiaúÿœŒßaõ•ǧ7-킹êíÀ̘ĈPâ6,Fàk¯åCu€C”ǸY¨¥\Æmã– ú¡§àˆ;‰`´Øßmé¼JNâAœSf ²ç?€¢ò ¦@‘¤x£0on×¥aÕèLyü¾·ÇŒf`9(rpÂàæ“Ý4"6RÞnÛÎzðÛÕPP³uÙ;æþîÊIgV˜°²¶)»jm4. ž²£e«;;jZª{`Ã]kg‚ZËœ²†€‘«¦LÕb»@9¦Ú€a5\`¿a]bö–Ì릠ßy³/{í/'ü^‡®~çccT> âò,RÏ(QJ`—B”ïE,w¶4LˆÒ;þôOWí"®MvÂD%ϲó° Âô>ÇðHûÿDXáTA)“ž%L#¨y;"kzõ\¦ÔL‘ €:£R€0QA‡¨°¥¢«¼žÓ¨âDÂ¥ŸÇ_-˜ÀŸù3é@Xø´»eÕ@!×Ù‰ÃÊ;G7FApÊ4:Š_ˆ=?wÿfÓ~‡ûšÙT° I«¬P⼪2€=•ëUuÞõR°†Ó÷é¯BØø4(Dçõà”~‰O+nXd$ò°²z­C¿–¹i™ãY²ƒ€l^°¯`ü¯AØ_& }ëKF$š’ÊÒ° ¼ÀÔŸÇÊdò X™ûÊð´hôH:©½n.L#¯æú‹]~žî+]és_öüœ¦9‘9_8u/?-÷ó$+bûìÀ‹‰^û±jQ^¸v[1»úŸ®ë25.(v,ƒ9¨šª¡ËþP5uÕè7ÉLÀÍPÇõЕêå§Þ- }Ùé~a7G}†Mg#Ǹ†²M¼¼ ¥ŸÅåQqç^_ì  Þc'úH iº—ïºEUÍí›”›2¨ŠƒïŽñ9Ên·cªùƒàèÿòðyËÈ7<ÿìx0Í­û16P½—å~×nŽÔc‰O›¶×£¼ÖÝu`‰ˆ HË4Ÿ“\9¥}„Î'Üõa–ç"¶Î‚Ê!ëpE°ôxÅãã4 v ‰yÂøÈÅiÍÍlreüsæ%L3Rär ‘ÔEÇi0üۼʴÍêÖ;ÙQø8óÀð_ú>vi§_M»85U¿È•½ÿÖ¼ˆŽÞ{”ûõÎÏ­û}ûfSö‹µ·ý3qà:ºÓP=Š¿UÍ¢Þ/§zÛÒŠRGï%-ìýºÕ›µÆñƒ $gGÏ&að3ª t cæ}³ÖJT­  ª\¡÷»Çô‰š²ehGôÐQ“½£ŒäLý/ÿ5ôÿÓ„K‘&èetÂýˆQ> stream xÚÍZÛn¹}×Wð1yá°XÅ*0ð%ÎH€ÅÚ‹\ Ãèéé^q¤@’çïsŠš–%[Ž{„Ùȶª»«ÉÓźœ"'gãBÎZ‚ü­5PË~C‚Pƒ`%õG¦ÁD]°Ð¨ßrj]j² ¥H¨T¢æ@VªKŒáÙ\’Síoø¹OŽÑÙ|ŠL¥ßkP)†Kre¥þU3æh²¥êO]*âOñ_MþQ­:dòÙjÿ®†ËÆ `4Àø&Â=ÆkÌnNXæà”+7¿Ç­ƒL¸qv †KÖßÕ ¹tÉ‚Hò‘M L ©±â¥ µùxD¡à]ÌA9”œÉïY(|ý´†""ŽK nÆŠ”ÂŽ 'HÕൢ¹Û@!™Ï›1žån5Œgª˜#s(áF®i–PZês`äV|˜½47“Mâs`É`úŽžƒrGÀ)¨tLAµæ€I´²s°Dý©#ó/â̇‡ÔàK¾x,)À,޾¹Ô׎dš›ßsÉü À0|挌/ò§¸WÉgƒ™¬s s4,¬‰{M|^¸€5w ^“øWÂUªOk¨Ü¿ÊUjÁ0DU÷&.*»”CKî÷\à—± -»í“·ì¶ÏPi¾<¸W!9R.-4qkd8p“âk®)Àà>²$Gš±ú­´>FV(Fð5«>‡âiíþ§¹¹±pÌ¿Cƒ)e7*⢶“'ON6/„³"Ì›¿ýý˜£a‰°üÙ‡÷ïßžüðCW~y~vž< ›—nH,Xë¥[>p}Ã6íúÎM©ûG°p\_‡s^_À –tyâÆâ~y7?]œ¯¦«ð&l~zñ2l^O¯Â ¤×ÿù÷„ïÓÉæ9àMgW—¾}š“ÍÏÓåù‡‹qº¼é~ï/Óîtxvþ1¼I¸¡0¼µü xÛ×-_+>=;;Çho®žãé o/è"Ø"ÔEh{¡¦E EÈ‹À‹°Œ\—‘ëõÈŸ}bs²yõa{Õ¯ÿ|zöϓͳó‹ÝtÑ?$½Ýü¸ùÓæùêþí㕯.GwÍ)&wK±˜šÇiŠ¥ôžö%}6<}à¿ß——ϟϧW—ïè½¶ï§ßûbQ­‘<ß4 ð¬Y4zb×”"¢x ¢?|¼úñÅ/ã¹n3œ‡Á‚·©f™·yδ=hb‹p¤_©G£Ä’ÕSoDˆÒ_/ÎÏ~Ååtvyz~æÀŽhÝd± KÒH^.ëŽÜPH#Òðêõ~7LÅPÓn‡âƒÄ7IÇ]&˜Pg舘÷>*J±§º½Šåˆœõ>º,7׋ðýrKbÿûý-7ŠH4Ðe¹‘å#ÕV[mÚ ¦õè<6ISNXÝʘêÀÇ·mÆêûJH|ß§m³äèåi±- ûa¶ Éɦšvø·Ý±íʼ͓"Ó6vÌÜZµ¶L``›Èµ`Ø ¶m«0ðÇÃÎ …wÁ#ˆìŒµ,<ÄÙkLg7â=ˆI¬ŠëR°´«2ÍÓËñôôØé¦!ñÁÃXàQA¿€õìôì PÜÕz›ÜåNî)0î]rwò5,ÈÊΈWj»Ç÷­ÕÎøàµÚBX­ÕÚàЈZ«]ÜCóJíÜ HÖÚ$ þ¦Õcs>œzßeÛ«ö¾þP¶Í¤_°moʶ½ÑîTØûì½A¡,‚.‚-B]„=#÷öz/,#S>*Û&—ÛFÉð®/‹FÿBuŽ›Êš@~~þþÿΎ—[8·è;8Ê'ÝÖ ~£pʶŽ’ó;ò½ä öÖÛœD ¼£EÀz HÔJ”ìÛBoÔktQ$ÊF‚þ낈¹I}LD7­…2Ц}j-PDYi-R™&XëlSÎ)ew¤Ã8â&Ùxľ-SéMfkå¾OW£" ¢¢¤úˆ­…³T>Ñ_Ë¥ôv’\%úîáMkÑ&åLzÿ¡Ø½Ú”hj~Ào¯¾V >+wkËíªs„ß^±Þs¤+Oƒª»âmé!Û0ú•mjõÚ¢hðÁ XÜˬôÞmjy¥¶dúm$ÿ'*# endstream endobj 2380 0 obj << /Length 1472 /Filter /FlateDecode >> stream xÚ½XmoÛ6þî_!t@!3CR"Eë€-/] ØýÐöƒ"3Ž6[r%yIþýŽo²$+iÚ® è…§ãñƒu€ƒ—³_—³“‹„IÎã`y8F)— qI‚å*xÒ8šÓT„§›¬iìíY•ï·ªl³¶¨JxÅ8¡`ÑÇåëÙùröiF`žC‚$fA¾½ÿˆƒ ¾0Š¥né6ˆ0%úÃMp9ûc†]”]ý”&HÄ<à#f§ø4C1 3½[3ä¿s/N^m Î*˜±7'¢LßêËa¦¹ŸjÞ›Ë&‘O$‘ññTØ$þ¾¿ŠÒpSä-*Â7j{¥j{±/sÇÆ¤o¼Ì“ ŠûÎ9JEªCA2eÖ÷JÙè[n½vq¿}9 ÞÏãỺ*×çw­*˜pŠÃû| ¦ºÄ0Ã9ÕÚŠ_F$l!`¢\ÛwÏ·ÍúG{{UU{ׯ g»Wà‡<°0–ÂÂ0—©^,ˆÊ8˜“É$± ;¿ËÕÎA,æaÞVuÄp¨çLX¸«Á9¦wQŒCÕX“öFÙ›flœ†Ï.ŠÖ×uU/¢9#¼Õ±¯•väsãÜAržÙï¯Ôµ¯j5ži§òB’ëeÂÒæÉ\Ý·ªi²µŠ dÓ0€Ö:óX",àB‘àÌ·"ðƒÕ`ŒÃ3ÕfᕅΙjòº°)êçxˆ Ë™•ÿ Œ¸@4— U!>¹> IßË4’úÁh avc¯Q5O9!»óÚñdno`íhBck£‹WËËÅ⟈²PÕWU£ÞT«I…]¸ÃT£Ü\f׆+( ôDuª>ƒ3`ü~µß‰ÒzŸ ìøI§1]©V£*¼r;™i>ýùáX{«¹‡µ*õŽƒÃ¬“o×uµi<ët³±"µ;i†Ú¨f1¬{wxcˆÉäÛ;ªY¡2B7Ãq½×B}²ƒüîî!Á g•”InÕˆ /¥ÅÒƒLŽT Æ¸UJþO¸} Z!Ì«2W_p£°. ¤ñÞµÁÕ_ ™í}­@ï4Ã:V®}3¿4¾#§¸ºHHé½Ñé凢Ì7û•}„ô,ñ ú~šð•¢´Ó™:[Ò‘›˜ÜçÞìçAÄ“j…`‚‘_ò§Šÿˇ#`ĤßF°ÕÆþ°ñRCÿ{Ÿøe$±fKóð&sDˆ½R 8´oÒf "}‡ÐCÛy¹§º÷)!z¿Ö` U9^þ¿”{e¿ endstream endobj 2363 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1ExtHDU_1_1WrongExtensionType.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2386 0 R /BBox [0 0 500 175.44] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2387 0 R >>/Font << /R8 2388 0 R>> >> /Length 293 /Filter /FlateDecode >> stream xœ•PËNÃ0¼ïWì8,^;~åH)p-ñQ_ˆ¤ ­Dù{ÖCÑ ŠäÝqf×3Ó¡"F•¾\ënŸ=.w p ðñ'æR7xW ! ŽdUðX- ddM::©ž4ƒUW“Éb½ß•åô°º-Ë·ÏM»0owëM[}oç×Õ;L+˜.ÈFåðK^~„‡µYU* X¥RóÑ7Ed lŽûDXA¼'Nz4%= ¼àì¿–˜tpÈlÉz7²ô çôPÏ·{qòëâ‚î 9mõ̸ð–Š^÷y¢­Àø ™&–DEoä·5’ן7µ= 'Co»oYÁâF"údm… endstream endobj 2390 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2497 >> stream xœVkTSW½×À½§-¥­6JFM˜ªíT­¯jm V[m«N<¶' àI*ˆ¦—®Opü!>&áù9sæFɳ‹r3Ò÷æ‡/Z°pqxjQø¯;áÑiyé²ðgù‡‚´,y¶4M–ÿV†4U‘>Þ7<&-]‘µ3÷_ßýVíÿ«OQÔd™<*;zMîkyùë”E»Òö¤gÄÅ',§¨·©ÔLj5‹z–Š¥ž£â¨xêy*‘J¢¢©×¨µÔ:ê j õµŒšJMáY¢‚(u–~‘>:aÆ焟)‚{AK‚º‚—2O1ÙÌY7ûz}dÕ#J°…rØÃ ÏÑŸŒBô¨ y2ìu1‰6•÷"8Èž8ÞêèÁèd{Öë’ÆšÞШ’*v»Ø¤*­Ã|A{?åüêmYÅë׊o³zk‚2C› ³5¶:K=FÞ:u’„XXóFmibâê¼Ü"/Ýuî ÀÆí’) ç1™vï9˜¿ý$6ÿ>yZR*ŽÍ!Ó ³}]äî=íG $òÓªëøOè›ÁK7Ä¡ç—ã¾?B{ R\‚° ÁŒ¡@¥)ÄeXmSW%5%Ö&ã¼,ë͸5o¦ÍÇd";@D¦ÁVþÛàÄEͯF¯“.â 8Ö³£?îdÖ] A^¿f]8]°ûˆØ¿Ï%w¿@O¤ Õù¹Ð&ÞÅS&9«ˆTÆf&Ò¢±›¯ XÈNRfö¶é¦Âc_AÌ‚'×|9;6%/.E2̬ñ{KãŠE*¶ÎRí¬Ñ%KÆö²x³V·Ñ€&‡yœOØ}¾wðã“«È#âI[È„¤È¨ä˜ÞnþÈ{p÷yýÃŽZÐ8ú@øÇžKç¯õ}‰¿Ãwe#±çÖ~Dè^2#Ò¦dnëk÷["ÑØFÖüªFiDÃ]úìµ¹¢Ê8!‰?º “GS—.OÞ"Û¤YŒÑ.M_ÊöÀG¡®Ÿþëw^Ê™­¿ßžKf˜Q63Ãf¶àÃ0ÌcGMN3µ:ŸÑ,/Ñ,5!2rKwe¥#˜Êã4yJ¡LÌó*™›FG©5*€ÌUZUŽ”\ _ðš\æ¡ÿ<*¨š z³Îªj0 !P°þ÷¼ÕuF]½Ø¥vµ»š¼=žŒrET¢äkÖhU¤—Äñô6ðt`t N•"!6Ö”`0lÐò#<óoGÊ•‡Ìj_..‰à!χl³y-¦ýÈkXóK:í*#RB›]e+i0ßD ƒYì§æÆÇr¾‘HתñpKÚ&žº×§ðƒý® Ëaz°–1î7V°ë¬ÚªüÚüª<Œ^ŽIˆŠõïú|«äýÌC…My8K”²O¾åµ½ýòÅ*²ÀÉÔØ+­ü‰&m©ÇS[@*†ÎŽrÏÔ‘Ëï_/¯çí^ ¡®È›Ôí¸StÔ×9x¡;sa›8|ºÓ\ˆŸ¾>*€Zn³ðY@ŒÝd3Š7-•fÈŠµzCI…Åd3¡3ä,³´{ÇÐÉþöÓ=âÒzEŽªLE{Ô—%pøïl@€8q z=ôOàü{2øÜLdµÆa¾ Γžš2í+j|nö×n#k¹i·× 7ñ)Ùaƒ]gYÈfr6ÿ·q‚Ç«ü’Q/ºhðM†m.& 6f#OÖ°Ï ÄÝÙå걊\d‘ší6Ù ¸k4ŠÜ,£ASTZ¸ß¦n+sš*•>}#o6—³ºÛ‚\d—ºŽíÆ¥¾äûdfaH„4U§Ï¬©a–‹•i«œ5ÕΆÉmxâ+^i°±^„‹ô噦ñr=4'çÙ$SÕŒ¿±LUn6Tè%³Ia¡ÚÐPÞ€í"ÜìªyÇÊ÷K-a;Ê›´µÅÀs˜#Ûb®Òy÷`5Vå¿Uœ¥Î-P–ðC(ãåPTST©Â(O©ÌÍôå¾óáà9˜uN‡Â\§¿ÞÞn…ru7¸à.úÀ°€{·®IÏ‹Áhþ†O€ýáÜõ;½N]š]R­¨•5·bQG‹»íüšw—&m)LO•$¦È×âˆoÏÁñ#¾^qg›ÛÛ=„u?™Ø^š› Ë„[Wí­Ç1xG—ìBQ¿Þoº„à"³ÿª®+×/íÝÖ’€qrQZFrjv4Ž@D|c °ßÜj@LF`®°~ä`ßE|·Ë‹Ñ/¾~Æ;½ô÷¼/È{‚×â»»¿Õ©“5‹sº&ÞÔÍÍm½)ooHÈÞž#ÉÙ¾?ݼEìû”\cL‘:mtà rºØ›¶ßBp BÙñ¡\€Ë óp•—ö^Õp§WÀeraÂÃ+Ù\b+¬QÔ†åØåU9Í[=CGÚµLIN^A¡F[Q.*P´¸+êµ…Q 9™xÚ<œòí­‘ŽÓâ~_“÷ãKÉGWWauX¼5¯7bOÏ¡ÎÚÞ ·ÉŠû𗯳Çë:„ßÃ]ƶ?"ú±ß êG §0ºÛSš¾iÕn¼(¦ëX[ëÈ IÜy ú:Š¥b÷ÞúíxŠ•ïÝöfêÕo®åÙzÿÁÄ‘/N™ôŸô:óz•¾.3À–ÛÈü¸`5[kqX;µçœš5­.Ó­­@“>‡ ‡ „ÙùùrY«ÂÛÝÚÚÕ•ß*û%Ò¹ïh¨áÓo‹[QYê0Œ¸Ú³,Ÿv-Å­„FíŒV]d dep;ÓtK°Vtv¬‚1/)Ó- xûx ø ˜óð·üã˜àaüÃÙB¢V2ÃFW¡u&÷°x­!­Xš½u}V$ŽÆIíÙïùõ}ø2‚›ã¦ÿ$`ú^%{û×8¸Ê’Õw"`%з}xXÜ>P7ˆ‡4°ÖëîԡП£µž‡{hþdN›µ8²uròù:Œ„Á}}sE­©RTÖbpãzÜÞf?káûx”ì³½ìàŠžˆ°prˆÌäBôÍåM¸^„[ªOUòŸ˜”ì)£«¨ïˆ;æbx×­€Åc+‚]ÌàªiœqŸ®¯;cçåìÓòK è; À4.E(ÍÍÝ';ÛåëhïöåtH%„ýǻВn³¶70ý~öX¿-$äveÈãõOò2Ì endstream endobj 2414 0 obj << /Length 1880 /Filter /FlateDecode >> stream xÚíZ[w›F~ׯ /:'"{g×§îCºMz’´±Û>$yÀ[ôH  TÇÿ¾³ÈHàXUóÐÐ^†Ù™Ùo¿@Þ­‡¼Gß_^\0îÉ@ A½«S„BzBñ@(ì]M½>¡ã ¥>ŠÂÞ¾Ìãõ"ÉʨLó š¸@Ò—büéêõ臫Ñ_# @nÄBÜ‹£Ÿ7…Î× ¨’Þºð(ƒ¡XOœ{—£_GÈi‰Âõ­¾T:‹.yÊ­ÎFפ0 Õ‚ÜõÅAÍù"eèM TÈìô„ðÖ\ïÄsáÇÆ¶C/ouëÖùÞ 1Vвò|•DeÒùð<%P¡VNõ&˜Š9%ÊÙ*cîßeÖè¹»ÞŒ)ò£t¾^%¶¡Ìí5¶5÷Y2&È¿³>"Dæm}¶Œ0©+p|+¼[&ÙÑm뇚»DùœešÝ~™È“Íð6¿\dzŸ^þöT;ØÅÄÉÒm8½â-Ó\k‡ßï×g[×¼JÊÕx²Róœ¿Ç„ûÑÜŠ]$å,ŸúIÁ1#¢g5Æàd½â·yy¹^.sÐ’*¿L¦‡Œ+ʈ'#žaîa ™‡™!y­Ðû “1ÉsèãÒ/ÀËvnTØÑQY&‹¥›ŒMxêæ"™'qiï…q³Ênjf[ÒEtk¢5Á¬ªšÁP&Yj8§´@r !Áf’p! Y_CžÆàe"ý7Éâ–gî/ÖY\š =;¬ãàâÕÕåv|P)`§rƒÚRð÷Ò„'óÍN¦2ôO²h‘8û3Lý÷,òib¯îôýÙû$šºÞë<Ÿ»>h|•ÑÅ<º=³2/œ mh`¶†³Š;;9-tDåôôÔì p!DLxq–c¡!x€ÀIÈNýÖŽh› «mÐO<÷paK<‹:8Ê(Íjɦ®ÿØ*©Ir6}Ï©l—uC“Ž´)­ë¹-:¢;ÿõ,€ˆWÙÔr-×gÏ+ÝÙ>¯#»“W^SÈ÷†P@”Pì-,©&œô²0Ü[„l ûÒ"$=šº»ª;[2!uõ5Ü*~‚<ýWo>†–$é×VØùâk°…o{뀙>rÖú ß“ _wèãžÃ©ùˆ¯;ªoO°KÁšßqHÐê-åú¼ŒÌ[ÔæÛÿ«±‚õ¸Å½‰~cl¯FÚ–ðñS¬*°'°??×qÑîݹû¶Å Ø=à!XmëXþ?С|ä endstream endobj 2464 0 obj << /Length 1960 /Filter /FlateDecode >> stream xÚÕZÝs›Æ×_Á“Í\mö{!Ótæ&ŽÓöN;ÓFi’<`±±i%ÐTÛÿý=Ë.Bؑչ`9œ=¿óµön<ì½›½^Î^\qá(”’yË/a )x2H†Ä[ÆÞGŸ²ù‚ªÀ³ŽŠÂÞ^f«ÝF§eT&Y KBâÀÔüóò§ÙÛåì¿3`´bá­6³Ÿ±ÃËŸ<ŒXxwéÆcH‰ùpí½Ÿý:ÃNJÜ––â¶´#!„'…B” +í'JE%Çþ{#H~ã$úíÝÌû¸BúW?.ßw(ͺ"þ',ð*K‹r^=¾/óù‚?IoÌõ/Òh£ç°ò¯ùBráÿöÇ&‹µ%Îïªûýˆõ‹2~ùòï9¾^•Yn¶~q ‡ •F!ª’,a*U¾³$]) ¤¬)Ú² ° T ·ï¸-!Kî-à g‹BGùêö?sŽ}=§Ø(œFJÊZ#)à †V|T#p;S5 Áác u™9E~Ÿ+ìGën«qek«E®£ø2*£…á–€ˎI®ÖÑÍ«/sføµ©àµ5(WS¬A0D³†!&!Ú›öûcÌ.nã]Û¥¯ŽËH¤0;›¸ )Þ03Q¤cçÊAÄ’à䎃Ž+à "{h "Caµ‘s5 Å·‹­ã¶‰àpôÐòÅW„ ϦK_ŒKÏ‘àá“|Ù?IK{c%Î (¯ˆ!è%^{}q%pÆ2TUΡ¤F—á(äÜn‘mµ)$RÀf˜–¦ÎH^ݯµ]ÒØÞ˜xu dvóÙ—ú‰Ý|xw›¬n-€S%©Û¦Øm·ëD;þŸXÇÜÍ ö³<.ì›»¤¼µ_|̶¦ôEëÏöM±Õ«ÄH«+Ñ`×ø#¡Õ®2”Í@•áŒA‹l£ËdS/e©¶7î gÞ;“g¢´tef¯¥™yqçVo£²¾spŽsœ¶¹. z¡Ž¡úåRDCã) ºÉÐÆÛiº‡ÃÇà6T˜k«ME™DœÑ.Äb]Å®²iŠÓÇvoïË>{&á\ì‚ÙD•oklÅñ›èF÷mÅÑnbÌc§‰1 ¦ü²ïcS6¬Í»ëmrïÖ&ô,Œ IŽõ,8l¼»Î†S‹«'4+itoêrSÜ¿=Chˆêå§Ç.†¢ÔmQY¾ºÕfÿûR§…í†[±ZS[’¤(]>>»€òø³ë?Ájç•w¯’µÛߥ¥*cXÚÜ^s÷­Vº(ž-Üê—s)'º6‰g­ÇÐ y<ú¡;¦¬…þ‘ÕÂNÐwÃÀ¼ï… kìÀ»Ü¦ÙWaè·XMˆ h° Gj6 è䎃„ò"]€¬²õn“-'ô D¤š §Ž 1ò¤Fƒ‹fxâàÞã’«*8Ÿà]nÎÊ‹ºE…âßKTW›r‚ý%AaG²iHÄä PQõóKA÷³ë”:@’çÁùïrsæÿ&•‘k7p…Lº~8µ!$y¾1a¬Ñþ!ÞÙ÷°u©¾„»W¯“´"–6÷¦1!”Õ½ù‘¹P¿l²mµÚ/}°T•> ŒÒ6ÉÑÒ”ƒ¥8íK_ìÞzdz`æ6°bWC~U@á…›?:ú‰5×ÔŽÔ\Wa+·fI<ÞA¬²­ÑááP ݌҇Y P°|Qd»|¥§ªQ­…§F¸fdyŠ VŽôÙDnÇz«³NµM8s—ç0ª½m€þ õ¨¹hÈ'¹.w½ÂwÝjd/i–.êŽÇ [W±¡AžÚöµå«Éº H—yºóf3™:mÚæÓIKân»7ÕØsâïí]5‡c³¨ ¹}H}»ùsUÍ¡_z¯†fޝOìYJsŠÒr‰óÄÚ"4Ó9¤+0Ô¹³U¬×ºÔ#øn’øå°cã,Ûèø$upÈG—•”Mß>þ©ª"ùÐ÷¢=ÂêÊåhÌ9Íns ‘#°‚Lô>HªÐ°[{ÿS& ²O„⢄yq¬ìî³Ey›·Oð¾5}¿ÍêQñMůÐÕ:+êœA¦(¶Y7ÑæÊãz›óÕÌ.:‚¹ÒYùÉ©JçA™8#ƒÖ7ë=$›¥èœQÈd±¥°¯ú _˜·Ë´¡iå–Š€ù…Ö–Û0•]¨ûÞv¯Ô§e”¬‹ù»S¦Gýø\Pm§­ã#Xà°À¾Æoau±À°@ˆÿ zm¾@ö‹å­¶´IºÝ•ǸXÊÂ’íûƒá'Ö&¤ufŽ\O¡3mRÙ䋎bísÚ"kkŒ—ÈÞ9-ûOšÚºšgúœ§¡Ï›½š&W ôB½3Ígiˆ&}¬ì ”ð#M“Ñ»þ·Ûúa‹³5SÿxÊmåõ3e»ÿ7L-ÁÑ?GÛù£\k˜‘˜~®qrÚ?6Yºÿ–ëîÿLèE0A‚„ù¡Wý34‰¨’¼ý3´ DLºcÛwöʺæÔ¢-ç!¸Ú‰þsä2;q†¤iWÔK,^’Ð>}1@«OìÞ¼i~rÐÃàeÕÑß?@ˆ tÚWÿ |ˆ endstream endobj 2507 0 obj << /Length 1938 /Filter /FlateDecode >> stream xÚÕZËvÛ6Ýë+¸ò!ω<>rê.bÇiÒÓ4mÔl’,h–ØJ¤JRuܯïàA‰¤(’~Dm76à`æÎ½@ØZXØz=y9›<¿r¹ Ðó˜5»±cÈ÷Ë 9òBbÍbë“M™3¥~`_¬¢¢Ð—Ù|»i•I–B÷p`óeövòj6ùsBàØ"µ 1·æëɧ/ØŠáË·F, ¬[Õum1º9pe}˜ü2ÁÆJ\·–⺵#ιåqQƵµŸ)åÊŽýxiH¾0ýúzb}šrîÙ3‡PlG×ü]‰ÆèA ·ÏLcÇòëÏÓU)òá|ÇñšwYRˆ—IYŒ"pÇ#CÒ €¹NûÄà2•¶\'\7QîàݵØñ€ö´|ÒžÖf™¨)Å6 —E’Ö§ŠDt«r~! ˜À˳d%.“µðQWeü<üB‹ÿ¼Ìr£¤¦Äõ ¼ŠÐ¿Ó]šå†*k§«Lë[{ž¹,¬:}?8ÍY køü-=(ŠɃç"êÈ!PlsPpÓZˆRÒ BÖšÀŒ+M§Êª.±«‹6x’´†‰Šž2«ºæoÖ•ÐpÖš4$¬ÅÊsWJ¨³Vàr®éñº2Ï3P±‘%[µ`Ä“2¹ïÖá}W5>ìýÍ‘aìcþŽªB´^º6Äz— u¤ qû® ‡+xB⫃îÈû¿•ç !;ž÷Q=™þ›!!Õ"†±Ú¶GËöÚ.X~l°•l8[ÆÛw’ôŽUn·ô^³šTî5¯VÑb¿ß¬u­Í,5®_à( XŸÀÁ~@|Ysó[7úpZê!ìzƒz·Û)ý!ëi!ÿÜçÃfûôt¼*0Öï3ÖGõMÎg•º›C©içd,mM ó‡¦FÂ,*™Ž!ÎFfól]éoºØí‹Gc¿5‰Ú”Ôµæ_¨Ôº²£"Ÿ5Œ«ÓGL’­rÍ$lQ1ùAÇéP3cï‘qFî‘hWÎ5ë €Eá<-Í“œúHí5$Èô@À6Lü^PäzáHˆ´ÙÚ0à!¶ïi¿‹¨OÇÛSNÕèž¡€M’xî÷‡67ŽN9jç-©N£yaØIý•ŒÁ¾ß(žë(ž:JЊçŽòq"ÊÇ/Úìë"…¸ßËݲ)!òÑ °QŠ1ZG0A®?Hmî€Á`„G†DŽ´Un´‚%»rÕ GSCv5©!û#PVùA/Ô‹ûÂn€<|@ŽüÿŠÁñi‚Áßoo¢¸‚êƒ ;•23ª3u<}WU¨=mÌË{‰“n‰‚î¢ ©—ÝF°"qÞ á¬RŽÆ*f¬Wê³"ÊçË·­].ü»ßJ@ôÝÚõ+™ÒKÓ)åõ–°Í}t|É!Û] ÃüŠo’âýž^öÁ7 , ‡ªöÐå£S×çÁ@Õ^_2P«©žhè¢ hÝïÖƒ;‚†<Ž|Ï?-‘o³+•¿s üI­E¹ÌâŽãß}—%> stream xÚÅ[i·ý¾¿‚ßb#p7‹ÅâdÉòŠ%ÇNCèSÚd5#ìŒùßç{¸Ö:+xFîõB°·º»ºøš¬“ÅqN‚±Æq$ãƒ!öÎdgX”N¸¼¡ä•!f‘8õQŠ&,w’ ¡Ùä”ÎÀŒ·\púšòA”‚ÈàUT"C¼ ¤³7,ˆdM/» ÏT,bñ’¥¨ÙÀgD„{dI¡”@Ï8O¬ÈË=¼ÊÓŒ‰ \9*¸Ì†É) .êkY {ïð9@ºS9NV§)'Þ"%oõ#<x¢R˜Di北l•bã#>”7>aHPbÄFŒám0⨼è ’ñåÝl$’Žà’‚¾Kx#ƒÞÈ¢’É™`ŸK §YÄ Æ 2!:åsbBÒ ^­×q]4¢Da‘€Ñ(–oŒ†ySh9r*!%‹2à¸G…!))*!Žc«_­’¢Ó5§¢f`œòÕN¬ ÑY•©€„P j5 JB«=A˜2ˆS†¤ Ѫ\5:Ø;ûøã³öyZ ÄšïMûÓ¿þ­ï60YRcñ`óúââç³O>ù=nnÔ®ãv”ËM ¿á~¸ÝìÍÇ›ö!T òᵇPhîáêž0ËËK[ùà42Tc¹€•DXÍì¸^.¨\`ÜöÑåvx<íÍSÓ>zðдO¦7{séÉ/¯&<èžOgí}À›6ûz*«ïŸµßO»íëËaÚ-ªÜûfÏ»O·oÌSe‚½ÂžÜϨ»ÄÛÊèÆ{›ÍÒžšâQOq¨bÁ~0Ç×Ãti>øüÑ׿óÛÝ~7\ž¿Ú›Ü¸ø!Ð]NÝþ|»yÐí'óÁƒ¿9Øeè~´âÜGÖÿÅÚ¿€ï›íø{,OÎ÷`¸Ñívßv/§*}‹Ñlßüò|ÚàÖ½×ûzçÃësõÙ›ýç÷á¬ýîÑ7†êÓO»ÝT¸ýê»ÿñÕßÿúäüå´ûèûíËn³,ýƒiù"-Á¦LÒ"Tƒéür·¿ÿ¢»„·^§€®OòõéZ¦OWêÝ“ûiÑHŒý Õdxù^tÏwˆŽXÏÝ ú‰ÛXîîÕÓùó¸Œf<-ÏôݳöË}wq>ÜÛ<‡’XàÜO/ÿ ÃÎЭóÝØËZ¨‡;k:ˆ3ƒT¬–šÚíýöAûYû°ý¢}ÒþÐþØí°½ØnÚ©Ûçíy»i·í«ö²ÝµûöMûˇË7<<¿˜J_¬ïÚŒczkÒ¾>ßüJ·½§ËbˆögŒöe{ÿ)• µÝVO›ŸŠpÒÄâ}ÃM"®qÙƒï^qIMûùöÉÖÀ¥}0¨aÜ¿?ŸïwÏèAã¿xðƒR?^n7Ïq9a!·ö¬£AhΓPCŸy\7OSèÆ,!È0~¨^h•Oa iŠ®!Õ¹š ×)46Ñ1ŸòðË'ŸuCÊqâS%\%¸5+È5+È¡W¯§J,Ÿ_ –A•p•àJøJH%B%b%R%òõTä:ÜdÁw@MÕ+¡¨ƒZAe0ØM~·¿|=ìã¦ð÷~·Ù—ÌdZÏ%]á³Üx͸þBq“%íEð¾{…diupcS*[`Ò`¥>Ð)ؾÝ>~=¼@ÜZÑ™{iÎ[‚m’nß$-†£EŠêŽA·*ž«ÉòñºA€Iƒ×AÂ)“…E¼,Éõ·Ûýãׯ^m/÷ÓŠ»æ (5›„Ú5hCºÛCƒ‚ùøÀ=[ßÙnæÑÑÝ8¢gÇqö ”n²“¹Á¯9 ¶ññ%»~]Œ(GÛ;ŽÒÇÀÁÏy»¢zZ¨Âj¬†‹ãAîá55@—÷É5þ`¾ÆT<`Ä€âN´®½Ö”R_¾ZRD¯&Ñ KÚ1YŽ3˄ʒ&7uÜ'!ä9Ø[@ -dÝ{©Z)§d¼={?Rv]†)Ó4û¹‹v̉aNVV\tëM½ˆÙ!ñE|>ñŠVá´X@âm›Pöæ@êÆ+Œ¹ÿ…ƒÏÓ­²”<, Gõuš}òÝgs°YѭÃÆiEœŽ×¸©Ë>¸>2qçB¥ë]oÌ$ç®c^r,‰üots[3óe¯5VÈþ_Í!нˆ÷j¡ŠÈ‹ŸÃ± …Cg!‰2O9_˜{ê-ªk¿¢•`¹uß—rltw7cê´`C߯L]g )q“ò¯ŽÌŸRêsHa‡q 1¹<ŽiöÑÚ9vcœerk†_¤]1i¿H§¢˜§Ûì(õczŸìPkOm]éÿ†y)Ta LâHn±ú×­YÖ^ÛÑ~kû½KÕpC©Þ¿TÕ^ÓRR-(]­]­]­]­]­G¹¾Îõu®õ(×z”k=ÊU2WÉ\%s•ÌU²¯’}•ì«d_%û*ÙWɾJöU²¯’}•,U²TÉR%K•,U²TÉR%K\µb>{€¥¨åTcZ_¹pB–3L!DׇØñœ§yÌýÀiŽðºNÖ4v[vSµˆŽkPj£Y‹h>®ˆ¾•ÔvÙÖÓ¶t(•–dà²'„á™Hć@cž,òCß‘¸±“±ïn!ÓAFcBrŠrH³s¢ã7¦×¬ t5å ’üŠx¤C: Û€ème˜aâ;&šd¤8ú±Kk¦Û¹Ñc¢ÉÓ¼67ð¢¹ÜaàÍ}b2ºG¡}wÑÜ縜']±ê~¼ Lµ"r.jõw eMS@&äfïPý±}7»³LóR k®)Ô/zã!)ÓZ Eb`.³ûó²Ñ£B^£G-î ÅÐèÆ2‚§nuÒVg¼î„ùSÕN£M2gŠ´¤!ôã8g§Ì¯Ù ‚êᇠY}KÒ9<òʾÎ7zNÊÃ4ñÑmàätmá†ùÏ`‘ i×”ÃÑåSàÜŽ#óVÏÐUxò¤õºÜMx¢¥à$M:àN´h}C”™–fb‚Y÷Ý`GQ¹Ñç!kËVwü–Ó0­œ¶A³–ì'ÄÓ~¶s>gïPcm:`ŸÆ¹ŽL½]ß³,gƒ´]îBÔà Ý‘ wCäÙv4»ˆagš:™¦^zÐiœå ;iDVÈàóñǤOaîú1 *ç>L> stream xÚÅXYÛ6~÷¯ÐS µBQ'm6»›¦EÒ6ë@ÒZâzÕêp%¹Ûí¯ï 9ÔJò±  /65 çüfHælæ¼\|½^<¿#'õDÎúÖñƒÀKâÔ‰EäÅÂwÖ¹óÎåÁrÅ“Ô}QÊ®3ËË&ÛWªîe_45¢˜¥n*–¿­¿]\­.|Ø€9þH ï 9Yµx÷srxù­Ã¼@¤Î½f­œ V?,›Å FZÎÿµÖQZ³X$Zë„{i›D‰ÇƒÈhÝ©‰Ûß)³Èšjת®3*A–Û¦]®üÈ-ú»Š¸ó¿¡öÊÍêþNÙïò¼¨·f]TrK¬j0÷ï^Õ¸C7‡J sŒWÚ-¹çíË…óN3\¿Z߇1~V>óD$Œ=Íæw•õÞ„çù5g£è­8÷¸à;ßQôÞsM¿[EQìþµä‘Ûùµ ÐàÅ7MÑ©¯‹¾›KÁ÷ïYÄŠº7YQ7Kß%fxáO>xÔy»AåÐahT¾Q$ЄÙ{Æx~µÁ.TI?îd»ô™++Õ«Ö(l°¢°¡;­< Ház»Ú5ƒ:¢Ý²âpöº(ÕeQÙ:áñ Þim·ëó‹ -²²¾x~ U$@Q›ê`^Ìb¡UüܰLl<ãA`9ÊtDŽðÂ@X¦/Ÿó¬[nŠГê?çÃÊOSûéS‘?:I?7·3ÜÞAh› Ev7c´ŒËÎ ÿ«Èmå{›6¦ù%”$Ð üC›Âxœ*ðXLÅO7ˆä©ûÃ~³LÜÒ>¾VÕFç1¬¯÷u֤‰”ôc/I™" Ïgdg÷ƒþ[vf¥’íUÛ6íɼü˜¢×âg¡Q¸›Y‚¾Ù’3÷ó(kŠNg3 ÚSül¸MîµÍ2dRÌüS»”üy™2PeÓtêu“«C&Úƒ›¦)G’e¹WãÔÁ;!ôöƒßú!£o±sYO—ÅÆÀ)<ùá“àØoÚγ>i|ÎaãVõXÛ°Oý‰¼ô¡(Àò_cî¥ê% VnJÿRuY[ìô„u&0&ðЋ£ÔHðh¬JõÜ`Ö­BÔÍm#à”úº?ÎæpR±Àx©†¾©ç—Ä‹9™ú{–AÒ=v*(Õ€ûà?e;(SxGÀ‹¬büßBŸÔŽi„ô\öÒˆ¸m›Šö«Í¿֊΄)¤?¬¹ŽòX…¬U²'Ek…8tÿ¡*¡;`ŽÈF7Ê1š6VAºßSjO•úÑG=O–¥öÙý 6aø±HÚ\Lba›ŽÔ•Ci!s3M?é´¨I˜IøÄ…´²E±SYÞ²š_茨(õÙ æ zró Ø]¿ùêõÕ Õ¾z{óêû7ƒî#ÇéÐÀ~$çL„ûÍåO‡y! Ú¡p÷ºÉFØV¡}OÇø7Rp8P­¡þ¾Ç¹ ©wðÞR‹ú"·¢â ˆ„”‰H© %›”Ãðžî,¦ ¦Ç„æèË[ô˜Þe²Ô ÓРÓòámkÚÜ0 M¤3Ϻ1ÂútÏy h8ʽŒzå”1ȽSô„̷3$ó?9 e'õ-tïdgÓtÁ Ó€sb<£†Š4„G[±(CÒ“…‹LGÑ èŒ¢¼štÈšðt×Ôö<ŽPð³c&uVîó¡¥HaUízª‰M›•œÀ8å[ÄfèJ½6‡ÜЭ&øO õä£G#B×z|pE–ôV–÷h‹ÄP>XZM<öèš&‚¯&±9;‰è _#€˜É=eÑQpØàˆS]v¶A…ñðo2'·0hgþYYïq€ÈÛÀÂqàæjÒø 1+qÈðÝnÎŒýW¯Æ™¨ÆòÊþœ…Á‰ÍI$m)[ÚRîûA ¥|°*—Š|ïûãÅk‡t Úv’è2€êD5lgOhFuÚ·fvª· o‘l;³ ¦’vÞ;7O±c£§QÊLÖß0M=†ª yz‘5™#'{ÏÇ,ÚmÝ^¼0uvq¾7¿°Cìk\Z®"*ì©=fpúkMžÃ3s’N‚ÉI.ò"8ÂÑQº–• ¦ÌüÀcØ-ëÛ_*š–g"˜3a&¶ö^³i¾0ÜØÇÃ~€Ðá(ÿ±ýP$8Aø–ç˜j±—&ƒùgB e‚#C1Í.ì&—Ð4¯K‰™²5pLÓ(ò6hz+Ëî˜õ\xišžÓ ~Ôu¸` é‚åÔåJÌ<¥³»•‰\¼aƒ` ü¡ ðe2»[93ܬ10Ñ׬Ì¢ÁBðÜÃwú Œ?¿OxqÅdw:‹Â¶ƒç£`fûD*(>mzAÇ3ãäØ÷ãCßÜG±ÇÂ1£öìŠ×ÆIéClàS#ÝÈΞQ³Ù‰e"ìè-·Ï|/òŇÜrÛ;øØãIŽïàSáÜ^ªZµ‡]i½0Èj¾¶×'>õœÁ9ÜP’ ]øÂžcùã9Ö×áp~Ùèùía«óHÕsóÿIH endstream endobj 2562 0 obj << /Length 3030 /Filter /FlateDecode >> stream xÚÝ]“Û¶ñý~…úÒP3$oâÎ8vì\2uR[™dÆõOâXS¤BR>_;ýïÝÅIAÒùÎ×ÎôEÅb±_Ø]€M®'lòúì»ùÙÓWA8‰ýD)9™_M¸”~¤â‰JB_%|2_NÞ{BNg"нEÚ4Ô|Y-¶ë¬lÓ6¯Jè ‹½„M?Ì<û~~öLJ؄÷r?aád±>{ÿM–0øã„ù2‰'7t=‘€rœXLÞýíŒõ©ÌEeùB†Då|•qRrï2mò6…·¨Ê¦­§3zÛE[Õ°N?N󲆀RM6Ñ[_Âß¾>›¼×Я.æï dú«Ëd‹–P\ÕÕšp·«Œº®óOSzYIýgLY™®³)ãOg! €fL£©at/lÖ…5g¸šêD ”Å-¶„WRïm^gKêHëk-XG†’ÖÁ~»N§u°eY”—×ÔœDð œPro Ø-­۬̿ż@Ôm“›þ"¿¬§œ!@óng®œÂplQqh˜l “>·Y¹Äå±§ã´ ‡âÀknA?Sï2kf—vV^Ž÷ÈÄÏuZ"•Û´ ïfUm 3÷G*Âø‘ºR§@–Ʋ%°[…(ëÍÓõ §YˆÙÞ¶Xo[à¡÷ á²´ÝÖfèf•/V4–E…*tÓŒW›¬ÔÔW4šºÞ Tæµùb[`M:_§×5‹j‘¶ZîØ_Ò?I5-O¸þ§(½DË* hnÜÅb[×À ­<ð¹-›ífS"€mÀ0ÞùJB/pRY£Š¼úf]-3ê$s¼·Yº¤ž÷ËLs.ÝíP®@q±›¼( Ž>¥.EÜ‚!³ŽòV“Õf­D}*ŒÐ€ Oо€Ëå1Œ.•I[ä˜äÈ@aÙ+ˆ¼—0üªH¯ HCÿÈ´"×r ©éµîÍú }¸i£Mk袩vø©UmÐ{§}mŒí¬­ÉÒDò”øsÛôVøu~ß±±EµÞâ}‚ÇBbö†»œ"-µˆËØHÍú`«‚¶Ù´.3X!£)¨Q/úèl Œ¼ôIh?µåÆ É;×4 ¤pÈÓJÞ³RÞY)ôæå¢Ø.õ)ý#Û†ñÎ9Áh“à=É<Ñ-Òßž!5ÄEÉQ;ÒÖ1ê"Úð Ìì2YîŽOh¹%iÌ1ÛJšÙඇm­’ðÿ›QšÖôkCÌêĈ£*ß-}ÐFò¦mÎÉTæ®)v!tn™Á­U d³›šFm™ÞhóÆ=â¿9¾ØÎà÷G£¤wlâ‰f¸ü:íhÛäœiÆÞÆâ¡•‡F †Îâ]{ÑÞ‰íÙÄÆé±Îé¡ÂÁ™Œ.?¬d= EâräpA’x¯P€:¤‚©—é>Þ @Z/ qè F¼Ì‹¼½%È›¼]™Å ´~ÇÖŒi¢†7h²ó`Œ@èùâëã8 ç¢ñ›óAÁ x:pÂâBii`—ƒ 8~³ÂH[yI€}ÝÇ~²l]YξlÖé::džI¿4Å'#›u¹eèî[¹ñˆ-}äÙzY•T;[Íñÿ[£ôݬ¨g& ‚¢ÌÌ{óóœ,tÈIm×Ð>Úˆ¿³ì9£ÛÆD¨ÊûæOß;"ëd‘sèF”ðž;ÏÛ]`€º'l=’¿î§²³/¡}-ö,@£tè¤ã÷’:Mà {a¾èì@zß]̹øýYl²Š%¤÷æùïïž1*ÄÞ¡ã˱Yt0RHØXdµÅ–kVÔ¡;þ©4šRW©­ü†>:b…´Ä¤ ±“\¶ôF…9‘±cŸ½œ1-ÉpÕ³sê¨ å&j: Xh?'Û‹CƉÙGjl¢Ùd‹w˜5#Ó1Ž»n7¦T”-¬/³zþ~Ö»Áe³ˆþ!¼mvuÓ‚Ûñô3lšø÷³rÕËwgÌO5™‰ÀO¤¢ þ2E±ÕŒ´@ FC|ãÿþýQÄ1gú.“ÀEr<}W¾âj/}ïãþ/!Nq,|-88iŒ£ÞFýzƒR~$àT¾P¦*¢ã@ÍòƒÌK„%ü¡¤ K‰ò¡†¤Ì­î𔾧˜G- \Õ ìï|9"©†ºŒ§æÓ{>ʇ f>Ãðá„Þ R œX+gXÿ:ʉE°HNÀÍbÒs~ßM=FŒ[=ûÄtê9ÔÓ‰„âÑÞZ{צjå÷Z©×íE"wS¼{ïð„~^.Ä#(Þc ÖŠ³Ç9!–ŸÖ» ñEz§¸†Ñ;“ÊP¹O€ùˆ`x0ë$çnzù ZÝjÙ§õ²ªŠ,-îÕ–í€Ê”¾†ÁDn»sëc» ìnÚxß}Й ôc.A±VFøWaòu¼ LÀUs%xÃÀÖ9ÇQèOÓ`—ÉÞM F£[ û4>ï•sµÎíŠrÆcRÎÓ;Ó¤„]5-UíNèòÝ”öÞ|8¡\ð„X>±3f¦Ë25Ð9БÂB†Þ:!y~ÿy‘ižˆÇïyƒ‹õ™:zvIú¡_È GAŒf-@e¦î¡*þùgàsõqâ€6ÎØ"©³ÉÕ@|ãP×á."á ½ˆ?€CL‹îMõn»XSýƒ"Ú‚¯º_Ä)‡8q@Dpn†¹7¼ïi„dÀ d¸½vennÊÎ#Í 5ÜfÙGSWªk‘e9$¦­o€nm®»¤ªÏ0€û—½}Ò+üû„'JŸ%âì>a€7bÑ#Úc Ö†*?L¢ûI$€=ãT‚CoV¹# g•´â}Œ2N-HŒÎs/æmó½V´/3Êÿo: òÆZ°“9G ¸ÏоKè#]ré•U9û'duE#M›¶úNÚ º0…–y¤3ú·à0@µml•UKýB¬ 7–Èøç1*ÄiùÙ3ÑåOz^ÄÖ6uµÜ.ºü°¶·ÉE±]çeÚvÑ:k,GêK‰»yûëÅQ´ˆãë;‡ >¾˜%Dà+[V„­óÀ‡ÃdÎë.VÎϱPD¿t±‹åûé,ä …”xûƼwmM€?£Dž¾Šä ’¦ӫ¡ÁBt[7¢O(P}iAßþf+#”è‹âÌ^\À)CŸóØ[ÂØÆ›p>‚Cº•{µÜ¾9¶HJâ„Ûå0átñ$öï6°» Äj’$•÷ŒæÁº ̃æ…!¤‘vÚUZ4.î  î6ì¢ô‹cŽÀ’M»%Üž ;5ÛÔ”órÊwR¦-¹…€Ìbe¤¬þo¥ ©¨ÈËÖ„Aøa`>á•QèÑžòq1kÀ:FpǺœA©z[àƒ~ÓÌ0¨‘MÖ³õÇ_­sNÿ‚‰ÐôDç,<ç }]é÷¸{‘³WxYéŠÀíµväY9Þþó‹( endstream endobj 2581 0 obj << /Length 2168 /Filter /FlateDecode >> stream xÚíZ[oã¶~÷¯Ðyie`Íò.Ñè)ÐfÏn/hÚî¦èöŠ­$:Ç–\I^7ÿ¾Ã‹dÉa,׎ 8r4¿á|÷ÞN¾º™|ö†‹ FJJÜÜ„1É8J ©Hp³ >„”Mg4ŠÃ«URUöõu±Ø®Ó¼Nê¬È¡IH‡ŠL»ùvòŸ›Éïà€t¤°ëɇßp°„ÎoŒ˜Šƒ]Œƒ(Ñ®‚÷“Ÿ&¸k%Å>+E„(ÖÊE™&uºœOgŒó0»³†fµ}. 06ËùIîz×É}:%"|eÿ¯’ºÛc^×É”áðÑþsëa°¥k™Ò¶·ÚÞVéï[pŒ5Y­*­iÏÀlf$B’rkñ7`#£*Lµþ?ê4_¦K݇¿bLW©íÍ“µ{«aX‰¬²mÛÊ~£`Nîã*]¥‹ºjZƨ̂i¹¢~HKÛ óvËíµÐú„q&fQíj–÷nYß½˜ÙÀ¢ çÿ7ßܼŸÏØ€N‚CŒë¢~¿Ýl …ãÇ©²ë|0>²–-Òƒ4í²Õªïîú¡,´M»õt`D…~Õ·̲“FJÉ`F9R J~œR&%L±Ö†’°êë;|öô?íµºÏ‹z¡"Ä@/‘$ò 軪ÿ½Jë¢à²#ŠAÜ.º'HEÔ R)QÄ(èŒQ3ë~fãðg]§(Š`ç¹Ð”þ~¡$âTöM¹ypز¦ßŠ»més ·˜ÕX÷a¹‰[£¤ðìG§ÎcŒH,.˜új@/VÑpC±ÁcD‘âôeð¨“EÄ@§D‚* ‚r·.–§"ò2cüˆìÓ"RCå³ìš°ãeu“†ÀP—Üêä:é¤.›}œR&«móÿ»67éW?Ùë: gOu( 7âlŽ¡Ø PBO¬^Gb­“#¹„Ô$ÜÓ x™5~v­¹dSüúõϾ=Ñ·¢axötÐzÙq½gÂp ņ<6L÷e`ÈQŒ£@‚bJ[~7’–6[ÇˬòñkÕ†&Ž &¥¥–:Þ€Óî‡Æö–)Êeu$ ›·»²XŸ íaäží™€^ÌäÈC±A.…' 3Z†œÀ(1â@ßSˆƒj“üÒÒkNíEù1Û5hYFxÏ<Ókxn×·púÎ…3.˜= ê΢Ö/’›Í*3G;hÖø4/š_–UýýMÜëÂdËÇ{C>ÓÜC–½»*1 endstream endobj 2601 0 obj << /Length 2771 /Filter /FlateDecode >> stream xÚÕZmsÛ6þî_¡ë‡–š‰P¼òEs½™Æ‰]÷’¸—(ws—æ:´DK¼R¤*Òµõï» €oôrv|3÷!€‹öÁî³KSÂÕ`> øsyF± ¿/'gß^H5Iäûb0¹0!Hà‡?RÄØ`2|ò¸ŽxzçY\–¦ùª˜Þ-“¼Š«´È¡Kù4ô">ü<ùñìõäì·3 Ðëd$¢j0]ž}úL3üÔQ8¸×S—!a*óÁ‡³¿ÑžÎFWߥ« ªÖ•0I8Qã”zçç?SÊ«r<¾¸š|0ÿƒ¾Rz?SE‡#†Þ´ÈË ;•÷¡Z§ùÜLøwóíE ºkú’øõjy¼Lp!ï…™ÛÓ+D¬žúþËb–8D I(¼g§­ïõ´}2ar4“Å¥WV³ñø÷dZkód¯q_S °~íÏÁ`ÕˆHÀˆ¡”=M{»ᘥhþÅ!æ¶\GE›ƒ\ÌîÞÁY–®=KIå;{V'ì9òí¹§âaa" Qt²¬“mÄ9už‹HØÚù”ãûë)/Áÿ6ÎS„; ‹û²oà›¢È\0H(šý®“xö*®â‹,.ñz¨Èûμ’:g®ˆä©nã¬t!žÃæZ4º”õIÈ¢m‹ÃšG-±à•%Ô?ÅJJE‡Àݓ㶎ÏMVët¯õÞtÍ´ÿŒ0p=cÞ½îF‰­Ý÷¤$ìèî…"¡ïoí~¿t£ð¹Pdt?hgÕªÜÜìà¸CÆÜÆVnšW! 88âÁ”iºÈ ¼KÊ»Ó'¥{ÓÜüÞÞe™iÍ“MA½8K« 4¨GúöØÅ¶³¤àî}ô™z—Z·Ÿ†\zñ¢T…’™Wníxë×ɸÚQ3ˆcN¾¤”¯CöA¾äŸù-_rÈþ ŽP0ÄiÀu@0­]B_®¦v*è¢K‚ƒ• 2$NÚ â3—KŸýÞSŒ¸æ^OÔ©‡XùÜüžR±Å]±B[ìý>äÊêi:râÝò&±p½ êÕØMâéÂ"iûÎXôÿðê£ëRT…p“ ÛKrðXdH ÕŽå¶@®ò@û‚5h9HáêðI,Å,:4 ”  -1“€Ú!½Í©¨}’RnÐv•BÔ‚0pfÆC"7¦«¸ÅßÀûõ5Jßãœb=+ÍŒ»øp»8Ã]ìFìâ:ˆ]|Fì’á( É$‰‹o Œ¥æ69/ªE¢#%îÒUlöe<µ¾³ÓÀ<­´ï©äÄ›òXSÁ3ˆe\=ÃEyŠàÓÒm¹ÝʶýÃÙ6ël[ù ̓Î&Û†¶;Ûp¥Ä©Ù¶äáýÙ&¤´s“V«ôa_æî R»²¢Vµ‡Ô™vq Œ«a‘YÑPnÙ§eÊW-™¢ÂÉ6)ïâIé^2l ;Ôl›ˆ ؉€ä¶GÄÎ4«·¦pg+c> qÚYÜdûè]qó ½eÃðª8ÍÉ;Í“öÎêËŽé•Õt²HáE |¬¡†²Ö{Í(¨g;/βdfz›éfG8TïH!¬³ÄŠB,›*Mw¼¨LºWìˆ×s]#Ó°#3—¿Òë&Ú¿ÂóÓ¬Ž+c “Ejg}Àç2·Ïaiµ0òÀq卿új³²O_[ ðPj}ÊU2MqûxdØq££‚mÛ+»‹Ì@;ÙçíÝú-t|mÒ‘U ¡V[ðö:±ÙL/ M5ð·žÞžô×cÚQV@>k'döÍfÐ_ÞÝ”Éow`*óŒ)›÷5Œ#¢G.›ŽÇ+0C7ê˜Ã#÷Ö¢U¢£#݃˸S½ê]Ü^¦Vc­tˆ’ Jm'ô}–N¿uRµÂ°!p úî{cúæ0¡Ý"Ë¢wZ,Wë¤, f8 wcóÄ<-[ÆÁ,è^¾mÅ«U’Ïš!C: Nr»Š!/«£Ã<&”?°“¡Q6]_}ªõÇgß#„|þÊNÚ€sz°íÞÍ€ÌB{"§’iaä,c“ÄÀÞð®¨ìÌ…¦:šj%x86…pÝŸjcø í:Øè7>k—iš÷©ÎˆC›&@Ï*‹§ÍÄ|K*¼.­|­ÉC•ä6“.}—°ñîzbÄîˆ8ÙYm™d×k¹þZY„ö”E}­­E5ƪÈ5eÖmÀ€æ½ðlö•–n"lÁ,jw³"±´kÇ®²ÂMŸ·Ïø¢vIÐõÍŸ¾Žž³°4tZ¹iª9±šF“5ZÓÕq7N³ºÅV|8ÜžÇyu®c‹+èšS˜&:uퟴªC«U°õ.ö1ÿ?ÕR8y,gq¶ý,‚1-å~HüP}™ZŠï“@ð8áëø¿“’Ñ'ªâÌF{ª4(«/¡«¶ÑÄKðFý³´üõ´\îñ;9‚+Cÿàõ‚^h¥ŽœDÀ6'”=@I. eÂ/a7³: _OÔů®2Æ3ËÙ•–,Ào3¼·ô¸‰¥uö±S§ÄUýŒÒA°0%Ídž–ÿ€ü»|‘÷«Y t˜%Ë E°mÀSÃÁ‡”÷cÊ9Ò«ëš@\PŽ‘dïå?'¯¹z{ù øáúý¤y½7×ï.;Ão®¿Ÿü2rQ3Iquýñå›Z(v|ìJÕ±øŒ¶ËIœ/ ›À€3&æÁpl¥·†˜o w¦³LjН)˜®i9ŒÅ ­çâcµ_­´5@`½/Ðéí¥éÒu(jw¸'°žÍ!›ïÛÊK¶ƒ³¤ÔÆ~HËaoÕþ(S7Çf3{Ò -ý%NOuŠ„‚Óy®Ó`è„ì'Õ”3Ît„}(¬1¦y¥pò˜zû¸ò Ërû¹@lý5îC7^þëõûë¾çMM$ M¤Ë© œíßôBÿv &Ñp0êÌbÊÖä×û…óüÃ#d vbÝðñ^ípH@¹˜Ì}ñXó,‚u¬ %áা •ÁO/È ô7¬¶ôvb¬yš.ÎXÓÓ¥¡ô¦ŽaøÉ²I S`·Ã4a§©zˆµGïê$@.=,÷‘X{ÁkB‘(<ò]K$ä§ðE•€j»vuÞž¦o]} Š"¹ý)»4Òp¯‡noŸW ûÐÖrá¡‘ãB#twHá]Íób­‹8hÊÛ•¾£"€1Iú•Û^!CW ¨·‚ êXFI<ÓŸp ­e½/WÍ}àGQ¿La'Mõ—YxË$M»â5DKs\vÕlc&éxR­™#Ð5 ИøÖ|[XùЪ ç'À¸ lÝ•}MÖ£ßÝ÷_³ÒÊEq—ÍÌ»m½Ð<Ûƒq(™æ­ePͶžÐ͘Æ'º–Gøˆ¹Áa¹t-Oì*28– Œ(ý7ÉZÿ­$ЗÝiaDDý1íÿd%®Kj³M†õîl´xØe7”[¾Ã‚1UcÕ%#Þ~ªi˜¦É©mmÕü¯¾<›¹þ®\ÍÀ¢{Œ?ã»Iƒ endstream endobj 2518 0 obj << /Type /ObjStm /N 100 /First 1012 /Length 2901 /Filter /FlateDecode >> stream xÚÍ[m¹þ¾¿Â“/—Ëe»$tÒ„ÜIÉ‘’ „ú5A!;hwÈ¿¿§<Û«Û¢è݉´bjzªír¹^ž*›˜jtÁÅTÙQ©F$Ç"FˆNFdW(Q\•bDuB{¤Ž¨( Ž8Ú‹JŽRÖ PÑQNö†Úðjir¤ÙfR0SX³‹QÛ(Æ\XrR£ðOÁPQ~PûU9&J ¢ãxüµ:N…ŒR¬0¨P•íWÂ, ðF–d;.6¨V]R{C@ÇU¹bÆxšÄž±Km½’Kí ,:3¨ìR†&A½Ù(±:ðÚQÄh³q€j³IÀäâÚÑÉQ*f'Å–oêM6 ‹ƒðŨìrdƒf.6/Xrj#'•Mª”\nK-øQ¤^pÁ›9ØŽReº,*gm³âYa{–1n-¶ .Øù¦ŸT]‰Mx­pµ$¸bKE®ä"X…DWj“DØ-/¹Jd#îjÌÊ®¦h+3ªl+“êj![™¨«ÕŒP2»ªÚ¤JNC²ÏªÙUb›KÖã¾äà4¶}© °åö¬:•#…7J´ñ`FZ‹I“Á"ɦÃweûPà`j(0ÙŽ¼27ÓÂÚ(”ls–RÛáN›Ë\ ´¹4RŒþÒì\àa°ÿÄð”HFÖ6Æ%f²ÚR£›ŽëªFÅ1÷2W 6E–öÔj“Ìü3†fœæ ‘’^ %Ÿëª]öã“¿n(&¿|J鎛šµP‚ñ’äžg‚‘Ì\f¥ ujÜÐÕ£˜!6‘ *ò õ¢¦ÓàC]åìÛª°’φW´x¶Ì¤ðè bÑÃoi$72â­<)yFþ\/ÏqG©Ž4ÖGž¦¡ŸsÔ:kðáaËàmnš¸Fo /E®Äkyø EhFò@P‚þØÐ¬—høQ©e½ÃÄHtCTeê¹tÄÝ † ÅiÃ-Ç+4§è3D°ö 0“ª™óY4hÉ Àñ66ZíÀHÀx'¤ „€k ŒÜ¦©#ô9!rö¡ÛRäê3¢ òWI«7¤Ì#L'¸Mžxê{3Í#à{×sß…R€~ã–"#™4¼¯Þp*@§7˜¬è‘Y׋@rBl*zŒQ~g°ÝXÔ Ê Ï#²$Ýù vNB† ÏÝîoÿ‡µR 'ÝØ?<¿üðîÝëÿÁÌ9Ã.­š]ÇšÙ[Ûg%wD0AÒ]Ç 0JØ•ÜHK,k¹ É+­]%AŠûÜO÷—‡¶‰O“¸9ÛkOQ¥—eŒ§À(ëþ9]ìcÚéòpm]³Àçfs×ûWÃt}ìÀ´gžÆ·Ýû®™i†íÁ|`wϺ+¼í,–›‰_câÖ—2yZ[êHDYˆ¼e!êBè Áa!h!âB,#ó22/#óqä×Û8^ÃÅÙeIÇ7µžUò”Ëб›H94ƒ‹1,¨lC68¡ö‰1͹q pA‡PðWÆÔ@”1Î÷ rˆx­Ù ¯… ±ñ„ØÕ…~îsO]‘Aª¤û®dCž%lY`5ã`yðW¤ú„±@ZL¨'䨙H:•¹/c艇± 4¢òÃÞ•‘îAäÀ¾Z'ÉÌz½‚À„½^ä>L¥p°ÏAË4湋ó("Ýœ†Ž·ÄU7½DCmà »`ëQôOÈÃC…œ¬“rä„°4 ´AÁñìPmIò(N9TÛ±v[ÂN5ì(µ&àuCPÜYÌÙÁ.”Ö¢C©å­â l.ëË|þ¼ñaø×¶G-ÍJêE8¾]#Y/ÜÆ'Qȧ–ßsñpn•…½”°®íŽÏ?\]í¯6TRD9ÕîYH;'³¦yž ¹„4¡>ÓûÃÛýå–ð¦mw?`ò)KƒGA ×Ú™èJ;ÉÌv“êF vNhóÃavŸ%£4‚**Ž€ã2?¼<‰,h×[y[F¡o§ L'àÇ»Ì7¨-W×´’ÛZöÐäJîˆD¥ë™#sz/ô8»辈Զi“Vú¶ýzØ–L•´V´V´V´V´V´V´V´VʖجY—Ý×C`.­M“ fg†EœÐ¥Áç_ÞOW…ß÷‡Þ¿ß_¦q{ Èþ|‹ˆí9ïA±«ñ(P,[è%=|‹|ªZÛý8;×°V²†aƒÞ"YÉ3¬ÖÛýÃDvœ õ ¾®ÌŸ7Rðvi6$|må~&;Ø!`mþ2óXÚ=AÎvœ•ÛIº¾°%ÜšÎàì~1 ’âD2`€2[ÉtÇêvA[XYì‚Iµª  Ñ|VœëÃÕ‡áðéN>î.¯¦î°åµKÕ.µÛ+äÕ`±*B¯‹Q-­Öp¸Ë|sHk .ÈJn!D°¼š;Ô/´‡>ÇmãϤþšÛº“Ún]1rQY;6 —¬e6 cíŽuÜvü",«¹ö[îóÜébmЪ²ẹ̀߀yÊ‚yê‚ytÁ<º`]0Þ`³Ð›' øÑÛ' øÑ{?†)ìê«amÿEO> stream xÚí[Y“ÛÆ~ß_Á§Xåan`ËI•¢Ë²ËR¢edWÉzÀ’Ø%  P«ý÷éž5q¢q§Yݹ-çÝ«‹ÁÓò‡çÿê}$,€ð]¢˜ûÜ3D:JFkcæK.ã(+²yyW®aZÂzÕ¥-®§¹}ù4dàÒUev@[“Õ¶-ê_Ù›!‹Ñçøn¶ ø}G¦Ñh:sf•ï÷ûz†Ã2¥0èq¾}„Øä‡ç—Í€:Ùö%O}<Ž>×yã¡,[åö¥(kûÒQ~™AÃsšá0ìˆ]ÍÔ½¼øuôæéÏ/ìc;x‚åÛÂÿ`ßÜØá}W®œôÆ6N^w$ʃ?+&Ùj‚&¾¾EÓ(lm4‡WkC#À§nŒüüÔ„µ“õbáfŸil6n|»É*koY?j¯Ê6««®¬Ð˜}ÍÆ‡ÚbuÓQ08 ê›|\.r]ÛâKÇr ;£×ØDtü;1‚ }pÖpÑŒJ«ˆÛ>Ûw <€½5´ƒ­<*Ü{•ÏaÙqM²bã3øPT¢;l˜®ÐØ}¡ÈÞbÖ «ØPíí„‚EMŒù¦¬¯×Ë%âKÀLkf~ã4—ýØ8_º¨Šîgó¹·°7îªD$ܤ'£nnFI1IS… 4I¹ƒæ?†LÀ»Ö¨(ª¾¼Íg0okm%Öh‘àÖ@wЊ(ªÚ: û$8EÁŠ¥Ù.Á1î¹@3úbM¨/uwO‘ŒHž„†PŸò~d‹>·–ßjÃöøÌiõö-š*"`_ìi42óV%˜{½àg•·¶xç‚  ‹éWZ97N:ÚÌ{€ bÅn±G΀SÆQƒ²T÷9j²›£ ÏQE’4Á0,¬×ž£BƒmUiyG•fbÀQc¡å¨:µÅ q@ß²¿ïƒTU§Dÿì¡sW8¯[²º…­1±'žOZº]å0q`/ãì™v‰[È "Öù%YM÷“U³=dµ£õÿkøï‡ –ù:¯ÂY…\¤¿eþLYõ-«ð-«p”—«?„—)ߟY“ý„Q;Ð!ËX4lf"n AÓ3n‡¸7ßÁ8DT÷óå2GÖDyd#|-}ƒrCñŤF¶³Sèb§Ðñ~:O­ ˜u6+Üg*àUóYîäÈzekîgµëÿ¡4 +›t–ùx†Ú†I®‰IÍVaº¹¶[ÏÆ[Žý{mW_`n蜬¨='.%.,{ód.«·sæ6Û€3'i¹Ê«¼¨ÑSA>ýÖ ÎæzÁ2ZBé›Ï­•mcs!PÎ1±–bÔÏ®uL«¥M5ÙiÌ‘Ûo÷§–A‚”Î8#_ øc\Î׋ÂY£É@„o W´&þÊ|›uî­—&Ì«úOÅ»Y¢ eg`gŒ¼›iaž;é—ÃÃ^â­D d&DJÑaîU 2îž*#?ë-Ëé¢m/Z Í ÀÕ/»ÝUÇ'ÚÕw >~è{`rµJÏ€Çs6xT z‰ÇÁ#žõžΗ@1z|ô0Dž¦L‘]eD"TžÜ»¥¾v…¨èfnD´0Ùb¿Ûy€½kN>Lâž¿´"ÞÑ#܃+¨<ðÎ!ØO¢¯èãO0’@;&9I„nñxúÓP´ña Î+—2¿Ôi½)qÜ –ZÖ€/ýHµ{Ö߸®8LÓñaéJÚ Fº3ßJÍy 6Ë —À–ilݤ´~ÞTÛ3<ªÎÑLR»àAvnŸãi>F]­Ö¾ÑÔ×–+ñ—eayYà5ø²…ù<Çûc¶÷8+šo”Ê˺sþyÀªr46÷Lþ˜Â{.pÁ¸ªPm3ƒq'`QÉIS!˜è'kí`°‘‹îŸåγ»ÃV”Ót .(=]1ûœg… ¿fž&¸{þÎ@å›· ŒÍís·Gq_Ÿt°‹Æº8=m‹Ý8C±r·Øã|ÁÀÖ ¦åY$ÖÀi±Lvrå_¿¦T©]¥žvóKx1¥ÍHÁ¯6É„UîBÌF6oŸÍU™]·Yô¶Û,î6Sç‹]Èým™vÄ&NYÛ%°Ãf‰ûâíz>8nZkø=è±l·Ø#§Å9›i‘@ùq˜ ˆ”(R%µ?dØHQv&Ésä$ Ãs¤«awŽ*ÓÌ¿‚7¬Ç³œ/ó®]¾²I„šÌ´}Ž{wñÌà0Äk†=À1IôøÍYIJ„hèõ8YɘˆBŽÇ—¼sÊà®c†ÐÓ4 C´«ÑÛ${×Eû÷X‡C[–¼vXí¤ð]PÒÄÝ›—_ü:zÿâÝV"`Ì|¼5ö äJªÏ€Ô»g@(â’¦_óg*þhDšJt/ý$)á~K•ùÊÜí­*£aGkçÈŸ3· QjŸÀc¤+ÑW±¼¢©ß5Y›€ñ·‡\Ñ]©µ¤cî =Ü™Ãâ¼èíò‚ÿöíï* endstream endobj 2642 0 obj << /Length 2729 /Filter /FlateDecode >> stream xÚÝZ[sÛº~÷¯àS‡š‰âJBszfr±“œIâ6Q:msN;´HÛl%Ò©8î¯ï.J¤Y²eÎô ·åbûa± 0 ®‚(xsòr|òüLÈ !Z)Œ/Ê9‰U(-‰Ò4gÁ×ñÁÅIøjšÖµ­¾®&‹Y^6iST%tI%¡ƒßÆ¿œœŽO¾P˜ h‡!%:’Ádvòõ·(È`ð— "\'Á­!\)ŧÁç“?ŸDNÊeI˜Ä*­ìª';#qÌ¥"¢dle?ý1ÉoPÈÚȶÁsc;Îà×Cr"}¯JÉø¦Þ¿cŒ™&"¹o0 ¥k\)”t£ TŎدaÕ™e1σ˞éð»ù•cðÉ™ ŒÓ1[¢+˜MH1¹³¢©OçójÞ·Ú6ë0ñ„º"GÞãˆý,¦`íW֨ƢŽjŒG°6º¯Zs=¯T†·°o8aeJ–U9üä0nFjØ^‹ÚÖ'U–ÛÚ弚Ù/&¿Fkê‘ß^çŽeY5–ÂLô}Àé|0„F‘µD…wn}×ÍåÂŽ•²cv+õl|5!7Æ2Õ¦²åͼÊ“Ü6fÕÜÕŠét1+Jðå•Ëë:½ÊQVbyo³³ÐšDš=ÚÎ;¶ peɶö|w¹<;ƒÔŠ0ªZwM¨ à³iEá‡|v‘£eXž-ʉsØl݇÷÷YwZÄàR“BÝ €/@q‘!W¾zeQ9½Òl‡Ù»Y Øbé~d4 ¡ÚeÝØÎÏÍÜ¢ê@‘žŸÅ¼«¯NHVd%¹ÎÓYŽr„Ï,yoy¸&J©–º(ˈh-Zš‹›â‡£„êå¼u“FßóIcýÓó38µ4Ð2ef‰GîhòpÓ$–´%˜V ñ&É—D?{¸ X‹þFõ­x2ÉZNeúcË•×^5IV¢oY0 ¾lIó°û¶^¢êö§³"‚ˆˆ·ŸPÏÄ`…he)Àírͯ)ì(à 0®Ì~ô"ˬ;IKçhfèT¬wð(üÑ䥓³ã¥ZjKRÔÆ-mqŠÖÕ!®}.°ºø@‚€wÞgÅÔÍ[4×®f‹ÖWÎ];LÀ ¢ÞÆ÷Åœn¯«¯D[×Îpšé¿Ñç¶ûÆy÷Y Ž~Ý™%¨Ñ@Ï C38#ŠÉµKçî[s,Š©c\”¶»¹vãfZþ yCv‰ëe–vûš%[Ö >D_1užÈcŽ-§õóÇÙ’+fi“ÚZQÛÒw*Ó,Ë3ÛwÏóÑ`(Aµ¢±]45V.ò rwšzÚ’O§¶†PÁ²*݇ե¸Om$8ýѼ}ýe4ºuæiòþ"´Z:Ï}éüs½< ×b¥5X ·²T½íAá¸aKgž×‚ZÕ07ª`ª‚¥µ6ŒX»N§6F±ÞÆ_¡ßÛ†ADZ‚“ÇP‚…/ÿ6>ýç»ožÙáÏoÏ?;í÷çß U‡N´žm[JÁó÷ç/Æöëó//ߟv:¾ôxc2ï´±Ùv’>V jª%¨œ"䵋KÛs‡(¨¶QC DÃÌ6̦€2õ…FŒHÁºGˆß(š/}`åf\éc%1 ûWjmßWzuÚnì-ÆC[UšûÙH[K±ìãr4º(P Ú†oFJZªãµ­ÔÅU‰Û ëù·EaÂÐt ‡íCf]í¡Ëhe«<ÎõÌv¥¥ae€Zº rÇéåßO?Z)<6gî|xÆÌØCÀ!­Nu™â? çñ}Qo?Ú‘\iÉfiוqáN%æ6b¿Øò´xEû“‡[LbAwêÉ%I”\Ós;Ÿ®ãÝ49ÚÈúì ©¡>3Ç á }¨™wYYïeäÙÏ;Øl±±Œû6>›á¶‘×Ä"ôX>ÀÄü‰L¬~/s-½&Gš°þi~°‰cÍö±1Óô~wølK[ußÈ_ÊÂÜèmVNøÿõF^aøm¶DÞÝä^Öðjín Aâ­I:XlÉýeQ¦ó»ñÅÔÃ[rsß{¿œœïq‰ü/ÀÿI@Øæ-D& „¢IMjˆ=6×. Eå>(»$».Ò—cÿò"AhºÈ?õX˰.÷„Ð{Þ`tîp½w‰ë^¾)°ÄxÒÝÿ ¯Ó9٠‚†;^nzüüžÃ$æe;Þ¥Äiê—¾GaŒï9L€GcûÞËogº>_ÏÛK B•I•K ÜóD}ÿU<5ï>ôPqÖrdEìöž8ã6·(1°_¸ÛlDà¥C`+¯M5ʵ”¤³ƒ»÷~®=™çi“g»’ˆÐD í´ÌàØ`x Ɔ°gEÌþãA¡Œ!ÝB:µŽØøöVB’x-N5!ý~=HP?>»‚â‘~nÞÅÒ©9s ¬^ØÂ¾½¹[SD[U6iQn&Îk(µÚ;܃ªõžð|¬®;@„ÑèéÑy Æ€J“§q’B„jà)HÉõ¤c?&…]yŽŽÂÕõ gi³/ ­÷àà³ÕG@ä1#"ñé2VòÉÉi°"×6nêdH{Aò@üì ô H^ß7á¸(ímrç°_ŽYuë}~pX|¼Â÷CùJu„ò(Œ %Œˆ+CÂö8¼1Ó„”ãÑ:édšû¡ð0Q¼(쉲‰BÁ™ *±Òñx¦iRd¬ mñ¢žÅØÒØD,–&G¶—ܽqœ0Ë»LSįa\m|5ìåYîrƱ²’rYÀce )em«æýÊv˜†yÏ5£N[|ˆÖ¨‡é,ݨ}ÅŠ |Ý·®/ŸÝ4wnÞåÂx²Áõ÷tÍÜ+²yPãîA…õâæfZä™y}ÆwÃéx@ñ¥õ&_>J«þ%-|eßz öZXÎLôoîÖaä:Åé¬ñ øm €Ž"+fVÎùŠGÃrÇ–¾°gà+ŽÁØø ¦ãñ“Äù*""áæá#ŽÝþt§ÕËvzŒƒò;Œ®@žcKé6 ÂÓ¿ŽÿrúÉvº?0зÏjžY¢U°¤Ú)âhc×ÀXW{CÓIred6HLÃ,ú@Þõ1ÝÔ–î‰ñÇ.ä$Ûè~¶„øŒ]éaQ"wÅ{ýÿ’Û¿¦¾QŠîoxpîpåŒó&/ó9Þ,¸øÅ…ÑãûºæCê¢ê‚#ˆŸÜû2G‘QÝßlõöº|ó·÷îÏûW¶AØÝ•yDÌû?õþ }¶~ endstream endobj 2666 0 obj << /Length 2170 /Filter /FlateDecode >> stream xÚÅZK“㶾ϯàÁåPUŒAbª|H¼Zg]å­dWv¥j½.É1–È1Iy¼ùõéÆC")ŠšGrÁÐht÷× 4EƒÛ€?\ým}õík ÑJ‰`}0!H¬’@éˆ(Í‚u|¹X,yœ„ßoÓ¶µÍWu¶ßU—ve])R4 u´ø¸þñjµ¾úýŠÁ4`=†ŒhÙîêÃGäÐùc@‰ÐIpo†î!a(ÉÛàýÕ?¯¨“òøD†Í­ãünVþ(&\DVþõ"¡a×Fº1×o_sÚcÀaq=ff·)p¿"ÌêÜ´xØnêý6·ÔºrÄ<]~vc7E¶à4ü;v› Óο8†,xMkÕ,~Ã)þ|¾_0·q‹”­°)o7EãÙ¤•mÁ“EveÖŽ€]‚üK œz«!7¡ÃtÛiþÙ½äy‘ÛfW»'jÕ5VzðaÉ% _¿Y¿(é0±þôï"ë,“_iDÓm»ÝXJö+¥¼9ìk^mõ—οø¥K'dQↀ #v)Â#\ h9©z–[:Ó-'ZüIF$áúõ Œ'ã½­· N5%†Æ8‘ÚE‘ÕŸYaìy!—<8kЈH1» ¸1E\|©~^€/â˜kAx=ÂQ<Ùˆ§$LÅ}žØað™x&MÜ Œ7Y(Ƈ˜†ç€Êr’1ÜÛúý>ÛŒ=gíÃy ²ÉgÝ/òCžØÁc†Ðg6|l¸   =ÜÞzÓØ™‹*å1µ5£‹oUŸMv¦À1 @'ï¹6k´&Tó'¨tÞå‘/ÕócéE0E1¡ŒÍkB@ ƒËÕ˜¯Ž9ègüD`œéz7 ½£=è¹%½D_°q"ID]Ì|]víªiêæ ¡÷ÓΨCíx N«g¨}eô*´0@š{ RkŸ©}TuµüN)`¦Ûvi·wƒì×l¹².Ò_"¤9QHÎíXn¼…ë¤J·ªðEíqÉ(w—qH¡p|ÁË.\éHÆV@èJïî¶%Æ|Áv¦3Å 9}5Fú¡ú ,`Éʳµ×ÍÆ¾àw7¤ÂÂ"[Nm!+ÚA…õRPz‚³ÍƸ%Œ¿@Pz ãK·\¦…ˆ‡Õ/õÕ¯3µ©X-ù°Ð5UçâDKé—¿ÁùMqñ|妉ñsÕ%ÿ¥Ö”MK¿î ¯ƒ Ìצç+88pª®Šó}á_\á›ã ÒláÆJeWí¼˜@"S¸ÁÖ'Gén&Ð7UÆyD©5~ ³µ©cÖþ{ñ™ÝÆc¦rå†]ò :t• ‡í“>ŽÊ•Ù¶n7fuÓí]]å¶*|¬¡£™ã8y£`²Ó_òoÿ_…—e?@:‡(b÷ýåæø1Ì»þz¡Áð?¥3:³ONyä(ñ5®™öUDnúùó…3è)Ô^Õ)ŸoÑ¢oÿ¿·ÃÙw endstream endobj 2684 0 obj << /Length 2392 /Filter /FlateDecode >> stream xÚ½]Û6ò}…±=ˆY‰’(kqW ÍîæR E¯q‹;¤A!ËôZYòIT6Û_3œ¡,Ùòæš÷$r8Î ç“òg3öêê»ÕÕ×÷Q<[ŠT©p¶Ú΂0‰ZÎT •³ÕföÖ“á|!“¥÷²ÌÚ–†·uÞíue2SÔ€bå/½TÍß­¾¿º[]ýç*€üY0 ˆÔgùþêí;¶Åïg¾ÓåìÑ¢îga¨n,go®þqå¹”þ—q"d—÷óÐ÷ê&×óE£ÎʲΙA„dÕ†º™0m³Þ2¸Ô(R;†fV&¦y`©~~u5{k—ï_¯Þ0qËð½Þ× Pð½'¦·þ·Î˜/b?ð¾ÖæAì=¶îûit«Mš²¿¢ÏË—(«ionÐnn@èÀûh4˜ eP~óc¾HTKŒˆk_ßÃE§À‹TÈ‹„ÓU*'ËËÛ¢*‹J¿èI X¸=$ÛD£M×`<òXYN 6Ú^ nt•ë ª´6ƒ(˜ ¸i¦lpÕ›©û‚m»’ƽÁà¤íòFwÊÛ²ö²¿ž1†ªµJ;°'Úâ´>Ý#Ð^“ÿ {ˆÆöÒu²D˜ î¶Vó%ȲF‰JÍØCÂ2*‰6ˆrj@Öu0ØU²B»?¾1u8þŠÎIÂQV„Šz¶¬~<4sêêÅ„Q$–ªg ¬üï·¿LðÆ" Ã#ÿç''"T©C(ªCgÆ:ò^LPŽäPëÍ9ñ…\*¡9Ž5F–ºyl £É¹þ6áX‘/–i/¢i:=q\uôlL1ªDÊOð n«Ø!5:ÛÜf&»ÌÑ2êñ·YÙNdú4I֙џŸt42åû‚-K)öt•xMŸ€ŒÙ~´Ì·H{œ±ã±0»\°ÑMÁñàäªGà §R\G(d>ŽN@¢ÓdfÔ.žµ]iÐ%ž'Bœ†ŒËQ- SoÛU¹« –Þ”ö2¯g¼Òg|€Õ”‹ ÈnzC .YÚžUWàÞŠú/˜µZZ$Øï-d¹ù½TJ)W‹XR¹1‘1Çê‡]à|.?R­©Êʇ!¸BâODÃÖo9'`Š–\Õå&æsEëU¶×LØ 8\Ëë²ÛW¼Z0As"B<!€‘€ ­/L” ŒTr=¬1 –,¶Œ¹Û¡á#ÆžYC 1ÀcТ½X¾Þ`R1O×LÑ­”YYlhz¦ع/vÌæzRŽëۻ߼^ý‹üBÌ 0E"{ïÿ†0ÆE>¤©°]¡ˆ¯o°fŒ¼V듬Ý[×C'ÍÉi&Þ¢FönWAAŠ/[ /ä‹8‚#»ÅÛÅwx`2å«ÅÁuv8èjs ³åÑe@wæ‰À]r6À5ªakÝ£¥FËÁQU"do‘é=­=îtE#¨Þ#/އ%•1áRH_‚UD…¬ŠÁ©‰3šGÀXžQŒH[BÊhú¾"ž+šmÛiB óhv™¡ÑØë‰¨Eì0(‹5UB®U‚ÒÕ«üÐ!Øfùi/ÆÂPš:C.c[ÌCé°æµŒ>ÇJ]ù§u‚Xl{×MCA &;Èg¶ç² ×uôM’òOÅ…Q´n¿vû\70!^£2vv ¤]Qd/6Pß „‰÷zK8Œ¼¼±b®LcŠÕ8¿ë徜7‹¡aƒˆTl¦´Líó¦ZLKÁµ˜RÙn²š 6ªÁÅÚ„Cš}dK5šÖ¬}À×5? &£À½ãÞ AEY~š0S¦uJt¬± O^ÎæðbJÂÃÏcÑÚFÝ¡LBæ!UšÈÙð3 ?œ¼8ØË8nBs ùŠ@g}´ÉŒF};Ú\ñï èvÒ¶G~Ñ“ØÝ?W¿Þý|ìQ†¾bû¡>ÓB`îuoß>·“ |nm,D6ÌlS­,Ì®ÝM6±Ï”ž'‡©€0¤À-xǶ’^›†è¦hßOUd?*/,÷© Ÿ°~DzM]Ò"•³ ‘£²Õ™8µPˆ3ô *_ï³.>7T¼cÚ0ˆe²Ñ¦Ygê}f_0ʧÉè<Šnukœü}ò:ßYw<î­óz(5T•/†zåöžò¦Å¢BÇ R|Åÿ“Å€B±É^¥¾-öäCíÐ~¢XA º¹¹ù íÍy9$¥/ü¨ïsþ:Ñ ¥"YöSYSÙBf܃}ó)*zÙ¸oõ ˆô¦øÃ6°”ÏÛ3åÇ£ölüÐs¹SK—ÐT¦cÅ¿Òæ´´ë W mµAûek°FnÍk?|¯qo íDå‡òßi6l]ÎÊØøÙиÔ#)žµ¢…/ÒTD1Ü%?«ý„–“5KÑò¡äoÇôN¿#úç«´ˆk“¯ìÁXfž}eÇ×uöÊ>¤ý"œ"áX‰e=GاŠ©¿q2lâÑ‚ *ÇLAqà’S)ÜÿE[˜T‰Ç4:UCD2íCܸ8+Z˲Š`%;÷u!{(æ0Ññ«ê‰·ý'+çîܘvz(Ç¥KÀnxŸ}©Ÿp «ž'û™þö%„§BÈÄ~ â ý3äÜÿB%d¢¢áŸ¸e* SsA¼ÒMf\xuqy5‡æ´ã‹þ!ã[ ¸þƒ¶4fHrãÇ7Aê·<†ïÞ*ÙÿÉý´ÅèÓ¥ªj"åƒ]üÝö7Ø endstream endobj 2608 0 obj << /Type /ObjStm /N 100 /First 1001 /Length 2541 /Filter /FlateDecode >> stream xÚÍZ[o[¹~÷¯àcûBqn¼Á»Î¦»@» Ö)Ð6 Y>nƒ¦–!+@úï÷Jljorœ=•6,Š’ÙáÌ7C²5 )°5¤æ \kàœ,h.Þ£!kö†…Ò:qM›7J ä]9a<;yNHˆOXÙ[ÖçRÌŽ?he_#”½3¡³˜²Ï×Ðê«3*Òªš«L–š¯±ÌšNÐG¥úÌä°%'ît„ª:„©ÚŽ.°×éJ.ä­DÉy¡IJ÷R’` 6´#´0ZÍga̲›™1K­>–S&`#+M¹÷Õ \Ì[-¨²·$µâè ÖÀ0­¹ÿ*Á’ú¢Á¨zÄo’}[‰™:Ï‚¾\{_ VÙ÷«ÛúŽ0AN¾ÕšÐÈ|B Å@„¾, @þ €m߆´\Í;³}+âƒ3ôw¦ðkÁ^Ðj!×ÒǶP¶Í2ÿÕ(é*7E]|Z,ÖgÆâ¥«7Œª–>"‡š¸(¡Rî#j¨Ò…†I«_Ú©®'´(ÔÒÅË«-u ZÝ\0Am°(ôihÉ­;ç†L}õ½a º !¹ÆÜ°ÝÃ@[ö]bæ&®"-öï–—}fèÒgFË’Ï‚©ZÞI ³Ô§èkS¬K jðEpwÓ)~´Û ƒ’•Þ‹ã`>iBsg °¢”:#Õ›~œ2¦AÓÏ“‘7ÉôãÍZOž<9Y¼øßÍß^_¯·'‹³·Ûþýϯ¯ÿs²øn½¹6/œAzµøañãâô%õ/'‹Ÿ‡Õ6¼ÄjÑ`Óš9Jf­67àYîÛðäIXœ…ÅŸÖ/Öañ4üaõfy{{zzõz{{NçôìÇg ß|s‚ÿ30Ä%B'Z¬ødm‘pTüMâ燧›5)ûqOö¹ÔèÖ£BQO•Ïù®‹T‘å ¹‚·ä+)Wq±„Ócó±L]©kª±â RI‘àH”ZT)¿g–ÅJ$?@:Áöq0cQ:¸ÖÙ$"!X¬ˆ’VDr”\dçv»y»Ú~$B|ž.¯·§›a¹fW³¨î­øb¦X=øAù>Ìßõò¿ÃíÍr5ìXœSVÛ{^VסÆgxùTuçËJK¾´‹”h•–C¹LKDö†]j¢Ú.ë‡ ?Ū99O?‡ÅßÿñÏÐí§´$s=]¿}óæÕgˆ¥›»:øÓ‰ÔØŸûú©Ô=ÒL£F\†§RŒÒ‘ÔTj8.ùh—ÏÖ×Û®•gpù±û°g !n÷ΗŒÇŸ+Âìî œJcÚA-ùþÄP@¬ý£µÁº‹ç›õêl€Å„Åó§ÏÂâÅðn^Ý7ÂçË '‹S°7\oo_±w[»]¿Ý¬†Û"ë}._/¿[¿ Ý<*–/7™Ëް›ö-î¸Óùé°s×À1ß÷ÐØà±!cãŽÆÆFelÜͼÓ«¹âa‹ŽOÏaÚ\euøõ®QsŠÐ¿yt@¼‡V[L,ggŒÀ0ѳRŠHÀ_ŽÀ“çÈÿz3l–Û×ëëŸÖÛ³·77ëÍv¸œ1ŒdŠ99ÀÒ(ž­ ì‰<}šÊè¼€ë"E4‹Íàφ°&°3µÃÛ¹àœ\²pŽžÆIC8Bà¤=BJ€ XŸ~)UqÀ0@íðìd6¯ ¨ æÎÕQ-Sù™7‘T¢ç¯ÈÒbFj*pã©"çƒ?@Ž}xûAU‘GQv{†¢ /H$Çí+Øé€c“0Ø}â:ÑýÈdjCÒE4•Zó¯à¤‡¨ ™ÍoÅI÷ Ñ=Ðôk8é«¡‘>ôë¡‘µöˆ¨í2b$¡‘ŒÐHFh$#4ÒɈ‘䮧̉ˆüHQΛE>Û¼fñ¡MjžtÖñùýf³ÞÌ0ZücT¯;U tÚ1i4™©w«áƃ쌌!‚²E9Áºg ¦k=¼cTÏU‡³ìê:lÀ'\܃Ÿ“5¯ÎÆòAÇÈâ$¿øý»mO`/°³¶*d:| {òU»¤ÕUm3úr8MáwwˆC¦sű& T%:lúß d^™ dŸaæ·æÿ3ÕÇÄ=¾‡D˜¢z¼h^/û=sœ€‘rÈA)œ‹l7?\ÑÛ®/×ççþ7ù?™Ñ¡”ÉK³n†@¢ a³îWZâ#œ`‡TõŽE8 ô›øé AƒmôD‘{ñR§R#A«J©{ºMùÿB--áÓ¦R#¼¤2•š ÇÔ²îÕ•î!©©eª9ŠQ9Џ²~=â’qɈ¸tlؽl„^6B/¡—ÐËFÄe#â²±*eã6ΜǙ3ÍŠÊö> <ôÛ†ÑGA@ÑêÅsº¨3ónŽ\›_G£æüV‰ï£(W -?‰(ÒÁ“DÁšWËqÁÁ½4òãy³cèGð3óµ_†fØëŠ)RÝ%ðŒca5EXóáëf A¾nø-{»ú÷¼Ìí3zG–Íß…ì¹cÂZäH½_F·þ,¨!Uõ'BQC‰Tà"‘À7ßS ÁÌo‚úm4b ù“Û\£‚¶Üu“ ‹šÊWïlÞ÷‰÷PŸÂ2•škôrÖç©Eý>Âïq(Òƒ%ȇæö[ ýuÉPìîêÃ1ê´¹‘H O¤8æÜ¦SAðÓ‰ÔìuV›LL~ÚA$ 4!¼¨Nդ׶kžV½—C|îÞû}ÚðQB1G ·ê§ Eåi EnüIB‘Ç!9BSƒ2¦eL ʘ”15¨iÎŒ@êÌ z]Ù‹¸êKO*¡ÒÇTáÏí}Rà¥Ùc&ž¥4÷)R½T —þ¼2ëWE6ý–^Ø…®V«‹Òˆ/.Òꪮ’䔾ªíBç ÔÚÓÍþ!(•ˆÔ°éÌ´Ç/–o†9qqŠÅ_jeøg©?GȫŚ|„÷‚ AÑïùQ†¤ÔÃÏÌFfÀPþ”NZ¯Óp±È@Æ~!8ñbbæ• Ú଱~BƒCà^ÂQMÉ­]÷XPå€áCb¿Ô÷Wì9!€¨}ú.¨·´Ú¾@-¹ ÃgœfŠúàÛ®çvŒG„°_ܵµé endstream endobj 2709 0 obj << /Length 1988 /Filter /FlateDecode >> stream xÚíZK“Û¸¾ëW蔢ª<0Þ§’Tmìg7•­$žìŻބ)–ÈY’òØÿ>EJ ¥ñ£ö²{@h4úñõPQ1˜cûçÍ Û&üýÛíìå sr)Ùüö~NCJê¹Ì’9™ß®æï2ÊWTéìÕ¶hß|]-÷;S¶E»©Jèë,W‹_oœ};ûmF`<'=åXÌ—»Ù»_ñ|/uX®çOnènÎ8 %vâvþvöïèìu•)]…B”‰¨+"ÁtqE0ÆÙ‡åYµY’œd¯^ý‚1m›ëë›nß^_צo~Á/®¸¦Ù²*›ÖvÒìm[oÊ?àOvs/oë« ¢4vk¯WûŸŠ± g/üèÂ#LD}WUÛ”H…¤¦qÕïuÑ7ÛbRƒ*ñó„˜ç0€yB ‚ó8ï¾Ø6&!æHkG¥”¼¢š;s^ð˜fíl¢²¦]]_0˶ªýtpYO X€°¸ÀŸ äNj |*üÈÃþzNNÊ9 Úò½Y‘}jüR¤å¼Ó|z—R %øÑ.ÒRœœÝ%HËã]ŽË±1 ÿH*lHß)ÇJ$DçùMÙ&„@jÈ65ôýS[Û5>Ó©NZqÄqg=’XŸ@ôKÙÛŠÔaÑËŠûªhD*,ˆá~Òƒi=ü¬ %|ë¾®v¾Õ€‰·&È´ÐS? úÏ›Ùüó÷×ÿ,ºBV›æ½oYœØº Av ¿²©Iƒ*·ë%†³ø÷±®ì蛕±Bó¬­ü›b»u¯žüc»6¡µòèíêÞϱ}S‹­ïƒü(ÍNß$ˆ°Èv²K»ÄÝÿ žÃÒ÷-xÕ5]jCÜ/¯º½öÀc<Ã^K†É´v`J'Àé€h ɾóJØþ3‰Â~ø ¾ß—K«gãå­‹uØ/2ã{îŒ)½òKð‡u‘›¶°†¹T‰é]½HÙ®Ùß5æ·=”J°¶ôû°-šíL»®V¾×ùV’Ðø—wÈfW8ݲO€þ¡¨Œ8^Šìûíi€Ã$'±(WS³iöªÚîwåIàÀT¿½ÆËyÚl·q+!l6ÆZ1ÛÊrùÙ·† eÉ%ƒ";mkÍÒ¶†‰1Šm{c= cwfWE;¹6RÀºñÞÔXaÖ‰!¬Z•çÝd{<ÔôWó‚G”?rÿà, íº°ödQ¢ÝezCÈØ÷kÃ~Îç!Ý`á'K)LmüÓZ³JÂÞwÖùŒy ¡¢¥ «Ÿ‚ðŠ[ü÷8 û©z»_®Š[i.Ä>.Íc·l¦ô+5Ƽ÷=¦®«:¼…z° :Ze©x±)“(çâ·Úva|b’PÂ?Ûæ'¥DÄR–{„d…ôàl둱u¨Ü„]Û®":,Ê*pq¢¤Ã´(a/umšÇª 5çd{0C`¯áõ>*ä8evĸÙ)ãPaÜðÆ3nKïœæ]$ZÈó)z 4ƒ} ¿”DMñË¡ 4Á”Z‘ÿ&Iü9çx?ðR ƒ°à0ü„€ Ž´b þ?ÐŽL¹ºœ„F‘zèðI:š8ÆñŸÍâÙdKôÉ£žl1’‘-ûÆ!7-ûh èÞÎrô…FRåF /’½*-KQØ¢‹PÜù5#© }úÃôM Ì0™ãf/K6~”l<‘l£Ç[Ic²QvH6rA²Q}.Ù°–—$›ÐâL²õ$›`&ïÛoÖúÂå?:ÖN€)”çÓGYMøe'ÆçÉš²$#=K^Q¬ÒÍ!}òiƒ2MŽÇ)ƒBüñÃ%Çøµ…Èùĵ#c°•3òå×Q,S^WOe·«C4w'éaî„©ž¾¾è ñÏ à¶åùpo&JϸÉ`ßdŒì,ÆØg^c ÃV"ÌùÅõ‰j~Wϸ%øÒúô"Ì4ËÍý§ŽJ½·üÒ“ÌHÓÊ@Ç|½¨Ãõ‰%ö6%ö»;è;s½ðGÅëUóyPóóç ÷¥JS:ôæWáÙýøÞ•CÿeFž+3—~,”ÓÞ%ŒN,tGœ&~Ÿ„4ÇOj¬þuŸXŽoECÖЊ—­ÞyÏ.—‡û{Hƒ¶ØÄ‹Ú“2Ú;$¸«÷ª^õ IšüùÁ ågü|"þ¸UA¤ö~0¤É2oLiꢻ;Žg”ÛEe=\ÿ³"Äÿ¥˜ŠÐ£®±¸&y´1=Ø8Ö¶S ñºrâÓƒû¥„)·ÿMMxÈ endstream endobj 2721 0 obj << /Length 2404 /Filter /FlateDecode >> stream xÚÅZmoã6þž_¡OhT’)É8°M²{i÷ÒíÆ-ŠÛ…b1¶îdɵäÍæ~}g8”,9ŠãÚñõ‹ù>çåÊÌ™9ÌywöÍäìë·t"/VÊw&÷÷}/T‘£b驘;“Ôùä t.ÂȽȓª¢êe9]/tQ'uVÐ%‹Ü8ý:ùöìjröû‡ ˜Ã;¹3éLgŸ~eN ƒß:ÌóãÈy0SŽÀTŽ sçöì‡3f¹lKOH¬bÑð®z¼ / …£ƒ2"Þ?ŒDà&«d¡k½qîV†Ç'´÷x:Jƒ86|J)=ɢݧTžâêé);´ÿO„c$ B÷e°‹0L‡»“r‹®¹v/ ^óp$ÿJ'«éü»QÀ\=Ì}´òV’1\"(Þ‘| Öå+V^ T¯7¤ÇU½séfÅŒ:>„tõ´.WÔ.ï©ü/2O'xqæ–«ÔšB]ZRæ¤T¿ù8…YA¥Nšá¹NRÐÆ‚"æñH!ˆ4 èòÝtTÕSFU•à“¸ÿ‚$‚ЋYUeì ¨*?ðdvuõïÅ3páœÁ*þi27É×zO>’ßaîò :ìûèðˆ»5ƾ®cÕØ÷}ê§3˜þz^Vš††5'%+M••þ}­tJ Pñ±wžà"Ú‘FZõ7ì­§$RÖçTC0ž½ÑyGîMYÃêÖ󤆚ˆ¡¦©Òá­¢I dq]Ù‰wv)Ó,|\Úžƒff¯Ø½¶Ó’x¤™­hh,-éž[¶%±]”5Æ;æ!$'=È–Ó¹ž"¯Äu3iÞŒ–«•®–e‘’Ó.R¼V¿¨Sç#,­ž&E»ÇSz±¬A" ¤¹—W9\7w¿Œ/öåë{•“6^%dpJµ[æîáTp*±ïÈHy¾²Fº_™Ô Ù€`ÆAÿòÞæÉlOr¯ƒ¥Çë]Yæ:)Æ`¸Aàf6ôY ½„߯¨OEµÎfãܽ…VÈòjfyÿøîÌùdÆÿyùc{Ùî¬êÆÌu‘î©Á‡Êâ=²j7Ùø„Ã*ÉÃWQ`x ©„ǤEÐótýçáÛqL kj—©7y^¢:>`ˆ’Ê-—˜ˆ$9µP;)âÐ=•ý‚=̰D×ü¬æú2Ò\Z‡ÊP²É‘› ­MÄ)–l³dÀ‘C°Ä¸x¿ÎóÇÃÌâPÁ¿ ½@Öç'HlNBؘ %ô*‰ d”AŽÝ½ÐÞáU…ùï~&qCÃ6ÑaèûÖ6y ±g: ˜wwH„ ÆÅ_[_-õ4û…1¡Sëà[ Ód9¾@åêçÉOWŸMŠöÅ ãu2·‚¬æ(Â/½[Ø--‹š7ü„|3ð`|†QWDîÅÞV]Ço¯'·ãq¥ë‹r±`‰7>‘k 0Îý…I˜Ö8¼¯çë·¡ßÙ_À¾q„&\t&#Å 3»Çm‡Í\ Í{žqKOÏE <Ÿq¨@ÉÛ7ô ¥ÂÊtÃ;u$ù¬´À½ž/ìì’Ê;³ˆú7ŽzæºY—ZÇõl‘Ì,}NôK­ Ü¡ê“ÛíýaJ¸ïþ·œvy÷Hµ¼þÃRïÒ·dxμ8V(ƒiÿ‚‡ªã'°““Fî‡@Øw{ ÈêÃPíÔ#ÏYyA ºzÏE«ø/»ô#yté=ž.Ö+µÁ`‘ø+c·z\Ü•y6¥Î)htuEM“¬ã¬T£‹(Lþ ýæ §“ãÈJjn^ª0†ûGÊK éÅùJÙØj Ø–­V=(ÈŸßýûúÃoü+r<¯/®ÚFXÆ,üðþúûß8æä!woµI¼y“ôw9`!í?@ûÝ£`cQšG sðÎÝEgArW®kªÂ¦•¿uûD!cæ^hšÍ;ËS7?¾è®Ë‹Éø»šeº²<§Z½&Æ j–÷'ò-—#Fl†\²®,™¢=U¾ Á²>Ìjšq–[/šw6ä?4âºg|?Ü2v»?T^t·u Ýý¢;À-H´ƒ­èíÝoʬÒßdÆÊ÷ˆé<Â&Níê§6l»wDg1œ£Ðo1 ÷Pb×Ë øÄýïˆ{h.“ÂEëLs£m&˜" 4ó@Ô/Á€‹Ùù²Ì »©U]c§Q†k[æ&d€‘¤ÚXe²ÎÑè…ê¾øá¸Iâ  À܃H¹—z ‰$íŽý„Vž®3 &Zðæ8Ëš8†c˜lµ}#ÝPƒå›’ -S{x_óUáE=Ít1µc²}„~–€~tÿ£F^ndK“¾W z"œ ¸'€A«ÐPyð;‘j&ä%9ó-2 BÌÕNúÇ3TÚmþ6`„¡çË*×pºÛì( WÚ¡ï)&÷¶CŸƒB¢ÿ‚!¦]v®¾€|UÍÅ7žÿaž5ߪډNwŸìÒìs–6v›®·>¥u"Ø!ØXz,ðÿ l,ðêý×1§ ‹È˜«Ø“ü•>‹I| »D_qáj÷ýòuGƒ°¸ÇÒˆ²÷‘+°ŽË\›=õœš7T€©“¬0ê4ØTà€TCc![±ß¥"i¿ T}Ú£ª:I1ä¦ÉÁ3Ù}y1m/˜ì™f·ß.TmË$½2£ L–Ë<3é/.(ñ}еÏÅfÛuÑyÕ„ÐÝýcѬ˜S† = ïÌd¦EEeuZ†iX©¹Ì¾`ìÐ9HOYéaÿ ™Ý*OV3#Ž˜“üL¯ÍÄŸ|qëȯëÂ:©s”Í7Š­øWStv‹tö.è…ƒCDÜ÷=ë`ßí2¬Ïùëû¢#ØhC"¯²»Dôavt±!4Aà¼ù†œÐ&Â@YÛIˆÄjK°‰XP}ÈÐÈEì÷/FnÞü|}Ë©þ…Š–ïêzê‘ö­—í–ÏYóÖ;ê~Ú8YÆÎ@Œ<þ3•jþÈ¥<bޱ¹“Ѻ=Ã;]èˆÑìANFÛ®-ïÿJì¹8§R0!mO8frŒx޾KˆÍ_\4gMȼ73Æ÷8#àS „ðŒÇï4 endstream endobj 2734 0 obj << /Length 1377 /Filter /FlateDecode >> stream xÚµWKoÛ8¾ûWY šáC”Dc»‡Í£HÛÖ·´Y¦m²”Jr“üûáC–§èöb“Ã!çÁù>Ž(á2Øÿ>Î(áÿïÕìò6’AJT‹`µ ˜$‰Ó V’ÄŠ«Mðr1_ð$ ¯Ê¬míðºÎ]uYWÔˆdLÓP©ù÷Õ§ÙÍjöcÆÀ Øà@F•A~˜=|§Á?;B¥Á“Q="U†ËàëìóŒŽ|¶¾Æç|• áBz_ ‹ˆ œÎŒR®ëº9¸õRÞµËåíÝêërùS7ëºÕ÷õF[…oTÂ.Å8ŽÆry+e À"ÅD‘,Rk롨ʢÒïç‹ µ˜Œü»IOðå-§þ0Gö˜FwÇsV6¹?ç0¶ÎYA«»®¨vv² ֔ź™3f0ñ ZË`ˆÄÜ¥änku;Ða2<ê9ü¾·²¬,íà Û6Ûiw½Ý>ëœBã|hô#hØé­çMš±F¯žsýˆÑNö>ZËEÕoíjY·Y.sÝ4sIC2ò>²Þ¯öîͤ䦩èö…³›Ÿêô cÍÜd§+m³Õû±mêƒß®‡‡–e[Ÿú´c픺]Žî7`1IÒîS©\¾¿q.ÇZ )ã«3FöãU ˜%ÙonÏŸŸíúŒ’DªØÖšsMD$•É Òc ‡«¬ê® ¹qpqY„á½'P‘ºÊõ¯ê"ብ²Öº}c“è®ktmYQ}}øjȽyWƒ}&ÿ "'ÅòGQååqã4KNšÈB)Ý?Ïœ•$òë˜{O“c„$i{µ¿¬Æä*!0Ýȱ»j¯º ³hKºÈvX¶(gŠúíKâô8Ø30—@³‘ „ŠHÂ2ðáœY…ÓÈ,ø]Npywšº®Ž?ŸŒŒ ÏïXxC‹¥·Y[HFR,ULÏ?Ç5XYä¶ÞîõaéÂñí±Ê-§œ‹w’ûŽ€§$zOÖÝfçüþÒ#l€€ þl JšƒŽ¿:ž Þám:Zu\Qg}°%_¶Ú¿,g"¦„Æ*ÁH ®QDTä"¹ñüŠ4¬Â¼³„Œüª±LžÑR8®>ÃŶóì»[âK‡†JÌâMÓÔK ¿ª;w¶C"ê8ðù…ý[kW¥ÞƣΠÔË{ §ÀhŽÜÛ‚T@Þb®~„"žHÁiƒW]æ˜ëZwÀ†Â¡@®u›7…ÍËopSúÿqÓ¯ã¢çB➌±°š£½RŒê]ÜH<î»Fu4²=¥bg­Oá/xåÕC`Û¢âËŸ›ò·•o|5,˜ˆA´\0èÁ¸'ÊC Ð0Z£œpPŠzR6¨y}𨄬9% (køÃç ö-Ú1wÆ0J¯õ ”SJLÙ¸oÀ‘'ÌÁ‘'ôqÕµlGý”ƒ#.z8¢ØÃO<ëáˆã »<„£±q‚£™=0¡—®G¨œ¶+ÓO‰4÷v(¾G\\k+ åÅÖ˵[¤te]§;fŽôï£Ê£0³ËMÝéÜ4n(ݶ7m¯QÙ™ Ö˜;•‰>£(ˬ¨G5Ê|–qüTt{«bƒQ›´ÛåF‘i3Q’UvnÓV´¶u*Ì¡õ±sÇá…m_PqX†g¿¤…Zdê¿|Iù8ð$ކ¯pªˆðŒôÛãSkìq5W?Ìä>s cö0.$YR¹dÊó(Ýżþl¸®M’^vÈK¡®¦áÿ Xƒ¢l endstream endobj 2730 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./structCCfits_1_1FITS_1_1CantCreate.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2739 0 R /BBox [0 0 500 256.41] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2740 0 R >>/Font << /R8 2741 0 R>> >> /Length 285 /Filter /FlateDecode >> stream xœ•PËNÃ@ ¼û+|fÞìnŽDq,ÍTQÒ‘Bh$ø|¼y´Dô‚"ÅözlÏL‡Š4ªôM±jáþÅãî wК8…ªÅ‡R™)Fç±l`Ô¨yöMF†½´Z¸)ŠæÐŸòüñ¹Üäy±=öÅg½íëÛòV%¬Ázâ˜1~ɽ'èp^6qI¡§TJÞÆÄs¤h¥Z¤©½Ú ÂÁPâÐÂ×ÿ“á,y«"j/:¬]Êÿ껪?úÃûñ¬á kÍ1RÈfîs9)0Fxû8ðþ_`¢„E‚¸)4 QÉàq0bן£Æ]¼™*­ SH»®N̘¹> stream xœTkPSé>!äœÏ.‹–%&TWw×êê"º]/€WTP.¢€Š\$ —„KHH$|I@n  J ˆBÑËzC\[»®»vuUtZ·ë¶ÓêngÞÃô€i;éþû.3ïû¼Ïû<‡ðõ!8Ž_|¶$£pE¬L’.¾/¥ƒ8t°½€‹ÉÔÛS›x´ÈÀ~\ìçÛ"†x‡ø„XBÄïñÄ~b)±•H""‰mÄvb±–XGsYr_BA\á|Àòyß§Úç%·”;îKøvñÖðL¼ä6ÒIm¡,Ô8Xýéì¢W9ßLBä$·}d9È$k™ 8Cýêb§­£QwîN1“AwiÊ’k Ž9¨ä:­Í4Š ”z‘zmË¡\åîí¢‡T•%¡$[› *©zk£¹#O£*Y̘)SŒ¶<©± uz‡ÓóZžsÁJ§ ˜ù«—1"&ø»w!þüwC`è f®¸\&˜_Æ,`ÈÃ;6;î¾P$–•ÝÅ_ ï/ݺ'òŸ UÐ?\àxq§:AP ^©/*Óã ¬²ªê’Û’Rp8^Ÿ»'>jOF(f|“B&ïo—Ý•¶oÜ!Y…Ñ8Ε6?šûƒ/‚ß‚Å×ÇŠŽ]õpÈœ»¦Ñ3èúhÿ›÷'Añl>ß^ÇH`h'7›5M¦ÛVSü’œ.Ýp¼õ-øÂb˜õÇ¥q©…ñ©â¯)½eQVy¼RXF5šOâ&ŒÎÔëRį³(|@«‹Ñ#þEXI÷ ¼×.}5º‰™%â'2>É›#Rb¼"° nAã 篯¸ô ø¹@FüÙáf‘ å‘‹¬&3>ÃJjÒhרÃQ¨ä¤fƒZfDÌJ( ÍÞÚZFD2ºÔ­kÐ)²ñ^{JÈ/ ¶rKzC#ÊÕÕ¨„>GùÃ3V$ë]œßOrëæA•ƒÜa)k1Ž#PP}×=' ºf‘Ce3Ø1r;Ú<ýE®ìt™""Iü'Ê`‰SdªãJÙy[XEØ0:ÕX–*f¬”1A¯Ö²œ~ú#B™€…Li?RªÃYÈ‹g [­3‚àÿ9Š2}¨Ón2 èwR›¬êÓ—¤°˜zljUÛ6°„ºN‹^×ðë[~w>ËôïàŽ 𴤡ÒP£Çz¬³hëä òºBŒ>ŠMˆˆë;úô øFÎÙâ¶Bœ+L=!KÜ–5øJ.*cVÙÉú¦Z ;?±ÛŒ]Ó»ÓwŸ®v=øìÆÝË…ýûÄ q[Ö¦rãnáPo÷¥ëÞœÕ]"èÕÑ~}œ»“\h –"›ŒVƒè“0I¶T©­ÒO#©1­Fô)s… ó¦ºÇúEåÍŠü² Wu&†ó/ß,gÊÇÅêÕ´/;Ép‹ºÅø¢c(Ë}»í‰9™Ë%ÔSC³Î¼yzµ¦MmØ´ct×coÐî€kOà½G,ôÞß ”jA…‘¼ªeD 3ô¨ÜŠ4g F+¶$GËÅnw‡«³ÖTgªM ¸u÷u^í–îí¥˜{K+Ò2ÅêlœÃR=’:12Ô16!âÛÔµÁ¶³ƒìúD€%m‘¦@WY„Q–ìÌ/ĵ”ùæÈ ÌBoÒézçÁ!™‹‹[sG˜¹øüœÝ=Ž~‹ÐÁ¬QQ^c“«±F£(È5è5¥åÅ•¶@UW…ÝX[Ò[ÕÊÚÌa?é5#sTÕHyqkyoÊ æ@†dÂ%GtU95B,vPRm½þ¤½¥CüfË„Ôê-\%Ä¥UÕ9ÆÆîѼΩ¯¹ôBX%8•Y‹Qhô7@ýxõ.£I|RÑ mWvbáég×µ¨_†%'g'¥Ê¶ãˆ<\ Ü‹Z{DÝ]Nw|¦îç íj€C/‡õ‚ƒ›Ò¤»q,Në‘^/¬ê3ÞB0AVþF×SÐ'8Ô‘€“pJiFvÊ‘¼HŽѽu@}ˆaó– šœ97'°[f_‹Þøwa¤{8?°’»ÅJŽ™ÍjnÜéì´ë¤í¢Ö|›®5o{{×@êé}Ñ y‡óÅù‡+3MQø‰ÇÌÒ¸Y§œÎ~»ƒ ·j›ñ}wÀŸÕ_/[üÆ«€¯>œœÏÿ¼uèäκªÆiûUmeBãy*ªÁl³ØÌMXèž±¿Š2n©Ðm¯Aü§à;µJ'—ˤ ·³³§GÞ)³± P¸hf(ÛðÅ3P¿œÏ_NÇM­‘ü`EµV£ Òae­²ñû[ŽoÈ JÇ©ÊiVni:NÀGâÀ7æÞ±±£§2ËëŠpÚ™thëê=WÁ?I$'½L¯“äG;ͶGP3n«vV±•TƒC•çƒýááão3÷Ä ¯§à«èêð¹[‡K2ÏŠzO´ä·Æ° 4Æô_†9PÏæV¢S^[n3±Æk¸B±9Õ¡ìd8ÈMêácÞë RÏ|Ìs“]ÀéhÊ‚®¼®!Më*taÓuqšF-pÁ \Î#àr!˜NH NHOôôžv{{óOKÄ ãû_oþêú@n!òä­A«ŸßÃZ¿· âP!5æ endstream endobj 2749 0 obj << /Length 1506 /Filter /FlateDecode >> stream xÚ½XmoÛ6þî_¡u@+3Ë‘’ŒuÀ–¤A [KûA–G€m¥’¼¤ÿ~w|±%Yv²tÝ'I¼ãñx|î¹£h° hp9úc6zý6’ABR¥D0» ˜$VI RITÊ‚Ù"¸¹Oxœ„g«¬®íëy™o×zÓdMQn`HRÉCFéøËìýèb6ú:b° XË"#)•A¾]¡Á„ïJDš÷FuˆTN\W£#Úv“Ó!7eL¸ÖÍrÌdø÷˜ËPW÷Õx_E£Á9¡ÂëS¢¶ÏúNçÅgJ¹^à@ÎÇœ†ß¬0[,ŠÍÒ¾7·nf~›UcFÃ,ote‡^ýôj<‚†s}3†GYéÞ$\a¥7ÙZ£O¿À`$C«»Z?ïq%ˆ$ì~ lÒíК€ðçh£©‹Ò}€§v{<’/Äœ„ %\â+>.ñÌU+˜JÒTàI¨[é¯1¬qcŒ…u×^ÿÙ±(µB” cƒIÂÆ"Š©l´mÿO†S0,Í4=i˜tÙ–eÜÆrÌ gi (8"bÿu½´?º”“¬Ÿ#ݤJ‰¸ê:ò;€™ò}jäøÍÂE‘-7eݹ•¯u]gKhAc‹U ›·òÆNÞ‰l&øÁ¬±£÷h%«íGSZñÜMÉ+=J¬Ñ r:dQB KäóCvk2¥$<úÏAüC Ç ‰#~:.È¢X%ÀÄL8<±gR@sÍqü}¾ ¹ãLqc¹²±ä¿Ý‘/ŒÝ¹‚Κofóq«°•ã?ô¹Z:ç?]Ž‚k£ôöÝìj:uõe^ÖúC¹ÐÊtŠ…+ µvk••}nÊæ©ø}v¨ÁØ•§í>ÀÏ7|¼ôK åŠ;–šù¸èõ%0䪰;ý[ù¾™Ù~,õFÛšÞ˜6-TåÚO×m£írm†-¡ÕÓîÉ3Eâ$† pô¼ú™sÙLJ”Ê k9¹íJ‘î8aOžž?<84T~FI,O°ô{×D”¸k÷S”ÒðìÌvÓ©EøY¶iþ¼ÓZ¾oáõt;1`_oò.î{ÇGMŸ¡dâ;šÊ†ÐVçвbµ­\À×ê”vqxÓ¨òP@ êFWr’A ‹råe1QÜÕŠŸ‹M¾Ú.œ&4œ{M àJS˜`°Cîy9ÆÄTÏŒ$QÊ«ýf5:q˜¤1‰ 3±ŽEVñ݉Æö¦Òbj-Ò¢r=€êc§4=Ù´¹øLå’“Dpð[E˜©_GЕ0Ö«ùynàõ»5‹‚ó÷㑞ÐϘø¥&­µì=D d¹`á‰pMév[aÏû ×sÓuÃûÛí&Ç”nSû²ÏG&Ó# 5Hõ˜b»`÷ÏTRhÆkÇíW¦ØDá¡/ñ,]Ñ™—åÊÕS'ßì*XaGöaj.UiŒûÿy*BƒÝÆÅC®ï,÷E4 ó!Q,q1ò€°Ñµ•6CaÝø¸œŽ'Ðÿ…/ ‘áEU••–¸w¨SÎv¥³ÆðŽ¿°öõǬ±ï }û÷þVÿHŽñV+yDJh¬•´X‹0Ç[çºö0è8×u^6.Oà¦ô‡rÓé­Ñ¡]qÏÆ­jkO7ör·¿Îp÷v~ü"Øgc·Ú.ŠGy¥WöpÊüÜ€ßîÞøi0­rXò—Bf ¿AvÕNP8#lǦ&oÍJ%½’k=ÍâoXœƒv’xmžZ6†‹ñ®deŸÑ¸ „²užE Écæ’Çô !QêÚ ÖKHQŸ(ô ‰Ã>!Ñ¢OHÔñ ‰ï/¬¸ó?×h]éðRpðfÕËË}ñ8lôeDÂUö_üãñ¿ v±ŠÚÔŸ¤D(çÃ%6eû†ÌgâlœRìäÍLJÌUCÆì“S t;O©œ²Ôç/?,Ž“ýó‹Ë$ñ·%&CØã{Øþ?±~P endstream endobj 2745 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1FITS_1_1CantOpen.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2755 0 R /BBox [0 0 500 268.46] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2756 0 R >>/Font << /R8 2757 0 R>> >> /Length 282 /Filter /FlateDecode >> stream xœ•QËNÃ@ ¼û+|f½ïäHT'Tš@QÓ‡HiÔHðùxÓ„4Ð Š´;cEEŒ*}C¬¸ ¸9 ´ÀýOBÕàC)„ˆÖSôÑ`Yù‘‘3r: dL±là¦(ê]wÊóÇçr•çÅÛ¡{9®·å%,Ád¤œÏðS.{‚ÇIƒpJ%ð~!2± ’Îq"lÁFe)$ †’†V¸üŸ ëÈy-n¢ðˆœ‹¯j}ìv“‹+ºYFŽ£ú1> stream xœ•{P“WÆ¿ø¾ãÊb—5&¬VÛzC­Ñ®7P«¢R@¹¨\Tä"I0$\BBîÉ ¹%„( F‹tq©w­»®VëT«¢SíÔn§+íμsÜýpwfwggöýï\fž÷Ìožç9<ÊׇâñxþqYÒô¼…1rišlb? â±Á>ìL>&ÒñÈñ5~¬ØŸÂþ|ìïÛ@3)Ló,l5î`…y_Bä(¿}dÚéDK± {œ`~{Îi=ŽÑ°+g³„¤3Æ-ºâ¤j¤v&©No5 #(b^¦\Z·7G½u“ø!S^_˜¥×ˆÔL½¥ÑÜŒQO£&IBÌŒ)Z_’X¸†vi¯÷´¼àƒ…M’éKæ1 þî„À?ý$0#ô%™*)‘ G¯Î'3 üÑÚ]gò%ò‘â;ø ôýлâ€ñPí ûÓ^ þ8ÅÆ KAå—OWäë p)ÖX4uIm‰ {p8^‘³-nöôPL|I †Ýà÷ç¡G×ÄEíë#?’®À¢(Û‘Ú7œóƒ/‚Íß‚9—Gòœ÷²Ë[&^O¤ 5ô±×ï‚êÙt­ŽH…PÙN¯5ëšL7,a…ÙÞ.ÃÙ ˜ü-øÂxkÃóy±)yq)’¯˜Ššù™%qjQ1Óh>‚›0:QoØ#yÉà]zCtœƒE¬Gè¾äúrx ™$$Ÿ¤µ{b¼nq ¸® @c?ïÇ1>û~#”Ó»¬ ³M(—žm1™ñi1£F›ÎŽº@£¤u+µº0#"‹@A›Ýµµ=A ÈØ¡m]ŠŽÒÕ0ÛïuO!}¯ÒZR^G3ƈmD*dO1ìgÿ14Š…œ(£ÿP­ çDç¼µXzÌ‚ÿ‡èÆôA¿¦Âq³Æ¢m1ÝC ƒ9ÌcS«Öº’Ã+28uìò®ÀßÝ€ð;Ó9„[Â*˜é§§+Ë*«+p6Ôèë” Êº<Œ>Œ‰ˆíÛÿt·äJöÉ‚¶<œ#J9$OؘÙ?¦“Å6º¾©¶ÆŠ‘ ¡[]t+ºUu=øüÊóyÇwx%„º)oÓ¸p·hÀÓ=tÙ½¤KÃëßÇ»3ʇv—p. ºÉh©&Í’©õå/©6-Fô¹@‡¹S¯÷»FŽ‹KšU‡‹KUXtPÓý¹N¿bàî÷éà36‘°ó:¼FÛbü±ÑLÍ}›õ‰9ÈùBæie³Á¼v¾iN6–hÃå˜+ì Wà¥'ðî#Ž»ýBµVW©ÁHYÞ2(xTöj\*oª#£…ë’¢”Ž—«³ÃYkª3ÕKŒ¦\ºûœg†»e;ÅÛ²p{Qijºª@›…³94Qƒ)×:G®‹¶]uíA'p§õd?wEBŸ±´RŸ¯ShsËò1Ê”ŸøDR˘¯ öäôþxßÎÏ4Øk§spAkÎ ™ 3ž€¿£»×~¼Fd'K5ŒÛØTµX§S)r*+tE%eÖš®R›±¶ÐSÞÊÁn;â6#;Ù¯idܸµÄ³ç%y{¡I¸tŸ¡<»Z¤9vF¦¯³Õ±µtJ”oIHmEM%.á¢òªlãbwY¿^Þѯøì,X,ܽ!#/£Ð¨¯ùùâG^›!½IrDÕ kW;±èX§£ëÒ†OÃ’ 2öISä›ð*D„ÿÜ™VWÜÝåèq_}£{d}ÀxyìX!ܽ&U¶ÇàÔ^Ùå¢þò>ã ×é²ßz}RïÞÎxœˆ÷¥gíÙ—‰Ãß]Ì÷÷¯uVLÀa󃧮ãëØ%·-Cãµ^öo^Þ  ÙÕ@óá¯ã+„$–“Ù$ya_è…É•¨ç¾áb›Á\A&ÿ({wUu;Ì;£ ß!7ù°äprY†i ?ô˜Ü¢k úȉŸÁfgÂ-úf|Á-à¼ïáįŒ>û`tºàvë40ØéÍuåѦÊBBãü4LƒÙZc57a‘«±8EB4Œq]©aS5<ßñÅÂ\¥R.sªzÜNgo¯Ò)“p•¤õª:X2ÕøÅ3оš.XÀÆrÐòiA°ªJ¯S°ºVÝ€Ç[lÈJÃ)êlYfNQŽÇ«cÁ7úî‘ýGÓKêò±mNÜ»~ɶ‹(VÒn’éç¤Q³µÅԌ۪園¦ ìt oþü8î&™qW2ërÚ ¾ˆ.ž=uãÜÙÂŒ“bÏ¡–íÑ\û½©jö‡³<¨ç:3Á! ¯-±š¸Ð7\`¸ŽìT; ¹è Xí÷ú:]AVû¹è.àu¶Sƒ.¼®¦MËK aeyn£ø`>ïðù̦¥ Å!ÙQE¯ç˜Ëí9|L*!Ä÷¿Î´-ì®&Hn¡ûñdr¿Åßÿa­ÿ/)êïË> stream xÚÕXßoÛ6~÷_!t@!5KR")뀭i²èÐ6ÞSÛYfb¶”Jò’þ÷»ãY²§M·{"EÇã÷ÝEƒë€“ß“çç±’J‹«€EQ2 d*ˆLY°XCMg\%áËMÖ4¶{Vå»­.Û¬-ª†QÊ7nŸ+œ­j»äZسhÝd–çºiº Àpèo w°Ûu‘¯­ßÛµžr~µ_«Ê¶eÕÚÎ:ÃÙ¿¦\„ÚŽÜhÜV„Û¢iÀÏ쨵Ú+ÛæÕ®nÜŠâj¿•éìO‚;êæ`ÏîèÄ\¾¿4J¸À.63Ù»¿%i*ƒIê¯ïÝ”ÇaVg[݂͌…ÍPßa;Сó׋ËùÜûzY5úmµÒƒ˜é ²ÝÃ?ÄðoÅï£]õÎ@o|Zï#üxÅ÷—BÂ!o¹r£Ë‰ÃZ†z ©¿€|_@u?®u‰)šˆâ4ÔÕö [¥›-Y\¡áÓs3Þ<“D% 2,#‰H­ÅŸ8‡øB aÝ@ÖÃY wœP–|ãòüîΡé(õ3'=¹ß›†A%¾Ä$L!(¥áË—x¤¶™Ï-Âÿ¨.wùT…ëßÏþ„#ó}! Ýú ¦t­Ë|ˆýƒ+¤¦ØÂíwT!&Å`.m¡u’‚hÑájí_˜} E³çy»®V îd¸1M)ØÉ¥³“)"¹K1?e¾ÙYZ??‡”½—€É4…Fðç]ЍØÏ£+íý¨‰I¤ôb¿X‰ëf©"1TîÖ°Ø ¾.1>ÙB6Cß[*` 8¶`ÞŽaôrñfç'«=Jžá˜va¹_¦ö¹'ø/¡(%4rg"{Á0Ït›ÛW>gºÉëÂ:îÿîN{ƒŽ9‚û¼€p­w)ÆO;— †‡ÿ&î“:ÉíÖ9þTËJH©é,æybqC,Ë)c¯ ®*ê˜Ç¨Í}üÖaèæÑs •³.PN«ƒxfÐA1l61’ 8H'‰—'ê±m¼Õ»>/Font << /R8 2775 0 R>> >> /Length 288 /Filter /FlateDecode >> stream xœ•QËNÃ@ ¼û+|f½ïäH) Riø‚ˆ4E %j|>Þ> stream xœUkPSg>Çó}mYÚ…FÍ€ ­ÕnÕõV-b[ÅŠZïˆ(WEQ„äf I€D’/ È-!`" \‚ ¨ˆ×Z¯ÕÚi륮¢-v·vjÛÙ-ÕÙ÷0;³'¬3»;»³?öß9ç;çyŸó¾Ïû<,ã7†aYÖ?&C‘š÷ûèlÅV¥ï~ Ìò!cø "Bñà ż̟!þ"âï·?äÅþ@øè·Pù2¾Âø±lØÊXÇï6DǾ5uê´ÅÙ9E¹iéù¡³gΚšRúü$425/#M:Y¸(LÍÊÎQ¤*ó×d(R òBGë†F§¦dmÍý×gÿDûÿð†§Ì^œ¹di^þ‡ËUÛÖ¤îHÏX³a>ìe¢˜7˜uÌ$f2ó&Ãl`Þb62S˜x&’™Á,e–1Ë™Ìf.óÌŒÅø1Ìömöø˜‰cœ"VdýÁo…_ßbµø7‡«á~AièÛšµ\NS‘y…®8¡k`» %Té–³ŠÐ“äK‹6e©W.“  r[¬*C«‘ªQµ½ÖZOp{­&AN­È¥/‰¯ÀBAC;?»íx E`ç·Hè¸YS©Œ†üð&BàOÏ@ãg<¡¯ÊK²%ƒW§Ò ”ÛüaÄö­Ç åÙç‹o’[øÇS×oˆghûù_±í€Eà +)…q!g,,Öí&¥Dc×T%4Å×$‘p2/kuÌ’Õ©3ƒéÒHñ_N=üDV´ïƒÈóˆtYïÙÒs6ë1? Ë “.Ÿ/Ü~LÖ•éÊv¯ð±§ Pºø€OïBÁ·ã‚œUT!Ó>.ª«³ÜÀ0 ©vv·ú‚á¥ïÁ&Á+K¾›²>9/&Y~m ÓKbÔÒbTkÝKê>\mH’¤#²Qoˆ2â “0÷J:/uŸúêìBú‚,(ŽŽIˆXœÝÝ)üòÒÃ?êaŸñ°¢Æ±ÐÃ&Ï]¿ôÙÕžïÈÏä±òþú‹Ë¾¤l7@0mQqå5eÖ<…,èt& Ñü ‰·®¦ï7Š3ÎÈîo8>—P†ÐSÂæ'Å)×éæ¼MWÛ%àxà“ãPÛËþyHÄ?÷%Ù\âk›séD Îá&Ú-VréhÐìÔ9Ãq hò9Ý|­.ÌŒétÈ嬕•íC°ÀÓìÑ6ÎÆ¸ ˜(iWqwLŽÛb3óâíâ=XÅ÷ þã+šÅéßSkÃÐI£ v{»CÈÿ]‚,ïô MX‡Üh¡]Û`¹ƒA “Ð×–F­c¾0M©¡Yçáç¶~tÂoŽZÿ|.ÙÄzÎTfª0#1ØôUù5ùUy¿»x}×¶G‰ò+;ìnÊ#YÒäÌ츥é½Cù²b:ÓÉU×UÚÅÕ‡¹Å7LcÛÁ=žàûŸ^¹y.ïÐÚn9end7iZI›ô¸·íÔåγZdà5œçý»Ø›ƒ"¨á7J&æêÌv“l]˜"C©Ö—}L*¬f»L/pa[®žím=HVR_°«¸´€HwhÚ>•ÃÑ_O"8ÓÝö¯CpiHä ^7±Wç°ÜÆ—h¬ÐšRýû¾ÖxÝèù …¬wêêîUc7õªÐ=cÁºÓôlüo'£ Eñ-õ>ÐÃÞ„¥ƒÂÄÎIL\‚­¼ÆrÃOt¶]¯pH<¦:D²MZ­>§ K§ x{æá>9 ÐÉZtÚÜ µ&bZ…Þ;w§çhc[›ìÄ ñçé®ÿ¨AßÏð hÈçTçÜ\¸MÛ`þÊÇÜv×éøÆ.ð;§BLõ†çz_¨Ó‡šŽàro»XðŽ…M..‹ìnÌꧯBÜøoÀßÝÖá:d“ºèl ê4׉–èt¹Y&£®¨dw™c¼¦¥Ôi®TyË…uu9÷vZ±‹nÓÔ¢NÒXâMzBßO9®H1”ï¬j`’ )õUÎê½Î†ýòxù{Zi´™H¹”•ïÙiøDnóâöÀ=ÿ:Ì”$.IË‹&xƪ€ž^¼ù°ÛiH­“ï-¨QîS7éÁýî–KKN‡%ÄíNK‘Ç'g/#ïb*˜¢“ǽݲ¶w{çU,Œ^ï)õõ(Ø~þíþqA*!§H¨NÅ=09Õö×0}ŒF$¼JLª¸¤¡ìXY̯•¨Ã}rйтJÍ~ó¯˜AA'ù5#§ÅM| gêl¨eþ%(»u³ü4˜'I\¸E¹’D“-ÊËE½å]æë®qeŸ:r»Ý›öÇ’x’T”š‘”’IÂ1•Ýž èÇ»Wé“Ñû0MRÿpÏ5r´f;çàÑó¯wÁÖvöWa® »@_–᪻³·ÙiPî“5îršnÝ·¯¥;ùàÚU±9›wÉwm.K³¼‹Ã3¿¦Ÿsæƒ>Ò—RN ·ëëÉ] ŸCú‡ Æ^`ï ÂA¥Å.ɆZSµå†Dô,åBxÔÖ¼µ›dp™ìéºÜ²˜biN™¸UZmd/Á'jʶÈG2§2•E— ðY.´®ª¬Þ,|oD}§:›Ž Iy m‰œ& sd©>Ú$¼”Ž„åÊ^ ¼?ôÎภ/Ë6¸¸åUåµ>;´ÇNgĈ5¨Æê°9¬uDÚZ[œ,§d^TjXVƒßðLIN~~¶²¹ ½³¹¹£#¿Y)xóÇÚîOgxo} Ú_ÆMã×Ï“rA!{ô:u°¨+Õ58èPÃŽ5;ƒ·’dõNezVÑVKÞí_~Q··Ÿßv µ¶¤ªäâåñ›>˜µú"ÄËò¹Nš.næ‚V¹­ŽWp=iÚã.4½ÇËŽþÓÀÓ¯cnÐñ·å¯_ÞÚO.â‹}=×Oö©ÒŽÈ¼™ »£Gþç>ªsKÂ+Ka_k. Á·÷«›)‹[9#,\ãŒt¸•kv ¾0RÁYæ–Â|²<é³5!ìy|ð·~ÑðŸ¬5*îžÉµÛö†sˆ,3¦ª9‰+³"H$IhÍ9]ÔUÞC>ÅpgÔ¾øì«[…žÛgˆ.z €½{ä‹£²Ö¾ÚSä†d{Vßð°V£W"°‚ˆ}"„ðÉEnn¦ò@n‡÷`k§w×A…œR¿ÿx mà7ÖÁæ®÷Åo^êµûûTúÿ†aþ£F endstream endobj 2693 0 obj << /Type /ObjStm /N 100 /First 977 /Length 2555 /Filter /FlateDecode >> stream xÚÝZmo9þ>¿ÂßtZ·Ëå×Z)/Xñ&’½…Euz:ÉÜ%3h¦#±ÿþžò¤I†$¤†p:¡Ý¸ÝO—ËUåzÊöXOQeCJÊe=e•­•>à¢-ã&Åiù…UÎôA²3ÁÊN9‚Ñ'-/6°^9 CXŸ8+މVZâƒ9æò…´RùpŒ/ ¬“–/2¼báHÒ 2.c\ñ5Zè[ÚÆv9Ê,)oLiYå¹X&ö>‰<öÊÇ(qƒùuelŸ¢Á”Ï2{÷–gèL™â(˜21h¨ ÀxKeb}\ü… ®LÌ‚)q†oñ#xà²/Ê9- 0™^ĢѓŠó„šÀ(̈½(FÅK‹V$øW8Ø+¦ …ЈÙÈœ¡kÌEaØ:æ)!¨DA<±]pQîŠg~É›Ò.•X Fe’àŒ°¨’Ã5ƒS0S Ó„%d´€Å—L±0–M‚=žr.–€‡rß#>¡ õaÌw˜šÉ=UÛê=–"c]¿QÕÛw!Ø­f„?³Ñ„¿ÓÓãã£ß~»MÌZ”bËÚcÍ9i–Ìáu6n hë²fDï04e†Úi(Úí|CѤ²Ê zg6íÔ£GªÚ$îËg;𖤘åC ½xöOe$•åC”liû`á"pK-0Tõz>kvÛN½WÕëíUíµŸ;õE‹½¿?µxQ¶£j µÓn! ¨UoÚÅìtÞ´‹eR*}/Úñ¤Þœ}Vï :²[ÌöªçøZò¬]7¦Ó¤½_ælѧä쳆ï¡oľ‘úÆrJ%_Ÿ5¨oؾÁ}Ãõ ß7–’¿škÑjTížîwåùùdúŸQµ9›Ûy™‘ùP=­žU[ï©<ˆ˜Ï’Ó"ƒIZ!{í¼%ŒÌ£xsWUOf{3…hxÐ׋ÅÖÖÁ¤[|¤ôtû‡â’µ¨ƒ¼_ÔñÙhÉ=Œø•Et¨sLCôÙy¶·»>…(zm‘ }LÚ;YPA$4Ÿ2ìÅ÷¯ N[ÿE CÖÐ-õùXsp¦åzLEF¤}Ž5qÝd"¼qíú4v6jɾ½ÊN2ÖõÏ3!‚*EmÚƒ Ø&ø8 EkÙãÏÝzãÞ ò¹F‰4jÛh´5;>=™®3𠼃À÷N–À'í¹}ð`ûV"[RDygu(eµÓ„êÊ{«³§{OU6{ø*}Ñ¥­6 Ÿ¦O€ƒP×€?µAÅÇÈìR,{¤tÏÃ3þ¾œíž6GëÕÎ-\ë ÖKZ¬9ïc£ 9Þ¿µa„¬„·Tƒ ÞK²³‚õòOðžÏˆ&µT`P õ©"$„ÝÔ‘²Mv—Ê6[Ê6TÈ)—k¼°ó¬ƒìŒJ‰jo@÷¡CŽ1Ý„Ž˜j”jÜêÁ’MÔÎ •,¡o” ‰Æ®c˜h+dfi h‹è&›•È+Uñj!¼R#¯TÅêê;WÅKÉ«U1å;WŲ¥_VªúFìiµ+#(öæ‹%b?ÍjrÌŒ]òý¯(l’lð±–MC °8öãݰBg­ú8œ†­¹‹AËA”C&ç.!ÿîÝQͨüdcäPÞ”3T÷ïTS”¥gÍ-ÒÜ*x¹NEˆ$;-œ•Ì`4eL<-Å1…4Í ‡«îÕhÒ9Ý„fd:9³Ù"Zh l›°æÒP{[¬Ôü hdÄ­Wd%÷MÖêôµè!)÷ÂÃWçמJÜ9å²»œrÙÞ=å2­æU(5>mÚ¹zðäõsõäh¶èÍ|ò©S ºøºÌÛº›Ì¦ÛuתÛÿ´ÆzÃD¨ú½µ¿÷‹1¿÷b6¾ ²7éŽØ’uú²>i{é3Œ¾=ûü÷a;Eׯiw$=W-ƒ}Ô“Ý#ŒªW¯_(êßnÖ‹¶8­zóâÕ»·oþ±79i¿¾™ÔÓ¥;·ÛåŒ ´œ¹“,…Êk€&óE·uTÏÁ£êy}ö@ÖŒª?'ãîhi:a¤ÕB)bx9½ ¥‡™/¡Ly+(sÍ?çÜÊÿ{)Çôæü¿å8\ÒÓù{¸þñ´™'ÓCŧÓŤ︃eê´jÜU3-Í&ºÞ¨›%î0-GÁØÙ@ãúp~…D!ºáæúÓÓvrx„ǰ$Ûå;ùvT=ëêãI³1=DpÀâ»]{ò/•Bj²X@õâ”ßx÷öLŠ x'ÉzzPmU«°ÈnµWÕUS5³ãÙ´j«ƒjRM«Yõ©šW‹ª«>?\*¿39nåÙ•E¼¦m(´œƒcS%÷ /WŒ}:]Íè‹n~Út—7U[õ´+ £ýXç&¶Ùfœ‚ɾÙ7Áï×¼ßb¨vÜ8w‰á˜oÁp|ÅamÙ•FŠvÈæf(šøÐÓ@´0ENCe[9w÷v(&qL߃Dëñª¸îÈz•D„7Þ¾Úÿ·„˜ õì„$pÙ|«¸+Ž·ÝÝ·£ëÏž]X'½ðÍôÂ÷F/ïoüþ׿ ôâÓ=Ò‹\uþ(‚1÷C/×õ+zA)º^z!Ãwà—Wß`˜«øÅçõñ vD(½ ‡åzAžå$%ßâ8¿I9¶œÛÌ––öÛŽLÜö[ЬñäìŒ-6q "¹7×^nR3ö änsÎ(”øêS;…úžxr¹9Ø? –\ΦercÌå _"Dw›“-wÅÑL°Q³ÏÑ }ÝëP4‘«Àah¶A[ª "ZËú0´Üÿʵø@t4 æïßþö÷"E^Ìuy–Ÿøï#Ï/“gðw'ÏÐ_î†þr7ôwºÁýßÒéÓ?_l¾½NcX3 ežª<]¤ÔsB=§Ô‹}ß"Ö¥o†‘jÿüƒhõ:ã®ÒªÜ²¬›Víhu»«pÇËB­¬PëÑ ¹ž^¢× ½Z¥Wþ'éU~áH~˜uù¡{@³é–B¼ÿ‹²žî3xG.ÈHÒ>LiHóðCä•kÅ5“qÔv,?6Œ+7”Ípvë·§•[¹À9³§¥¬±Í½ëÍZ·¨?VÁçõ‡½òÚé*´—ËeCCÑ&èÝ@4< å÷sÃÐÖ[\ˆ¦ŒÍ>Ù¡è(‡ê¦ÿ¯Šj endstream endobj 2784 0 obj << /Length 1343 /Filter /FlateDecode >> stream xÚåXKoã6¾ûW[`!5CR"%m6/d´ÝoÉd™±…êáÕc“üûEÒ–lÅI³Ý^z"­¡†óøæ›‘±³r°s9ùm>9¹˜!Á¹ïÌïâû(ä‘ÃC\g¾tn]ê{SFîi×µÞž•I›Ë¢‰›´,àÃŒºSïóüÃä|>ù2!pvHO#A3'É'·Ÿ±³á#_DÎCw4wüŽõbæÜL>N°1s»"ÊÔV-Öx>0ž¢0¤çÖHÿ§G7®â\6²òqëÎÆÝ£wJµPÉÆ½d 1÷’#Nø¡—=Ýÿ‘b¡û¤ÓrD1v(œ%{j»ø³°ÿ" ùã`ˆtø—i¼Ò6t²Ú¿ÍŠû†ŽÊ†üêMY@Ýz#“ôcš¨ß¤³¯(ë&M´<—u¯¤G˜û£7å8rÛº³ìI‹›µÔ›¥5”÷{"éùØ}ldQ«ÚßÁÊ)ô3¦MyX—µÔuTÉx©wêÊØ”WÜ42ß4r‰ŽÇ.ˆ0"{{ì^¨%B|4Åš‰@8`Çarñ"œy„¨ïpJØ«SW§°Þ+ým¶Œ#ºoLz¯ÑÒTÞÀÓZÔªgý,c»ß×kk h­ *›«•1þÓåĹí]\Íof³¯e®¬€Øër)Üi¦´µ4w••^‹²y-~ߪpF"Aø÷üvÅ#É5J´HÌ„Nîùc"7¦»ª—z]˜6ëªTé~0ò…G±û¤÷÷Š€b@êÒ&Fþe2³Q=„Jq½å¦qjhr¾6,÷:¼Õk“Û¬mÞ“ÝX0 ±•,ìmÖ’ûªÌí벯4Ë´7i±ÒEg²ž G8 £Ðy1aØôŽR¶KÆx‡_´J•ÃD^ùzòøh@ÜŸ ºÑƒÀœÁW9œZÓüE@#fptCbŒÝÓSåRSÏfº°þ€Tt±ý½lnÚÍFÅ•pW‡Šî†-Ø~’÷^E(‹dX€{8Ïh€¸EP"~$véS?Ú¢6—X_ªžîáCÓI@B·n“5¸Ë®:ºmQú§Â§Zk™É¤Ñ{s½yAç¾Sa JsÅH# rÐA; jfŽO)7žöAûCZ$Y«Ùéä&ÝI¥ëƒ?è QX¹JÆËžŸ¡ˆs{ì}bü©Qó­6Ì8rU(šíˆ¸‰Uöti©™¢¬C×X¶yéFçnvt¢µìP‡œ€71_‘×— òI$:ùn× ìKæÁÉUdvV“}|fZ¶oLí=ÓÝEcÓºf=ŸÀŠ}3­· €z¦¦1…ük™/TÕþ¢-’-mx¹O©–( ÒÃçˆb´õ©Ú?n†Æ±6x‡NÀ<ÓoÛ £½Ïë•i΋²Ì 5wóÄÏÛJÈ3þu³ æ"Tþ_Tø¶Üà cøð5–4`2ê‚ýÀ@ ¦̤*IækVgë¾±Jò®£¿Nv^Ue5ç…? ŒC“7:†˜|§-¤¶¹I]i+CÅ›¯´þXÞWÀ&ôûöjχñ!‚…B•²÷"bØ÷L6¶!”ÎdT©ŽÕÿ“OÇ…’ÚF¦0^µ¼ºh¾ßuðxøÁӣߨ£ßÓĈø'ÿØ?58¢!úL ä[Ÿ.Õp²Lìˆ3÷ ž­áéëØÐ1!z¥D? g˜Íˆ°ÜM¹ûp.;+»<<­T$]YŒ$‚ð7Ê"& endstream endobj 2780 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1FITS_1_1OperationNotSupported.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2791 0 R /BBox [0 0 500 177.78] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2792 0 R >>/Font << /R8 2793 0 R>> >> /Length 295 /Filter /FlateDecode >> stream xœ•PMOÃ0 ½ûWøŒ&í‘i . ÑþTÚmˆ²n+‚ŸO²¶c»L‘b;y¶ß{[däx†X6pûâp¹Æ%lAŸ8„²Á»"Ÿ6]þÕ¶›]W½]ï0/`ÊRâµÅï°ú¶8ÎhÅЀeŽÉGŸXÑ”$>”Ó<V`¼JL ”R$Ô@Ž‹ 5‰%G(&'jª)ÜóŸ²j£¢£Š3¼…•#mFöc9hk„X¼'ù¶í!FŽ^Io¸ †ý[ªì‰;Cé“å8ð`ÃÙ–3”bËä)"´'«0U†¶¤L"düéËtÊ ê›àÑ/}[… endstream endobj 2795 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2547 >> stream xœ•yTSWÇ_yïÚ2´Ê@ó¨VÛº¡V‹´µÅ¥VT (‹È¢"‹$AHXBB$䆀lYX¢¬Òˆ‚ˆÅR7Ô:ÓÑZm]*õ´vjÛÓÑvÎù=ÎeæÌ sfæÌ9óÇü÷Þ½çü–ïýþ>?åíE Ÿ˜LiZÞâ(¹4Uæù_À ¸ /îy!&ÒÉØÉ5"NâCa!öñn zê[?øð·Põ ä?Ky ¡›cm/oŠ}eáÂEáòœ¢ÜÌô Eðò¥ËVï. þçM𺴼ÌtYð|þ#?-[ž#M“)¶fJw+ó‚§óG¥¥+³Ssÿýì_Ñþ¿øEÍ’ÉÃsÖçnÈS(7¥îÙ»5mÛ¾Ìè˜×)jI½H½Gͧ¢©—¨j;µƒZ@½MÅSë¨õTµZJm¤Þ¥VP+©@j6/åM)©³‚Wƒ^¯x•{= ǽyï!‘]ô˜–Ñט¦!”2C8cÛŒ °úrØÅ‰Ï îNÀº aóLÈpÒñÖb;v#èg>8Õf;ŠÑhGö&–¤1¦wµÅ H {LBµÎfEPÄÿÖ®lÕæ’;LYela¦.V bj¬u–ŒºêÔ ,±0æH]I|â껸å]‚î‡àx(+—"&³–-$ôÝKà~?üX˜òˆ<Ç–ÈÅã Éó„NzgíÞ}'òYùXñuü)ú~äÊ ‰ïdˆf˜ûù„  p’âbÅ¥ åÓ†übm.Åj«º:¡)¾6‡áUÙ[bÖoI ÁÄ ‘ A°D¹wIRÔüöºw¤«p@Žv¥ ÄŒf?Äà`Ów€`Þ…±ü½'$}ûò–w=Õ)Hõ}œï%¿[ |0Ëß^M¤b06Ók-ÚzóUËÿÂ,w»~(žþ¼a<»þ›ÑÉy1É쌡r{~FIŒ* ˜©³Âõõ×èÙ© ïÐé# Èÿ,ázÅ=çÝ#7G×ÿ8â•°6<1ÊÝ#ñå»àÒ Ô ~z"äÁïÅrzç I¹d®åÐs­f >ŽÃfÂd×ÚÃP;¨´öu6Ô„ÈÈ¥-=UU]A ÈäÒ4.G‡é ˜+šê*¤?3ÚJ*ÃÑT$c /Ñ„—£Bîã x“¬r >ŸVÏ„2'ýNe±Ã4Ž@Éô é:TgÔ7Hœj›ÑŽQ‡³©ëh¾+3U® gÿÌ+£•éšè"¾_ïF‡ëŠ“YbeL±C„Ž×ô£ÿh)ŠÅ|ÉŒîM•&Œ/yÞtÉVk—AÐÿ(y=c~M¯[cD…p´…YcÕ8ÌŸ!Á<æKs£Æö:Ÿ(@ߦuq+Ûý>¼a×gñJÿ >—Ãó"m¼|WÛúG±J£5ª1R”9†Yˆeð˜±[Ý¡t§´Db´ø­„EKAGG««­Ê\m®aMuæZ\ƒ:ûÚNŒvʶK¶2dñÖ¢Ò”4e&gñ1œ|yx°uì²Äß¾£º¹`0°·ÚÞà¯HÈ}1–uùÚ\MÎÁ|Œ2äý'Ù*Ærixf ¢_øªS½3a—“ÎÆÙÃä9ˆ›}|Z:»G+œd¹šé1Õ°kµÊÜl£A[TRpÐ6[Ý^j7Uö–5òÃì´ê± 'Ù£®czpcIoâ#òâlB“0én}YVE€æ9™®Ú^sÈîheïÀ3ß’à*C¥—ࢲò,Ó´b78Q·àðBn,ï\Ÿž…QHÄ]`~9wýžÛ®O«g)keͪ6p¤µ¥ýüúÓ¡ qé»ÙødùFü"â;K@xêDc¯[ÒÙÞÒÕ3>Þ1îw]‚ÎPÀ;E{Q\b6àr^Ò†–»ÊÏjbq¦n“‡Mµ–j\‡Ñ±:ýn–,eÒúrö`D˜%DDæçn®áù×é~v3SU/‰ÈÂKb\V¦ÕëTô2ŒB·ß…gÁ{ôæçg?HÜÁúNîÓ¹J=òÁ0÷êð,ÿB~s/m!}×hWY_@ä!3%æ EdM!};žHDS[Ó %ª0ÏXk[˜ÕUêVÓψ b<6š:-jâÚië/ö¦;5Óº]Y0n·V‰w®I‘mÆQ8¥[v¡h ¬ÏtÁeúàôݹ}R÷®ÖX‹Ò2wç¬ÃaˆHn¬æû[ã@ IÈmX$n¸Ýì2¾Œ;äöˆo@ãæþîôÍ­Z›\%&Ñ$ˆÌ%I‹ûBÎF±#¾Ùû5Öxâ—XÒO²1ãlĵP÷BŒÒ½GðH‘{ÿÙ„ÞŘ<#µòcKsU¹ EFFRѼ '5§÷Æd=Æ ÄOº~:ŽŸm;‡Ñ¯žÓ©]‚Ÿyh\á¡Ažá©1ÞÒ3Ðf×Ëš%lú&¿ÍÍíîä#Û"bs’°’¦›ß@aû¿$ŸÐ¦µzÝ:Ïö¶;™0«®ßBð øòxïåƒ_|âwûÉk³ü¯5ν“ÞT]Vç(0åV#Ró–°UÚ,õ8 càjÆôV©~còÿ ¼'—Šs ¹¬MÙÕÓÖÖÝ­h“±<Ø5n¥‹#ƒ™.¿O€æñ,ÿE\4/Z>í¤,×iUz¬ªRÕ"ÿ£Ž}ûj³Sq²*K–‘]”ŠcñÃÑàycïØžÃiu%Õù8mŠßõö²-çÀ7^¢ {H†¨öh±ØÎÀÜTÞRÆGR <èë;¿|s•̾Áι:ŒÏ¡sCÇ®œ*L_Ò»ßq 1’ß!Óë”ûqH5üæ‰k‡U•ØÌ<ÔjÏ2ü¦iUµê  °Z4u™6Õ¢º­MÀT¢³S´ye©>ÔãÍSu  ÷@(„ .Y,ÍÍÝ/;œÛÝ{¤£§÷À)Kˆ÷ùjÜŽzHrÐOÝzÀêãs§Êç7õ2ÍZ endstream endobj 2803 0 obj << /Length 1384 /Filter /FlateDecode >> stream xÚÍXYÛ6~÷¯R €˜ËC$E£)Ðî… 6Éú-ɃWf¼lÉ‘ä즿¾ÃCÖaÙ ²MÑ'Iäp8œï›ƒÂˆò``ó¸ž`ó Ï?擳«˜ RB°`þ) Œ!)’@(Ž„"Á|¼)‹¦T&áùzQUîõ¢Hw׋:+râ˜Ó`}œ¿š\Î'Ÿ'vÀéh$Ha¤›Éû8XÂä+°‡©$x°¢›€Å JÌÂup;y;Á=£±bÌX.e¼1‘QD¢)Á‡çç0¦u5›]ÝÌog³¿¶º´VÿYÔ·»í¶(AP„µ^žšƒ#2~ÀGÓXÈ0-òª6ƒqx[—Y‘på>Ÿœ]IÖ1”QŒ’ÀÁ¬‰›jõÂIõŽ3¥ Ûe0%à*îÏsWë•D".âFc•­ 0€&áK' ëHSa¤)H'ª‘®ËÙ„”Ú ÁY‰E³!ËÙÅ]k ¡H& ̦ˆ‘Ø­º|LõÖq"ç§5¸ãð|2nKmÀxŒuåDê{í^ªÚx›‡Y¾rÏ `îõ²,‹rMy’„¤ˆàpÑn“µ×áA‹±ô™½ÓŸÌŽE©Û-ádpªž§«­N3c_ê8¾ÑUµXélB=Oôy9Dƒx…#3§ùMDãpQ.6º6¶“°êë>Gƒµu“fn4Òx‚!v“Ó‘& ¢´Ýÿ‘be‹ñ8>¥ÄT}½6)pÙ Š(Q‡'aû€s?ê:\†t÷DCzB”@1„_×ß³†L[f‹U^Tuv”yÇ ’ð'þ ÈA/‹ùOàÒÏPl¹Äøÿ*”F…¤”½Lû}lz’)ãdêÚ’}rtñ‰sg óÂm›dZ÷)e?î5äÀÒ'!cr¹ò¶¿»žï­+—_"ÊC]Þ•~],u/oyÁÌ÷•ö{™ lž–¿—¾?ê©oŒsHÆä'°÷Ç`Û(¥@7ì‹ÑüÞcµtZ0ä«™ÿ¾ñÚ¶g† ÿ±ÒyS1m#c4”ŦY®»J×ëÂ,}°EØ ›,µÖÕ¬<Pú¥-r\y‹?Pʇô\-"ŠCtߟ5Õ—¤ä;—§žLÕ—`$¹®-ñ¦±%šòV’]Û>ñ×]É}kº?¾Ã Kp@n/û›“ô™Ð—Rżyžl7¹É_6ÃÕ ƒÐ¾Ž¢;¶oF¢å}ÓVžêÅ ]5ÁOáš!…nž÷léú<bAüZ‰Î«jÖù³› ‘ÁE¹àí‘V¯Y1m¶švö:~ÿ¡Ecêéöfw¼]ÛVhüZoî´g÷Õ.O ­Æ»ÏaVjBbT ñÑâa£öéÍ5j_˜´•‚‡¹Am·±Lº{£°-¹/÷UîàfÒžÀ–o,”´÷êy#{ZÛ É!-AÓ B¸v°86EÖ*¯ÖF«ñàrop´ñXlŽÚ)ÇGZ‡þL!œ" DÄt¶¿à^èzZ:Œ/t•–™Ë?”µÔÿ;kööŽâ]GÑ&ó›;{¹ó_=ß»¬7Üÿ·qüâ×I‡ÁñÓ-ÍðwGó7F * Ôm€' ±æLצ𷕼q÷8átzJ× endstream endobj 2798 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1FitsError.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2809 0 R /BBox [0 0 500 296.3] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2810 0 R >>/Font << /R8 2811 0 R>> >> /Length 258 /Filter /FlateDecode >> stream xœ•ÉN1 †ï~ ƒ‰³9鑪p†™7Ñ1”N+ÁããÌRfÄ EŠ÷üŸsBCŒ¦œÑ6-Ü¿îÎ`p'ྈ£iZ|¨µ!a°ä8z¬·0 2Š¥(Á£38aÝÂÍz½=\Ϋգޛ®;v·õljxï(dÁ/•y‚2ßB0¦8„){Öpé—†=x+ŽlV­@ªÕBõ?VË$Y­ñ”Mü ûݼ~^Ç+°N‰B§4‘NáÈk#J¶gœû¿mJ-É’ª©j.¶`÷$)èOØ0[»BvF(—Í«ebª__¯–‰R\F1“ÏÚb½óyžY¾±‡í®ú5¨oI endstream endobj 2813 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 1685 >> stream xœTkP”×þ>v÷ûND YuÜ¥1˜‹VÄ\“¦€÷T(WÑ•‹{½Ëî²»È.,gw¹ì²Ü„ĕ¨mIM¼ &jj£1!™©iLgÚ˜væý˜ã~˜Î´ÎôGÿóž™ç}ÞçyÞCSÂЦéÈœJ¥\ûÓ,µòjéþKsqÜ&ÊÅe‹©"NIáHŽžŒc“¢aâÇвjWPBšNÞ“ë}nVîóë×oHSW4•åºøÍ›’^Š/3Äÿó%>]®­,Wůãµr…ºZ)Wé~Q©,Ókã÷Ï’—ë‡4ÿ^ûÚÿ‡OQÔr•:­:C³]««?,?Z¹•¢öQ™Ô3Ô›Ô:*›z–Ê¡öSùT:µÚAí¦b©¼ ”ÒSÐ/Òg#žh‰øN`Ì ß-U‰.‰x¢¸V<̉/ÑŸ-@ú‚`p%Tø™|чÃN³¿:?âÆhvL±KFä¬s·ÅXЊLpÄÏtX½m³ 샒˯T4ìÙ!½Ë6»së+­¹&I{ÂÓíêÅ(Ðm*Û–imÌoE|C[€Û 'ïCß}x¸R1Y•´žHIÜ7ÏB4Dÿùï ƒÕ‰ÈS²Fµxan=YC˜âÛŽ;S+S_4Îãß¡o/ܸ%ZL4¿Ë}†,R\®¸ ô¢ZÆ^k´Ôá&lò˜: ò»Šp Þ¢x#'ã y"&ˆ”‚„ÄA!ˆþzáÞ5©aðçé;•[°d/Î.É™UÜÇ D°ë@påbí‘3Ò©c~õÐî%öD JÛu-úöè¿Zãë J18™m.KOÛG’ؘúªð¨í\,<ù5!Vdüñ…ìmN‰ìSÖîÞ_[Ñ˜Ó 1²Ý®N܃Ñé¶"Ù£ °Ú2í(æ‹/‚IÇX¶š-ÉND6‚†qÛÛA,È9lîߌN1­°Vô(PÏ|âð6ºÓУLÖ™ÖhNkAõÜÛl|ŇdË0ý‡AÇJhö3;ÝÆ>ç=;uî½@g·ÃÖ+õ›¼FcþÀtípå!µ>-_ö'ÖáÎÖ—›³ ü¼}|"¼ê6–Ȉ‡uæÚí{­¼¦ïÿÇHZ0Šyʬõµs O9á1e'àB÷?(g°m¯Ø¬©TÓClªÇÜ×ö $°Ÿ·õ›½[ùFÛˆe˜{y4ú×7 e~¯ôoᦸÖˆ¬Œã¸£ÕŽíØæ¶vèºtZŒ^ËÊMËž:üe¡ìjÕ[uZ¬”Sçm¯˜y¨“É&s¢§ÝÍO“׋½ÎÑ%ïìã-ñw>¼:ÿžvz_XF¨Ô¦1x2çã"ƒ¼²¨¬:§ "½õ2°ßÞžêœ”Ü âÞ;§ß¾Ž¯ã1µï%ôCÆŸž‚Cú{Þ–¼-d9ïËÜPpfÄgS Jûk¼¶>àƒƒ£á’ñ}{s«‹kd5ÅÇËÛ^E)Ç>'7ç6›5}éôùÙµßFp¢ø ñàWFßyøÊª˜ûW‚ÍÏìêhî^Š(°-’˜#2±].¯ÛëêÁ’±Ç+bb¯7Ùv´¢˜/A¸¸I\­Ó©U#ú@pddrR7¢’ñ¸V€ ô= Ž++5šcªSšÉÐøX0T3®”"ü¯Z”¹;ÐÅ}Ì̾xrÆy·=rEý´kS– endstream endobj 2818 0 obj << /Length 1070 /Filter /FlateDecode >> stream xÚ½WKoã6¾ûWÛ‹T ß¶@›M] @»õ-Ùƒ"ÓŽYJ%ÉþûER¶deÙ¦'Qâp8of>aDE´°}¼[`»„ço«ÅÅ5Q†´”,Zm"ÂR2‹¤Hj­ÖÑMLY’R•Å—eÞ¶nù¶.{Suy·«+ø$° 1Á<ù¸z¿¸Z-þY¸GäD#A‹¨Ø/n>âh ›ïÁ¦³è±ÝGŒƒ(±ËèïÅ_ <2Ú+çŒ Q&‚±ˆhDIR‚1Ž//o1¦]»\^ïºöªi"⺙¼‚ 4‹o±ÀIÊ…ŒwUg]¹¸VìôBA‘À ì¯2pšb8]%LJýîÈÈF–!ö'î꺜ӫƒP»+!²Î¢Ÿ´‘i*­4é, Ò]s03÷‚Ö:c¤OMÈüÅ5Å'Ò)•QÌ`A#Ì*º>0îMÂp^ Ð]í^Ý{*̃…Â2Iç`”H^µeÞ™Àrðë¢^·‚@×ój›&\¸7m›o{/Áø¢%©ÏöêÞÌXá>=4ƪ|²;Áˆ.È·`b ©ßU[÷áŃ[^Ù«½'oü¹zr>Øäoòº:³v_î,0>Mã8F£4Œ>IaŠ!…R"æ>%&”Çy“ïMg Æ$nÇú¦ÏÙ²?îºM»7[³"“Hgüó5+‘$òX³3ºÿ'ÅÚ*VeìszAÔXmß]„š»9¡2ÄÁPò=*EìkÞ…ÿÙ@jŠ´Ñï3kTªDKÄ¡ŒÌÊ`RDó5÷ÐÔëC1ÕÞÎO1àõ9y†ÉÄËüN@­däøŠ{JЏ’ÿ es TJ„% ‡¯CÝ÷Ù2»Sc~õ‚©fò*À¬êšº,‡Æ:`êØ%‡½z3ê¦íW‚íÅ~} —*õ h{¹â™L¥Œ#(ÚÐÖb6ÞÝý.ôƒ#›{´$(÷/[S7¾‡i¶iêý$™NiYÖöèãPÛ~JÓ.GS €ŒT¦úI&´ŸÜ·”бÔM*€yyZæ»ÏýXÄN y%ߢ£xzò¸:¶#%tϪÒ`$„5Ù@&)ž'’'\ƒ©1,?˜M¢ šª0“ál1Ñl=8>œ±0ðŽB[ —¯™¸Ùs§)©¹Ë[s–ÜQúó²œáKƒžÆ¥³š› á¶rwçà*™Ý‡è¸11ᩪqçλª(kOVæ% úHVšÑ¥âaÈ®CÇD—ÒAö'1&»È1ÕlÌ$¯îoP]nSçÊi—o­³ÎãýLDŸÅ¸fÙÁ ¢¿å(ü°Ih'’ŸvƒL#&½+ïl«7ôU¢±xÇþȽý„¸'ÅPKî‹Zb±$:8KÏ=ÇÇÛºÔ§­­–ØTS÷ÿÁ` endstream endobj 2830 0 obj << /Length 916 /Filter /FlateDecode >> stream xÚ•VKsÛ6¾óW`rhÈ™@‚ßR+ò$3žiÝì(¢8#’ AÅÍ¿ï.Ò4%§í‰«v÷Ûo#aäÞû}ëÝl"IRšÅqH¶{ÂÃ&qJâLÒ8ãd[’G_„ÁJ$©w̵¶âº+Îj‡|¨»T’Iás&ƒoÛ/Þ§­÷Ýã>óÈiÆ$)ïñ#%~!Œ†YJžÍÕ†„\åhx$_½?=æ`¾õCΩH8 EBYÄ1Äw†IÙ3ÑvNqó¹á)Ywq“ ‰"~^"­ÆP«Y,Ëb|…E‘FPhYüã¼ ÿX@—HýÕìToå͹-Hmè[¦y³lî<¦IšA£(²¾Ÿ„ [„ÛW÷_÷y\Iû›zПþ.ÔÉnn°²OL²  ¶ÐzŒ\úuÀý¶²ºß]}°â®ëŽN©ë#4˜ó×nYq€*Þ@êp] 9ÅsWRÂãFiWê2™Ä$c™‹6ÆuŠe³8Kb Vd!àŽhÄŽÎX.é·n†ƒ²‚êû®.±¼j¡E‹¬ÂŒ²ûˆ†±çŒ F,gŒùk5ä@ii[d­tÑ×—U»deÑ.@¿ˆh,Sã_ë_/³ÛåÚIÅËüïƒùcÒùÑõ€Bíè|òÓwTó¹uîÁüŸãÙíXïú€3?—!ž>E|¦ GÒG,•—Á@W*×:?(”á´û¾k¬ä¦ñ” (‹¼µÂNŠsuœn„ rn?󨬛÷E>Àd‡÷“Û³žÜ Å›øîÅÄ`'Jù+3g®W¦ªWm᪃½þ|¨‹Cp½Ž§®nÝ„uû%ÿW‹\*]W-ÎÏëJ¸‰ø¥â1Œ+<…•ßYÞû]§ÕCWªwV}Êmq5`P…Í‘íŽu‰ÕB͘&ÊþÍÙyâo>o¿.¹BC—…ñÑÙ/LÿÐã¶ÂeWm§¸žR›Õb·$p¸ÿEt™™è··‹œ§³„%mQÐÐm¸³ÂÜa•†ãáá›±Ê{eONãb YÒ}šET”Êðw®*³>ÕÙÕ ê©š´«¯5gœJžýŸ×zü3ÃGóg0Í^vܽjUŸü¦ÝVØC:̇Ü-î·`ðhXMrËä-ÏÆ-$^¶ÐÝÝcbЗkfÝ™Uñ³ÂÍê«v™þ?Ï¿6z endstream endobj 2815 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1FitsException.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2833 0 R /BBox [0 0 500 901.29] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2834 0 R >>/Font << /R8 2835 0 R>> >> /Length 1514 /Filter /FlateDecode >> stream xœXËrÛ6Ýó+°l»@ñ~xYÇm3q[i׊CÛêèáÈrôë{. ‚)‡ Ç3¦uÌÜ£‹ûÂg&¸d‚~ÒófSý|åÙÝc%Ø]õ¹’Í?YzÜlØ/ ¼˜Ô\†èØâ¶j‰’yÍu”†…àxŒ-6Õçç·«ÃãÙÙ¯ø}ñå¦~8¬vÛÿT‹ê=Ç‹R³glö[õ™u+%C$­4 >j.,ÛTÊË…ÉÈ:#QHÅCÒ±†HϺ¯d†[OÆFc7Õ5{ÿ}z• \+Å‚ÁªZé=ß­Ÿ6Û³³·ÛǧÛÛÕͪÞ.ÖõÇ, XYk86 Újn`“ Êq§:`Ýš°÷ºç ‘Žt_7–L¦ÎQë·ø}Œ\¸ðŠÚ—ëÕ§7ËÃrñõ¡êá}îK¥RH•Z“§ a¤gA«–·† îfz–¦eÞZ.Åkžm´^>m>Öûw·W»ç ŽõÆ.b©7!½^ïpJcéÈHfA¯÷’{EÆJœÃy¾ÜJϼ”\êoú:[ÉÄ m¸9rnB ± ïª#W‘Ì¢ƒì7,•ˆéyεÈS†9ç92ÈØ?—ûå¦>LÑël4Ü—Îí^¯ Òp' u'Ì"ç*Ïa$Œ•ôœ£7Ð XV!?Rïåîòi½þk¹~š´NRXèRgB Ú7惘HfQÐ x=’‘ŠÃÈ9:£âX…Y¹2ê¤Î«åö®¾ØïwÜi½´tÔz™ÒË´Qã0•Î;ddëÈÙ°QqØ83V%–³ØGùÓîü{¿ÛÞµ¦åa«|“3 ­ )´äUW:ð’Yª–6†*îç¹Ô¡‚kËLD°Ëc—^|9üþæCÒŠõö­Å4¹&hG¦õr;¤+쑲ãýû£¨³Z‘•0Ë©ZHœ~ÃŒñ\wÜ:½]\õËíá|_/Säéè¸U¥¼„ôòŒ“Žk[J"™‘ÝŽ'ÑS¸yáhPŒ nL¾¢ñÝC½W¨#â(øBa‡ %JEYG@Ï!}:r#É:Íaݬ„8GèkK+râåîúéæÇv‚BÔcjç … éj¯}ê‚;ÖÉ,Ê>(&šVB‘³œ¨P4mdšRš=¡îÛ/©Ç¿Ü®ŸvûCýi‚Zá=ut…Ú„jU„õ±Ô6D2‹ÂRXÊ;°þ¬« ×Þ"åJ$p;h¦…ÒÇ£,ÄuH/N¡}oØÌ"™qãèÂ4ÃÃ,uM!¡­q(¬øòÃaµ>;û°Ý×7»»íê¿úӴܪ$F åJµ )ÔÚö5³†Hf¥R‚c­¨¼Ì¬š[&&{ìʦŒ¤Žï; ‰ô6P=ïÅvH/VFLN¦tä $³H,Td"˜jaë¼(ÅŒ†nQ"§Ù_Uûv³¼«§OkRÃI±tm‡j­móšYC$³šÉ³Vc*:‡8/ï¢]ŽQ3ò²ñkÔ~WwÐ>êæ²!  )D ÁMçš% žE‰Œ ŒêšÙöÌ@#α=áѶ´üQ}Þí'$\”v¬ó¢Ehu9½ í½˜L^ =‹zxä$|}„çIŒ*-¼ç˜xýq”.–×u§³ímÇeŠB (Œ<¨pœn^ "‰Â ‰ÈDëИԪB€Â—Ž=Ÿ¸´Òó‡dÁ!Õ4SRFòõ-ñ¥÷ ƒèmî­h¤ñºDKÝW·?}Ãã4M#ÅñNHkÄëDiѹ’˜"™)XÍÇ1Š4†Ï‚•¢óh)}ÁKÀnD¹_‡ŒmPtuP;dŒ¨ƒm¯¹21!#Dkï‹rÀ%dŒh…kï^21!cDá\{‰‘‰ !j§|{Þs3–1¢DÔ7sv&&d„¨<¦¥PîØ!cD-B;þebBFˆAÝV9ï'dŒhThç•LLÈ1z”îè±#‡”a¸CÆLŃnñ7emk±”1HxÇÄ÷Õÿ4W7+ endstream endobj 2837 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 4401 >> stream xœXyXS×¶?1äœSKÑJ£I±‰ìà¬Õ"*N-2*‚"ƒf!! $d'!d$™ggœ­½µ­Õ«Ö–úZ;¿¶´}wîæ¾ïî ß¾÷¾÷Çû’?rÎÙÙkíµ~ë·~ë°Ÿ‹ÅòHËLÎ[–•™(ò^/bXÌüÌsl€D_;¹žÃ| à˾> óý×ÎOÆY°p6áÃbîˆv¼ýÚâÅK6ee禥¤æ/XµbåêIÅ ?Yœœ—–"Zð2þQ˜œ‘•™,Êß•–™T·`Ú䔂ŒÄÜÿzï?wûÿíOÄ«¢¬MÙÁ›s·äåo+Ø^X”¸CœT|@rpWòû‡BSRÃÒÂ#"3¢2£ß$ˆ÷‰Pâ%b7±x™'^!"ˆHâ5"ŠXDD1Ä»Ä"–ØDÄÁD<±™XNl!V[‰•Ä6b;ñ:ñ±šXC¼Aì$‰]ÄZ"€x Ç–ð! ˆ1Öë¬c3^œQ3ãoìö÷>k|Ú9~œmœ>r3ù•MôAúáï‡Áãìú¹0ÕEÆKj@ {¨“ÇÝ€>Õœ±]ˆ’)í{ò’¸JZ º¨8“¡;EÃbꇄ ÷fHvlÜ£T†hqš"ZÊ—Pf£Uot›U'DzJª(­¤±Ae³ªÕþ:²¡‘ÙÏEóV.F4ÿûWà8ç§?¡ò–ÿ€ž–fqÇ//FÏ!rß¶ 5 ³Î–|>¥½vSà7¹\6Âü>Èjƒ4{’`¢¹e°€SHª KäE  HRS\]¬ek3vFlÞ™¼ 4Úùh>Œ‡œ_Gï_׿¼-s-à‡€pÏþˆSô¡áöï! ^<[xpPÐuØ•å~Ïë=Ê„™Ê.ÆïÊœÛã°àÁ<ÿÊäBM=¹A/·é®Óp%å/NïkRÀ'¿…>p!œ½ù›Eá y Â;”ÚY˜Z!á—PV}5°ºÇ¬Ü#œJ¥@”Bª¦ýÃeL'·ãBßè­SëÑÿ4#næ=a}øÈ‡@?óU?ë †„,ví\ØOBüÙ}퇗û¿?ƒ‡¢»áç·~ŒX}è9@£&1yOe)×o §B)Ý»rù ØëÜN›eè_®—¤Ü<¶  ™Ioî‰í–¯ô¹µKèÇ@àWŽAëë— 6ó|‡›EÆ?¿/½¨£³É:=8JC—QãÚyMÝ¥ù¤üM™5Ð|¶[Pj/È))+üCÒÖ„ðèo”€xröyX›€&Øî¹°ÓMn¨–;t7i˜/ hš2Å;ÞÐtº©ÇO˜PJÿ™ÍvÇL»Q§˜º£¶)õi….À¨ÿíÉt€§wñRÆ%fއõé8Ü2Ž3vš«!ã *‹î B«$ÔµJ‡ÄÒHN,L¦È.Ègúàáž!!¼‡^–Q'´N™>žF&êí“1Ÿõ­mm sÖRUÚÓž>û'u“3<,HMxyð´› 2ÈœÚ[^Ï ·k_±§ÅÔW»òq5­—+§)MæaÞö°˜\$”’]•.%¥VY¡|9x ¡Uí¬t+ÔÛͽFÚ…b¤Ô€Ö¬} ú¢AžAmTËñGeÔ*ª´FP Ì5®~ø ¼Åk¿Qmî0Ò8òÍÜÀf¤Tʦ Uç)²W¢\^ Ì—Œjø Ñn>aÆF¤T…Cî‰2ɬ¹Õ’(ž÷*tVØ´6`・¥· ¯Ú&¥š´ec @?ò–Òj`‡£“—Š÷-R¸’ 3à›ÉZ;ð^ýÑäÁ&(?&Ty1ìÃkžsáKøê}Œrf×_¸™\#t¾Ê9"„Ñ8«i—6ôíw‡z鯏|wQssƒ§±JgÒ™…Z«ÎÌtkWãà©VQ¤`…–î*.ÛŸ\P$Kéð!# WGŽ5œ½*ð¯‰2Õ è ŽÞü-ÿ’ 25ŠBy®,»¼ЩY=ÃÂ*Jed>qŒžFìtbgãr_99{¥ÒRò@A~fD ÚŒÖð`"¥¿m³Þ¯ÆîÇÔØå†w!PñǽnjIn×Ý¢áûTKÿ½pgݹ- ¤¥j‘N@®ÃË.¹©h½Ì¶âg$ƒF ƒ¡7>¬µÜ0ñÝÈ*o¯}ÝÅ‚sá^™Šj3FÐ30†÷%ôu·¶»º |Z%¥:´65¹¼ 7C£–—•;xÒ¦²m•¸SU‹›†«¦ºCsw@j¥:@miçžÐKo2œvÖ‘;l渂¿9%/ ÐËC>‡Ôç?¹ßW£L¶ « ,¢zI#à·4¸›.l>S”’$ŒMÈÚ Þ¢÷Þ2È>>XÛÙ'hmr·u\ÆÁ ̳,æ À-®*^*“/®ä# ™×8.ô+U‰frêI˧N×5 $rO½Æ‘2Oy€ ùÙ6VëX„ M~‰[ªSƒ Ý2û¨¹Ž»Øž’4Åv¯H°èMÀ è~«2IˆVPÉ]Ùö¸­S˽€ž¹µ²/ xNôwPU•𕳴ø ¨Tr¥BR”£:0òs8úœºõ×±“{¢„¸ž2oE̬æõ‘yþâÉèÉE\$“Ÿkj$Æçiôšâ2bZ/&‡³|p=µ“Ò>_* òVƒWC•´Aû;Í̧¼?u‚SÇ4‘Æ?jê±Q~ E]êc1KàZnüúý¢ ìo],Pui¯Ñð*Yþ¡²=·+³ooC4ˆ{Š“Óö$eƒ  n®Ô·/CbH€îÂ%\ûÝžþ«à*hΪY=M„}Ì¿÷±z ɬƒ$þcr-…£ùèE´oi×ò±0á¥o~EG,œÕä¾_D". C>ì[ èŸQ0ZÜwx,®s)@O‚Pù–Âè²\In~~jê¾â(°ì«OéŒMÿ @6˜hûyè}tøTãy@?Ò&/tÁÄ6Öï¸^ó‚zî§—Ý5JQ½ 6Ç¡¬Ã¤¾¾©/¡åýèì}9œ}å)º·è Ã_ Hí¥"Ø+£k\TQa·iøô£I“†AxºŸõë,ñê;LW·Ê­eúÇt¤*[¯z¤8ÞÆÍÉKGïQ-Ú:] ¸ÎÙ†›¯tõ]C²ìö#«Û–b¨Ô‘pW0·Õln…×ö¼´(4QE2½!ÿQu^„éGMm¬¶O`ÉÖ66“Îð¸G×Q…@f,2Xx9¶,S —m ^Ò’üQº0'¯°H®¨¬à¨¸ ØCE›¢sÒÁ!:êNÂO·ï¶  tÖupmϱUˆ[Í‹4äYA-ðt÷¶Zú*ÝZ胮ÎÖî6W/8 Ú5M².©¦žåö¨îªÏúawiÊîõgUXûH“Õ5xRh‚ßs/·õŽv¶H2kîTû>p€ÏJÝ»3éß(vîë³q¸ WV‰‹iÕ˜uŸÒ0žú3i,(41ïý½x‘ÒSå¹å%ül/ÑUé ¸ãÒÖòý©ÃXŒjÊÃT8A.j·©Ü®ÅÿWSC£uƒx:’²Yˆâ(mp™"Lƒ¥bQ´›ègMLÀRœµÉWÜÜdc‘MÔƒ’`5ú; ¾Ã¥ý9íÉÇ[–᬴‹É[å¶ÿHl™rƒ'¶cºÏ8¼R2–º`€eè*®!§â™Ü6»e>}iÿÒØÂı`oNªz1fq؉m_š˜swâñyþã‰@é"·›TVï&ª0¢å)æ‡Á¡·~ó´–RÚeÊ­•´ÿWÐgr7;??KÔXÐÖÑØØÞžß(ÂÒÿœ¬¯Ààciž9Ÿ>€²ßæù/aÂq¥’þó *rI€Hª$Ú¿Ûyè%= $HÒE©ʼn ¼5}Bo<{àH²µÔTréí±{ß]¹ó<ô‹ä“(•ÓHú‡¸õ§+Àê*Ü*¼“tàXùÑH}ï/"®#ÞMá GÀyúüPÿµãCâ”^AçagNm(–äÓÓ óó šqgqsƒªJ¸&Ë……{ƒ¤±èfR ×q¦®’j´ŽÓL6AVC¤ ôØT%©[S¦ ôÚq¯®Å³$ãÁƒüÇ{2ÒKˆR1yGã*2¼„Ç( lU'K2³ãwdlÁ ®9ûDq—ª|@ÃϦõëç^ýÚ'¦î=V¶Rhãý ¸²n÷Þ8*h²Ž‚;4tR†?íÎûÖG‰cýë8»a.T¸È£Â¦»@3?P†˜’CŠ`LþÕ”]ïÐãÜe“á1‡ÒEÊd;+èi Ÿ|ÊÚÜéu3QLž¯¨W‚,P¢Ê–g¢W¦Ø<´~›~«¼¸øÀã´vLÀ®¯ÑcÝbêVÃë nj”ç"a.s©ûžÝ~7ËI7(ï,ëÁ8 ñ~½óe®‹ŒÑ—Øuƒ4쥀Áb3›4 ×õz¤1WB&¥ S*½|–ï¢Â¬V‹‡`Õ1ÜUÐë³× Q ¥ U«v«ñ¢,•c8lR¸ÀQ>L¢à̃WÖíŽÉÙ)(¾˜Ö öìÒµ;èÛ”Ê%NSDyß%8½Kh±–Ä Q5¥ /•E`2þ{ð£0ü}­7 qbòŒ¦^²A‘:[™…žFßñþ ª¯´h«øe j7°ƒæ&Û˜7 1uQg+ëy«;ˆ·õ¢—_U}E°cùì¬>S…—hÅÔ«¸)ŒœêñFjó\=õÇE>€.sdÃsî³vë9›7™ |©‡lÖ}ÈfÃùL737÷°èHn{gKsGgNK¦!ŸÿqÏOæd¢lpŸ“˜ùå“F_ß{U¾OÄ?{“EÕ endstream endobj 2843 0 obj << /Length 1654 /Filter /FlateDecode >> stream xÚÝX[o›H~÷¯@]©ÂR= 30Ñj¥lšd·R¥në·4OlVRÀMóï÷Ì ÁiÚl÷a,ÌÌáã\¾9p° pp9û}9{}ñ AR,oŠEÉ‘$X®ƒ«²ù‚ÆIxV¤Mcÿ¾©²ýN•mÚæU Ks,æ×Ë·³óåìóŒÀp@zˆĨl7»ºÆÁ6ß1™wFt°D‰~°>Îþšá¾šO©ÉcD·jþy3_0…eÕ¾‚”†íV•v-Õ®ªªPi©µ|}Áãb’ ˆDð:ÕägÅ/¦â‘ðbkÕªZ[îòR5öU·°Bx˜—s¶y¹±«•Sn§š&Ý€,ˆ ù"â8\΂+´‹¼mÎ;x+j=ìvs‚Ã}ÓÚ¯Õ'Œi©ì]êo´’é¾pRF¯´Ø;1³[Õöü?ájJŠžäjJc/v›ÖZ¹tg\^CÖD¹¶A_.5™EaAYŒ„ˆ J÷lFäÁ«ãð¬*›¶Þg­Ñ™&áK{y£†ËCÂ÷}7T– ¹àÉàmˆø÷i§¶ÍÉÉ £[ûÎO˜cMfZK»jRY]ÛbÖw¢¬£hžj¿m^YÑ(A¤ã²> FH’x*fCD°Vv¡ýÉÐUÓ.[P<ÐY¢˜ÚgßÏ)œÚÚÅ›°™FšD|¸k7õÞdrâ‚Â5~<9 $Œ»†É©ýK Ì1N,O Ýót™¦]_G;ß3˜HÄm]ÅsÛdëötÍ7eÕ×ü§±í‡íú)?Žûƒl{p?mÛvTLôyCý‘ƒÎ\A}§v+åŠôžÌåóy%›u%ûhñ5—£ÝD}‡ ž„ª_Ñ%¡¶6š5 oÛ$H°ˆhJ.rÜÕ竼Ö©ë!#/ü3Œ ¡´OÖªÝÛ.µlF¤Uuí{5GRÓ_‚CtNÔ,·9<ab  ­= éEƒ£ú Zo8t½åÑÍ:LU–§&+ëÍ»¼ÝŽ F°Þ«V«LwöˆrÝiÚëﶹ=¹³5Í2xw¾šSÎìZmÒz](?ÍøƒÚùÅ6ÛõªjÔ»jí;àÒU—¥Ì>KÝyoT«¿ëíûŽäÞ‘j=Ÿ6Î^ýì0sÝiÜÔÝlT©lGÜ73 í° EQéGïºÄ¤ ÖŸ g"Pœ@³L9âÒ…þ¥|<)phH ×Mxu+¾Šh«a>áô{0²¯_uô£˜Ks(^I¡ÊIw`§ûë ã²6u­`áï˜cb±*3õØ‘冫۪…¸åiqíªCÚ¨‘Är@åfºSi·µ ‘#ƒ'…n]Üa36ÀR‘¯lÜa€ïûÙE£L2bá/y™ûµÍ ï;HrH·Ðu¹”óëVŒâ®¿ïh 0¢ÖÉþö„qÀèB%Žkï÷+Taš>ˆÛTºŸ Æ%Þ³˜c÷äèì¹z¡ýkÈ41:ëÌî ÅÃÞ4_êäxt r­2¶3œõª9]ßwýE3È»Ìj_›š„š.4‘õE¤ñ¡Ûá’Æ4Ìü¯7®{eˆþÔ ûóeÁ.1·† 'ÀË( B/Fy3ƒÆÛ€ÃwH`Úyß<ÎNâáHOºzýFµ)dèu7Èguþð“Çÿᜠõ©~­ ¶ž ìˬ¸‚ÖØr#L¥­••Jí–•½6û•1²ûJÅXâš½í›x´VŸ÷ªi™¶ºØ7Æ.¡[‡ÛÊq³Ï›©"žå5TG ²NÍ7þq~úñôÙv4sr¨'˜ Nä÷|qôD¢±=*,‘@;§à¥®½‡ºëƒ¸œK0Ø©ü.u´ Ä^)†\cWâÌOˆô¢ O—éYîýWC¯û&y¨Ê±ùÿñ¤B endstream endobj 2866 0 obj << /Length 1816 /Filter /FlateDecode >> stream xÚÅYmoœFþ~¿µRRn³ï€ÕDj“8j¤Hmr•"9QDîð…¸&î¯ï,» ,ÇíØN?œà`™}fæ™g{[{¯¿­ON¹ð"KɼչGC¡Œ< $câ­6Þ™OY°¤aä?Ï“¦Ñ§/ªõ®HË6i³ª„K êW¯/W‹¿fÀY$(ÆÂ[‹³ØÛÀÍ×F,޼¯ÝÐÂc†õ`î½[ü¹ÀÆMŒ¨P§ê`–sN‹Q&¬ÓˆDƒ%ÁûÏ«²iëݺ­jð–Fþ#}x‘º—Ýu©ÅÌ;—–”#)"g6Dì|Ï?`LÛæää4k›Ó€?i“|òWÏù ,¹þZy©/‚[Y¹µ¾‚#ONC6^3ÀÉ(¸ÑM¿É’€`«ºàĈiÂ\ÄYÖ“SŠG£—”`Ä™„Šáú©?p9+[þDŠ´i’mªÿ4mÃ8ö[í8\úIûfb˜Ê΂ãbp3ûÓ£HÞ„v°EU[? ¶0Âß—u]Õ'Á’qî#„~2ž–}²Nò¼Ñ3ˆp<ˆcb§hS• Â/²2iSš=ÈÜL˜À ÏDD¬NæÌPî'uR¤Ê>!~ãZœöïê›êÞl©‰ྦÒ$’]VL+m0ýcìÆÊ® QËc†a8Ї»¸á )T"_¡>"Ú—ÇV~º˜‚ ä®®¸¹KÄ!éW~ÕÙ¨<*«¦ÍÖ¶xl‰™Òi+}ülªë²/ÁÔ$t¶žÊί†G.ÌX ‘6 ö¿µúBu>‘ªZQ僎ÃÂ#ŒH$îË5vE>@ª~¿á™@Z£œ"š@®,–›I+„Kç ü®¥t g†°ÖCÿüÚµóg›–Š™Ùàž×U1‰™6šç•zôkuňyÚœ8„â‰Â(bˆKi¨–RáŽ:[ è:ª%½ìâÂ}ŽÀªI|ëoßL^í1%´—PÄ]'XZ'GLÈ¡‘Òý&úûêÝ_mý3ÙAeì‰ *$Šä+T?pƒù¨¹Õ#¯¨Ä+S””Ôu¢`¿š™:‚q4¼—©#hEPAÎÔ—À º‹Sa´ËI)i›Ö/}ßYS#x¯Þωc‘ñìz#V‚&Yh¤¸Ì!gõ•·éy³¤å:=*1hK*c# b‡G%Ò^$†¾Š¬ÈÖͤšvsbº}ž}Öå5re:?dÊ'…ÞÈ0„ð±áÕ€b×öÕ¨ëµÆP­­«ú»êl £#ÄHרB ‘¤F2ýœ•ë|·I{؇‘Ø$Ž'±slÙr{ߦ¾.Ì©©…C<;TtcðA¦2" è@ßI«ïvŸ!ty׌ ’oÒâsjñé®\+b›,S¢´¬¥ÀéÆÐeSoMý¼í9¤ ˜ö'“üc¶Ñœ'ðûm Ý Ó±²œQ”ÅQ¯ö.ŸjygR«ÖÜô“ìk¿~áêÀzŒ‚U‚|ÀÀË+Måvj^'•Þatý¶ËØÄÒ¸í u:j¶]_VªÝ×® (<»<lemé …¢ÚdŠ6m'éýÊ,by5¦N›´½f½“m0TÌtoxà@tÝÚ ˆÌÔ¤dŤüÜ4†Úa|Ÿ9G‰:€MˆsßD?â‘oÛ‹ö~Ò0‰?É·Ë` ¿½ì;ºë…ó`«ßÁ´üUÃ3¸(fë«ïvypSp@t3‹ŒÕÿéL!Þ“ÍsDD(b6e¢Y'ððù·i{‹!Ì7ËhÜÅ¥NÛÞî–ξ¾­¾(ÖHçå¬!š]¹I5¨ù°é¶å°í°ÐtKä4‚ƒû,íx NF=~‚>ª("‚0ìáo¯Î¹GÇ)±º´’¼ªg,@:I9àY°ºñ» p†§©ÞEËȰ٥ÜKÖÿ@ÖTÙææ(>ýN‚z?Î{u{ÕëžÝàù!‚¿‡ƒÚçÌ ˆÔl[C 4j·ÕÊÆÚÕ :™`?Ù\d—F)§ER¶JAßåݶ„ÎÊü‡r ÉþUާŸÌº³{©~M7à¼z¿p¬äê)¯ß¤yZŒiÎæ¤ëýö™GÛ¾‚þqÀ»²eÌÿó‡èí5¬&iÒëûûTâ¨ã“AøÞ.Ž1lxë.>lÀ§46yÿY¤Eålç]b;ªhˆDxÍæäáÜ–os³2†¢ˆÝjózO*#ɦ[׋¤´ßuÜ×Êsx”—n.ò-ݺÑýÂA0AŠ÷í·N‰hhrØ‹bÐræ«á+õ*vx kwä« †M·ÁáMbz.1èS É¥¯„'XœØêf:èf÷Û•Ù•›o©Ý»ú«­zí©D÷dùÿì\ endstream endobj 2778 0 obj << /Type /ObjStm /N 100 /First 991 /Length 2930 /Filter /FlateDecode >> stream xÚÝZmo·þ~¿‚ßb£—ï/…À–,Lj–’¸5 ·Ë•¯•ï„»S+÷×÷î­­ÓK²'­6$q¹Crf8/Ï«¼WL0åeÆáÐLIꈒi¨¡˜’šY]†K¯|dRjCÃ$“ZjjY&­ô´ZND¢Ï‰ÀŒ™³e€gÒ .¼óXÚ(LF«â]`2hO-ô…P¦Å<$*Å”ðq‚Æ«@k C YZ ó4ÂGC‘Å3-Í#Ä“žæL[üAË0íliY´¢@8ŒðF2£5¡ pL<°¨t`ð^Lj@Wô’ZWt `´pšXòSQŸ4n„4>à ڰFC‘cm ´+ºH ¹@C$$õÑ“N°VE-‹–/-Ç¬ÕØˆ­Û`hY¥˜´aAiæ”*óæ "µ,s¶°§s®ˆ w¡èDclˆ–¸e.š24 h ¬í¥,}žy¥‰)#˜×‘ä6†yë!¼ÕÌcYš- åHlÈ轤õaÞ;Òæ 5ƒ,¢e%­@}Ø?h}z2N¢Q¶  ˜1ö L+L€¦¥>U„ø¥o=ÙO°Š…(VsQ’ XhTEÙÖ²hÍb‹®,î`Me, UˆXa©B9RþHaI ¥pŽ6‹A°lAJá -’¤.ãÈ—TYÊ·Òå} ¦'U˜45ñÎxšÊíyê´…+ápnòäɤÚgïáÞ^þ–UïþöwŒ×ÜÓÄ^ñè-›ŸŸž~˜|÷]¡>XÌ×ìÉVоÀšÊ°ئ›9hŸ`ûÝiÆ´y€º`TÝ̘îˆQ«ºé°Tõîõô¹î–zù‰Ì†ñåí›å¢>ÌköžUoöXu”/Öì GŸÏ2^¤“<©öÀož¯W" ŸToójq¾¬óª ¥ïÇÜÌÒ³Å{/Ðá×>`¡´ÄhŠ¢#|:Ÿ/0Ûû.º?%¸QãËúà®9¯ó’=zñæ{ñq±Z¯êåìlÍ"Wþ1˜Zæ´ž-æûiÙ£ý¿*¡¬Ðð/¬Òß ó߀îÇEó{$G³õ)öNÓjõSú”ûÙX}qñù$ÏÑõô|ý‘zo«èùÅúÅá+Lª×o~d²û,­rÙèêíáÓWÏÞýåhö)¯¾}»ø”æ ìçN"LZâ}ÑM7)½Ñl¹Zï}LK„–Iõ*m¤“ê×Y³þØé00qåq¥ìb’u¥Gkýå­‡}Óo÷DD)nù1ÆlþR§ÿý\—W¦wýo·š&ïE×SÞÀžÏëE3›Ÿ00:_ÍúŽIux>]áIr[ÉÛêêÔG;u»rŸCĺß*d€ä‚§édÅ´Â~®j2Ktc»ÓÙ÷yvòÞÁs÷ŽÆNª—ët:«ŸÎO`$Ðüá:ú…Blk¶Z÷² ¶—ÛLch·ÈÃU{Õóê zYýT½®«£*UuU/Nóª©rÕV³j^-ª³jY­ªuu^]<î¤8˜fÊ̱8õ¶NŠ]RÛ«ÙüŸ0»Å²ÉËââCõ=ÖÜ{_6÷9-‚Á{$g.J \ ¨ë踣g-yŒtOKÄ8dÕ‹ÅÑ‚!¸=ªÉ5ööÚÙzu,åÁË£ÃãT#UdsÔ )<ªÆÊ¥Îκi¶mý˜ÂÌ(,Kë¹+IØsŠŠÊ8¸–q0Ëøÿú,/KÜøi±>{õöçw/~;½R¡òéõ.?_ën õAÓémÊÜN§쌛N£Ù9›öôzþ¼’=ƒÔãgO‹è#Úúìi]ä¨þ'³'¥'”«Fy®¨†"V©Ó”MÍ –ñÿùr¹X>@NG.GD†.¹ ’Ö!‡šÝ˜:N©AòÖ&[­T«Sh„lƒk|t#µlÇW¦ ŠKð^™2*ˆáï¬LJstì2T\!Þ$~pA5ö0j$·Â¥ö†+=”Z†r¢A¨ÎF-ÂM€åfjcxTê>ÔCPÅåâû ’ØÆ—ÑÇocŒr†î‡1d¸Ž1¤»3Æ Cµ- 1Rh‚ö-t+CàØX$E.Ô`_º¨óa•kþ$ýþ´MÜûywHmPž¯S î÷þK»“-iqÝ–T¸»-mØ.G¦›†î¦oؾáþ¼öð‡wG‡¿ƒ`µÛÁª–Ž€¾bXzêph4ÔuïiDTÔ¿‰ÁÞ„kû£¢ËGF=šíù¡ÿ~s@tûÑý.6mS°Áø¸÷–-¸Œ{‹å|þ.¸7ÜvŒ¤ãNÀw¿@_ ¥?”ä7ÕÛr ôsõKõk•ªé•ƒ¥“ê#ÀñiõéÊÓ¿ªWÕçê?W rdÆFxä‘HòRsC§û€LÁíÝ“öðÏÔ´Æ6Ž.`„òÊ›ÜZ¥|ÝD3ÊSÒp‡`¤Œãt¡¬â‘î Òàô+ëÙׯ…URÓ bš6u]leêk÷Õ[nUèSª Ž ¡ï•SGbÌXN7G=cÖq£þHÆ46Y'*pªn5à¥Á£ÜÇÁ‡‹#* ü¸r帢+.I S0ÆÖ·s‰Y`ŠŠ;à¥mâõëa(µ <ĸ;º æÜ€¡Ë-µ½î17œÓyܳ9ž£ÛÛ1Á´…DÏœAé…ÿJD¸|¹o,•¤ë÷™@;®©hŽ€ûØø^ƒÊÙAB =NFM“jÕkQÛ'o½¨aá¶Ž*¶>]3k³KYmn( " ÷PjL­¤{jë©<•C©•ân(Û&ÒÁ¾}jí ʇFBˆz ±¢C e†R ϵ4»ßÆo•RC‹±­»y¬Í=kyç®Ç!gØÄ!Ûb¶/Äl_ˆÙ¾³}!f]ßèØ }£¿npýÌ®ŸÙõ3;=nÌë"‹öªœm"“Åë/×zhªüy=;¥v:_/ŽÓr™>Ÿ­é`Ñç¶õNIÛŠicS-RF¬©uœF¡Û<^Œ4Bs'Éüš¾Õ œlNw÷„÷¥UHü9‡6µM¤jéË&©¦Í [—Æ÷Éœni7{b-bAô4{§í´u.±9ªºMB 9UrÄ2@I.éS´ ArA«#É(€ÊRæWà®§ÀÀÌÿ›*·º™¶ªu"Õ-¦ÁM½hRcŒxP#ŠâáŠ>&”åRšª Š€ƒ›Dq(¼²•Ù6O±‰Å* aœ­mN£^x*"-ê]älúÀE%Á]…Êl IŒKÓ:§…¨±M¦he€íêÊ”›1%n£òW{”Á°/T&þ``n>Þ_©SÖÁ#º6¶1e‹©kaÛ¶Á‡”ÇôhÁ }õØK§ïOGåŒGJ®¼.*§/„‘¼ #¨\š¤bhM¼h½É:Ö.gƒ:µ#Jâ\Ï2nPJ³º»ñ‹Òß_/ÛŒZÀ„Z7E,-“Î)øVÛŒsüàTâ-}ûLE„¤ ) Rîþ¢Äh²¦ÕS ‡övj05Ü"ÚäD=npÚˆ¢/_–GËñ¤¹Yûÿ„6èÆX–ox§Ï•µŒäÓq lnL—.……³;T“ÛÄ_¿ü’1 ¥¶¢àÁ‡ ¦ëbyãðÔBpgô@j)R Ûˆˆ Rë(ÊV¡þ/'=f^ endstream endobj 2888 0 obj << /Length 1673 /Filter /FlateDecode >> stream xÚåX[oÛ6~ϯ0 “Ñ™%ER½­@–.Å ØRw(…"3±VYò$ºnþýEJe9í.À0ìÅ’ÈÃÃsûÎÅ8¸ pðüì‡åÙ“KƃÉ8¦Áò6 ”"'A,9Š% –«à:Œèl‰$¼(Ò¦±¯Ïªl·Q¥Nu^•°Ä1B‚“ٻ勳—g¿Ÿ¸dÀ‘ ‰ymήßá`›/Œ¨L‚}Kº (RbÁ«³_ΰ£ˆ›Wó脎§„æE”[¡_Ù2-JŸw73ÝçKµ¹Qµ}¿Ü•™Ñ¡i%ïotÏ'—^#‘ˆ")˜½çmqïlp=ç<›î~°ÖÇYÄÃ*_9:c–úÎÙçª=a¨jµ©f„[j5æi(ÞbŽß˜'—„äŠb#—ýi”V"Œ©%ò„gH&QGóèð"'tæŽáX sl.bÄ"Pšæ”Þé¼Èõ½ÕîÖ™Ð~éÊ>WªPZ¹µµ{Ù€Š`xŠCw¶Ux_ª•ý¼™EýÖ'ûHK·×(m_ríßTÎwE¬:^°Œ"eN% <"”ļ‹nþ$³9Á‡Ï”N󢕢ã™j²:ß¶Úy¶ò.¥yÄPÌËQ«Í¶Hµrž"OQ8BYç…ï,…'¢@‚‘Ž@ßoU™n”•æÍCFP$zú§Ÿc˜{;Ç‹ –H7‹ÅåOËW¯Á«‹EºÃÁ˜BìSœÇcI‚q™£Çð1Z)D–“. ÒºNh÷7SùGnf<ºy«ë ³J”<ä$ y€wSn‰+ÒóÊ©œ2L0 ?‚Îmdg‡„«×© ûM¾É³f¬F¯ cænjƒˆÔšñê{£ë€1Øû›îv9m` ûÜEû\¯£ÚrŸÞ-wD 8r¨Z®s8ʈ³j¥Ì[ló0uË{{A®µ*íJ~óþ¼§™ùý`_)e®´ÉÑñhsƒy1Q\7ÚR¦Û­Jkå¶.?¶/Wjk”b8Ô 5ã$|™ÖÙÚn)ã^ ˆ3îÔP«Ü€Íæ"¡áy¡×ÕîΜ)šÊ“EÌw]ÕýÐë¼ü`)ªÒ4p¬X•_k»^ªV:³±k%0<ìVV•ÚY¦U5-3åÅbb^«)A¥6Ÿo\l¤.Mª.ËÞCVµŸM÷kå2øÞ:x»ÍË;Wø]ÔOžrøë&½S.kù/S;§ Bù¸ˆƒ™ø¸ˆµÕè̘èÓçíD•‹!™ÓŽàûNsGû™«¡­×Æï¾m%” ˜Q_Î6à'Ôôóä{ ïOäŽ(!£tâ í¥hßB䤅žN˜‡˜òÒ«kú…“Êw ÀØ€ Ö›ØYˆH†¨à¾‰–mÄ€j6 QùõÝììó¢°[7Ê®lÒee³ª®U¦g$,îíJ>f¹­U£ ÚåêÖ®¶¹àS¦¶¶w³ÊbS‚¡pýÇT¬LC„diQtà0nÝ˜Ö Öî}¼LØ;Â(9øöT@öm×d…J_>ök²j;@לDaJÇYÕI¼õßcTë6ýŽjHŸÍÇ*•]Ýç…ºÚŒêŠeZ¶Oë…5ù¶´{=jßsÄågºãFh}ªiƒP\¶q?ï8S†°ß¶Q×´Mµ1ç^OÑBÉFAdghqùD'6¸Èë}·œb#PrËÓÏ3¹8ô^ËK®SlW®Ô-Œ)àËL=Ø2X" ͼí¤ >¯ ¯n~3Àrƒ…Þ™¸€Â3Né^þGA:˜^ÒÂ'»C¤¶ÙJÏÃÍů3GWML7^¯Ú>¼q˜ãƒ,8*(_åeVìVSÍ6‡±HÊ‘‹=^&ñvû~HŽYAÇ'âQC÷à¤A"iŸû³Æ¿1ˆ.§k-–d\k' .'DNňŸ pûdûžnò_D‚ âþÄ¿ˆÝŸœÐˆ‰˜ ÿ/L ŠvxnÚ¡C+Ôv9“0;€½L¸„Øg„!åÚ±À|AdÚè [_Çÿp=«Ú.öþÎà.TåXý?~Az endstream endobj 2908 0 obj << /Length 1111 /Filter /FlateDecode >> stream xÚíX[£6~ϯ@ªTÁC¼¾`Œ£ªÒ6ÓŒºÒJínº/3û@ˆ“¡"0ÒÙüûcÌ-$3ÝV+­º0öçãï|ç"°³w°s;ûi={µò¹"ÌYïÂAè’£@g½uî\ʼ9¡»L£²47y|<¨¬Šª$Ï`ˆcN]‚¥÷qýföózöçŒÀØ!=D‚$æN|˜Ý}ÄÎ>¾q0b2tžê©‡ù0•è…©ó~öÛ ÷ͤxÊL.eܘ¹~PƸíÈ8Úy »ya^ª‡¤9FÜèÉ#Üš—½ÊTáìF•Ú6E~°ËU4Ms½ô)ÉöføcšªEM…=‚C$BáSˆKß|O)κ›s¸«_Ö﯒=˜¯ˆr=AßnµÃ‡`$¸ 4s‹Ì|ra=†¨ïÍ ÆØ].µAU¹XXÜÅbùáuT‘¶û¤÷xµÚ 8ˆsZó ž+±AûÁLî ³…Oí”õŠ@¡Ï쌟±ú¢!àù¡«)8ÀŒ¼S;O¸ªPY¬¤¤1'‚#hª}pi wÇ,îÔoþPqež Uµ.¸›µ\šPTk@»ù4VAdny°À¬¶ò]o”êJ"!‚¦ÄÜ÷%ˆb¦( š¸þõ¸ϧIl„ðV6ª0ϫƭ倚 ÊhC")ž A«g¿wX%±Ç b<8ÚW ¿#,´‰%/î1Çp‘)¿êo1¬QiYm‹žÖÎɆä‹B> stream xÚÝXÝoÛ6÷_!t/23üEÉtnS¬X7¬uû’ƒ"1±Yö$ºiþûÝ‘’-ÉrÒnÙ°íÁÉ;÷ù£)áÒ»ñ(~^N(áûýrr~H/"q oyí1!ˆ #/Œ% cæ-3ïÒçb:ã*òER×nø|“îÖº4‰É7%,I*¹Ï~\¾š¼XN~Ÿ08z¬#‘‘˜J/]O.?R/â+ÐGÄ‘wkYמ€•áÆÂ{;ùeB{J;eÃ1e¥"\H§¬Ñëm‘šœ_€´øyˆü$‰Ä[ÆoGO¢"*`-ƒ¹Ûê2Yk¸üåˆÀ€’HÆ-ÿw L§Lú AâbñRnêùüâ‡åÛw&/æóÅûiùIU%È{7r&£Š0yï-b¢¢°eÓ;$R„=µ÷!q~ÁiGÔŒ3J¨d0H(#·åbW¦ÎñB sõ›N§îz8¼ž êo*7©´ÙU'~™—7nmŽ—2ê'È~×î­6k7ªMRfI•¹Y‘_9f ì]š­»Z7Ìy£ŸYéæŠÕM˜o^Nà;c–²‰ôCÏÞ¥öãcq5‡@Óû$ ¸Ñ T$äÀåJW?¡ÝÛ ~˜ÿi ÆÐUfd~íoWyºrl)¬sÚ²Mgõ£Ô&›ÏÝzjÀÀÇþå”u#=Çös,F$ Ô0´OK8ÕbÑQ-)z~; ´†ÿ«:F_«#ÄÓÞŽ3ë´cz±ð‰cÂTøÅÚa‚ˆð@=¦ófî=f.ˆà¢eÜçQ ”o6øüí&/ ÄiwUÁ¡ ‚óÌMÒ¤( éN䨥…MQÿèêLi§%(å/ž=°Ûr¡wOˆ™1Έ¢ªïçÅûûåöó:p›žai ¡PF7e Š€ ¤ÄþuS"ÏÐøÌ_¬’êYïF­ý˜×NÚ¶Ú`Õÿ”g¶„Á š¥e:)ÜÊmnV mÕUouš·ô4©µm®¹ÆÃ’WеU«Ú éTesüÙ ÀÒ¾òãĬò3¤øp‹r“fr£KíÎ4xo+ÁÖ·]w……5Ñí^]l¡…ž÷½ÆBè€àg.‰Œ—}à\k»”¡ßö^²rÔæ°•a1m^ÍZÉ"€ÎµðˆðŒHÁ£c=ýubÒ©òW?!–hsÕù€ÛŽ.! …8îèƒ]ü8å;b‰qŒEN YÈAG‹›ìÊ} *Có*S}/>`à‚°¶•ÎòÔÉ Y'`bƒ@×nbV‰q£Urhvn%qŸ€á‚iCõ ywF?E‚ò×`ß•ãÉËí®‘ØlXp™ã¸U¤ºsBæç‡::Hûoò2-vÙ¶ª8ø°' ‹vKïÝPà75„gÇaÙu6Á$„%'Q(;aIX˜ÏµIòÂæ¸÷¹®Ó*ßÚ”íz· ^ßú5~lh=@Âc- ŽYfaVsÈ΂Õò±`5 x ùòÉ›a¦¼«“¨ÊP'-Êì*&ûr¬ƒR2W¸Fò“ ¸²^”¾øüÔÁ?˜£a¿ÁymFŸ_PpÿY…÷EýGPég‹ÑÅ# Ãó½gyBˆ3;F<ƒ™Qf¿æ×¨¤‰äJßä%®ÁíÑe¶'_åeÆÝüÅç³'¥ÖY¡Ÿ OÇÃÛÜFŽ`Ü_oj|.Â{ÇbXqXû0G*F^^žF…¸¡MõakGš}r¡ rcœøý“Í,Ö7’Ðßî (ƒ<•êF©ËÕcÊ‚H¤tÈÄMðbîåhLÑ"¥¼²ïdÃ+õdîüw •üÛ •:ô0õ%Ðj·EVð”ŠÙÃÀJü+æ~ÔïÀݨN4ÀäÐ!`Òt :DÂÉQ ‡5 øì¦ã}Bú„ÝâúÄñî¦KX¾KÀ¬yóî bEA,öç1Vã‰Ñ¿/eD²økþ¾lÿ] !†Ã û‡eÑ´—˜¢‡ôl}9ÁM‚¾NšŒgÌ}9…Œs+jNåœÅm&óCyØ—F;³N½kÿ½µž»»ÁÔòu9¼þA‘v— endstream endobj 2929 0 obj << /Length 1197 /Filter /FlateDecode >> stream xÚÕXMsÛ6½ëWp¦rÆ‚ñA„ÜÉ¡ŽI&IÛX99™MA;¥’Pmÿû.@"eÊv“¶iñ¹xX¼} ‹¯F?MG§—1R$“„Óy@C"IƒDr”HLgÁuHY4¦" Ïˬilñå:ß®T¥3]¬+hâ˜Ó}ž¾]LGŒ¬€Ò±HÄ<ÈW£ëÏ8˜Aç›#&Óය X C‰™XW£_GØÁĈrS4:Í¢Œ{Ј D¢1Á‡/•ΊRÍ*ôªÉëbÓb7€‡‚¦1QÂSkQ«Õ¦Ì´2SN/§41La1LhþhGô0 $bâäá¡s&À™X„…S¼›ðâˆÅ#ÏÏ?aLu3™\¾ž^}ÔE9™¼Ët‰pù~»XŽ0KÛD"å~Àäñ½…=Çž^RÜ15¦˜¡T°¾7µš¹q04‹p1®k[ÉÍæTc+z™i[ZfÅáŸåa;+ ³ÊöÕLw¶ši –ÀIÅ™±Õḛ̂V„+pËÒOÙlõàìÛBïÆ4:«r±]8+·Ê¸™΀+êXø±ÉjY‡æ–ï³Õ„D)IÜßóY÷¸_ïàÁŸšÙ¸|h”CX¤êÙ$†¶Ì¸¸;k·n"ˆ âvÛÞ²hôq0’\<|Gd³ýãx b$~>à·éç›ßU®ðºAÎz'€²î7…î ¹}™H©f¿óO˜ã½Et£EeÚàGNö¾ ©j¶ë¾ÂP[¿¸;á¦ÍüΆ¼*, WëFÛÒznŸzéºö„‡Šá_á¥Êˆj½pêúdêÆ]Ì÷â®í£aV;«(˜2ºÝ*¡³lKžM&«lã–¬#‚!j–ªöÀÚÈ‚’!Bc²Û(;w9b¾­r#±.eXP¨Öfö­­´‡gYh]º³¢GÛò¶9\Ó¥ŸpÌâ;õ€ xÏÈ÷)ìÖØÍ\e¡*å¶ÜºÆX¨×+?]u–¥Ý@Q-l³q| QÞóL3¥1{˜·Ž9ïæÁ8 }’m[>¨9 Vµ2!óXB!2A’ð~Bñ‡ë¹p<~`PO;4·D­Ê{G3]bøÔÑgXf›uWG[Ÿ^B°ìUï@~y(·3uDÏ¥<8 ž­n’è“êÐdsq˜¬Ò®ëajÔ<Ì(J“Î%+ýg.Yò]²žºb‘/¸cFY']Â&ä>ƒ}ñ=K<óžÌ&“aqߺóMÝÅ>Ìä3Õ½s½ï‰;A ðO‹;û_Š;E±d_Íbëšo¡íüyÚž>¥íä¿wùUâî[? oDþþ{E¯öIÜ}õO%b÷+íûH÷š1$¼ø¹C}—9ñ Ä>)†àµ-b‚ù„HO/ºWšÝ»­µo’÷þ{Hû>v¿0Þ U5àspÂ_îG• endstream endobj 2939 0 obj << /Length 1273 /Filter /FlateDecode >> stream xÚíXKoã6¾ûWèEj†¤D=¼mMš lÑf•öìA+Ó¶ ½*Q›¦¿¾Ã‡¬‡oº(P è!M ?Îp¾o† F”Y{ ËÇÍ Ë!<¿W׳Bù¾kÅ;‹¸. üÐò#†üˆXñÖz°©ë¬iÚ—yÒ¶zxU¥]ÁK‘ˆ¬*aŠaFmB¨ó!~»ú!^ý¾"°¶È‘ 3+-V°µ…—oÁ7 ­'eZX®¦D.Ì­÷«ŸWxâ´vÖ_r–ˆºL;+xQç‰àÒ“‹k@‹ÀžúÒÞ$×xeø¶˜ (ðHo:„Ù&dÚñ"õPˆ ¾{ñÀËËGŒ©h7›ëÛøý½ÈòÍæ]"R'°?‰æÇ®XØ‘PˆÕ Ï¡ d½Á’×>bn0qúȈ‹kŠGPkJ<„CòY¨—$†;ÇÅvÕ™ìfo²~w³²”‘Œè`b9n _kŒªÌŸõè)=®YYwBÓ{‰~ÔUV Þ8 ÛH‚ðšȧž‰¼GÙθ:òÜl—µ'›<É\õîy l¯¶¡©Š™·4Ï+¹ô)+÷zZ&9ç›iüć$p¬ ±È0÷‘R6;¥5c¾Ý³ôÛ‰*Tî F‹Tn×=² ÔdA/`äbgM0ÆgY;^h?׃vh–1ªˆçEÈ Ô3ÚÌžRo ÐsO39š\ŽÞõêV3w|nó†—)?Kc>¡†Æ‘†Þue:P¢úøOEŸÒÄŒ.:If—í—Ç:O£œÿÅ €@yÇc‡P¬ŽY“®jÞÖU¹=RFT†é剀óà,+Û,5æÇ”16’ùL_eešwÛ¥ÂÈ ŽFÑ,µ¬q›òqÕ'ðgÅå”±ãÜP‚\€±…>1ÃÙ+.’,WÒƒ¬_ñ6m²Z¥n|ÎÓmdøã¢õÏõyÜeRð—Û‚‡A{ÑçÚù‚¾p¢ÐQg€dºùâÆà¿²1PèÝÔÿ+ê´§ÈVáúØÖOb× ,ö°-²´Ë $;š´éZ¾ërcà =µ¦§âV¿2]ÇX‰Š™ùùt€Ú¦×¤Iž›Y‹Z§i’UÚ¢äØû¬ ®¡«|‰Ývu­<ƒq"Øþä@äêY5ø "Bí_UCV/tØ02,U%×@ibf¸ìÝ,eòõr³Ád?¬÷Ó°ª›Nlõ©,ÅsôR—©`DË>]Æ´k“½î¼óDª[É@› »ˆd^ƒ—$¼¤&†¼`^&DÖw\VÞ(_×>ôpðtâñKdß&"™M};ø3 äÞ~¢áÙaÝ·ÜR³¸+×"+øHF.Ãå‰ÙÅèR%÷º‹ã[¹Ÿž)¸8TÛö˜­ÿ¯hg¯häÌí¾lxZíËìOg · í±è–1t×Þ‰fíQ 7åõqhô9™ßI²WÜö'ºšílgxdÊ/øYuò"ß|>å\Z5C¹óùÃP =|¬ KW!ö/_…Nî¥ýÝg¬ŠÛʾîHª˜sÉ’½ä·&y± ’ÏÐð$mLj¦d_üb'˜ F¢¿óÅÞÿCÁ‡âé{ãoô¾úËÝÔê Óžo±AÏ4á¾KLTÄÔŠAzz&Ø`¶!Qôô&„5ÿ°PÞKéæáÿ'wD½ endstream endobj 2954 0 obj << /Length 1053 /Filter /FlateDecode >> stream xÚÍVËnÛ8Ýë+ PH Ó|ˆ¤h ˜‰'nŠ I•UÚ…"1¶0²äJ2œü}/EÊ–_h»›)òê>Î=<$ö—>öÞ_‰7½¸#%ó“WŸ0†¤ˆ}¡8ŠøIî?”…*ãà¦LÛÖNçu¶]ëªK»¢®`‰cNBXø5ùäýxß<°OF R˜ûÙÚ{þŠý6?ù1û»Þtí³L‰ù±ô?{ÿzØ¥ymBPªPe‚·!¾yˆáHÒÞb4í·†ÿÜÂônM”?¯!â(&¢ÜLÍpˆ4BMF±,ŠâŠ\H$d< ˆA$œŒq0×]Z”:ì(À©Û¬)6=˜Á!‹é-Å#¿ˆàÊzÔ!ÃÁ[¦7® ЗnÕÔ!áÁÎ}¿„ïΧ© YºRžÿÜÛܧ]¶JBb,7ú(¾³(^­·¢³£®²z[uºqlÈÓ.uñk 6ë ð£O¡t«»¢[ÙYöcÚµEF8@&ª)`4²å%+÷S~B6Xz5¥×ÍPtáÉ ÝR÷±Ô•nB‚ƒ´ë!7šz=ü®ÇNËÒ"XTK»l-u;;F†$c áˆ+n3þB)?ÅsÜÞ%ŸŸº¢D«ã]S0EŠ“Ÿü={{³ûGäìÉt”\ Ã’É‹PÌå}ÔqïæÆb?›-Sj½Ý$¡´^Bi;E‡¦ú6tm׿@Ï‘\4zÓèZ¸ÕñeU¸¾4ÙªÈÒÒm¶m£v׎€ušk×õùžtOUѵC¯8þ8ja$=©¦·œû R¤Â¥8¦ØoÀÒr›kk Òs°äp„•‚zÃß/ø’HFÃþ¢1 ¦/¥¶=>q& ’Œ ÆX‹#ì&F3¨TÚpbgÝš3s)hsŒ°PÒR•# åMH„Tä ú37ºjDÄγýXMyW»±W]˜X.MÝúÀS£L(œ0¦ŒóÖî.îæÕ†n*»ôŸ1ºŒÏBA“ýMŒ”ê€é•+ò?{e]#“aUìòþÿfSQ¹ÛÞvï!ä€m[˜uÆ”‹/>‚ âð²ú…ßð  …"ŸùX!&Ü5»0·ùá&.‰$T8Ø:‘¼ObGŠ}»"g˜Ïˆ„“ž çÑãÉ=xûÇÖûÒÜ¡ð:-ÿ;_Ê« endstream endobj 2936 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1FITSUtil_1_1UnrecognizedType.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2957 0 R /BBox [0 0 500 186.05] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2958 0 R >>/Font << /R8 2959 0 R>> >> /Length 295 /Filter /FlateDecode >> stream xœ•ËNÃ@ E÷þ /…Ï;YRIJtú!iƒš´¡•x|=3MRÑ Š4¶'מãÛ¡ F‘¾! Ü¿8\@à:àÓOBÑàCˆŠÉ¸La¨ oddEl¼Dö¤%3†nf³ª>òüñ9,WÇz›ç«ö½,vë¶þ._Ã×¾¼ o0°iI±eüˆ/?A‡ãØ*…Œ)Ùö‰I=RÇrš'Á´·‘ÄGM‰§%.þ¹K’F!KEÖÛéJñœåþXïÚóW¸YIVôc9ìÀÆyÊ܉{’ŸePÞ92œ0,EŒ~“ÞïdØŸG¥¹pg(Ï¢iàɆ«-£f(RËä*)T;Ì´#å²(’Ú Šn]ÜL§l º‹ý{â„ß endstream endobj 2961 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2630 >> stream xœViTSg¾—{?[J[i”›0ZÛq©[U¤íˆ¬Zµ¥,"ˆ¢(«$a $˜åKBX²²D@!(¢R¥ÕR7Üzl­K]K=3vj;3­mÏù.çsΙ:çÌÌ™sæÇü»÷»ç~ïû>Ïû<ïKáaI’iE¢¼Š×R$¢âÐû\&†df„1/q O¤O$pA#80"|ߌ§WME§žGögQÕsD8IÆmÈpý>=%cμyó%¥²ò¢‚ÂÊØ%‹/Í•ÅþóKlR^EQ8öö¡*¯DR*ÊW¾W$Ê•VÄNÆMÉ+–ì,ÿ÷³ÝöÿÝOD´X’Xº¦üŠÊõ5²]òÝyùE©ié%oÄûD2ñ2ññ ‘J¼J¤éÄ\"“È"’ˆ­Äâb-±Žx—XJ,#–›ˆ‚ÏbE„Râù:y4lN˜!ì'ŽŒ3N„Û¹Ïs‹¸=Ô,ªŽ§‚M)š²Ê}d‹dŒÐÇðN“wÇQÒ8§}*ôR™6…t€þøx§k‚Ý%ë…86½«VdíöÒYvË| ý(çÌêm%ò kwh5£¦H“¡äËé&[‹Å ¿E™%ÄÚœ¬©Í46 ÖÏ,ñ“}‘ç!Ù˜<<}ñ<,À3¾{MESø QôÂGøa­„7>6¿„©íëVíÎï>R%”Œ*®Â/Á÷#¯ "'ªŽ1?!ýp&&ƒW‡¤Ü*J_¥PWÃ:¨´)íYm™ÍÙ0®(Ù”¶fSÞBˆÃÞøxÚŠ¸?ŽÜ;/µ¿´N´ò7ÂTߎ¡´%! hýw ÙgG«v÷x%Ç"$Ò™ÈóSoŽ#éƒéQn;ñP};µÊ¢v˜/´˜Žª)ìÒÇ §¿Eáh6znÍŸæ¦æT¤åoÑzkzUamšœ¯ [,ÐÁ&m¶ðI! 7k´Ézu-`úy3ƒ#7N$à)‚¨-8,kUbvÊ`@É èC碖!òo9Ì#ôž„Úú»íåx–”R³lf < D èq“[íŽ]HYI©ßP©ãL/@å”%ÐÐà‡ÅP˜|ªÖ%`?eD³¸Oü5ÔõzW­5éol©×:^¥«Þ A··Í?På+Ú)‘&f ÿL×[S¥ªT[¯‡íû[9Bl£MzýF ‹é§ÿQRRðØ”iÍ[rU<›òìÉ”m6¿ ÿ#å5´y¹V“PjÐ@`SyÌ×£Ùô}s«Êõˆ¯íTû˜e]S?¹ˆâ¯Ng‘þ]áÐK\ U¿·Þ¨‡z¨µjì•Í•ö ÞJÉHL îúf«ð\ñÁê¶ XÂÏÙ#ÙòNáÐãJ/rSMŽ+[QÔ't™ºBÜé{{ ¾˜Û—Î]=Y1ðþ —%mÊnØË?Úß;r6P¼¸K‰úµ£LD¼:ÎAÍÌfÞ+P“­^ðAœ¨H,×èô¡LŒ“Í>ŧ¨¸ÀޱCÝ£‚Z§´LQ'…ü|eï%!:üÓoäL„ùHD?é÷doUyL7“L[oº]_Û@>YCSïÔZV…¨5'¨5q“Rdi}ÝK¢þih›—*Õ­%Çð hKô×(¢£·Ï;`å{ñ%09ôPÕjiyI½^-«­ÞëŠVvÕ¹M 5ýºV¶‰½îÆ€xñ.e €­µýÙðËјÂñ¢\­®ØÈW¢Ù^Z¬±»›Ýž}Â;èÙoqlƒÞZu|(ÓŠM“â3|$#aAÁ1J*ØZ§0˜õFp.îÃ4jÔ{ èàÃvoÓ‡V6^®Šî1´išåˆÂæhW©Ål×ú3[ó¡**ß“—(Ë«jT,–u,«²&Yƒ‚Šššòâþò?9fŸ²b›ï:Ý6~$“¬½ÆpûÈý·8ÌL´ˆ·uMAE  7ÞEô/§¯ÞtkóÂFi³¸]Þ ù=û:ºÎ¬ù(.kKuA®03G²¾ 0ïÎÄ9~¤µPÐÛÕጱ…%Ãób€d–£ž¬AöšJ=ÏÈÇ u2s¸^ü#mÄOqÛ©æ/=Þ‹V€îx2‡«dž¡C~9ʼè'{ êq£>Ç«5ë¡‚Â:çˆ¹Ì ,[Q¤Y2”f‹¶@p¨E›+Ä‹è¼`©s˜^€¹x&~áÆRÄ93äûè€pÝ`D¯Žrñ¼ó<¨Ó©µyu™V A\ú]ô ?qã«Sgo†ù‰ƒˆ$™ùhokÂñ˜wô‰ÏʆtAÓE€.P{?Óö•EƒÛöeÀL˜-Ë+ÊÎ-M‚ñ ®-Cô÷7Ç1,À·Ñ|žóöCàØ-q/¿ËÌ Úé'fµp1Dû³¬Æ:Cn­¸]ÐZæÒ¶±®ÒÞÞ5˜ÓóþÆŒÒíe²í{ Ìo‚ø=÷ñÊ´J«I %·—Ž·iœð&@WP$=ÙNgÑ¥ý¨ø°ÝOú¯"Å­^?‡)f¢y‡WÒUPe«n’6G—9$ö2¬NZ¸±'ïJ±°¬¢ªZ­1øUR½ʡԩ®NÌ(+†ù`ó­œnÞî õ·á¼˜}tuæ5F§[+Z`+ô ìm4v˜¬ð<âíïð{“°¯¾KX÷äEÞÝmý'<¨-ø a7æ.Ié;ÖÕâ=ò±Ð޾ãùŽô÷ÈE­‚ŽBçv¸ ¤J ·mÊýì‡m°h{<õöãåãÓ£¾h†´^j½]×2:DlxaWÉvËê²8 ¿{Òh•´iuv­D}ƒÂ'ñJ++%âN©?ÐÙÙ×WÙ)fIþT5(õ1øh‘oê—ê§éQó™Ô‰¼**j†Ô QËc´PÞ oQžüüæâ˜0G^,.,‘í„ðÍc©(<ùÚîÑ]ûóZjíU°¬ÏÜööâM§Qd¦ ’ àBn'µ±Ãâòxcœ°ÍСcoRÝ{8?Þùå~Úe}M8óìÎcð48=|èâñáš‚ƒ‚þ=ž²ÖdÖë'Çó—a5±bK/¾¡Öef-®ùÍN„}òNL‚nJVrŸ\ ôx%·›êBä¾6D[Á©'Fʼ¬N Çéȉ|vk`|ä/ÑßqØr.+k¨[õÞjëËwÑp­>O.*ݺ¡dL‚YݥɂºCð@×iËu‡ãn먃5ô½CkY ðg4^}/­Dä̓Ÿt·ŒÀ[yhë¯NϽ0Iù×qξiHã¥6Ú4óÀ<¢ Ö-Š|M+ÝFÚiqYš!:Tì2PF›ÓUªM†Ð¯ÄAÄ!ï!Í`rx¢òò=âýå}ý=Ýþ²‘ãðÿ:‹Ty˜Í´ÝC =õõÓC¶ˆˆ; ÏÄ?ºzRÇ endstream endobj 2944 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1GroupTable.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 2962 0 R /BBox [0 0 500 793.65] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 2963 0 R >>/Font << /R8 2964 0 R>> >> /Length 503 /Filter /FlateDecode >> stream xœTÁr! ½óÛT„„€“fÒkºÛh3qœN¶mštÒϯ°c_’ñxBzïYb­´®üÖõf1¿D{÷dœ½3wA».7‹=ŸõB²ÁCF‡vÞ˜}"ZJ@âuu„5´˜w›ûç§³³«?¿þþž¿}¸}?ÿ0—³¹6Ìà2Fû¢LW……µÐb8‘@*û‡Ã>%Ý*Ro#åþÖ° “ÊHPd,fz‰½ˆõ.‚§ÑÇùýÏÑE寍‰úŠ4^8@è-G}÷c‘áÞà]€XûBr|œ6AÁG îLT¤™`v0v¢‘–µ5”Ùç¢Bå¤×ÛP÷Èl²„ÁÆå¿çÏŸ¾ù>cgbwlµdâNï1²¦h|Lúïö Êþ†.$HÙFå&òƒúSÒ£ ’:õibÖ5`'÷rÈ*-@¤¢@5:[ŽÕ׋ñÁ¹ÃcZöGÜÍ^™Ìijü0§Ó”¸ˆ6ÌbH:zÃ3‘~:`¬°5›{l}+‡¾_}ǾqT ÆC6@Ó@䨉è±FSQÇy¥á¤.7š ¬ñuR¦îÔDíw:¤Ënìu×ê"H¥T`·6O#Ð4HÒ &ì4tÈXc'ãÚüEk> stream xÚÍZmo7þ®_ÁoMpÉá;A¿ÄnФMc§—;#0ÖÒÚΑ i 8÷ëï®6‰l¹Y)J†f—9Ã!ç™!e“¢Z˜­p¿ÈÄß^,Aɲ€'“YHÂ! k¸sÒÂîœpdx…÷ NFDíY°"ëÄ‚¤C‘ Ã;eAÎð˜YC Üf'/“lT6‚‚޲Ü+…õ1õïÚeóI$Y=Â%‘f)h‘œe¯bR$V—¥T–1–x/@ò>¶ƒ§Oj_œ üf§oe*HÒÛ’îdë IÇŒ¯µ´iåLæÍìfجžÊÞŸeÛ³¢•Ĺš‚tLœä`Ç`ÈLë¸Óú¹ 9œ#“¦y+U† P]éºé²=ß¾‹‰2b;t1v9mÃÇ…!Rüœ!LaTCR¯"ŸepK'˜7è˜ú¢½~€ØV¢µ)¡ÒRHF—{¢­sÅ[_´ 2¥¾hÎ Æû¾hNh+SÃ*4¥(QœõEûÒqë“ýw¢w®¿ïÒ{Ö_Aï9.È<§NhÍ-EóB mò¼MEŠIÄ…åÃF––‹ÐˆÀ¥ðã# e$é#9z°iív옿ù*E­‡b¦²¾¦²ÆØ™-²cëcT¼’ËØÎÇÕ™øø˜™”Kæd%×ÅB Ì'»Sß\ÿ-2¢–þ³|¨eŽnS!&oϼ38öál–ÎÏÏÜy> únºáSZïts¼H ÆJ—b_4 >5÷Cãh&ýªT¶ 'zpP?´ A†Ôm’SO°EN…×û¢‘|Ñm\BdõF£81¶¯%ħ-m{妥t´”¨Ê@g­s­ÈM´yn⛑E²à:Á/ÚîdÁKpµé#/“'öïç% ‚ä+,ŸxÃg09Ê\à³k¿?“;c°¥Ã'}(EæÆî|£Tã#¨Nó£•&°Á œ˜6NçÛ³Ðl2¾ó^æra‡ä‹@‰Î®®ˆ&Õûz~] ëÖÈ{y„ÖÉ#´Î±e%ÚaµÉúÞh-Sè&„€é .ñ’úšM(ñüÊô·-nÜCK¼ÄÔÛ8˜|ŸuMÜœuMǺ¦c]Ó±®Ù*ÙŸe‚<ñ­_ìsí„7‘«¯u÷ýWÒ„±TÈ 3LÜh$GüSˆ y}–xY5ÃËß`ìÖ-´°/:: -q½b~ ù"/ðµ=,Þ—šMZxóþ¹™´¹-ƒ;r‹ ·ÔíPÈZÓÍ ýê‰vL³}Ñ6òU¨ë‹v$óÊ*yG[É =ÑÙÓ÷ESÈ÷«äïÏœvsÚ¯aΰàIÛ1§í˜Ón·Lm-à8ò§@ Ž:i+öµÔ$ÿæMÀ†%ab”å75 Ãíw¨£;ƒrKùµsaƒAá‘okNÇŽøvÉ ÙÁÉÏ¿õt ´Ù²I÷ØÒ®Ã–6­S ®B£úBíú¢QgÛír@u—û¢ùJÁ÷s±V’üJ4VËúF„¶Ó¸w÷ÙÍ›ÍÙÍu¤æº³·ëøÎÅNHÐ]"{½L|˜ÊèfXÏÄ£ÃW/ÄáåtÞ̇³ñu#²4ñ1f0««f<ìWM-íÿäæµ%"ìYžh÷“Ö?÷r:úäxÜ\°Çq\*ÅèShߟÞ~¸¨'xµsÓ\ò›ÇËþ|vÛ5Ð0P¿¿z)¨kÝ­æuYiõæ×÷»¿ýãxŒ’ôÉëéûjÒîýº-ÿPÙÊÍgófﲚ!XêEµx cê_ãQsYÙ—ËÔ-e¹HxÊÍÝ·2*–Zþ¡ÃÓëö›Çñå¿ÓÛ~ó»î¯ÕfŸlëÚ0¶Ï³Ép:O.¦1Ù™ÌÇ݋ϒAË®^vZëD^¯‡]¼[ö.ô?1TØL à„WÕÅ\Xøqg>äŒ×Xôêú—z|q‰ÇÕuÛÆ}êyS]‡;“ l ;›úýŸ‚´ÇÏç°½¬"oø€^3ÊGjO=Sàø#u¬Þ¨¡N¯¦5Rµ:Wj¬®ÔDMÕµš©¹jÔ­ú þ÷¸ÇÁøª.ÿR;1â¾#îo‹‘?^ì¾>ÚùRŒø5bDÿeŒp„ðï|Ž]¤‡ã௣¤‹NoŒt}ñý-¢ã!ç~p…ÎFG|0:Âѱ‹øØG„¢âø¨ÔÙ"B8>îFǺ½¡‹ÿ2aõß endstream endobj 2966 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2581 >> stream xœUkTSW½—À½ÇÊP…ª 3¾ÚZkuêÇV|¿yCQ$ „gB ‘ä$áMB@Dy ˆˆ,ÓâmµZ«Ö‘¶S;Ú:3¥ÓÕﲎ³Ö\ÔY3kÍüš÷žo÷·÷¦)w7ЦiϰTirÖ‚Ðté.ÙÄÿÜtš›áÆÍ`"_åÁ‰<)ì)ÀžîÍ3&{zÿ†ò—!g åNÓË6GZ^ |}þü7ƒÒ3ò3S÷¥dû/~{Ñ;þIùþ/*þÁÉY©ûdþsùœdIz†4Y–½-Uš$Ïòv®hò>¹dWæ®ý»Ûÿן¢¨i²5éAÁk3³ÖgoïÊKJÞ›.YAQÛ©YT5›ÚAÍ¡æR;©0ê5*œzŠ ÖPÑTµŽZOm¢–PK©­ÔtÊ—Šr§ä´LáåvI°R`sŸåÞí>î!ñøŒÉfÝÙöšhdÒŠIòIÇÀìÅ•a;'üˆþr‚G‡¦BЉ6Z± ÁQöì©K7FƒÉF1Ifõ›T…1eH{llL…ÚbDÏ>N^ý¾¤`ózÑ=¶Ô™—ªŽTø°UæcFí5Š11²†uQtò_ˆ{¸1»7xŒnl°Ó|5ŽOŽêê4Æ@ô4„5©ÊP|ÃÞÁ7›{ŽºœöSø,(èKë¶eX65 Y›kÍÈçÇÃ-6Wÿ«à¾è ‘nbÈ·Â'ø´Ö¥@>Îg·%m}‡çìÙ–ŸT²£eS }îPÀ[Ê+F_ŸA`¾µøU¼2j×|âAÑ´s‹Û鎇PÿPf.QH¦-šODdÆ£yà Þ?ü bð]ø˜¼".JŽ^œOf&~Càž½Ž¾qúPá üúþôå›"þ½Êî§>º`œâ"…Å ÷Èa´9…ª\\ŒfEELctuÀË%[ÃÖnM^ˆ‰"‰àGf@,xüíôýK¢üCk‚7H—c¿-x§=±7lPòƒ;‚ÁœóC9{úDÎ4[zÓ¦‰Û)H5NÎë’÷íQ=ÍÇZA¤BÐbªZÃU‹XŸ¼ý®VMÿt˜ü¸Ã˜²öÛ7v&d…%ˆï°ZSxNJQX_![c¬Äµ­ÒĉŸ¦°8B­ Ñ"ŸSð×%ìvþ|p™$ò‰"n1Aq¡®NþÉ{yŠ¿ê¡ÿ>Æ1@ ¦BÿÜ}yøÚÅžoñüPvwçGë¯ÚEfbDZó˜{¥Õ%/è_£Rê„rW…]µÕýß\-L=+º~b &&/%-[%Û¡z£Ý*žL/°.€š^ú¯cî1¼+LgbŸIfP3Ël0âã0¼ÅŽê­*kjE6£Z¡T-Ó#òd2ÆÎòòvŒ`:O½]Ù°fÊ`–ÇÓö<æ–ÎRd š¸™>¨Htåq=¬|Íëf¹þbTP1JmÌSa½þ"9ëì?×^Y£ÓÔ‰l ‹ÎŠ‘ÃÖØÞcOÝ•.Šÿ™Õ™vÊ÷)wæóðÖó"±`t¸¦0AL̬>R«Ý¢æ)ôÓ´¨ìÜ’Vï.CÀi<ÞŸÂ'ƒ0ÓCÍèJteZ¬Å“º"»:»" £•¡‘A;»¿Š_Ø,·1 KüÒÒ£Ö¥ôŽe‹ ÉÛV¦ª¶ÜÄäU‡-úÖ µmGÚ§ß½ráÆ¹¬îí.1¡®¦7*¸ÍïDWÛéóûµNP©ìã~é£ÀpþOãÑð‹Tç3wuÕ%¦Uˆ,eÓ¶g¬!ËæÛ·70(:9x¥íS<ŒÏåõîë”58¼ µ2%°ÏCÎhsó‹r°šó«âmqÕñ<÷±d™G_o ¼îI2¸áo0L9Öw Ak©³œ/G^Ð¥â<ôQTs¹€˜Z½Y'Ú±Lš*+P—j' )3êÍzôò!³¬3ñâ`¯c¨[TT'?PX,Ç~{mWÄpüGvb@ípv\vú—14M…®&&°Re1ÜDÃ$’5,-V¿«ãm¨«‰}QáBXã­ÚÚ;U¨‰tå±w´µãjD"È0Dü¯ÊÓµÿê2a)8o;ýÙ(¬pYç„:&ÆTZm8ƒà²¸€½\fÑàhDT,N×)•ê ¹D%ÅhOÚÑ~1Ü#s•ì}½Ò‹H»òlÔ­žã mm¢“'=–³åúsvWÝõ~^\ˆæ|èÎ×á=ü^»ÏÏ ·ícaR¥S`”]Z? †Hé:¹+±)£«c¶d7å:Íö–rC…¡J¬¯1Tã*Ôælél“…‹¶±dÁ¶üâÄdy®2ïçGhË@ÂÈÀ‰æ¡‘5¢âPî‰éGq³åX/_" ±T§ÎQe*3Jr0JI?zR\Î/ ô¤èyÞüÎFC×Tx߯Hpnƒd€¼Q¾À³©­ÃÖmò³‘Å ¶S_«ÅJ¬RÉ3%:­*¿(·Äâ«h-¶êËóºJxS²Y+;ÈFv+jØNÜPÔ÷˜Ìö% &iJ÷—ù)`Ž•©+¬U•Öúfñ=xù;â_®5ép©Î/=¸_ÿŒ'7ù }}rÿ$€ãï u¦$eFql‘Ÿ¬Ä£­4šq5F}5Å»ÄOXÉèþûà;n0 ¦¬z4oÛŽ”è\Q„ûñ3®¡öÚ¼f‘SÒ²!"ˆÝßrD4ÁÊu9uÑÜ›°\»*Q¶‡âÄÙùüÞR§þ2‚¦äš¦#Ó)u½ß‰£q\~rj\RF0@Dts °ßß¾T¿ˆÜ…7…uwöŒàìH·¾ƒž[Ño°«þ‰WÇe^äe^›:{[¬Ù!Q˦‘÷¡C‡Z] G¶o‰Ìˆ? >_²Ïð{öGò £Ô¨ƒ'’ÝjcÌê:|Á'àÅû\ßü˜÷ݱ¥£Ó|®ó^®±1+Jk ·{ÐL†y(Øj£Åd1Öb?Ç3'S°úÕÅšõeÈç+p[˜‘.k‘·w¶´ttd·Èž›6÷¤Ÿ†*Þ²£š„åEÃ爫þå-¸¹ …ÐÈÁhá=§#Œ–¼çá`ZnnÖ„>|ZÆ–k–M¨óÔ„œùˆåì|ÞÀ?ãáão‰"¹£³åšfóéÂâõÚäiFìfI Æ1ŽŒ3ùÎÒ|Á­g²ýrB¶®<öÞ A_cÉêûðз}z\äè¯9ï ¨gM?×Õ߯AÏP¡ÿ2*hž j³Å¬®5 #î1{ÐU¸WÌg%[g´ùÁqÖ*ùä<À•ʭ'¶ªAFÐ÷A €\‚Pš™™&;œÙÑuÄÑÙuàˆTLˆû­y)빈Zˆ¯gz_z0¹×ìéy¯ÜóWõOwb@ endstream endobj 2980 0 obj << /Length 1882 /Filter /FlateDecode >> stream xÚ½YKsÓH¾ûW¨8PRžÌ[šÜØd`!Ës „¬8.lÉ+Éd³¿~{^²$Ë ²—Æóèéîù¦ûk ‹ç“ßf“£3.‚))Y0»c(–I •@R‘`6®BÊ¢)“ðd•Öµmž–ÙvMÚ,˺4$„GŸgo&¿Ï&Oì€Ò‘HÂ"ÈÖ“«Ï8˜Ãà›#¦’àÖL]ŒÃT¢®‚ËÉ_ìÔ>Ú"µ±T±Q;¦(á°‰ˆeªýr>ͤSû(òˆâðÖþYçë/yeÛMéž7¹m,"‚êÜn\úE¯\å!ЦŒ)-¼¶£çÞ¿>-Žàñö¤°]_õt³ÛÝ­UV~òÞV ÇT; ›Œ”PVy­œö¥ubµpÞüp> ®Ì ¼:ýè&X§ÀdÏffdC£µQ·µÛº±ÿ¾¸ËÂ>¿¤N×®õ cºrí´Lë:H÷÷ÔUëèŒâ¾¦”"ªØJÁV‡¯O”Š-S!dø-¢",—óû±ZÖÍ;ci=bí~Äj𕸠;m§hQ­ž)έžo—Þû×nûõˆ -W?´h.»>` á€Yé°ú¾Ò‹Ë&Ïš\£–&á;zÐ>Û™¾iõÕ{>&ÅIl\­b~ÀÅ£îÔN?×fÍ"çÙžê·<—ðìõìrÂ*R©UL’8†«ÆLÏØžOˆŸ³‰˜_xÔáõic?lÏØ4/p 8vY,lÇóvÉ Ýàâ;À0•Ð úhÈšÒÝ­ëˆé;îv¯rŠ~¿Ô>v¡ç¾ËóSÈ¡ Á_€7Á‡§y“.WB§yUˉÑ÷\J=”#)+±æ«|Så5Äù¡A7K€&˜‘VÙÍ2KW>NÔe¶ô9:Êkû|•§s‰NÓÆ ùX,›:já­Ö'‚Úx#I™–0™Ii¤2ˆzíIW«R_ [û·=ýÇ-=}_g³´«óžtð%NÂ?¯uDÌòÚŽ®S½Ç]r«ç¥•fò5RžptNI “9hft$­%ØDdÝ)Ãb“3ô³¬i±üWï•ÛIsãJ=f£µ×W(b³€žä Ô ÐSw{¹í#aQ6c:ë4Á³J)î\ &MŒÊzê^0ý̧çW…íÁZñ'åzSÖËÆøæ¦U>Ø÷¦\Í uom.7·Y³õ3w'³Ý2Þñýˆ‘½à=e¼¯‡ ïþ¬ ÆWuÙO¢^@ñéð®3—Z`»0bω@êÝäÙÒ`̃‘tB #ñN˜u /kûœçzaaŽ“Ø´®ŸÏ^Úç«>ò#®ìÀyOÚ ì ‘È¤]}çG”€T4í9QZ+à´ŸÁ8V¡ fw¶ý&/ n|ûÂÚð>@Š,ïôù«¯vQZÌmã2»HÃzsôˆÏÜ–[~ |ë°E'¿P ”+Ÿ¯6•c†ŸïåÖÀ$#†ø1ò´,å{`?…rFIPG Ì™ã¹å†ÀEI$g´ãò÷Gí ­9)”…Š?PsJ$‰Ü¯9;²ÿ'ÁJ †«CÝ}`˜n±Ñ—»+ŠÛ[pDb29bqìy´e™‡<§¨Ùÿ‘zôë%|÷ôÐiïÞ²nŒ@ ëR_¾ÞBV»q8uÉy³J³|Pµz|ÿP]}ÐU<Áˆ$â®zc:ª*úà} Á¼Ãø¯DÑXòî¥Ib¾ª=Ï‹¼²o™LØrÔl)n],{—ºòƒ¸×ñpë„뉱8&Ê×*tW«xðº·.îý‚ý ¥kšîúª†y14ÿ?ùGH^ endstream endobj 3002 0 obj << /Length 1381 /Filter /FlateDecode >> stream xÚÅXßoÛ6~÷_!`/03ü!’¢±h’6M±Yæ>eyP,ÚÑfI‰¤4É¿£HÙ’ìÈh²nO¤Éãñxwßw'coåaïlr<Ÿ} ¹!%óæK0†¤ˆ<¡8ŠxóÄ»ò) ¦TFþÉ:®*;=-™Îë¸N‹–8æÔ'„×óÏ“óÉý„À Ø#)̽E6¹ºÆ^›Ÿ=Œ˜Š¼ÇF4óX¢Ä\{L~Ÿ`gæfD”›©ZãEÏxФ¤žÆÈÐÐË8Óµ.Büª±qG÷Þ;vwí¦ÙÛÿJÎÇÑø+Dì¾²£û?R¬Œbp:ãá˜b‡Øq>ÐÛ€ËnBŒ0a S Zÿç: Øü¢³ðãú¨ ~to4‰â®IJ ŠžI][š‹Ë•³àòlâ]5 þéôk/OÜr]Øü¿ÑvŒ“D'㯠#ŒHÄßðª™zɸÞW¦Ü[Bª»‚`$¤ji€¢ÆŸ^b f l$]pŽ>’ÐS ñJP(x+ó'ÆÌ)êÞ,¦¢•99)ZW³ÙP÷‹‡»y ¸ßÒ_ëÙ,N`’¸|™RZŽƒiÈ…ŸæµÕ/Ùƒ¶7dÍÑ‹ Ä~Q¥ YîÚ$bLn 礗zƒŒžRA›„{#.§ß'‰1ú±ììlóf3Öê[m'«€`¿„§»ux<œ\kãLåFyewÏ./ÎOó#~;ÉíÒßF¼¹íùѨ*J+¼çªlxØ›ºô﹃@cŽÝüÖ¡oó.37w?TuŸinǺ=RA!°3úu ãj ÖuŠYï;¥W@z©>ˆì#¥DŠ#²ÿ£ q@(Vòßg‡¢Ø$8V‘çIà (ë6QÔãL"NU’Sãt/„ÚÐϺ‹€÷ z¸Z½Í޽ŪgoÏ¢&‹å›jWÜP…´\vðœN³& 0ìdÊÒ ¶KïÞÙ‘l êPÉ{µk¤¨•Ñh²Þ xO0Ò‚J"×n¨+4а´4Î.Ê–‰RÇI‹m×ýhè§åª•ε R­]@—e‘ ˆÌ*]¯ sô1ÍW]ò«fýRðû âÊо‘èL›­öœ[8:Ï(ñN ÀûK=n{bÚ^5íÜõrL„„óÎ'MJêýíÀ\Z¤¶à²QlÙìÍÃóÜ`î[½^¼N“OµÎ+ &‹Èç;=êhWu±€vÀd…¢ËÀ!|±:Ñ&†O }géŽa[Ž–M«Öü¾--I¹ýti÷*]Ú•Rß?è R¿ùeU:C­hm,uÊâÚαÛÌ ·b/Å9`¬ª‹"±ëq5Ö™B'×ÿ<‹W|4lOwòûj‘¦ŽÛþâÀ—éqš*ô§{»B‚ p²úž?cÚÿŠ¢R„ÝŽbÂ¥ð™)JÛ‚Ô–¶y  9w ÿ;,bGŠ!q튜a>#ª>ݾëï›ïö¿¨&žW†ì}Ÿÿ°EL endstream endobj 2994 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1HDU.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3008 0 R /BBox [0 0 500 236.41] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3009 0 R >>/Font << /R8 3010 0 R>> >> /Length 613 /Filter /FlateDecode >> stream xœ”Ûn1†ïý¾.ŒÇgW‰–ªpGéò%j(BŠàñ™ñxw­t“Ð$û[þ=óygv¶R+šþõ9ۈן£\ì„– ±P6e}Ì6ò²CC’àUÝ\ð)F'es"Fê6âÅÕÕ|õ¸»¸øðþËËîÄ­+ÿ`ౕýÁš"¦À Zn„5¹êuÕÖ‘fO«Ù³&CPºd p'oŸ`ð¬‘üúõßÇ–þ tò£b6ÎV½®:ÒÅÒHv 1„¬å|>°IYyŸ'€?Å5> ¼Ü@Ú!ÙÓêžØ&pÊÙóƒò#á»¶{È7÷‹|Ñod'ßf§ŽÀÁ§ª×U[Mº¼»Ä}äЖ²žñ–uTÞNw÷_ׇIKgVØÒ½‡53²§Õ=²ÉÆ©hÎCí•NØC~·›­V'¸©=½zÙ›¡•cêÛwT¼¼ø=*›0å9} *b?Á½\}?[Z“iK÷2N‘ÌX ìymʆºø,Þˆ­ Ì{¸7¿~üþù?ÀîkÂ@ØÈŠšcV”®' Êeüá½Ù—ò‘®£‘ŽkÚœ¸2©T7éfÕœ[Šù«‰Ö4(8‹µ¾jÎrÀœJƃGÍÎŽf;d×´œ¢•&bÆ·+׌«)þH_ 'áFúßñOÞ5öŸv“〕³÷$D1d½<&†ªÖ1S«šSSÔºhN©)§(×$y¬H1 5:b-¡Øz*jÙ·y°ò—JÖaI;‘êî]ÊâF³h¦ÑÔ‹Á„!>¥âø·â°ÓR endstream endobj 3012 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 3347 >> stream xœWkTSWÚ>1äì­2´ŸL”TMhµ¶ÕzZ¥cëÝ"È¢ÈE’p ׄ$@"ÉNÂ5„›$@€€x£´E­½8^F¬#m§vtêÌ”iW÷amf­9Ñ~k¾µ¾ï×·ÖùqÎyÏÚûÝïó>Ïûå1‡âp8ž‡SĉY«ƒ¥â#÷óJf1‡Y2‡YÊED2Ó0³Ç=)äÉEž-K¼bàÉÿÂu/àœ)gÓ¾pËë¡Ááo¬Zõf€4=?3%)9Ûwúõoù&äûþñ LÌJI’ø®`orÓ¤éâDIöÁq‚,Ë÷Ù¾¾Á‰I²´#™ÿóÝVûÿ­OQ”ïvÉi@zàÎ̬]Ù»e{Žä%M<””r84MìûΖ­õ õ>µŒ ¢–S‡¨W©Tu˜z ¥Þ Â¨•Ô*’  ©÷¨]Ôzj7µ—ÚH½M Rj1µ”Q/³5¤<¨Dê.§€3>góœóÜ×¹M\âQÊû /Š÷ý;Z ^Í £á…¹‹æ–Í‹œ×?ï_ó¥ó»=#=c<Ížƒž7±Ékæ8jƃÌËÍœ™0?Ö¤6'ß!Fæ†O.MŽÍ*÷‘ÊÂh GÙ@t®¥Óbª¯¨ÇsyØJ®²¤We …e”„éa®³EØÌÇ;0$žS†šþ'œ¯¦pà·i!N¶Ò‘¦Â:䂸4¸x®ÕÒƒà¥ö´="’t{•…QePŽYAT…Ê¢¿q>x7¶ýƒ´‚}»„÷A©1Âõ¸ØÄÄóÉ¢õ«ˆ,yü^€üð3aŸµOÈoEERþÔø*²”б»ýoÈIG o¢?À¿ž¿vKÈžW1Ìüs€ÃÖ›;C1áüb,ãåКœBe.*Fr“¼"ª1²:ù¡Íiï<¸‘9ÄcY‚£1ïç\æ7íÜ-ÞŒûQHs|ÿáKiö€xÏc ñ«—GsŽ '¬RÛ^wöDŒÅj'ãuuÁÝ),ûf‘w]󱶉ö7(ÍúO!^¼óR]mê¡Åxþ÷Ø¿Š_ÜùÝʸ¬Ãq¢{@c ÍI.:\ (5†JdFðt•:F4› P˜J¤Þçð¦›ß5æ:çÒ62WèAæDùÄ»º„î¦íc¾îãü4ÍИÃmXˆûh ÑÏ=ׯnŒ÷}‡ž¢G’ÉOv}I8.²AÒ–Gß/­.ùþJ¥¿â`æS~·¹zèÛO S. 'C7"B!2/aÓ;1’CÊ·<ªdÁôb0Ë‘«ƒ¸¦Ÿó÷i.ó¿Ë—ÒÑ/Çf’ez˜N/3é è įSº:elÃòlZùŽB¹IÉœIºÊËâÅlžºfEÃxŠ.ÃËx³Ž<ú¶ÖRd pg¦ (Rœ„yLðÂß°¼ÙÜÌùã·b!.µÒ»…õºqˆeÀ94⨬Ѫk…V¹E[‡`»µÑѓӜrD* ˆýh!²$EH>[Þz–$OÕƉˆ èÂ5šý*BºUÙÌll[ðá5ìws[ï/ðçü“x)OEkK´e¤Aj£ª"»:»" Á-Áá!Σ_G‹®¤öæ6f¡4AÜ iÄ{ÉýÓÙÂB²®Ž®2—Ù¼#j‘E׿FPcï8Ù¼xòú•›#Y=ï»D„úTÚ(oGvÁ`·ýüå®Ôõmn(Ì/'¦ß§Ü™Hü ŸTçÓ“Úêã6HÞ'ÞOßA6½†i|ð‰ãûáK³—®Û¿@ch$¯?©KÒqê l£KpOFkró‹ršò«b­1Õ±,öÑdyÄ¿a÷ }öÞÓD<}‹ð‹½½ÇãD­år9ôÂÝêQÆÓɹ9ÅÅÕL†´YgÒ m§H T¥wIÊ :“~D>¦7uÅ_êoíÕÊ2 ‹eHp\n¿.Âg~ÏUõâ0v5s~™ÆcÓ\ÛBÜm£ý+•ý-ˆð ú·‹UïjYê¶_#L0Ü6›ïUAéÎ÷4fµa;$ad ‡ý_‘Ùÿ½Š[R®0 š9˜ÂïMq™¬¾–Ž2–Vë/@üÙP®•YÔ(%@R­B¡J—¥)Å;qzH„ï“ pAW¯0DCR¶\Œ¸Ýw¦Ánž=ËÛ Êu#Í®ÚëϺrfN3ƒi·–Øh?£¢^wǹñn塉Ío$|ý±Ý¦Tmbe™ R_¾Âø´/{ˆ_Àvsð3~B©•#˜]Z?,Âáj;åí2W¼-ÁÕÛ£ögÛrÛÛ[š[Ëõú*‘®F_ª ÝÙ:pÉ. dõÁüâøDY®"¥²Í·8nbx°etBè]VÑ”;¸ø4j±ôö³!²ö!‰µªe¦"½$Ádéé³¢r`¸:ÜçÂç“êwVî^ˆ?°Òi(·!m˜üGø<Äž6{§µÇ(°’ rÐ¥3k)•²Ì4­F™_”[bñ‘·×éÊóºKX9³ÖUv ••×€.ÔPÔó„,÷!4ñ'¨KSËrüªHTuU•uõ-¢ûø…ï‰o¹Æ¨E¥”_z2U÷ Q'3ÿ:çË)œûg.^=ó._kLP¤G $%¼BPi0¡jjŠˆf@ÚTêì3çàeøÅm_;x(92Wæqæ‚kÔqJ×"t¦µîBp£÷ù…ǶvݨÜbxœS÷¸Ì+x?zgRV0‚k÷…ÁOŸÜ|àªS'šE•²jISA+t´ØÚÆv^Ø‘›” ŠŒ“îB¿‡„ æžhèv ím6G×ø3´¿Ä'.ó&ÞÌÞ/Ù‡‚Q|§är~©Sw ⠺䆺3Ó)v}ÐŽ"QL~bJLBz òƒDxk#½;Ž©!!™Äoòk'O÷M  Ô.­{ >ÇWœøˆƒóO–¯×X¾’XÂŽÛºú[ëÔ’&aC†EÝÈ*cSS›+®ãýýáé±¢ŒØ’$ýï¡ß‰?‘Ïi¿ZèöuVàgRÕ¢»޽€óKÞ–<ÒÇùÇ4.tÖ>Ü)©)6ìxθÒâm¥,o{l` Ûýú;ïºF}º>2Ÿm¿êtM ÏТ?½óèð[ŽÕ¬ 5²úÈ·WUÙñâk1ËWE«0³…îy*¹Œ¯ŸÂ©g*ÇM\xÏîà2©ŒÿÌVƒ¦Ü*YµO†YZ‘àšík÷w$~ž*ÊÈÊÉUªÊN rd*@²ZÕPn@xF*:ÃîÅýpw²chTØßÝèDýèZÌàör¯ô 5fÕ ÔÜÓk¯v•ÙtFÔ‡¬Ýö‡µ Nm›Â IéìKüÓ¥“š|ÔS”thÛ1ÂÛÜ9ÜVc¸(ªÀùãŽÞóÝâ¡-¹6…!Òä$ÜøAÈj) Ï•é“ÓoO-òþ’Ïj+½§¢´Fb NšÈÚÃ<9¨6XŒƒ ÚŸM'9Ðm/Vï*ƒÞ_c™uüôìl©¤UæèjmíìÌn•<ÄÌÓ!®bÇp„ïW^da«ÏT رÚRÐJ8°Öà­¼Ù ZC¶òÚé6ÌiiÄÀ?ž-£õ‹Õ›ÜŠ{Î-ѬmbšYÿ5Ì YÉ'ò<úžÖšk\Î:€vi ÄéÑûÒüQ ŠjO¿ï,íC×!¾ýLŠ¿rK±+ÜÿU¤o²ýÞŠ9w{¿8#lª9îA\Œ?×Ö?¨ÏªÂùÛ·e!VYéý&•Y?™'à¤1¢ð¸*5C• Ö`1°”vš¬ÊúP…âÀIÖÓÚØƒûŒr¾™ÂûÝ—ÛòdZéCa­~â^€ŒÕ檪Smg{nMÞ)"b  V«BÜžm!HÑ c}Yè:ëlº€àå¦ôÍ"’tAšÒCö#©dOT¨¬èŒ'<ïØÕ­‡"2… ó/§ØCQ,J/Ú¼Þe-xkÁÃÜÜòÜ‚wÔF‹H%Ð…)#ö¤&ö°*ÌÅÌå<À\.^ÂÄñÅ™™'$§2;»;Ú»º3:Ä"B<þ×;/f‚‘3ù³ëH#O˜u¤“÷ ã8ãhöwbâ#|fnäUÙuØÁ[ð89BÆ TÔ3af[O÷Ï{8¿ßäéy¿Üó7õoÒcâ$ endstream endobj 3049 0 obj << /Length 1817 /Filter /FlateDecode >> stream xÚÝYY“›F~ׯài UE³3ñ§ÊÙõúŠ]NVÎËÚ•B0«%F ðzóëÓs€K‰+y‘`Žž>¿î°17°ñ|ôótt~m3ÃC¾ãXÆôÎ –…\Ç3Ÿ!Ç'Æ42nMj'ÔõÌË$Èsõx•…å‚§EPÄY C 3jâŒ?N_žMGŸGNÀiP$ÈÇÌ£Û؈`ò•‘å{ƃ\º0,–±11nF¿Ž°f7Ù¥¸É.È1f8ÌEÔbŠÝ”2ÉGµÏ¸0昡d_MÎVsÍâor‰ëe:¦Øü2¦Ì ’8z¹æü*(‚é˜Àøã’·èvÿϯ™ ÌaÇws”"ê[ƄؠJKñÆÇ6¿†|©õæ3³ÈÔÿŒë÷ûU6&Ì|Ðóñú/s¾RO+þ¹äy‘«·pŃ5µL¯ªÝB„öT!äOiV¨‡¼\.3 nc³à‘æG¨âQ ÂMF>ó”áŒi‘ÇÙÖ£–J:ö™Ô: ÈÅähû¼ÍÞ–IòûØÅ`ŸòäÖ€¤5à_ZC¼7­ïÕºœóOꉯVÙJ‡Å ()^> r©Å‡1ãQ.Hí¯±èë¦ ï_ ;µùOkQ&8‚YÛiêÏòöà"‡úŠÙwålìšIuê™oøb&C ž¯Ë4"ä½ é¢ƒ\Ï•&r©5`œ^[s½¸zßµ¢õf8Ší–Ø}r€bâù}„È€;ÍfK¡ÿG¥~ÉŽ"\†åH•[\D\‹ˆ-"ÆåÚ‚/–IPÈH>¿ìw‘/øtKê…?ª-B"prE P- Úù¦=Á3<Ç­Öÿ4 ï®|®…¤¯ ôÅt†ÙP`‹ØæÙ°IÅtE B}Ö¾!_o´Qât®ΤÀ0ò¼S ¤†a¦óט˜‰·Í­4Âl!2¹&1˲DMÄù¤ÿ†ì¿déˆ<‘$9ß×ïÀßÀp¿¹K›,P©TÇà ¨‰¸{þMqó÷Ž–<ŒEBãš´ÎþeÅVUQ!õ4ÖQ ’(?>ù âÅ.'ï¶ N£Ž8ͶÁ»íÊ»?k?w‘íÖA´Ý%€«™÷„eá×b¾Ã©|¯^§=GìëŠb„-g§3¶qQPÒ%tþ’I0Î LG©C/«} ìP'ÕƒÜû”þfG„eöv´³pÚ®%ʸM"¬‰xâµ…VvñlÛ7‡×²&²‰¥ ÙÄD ШÁMæ¢ÿ5¾UÇ òBéuÇ\•T˶Í2¸À´”« ê áAUë®:?Év…KðU(ŸçC´f± EW=+^”¢„Fh­í†¶t™ØŒüб“)‚⪉Ãu!-$ ’¡ô@¢>ŽöTÊE Û´„çB'§ê,ö±P²1Âë ÞAªMY¦y¤¢9äÐ[Ý6"»ÞóPDʧ¼\œÔ•à1¶»@·X–"X-æª;‹ym3ÒÃÄCØdN®­;ó\­¨¬Ú7|ñÌzÛQ±OÜde¡Ï”_å%1ì¨H/²(¾{Ô×]õgAý™¥ŽˆËÏ._ß¼s~õtúþùÖûí˜`‚ñùv\}Ú†¤ê:vóÓ6dHËÑùõ9Où*¨‹ÙªŸŽ}èµ4o¼D[Ÿb 5â^`vAü*Òé:Ò//.lÖrW™l8Aµ žvÅÿ3:£ endstream endobj 3107 0 obj << /Length 1759 /Filter /FlateDecode >> stream xÚíZ[“›6~÷¯ /<+º ;ÝÎ4›n.m3ÓÄ>$y`m­Mcƒ8iþ}°Æ¯½Év¦Éb!Ëw.;3;ÏOǃ'×w Áœñ­CC¾r$B⌧Î;—²áˆú{µˆò\?>K'ë¥LЍˆÓ†8æÔ%Ä~¿ü2|Ø;Ä¢HPˆ¹3YÞ}ÀÎ^¾r0baà|)§.æÁT¢.œ·ƒ?ذ‰mv)¶ÙåqÎÁ}D×ì¾§”—|Tëœw#Î…;I“¼Ðì¿-²áˆp7Nfzà‘Y 8Îf†õ7åRõz&‹«!qÓ¥:sÞ$®f¼ÇÃ?R{Wý}rÍ}à‹ÐW\SŠhÈœñP@™f:“ÑT³RÌ¥~˜TÛ•¿n³t¹ÐÉí‹g¶±%f‡hjb#Ž"íIùúåøméôæo9)PíUCU£Í©) ¹OU¦^Äy‘ÂB†Ý¯ßH]s{K-Þäv¿Ô åî²ò•ÿ‚2A„Gé³·:ó#ÕYI•†i\Fmt¬N½J§ÅZ«*9¨Úc¬2©tý9N×ùÂLÚÉÍn q¿áÚV{ÀB﬋ÏC8`O»™‰“iyžöÉ> stream xÚÅ[ms7þî_1ßê*©[¯)*U¡.$6¹\RTj^´fï̮˻ÎÁ¿¿§µ+c¸›…WbÜ»ÓÓz¦Õê~Ô#S²Ü膒uñ$‚oX{Bc“!6ž© !BpºI$Êw‡KÆ8jŒÕRŠÎqcÈZÑò’Œ"Ìb=àgÊUÓ˜P¤€[£“ÆÕ@ Õïð‘CùÊÎÄJR(hÆT®Êp¹#4l¢àŒ¦a&ÑÃGf1Ÿ"7loœƒšÅ³;-§åÎè 9+#Àš×‚=BÍÃ;Îã¢/ãcDŬHQÌÂAI0h˜K^‹k,‰”Ë´ÑØ@2 ,0aÔiN"™O(“Œ)ˆÄðsq“°â²<¡ˆäo æ ~€äÌCÍá.\ \y )É£IH„2 1é“Çà&0üÉ6Á&1l\¼+ßù&D–{MhBñ’6±‰¦¸Ê¤&rt­•{1º$®B¨EŒ†1ˆ›˜ x²MÒâMÁhĹ0•¸8þJ®`Aè`šÊÕÔ`6å*¼d´.Ã1‚O›r3`4nÇ0 WèÍÓ³…è‹7±ŒŽ$ˆð ˆ{¸b€h6 "oÊzÐV„G¼CÄhLì"°L|ÄhVŠ)ën6ˆvÑ•eAÌ¢+«†8 ôÍ¢*>sVÄ ÐeÊŠQÖšóe #8c<Ä€H¸wï =y{ž›öp±X®ÚãË~]>ÿ0_üû ½¿¼óÅo9A¿l¿oŸ´~3åÃAû<ëæ7 UC9«•‘ØwI‰ƒ"ʨ6÷î5íqÓ>^ž,›ö¨¹³Z_\ëfóõêwó»yôääøÅz~&òÓn=¼Dw›ï¾;ÀÿŸÐ¸ Ä߯{H²KRËÈ„ Lr„8œu«Õ;„ß½Ø#ž”öþ ±W’ªvÀóøbyy~Òõgù÷s¢ï9ýhâ¬s>°›ñÌÄÑË’ÝpÂó5G"˜TØ øžéT·¤ý¤"¬t¬3…”ñõáÔ8£ ¢Ìo3Ž •åöâl‹ç*Φã¹gÈ5†Ð! …0²éåÇÁØ™Až½üÁ‚„ 8Ï›ö—þŠ1I¤ç€9BòY\ž½üÊ\”æyz¢¶ QyÔ‡©ÚFYšª ò¡rï íGËź8ðÈÖÜæ¶GHÜE`óåKøÈæƒ+•iûU>¢¨n? z¡†nÕP¬h#µ¿üÔÿKæSFzòÚà­Å'¯©p5{¥üìb9gL~Ó>;zÔ´'ùͺyy3žžu§ù }ôy±^ Y‘ z.a³Z^^ yµ¡-å»§yœw÷—ošiu5$Bè<ë.p·Üœ6Š%JW¸08ÁSÜV¸ú†ªÀU°[!V!¸*ø*lÜùr¿iÃ[VÌ®æ ïX‘Ž_¯ϳä-¤UBzª†t›Œßuö)ÙL:e—õà-Åô&3ã°ÿ„çPò3Å‘ìΡ¼+pëÓО‡ÙàbŠÃ0ôXÏ3=›QfL{,d:)ͺÏ{ïw.œežLQȱµNÉÞ‰ H’ˆu€ÌgúPËÆ\!`d:¡Ø™N»dS‹ˆ}ŠÇyõPå™ÚÃ{÷Êíá°ž/íqûâùù¹ój½>_}Û¶‚K®fƒZt«N.ÿh/òéÜïm{*³>_œ^ ê|œÝýd쥸ñMಟ‹J£lXMÂLoú'iVe7ŠÀ ¨eĶ0,pu,}ýÀdŠ'Ûí- lo•‘5Ð~såvª…òÙ¡:« öä8)|Jî.5?¤¨ÊMå Að6`¹LTvI”ÍTm$'çi¢6cÝR˜ ›á>ii| mB™úŒDRúÜDmì5Ôd‡|Hù#Ìíñz¹Ýàt7ÉÚuN$ É}cÉ\ï±±Òiùd6–* K•„¥JÂR%a©R®T)W Uˆ7¹ži¼òEsçñ³šÇ¯–«õj¸˜Ÿ¯ÔÔpr‘;I¬GÝ:7w޾%MN³1 Šì7ÚþEë¿@ïérü*'óõÈþ±{«õ%F?Z¾y{šøêðrýJ¾¹{Ó±߬¯1ÂAûÓ³§©Wïw«\ =yxÿùßýëÉüu^}ó|ùº[lBã(ožFK7®xtcT.Ci~±Z?xÕá:´?tÛ†ôAûù¸~U<ïJÛñ?*Ä[6õ_Ä!Qã}(?E.˜D’Tîœó[IôDãÃ#YlœÞüÞü+–œ~‡bó[Z¼òmýÑEi´½RFÕ’¤.†åˆ¢ØÀ ‹ÃÅj^¿¸–êÅ‘ææTÝtúfd¾?>E÷Ë"À¸ßˆ®ñQxÛ£³îtUfåp5È’Àךîüû_Èx£Œçwˆ¥CªÃízQ¶¨˜<˜6h@EQš áV ±”dÞAB•ÝᘾLð¬=๠~*›ç[ ~§ØÆ+LÒàðrvq:¦ü.„.ÎÓbÈD?R6!³ñ6÷¡Ë_ £qôJz=5£±t®o#¥Éqpay×#,Ù`1†rŒµ"…É4±SêݨrȨަÜGw{ô (Ë›?ìѼ‘ÓrAEðröسYw{´òîÊ;]ðij;)e¬(xÏtÚhë-éÁ÷’$÷½óÁ~ÄàJ„½ i­doÁØ#G3™|vÑt4º×Aw9€ȶÌR²ØT¥1î“.[eË‘`­äв¬ûèÊáQeÍ×Ï…òê6^ƒÃA‘LùNp°hõ±çÞŒ¾ 9ÏÈØ›Dëf (›ýžæ å\ô1”ÙÉû}Õ,I= ¤?Ô]rÛã9Á*ì­'{0½cêƒãadëµó1Û”½g&åìö‚F•óáì•q¾l(¡äXÄ=}Ñ„Ñt–H;Êcoêò Ïáöƒq¶Ï9÷ ùR+b̽“#ü;!ÞÿÑ'“¼ ÉÆ\¸!}S¤f<ûlÆ­Ç~ƒƒˆMH›¶Ë½Ž]¿Ïs:ò.ž?Z³i!Èá6Ù Ç8Ysèó@cïŸ:c³…šˆ)ç,ð>éжM¶¼W‰FÞ&I‹ÏˉÆ[Xæ WÙhÞJQÉ™Ëí5SèÝæ†t8ÊŠTÞhØ4/öã,ϼÎ&¢8󌻌úigÃ0öƒÍÖí÷LŽM±œë•?" È߀QqŒåO;Sþ„cz«þ¦rm#§ª ´ú'>>¬Í1ŠrøS›èòXï7Ñ¥·ó‰Mtø¡¶Ÿmm?ÛÚ~öõ’¯—üÕ¥Ú™öµ3íkg:ÔÎt¨éP;Ó¡ö¼CµªåP-‡j9TË¡ZŽÕr¬–cµ«åX-Çj9V˱ZŽÕr¬–SµœªåT-§j9UË©ZNÕrª–Sµ\_M­«`ª@ïÚóÿŽðÎß endstream endobj 3153 0 obj << /Length 1624 /Filter /FlateDecode >> stream xÚÕY[s›8~÷¯`úÐÁ3µ"$ÙîLê$MÛÍl7v_¶íÁŠÍƒp“ì¯ß#$0`°q.›Ù‡Ä\¤££ï|ç&°6×°ö~ðn:8:7-ÍA.cT›Þh¥ÈfŽÆ\ 1×Ц3í«NèpDlG‡^šÊËÓØ_/y”yYGðÈÂÑ Ã~Ÿ~œM XkFE¢\liþrðõ;Öfðò£†uí6ºÔ¨ C 11Ô&ƒ?X©‰«ê\U×ÂȲ,Y6"Ô’ê~#ÄÊõ(æi_G–ÅôŸA2™XÏÖ^(wñsH,=fj´P7™+½¯òybTÂSž}Xzs>4ô+îÍšÂÅ oØÂðgÔÞ¿Gç– ZcæÚBkBq©62L„-¥ôÍb=N|.5‹¸¸¿Ëä]/®”ñfA4—7ñŠ'Cë…àQoÆÉ«›$^•Ž˜„JN¥Y9$¾Q¿×q_­é{þ6l騶¥†Få^lÏ<Ô³x}=$X­vš õ½rH;ìRç,;ØL*žðl6ëš ׻ɸä·3yýChÌÅ¿û[~œÌ*tòÂ5ï}ÊîÄ«:<³7j?ˆ¿ :p‘ÇA&¹*½ ÂútXêr5êVÐÒS†*¡snÁî *T¼_mïõEÌ´^­ º¤0Wwç]6»Žã°pðù<äo3XPxœÑlon¶âMš«6/‚ÊÜKf!OȶÚÜ‹”ßýyvõ{_¤Og”^&X¯f^ÆÇ î ­~¤ëå“Fw´\¥Öøâlüiòå²·‹€½ß(lSP´4ËéÉô¤”#Gfià AZÉ$Qþ©pN³ÙññÊ€—Gç¿]D˜db„ £s ¿Èõ Ž!q—#ÀEßlœu[aÈ4Ìbô¯¦m[¢œ”ÃÉ¥÷7÷½-¯°ë™]FÌD u4–‘.ËéÐÍPpqúeK1xœ‡p%׫u&ù DÂ…­û•Í¥ò¤ƒšã)]*—òê6È5aLÑu$t=F€ªk¹rc_.jláòí×·jkÏïÛ|Þð¶Íú ¯¯U?4¼ œñRþ]H‚‡@KU¦dU†Áƒ×¾œþöÕ{®à+ ä«W1Fv¯ð[©´Li¥Ð‹Áx*òÁ3°±€MúI›&ŽAZSîÝ¢m f–¡q rPm}™NW³$˜½í‚¡ $=Û…!½€¤'ê?*ââ鹨Èhãhm¦ŒWi; ·ØZðaô}¶ÖìatžÄû’§Ý?y¶Á³£5;¤¼|FÀúÑu\%ì@SÞPþ‰û³ƒp{±ö KìRüˆš¬j1ê"ìÀŒ8r£q&%¼•8úgÀÒÖÃâö’/¯…?‹ëóuä‹S“´ÐzÉíØ9A°Ãö•ÃjýÜU¡4–UŸ/¼x» µ b6Û[ ›•¹EŠA•)‹ËßB1äŒy¬‚M£âx@¶99F£$¾êtëÏã­CE  ½ÖËâÈ‹Ïö×oè/û½´˜§ èÞêÇ+¡ÄýI~šÅ2iû¶{3UUÍŸá(qÜÈuzv†¶nSp¶­ÅPÖíÄG?ÿ04Â)”RZ&rMc»„¨é cRŒY½íO&j#Öq[ŒÉŽ:'ÉýÏÂEí{ax:J××¾8/Ø•-¼¬õüu§ð-$KüÅymzà!,ý¿ZHËó2\Ù*¸k>¼;Yl¾©¶å=C®øf@‰ÝÿP"Œ£y›™Ô­Ýb^{w‚ž<íÍqBlä0Òl7¤Qjn²«¸ñ|Ôyî¢Oz ¸ÓñLRã øÝîànùh´ou{|QzH¦^u„yì“W‰,…ò®pƒâ­ßaEnî!ßa‹ÏÄ [ÂQ¦:´¼YÞ”eÅÉéÐ…ªMu—žj u J0°I>±±ul¸E·@6ÝÂx,¼¸8Ð.>óÏÐùi÷=D *ÄÆöÿST endstream endobj 3198 0 obj << /Length 2735 /Filter /FlateDecode >> stream xÚ½]sÛ6òÝ¿BÓ‡5c3H‚¤çr3‰S'n“^.Vg:“æ&a‰-Eª"U×ÿ¾û~ÉåÆÉ½ °Xì.ö 9³åÌ™½9yµ8y~éù³ÐŽ”rg‹Û™p];PáLE¾­"1[¤³O–tçg2­‹<®*î¾.“ÝZu\geC¾ãKKˆhþyñÃÉ÷‹“?NìàÌD£°#ÇŸ%ë“OŸY “?ÌÛÂÙ®g® æ³ë“ÿ8†LÇ–>v±iˆVcDû-]¿!Ú†a1?ŽãX¯ug¹NT Ôë*Ùf¢ n6z~)^gv&=[ù!c|Wš¹O:AÜÎ]Ç*·üç¹Á‡œo—FßœÌ>ÀÛ×?64ßÞê8ÕÛ³×q3¦Ÿ‹¬þÌÝòæ7ÔÕ\ø–};P*[I)ÙÆu½}dÅaRqþââWÇ‘=‚(ÞjF¢³z¥·Óˆ> æWÇw>€à€¯lCy?jš/@(˜¬òIßÿUO³º¨:Ý•6(³¯IÛjH‘ÃÓ;óÀl^ñ´‘¤kÝîæÂ!xŽE"¥ÁjwCª†z‹ÐYQ—SœIëj/5ìð7yD*®µ˜ éXñÍ~s=Š¡cæ(ò”u·Ê’‚¶B1æGŒ¡ú¢`÷Ó–ñ²J²lš2†í4šWYñ${5b>ÿšûŽ…&úÖfǸ²¿Ñrj½%»Í ËìϹô-mVÄI¢+Ó‡£U›m¹Ñ怳°^ŵYBò¸¤\¯É¥¶k}ò+4IŠÃÒ—a`åñv©Y²ûòßê?vÙ–^(­ß‘?÷ws+íð¸V\¸Û]‘ W¬x¼!O6äÉyÒ'òäPVëêv°ÍA\, Úv•Uç®úæãJÈÃsØ"Å`$]@dÿ•U]~æBf]3ä]†1{7šÁK„â¬e{gÒð_$7ÖOem6á$€{YÅ‹¹õ¬uYÕù=÷A ¸Ç‚‚´W#"5MÑÆFbÕ®‚›Oª)OÄ¥žÌW€¸¶¿ª¬Z•»œ–VQšAdÛ]¥ÍžŽ èi¦¥×™Žã˜“¼ÌÇÞö,”êÔ8™ˆï7v á. 3'Fp lf1DÓ&MßÂ’3´ÉJ'ÈØïÕn ÒRNGiæqaŸC¬ðMÒa«;D!ñž¶Dxá¶CI™ïÖ÷{ÙØ–@wÌÀé§ ƒ†5$ÖÓ««Å‡«_Nùã§—¿\]ãâSZ\þ÷ãû¬Õu‚ëpƒ08ÆØXêB÷H¢«Ršë†±L`Ž´Ú]™òÐî*mV PO@â€b1®=W!%ÃØ©Ø¨¡—€ÓX–Æ"µYžƒ]У}ïmí0¶?ˆfu£’öDî´’Î;Š„ßv<—©ý0G_°f1D¾‡øöÛþ‡³<‰s£5'× mÚÉš“²•P#5§÷ÿ qe¤ »Sˆœˆ—Êb~ÐÏ4”²WNH&z¡ƒSìC¢‹¤Dâ©„ ² ¸6Š+Œ6KGúf$8wüs5Z.;-oÿÏC_Í+6ÿ—‹®¶÷Kz9Óň0@¤Ãn endstream endobj 3119 0 obj << /Type /ObjStm /N 100 /First 1022 /Length 3237 /Filter /FlateDecode >> stream xÚÍ[]o·}ׯàcû²—Ù!9€ ±ë&h ±´ Œ`?¸EÐT ,Mþ}Ïðj傽éJªa@¼ZÞÙÃá|œREB E•âƒ8Y‚äì Y’r(U|P‚%Ÿœk ŠýW(UŸUb Q»ÂˆåØ—\ºùˆYbIH># )IõQ‰­£„¤ÒŸÖ õ§RÍŽ­úƒèï¨øHÕ±øË™ûSˆ—þ6G›µ?ÕÀ5ö§X“Ÿ– Ô±Ô„ÏO-þadëO ï0 R ŒR‹þ]ã ]T4 šØ™åÒ¿›ƒªú:¬-©£­ç§rô§cÈdå # ™± ¥ÕQQ¬!gßÂ+s!_*áÅWDø˜kôy„oT11F„‘„l®?"lŸÕŒwö/²¿— FP,F5Jþ¨e—h%•þ^%;zßäR£¿7Aй: &P);‚TCe!¼“«únTR³¹lJ­ ^nñü”ƒÑù©ãâRXƒ©ú*9+©Ïƒ©Yìó`k;Š—0Œ-¦ì+X`ëÂæµÌ•`t¾,Áa£| ØV·V_„›;Öîo€ÁCo]-xÅõ•‹[vN¾$h ³®¼ ûårÂõµ¨ú°+B!,¥ØçjŸ a0©î'ìN×ð¡[;Á¨± \ñ6¬ C7\—HI¹Í'hGf.÷¬ØâÌ|/àCÔƒ!0pr'p†~»°ÛPp׌z%¾zñâêôî§ï[8}z}}swuzûÃt×?ÿùÛë^>»ù°´_GDˆøþôùé‹Ó˯©¸:}Ùæ»ð5–=¸ù© êM…#7[jʘöixñ"œÞ†ÓoÞ݄ӫð»ù»ñööåËõÛ»ÛoèúüÕWߌ9GYŠÅ²ÊY¹!”Ð8ç9iÌsá߇O>¹Âÿ"L=³ nLßñ,6°ÈNÄÇáah®ÊG<ˆcÃ.Àóú‹woTÐýަ<ÀV“Ö¡Àª2—JÚ½¡Ñ–iBÇ+nV—´Ôyžކ=-t £›Âh¢»`âàºC¶§ßÎÊ\qC#—÷£9z3eÈÈ%ju0UĘÁáD”l÷n–q^–9ΤÓleäaeŠÛlã‘»™àŽž=+ÜÙŒsGᦑóÿ¡ý!Ü „ÐÁó’Aµˆ„ÈCCͺðT§5·ÈS‘—É–¹ÒL-Ï2M¶ñ@À°d;…g'°De(Ž?Ãï-?¹Ç€r  š Ë,°PCÀqxÈ(D»õ‡l.,#5Ö–DÊZóÄqâUƺèS±•êÅ!³SWè E¹bçùÉb< ™¤ƒ9•ÎesTàZöÀùSûéßxÍ › N³Ab@gÂû1½ØwÕjÔu,G°KP}F ŸåFåȸÃÓ+ðb§ 0GgŠJ4 Ryz¯Ð2dð4©î¬ Ш%¯>È#?Ï®Æ4TÍ ¸+à"LçP7¥"’uä4k–†Ú`ÂŽ¢Ê íu>rW ¸ª<ÐÒâe‘×*#«<½§ª‚xYÈ‘{Ò`æðìÙžeSQ<ÃÐê&FAñx¦3ƒ/R‘nKžyEÓ)MàñÈg¨>b™çã]&åW×n.OïªÈôå»0p€²xB­`\jú<®Š@[Ýð7LXô"LgW]x\Íͼ14óˆWZR*“TKરGñ¾ÊæªÈ®(ÏŸÞWÁܽ°—p_õ‚ 'žÒd?/Yã45øDÓ5OB+ȈéÚÖ%o\ôÈaw%6çø ²ÛaDòÕ§/…¨ dì-ftž‡Þ ¨N<ë~0Ë:R’–ÊcZš÷{f§†²à@L°9•Ÿ!Fñá}–‹?‚5Þ.L ù×Û:ªYö;±‰¢Ë¼Ì(Og[’ÕR5ÎYbCQwd‚‹^^>F)Þ¾ðñ$Š¡8Þà¶Á­Ìi°úôÕ8ÈëàÍî Wçâ½ëÝxú~.K^ͦZ•­MÓ*Ó˜R“1µ8®t(°áÞp‡C”óFöÎdq:ÿô öVðˆzš³Kì¡Öñx±xûÉ*³7(òþn…1ÏuI’e…¨Æœçµ¦©&¥i‘¤Çw+¼DŽò&y_H½`ÛßÞ«EªDuö:G›gŠluZr¬ñ@4øF¼W­²Ø€à3ªíTž¡¥¶iЙä@ l°Û•©®¤‚XV#hÎZA´4æ‚ØœÉôEC£R?üô–·‡£²¯År° ïã2ÁêÌ졸¥,ƒVz¶âÖ<7L^«y¬¾SßÖ¤ÍhFtæÕŽdóˆ tF¡’Öç4Hô“%?Ø¡7ûÉNL [yåÕ`ÌxÉ—áô׿ýÝO‘j‚nÂõß}÷þW&sŸœÉ˲ºs¶:·²Ý³±ä„¸¿s6{ó{ïdÙ¼w‘â ÊÞ9ÛùPÚ»HF2ñÚmçì ’˜÷ª„Ùÿ¿œüúæú®[ÊkÑPXÏßz"öý^Äkõ¾ÿ@ä»Û †Ýöwzóáf~Û`áôæÕëpz×~¼ ïiðoÆ´«ÓK¼¶]ßÝúáf—ìv}{óǹݞ<ûïþÒ–oÇÏn~ Ý<àó<õfü€o#óV;Oìnt‹÷SkÇӭσ”·AÙuØý€ã6 m¶Á&7÷jê'Õ÷ƒM2o’y“,›dÙ$Ë&Y6ɲI–M²l’e“,›dÙ$ëYòûckÞ§¹Ô_.=͵6RLk¶I„ò4óÄÓŠU[åÈó-F&ñÓJ„ì¸Ì †Ï`%îo4¯(Ì­-Æy©+*Sòfc4Íq<¾¯‘oü’†wjâý‰¡^Pçh”Á ²æJkžÖ†O6¥6Ùñˆµ(ÊOï„Ddk?áʃä :„Ó—Ò&ìhgÊeiR㬦“N™ãHN )uêz+~ÄÞßüÒ<7kK¬YZ,ci+×8Qm<5|C%vÞrQz;»ŸMxÛuÿÙ³ÌcEq½Î†h•Öj‘T`B¥ä#5ø€8{{ŽzèBÝØïñ‚îNÔ*Ü–dæyµIk%Úä×ôf}„ÚQ`•ž@ô¸&¿.7í,3gpD«Âb ÙQÆ\kj¨x›,Ó#ŽÈÞO:äh½Ç\.è‚£ Ÿ’ŽiÑÔb+Úˆ—T ~í-I^ÏgÐ뀊Fê·/‚sÙŸ€‘ éOÖ± ØÎESš#­¼¢K¦z|r`E«Ü{”¢Þ£¼ì¤7­ËjµÕyè)Ũ)Žk[2Ítä0›œÕoõ椑x’ðkõ‚+k¶&C¨‰k™¨¥u­Lf‹Ìë ¯ùÈ;EÚuÜ/׉ßTÕ¡ˆ¯Àev( ³÷—–1µ‘KmëØ<[®+_à'dƒâ×2‹ ~wÖ¯* l\áq:/­ †ž ÕÅV$ô5¶%§åÈÖ,è—ç{ÄÉ[NûÑ|k q‹zK ŒË¯I›ö»x„‘žþN›!C~€ƒä2˜¦KðöKÏx>öKwã9úÜÈ B’Õμü ó›^\ã\rŽc[C–uªÔ¦BS…È2NÆíØ“T2 ¨Aö[Ö%ùÁ¸Þ°.ÈVZ¦ˆ*Lœ@ æÿ´ìÜfŒ•Ž¿ÒG䬥>\é#F3û­½TMôR9ù¾— jí±o¶·µîœÌNw$í¤ß1Ü7;ÁNýïVvÎæØ»e#ùTµ³ÉoÓï–M‚:!×GjB@†€ò¿õJ­þw¯Ôòoï•–­ïX¶¾cÙúŽeë;–­ïX¶¾cÝ:šuëhÖ­£Y·ŽfÝ$×MrÝ$×MrÝ$×M²m’m“l›d»—ì…Ñ¡]O÷Lï!"Ü›—02Pÿ‹¤¡ü ×>> stream xÚÕZYsã¸~÷¯ÐÓ†ª²°¸Iª²©šÍÌÎn’J2NòàÌ-Â3éÔØÎ¯Oãàš:,Û©Ê‹HF£ñ¡/#*fëÖX¿ÂóÇ«‹ï?p1‹P,%›]ÝÎc(”ÑLÆɘ̮ÒÙu@Ù|AÃ(xŸ'um_*W»­*š¤ÉÊš4 Ï¿\ýrñû«‹_˜ÏÈ€#A1³Õöâú ž¥Ðù ÈÃâhvoH·3Æ”èùìóÅ_.°'´VN +BD™h…EÐLÕ¢ŒVÇb$™æo((ýóx?§8(+ý›Úq„ÏbG¥G£nÜ?1fŽùPša v4ïßmêåòçŸþ¶\&é< R˜è Ið*£px¾àB«²¨› ‰ f(ŠÏ”˜>•8d#‰EK“¹{KåaöÜ1ûÞÂêû¨0!" ¬1Âì¨U¥’FY4%ö±*ïæ åÀWyë: ûTºï!«›¬X»é4¾ªµÚ_?^Ì® å¯sŽ„‡…½Ô“Ï‘%EêfHÝKSf {é3³ ‘¤{W›LŸHíó.©`ƒqÐd«]®ßA»ù£íÛÕêv—Û÷[½8P8|ÈNz¡¦wbAŽÿmUní[Y¨ÂÁám3¬Ù<“¢l6ªš  ù‚I|èeNûÉö.7Ó˜•Ãnå0T«=Õ>t.ʬhTeé¶ÙzÓØ×U¹uƒÝj€6± ivk4£*°5¶ –ñ-dm ë&].·É;dp¨´:˜þÖ’xÐ QÈ»s]7v@í—{ 4:e"Bž° žŽíøÝ1!Ñî‚Á£$ö•ü NcT+G?¾jñÆŠÖ÷Y³±o¤~+­d3:‡“—>ÚîPÕúÜ_B#—AÖ´|òܾݸ±¥¦ú6§€‡êÞi«iTˆXþ]¥šÞh¶ÁŒIòëo¥J¦°4ÀId᩟g+ ³âûÜY kFÒW1YQ+w\•³ I'ý<ë wÓô¼ËkÇ¥Vê0“öì¿ËóÔµöOìl —‘£kìì.÷ý#{™ô¦€q‚·Ã¾Óûõ€ÚipiJëaÎ šÆÏMeͼ7á»ø|±vR oØÚË ñ¨D8ììÀ3&Å1D Bñð öJ‡>S310¤ÓÄMYæS¢ƒä²÷»õÊbýYÛü`À\ B!ëB‹Û$¯ÕÔÜ ÅáéN™„ÀècÂ)»óf?&MŽ='ý1}æ!1ÍÖd §Õì-DB(eŠÚ7qìŠTi|*5+5T½‘1„ÃižF1èwAÁT·aäŸç”I°Ò¦[ûüÆÏÉøºïµºo28æ1G’óÃÁ±D’È>8žàý?bkÆE"ӌܞŸ¯‰ãE8<R¢Q੪œhkÜö)/¦(„å…¢xÇ‚Äq8už(}Ÿûà ÜUë”öž‹ã«à†àX¼`G|iüÈz¾X!èƒÉ×–#Íd¦Ô3ß'bëeÒLck(Í °uÒB:x½#0à§ó=_oÁØ "‡²ÑׄéàD9¤LÆc~Ä^&Ï4Ćòhˆý¡È¥…MªLJ•ìòæûñD»Oõ(àÞ‹¿¼4±“sÏkÝg‡6rß´™»Œ`7U²¢ºPŽb÷l ˜‹!_»ç3žØÓ–)/rXi`´M€ÜGbÓ™!mìŽ2n4Qž_më0M3õ)LUžBÌqD𩱭íÌwe]g–£×¹’až¦Þ,–휎s$'pn`3UWȶ†»:káv4ÈœÈ÷–ËZ5Ÿ‡Ø.o"½Ý+]Í|FJÅü”Šë ãö`ÀºÆIЃ© y•¿:ûÏ|¡«[O*§4à' ¹Òð˜t~Ð!éiV‡81Œœb'ŽxLûz`jâ臩„ ²"éefQƒ"¦—¿0w ÏuVäY¡¾.bŽ¢8ö³¯ªàÙ(­D“¬ú•C«î.›ØÞ¨ªOìS[û°Ÿ×v|åÒô›¤VéÔ!rPãÛ/D®Šu›Å€ç¤AiÒ$cÙ³ó)Žò&k!$cBOØQΙ³ðY[ÚŽ9qK{U4wû]‘¿GŽëÕœMbɵ {Óf¾%¸Á¢4¥dÓk¦ÕÍÙ6Y+Ûf%ÐVÝÖÕi;Ú®pÆb[Q6ü¹;îZù¦ ™Ž¤²ý‘?Ë”ALœÅ­Iîåé ñMç¹e¦O'cxèbàÁ£ºÊMmi ‹ÈþË °;"ì,ŠÃü¨†J ÐDGo*‹{Ëôsº›¬ó„ˆò'uÕ‰¿©Ucu:*Ð ð«BŽÊÄãlQÔOßL0="œŽÊ¼û™LW›"0ÐqèoøW[{r]V™ª÷׉¨›°¾œ}hÑœŠ`£E{ܼ²ôžE‡¢³Ñ¢÷31ÇWyns~ú 9*^y×GI[; gQÛk†¨»ô0•¤ªú*‘˜`Þ lô&ŒuòEt•ƒ¿RÕ þ„èR ÄG½m8-ïz™(“i—'Ê»gß[î«nÊZíò½£11‹ênQ³©ë‹¶{Wµ—i¦Üü :- ;[aG°¦ I`$^ÄoÁØ€ -aä°&ÀÑÈŽ‚8¤Æý‘!ºðm°Ë {H%ŠñÈ18`+Gª>ô/}ôCѵ‰/ït•ä.ŒŒDð®»ð®]ÝÞÞuç™qÒúûÖ>§ë б-xp}-‡Æ__¿íµv ÷‰PÊ‚ÿD쟫·#ÚƒÒ7ÀþùŒ÷W @ˆâÈ«@D¸½&6`» º=±Íxdµ4a³1€÷ÖÑvè{$Ýl#fì?lTœZJ}ço(lª5:W"ÁÙDŒmìé- F,»¸òÒ‰]¸î7ÙjcÛn”M¡Œh¥;“B †GWôú_pZ¹E³dÎîBCªêÌfŸÐ:q Zé¿X©z©ó‰0P™‹N|F]ýÎö¸1¶wP)ÇÓ$ =—ý>ˆ'$[xNi:ÁÅ“ø9îjÿ{& %Â,Š“NŸU¡ª¤»Ž/O½šÇÏ;öÇÄpÄ•0)¦Âµ„K,–$vqŸ»Å¶fs©Žsž­ŽÌÛ &׿BY{Šø/÷ø endstream endobj 3250 0 obj << /Length 2216 /Filter /FlateDecode >> stream xÚÕYYoÜÈ~Ÿ_1O ðP}ð‚ŽlÙ^ÃØM4F°ð. Šlió˜åEÿ~«ºº9$EÉcÙ/yج.VWUut[³5_7·ðÀÁ¿Þ¬Ø_Þ¬þ±[]zþ:rã ëÝÍšKé†A´bß b¾ÞeëOŽ›­#ç¢HÚ–†¯ê´/UÕ%]^W@ò™/.øæ÷ÝO«×»Õ+n–;JänÌüuZ®>ýÎÖLþ´f®Œ£õf-×ÒVŽë«Õ?WìâZaÁ–öCWHŸ¾H:u[7›-÷\µ¿1ŸÁ)gm_ÚzL87}•¢ /6[O ?Br·¯[EÃÛü¿á;ª¢×ë`Î=Ž9pž¾UͶí‡"W‘裴³ëú&궇»Ù†$Æ=VÑàZÑóPúV@%¸tîòno¬ž»òìÒÇ~ô"7ÌêE•d/‹âýƳk/{q¶¾tl†‚v,~®Š{RÇzYÕ%7¦SaPZ+»}ÒiÏlÇxSÿ”I—î •úSdªÍt¾ —zã”4†1­°cîà÷Ð „GrG¶[¿·³¯ïÌ6v¢)¹y&ÅaŸ\«.O“‚(ð¹j6>s¦‹#Þæm7RÑ UFƒ´.1Òèeê6ͧ•ñbc »Ú<µCPHß4(d  ÈôöÕÇyˆ ù¦©Ë™¸¼:ôO ‹„9/èã¾Í«Û£À“à9‹‰[Õ][N‚eÀÝ0`yvÚ’Âõâ!`Áñ²¨»,¶ßãnž‡¡ëyƒªÀ”1÷$k¥ÅòÖʇË~«Ñ>”h°ºTñ™ÉqÀ¾p£HN#  ¬àû:GJ? œ!p¦‡& ZzÓѬûIàè©Æ|\ªæV¶¼ÂÐkTfZ'ò¢Nññ )Cß©j³Z{HRú¶G­tî_HÒ:C(›lò‘±‡¿1& utÉ,¼3 äÆÐ}~»/Œe"'dV3kSßj›¼£ã2u³—$}aä-TãׇõH;ó>yÅ®wÐ}mñÑ’StUÌZ\‘ÊÒ)`¿p$ÌfËGàN_ŠÖ2©…‰\$M¥aen8¸ë¦/ ùAä|¤œƒsF’”×–†:l—L+¶•©¸2ð*$‘´W,`i Y6íˆaÉãÜiiRû ¾!4Ø. `Ò¹Ä}Óˆ†i…/ÿKÊ!ý˜oHYlÆ'0ÂQ™Õçȶ`Úî×_>_¼¿úøáóû׿b¡óJ©Kv}bÞ’ D{6ò¡¡ê÷Ïë!âØ·‚°/ótìU¤£i¤sñöµVŸÈ‹øÖ-~닌<è b㊀¹6~´%TÒT= n® 3gbx´û#®Jkq7á´ÛË«¼Ì‹¤¡Ù”r|T¢–½  [}º„̪ˆ¬»9bW]’%]rb¿ˆ ¡s3@ ^ÒºèËÊ"Ï‹ôŸ¹a¤gà”µÖ)åYÐ {‘±¸Óê c.ãÁÀGàÆbÀô†Õ3ÔSƒÏ¾·ÛÝŠ˜Aµ–Sÿ_«4Á„|šËäò —¡„(dl  ¨[bÒÑȲ%i×'–M­t:Á½¦Fm,h]ô™î:ÇÌ6täÅÂåáÌWÇðxa:ê}^œêºØ"üÞ‹§G>qöêúÄ‚#KNX*ëmÝ7©×õ¿b‡o¤,ºÊÖýsÄ >P-/#+†,E€0áJîÙc¸ °n‰1†urRŽ»*àp~tíù9tÞçç™*T§Þo8àß=q¡O`k¡›Ië Ó ¯º†l„ñ_P¹³KبQncWzCÈeu]ªŒø&ZKÍßà̯Gð3#¥®õ6‡¨GýHæ`2Þ‘=ì—j–«F•5zŸº…–ÔŸÇ¢Ïù’•½%@ÆZ婟ˆ€áòÝîêÁùêØ’ÉÕ¢mÏ’[_ÿ›‘¯ƒ-pj÷–Á°µ]v~~Hò†<~ŠAì8à¤3Tþ¿-#vÃh€O_µù­îoô`/høpba-ν§FØß¿¶Ú,,呇ǽJ _Ú¾F „Æ­¦Qˆ<aûúÖiahÒ¡ÛÇ ì†˜Iº¾Á›2§"BÝàÞp¥¨žCH h˜&E}'¾µ[ú$$‚å“|ê¢Ö\r›IðA4ˆ.ë,¿¹Èô޶÷:{õr÷R÷`_Mxóxüwƒ,Éá [W>²PrSBzè~÷3QíeMÑÆ~†£ùçtž;‡Ì^3} ð|ÞÒ7 =žB³€lçGÁ Ï“}ÝÐã𬫜d¡ ÝÈÔ]ä’‡#KÎy¹2žA|zëÉ U ¿Ûë“§dƒß˜ƒÆÙb„è¬F÷—0©[GM.UyMÀœ=ô·íX ScLÒœ¹ÓXo£HßìNLná¬js™Ž_;§[±8ŠL¡qÍ)ŠæYjHÏEgß){uM{¯ƒªéµ5§Çáã¥8ý0óÿŽ9ÍïøDäO‡,#àá«îÔ#sC¢Eà!QwùQ0RÈÎÈŸç´¥øÜo°¥& {¤ mñéZG,þZƇ ˯eöǼÀ!ts£ßÆ"hߣÌU©ÆX¬O:ôÜmbæô\ð~œÓS0áJxÎüsda­¯ ³z³?“Ñ…úëþ£ o3:œð'‚ª$– endstream endobj 3269 0 obj << /Length 2336 /Filter /FlateDecode >> stream xÚ½Y[sœÈ~ׯ˜§SåÁ}¡žJRµÑJ^¯ËŽ#+åÒº\Z1³ÀX«¿çôi@hdï&yš¾έ¿þNó…ZÜ.>^0lÂó›“—çZľC¹ØÜ,¸”~Æ‹P+?Ô|±ÉWžË•ˆbï´Hš†š?Vé~kÊ6ióª„.Å”ð¸ËO›ŸOÎ6'¿žpø[ðDîk¦éöäê[d0ø3è#u¼¸·S· ÀTŽ ‹ÅåÉ¿NØHiR6œSVE¾ªSÖ‡nás¾\qƘנ’)è(bhgëõW“¶Uš¾<‡¯i'B+ _+ ß·’þJSFŸÔ~«nB^¶sR¸ÏDÜÍùûsBNOaL´ÍzýÓÖë/fɹ÷p¿äÊ%á7;MZs[Õ¹iȈ_˜bË•æ[œä+5Ô@Æ~ˆî WäO66]è_ž 6P ‚ áÑ—\ÒÊ ÓîkŒ®WRØÛ;CÌÜ,%ó’}ÑR‡)—œy5>AãŒú¿,ó þ M lr)YAR™û¦[wm—8•1ê[—P¯NW$¢Ú¡?Å›eÐ}¦Aÿtžéí…ŸüP¸4ÙÜåøÍPyõÁHÛx |]BåŠ}¯nhÂnnMí–çe–ƒ-yyKï÷wyzG›ØKQsŽé>_šBÞ†ÆÐÛ`”µÂ¥œ-vÐj©…['¼Cƒ7û2Å­Û`†ùË•ŒCp‰[YäMK-«,Êzd vîë  x ×»¤ÎÒ*³„×¼YƒØHx›ï?_œ¯æ4¿üxùùÍÙG 9Æ íHJ— (âÃåÙÅd.…Ùïcx|Þ¹D‚ÑÖ%Ø Ã¤àÖ0ìIŠ‚»ªir›t…›<›¹80u<^Àˆä^cÌä‹§ç¯7—¯ÿI/Ù4Q›©žC'…d áÃç[Ó~è”À¸ ¦O?BÍ ô°ñïÁR8°„œ¼*Ïi&Ø´M¾Ü7§øY4²})$V;L‚#`‡=0}ÍëvŸÏ “[DŠ»øn+t;íÐ 4‘Êø[¸ž]…[¶vóªn~îÜçòø8Ö€ÆxråÍ&áJÀƒ>*ø&½æ®Ú”£NÊ×4\ãQ?|^/9š†Í²´v¸hY“±`ÓÉiò2uyëž ¥tþ̃އ¹¬»¿3=Ñ µùuŸ×&›µýÂäÛ]a0Å;ÏËãn=dØÙoíS>þ¶”&)-§´RÓ”®M’Y€äèmN#L w á {‘f€ÆMŸîã)w ÆÔ£ÏMæ†X1èí{Là¤N¶7-äh3–7}ÎRýÃ( âØ,O—±òyçé¡òðÀÓgdÿŸk㎎ f €(gÆbmE¡¢aæDÂW JF ˆp{çeâ0@É ’‰ÆätB ¶žòµ~êü9ÍGYÌuè°M†šã©vx%ÅUýÐSíz•DòCkGü¹þ}ô½;[íæ9ê f ê{à™\ ™GúÄ\ðLÌ:¡2ô%&1ó¶f{Mç® Aÿ64@9Æ2·ªëœŒÞÔÕ–Æš +íYôV×ÿp§ö.q½T‰@WU7鍊cæø|fd@gCýåÔ J„žÉAhM3ˆ?ƒŒQ‰ò§[¢mUãÞæÄ[JšÑÑ&šåæØ-0gF³ßíŠÜ’%ê@ØbÖت˜”PLEšQ1…³: `¦5¢[92Å‚³ÁaÀm¹súöý…«pne*^Ì)lW¼¹üðÖUHÚUHÌ-YI&í¤Ÿv—&¡œO§@­v(Ëô¨,s³(ç4Öe«9êø½ÅÚOyc+mˆF•_Zm·.IçÎ[JP{H7C졲Èåüà8þ¯RýwU‹‰Ä…Û1Øêùä°àÆ4)©Q•X0K$äÈ"[RìÓ–ºÇVÚ%7î3;÷ÁnQ^Þ¾èjË}W½ºzªKððqL¿ßf—d±=…Æ´m„PÆÅd•ÌR78ƒpBÝžD)¼’Ð\®Ç¹ã.W–ŠY#xH¹ºz×UU¸–I“½Ýé,î h>ž8KðI@m¿ãf¶]›”.`ð%«èYV-5L‰ØÖ¹3IÝ‹ Cîw¸‡QÞ6™E–?Y¦®¦i áçq,"8,•üñT¹«˜ÍØøÞ)þ6q÷˜Ü åz¢5Sk®wDßUnrwˆþ™rƒZO<ÜÚCÇ”Sóªó/æ endstream endobj 3204 0 obj << /Type /ObjStm /N 100 /First 1005 /Length 2618 /Filter /FlateDecode >> stream xÚÍZÛn¹}×Wð1yá°.,’€±€/«¬‘0ÖÄ0Œ¹ôF)°dÄû÷9Å™ž•6ŠÕãíÕÈ04ìn6yºX—SE ÕRªHÕ¸±7$¨Tohȵy#‡²»c¡–~§J,ÞªÈúÃHˆÎ„Z˜9ã^Ãè&ÞCSÁdhI f˜‰¦$r­æ\C.X’ QÐPÌ•²·ðú§À*í -B °ð´ÎBþ¯úkÍ›£c»%÷{ŠÏ+“ÿá>¿áeo¡‹¦æ-|JÎæsà²`JŒ‚?µToQÐÄýuh¹¼\„LT!a¶ ÖG¦´jr¤ÞrÌŒ´ $ÅŒñšcN–Bîe@Ë e‚Lä#ãA&óQŒBÞg,gÿÎh5Ÿ—,dQ¢ËÚæ@—\|!§›õ~9–ÈßmÁ¤Ï+)˜ö§§ù· +Õ¿‹h­‘h(¤ý©ëUÌ!жþ´„b¥WC©¹÷k¡&vDåäý0@íëËÊ¡j__¯&þmg-]âY3æP -™?Å Í—Ò`´r¿§¡  ÷-õw¡‚Mš+7$ÞÔWÁ;7…ãFÙi¤å‚5'‡jºL¡Wͬ#@«ôUÀe«ÒÑ»þ§ÞIJÂÈßÁnú],¥Ü¿ ëé“¥Ê_cŠf+~ZIøWwÊH´SI|)ÖÞÕ‘Ñ‹J ;€an]ï ySËN›Ñì2,Þ,â‚ÅÇ YóÙ“'g‹7?ý{‹§—×g‹×ŸW×ýúO.þy¶xvùi3|zë!½[ü°x¹xþ–úÅÙâÇa}Þ’p,ÚRŠ ÚGY£{£s­è÷4¨}n÷e ¢§Wëf†ï­—=,ãÿp ¬g.f¥T¢[>)Üy‹ Ž'ãW‹NtþòÍë.çhͽxŠR"üÀ•˜©=¼¹ Ew2#ɳê1xæ‚At©œ£86¬^Ź‚——í4|¢Áÿ#ÂCNî—8""><ž } —B?¢mÌNÜ 6)<Ïû¥µ-ƒ0Ô´-+x»­NÕ6ºÞn—º®6£ù©K ±«A³ÀÚ´T˜"^âØÚ$Ä~úæ™QŠÖ¢dÃâ&'¡Suc„w¨Ç@‚ óJsÙ´&ii ßÓ ±Ò¦ÛÕjFAÂçƒR"B§X"GA’Q„ÓrÏÈý*#a€`Â5i‹ ½ßˆéüáKSø1,þú·¿‡> ¼@I9"þ^|þøñÝW:Kïlæ¦R'öÚ8µ¯BO@g“ÞÈNz´º§wó å[ž*‚O¯¼Ýûüò⺯ѹ:éÏ»×ÎáãŠìÇ8É.ûîô¼ZÛ_8E®²¿rZÎ4^€{#ýð Lµxõérýz€Î„Å«çañførÞÝVÃW`ng‹ç@4\\_y6Sý}×¶«ËÏŸÖÃÕ.ê÷þ,Ÿ]~ ]A A´twòjù o{Tv»r_aâž+:žž*öï?«'ŠûFmß 46hlðØ±±ÙDo¼›+ ŒôqY׺:¬îLå$6Ä(j=@òÈSÛQæe0¹EtÏz£ôŒîKg¬±ž A^] ™ƒI!Ù¯pÏÅë-ð'Z1D ꥗$'3ŠÀ4«ˆ”(J-< O-ˆhÇáy¿,Z®¹é°Yò°”R5Ûå°Î-7«[šŸ•f†Î›¬4#.©ž€”RL } •¯à¤f1{ qÔãèËjµ,+±õÚÖy(M7Ì:l×CÍ 'W—3ŠÉrñ¢‘gËNº<‰I¤S˜)l>ŸÜ<‘ðxªê•L¤úÒèáMBÖP½ØÑõ@îQ×É*ö¼~¤~U‘ˆð0ˆI‘ß®Ó/ûNf…·:+|^ËîcÈäžÞVXÜÂòÔÞÉb¹‹qÞê-Wƒ—%ªÒÄ¡Ýe"÷»§7ƒj½ä½À?mlÑ[º÷#Ý@²ôx†ìwâØ\à›¦a—Ÿ¶ãù)ÈWÓz'%ýÿÔuv²šÓÿ’U­ßLV½ú±£”ù@2GÖÊ#5•‘šÊHMe|KÆ·d¤¦2¾.#é•‘ôÊHzeYÇ‘uYÇ‘uYÇ‘uYge¿‡â4¥zp2Ýâ³=b¯hY£‹‡à}ßÇ Ž„#bÞ@çïâ[M#„2ÄéZh2â&²®(€n’a˜õ¶òªr¦ÕÔdΚeýÑš“o»!ðÍ9ƒV é?9äzÀ£r«9žQs³ê[²`Ù^„‡—¥#J„–tSZ*[Ý&É2peðm[ÃÑٺȜ|Ö‹ÏÀžA™8µÍ2YÉËL†eÜÔõ¸— ˜Ëœé8«ïiïð Cÿ<98o®*È]`7&ëm[åš–šÚ ilYç9-ÆËDŽp¸æ^=:0ŒzÅyÉ›ÌCJH6\ nsÙ$ÙÎ+àâI´ï¸ù–nPß)O°¬Ç˜ ŠÛ\õ_Õ ìEÚ o*ü+KtB1"c뱈Îï{¹¾"eÃTÑ xHUA·ý ð[Ê#”1yÒÑÍ!–2rL.±ŸAdåÇ(a¾ˆh¤ÁìúYŠÔPa†ÓvæÝ t¿ÕOìñx!++OîåvA„#üzᪧ[Må5ŒÒëhý7– âG¥ ^ù[ɆEª4¾;ÎÌ;ÉÅ÷ À ‚žomCiyÅÇ”œàd VÇîOE².Gáù¥€z&­íˆ’ÈÍΊNUêëùã×{*êEÛrOoñhâJÐ8¶Ò&Ž-ˆ=šäžÞlø¸EkÈ©Œ'ŽÍîCîƒM^×µ¾Ëow–}î™òÝ|·{Ãwùa3R|£Ö‰c“ú¹›T¹Uê¸QÐøE±äv}äFIä› »÷o>¬|{áCǪD‹6#l,FØXŒ°±ac1¢ŒÅ;4f­JˆµÎíö`^v/@qÜ؃î^ÀÃ4hFöDÕÃ( ßó+Ó+_ëæäg‹<¨!` B€%q?Ї=-_þþËu—!ìUÒ2•\s]orZm—²Y.7–ÖiIë4§÷&¸&ê;?­ìUxsÞ9º‡bVPpJATñƒ@Å™žžZ¶™™y}8q?Ra¸R½–¢È ŽÚý|^†#q¹q^12µÓž—Ѿy\¦óÚzšÍa8‡\êI“ú±¬c ÍË’Ì‚qíê£Hùýà5AÏKk¿âD‘òžN”nvö½BBÈÎ&=ýzïÃnÕc™Ø[ èÉ[6wö6ߦœÚ[¹Þ Jÿa×jø endstream endobj 3287 0 obj << /Length 2807 /Filter /FlateDecode >> stream xÚ½ZësÛ¸ÿî¿B3i¨™ˆÁƒIO{æáÔw×\›¸ý’ËÜÐl±‘HIâÿ¾»X€™”\'×/",–Àb÷·ˆÍnglööìåÕÙ‹‹HÍ’0ÕZήnf\Ê0ÖÉL§*Ô)Ÿ]­f!ç 'Á«MV×Ô|].w[S4Y“—t)¦DÀðÓÕ÷go®Î~=ãð6ã=ŽZŠ‹Ë«!ÀÏ@Wp#C”+jT¦ÙUˆAAA°˜¼¢&È_üwÆž€e‡ZD^,Qî@­,k\¸cä`ñŽ E`%Ï©gUî®Qž«È®V*ˬqoyá[V—%@‘™K|³4‘† ;„£6 àÈ}jÌøu˜F‡Ú<Íèù`¯ËrÒy ø@‘B ÀÝÕlñW;Ýï» ô­îÿ€r#Ø£ Á´áw5b32 #žtÖ7…—ï,V~iz¸I´l.Ë¢nKO ¨CÕú‚ŠÇ!(?… ü8¶DI»ý¼Xþ˜×Íf‚1$a@6°¿e‘œØ²JCÉGã豋Žì»S|¦Ð´]‰Õ‘/“»–T®=(ÔÞ†`ÿJ·Ÿ¬Mf•m‰P¸¾°írûÒÜæE{²Âú3±1v[K4cÏæ ÞŒ­‹X?ã%P40¤÷„ñÊ34 „z5@t΋Ž~oìe·Ô½_çË5ñÞfÍrЇý=ê‡ßkr!cN0‚Ý«’È (ê²l[Dî©è€7!'=iÇ–8Xóqhbh4‡BÛOüƒ­¬ßÖ€£h¨‡üŸþGiÇFÃÞ(lDq4ìÕ¡æz$ìíxÿŸ§È8åKÄ1Æ@Ng6äk#s÷MÃbáD"k.É·œc™’_*¯\ÍÀ¾xªVóïyÖcpàû{šè<¿ ¥nî[Õ‰¤hs7§)Ý\À™å:<¾ç(a!8|úžO¨ ðåÇù>QÆVÁ1€ï£’/ŠrZy¨ ?‰ ÙÓ\y‡Ò¢Ê#Õñ«4®ý ´1ŠIáy ‘j#Px¥ƒ¦U:xºÝmv+C¯[~NRB»ÎÝÌm†SîéåÚ ZÓ 7æ¦q¼½kîAñYðX½~ªðNh¤ý dˆß^­ÆV­í¢o¢Ö2„–QJ¦»¨f¹¾˜G*€_Øcä̺‹·íâœÇ)ÿW-{\ùû˾DeOãà™Söy†±ãnC4ºÏ7j]zB\»Ú-ÌpñÕi9´(KÑ| Ì[D,@ÕM5™•#˜Œàa„ÊnG~‚¹Õ>¯ÍX“7Þ‰øï:àÖÖÏ-—»ª2…›pWÖ9–ÔkQO=‘ŠO ’¿½E=ñˆy¦¨Ú\¸”ÞaYJY}”`ÔŠ¯û }tvwg*êȪrg3]hÓañ+,A\þD½”Vþ‚bõ‹ºá6’ÝìŠ% i\6Ôy¨[‚ bñ“þ{½’E=¦?´©z‘¾z"â²ýº¬ ѸÂ$t¶±;v÷^”+tHgÐÑ~ïÀω]»T½àSf—"gò#ÛÃl2Ú¼@»uÎef× }ËuFÇÖ[ÕÔgStÊ%£~ÎU(„î=FêQ˜&]=ã/Ïr—Á0³ç$Ü9 'Ð:ð—b¢V†Œ¼ÀÈW‚E+c”Ä‚ HØA­3{[Ér}éÂÑ¢<tú"Ö ²@ÍöÕz\äÍ›ªòA®'nÖU‰9õž§­yÿpृ•±\³Ý¦Á§/8âÛÈ{pŒÝyƒY-äáËèŽÜc¡ãîžÍÚÖ'QiÆQG@œcYçÀ_ö² GÛ“ Ò*t`x…Ï7¥Y+ %µ²{ÎG\Õ4òUS ¹~ÒNÝøtóF7:²AÚö­G :¦­Ã0åíZ»ëö7XqÂòÎ4àðÊ5œŠ%A-#FÞw#Ý6sçnßò†Æë’Þ©v õPvÝâQ­™<ÙIßÛÊýeN6QߌÝýRïG$‹’ >—•qg †NU¤¤’dÊE[:(5ñ$ #Õ–¬>æÅ&/ ÈVãWóªÙe›OÇï‡Á(ª¥EÏÓ @l³[ãËëÙªªÝ'¶»÷른t1t¿^ŸuÓ’ø,»¼þd;.Ê=±ZýÇwecÎç Ź…n©¹ÓOáõ“Ã&–¦®3{ÿ`«a0hÍÆ–éžhõ‘·®›úD«’ô6Û¸‘H° öDRÛõ"²Å˜F^øˆ8 îœØvKÆnP™šZ®Ÿ¶‚éaßÄêöÎ!uûÂV{¶µ1ÔèŸrê x>8×Ô«UÜ*í\{£2šºK"p­á¤G8)ZMÀven!ؼLÆw wªÁ š:Û™ÛuVa¶±+·U}|¿6~¤ðbÐ"Á“ipîüÈdÀJ¢6WåíÅqêu¨IÊF=tÞâ.ô´7B¾þš¹î¼|ïZi:ë EÂñ¶ÎfÚË^ÜôwÊÞ›oŸðöÞ¬Úðãèz:0»DÖo¾Œ^6E"d,>vmºòØõk¦ñðŠd Ô7W¹¥â˜+1âÉcP¼ 1}ÔŽ”¦ë¿oÿF.4Yw]ìnƒwcW°*úïÃàªàÐ0»…¯ðirK‡B°‘ÍÀ/¾üðê¯?¾9q¶w«ýÀ³ê©`í€bµqT{ÔËÌ™Tk“s½ŸÈ}‚Œ7±^8‡šÝA+Xã´RÄdCxå“‚¨…VhŽC«âZ1óqé0X­ºÿbøÏîî¯h…öÝe–ª)t>2x±÷*QìÃDí/×VÜ W4#®·=‘Áy6.–lC.èÎn¬˜­¿Å‘›$¡Ž³wnÐ=À7êBT}±wmìmò«iteꥻ6Ó‘{o+yŠH½¯À³àØ-ÆÉ+0ïX—›ãèÀ"Pxãpø" ™ *"h2)o'œ¬ãlãÙ‹ú¶3zŸÃOÿ—¿1ùYéP`­¦W¹HÒPj'£·¦0UÖB²®®æ) ¼‰ý=s&Â9=ÊõÄçLóÔÛ“èìɃ˜ y}åÂþ‹ËJåþÁ/0¶ÿ_ª%8Ú endstream endobj 3307 0 obj << /Length 2318 /Filter /FlateDecode >> stream xÚÍY[oÛÆ~÷¯Ð[)Àbv—wã´@ê8©›“øœXE¦A@Kk‰¨D*¼Äñùõgfg–7S¶‹ö¡w—ÃÙÙ¹|3³³ÍLÌÞœü¸~³5¼üy&\/‰gw†t?ó| •øánv}òßÑS‰)1ƒÈU^@b® ÍÒåE½Íò‹Ò‡…ŒÜPùDõëËï/ß¿9›/·èÔàôíéê²Ñ ³ý)PVÒ‡H9Á TžÊ}üš•àí»Oiv¡BÔP0ÔT‹Æ%ŠÛ[ö@J 8¬ZµÀ¤Ô›´\ï´Í‰Ó›pÂÁ×ç/ÿ}Ñy -þvñኆÛˆîQ%Ó´€YMÉ빇´¬Š¨o‡T!{f@£v½»[8ÀF@Óšh¸¸€Ñû«% ö€‰Î:»½ç¶,HköþfhöÅTšB_ˆƒ)_0b„>‚úCs‡Â•"~ÚÜ BÏÚ¸1Oº«¬µ$:¼´J­ü±ßW*,÷ÔÌ)Uàè†?sK§ª‹ÒàxÌvˆƒn—)ï7vŽ¡¦‹â#å+¥Áß;A}é+Wˆè‹ú2Œ N¢¾ÏAýæÅ’>ßêj÷ªÙ÷?‘ÊyPLޤ¼½GÛÞÿtqþöú—wÏ?뚈žÈÔï«—Ë—-žü-«êj´/¬Š²„èžr™_KÜ9=L5å'j)ß «mmgHÚ g\ÛÑy?¯¶¨;l-Tâ, x"l_ì;dL"‹ ₟Ftšó¼A9Ó»¬ÞÒˆê8u¸’ó×Í’V‡MÝOÖ@P "ª+}Ñc1‰g-_¥¦mŒ/MóïjšÜ*3ñ:sÒ;´>©”UÔà 9,êba¼Ì²ÖåÄåñ6 >7nߩ߸>Ha\PBŽNׯì}À—ª†tæRÞZràÙÊ(ú•3LÓÇš7 沤Ü>ìÛ|ÖŒ­¦iÿ[ÚðzGÝ¢ïÜmun÷ÖÔåx¤>XÊ z¢õ'­÷txfù(¬· ˆŸ@<­Ä˜’ SU½>;;¤Y9…¡ž+U<Âá÷Äâ ×”ŸŒa?7QÍû=‡˜ü»d~Õ%dþ'!Ó¬­ ð“GëQ •[”$CåP9Â>jª NŸÇs$ê‡Måe.°„Јà´ËȰދ‚jÿóMв ×wîmþG BmzgÌšô²w/>YûL]Ý à:ê™8a‡”=¸F’®aÆp=Òl·ß––] à¨É³šF”TäÐ6È•Ji1ŠÈ‰sc¼*eEU’-a¾PêëŸÞë/ÐÊT£:ÝÁd:N•|˜FÉšê‰k$$˜ò"†á–ùèø·Ù¸#‚ÚÌܼ˜¼<<-¾µ§ú7H8èªôƒ‚¢3tììÓÜ\#¥;š÷|/d°1¹‹WÖºN³]E÷&¾¶l[ŸÞ}¯¤Üï<‚UÐ+/|¬fÔyˆUGPJº¾JF(5,>¥ˆv«;}Û8™Êø4Ë+Íu›LØËqy¯÷7š;6n ÑÕ®Þò©s®ÏñònÔˆACX‘P‘ ]½uilá8µt†€†Ã†"iŠ˜Š–©¤‡ñ,û݃8Œ“^b3‡þŸ(G ?>RmO}ì›û¬ªOGçB2ÙØë{Q>é÷Ywm=(YÿB>UÏ)ûïÊìï©úyw>çH-]•5RË ´ä¶Kx:Sx¾ß¡çÛ{TXí.m‘¤+í`Æ™¢¾K~ÙZa‹jgÏËí_Fµ¸³¡‘Ç\"‰±¢[5;si[ÑJ·IÓÅÌqŠ#w¡ öRô\ëjŧ»^ݸgÂõ]bÍ”ôQ6é£,½Â\L˜:clåO'N9°·Eæ'ÍmÛº^Ýz¾ÓÖ¥²ò_÷D $ð¤^míÔ3ù—”‡n “?ó—•ýG-tUúý¿ªâÄõBÖÄë2m¡à’z9O^À™É»”O$V”P¯Dg"8à ]JtªKt6Âùȶè3ÿØ¥ÝóÿTùøøÿx“ endstream endobj 3326 0 obj << /Length 1904 /Filter /FlateDecode >> stream xÚÕXmoÛ6þî_!tÀ µJê]Á6 M“6ö–x°¶(‰±‰É’kIM²_¿;)KŠ’e÷Å&Çãñ9‡9ïoÖ‹Wçaä¤^dz¾qxxIœ:qyqÆuá|pý`¹ò“Ô=-EÓÐðmw;Yµ¢Uu¤ˆE¾Ëýhùiýãâl½ø²àpsø@"÷29ùnñás XüÑa^¥Î­fÝ9A¬7–ÎÕâ·3j2ÏpˆVéxNé(ñü ²J{@ö=Tž3ÆÜ¯K?tkU,W ÝÓÓŒùmsròþíï''·ÕÊÓz‡w"†,bËUÌR7¯«Æ¯Úƒª64þïúê< šø~è%Zkò¡Àï‰?Šœ øýùW<åã À:‘QýÅ;YɃÊñxæ­^ÐöñÅYä%,µÇÊ\;ÀîÕ¹Ïì+f^è'ÎÊ÷½€‡´ëöŠ\¸?¹VÐ_¯;NšÖ0UOé+žx±od¼†+F±[È›eÀ\Ñ•-Àæ‘+ÊNâ4qõj} µv+i0NÕûFéý²"2z„LCì9‘^ƒÉÕQÖ m-¨©iµkä¡¡a.ŒÔ}דè/6pž¹ÜÖe‡j³ˆ²¤Q[›ÿ­2AqÓU¹‰˜©Ê®Ke7×…\‚vyië‰kÙØI=šÃ‡hæÙ,šß«¦E[§î=1DGDóôˆh`˜E4¸™Ç±…ØÖåÌJ‡uxa˜<kRïž&¤Å,ÄÃÄ‹"þ|ˆCšy&Âí]}—gÂ< &0ƒhs\ïaŽ sŒ`Ž„ îÀÉ30Gòû‘¶Hyˆu}LMR Ö‘¤±Žuü?°=Àºï§S¬ÿᨚç!棺»^&n)g€Í¡X$aŸªá F.|ˆAPŽÊÒ‚Ìs–ìÅ}PU©*ù’àýUÚN”Ÿþ¹!È‘-Ùö–¥Á›?Ï.¡á_¨³ÄŸûÛ%GÈ´0À£ö•Å£vÕNl¤q"Zª‘†ëM(+r+ Ò'÷Ö7ÖõVÃû½´¶™Îy/% ܽíNƒÈàM†®¨ "éóh(QÂ]+«@× ª/‰Ù@F·JØEaàí±Ý¾-i¨çdQØg- ´9‹ÎD Â=SÂÂØÝJQ1€û*‚¿5­$n¥¥Ýx³¥l +¤.’Ŷ²Ì[Z¹éÚî`$ Y¨“X’Ít€s_Ó[cä5´ZÈ&7k×òñ‹€¸Fš`îB CÔ·¢4º‚T@ŠÃ:z‰t{œž_¬¯.~¡Õ$в[r@ ZƒùG÷ëmâMRšÍÇɺi}š*“òEm±Xհ㑜ýÇëËŸ/~~w‚Pãîêάî@°öTÅV(Ð2À¸-¡ õU0/7º‚Óá.+Ä>É+\¼$càIä±pØ«1í'Ô¡*TØ,Hmž{ZB=)i`/}ؘ¦úòÝÂù@̪ݫ;”ö 4j4QTkû¬|–y1 ÇHèSŠÐ CnJtÀ=ˆqÒ ]*þÆ€”,=,•CÝ?ï®Ue^ HØi€`¢…×fpmø›.ßҨ݊–DöªèÓg±\Z™Îd·®ÔöÄ ùÒ)OL×~üƒÔƒqµ¯µè”ÂhÔ èPKÍÈà&`ž ‹¡‘ åéóF¶ŸÕnóy5§,ªôÕÆÂúø1É@DÝšA![I.ÜC¢— ¸Â4&Hkn­.ŒÕÆèBë<ï6eAr”;Ðf&!iQàJà¿%â1Nò\µÍÙ].÷6bPtgƒóRªÝ¾”ؿˢo%¼~„öåÿW¨ÓS^š¯*ž+åÀÙ]K eþXÒ}žÁó1°!ûÝLPCÕp¬g„$^–ô½ÃOuØôœž‰Õ0òx’Ž­¶¶½@1y…Oëõ±]ËOwªóf²Ñ}&V•Þ7‡z7é9HhY(úÞMXÊædì{IŠxäE™ûGß|ä&ȧXó—!ÍíxQâ®øóvçww5™àŸ$ÊÌ£Ä(¹<Òc¯iŸT“Æò¢Z>ä2´V©Š3[£ÖËžT¹º5†…á%< È‚²ÊåS~Æv7ôb«@5 ]F麈kiæ6ͺº¡uìñ‰‚9N6mC³QM%V“k´0ÑÒȼ¥`¤Ø» ÚxoÔ1ˆæßR€qô0šÆqùd8¾nr¥ÖKŽ=¸í&×=çái1oTõ¤ŠªIãnS’¹Á7ªÊË®3¡^’e“t0’…!l×D„ëiVɼ4MGaúÀ—>b‡AQmí‹°ˆ0ÊJl0|)†w39à!ª}f+ôÕh7É8šg?åqƽˆgÿåSžýÒÃã<‡íÒÌ bc{ýê=f"›ÓÖË °nnü“0ãœþ}†EMINXtÂ3kÿ¡hf;,ú’©ƒåÞôsÕôúÿ™rQ° endstream endobj 3341 0 obj << /Length 1548 /Filter /FlateDecode >> stream xÚ½XÛŽÛ6}÷W)°€˜Ë‹HŠFS ÙKº´‰û´Éƒ,3^¶äHrwó÷^dK–ÖÙfÓ>‰"GÃáÌ™áá`ààíäÍ|r~ó AJÌ¿„1$EÅ‘P$˜/ƒÛ²hJe^¬ÓºvÃË2ÛmtѤM^0Å1§!¡"ú<7¹šO¾Nì€ÒÑHÂ<È6“ÛÏ8XÂâ»#¦’àÞŠnƒ(1®ƒ“?'Ø›ùس݂2Œ‚w;| ªV 3´Kíg~âüfCipY†-åfh‡¦~§ig+çC1âC.$2q>üc·ˆd¸Î3pMÂ÷z³Ð•_ïŠÌ¸±¶Î;>äù5Å]åÉD‚%)ÉîO”ò£oµÕÊ›ýáí$¸r.›"¢8ü;¢2±þ„9ÎÀ¼Æ…ž$Ó óbåæÎ–yºz鯋²\{É| yÕ8áEä‘3r gÄBIsF8U,˜’©8vg¼zÈôÖ%2Ìš²Š8aϘÄá¶å˜>D ‡ºv"ÍvƒºéXk&^\纪ª²šES.h¸÷†[ÚûÄ/¿pÓ ýÅìRVúx›­ÎrcEfÎçšH÷ñßèºNW:;óAaGš2…p pãm"#GÁ‡—ºIÁ½K¡K]gUîüÓuðxÀ&#Á•Ó¨ÍA:~UØ”ð¿.´¿«Jcó½_Ï¿¸õ]mÐkf*ýu§këOxs*~ÑÆÀÊ+K7ÊR¿X”~¦ÝpW,uU7e¹ti›DCIáÞ=7p/„ðÁ€G¾wà~]gyîB.Lr¬GsÐvRÍ›¼8©ä)AÇcñ¦>Þ&«Å½ ùÙ>ò½é~aî%[oï=’Þn{|]\(7õlöûå_³F¡pAማ#ß•ó³µRVˆ°­(0 'p•ÆgÆæókÉ:Ža˜ÀeƒÉÖT¨5Ááê¥íùD%m%m)ê›ÒNËx@®Z9/¾r_Á’‚¯¨°ª%âIÒª§ë±ý%RJµBƒ‚w”S¸e)Il5gdXéb0¥[éT:#bKô*™ð•Î ÛJ'â¸[éÌR·Ò™ånº[éúÛ +]ÇÃJ7 À㊵RÁÍJ9Â1ówfDã0­Òn ÚŽßãú‡«nѬF ‚ž&( "†¥£ûR¬ŒbÌkâ„bw¡é뵤ÅÞ¹{^!áÒî۰¹ÖfÚÊ×­Çœ§(’Š<×”>ÅQÅs=S^{Jq€ž}7eÝäþ½ßI£ã#’ðgý€c g§õþ ’þ ÅITa$yüs$D¨ŒáFé•Ö'!陦Œ"©k‹a0){Vj •§®Û¶|6}4Ù—û; ð;<àúfþq6³[W‹²ÖïËå(¡È}#Uk¿—½Àá Œ= ¾?î©Ó(3z9ç?¾ÏP<ÛV©`ˆ Ïbæw>XË£þ¦üeæ£× ;4µ÷–¼ø—•.Ì¥Œ®±,Ûh¨ÊMû¹î*]¯IÞ÷C¦B­u=ëG~߻ŇÛrлùN XWãÝõÍ]ëòäI_gñNbÀ£,³™¶†”X!æ ­-œ< õeÚ¤ÆG? `ø…„¼ÐE¦ŸÒ¦$ãm ‹]›OÛ5˜÷n›ï¶M§oS`ÔiS€ef•NÚJ/¶_olÒw—|#×±À Þm·Nàg‹k!ÿ߯XQæ<˜—6.#ôÒÈK$¨—ÿ%/²õné9&\ÌIÀ?pÌ_GtI$÷l"æ@t¤…*”èìoN∨žÒÛåËçMaj ­’Mj⸿†M®¸„ÙŒ$ÜBݶysØÙSÑ.@F ¶€õoþ(µ?¼t "î–‘D!Öv^oMêÒ¾- óHas_Ø—÷©?!îI1¤¢›‘3ÌgDµ^ C/ø?%-þ‡šEù·•I¹PÇÇÿ:Þp endstream endobj 3323 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1HDU_1_1InvalidExtensionType.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3348 0 R /BBox [0 0 500 189.57] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3349 0 R >>/Font << /R8 3350 0 R>> >> /Length 296 /Filter /FlateDecode >> stream xœ•‘ËNÃ@ E÷þ /…ñ<3É’RËBøTújB«DPþO2-èEŠíɵç\g‡L 9>)Îk¸~ÊpÕã v ú˜Â¼Æ›R&ÖÁb¹„¡Q¡2d¬—È£±¬áb2YV][·/EñØ|¾nª·é¾[4mõÑ”ßÛÅeùÓf =ùœ ~ÉÅ÷°ÃÃÔC Ž9&›!qÆP`'å8‚5ØàedÄñqjxÆÙ?)&;TÚ‘µnäèNÞÓý|±íÄÉÑÅnÅ>‹‰þP&ʳ"«{îQ~”­Á„<“ß#–„b0ÒoÛ)Ùן;µ;YN*3eœÉ¼~ g[šTþ"Ä–ÑQTX&¶˜{¦à"³¶.§ÜŸžŒ§¬ay%+úöjƒþ endstream endobj 3352 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2544 >> stream xœ–{PSWÇï5pï±eiWŒ’U¶Jj}UK±±¢Ög-‚ RA% oIH.&ä$á•$RyEªQ»TñY»µ®úªØÚ©m÷AÛéï:ÇÙêLwgwöûϽçÌùþ~ç÷=÷ó;42†¢i:,1[žUðb‚R¾EüžÎO¢ùÉcø)"L“. å¥aá°–ÉON' 5OAñÓTMǬJv=Ÿ”üÂŒ3—(sKó³wì,Œš7gîü¨ÌÒ¨Ç3QñYÙ;QÏ /ÅY9Ê\y–¢pm¶<³¨ j4nTBÖŽ¢œ-ùÿ:ö«Úÿ§OQT¤B¹$7~鲂·VoQ•nÝ–µ=;1)g!E½M­£¦QïPÑÔ³ÔsT"•D½@M§’©7©T*O-¥–QË©•Ôêej 5‰’µ¢B¨"ê$ý}xÌÔ1n-²ˆ>Ybù.ÔÆLa¼ÌÏl!{ÍAUèêØec¹±ÇÀÎWa/>E߆øaQóØéa6ÚÕn܃à{üh«k?F'ü9+d$‹5¯Ô©S«¶yØÔ½ËrA)û }hñ»9e«–Ko±[²*[Ÿ¬‘”±uv‡µ£‡&UF¬¬e¾|crü¼ºó>4ÞÏ“‰sg)™üÍs0Æ}÷È rö2^V®ŸA¦fó[qÛ¶ûË”ƒêËøOèÛ W¤ágkûùÑ€D)>Y\E¡ÅŒ±X­+ÁXc×Ô¤îÝXŸ†cñ+9k—®ÉšÉD2@B&Ã&ýÛÀsÒÒæ7ãß’¿‚%«ñz_F_≜ûB¬øDŸ,ÞvHØíQzW³'rs>üܸëÃPôåÄw ‘‹ÁÔÌÄYuNËEsÙÕ®ž6îÈ$xòkhxzéWÓ×§$¦Ën°F[RñÎòÄ2‰šuXk±£u\šìÑNoÐsëŒ(â(Ìâ»Å]C=×N,"c¥)dLjÜ’´„ž.aËÛq/¯—þq„g€5M€^þiÿ…¡OÎö~…¿Ç÷7ןZþ¡{ÈŒH›Š¹e¨ßcCÖ±–7uº8‚þ¢¸ÛYäÏÕÙÇ¥7“/À„Âä‰Ì˜…i)Šwtó1Úªsdá<`œ; Ž>ú¯#"þ¼.V2›~¿9ŸLµ \fªÝbÅï#À0‹6»uîXÔšBF·P«‹1#2 òkWuuF0IÈÓìÓ6ÍCï1U05ôQ‡Š¹jr•Û–33/)×.©D*¾— ç?ú·   ¢¬þµ2m¬ =*j·wXLþ¢KYËËœ~‘ ©`¿—]d×6Z®"P@4û…¥IëZ(¸)áZu>~AÛ¸?\€ØË…Ò_‚OÅ•0%TϘö˜ªŒØˆ9›¾¦°¾°¦£×’—¬l½·Ivf×Á’½8G’¾[™²lgßH¡TM渙:gµÍ…QDJv™Û‚fÛ÷Uú&ÝüøÌå ö¿Ý##ÔEå^·Kw·œîÚ5·MÝÜ  /‹ žß ~ã4ÛMÒwbäÙŠ2½Á̤Êj¶›ÑGä$Ó•qöDŸp¿´¼¡(O]Q„%Û5íËàý¿³Á#âƒãýÐ㣡‘wt{™¸ZËrA& ‘d¡4ú׃¥éö²gøu¬õªÓy£yI·Š½atrÖňl C°á¿ÍŒxT%¾Ä¾‡c|4°#A†|èebmÚFóµ ¦íºÛu×.¬üPÅÞ35pOâ">fZÿšæó„m™† Ty8¬Âœ™«äž'®Èhp«±C‚›êÚ‘‡¤hØ>s70 ÂÈ¡H›Ñn°ïƒÝd«¬6Ûq-®s{za<\‹ì¼T[×e¬ãN'œá#ýã†îÂów§ùµ—iu& F…†Æ~$³xÐÔ©ñõdx×aôââÔÕ…Þ¿¿Å×Zm©±ÔÉÌK=®CíÖC'ÚIÒµ,yqmiEFVQ‰6ïL_ÝŸ~¾ÿpËàyi„{CMsÉáIp‹ë`Ÿ0Efßc¹I_¬Ë׿î)Æh§òÀ²jÖz®¿ÆF¿€ø% Ýà]“ƒKšrúÉxH‰¼ aÞöNÏ~›ÄCæiØ.³ÓˆµX§+ÊÏ1u¥å%{\‘š¶ ·¹ZÕmhˆâq×vY…:mÕ8Ø.ÜTÞö€L‹$ ‰•gr†]U D{X…¾Æ]Wënl‘Ý‚§¾&QÕF› $¸ÔP¹Ëªb, *¸˜ ËŽá'\ xŸÐáý"á~8]L4*æ†ÉSb›&tC/7f•És7­Ê‰Ãñ8ÕŸ{¬4`èÅ#¸: ¹ÛAÈõ¨Ø[ñ÷ K߉…7€¾~ðÒûRÿǾ ‘µýÔÐxÇF«BÿeXÔ2ôfµ]ï´ !þ[iKQo×Ç Ç¨–m°º¬õœZ¡Óç±–$­vMep©D`}D"˜Ì§‹åùù»ïåwvïówuçí“Ë ù±pm#¿Á ›™¾'î>Ùg »UöŠú';ãIh endstream endobj 3358 0 obj << /Length 1506 /Filter /FlateDecode >> stream xÚ½X]oÛ6}÷¯: ™á‡H‰Æ:`Kš.Zl­·—¶ŠÌ8BmË•ä%ý÷»—¤dIVÒ¬éö$Z¤./Ï=<<4 V ^N~]LN/"$D+%‚ÅuÀ„ ±J¥%Qš‹eð>äb:ãqž­ÓªrÍó"Ûo̶Në¼ØÂ+I%§¯&/“Ï3Ѐu"2¢© ²ÍäýG,¡óU@‰ÐIpk‡nÁP†®ƒw“?&Ô§yß³™‚sM¨ŽÅ(‘nŠÏ"¨bÜŽè4mWóqz¹á"8/`ÆÎœ„Klâã0Ó¬™j֙ˡ¨FP”*&*NŠ¿ï¯¦q¸Î3€‹'ák³¹2¥k_ì·YYø†Ë<½à´\‘8‰1¢cébà\¾ÅtË•ÏûíËIð~&¥ /·SNÿ§\†é:_^nÒ•9Oët1eðþËÎôÂÀGXíTÒ Ò«±øqXÕ7“a¾]96œ,ótõ£k_ÅÚµª| yîï Da÷,Pư@ªtŒ „…q-‚‹ˆŽ"·Àw™Ùy®ifuQN% qN-Â] Á)¿› šÊ ©oŒkô³Õ4|v‘×~Ћ²,Êùt&”"ã 4®uȹƹŠÒõY]ó™ë¾2~€9dK‡å΀8ZzNT;“å˜zæ Û˜ªÂP.qPõh8 ÙLxp’(ÙìU"$a°bJixnꪰt4;7UVæÆnƒyD”Ô.¢Á…à" ëÂ=¯Œÿ}S˜ó­ïϯÝs_!ñUšÏ{S!ìBˆ0+MzˆVøÑióµC³ÛU[ܱµ-jרö»âѰÆÚ|°‚_Z Ap¤‡%Cë*/¦0þÐÒ1T¹Gõ ·B¹·$´Àž´øö^÷E²ÇüÞÜ-âIo¶¶Šgg.ûùü·ó?çs ªà@TÖnaÐàvú%ÈÓGÄdµÝ〦Ôa³Óá%¬ÇmhŸà N/bÑIP8&¨€ØÄA¦Œ† vhQÎÓÍ@+Çáf<‰ S¼_;§#Òçî+èÒðW6rLd’4¡¡flú˜hÝÎ$Eƒ-0ƒã³ÄЬ`Ç$މˆi±$ íža× l6EêXƒp€Ó lu4¶„?¼ÙàîÑÕ &›‘­ñu %íP‹@Õ´À$¡‘ð'ޔî.Ó©AHñ¨üÇ?îuØ7j0ƒšw4Š(¦Ž F'öÿXc`* 0 w¥êǵ–Ú­+ˆáÔïVŒ[ÔîǕ׺ûÀӜĚ=5•¾AÑŠD°5{©üâ=Á€l˜á¶¨ê|@¾“ŽJX"ŸôW NÁZ=÷™ô_F&å ±Œ¾“TBÀsõøQLzb*£Lêæ‚Þ™ÒÚJ*ï=wÊÖ}6Ù·7°ô4bqÐÅåâÝ|nØ”WEe^ËQKœû‹Peü\öЇ'ò8ú~;R³ ãJ)¿?}Ÿx¤¶MPÅíÓwq㋵Ü/áÕÁqcõošd‡Ké­u:þÇÊlñСají¡P›æsÓ º^;ûÚ^hP¡Ö¦š÷+ßÞ¼$‘®ݼü= œšµš7ýN<{A$Ü×ÙÝÝ}^•!y´5@³&1‘örk"Õ¸|S¼Ù¯×¡ýK×{ãœUs¹‡æ[01ðßl3ó˜‹B2zQ°8þRhÜ»i¶Í.2Ÿ\Ë ªF*þ ‘±ÿËZ”˪õ(Gˆ(ÃÍ›{‡óC¾ÍÖû¥·…pHFJ áÁþ4+&qÔôz® ƒ(\“äà@v#†’’Å>/ÏË-ê‘U¬:E¬Û#èÈ»âžrÆÔ–³OÚQ«Ä(#Üø¿ø/¦ù«H«¨» DóH¿ÄMwØpMyS¸ïýú^§~Œ¹'§° Ü›xNåœéfÍüxÍžOî¢çÿв¼û²B²‡f;\þ?°´ij endstream endobj 3338 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1HDU_1_1InvalidImageDataType.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3364 0 R /BBox [0 0 500 185.19] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3365 0 R >>/Font << /R8 3366 0 R>> >> /Length 294 /Filter /FlateDecode >> stream xœ•QËRÃ0 ¼ë+t–ÛÉ‘¶@…ð™ÐÓ”vÚ¡ð÷Ø©Sši/Œg¬‡WÒ®¼EEU<ÉÖ Ü¿8œï@á¶ ÛGL¦nð¡ ¢‰3±XÎàX¨Q )fAí‰E3– Ü ³å~WÏ÷¢¯¿ªÕò}ÜTóé°ÚWåÏfz[~À¨„ °%eŒÃCü[ìº&RÑ4)ÕÑÉX‘ϳöýX€ñ6'o&Ѫ_qòOEA’uA3ÝôîÑw=Ý엟듈+´µ2š\Þ‘ïÂ$Ag–Éú–vÏ?Á Þ µ$Lø¤£Œnׇˑœ­&…Îkºµ+¸Z‘ )ú›+z©ˆœ”Ã\YAl¬¢\Î3ý. ˜Ý…ýü!‚æ endstream endobj 3368 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2902 >> stream xœVyTSW~ÏÀ{WehG’¢‰Sµ‹Z·jÛQ¬X7´Ê.¢(Š,’„}KBLÉM„„„a‰HEPÄ¥Tq×Ñ:.u«èœÚSkg¡íé}œëœ3/è93sfÎü1ç½?Þ»÷½ßöýî÷ýHÂgA’¤_dª0)ûƒp±pÈû>— $™é㘈E£µ£«|¾ý8ÐϧqºŸkºø[dzå½IødЦë{Qá1ïÏ›78£0+59%gæ’E‹—ÎL,œùzgfhRvj²hæ;ìC^Rº8C˜$ÊÙ’*LÌÍž9æwfxRrnúž¬]û§µÿÏ>Ao‰Äk2B×~–³~CÞž‚½û’ö'§FF¥ WÄçÄVb6±˜C¼C¼KDQÄûÄ\"†ø”ØNÄ¡ÄZâ3b±žØH,#>"6[ˆ@"­áCägÈɾq³ÆÙ8$GÇùÚg£Êç…¯šA9¨_éúX4ž¿}|Ë„iÂ'’W £?SîYòá0 æÔOE)vj»Qbƒ]¦Oo²v@pÊ™¾A€“híF¹$® HÑ>;W¡°êNTH?OZ½3½hÓ:þZeˆ)HUÄHyE´ÉhÖWCà2KãXOë¶*Š·—Ö¡ÒÅ,q‘mÏPÍ322»¹xÚây˜§ÿ.š„&½ø PÀÂçxŠ X̾0ÏÀÔ®õ!ûö;{óâAÉMøGðÃÀå[|ÿÑ…²~æ§^Ò…g”`b¸%(×7RçIäù°JÒŠ¸ºíUñ0.Oß¹vsÒBˆÇ¼ñðt´ùþuàÑE~aý§¡ë…Ë!/ F4ìî‰<•þ "€6|šsn0o_/ßsÀ.vlôF…H¨ô0þ'ÝF¹O§M¶U`!iꩽܢ» ÐbzrAZW³òh šøòAsЛk¿‘™ ¸G« Qy)Å‘E< mÖWB ‡MÊxÁËF+”[Õ`òq´€qsÛ‡ºîœZ…Çó'Çâqq!kâûÚÙ”÷ÃnæI7ùóC!’S;uSÀ_:.]»Ðý-ü>Ý8»î+Lváàæêªê >¼ÜJë>•ËC4…3W¹nKÕÑ?]•¤žäßê[1ñ„Ä ñ±¢mò¥ì•›=Át±™{È¿Œp˜çè÷\1µãw»²ð,È fuzx ˆÐÃZ›Ü š‘4‡’¯Éƒ´/@Y”¾½¼Ü dãÔ6Èj—€CTšåûÒU@ÝÖX‹ k¼‘i×ËÖ”‚¦›ög¾ü7§ÙHÂeÒŠOŠdÁ¬Ñ9cFF— éÿÃèZZ÷‘R±J P‡ƒ^e”Õèn$Bsèotµ2ë Mž²IÞÀ,kžôÅe|s[úè:·ÍðUPšƒš25TC¥AQ‘S•S‘ Á'á1k"<{ŸìœOë̯ˆ鼄âØÏRzFrø¼ÈF™,å+“c«¡UÛìSÝÚRÚxÿÊù›§³;>ï`⪸Nê„­¼>wëÀ¹ö´ÅÍ|äV2~òæ0U1ÑÜw ,Z£†¿-H˜**R¨ÔÞHÊôZ£|‰ÏPAí»/œêqvð‹«s3%%¹·_ÚzE€Žüö¶H:ÙºÈ_GÐÐÇ1¹TH¥Üª»P"Â1liJ¿÷–Æí _ï0[iým‹åž 8°»€¾§¶(õ«ŽÆC(ú¿íŒxÌŠ?z FÇ5ˆñrÈilÕhïxmîڬ쟧 è'šjåëN\%WѬù¤d2Ù´±@JyÊìJX•Ze©ò=l ˜ƒÌêš²hæÁújS§Øq¬”îÑš”³‘î 0¨*ãAöR5†Òr­VB“ÍÞ¦ ;m7*MíFÖÍVå¹ðóL€sÒÐcôÞ#if˸E2¹F AŽª¦_€bh8¨i“:s»v;¶BðÁ기G¾ÓÙØÐT®«Ð™Z³® š@«§©÷T«(Š¿…Æl),Ù”›/K…i,èaý —úû/ñ'Û¢+êóûÃFkg»…>æB¡F‘'Ï’ẽ E|ø˜ œÖ_ìïAãûÀ+"þÐN"÷T´ÓN¥ÃüÚô~<Åê²)“,‚ÊÜ*Q}Qäµ4:š‡ÖžŠ‹ÍONlO¯ƒÌ}°qŽ÷Öº»ø­ÍWû…1dÞr‘­OQþ0‡‘ŸçëÔ°”E¤¤z@À\¥5†xIªbƒ—¡«ôÐ A·Y™(À‹è$OFõ^–SéØ¿§ÜYŠ8C= ' 6ÑåeèÝA_<ï"ªTr¥¢(?S)‚ (ê!zùœºóõ™“ñÑoV_!‘Ñ]$3-çîXµ[´ †ÃÝm¢s…=*ö2@—¨ƒ×”mYa×ÎÆ¸Æ&¥Æ'f„Â`€ù·–!ú‡»q”ï£ùÜêû‡»/ÁKÐ)¶-}u™·=h‹ü‰å’Ë^èÞ`Éä‚£½§É¦Õók3­Ê:œõõÍ] -Ÿ‡ÅdìÊdî:˜¬ûø_§´!JE¨Wåmv:ب¨†wºŽüé±–8‡®BiG*\¤ë&’Ükuq˜4&€{d%eÆ|SnU@¦E\‘ Á‚Õ¡ ÃZ’®§ 2³óò劲R^^®Z‹`nµâhþš˜Ì4¸DßKxq÷~ËÑA~»Î{àåø¾Õå˜[eÈ6ÃZØÐÑÙZÕUæÐ`7ìµ»[;\öNx¶iše€U/ßâVÝWÁ³Žâäm«öaß%ámýÍf{ïIAúž{ÁÕ9àn)Öò)Õ»à^!NÙ¹9ñÚ /í²Õ:?2éþÈGÃÓ&ÅŠ©ÒNm¨P™½BèR#^é+e»Àj°ê-ç4KXJkW—(וÉOÏè"nFNŽXÔ”ëjojjkËi½RMæÇ£$2±òëà—[u,V¡Y¹j,jÂ$pRj´Ò÷å%JWú:©fD6Ö!Úμ,£tËJ”A^r>îesvÆaXÁGïçŒFÎåbiuOcÏ7Ìfå†ëÔIEÂŒ›ÒC`(Œsfœ(ô¨ºá€n±öC/kwÐ^óù5¯~ŒV"ònç#|çQó¼P mø¥ºæ‘ŒU…üó0§q*RØ©0£Â¢ÌsºÔ+Ù¯eÏE%]­·ê« ðXdìè’Ië¢d²Í¥ÀÔÁ&0H>FaÞÛ;ŸdÙ©X½¤Z× P' U“éPó±ºNú›RÖ °Ö†+ކ˱ÓPV«e‡¨ ºý˜§þçê3– p2­ÝªVmS³‰ít¦á@…ÂðP"&컸r[læ¶(~á¹ÔÖ(¸ f/ßî²³h4;‹F{gQë«Y´Å,Ù!À•´6¢X ½™*é‡|„84Ià ³²ˆeµ¹[œíîÌ¡cŸÿXó—Õ0Ñ´«†ê™ðxbÑÏïA¹ßoâqu Ì endstream endobj 3375 0 obj << /Length 1468 /Filter /FlateDecode >> stream xÚÅXmoÛ6þî_!t@!3CR⛱ؒ¦K‡]ëíKÛŽÌ:Fm+•ä%ù÷»#)[’å&hÖí‹E‘§ãÝÃç^h-"½ý:œg"ÒÄH™FÓOKS¢¤Ž¤DMçÑû˜§É˜+Ÿ®fUå‡gE¾]ÛM=«—ŦŒ Aë’¦”HšíbsòØ1ð ' Ú¬GšÒíŒ$„kÇ”_\¢G6á,ÜU½ ï-ò¹r+žŠx<ò£â“â’'Ô@·ßB*<ì0 0Ã÷›¢Þ+rƒë¹ë™‹ªøRÝÕ‚#fš¦Å#0¼‡\ÍÌw ö÷Pìˆ Ý”„¤þ¯[jèŸA%<ëT‰‡1ûq¶ 3»mŒg$Ô¦õÜ‘Wïø´©»¹Õ½Ü\Y ^ù5 Co~1}7™üp=ÌeQÙWÅ|°m^VMÏöj:`ùC üÍPÝÃ3ЛIñüíŠ7(å¾P¡Íš6UrÞ»oöûÈúª9€|I½A*ÌÂËÂn° BE¯]CŒÊbÝ«Æ^éjåûÙpéÁNò•­&Ý“ßÝÅæØ],ܼ0fË®º‹Ø%ÀM®!ó}_ç··Çc¸p(a\—6n K3¢›Kv¬êX·ún›Ãíôêwì,þÜ9ì]ø ׇæö÷ÐÌ(»ÉíC®ú¿JôúX„ÚhªãËM¾ÚÎC3 e|/)€•ûfö§]Ѝ]ÿ púîiá†h­©Ÿ½D· 6 r› v2]l0A¹VÏk ØV€ƒžÍë(†Î7ëãÓåó`[Ç(#â¾"ÕýÛ¦ùW îG ogûØÖnMÁ·ûXlzšoƒ§¯fÁ!Æü“Sˆ?£&TL˜i¼ç‡Þf9›­ï±ÝôÝÿc)p3 endstream endobj 3276 0 obj << /Type /ObjStm /N 100 /First 991 /Length 2729 /Filter /FlateDecode >> stream xÚÝZmoIþî_ÑßtÚž~©~;¡•BB nsv¹CgÚÁw‰l³ ÿþžj{Bœ2NL–[Y‰kzª{ª«ªëyºÇV+”°& /¬6$’ÁµBÛ!za·„ È Q¸”XH"e%b ,h¡•ÕHFhX=ZŒ¤ËP$4yÍRÚS¹› ážì„Ö¡-)H‘õÆ‹#CR±æé¤ãmè‘<’¬0J±MÑArÅ*nTé6ZJhsõRÀ´li‹O,mø§ðHô]ºd —ä ·áŸWEœ{Ë*<<Â\HQ²–-õà#´%AìP´Áw:°žV‚ŒfO{ô0¾²Z ²ªÌ=¬³¬g %nC7"v³UûÊÂWäMÑÃÓBb[4ž‘Øãìl§ÙkV'á`$ža”pYÏhá<ûÙ#\ˆÜÊ.±õp $¶^-0Ýr7Abë5àµæ¾VAB,5¡›7* "æM1½|ñ¦%¨‘á‰SÞîJ.pnY‡»ÁI‹ J l`ã-‰P‚…Û"ƒ[ëEˆË»ADexBdDDÌY²0¨CD¶ƒ·"+àAŠü,ÂM²<1Ä0’“@›3~/@à<³]½.ÆáQ!r’-&ÍÓAî%x²ˆ7šŠD¢åĬH¡L+&%Ã9åéJ+…YxÅ"쀫YJìj^:ÆòÔ|cÒð‚2ìoY„a­‡ˆ4B¯"yîåXtš{! ´ò! =T{â–sÄ*%ª·ÿú·ÐÎÊ_“$gÒäóññûÁ/¿\£m¡cH:çÛÚFiöë$9Ö´÷§“…xôHTû˜:/õÒmQ@ÄWX «`yu̾[^ÀÓ]^ÀóÚ™n(•:öJàQÕÁlڼΠñNT{û¢:̧ qfÅá—O7ê£<¨vaQž,æ\8ŠƒêUžO?Ïš<_“Òö2·ãúñôT¼S‚óÞˆÌ{<¨ž¡7ͪóÎd2Åhï–å’í)år%¤•U'èN0`;ŠpÁê2þ zýy¸(×/Æ“ÿªÇÓY›gÅ6õ¾zV=¯vßérÁÓiàrA*WªTx…()xá­’Îèí”À¼ÕÓéáT °šãz>ßÝóúƒÞ~øú!»w+ëd©?È®ˆœ5ÎKÎG$uL} z¶÷f{öVÒÃ"/SäÚk¤Â2#¥úþí!'aY;ø•K\r]@’^Ûû·v`•¡”Jr`(g¤wñÞÍѤ¥*e]Ic˜LIŒú¤dP÷ï@žLžK*ÖŽÃfáûüý›8–Nª1ÜÂŽï~`´•Jù>öÆ{¯´Ùl:ÛâòG¶zÏG%àZ¿þ*Þk-m¿ðo™ºÃLvâ ˆ"‹­'`€½âýSwîçŽ\&™s¬ Ë'_ Î‘naã¼Uª Ê+*ØÝW)FÑôÔ&ìÞ€4½µùŒàeC ; PWŠ»ŒžC[ì PõnÐ&E2*&UàI=Gf*U~ÓÈïz ‘ÎÆ^ lY­1°5nváÄãvkÒeüeÒeèÖ¤‹Ï%—dI‡NˆÐq-Óq-Óq-c¾³² (”¾R+›JnýÀÔªìcQ+jeowÃ@­,\ KVÔÊbqx“úS«aÓ×èÉ’Ó¦¡wª‘†!%]»ujÕÙÛQ« ,þÊQjßR¶Ñæ„Eíe$¨ *¬n?þ:éùlEÛ[®>Xf61{›€ï$>¯l2À[˜¸I;óf<>¬‡Çy‹ñ5Qz~¡ÔY幦odÖãñä’Q¥¢wU¶Ö®+ßp€±¦mµ-åèÚŒ+ÇæŒ¨ûek®:â¿zh0:O±§¶ñÀZM}µÁŠˆhó3‰oàÞuÈyk$}mê‚–.ƒ íN ,u‚ë„W=3 †·Ÿ›<ž¼O?Nç‹y3ZÐÚðöÎrÍÅ}¯^dñ`ïï`&N|k¤¨¡Ÿý¤ÔOÐ{9moR9/Ž¡°ËëâõIîFŸâé{ÓÓ/Gy‚¦Ï‹ÜòpÝ{¨1O_/ð„AõëÁK¡»»ëy.­~Û=x»»û·ÃñIžÿüjzRO–!ßËËaÐò毸m9(߆Òx6_ì~¬gÈöAõ¢^]h£Õïãvñ‘Ý»|±²þÁÂÁ”—”Â9v1_-ãpùÃZ¡PŽ«>œ­ËÿXå»§{òò›ïvü±1»sv©òdÒLÛñäH`“É|Ü5œ«ì½îèu—-]ÈѺÞÁKžâÙ?]J—ð‘7¸ûÇõ¿×BLç g-šòúÓ³<>ú¸à—±XÂyyûªç‹úxÜìLŽ( v.òÉoüžù5žÏa{‰–7n¾] C1^€ªÝj¯zRí—2~X½©êª©šéñtRµU®FÕ¸:®&Õ´úTÍ«EõGuZ}y¸œÇþø83Ëp…n Ͱ™ö VŽ· XÅ|zK ¥äŒ®/)d¤üß´X±œNØ.>0MM¹©GƛƘá0»\Ûæ”©QíöÉ¿³«># ¼ *ü©d¡³iE60é{’…3«Vda³®" w<Ò^j‡Z“ Lò“—Þñ¹ S¹¾ïd?ÔML!Û”È.”Z§SÒ6{ç‘{£æ¿!µ¿YWî΂lûjóo¼ë©]Þ¼^Ɇ®ÔVü;ƒø]´­ ’t_Ÿ ZJþP_m%ÅÍéÐú{˜ó¯^¾A”.p£·¿ÿÃ)Èz~Rò®Ç.^fNÎßž9¹Ž99úËÒ£¿¿ýç›g7Ð#þ¯èÑ’òœ'H!Ä?“"]çä )l"i¿EŠtTHÒÉ 4iùC¬ïE“øÃíYRaXpõŠ%©äGdÉcá…Ú ³UÙ4)圀‡5ý`Ö… `v]ù&˜½RûZ˜½J›ðBê«}-pÞ]ûz˜½JÛ œÊ÷µ»œð§fËqéÜe˜ öö0뻣øÐÅýoÿ‹QI  endstream endobj 3355 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1HDU_1_1NoNullValue.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3381 0 R /BBox [0 0 500 245.4] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3382 0 R >>/Font << /R8 3383 0 R>> >> /Length 272 /Filter /FlateDecode >> stream xœ•‘KOÃ0 Çïþ>c;išöÈpš-»£j/Ô2¦m‚³îÕ#Š”øÿN6È$ÈiϦƒû·[`\ÀäÄãÑtøP[AD/¤Ñ+Ösè/ JNŠê‰£z¬;¸æ«Ý¶,_ßËr²žìÛvúÑîg·õ'ŒkxçɳËðÇÄž!ué cNFÛ!Fâܼ™ÒKðQ-âL’)IvPý8THQ ¡P„ó“íãßfö½[­¿ÎÀvËåÄŸ@OîW9xR9@^Û—2Ãvl¼.©2Õ„žŽ%·‡Ðì2u×{ÂNIR£j8åÏÍ«a å3;F]¤L­D½äŠëȰÇæw6é©pp- endstream endobj 3386 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2368 >> stream xœUkP“Wþ>ß9m)íB£dÄ„Öj/¶¢ö‚Ø‹XPZo¥ÈDQA’ „K 9! Â%\*wP”ª´¶âµvÛZ­«h¥íÔNmw»KÛÙ÷c;³_ÜÎìîìÎþØßwÞ™ç<çyßçyYÆÛ‹aYÖ76Kž™ÿlŒR¾Cáùš_ÀòA^üB¡òÙ„Ù5>¼Ô—!¾"âëÝt”?œüX‚‡o– ݘ`2.&á©¥KŸ‰PæçeíÙ[¼rùŠçƒ3Šƒ«GfægíQ/> 3s”¹òLEÁ–,y†*?øÞ½Á1™{T9;òþõìŸhÿ>Ã0óʈÜÈuëó ^WíPïÜ’¹;+.'~5üÉD33o1‹™%ÌL,Ç<ÅÄ3¯1IL$¬g¢˜ Ì‹Ìf&”YÀÌTb¼ó!û;æµÈË!bEfѼ7xøÄø|íæÚ8ŠÑ~ oÃGñO`õãkˆ‹ŸfoNCä´¨}ìurIÖRqc8„N¾Ûe&x¢'ç ÍD¦ ºÒä¬]N”\¯·›'0£»i“k·å”lŒ’N¡ÊÚu–>A#)A Ö&K3Á}Mšdµ s´¾,© úø•}lÿh¹#+Ÿ.¦óW,¥Rôýàþ?þ 2 ¹K‘•)ÅÓç–Ò…”Ûþzø®Ý=G eÊS¥—Éçø‡ã¯HýfC´ãüÏGØ>À¢Y†O—ƒÊ§«*,Õ‘r¢±jê“Û’SIY•³9vÝæÌB½0M ‚ðùóñ[ç¥Åí¯E¾._E$›ÈVWúhìDÎÞÞø0,>sªp×éÐ>§²cƒ‡=•ƒÜ0Äû÷¿6 ª¯ç8ê©\ Æv.Ü¢³™/aXÔÙînÃÑðÀwà ‹ááuß>½5-?6MvUÕÆî-‹-‘”¢&Ëb#øPƒ!U6·‘x½!º ¼ ËøAñÀ¤ûøkè}Ò€Dê•‘ãž¼›Œð_°¿Ìð°¢Öy0Â&¿_œüøÜÈ·ääŽâÆÖÓQŸQÖML»ÕÜTec…%ÏE#ók:]¸C IáGº²]¬±H¦:D”F­VŸ«ÊÑÉ ÞµïÐQLÑ%ZtÂÔ¢µ¤`Z^>™xuäpko¯ôØ1ŸU¨ÎôžËÝü~‹Ä6œ‰9ËöøOÞ†'o íâ·ü^\¢Õ5T¶ŒË ‘SÆ~MÊÞMð³k“7tõôtººêÌõ晩ÉÜHpïPב‰^Eœt ¢Ïn).OÏTi³H¶Ð¹MãiÆÇ:O]8âëÛ‹Æ"öwF… ¹-&r£¾P—§Í­($x¯òÐ1Y²œ…ûÆð?Òô9' ƒó`›“Ë!E­9ãôH ¼ ¾½ýÎáZ‰“®Ô “­Šh‰N§ÊË1VéŠËŠ*ìšîr‡©N=XÙ*Ä‚Óq`À‚t§¦ Ö²ÁÔ»ôñ@ÊÑ0y†¡2»F¢ÅN¤Ð×;8Z:eSðÐw4¸®ªÖH*%¤¸²:Û„=Š]á}úÙ·¯‹øÇ`¹8eÝžü‚C6ÝôËéË·ÜC¦Mv@Õ¨h/é"’ƒÝ“ëN„&'íÉ%¥)£ÈK˜Š§–èÝ#­ƒniowGßÀ9,Œ˜ÞUîšõrù;Î?7>?@-,à§ÅT§æn%ÖG1½ƒæÄ¼Ú‡®QsÇHKÅ‘T<·™-+ 󌮽Z§é4ýŒù äiäÜ Ÿ6¾›³þâh›j¸Çü3P r³ü3°Jœ²&]±‘Äô~Å™âÑÊ!ÓE ¸Š ýyCr÷¶Î’DR‹3³R3r#I¦Ò+/úáÚ9`ŽJé xFÜ|ãÐÈrô(Ïc?øZhÔcC°£ýYðÜEÁsô!Átç:F»E»´u¿ÝÐFpO{{·;íà››r·ï—íß^±ÇüÛ÷%ý„3…ô‘žmèp¢0«¾™\Ãð ø!ÁÍøÙÿ3/NÏøLÈhƒ“{£¾²É“?€ª­4$ÖGƒ-öZ»ÅF$=M¥i2ªA¦µå†¨ðxÏ.ç(]ª¾®®þþ‚.…LP]Xw¼KÈ~øÛ¸h6Î#¸FÍ]7:‹j’‘¨ªÌynÊÆœpI’{rOUŽ0\½gà›»Õhê7kŒèÚ[að*°×Þùô°´çhÓqrC ªýµ¹åV¾÷öOÓ¢Îy wr›¬z›yówQumbén}¤°Ä f‹ÝÒHðM+l±ýȧÕn®þLjÌ>èbg7{hîPs§«Û DIJ+surúÄœ(.…ﲿ¨è"N qµ4 ÕÖ“f‹Ã"PìP£ !Ž­óÜñ@'yüÙá©ææ“V‰@I"°€ˆ½"ñiby^Þ>ÅÛyýƒ{÷”Ë(õþ3?m oƒí-Üèý·µúúNÕù>È0Oßî endstream endobj 3392 0 obj << /Length 1476 /Filter /FlateDecode >> stream xÚ½XKsÛ6¾ëWprÈ3Œ7 MÓ™ÖÔé¤Ó&ê)ÉA¦`ISItHªvþ}wP")Zv“¶ –ûøðíbA-"½ý4]IeÄh-¢émÄ„ ©Î"mцEÓyô!æ"ó4‹Ï׳ªòË"ßmì¶žÕ«b SŠ*3n’OÓ7£Ëéè󈱖FF UQ¾}øD£9,¾‰(&‹îè&D¾¸ŽÞ~Ñàæcÿ . à¿f”(oâóˆpc”h ÝRó^˜8»Þp]`±e“À ñï`iܘ·lyõŠJ§D§™Gñ·ÝM’ÆëUpñ,~k77¶ôã«Ý6G +_?̳+NÛÊ5I³\áĤÊëþȹ꽋à÷»×£èÃX)ÿZ¼ßåË_Ic›p¹O‹rÞy„q—?REsp«ö›^Õà/Sñj»À‰4~9_ÍßùÅ›¢X±Õ˜ñ*ï,ha¦RŒj“b`7-“ÄHé»|Èí]àX&ã¼.ÊDÑmf*¾+A9剀h*/R/-DÏ[XyqµªƒÐeYå$ ¥â!,œÐ¶¨ýàõ»í<¼ñÂOßX¿PƒÁ²Œ«;›¯Ð±ÆPÇ@£6¶ªf ›€kÄÃÒ¡ZJc Íà“L«&‰H ƒè(¥ñ…­g€øÜSéÂVy¹òµ1ï‘|â’he¼F‹´ †]¬‹°¯6Ÿ]¥¢ ×À %Àeç*$"" ÉèD;ra¨FÒåé±>•J±Fȧ°·þÊK+æÚ±’ëŒH ¼dPÕUà%€n‡ì§ÄÓ¨>ª=fޱf WÞ;®‚óvBUq¹ˆƒNÀ‰PpØT)øp@!WpЮøÆ ?Ý®]ËÇU …Õq¤d¿@1ÀQ„JΕ„ËxVÎ6¶†ó(6|Š ë?^õ‹¸6xŒ ØMÎÒÓǸ&šéãc¼¥ûRlP1„A =¡˜B A Ûéªuçº;¡IG4(‚eDK³O½E(dag8IAý·yÒmŒ&r±ãÉ@L®ÛÄsÏèඨêUxnQ2HjïªÝl½þâ—q°JùQqÛ[¨è~¡´ã!¶ÞAI¶sr'™QÂ2õõ8=Á0 Óiµ_IÝÿB1R—JR%Op~’»P±¹•’Ù©òÏâî7º2HÞ¶/«ÛÐf4]c 'ÎÝ5%<ô¡ ÝÃýÒ-ËPóº^ººž¾ŸLþJ¸‚.妨ìÛbn‡:ÞUÕt5ÁVÓÃÀ1ðLö~=R§Y†z•Rÿ>}¿AñÀÞ6J5wÿns§Ë°YóÞµ±ß)ÖËfòÃ]ÓuL³ð°°[<åh<«]Ë‹ÊbÓ¼nÛJ×kß±†û Þg(_ÛjÒÝùý…Jeä#ªp}‚Ʋì.b¹ƒ øóÞÎk}’Çø&«qLH’A.ï{Ò쨽ÞÌ Í„(¡ ¿|¨}•§wEÕpÝ´aßïµ–EO%oD¦CjR’É}×ùÃÓJšoІO îmîÖ°u~æôN)d¤ÝæödOÈ„ŒDhÏ«®·˜÷®2Ô3Ôà)†Ç1ðÓd3@²l‹^‡—im¨ìÁÕ¥:ì›Çh”@㛲X)@µèÒr°ûb”ÅÌ?ùˆÒ|ãÑ„§x:¤h†Ÿ2ÂýÓêRMrNC±»‡·³ cþŸS ¹ŸI'TM˜iÐæÇh‡Û¤ëšoHîÖùetŽí¶þß³#M4 endstream endobj 3372 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1HDU_1_1NoSuchKeyword.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3398 0 R /BBox [0 0 500 213.9] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3399 0 R >>/Font << /R8 3400 0 R>> >> /Length 291 /Filter /FlateDecode >> stream xœ•ËNÃ@ E÷þ /…™÷#KJ ©4|Ahš"B-*ü=žq"’÷žËiž˜`<9ÉšG K\üo•ÈLRX”F“Ša²Ê Ÿó¯bõ¾Û4o‡-NpK%#Y;Òå°ƒ *’Ö÷$?Èx-E01F¿Iï³aÃþ<ªì‘;C¥!çìl8Ù2j†ò—!µL®’ÂXò %"ÛÌe¬!å.¦3*(/Ø¡d8M endstream endobj 3402 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2931 >> stream xœVkTSW¾1pïiËÐ4JŠM¬­}i}U«´j+ø¨V) <AP„mþÜy ¦åVMûmeZ|^Ya¾dÚÓÜCE^QIiqž¤|maq®¬lÚDÞiIyù²¢é¿~ûg´ÿ/>EQIJ–•Æ'H——•¯”U®–WmÙº6o[Aaòú—)j•H=E½MÍ ž¦’©g¨j=õµJ£fQéTO%Ps¨åÔ jõ&µ€z‰Š¥b9Ĩ0JFâ½È;4éÉIÞIãgó¿[Ö¾›~>Á¼Æ¸Ñ£¨]`þ½òÜýÐä‡Ö-’­ÇVpšw{ âÇø­“¡ÀO§Û”^Ü`sìH»g/FÇ;‹V‰IczS£Ì¨G*Øêg2ìZù8‚*æ›ì3¯o,R¬^!eôÖTy¡6U%T0M6§ÅQ·S•!&Æœ¨­N¯G\B]7;¿›×s|wù`c7 È”y3‰ˆLýúˆ‚¨ï~1ÄÌù†<*®.ŒŸI'ô¦•K·në8?ð%þß•ÜJ>½â#Âë'cD:äô¨ÞQkYŠî'2æ74š¥FIì%AÐåúã%eá1Ñ­õ‡bBaò`³Ò$ok`´EãìG²€pá8y?Üã³ßÀ%t曤äI3*¥Ÿ´™-ø ³™1“WãC *§5/«5‹LˆÌ)mémhèÆb¹:Muó|´›®‡'ÃïwËékFOµuY¨2Ó²jõ²:$g˜Hø‚ãäâï“1¾}2èýôJ«Òg:@Æô èntun‘_å1z1êô·tï­æ”È–¥‹ÿ̭ɲ|ur¯# £ÝNe¶˜ØSªÁ°F˵ðÝ;R(\ÉŒöU…:Ž+yÆDÉ6[·ÁÔÿQrc~I§]bDrØÛÆ,±©}æk$0ƒùÔܬö¼Ì%êÚ5vaGÔ;!îÊ®±—áCA<®¥µÆz6`Uk/w”ÛË0z5)uYrß–Ï3Åç¶ï¯l)ÃEÂì%iË ï•‹”d®—nr5X¹E§¹±ÇÔ¢Š¡kO] öÖû箜(Û»®_L¨K%-ªNÜ%<ì9Û»}^‡(‚º“lDïÊìÁÓ€h—Éf½½¨¸P¢Ðê ¡Jê-&› ½KNÑ‹z7Ÿ?>Øyr¯¨Ú-Û©¬‘aá6U×ûb8ð#"`Ž C€÷·{pæ¿m2Ûè¥ù*‚\8CR9hj´Alc~[aË5—ëfj#A9sÓàÒY^Gd9þÛÊÀQB’qŽ ð>ƒåc\ÇNŒt†Uï0Eð™¯`.Ö{t8 ƒKŒjµ¶TV¤)ÆhëŽ}Cb%O«™£&ŸÚ’‰ˆyõXÚµÍ]]¢Ã‡Ã3 ¦~÷;>!w0u€}5Àc/s©˜}z—+°ÊP¦-G¤1‹ \1‚1ö q»»éhò“l3PçÑ6ØÕNi£b.ÉŒy|u.“ »„x—Û±¿ÛµRÅt˜ºö4ˆ%߯xŠÕØŽO§ ú˜¯ˆÖŸg56aa¶;›‚~ˆi²Ù\Š_áŸàÁ#WçO\¨wÔá2,+/NI# da ä0–.çF¾>£[c}ãWø´¿6aóš]ã6_G°ŽÙ³ë¯Óo¾öîr\&ĪjƒÄlÄZ¬1sÛε1©µkî÷D ¶H‚ÄË4;.Û…m„+dÂ(^ôó 86úé"\Ù\4L…´˜Ï ¢­«Ç¿×*ô“ù*¦×ä2`5ÖhdÒ"£ASU]Yë‰QuÔxM ò ¾™S<¿·±×Â!³Eådzqsu0ëòT ¡I\q®N¿½^¨‚~F¢µ{›½¾]âQxø+2­Á`5b½Wéë¶›&”X2ƾÇõ«„ë‰UÑ}Í5Ê:³¡^/~žô ¾:_¨­þ¦ÃV._®šÙS×¢u(€&æO©Ål×u§7oÃ*¬,_«(RI+äjî&Ôpw²ª©ªA‰Q™\.Ý”¾3›„“éäÑë €f0ptŸx5ÓPÏœ '3/°^¯Ñi•;uŒ­¿ @Øñ럜:–µAÌñM¨ 1. xÃì‹ÃS¢åã©ãÏ ˆFNß6z¶'¹Ëܰòp²DNƾڃYèþ[Œé‰jE\ˆmŽm ª]¦Ÿ;•‰>®½4¼…í m?{[F›P·@ÒL?‹™K6KVã$¼¹Gr¶jPßgºˆà=ºö]´¯¸ã®TœŽ³ªò ³rKãq"¢« ùöÆy †Dä̸oíx¿‡;K¼ Яæ1½rºy?qzw1Dއ9Á;ßÖ;ØîÕIZEÍ;=ºÎ9Z[;ú³÷¬[“Zºi§xç¦Ú|ó+(nǧäCÚ´T§Í9^?gÓºñ Bäo—`ò)Þµ1XËõFé¬w›Ì#Èd~É=—˜S¶n£Î2F[FZ›¢–Ö†+™‹7btØQ»Y|çuÆÚ$=¾Èϼm¯u›¸ÿ ÌÐHoËAnÖÚŸ &Œ)¾F›dä6p†äÒž»uëÞKcS¢?âL_ç§WÙõÎåSg#sRÂUN \<2$Ïß/ îðílNä\7¤ÊÃ,àæøû0|}ˆŠ*9}Ó说>ÅM7 ^aÈS—f®.ZŠãqFgéѪ>ý~Áµ [¹²•~93ú›á|À×ïÄÁkÀ»±ÿòQçsßDàc¬¿¸}wœ‚Zàƒø¼;ÀçÃT6[P,•îì–ö÷töwî)öß"Õ>vƒ 6ùèÁ?{hÐ1Úñ;ŠúmCŒ endstream endobj 3419 0 obj << /Length 1315 /Filter /FlateDecode >> stream xÚåXßs£6~÷_ÁSfjE?Bž¦3Mœ\sÓ›¶‰ûÒÜ=}n1ø7—þõ]!a1Žs¹›<ô!±Œ—Õî÷í®v……ƒ7£³ÙèäÒçNˆd0g6wcH¡HŽIœYâܺ”yc*B÷<ÊÒ,§y¼Y©¬ŠªežÁ#Ž9u ÃÞ‡ÙÛÑÅlôiD`ì–F‚$æN¼Ý~ÀN?¾u0b2tîkÑ•Ã|%úÅÔ¹ý>ÂÖÌ¡Ïf ÊÁX°Ÿ‡.õŸFˆHúµDkYÿÔ¼gœ\­hàLsرµ'¢\/õÇn§q³Õ¸µ—A1؃"g1fQümsç 7]Æ Ýwju§ ³¾Üd±²¬áë»yrIq[y€D(ÀФðî÷”òλÎí˜óÀýg ;øØ­6Qj×n ëϵÖN|G‚vÀ´3…5VF/6”öLHø¤‘¹ZE uñ¹êï¯Ãä=æþÈ€_\€RH¡•Ž)D£Î˜øHúÖ±D•¸@¸»‰«¼èè饡¨! '/ƺ°×=´@ ðÅòÃÄÛÂ:3]ÀæÓ­@›™ZÛ1ƒÙ £=²|±Ý9NóL 15„{y5»éжÍQøÈ´žÀj¸up]GE½s q_ ÄLjèÐoGH‡I«pí1ì>´ÔQÑg„ÐXHxâQîæËd8 ´T¡¢dUQ_§þM³p—çVHzÄM.Óhq:×.Ei©m¶ÀÈgOf;Îh ì‹CFw*[S½Ž®`ƒ1€`'@5ßÞ®”˜¥Òt~®TVêóó`úyúǾ„Mú!ôÕÊa­þéXÖR…*UeÜ"îµvô…‡ÀÖè€uèçEl¡Ë,væÛr‡©Zó^É×p¸HÛ À£*ßəռÈWžµÓÔêYBVmEò¹ý¼û BÔ–”(þXç!úFÅäxÊ8Jëy’CˉfFe”nÔKØÂ-œ-^g7ç?ýraÖ­ì¾×ðçEÒrGïm‘7œ¶8,½­Ý¥²R÷äHKq7ÛR;ønÃÕ2kL|X?öõëæI ã/'ª9 Åñ‡á>j Um,X/£èÕ£z³^Ci)o´e¥e1„œ9,Mv/©:mŽúÅxÆ|>TlÊÚ´ESQQ‘¤ªìâ^ü£Ìâ}öçÅõ¯ÇrR¾z­ÿW'£*ò×®6ÏAíZlž¢ªÝ|Cv}›’ó,žêí;#wo¤Ã(¡³b…oî% x}v§ªŠ–©JÌH=Ue\,×Õ®½Ú7×ã1õQÀC›øjµN£Jíox[œíD;&vzG Y´RÆš} 3!—½ftXa¬9µ0 ñü\·,U9™@ûå ¨cè*íœÚï¡%â~xÈt‰DÈM§â,èØ:â$¤È‡ø0ÀÊÇ—}`LçÃ!ã8L¸òPWß–6ƒ#[É7wñîb Òú`j yõ1ª¶#'„bV>:4êž½{B@˜˜ÕÌ# ÝŽrïEÁq"Ÿs‘ÖÜó0À@Öº¡ %bM:½Q™* ø›Î7k “ØmJé»È–Bb ÅP¼Ì1Á|BdS7é®n6Áj¾Õ%졹G¬›ù‡…NbWe}÷ÿ~zà¶ endstream endobj 3389 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1ImageExt.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3427 0 R /BBox [0 0 500 425.53] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3428 0 R >>/Font << /R8 3429 0 R>> >> /Length 340 /Filter /FlateDecode >> stream xœ•’½N1 Çw?…G`0q¾S!JŒåŽ@mAd¨Z §wé]FtCüÿvUùÆs“áö5àî wp>'q<6z)ˆh°ßÂpQ+r>FÔ‘B û WËåöót\,^òûîcõ{ºÃï¯û/Xõ°ËÄ&iü­'(]28¥Šñ=Qk щÛÚ¥`6$KƉb ¢˜¡ûq´¤œIÈÉHÛ ìóãÛUʽuäBE¬îª­¥ÀÍí©LpÙ%²±È¹ÿâ2K[Á5NÆenp[V£SYme­îÈj™ ÉÚ ßÜžÊö`"{òºh%­Âz~àäå¹´›½M\ÖÆG¹Ýµš¿l¢k% h#“b)ÑÖDÒii{ìa{3Äê¶Gù;ÉÔÀ˜Ÿ†ìÚÀ„aX{rq†1‹´=Îkøw©ð endstream endobj 3431 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2138 >> stream xœUkPSé>‡s¾µ[ݸ¤jBëe\× kUÄîzW]/«ÜT@‘‹$áî I0‰$_È- "·¹#ºêR+"^êꬵb]uÛÚq»;mÙuúæ£3=ìÚigÚ_9?ÎùžsÞóÌû>ÏóÒ”·EÓ´OxŠ,1ke¨B/Ÿy^Îͧ¹^ÜB&ò©ú©ÍBNâCaöñnZðƲ90ôc°Ì†œQÞ4¸;ʶ,"4êíwÞY¬HÏÏLIJVú¯ xw­B¾ÿkÄ?$1+%Iî¿”¿ÉILS¤ËåÊ})²„ì,ÿïþ뚘”ŸùŸgÿ®öÿÕ§(êÍàíYÊ»âóO$¥„GÈü7¾·‰¢SK¨¥T8A½M-§¶Q©¨ÔNêCjµžÚGÑÔ|j!%¥D|(o*‡zA¢ÿààåòú\ ñží-÷¾-l¾b¶0ýl<{œmd/³Pê;µZ=Ì}3@·LQ\”¨²…9Œ!§P“‹‹±ªTU~¨á`e,ÂÒö†oß›¸/Dâ@L@ ÿzñÉ I~ã¶² X¼‡9ãúÂ/§½Àà`×K@°dt$çø€ÄsÒ®p|ˆ|§Nà^îy/ýí$Ç-¨Ÿ½ üªëæµ;c½Ä_ãò‰°_í¸Gè²#Ò’Ç<ÖWž²lAÓûYó6f‹A(w[ä®®úýí”K’‰ˆÁu˜P˜ÌJÜ-? Y‹Ñ1M•GêËvÂA¨ê£ÿ2)྄÷E &æ§G2É"3Jg•š-¸†Uì3S­¦6µ€JÉh6ª5&DVA&cé,+kÇæó–¬Ü—_—˜«NÁ©ü4ö l—Ì­,oÌœ7Ùºûxˆ¬~*Â2£6G“©N?•ƒQ²âÜyik¹1Üo ò K°“û¹÷<8lgÒpn}Ú0y¢ýž‚£­ÃÞeÛÉÛiª6`5Öh²3ÓŒM~Qî)›Ÿª¥¸ÖT–çÖ×ãjl¯=ÓiAvrLUÅvâú"wì—d±aH,A§O-«`‰•kËk+ÎÔÖ5IÃì?ÿ2ƒÕˆõbœ¯?jú®c÷@æVÀQÌæ8ùnŠã:ä£ù}zé&‚qæÔ]G¦GÖs¸) ıù‰)± é!8Égë€ýóÃ1 †$dVˆj&ÎõŽãqìRÔ®ý~”ÜÏ<ßNëñ&¯F2›—㘣³¯¹V'o”ÔgØt ¹޶~´'*ýH†4ãÈ©$ó/PÐÉÏÉ]Æ´E§ )A*¨µ³A¥ÚüÁ]ðå WBä£pë,¤ö—·Óí÷¡ðQ[»€KåüDý›Ø¬.Í­È®ô˨V”g`´jkÈê=­‰wS¥Y9¹mÉiqN¶A‹ pvv(78*#Ÿ@‘Ž~õp¢uhDÒçnðà>|3vpkñ‹°fUázììên«ì)q˜¬¸ØÝm]íön|w[ÔDôÓ?ÓO>ÁèEWQÒÍljpMhÇpK•}à’´^ŠÆÚ»/º[ dõGrÍ| …)’ïM¸óÕŒqùn]Ÿœ31¹þÙ[sïñ)©³3»ÊõUæ€=]JV‡ Ul¥ÅfµYª±ØUUxTJT¬ik±nG šû¼§DéJ¥BÞœÝÞÙÜÜÑ¡l–‡Ü×C4Tðaí•Ù̼*¯²|¸54¹lN3²IèbZ€njÖŠ®N—0æuźÀ{_˜É~wpN>Éᩈ©å"¢Êcí¹ÖÅ|n³x‡!±@–³;m Á‡\éç{ô½ø‚ßùþw3¾ïÉc¿N„;,Ùú$6ý°ûÓ~‰k¨ê"~„ Žµ¾ª©{RÅïÏÞo„þâ왹f¶G¦‰¶Ö˜t³ØZY]Qq¶å|C7FÃÍÉÛ¥DÆšBuÚ°Õ(ílV×›n#(g;Ï{?Æh´1}ƒ”$±¦ýýÿ’ÂÎfXO–kí¸_ ,Ì:~cÓ茒üÑ”¶|§mزzkd^Š6R%.`m¥U–ŒZ« c¤ä k +R‡c^ò¥üµ è' Àî¨H–™yR~6³ÃÝêêtg´Ê¤„xÿ×™/7Ω¸—¢éÒ 4°\é~Ë’1ˆƒ1ˆòðo¯ˆ¸hV°ÓÐ.\̉'c„Õu\d5©cúf=ýA_©Ïã2ŸRÔ?I]© endstream endobj 3443 0 obj << /Length 2273 /Filter /FlateDecode >> stream xÚÅYÛrã6}÷WèiCUE\TínUâOœJf³cmíƒ35EI°ÄD:$5çë·^dXžK¼ûà4F÷9 ˜N6:y}öýâìÅE,')É”“ÅÍ„ A•NT&‰ÊØd±ž\G\Lgÿ WmUü"3¢’ì´kSÞ¹öª­‹rЃAÊùé@èùK`‹ „y·Ãßô”Éè¾±{ùS$Q^þô.•$‰G»iåÅ£»òKíò?Ža,àŒOȬt|ø½ðH'£ÃÔ¹þPÔí!ß½AÈ‹ N‡ú%%2°'‚Å}\ZP…¤ÛhÛÔSA£­.›•MëƒÕ·€H×Fô‡—ÿ­éº×˜'иÅ¢¸[î<ßí4,(b-§œF÷«1..WÇúq®9SI!ègR°¬Ú©‘/J°zíW¸Á}€ Úè0ò/ßÙÑCcâ‰LgRÄÑmn÷ºÕuc§@Æ´uåÄ·JßÙ=ÊV[¯ºmºÝâÙ©c缇ߢ,Ú"ßÀ''ÿ88à¼3g'“ŽAdÍkkò”±¨ë;þé8jq,H¡fD@ȤPES íuÿg¨ø…–ŠAÜæÚX¯ay™ ©J‚±-’­¤ñÔ7Öí:0ㆉ¾ÒœQ.³ x‚̱aÖn]&}R¯-uaç“‚Ì€>èÓöÇ)%,•_aÿçÏ$Ävö õŠM`QAÒ8þs+‘Dªt&$.³ChÔ||2¶¾Î¢pl -r¡ÅœŒ,£Z\s¡Ô¸XŠlÆ#ƒ­Ü!hVµ‹Q,2l[Ùߥ Õ>oêj߇ôg1ÑÓñüÅ>{"ì@¯Šå3Äó—+œ²SCü¥2³§| ·÷‘æ´¯ûRŠó‡%@äˆí¡Ñqâ/4ü9/4q¾Ð“Óe*fý'ÜgÂÄó]gF„¯3 ê6ÆיF·hZ‚–AÑ÷Öf8ÉÞm²,~¬úœq* ¥ñ¸Tý´*TÀíPetú®P[¹ü/]ú€Ã° ·sëê9wI@ð4vžá&Ô×f©ªåÙl{•¯¶®: T±×oªVÏ¡n„šë+OÅ¢kFÅ]) ¥^é¦É±úD7ƒhŽ­  v=[;ŠÕîaûûÒU¸•ÑÞ”®¸˜u v.Áþ‘Kcÿ;+6 Õ§~ždÑ­Cð}o2vCv7¶•—kÛð’ÒñMÁ,ø­•±ûÂVw¶Ѷ1<åÌè|p®™;WòdFD;ôå}˜i¹y¥Û¹ÉG'ë4› F *˜!ÓPþýÝÛ7—o^Ï1Ü ´BÛ©·öeô9²iBP(b"e÷"‹´éà¯Æ½Ì0þ­>ÿJy”áp#¢q6|±5‡„”ëb•·à-óÄH»GLÓ>É¥hô²ho‹Ã'àÑ»&¨€çà2Ûø m@*ÇÎì`Õ@nű]|Ó´büp8‹M“©Øø3R×~eCÂÁUµ_¥+½°Ã¾tâ?ŒòÊ5–N¾1 Øj·ykUv¦˜Õ×'ê3jÐ Âí°3þÄ$ùýP˜|B“íp™¨rLÆÙme` {ý1&æ„\Bÿ¡Ñ®åâ&Ä<ôêl«xòýF·ï‹ýæ}°LF“>¸åÀY¦ˆç ’Ç!íݺÆZû2mDâ” i#mÌ…VSã8{@iµZj™B$½ÞÝðåɨª»—iP?‚G'pQ´Í«+}ûà?¾Šúÿk~8øÍ(#’eŸóo\ÿ_fw|_>ÒŒå¼ñÿ9wûò÷ÉÅ4£‘gçŸsÇ®ŒÙ_N¹t=ÉœÊ9Ë<󞊽Ü —ƒ û_lƒ¦÷œÊ€3À ÿ¹³† endstream endobj 3461 0 obj << /Length 2113 /Filter /FlateDecode >> stream xÚ½YYÛÈ~ׯ XÑ}ñ¬xçpfµwÇ Ä6 Šli˜P¤–‡Ç³¿>U}ðJc‘¼ŒšÝÍêª¯Ž¯šC\æ-÷K‚?¯‡ðûÓfñâFxËÐ|Ÿ/7»%åÜ üpéGžëGt¹I—ÆWk„Îe×µ^•I{E7YYÀ”G<æPÎVŸ6?/®7‹ßN K:H݈xËä°øð‰,SXüôáQ¸|P[K.`+ÅóåûÅo 2RZ+ëÏ)ë.ãžUÖå¡Ë\±ZSBˆÓÈÃ1‰š½¸é¼Ï||ßÜÐ÷à8õâzÇè„À µšÇ£,âƒsyälf‚þÝî¿ÎˆƒóBn7|Y1á”Yjö¼¸DtŠ]^~$„5õÅÅí!^QâìÑ4G^mft`AÏ…Z»aÎ ßõ¹wÎŽ,u{²fD¸"Ë5…ÈðŒûšr¯LÌf:/õ›°ÜëÇ!l:ýšª•3*²À¢ÈneèŒ Jà`f7}ø’UMçŸTÛyqÃÈPkJà3PŸ¹œ £D[a8…ÎŽr·Óƒìï¥Ö8ðPÉ}\¥¹´éTšýͽÙýÓûËW¿Öã¸HÍä¿®ïÞéáV "ÿ<> ^eeö@TyNœ·²F+À‚5“ÏŒž7+Ž{ Á0ä|€¢õrPÛFæ³²+°Û^‚ƒA…Œ§ž~€¿?Àœ€%YmV-6ê™jppÁ€ƒÃܰ3Jª•] ïK½PÉ8}ñ Ëiäo vG-›ÆH" ND4r9Ç‘†g"Úžg†Áh¬JýÔ¨_áP—Lö;eÒd v™?‚/ˆã®ÖœûÎm£÷¤%ªŠ£·ï6zp(Ól·¢¨¶:èÞ(Ò¹}xº}Ýys`ÆBèÍÅBv ¾pnw3îö‰KIômw.õ£»ñ<åŸ8¯­»Yè `Ñ¢Zª¡F¨Z}Èò\¶æE Goʡן2þÊÑ!0A0qôà@…Ê0/Ì–;™KHd4iiW•Sƪ½á³»×‹åM‡]]þÛÕ?F5$ºzbÄ`“EÆ5Ä—÷¿$.áŸ".ƾA]‘Ï£.Jþ u±óÔ5ÐâuEßC]¬Ö!„&F©á1¼QÈÛv» ›#òò<—‰h€Q6GDÜ%ü<1 ÷Çqû<>â°55¡ÄMi“Í”O¾‡:LØ2Ü™!+D¨–f×B› ßñÛÉw-Ñe…ÕbÓ¢2ÍÊ›NJÈ£©û<Œ«ŠÓzµ®+¦ÜðŽta(QÂ×F5´©uW¯„¡'ÙòÃ85Ð@{l{L!•†êÙ” Ñ! s§ªÑ¤\gÐphBíø bÏSŒáÁÏF¯N¡¤=èm¥áŠV§ãBØG¯X¦Ä5NÇU…:Å+N=åQ%¯Ö«©¬³¶•§ q52_©¨#Ü@Ï^ÅM¬G]?ˆëèyœÔÖÃàòævóþö^=ÄjÙB‘prDƒ°ÞýêµXñ|n^ž8ÖHÎj-m×Z³å Cè%¼Qìg ៯îÞÞ¾}}¡F‘Bá×ê_˜KJ¸eE=W ¹p=Ï·É1/Mý«Ð–5ƾ–—"fOé7ðà0lb‰r*P¤Y7€òÎØ6Ǧ.Tz›5Çì+ ´¹7à.%¢’}O«˜•(4PÙç©Å`ç'ôákAÂ>ˆñÁô8T‰Šƒ¾/$–\LÊÃ6+Ìý'*@êÆ/Í`kö×mr¯GÍ}Üh‘*êôÙXNu´UÉ ÜÚ\á‰Iò{›©|B•õ/cLÆõ±T% g­å!…0ßÖÒŒL܃˜‡Ù.J­l ÊÏ{Ù|Îûϳ ªôÅÇt[Ä™Éc*ž½7ƒT6R»ð`€D/Ar hØTH«ÝJ]ÕÑ„–IÒV¶drôrz3Û¾iQàJØÿ ħBpbÔMÖÔ×_y´û¤ú?ukÓËÒÆ’g:ùØ1%8C&0Jú/$šÍÃ^R—á±Æc’ÖBó\£Ø‘)êË‹±Îp_ à"Þu½Èàò‘1ošËPœ[¬VÐr¹÷§šR¸^¤{+ŠWw†®7L_ÚùfE¡þàŸGem©ú¨T_ÜíÇ"ÞÉôQ²’E"Ïõ2Ø ×÷B}è«mÝhÐÓ,lãZ>:•¨Oß{tpb½­ôe%™ô4g#åÍJÌÑùUÕÊlÿ ü×ß)&=Ý$fÿ’IÞ¦sݼÇÝ ÿTñ㌬QÓúF>>€JÚ™s¢ÂIÿ;ù~Aí]xê·Å½ìú –PÆÉ3çª#­‘”†Oo'#% Ü?ÛÇnÐsv $vý‡Éw’Ymß¶yþŒKÙšÂ%L<œ©;–:àW}ÈÏ¿ÈÃVUVߘbXBäD€wIËÀi¡ùGîrðp"^31ü,&†ö>NNàÖ‡Òó"}¶OèMTˆæ«„…º«é6ah‹IÚÚ~5Jš.!ço8€‹8HdêÕŸEí™Y>7 -a.á'2Á[ôšäe!Ï"¬‹„“©x/ɳ@÷|7$Ñ·@OÊ£¹t§œòÁì'|J¨ëÑè{>áÛÿ0ø. |1ühF.·ùõé±§FK²›UD{ý%6lK JŒ@è™à‚x4²5žõÔlKÁÓ’vUª+Ä£éÈ‹©ùÿs7| endstream endobj 3384 0 obj << /Type /ObjStm /N 100 /First 999 /Length 3087 /Filter /FlateDecode >> stream xÚÝZmoIþî_Ñßtb¦«ßû„V‚„@n6",Ë-BѼô$¾Kl;Úðïï©¶‡Äyqp8´ŠÀ53ÕÝÕõöTõŒÖ„Z%Èi&´ ˜ +,. /EÄ]$ˆTdÊ Ò’¹¼eµp$AÄ8rd“ù¨ÈËø(ÈjÇÓƒÍòªFc¤S#Áæ¼a6áˆX*¾ƒP’XŽ…"oGÚH)”’XÂHÊš¼/TPÌ —$Ï#°!мlÄTÊpÌ¡Àëßּ㸔îeF 0Ü`ã#-9á4V±. Êñî +Ê{Å£0 BBPArù^Å*4k¬Ëka‚ ¼ #¬ÔÄ÷XåžÇJ' ¦|Ï k[ Â:Þ“‘QØG@ÙNBÑ °'ÊÒBGŽÕ 怤X,Ðlæ³ÂEÅóA¿^.d&á‰e ŸýÀ(-`¼ÊæVx ;èÂk“•ä@ż„ÞhÏ`›…º¼Ï‚‚áD<1Æéø©¶"(Êjq"è…‚¼ÙAxªàóÖt!ä5`à(Ù¥ öæÃNA,¦S"ê<†aʉÈÊÔ †ÆòƃŠlf0G›µb0‹‡~¢Ë˜*ä$¢W¼†ãÈ6µð )ó` •Jå»phÉn >,­å-[D‚ôÙ`Ð#Éà#6c;$³‘­ç€ÊÚÆäDÙ³´f’µ„»šIÄ*±^ˆ,ÜÌ~n=¯à°ÁþLZ&³9^–=~<*÷N§íY“NŃç{¿ŠçGÓÙ|ÖœŽ?ÎE,”8*·NS5O'ÛÕ<‰ÛÿTR±_bi•}$ÍORþ¾—Óök,oÆóc0lW³Ù«ê$õ³O±úöôüÓašàÖ“³ùßy8úùç,â›O“(ŸÏŸïϱ¨üm怒þéÓj–v¦“¹(_íî½x÷ç?ÞŒOÒìÑëéI5•üd;-v„Isþ’âu?)?Óøt6ß:ªN?£ò×jyÕÊ?Æíüh&Þ … ¯ü9ÂÌÂp2_]<_½Z\_½×ÿ±ï^þŸ“ßï×]üZyñÿtˆùIߣòÙ¤™¶ãÉ¡€ø“'“Ù¸¿1*÷ÏêyÞ:+€VU¼ª¬…òØN·«öéÓé9t#Å#ÅŽ¬ä‚†;ÇÕá ákΚãà6Œ]}|‘ƇG¸ônTòRüŒÇŽÊÝyu阢V@ð¨ZK1’N@Ä:Ù®¹,ò6ÖÕžòµ(ßýûOT0ªðXy­|L`™_`Ö™ÙúX8ó@n AšÆDµ eVT(Ò÷¨€-r+ö"„ÇPnh]^áÎ)Ÿ-¾c¸ü°‹a;† ¿¼È¥Œ[^L¹ÒX\p% hêÜ-/Ê9RùK•ï~«ÿÃÈKíž(ÎËÖ~~ ôl8÷¼åÞö’j:Ÿ‹«.¿W³¶ /’ÝŒ#H- èušMÏN›4[ÔŒùÞËÔŽ«œT3¾ uÀGáÝ{Õ)§J Ÿ]0æ@b\Ê¥-Ë“+[&>¯ÿ7Âöíüòäç_Æv®ö‡c;ÝÛ¯þfܽýoBxÆé tç«Ëk¯¢{n?Vðç_>¿”¿MÉ—QÉëë;¡|¸åÃPþàü>¾Gù6ãü~ó§K¤ÿ«kQß„¯†â5|åcˆ»â+ŸÉd|å#™%a{Âõ„ï‰ÐqIì ê ÕýÌÔÏLöo áo·÷Þî¾ø „kù%g¨¹­=·R¬ÿ·lªùüÿuðï·oȯ à¹ø ½¼ÔÔ/ üöýJñÑþ½¶ó·™â Ð{»i §õÛyF«7ùêR+X²c¦SnêÓlVžég«&ï¯ôõFÓ‘m±1°!ÚPí\nM¤ò+]D†Àäî ò¢å ’Ú¥XEôí­¬Bc›®VÒXr¡î¼UisèÞ‹m‚-à”2Ï€¼´z©7'“²¡P|¾”)Pá É;ÈtPUÖÈÖ@i&V]LÆDÓ5¨))ê䥆´4\J­¥+,o ©¹LÚ <¤ N,%¨E¼*îÃ"Æ.~M‡ì¼1^‘7õÔ¦Ê$ßU•lj¥S•Â&Oê ¤û"°Ô^‘O™Œ,ŠßýtI¡Ê%T)( _yˆ§j´€@YS‹¯|2:ÀM\ã|ë›PSKUô>¡|O›˜QDÍq /„:d5Òzb·ð_ªkSùè¥òÉu€|«’ŒMã6é³íÕqò$$Q¿æñª°ÃÎò.ĦTûÚ8KFVYÄ{ç•W ´ŒkÚ{ж6…Ôaé´ù5QáÔzR­ešÔ´Ñš¢TÚº.ÉÆ5\ç¤F¦Bu­ò¿}B‡à•]3ÍºÖøº :E«QÄ›”<Ò®i½LÖõæ]•PÁçmŒ³‘A"aMl°ºÕ®íL•¢êlðž*e-Aɺjê¸É¤æ ~)M€2B6Sí?¿ï‹h9å cH|%±qׯï‘÷ÈW˜—]/ò­ ƒ¹±šÂ¡Ü’«‰8[£[—~ ³Š¶àOrôÈvè&•’ˆÿ]/¿+6á¦øË}nþÖ!~[Ÿkôõ>×ÐÝû\ê›YÝ·¥ºoKußðêÏ<}ëû†W÷ ¯‘«=ì7FU>'±üiJnD•Qb#ì¨Ãw¯Èk •A»h v ‚J¨Îz‡Ê+~ÿ’±RÁð™•F-JèQâ£ûþ âJ^¢˜óœ³‘» ‚Øqó¡=ó °Ý¹ÖUZÇÎcÚô!ÛjÔ¢(L¢Ý ÞhÆD+—$ž?ø±&' ckï¿AJíEþ¤àÓåø¸IÃÂéìÐù Š©"ÔÁY#7¸ºÑµFw‰ºØ™Mz¡.ò$ºHÎ ‰B£Ä5i€7ºÁÀskk)©‘Ê Y©¢QÑH ±Ý`’Ôón€?(+lÀ,¤Çø}vÞ¤|·yãSV¡ûl|‚sºae}V¥kB’mƒ}¡¯ë\ ÎÕ]"(Ö*­V>&Z£ÌXe^`ªs¾ †r[hZ»{á¶è$íuÆMÜa¡ñÜl rkƒÂ1”›à„v 7Y÷7½ú¸™Û„| ´vÅs©”ùâÑþmïî\á8º^áØ8¬Â1îz…cû£xÛÅÛþ(Þö5íkÛ×<¶¯y¬ßha³ s ³0öôaŽÄÌfæu+[Ÿj´ÑŠH9ß&dc¶vš6Ÿã¹â w‘ãFƒc~äÏ8ž?È\äx@{áéGÈñ è]Èg€w¨"åð¯ºZWmC M㵫•”VɪK­£†ô&ß¹P0zþÞÛøBñ7×õ°T"-ßkoþ\›‘QJ“‹ þÔšPz× a¤|eº®Qce´ªm=«¶¦ÔDëîAjm Bą̃CsNÆÀ9ÍÿE“¬9þ.¸ F–ù3üuE:¨š¨ª ‘…$¹«´ê\Ó¢ðˆ®mµ úZÙáäeÇ*söüQ¢Ìms¨ ãÖĪ¡ÜÈc…²C¹áiE ?”…©×q(·ånð‚ù¥ŠYV endstream endobj 3507 0 obj << /Length 1220 /Filter /FlateDecode >> stream xÚåXßs£6~÷_Aï!3µ" „à¦éC“æÚkoæÚ¸}IîØ²Ã#È—æ¿ïJcc“ØéM§±X­Vß~ûC‹™ƒwƒFƒóë€9ŠÃÐwFS‡ø>âaä„1CaLœÑĹu©ï )ÜË,)Ëêç•/ç"W‰JefÔ…ÅÞ§ÑûÁ£Áç°C Š1sÆóÁí'ìLàå{#?ŽœG#:wüD‰^˜97ƒßØš‰›æRÜ4—aÄsBÆõYeî¥ÌØQ¯sn‡Œ…îX楪̿Q…7$ÌMóYõàÌ.Ð3kúïf©~=–s8­G\ÕV¬ßÞa†áxVVoÓ«¿Ï¯ãqsm<¥ˆÆ¾3$Šƒ ²½jYh<ݼҦ„×0ÁÚ‡1Ù¤úGN[¢y»B<=z»²˜lØÓq¸2„¢˜‘ý êU©?3¡ßŸ_“À‰A µ.p6óA¾Ò±ßkËŽ4–Á=–§¹Å 1’ÈPl?èIõµ°ÛWèÊ5Ê{¹rýóèf·Å³Ú^•¤ùŠ~+×-’B;yï?]ýÑÒï¢ãý»s;íñ?=ŽÝ$[Š‘G4¥âðº U{Ñ¿8fó@IN&ôÕrMžÌ!Ñ|=¼`ÿWÀë@Z¹—2Û‹\@$®‰’Å7]è41Ù©ˆ»¿xÁÞcXmgÖk³u"ÈÓ\|^&Yªž¼­O¼Îøí{Þþðô_9ô+é,_×Í—A~Rî^ü'¹{ ævÁhqD¸Oô¢Z·JÌY¢êNƒ€X̱£1Õ‚ßUŠBDâU/¢«À:³v(ôc…¼–ÿ~¥°qÝ ´²C­, +Á/äP™Nö3 jUG÷ûßÚWù17¾~\-í à:@aÓ…s9I§O­do¬7Fmf|[„çc÷ï´Tºxí=`Of&¹mZ-E•Ý9UÛmV³mú¿²ÌÞiF½Z‡µ7;(V«±‚/H»˜5ªÇ d…ÇtZ_R`pOA‚jìq0"Ü‹¯;­æËLL-&© ¥©%i/RÒ0®í.DR‚³³™‹7olàš–° ÿòW™Ï@Ï…IIVvñ]c’ƒÉ·'·øÆðs¦‡’p¯”Ûs"Щ¤Ÿ6k q_°~uز.kÕ¬¦+:ñÜàYãŸù™oˆyÜnc u’¹Tâ‡GÌÝN2Û9™&˜ FâçL¦ëÁyˆ(×…r=8bä‡6/¼¹(Ud™×maŒÝºãþØs )ÅÀŒê ‹Ù[×ý]÷——Õt»Ò_IÓ²?AÒ¦Š¼}üñK—õ endstream endobj 3533 0 obj << /Length 2391 /Filter /FlateDecode >> stream xÚÍZ[“›È~Ÿ_¡Úª²Ú}¡PeS•Œc'ëÝܬÙÇHôhÈ"Py2ÿ~Ïén ÄhÇr*/jšÓ§Ïå;_†Î¶3:{óÇÕÍ›w¾œ…$RJÌV÷3& T8S‘$*b³U2ûäq1_ð ôn³¸ªìíÛbsØé¼Žë´ÈaHRÉ=&üùçÕ7ZÝüç†Á tÆ:‰¨œmv7Ÿ>ÓY˜Q"¢pöh¦îf‡© _ÌfoþqCš”p‰·xi”VcJË€p!¥A6aó£”zou§™N@UÚëjS¦{£;*Ü,ôæ§¹t¶à>Q2´ÿ°®êrΨojk…u\i{·9š&Ñÿ¢”çi¾µ¿ë7'Ík]ÞÏ pCæWQ:%Ð\åÖÙíŸïofŸÌ¤sŸzzΩ÷ôˆËeÒÓÚM+ÖÿÖ›ºš3é‘saG, ŠûvGH´‘<7÷›R;Ÿã¯´²×öAàíâ,{²C{·×æ Ú^Ь0g^•&úü¦qÚ»¿¬>Žé²)rôÂvyØÔE防!>GqË%è>Ü ÷zÊV²RY[ýùíÐ1Ú©,ØjàÅy2áQH#+N&DÁ4æÝò ÚÚùt!„ôþv¨÷ ?ƒÖÇ똩ñý4¿‚ܨ±À­I\ŠYÝLðMoy<ˆ—ËJ×?Ïȇ젇¶$íŠÓ‹ ˜‰‹´ªÝ¯âÞ^c¼P/wmþ¾oG™÷eÆ2KÛ¹yÒy %îáìLi%àI¹w[äµ{±Ö»}×Ú½^Ö£Ö2¡+§ÇÀ&oã:Æ—Þ¼ü‹¸BR!‘IFÂïìŒF$ðY3a5"B?› ¿N‚Óì!F­ŒRÅÜPOs·Ó»µ.ˆ‹">YR p¯cgƒS÷öú .Ñ÷¥õù"Œˆ”Üy^6[c8sŸn Ĩ£®>xÓ¬ã3à“ƒz˜#ÆèØ"•Ýf þˆíe›Ú-Oä Nƒ¼æ ®U?í&qénò¢¶zT ˆyê4h`ÕÜß&J<ŸV¡¼ÁKÃÀ[ã$ƒ¡2*àëP’,–¦=;æ\ ³pù{”òV_­™öj[GËÍÃÜú —KR‡ÊÜÕ…½ëÙIð°M¯ê°ßg©yÓÔÚ"š’åªbL ˜Èœ„ªÇ!¸ã·¦ô˜ªciÄ«–Mô†ûܨ»ÿþÚC~áVk9Ëí-¢N]-—æ"ÿ ]%n þ&g€ÂÌ’¢KE¶hÚÁui™ Ü¿²hˆ.—Ьjðàƒ›O@A+[-œQ‚ÐA~ž+ è+¼qÕU ÁÍ„uQdcR"Ukõ´ú±È·ërB3g€ yá>Î*=²4¸& ÔÑì’ˆ[F²õß§}YÔ€}:ùÜÏ`ÔªWŠ„a7œv95}@ç’Ž³ŒÕƒåµAËoMÁô¦%¿€¨Ú•ÉÔÖœÀÒ¸ž¡)4lgʼnyûÃD¾…Y_p‡3=;ª^k:+0vÃµÅæ!kíœKÒ†ªuŽ1¿ý.H Q?5$"èc«/Á¨'¿Á†\‘£È uŸõtïQ´²Å1ÔoŒ*A¼GT ¸RO`D‚°]¸‚ï©;S^€Ö†îúaÃ…à%ÑRuáeuY@KµØ’›°yl!w,;džavž;ñ‚«) ã ¿vE’Þ?]ÆêâÜ^5–ßÿ#G¤¼ÆñÖÐs¼ytŒ¥nŽÕŽz²ÐÕý‘鉨˜j)غ$ÔçvëGÇ%„MœØý°מüÓ§ö!>í‘ð0$>UÓ=•PôH޲ÿG‚#(Ø+ŸL›òÕ—kÚ82è7¬ ‰-¢6Ä!2Çij†„âDìkÕêå‹ñ zjaâ®L6™Pû«Õr43ŽDÔçWeÃÙ­û!% Àéå[&„@.•âÄæËŸï_‚¿\ß.Ë ƒ“æpàG`¥=¯U˱±€ógËh,À÷vèƒix}SìíáŲn$+MvPú$„+ú=må1HëÅv!w Cšr £paÌÒf¹³iîL†ÌxA,QxÐZ[V1~Ûm|@£[n¦½!$Qô¤‚ËsünŒ?Sí dñ~·ÒJ#™\O° l‹ÉÞõ4aôÙž¬àb¼uLüaã’ÛÓØê•]ÂM´øÑ]ÓüØ™Ã.®’˜®u…ó\k$ ÷ƒ¾ClkbF08Ù·ÃLp8ë>Íš®- è²ÄÆ©kˆqeJ(>0®[»ºmçÂÐZWnRíV"Š"¾`+×-}š \„ÝÃá%©§¸–àºÌ” r¼[ÙË÷qcðÇ£Á±î½ôºAÞâ°}Pk÷Ž-{›SöÌpì„•Õ±áù˜f™c€à ‹`W¡˜ïƒÌˆPôÚƒnb°n¶Ý—ÅΚeèü#=g"A¥9•]s'æ…”õwr7²s×Ý þ•¾Ó<¿s?ÿN×\”Ëÿ1 duâÕÄ\ªø±­SÄõ…qsEmÚ¸éj“ÓWÍt§­‘Šƒ_¬á3¹Üþ¯Õm£F endstream endobj 3553 0 obj << /Length 2174 /Filter /FlateDecode >> stream xÚ½YÝs£8Ï_AÕ=,TŬ$®»­º›ÜÎÎNíÖ~8w™y ¶s‡! x2ùï·[-aÀØN2ž}1Bˆ¦õë_·ºÛ̹w˜óöâ_‹‹o¿¥“øiÎâÎáAàÇQâD©ô£”;‹•sãŠÀ›‰8qßYÓÐðªZn7ªl³6¯J˜’L —Òû¸øñâß‹‹?.8|9¼'‘û)“Îrsqó‘9+xø£Ãü MœG½tã!,åøbáü~ñë3jvW_HâÅ* ”~ 'Š\RþO„nVgÕªÚãÜm´Ž{²'¿±ÿ”â³é]JéK–ßeäG<ÚßeOö_$8EÁ×RŽfŽ€µ|$Vã/ã>þqì§ðEÒàÿä éfa~½ ø2]ëë’F~(¢.˜d øáÞ,`¡ûß¼(p$Ý[E3E¡V4û˜·kšo׊¦þï æ*üyzô8s«zE+Ì6·ÊãÒ½„9.ܬ4ó†ÞΊ¦ ¼Û–Kr!œ®U»­Ñ›Üƒ­Í8x”,é#þqHÄù<‘¯‡ôA,OÓ¯Àó× >ÍXà'‰AñŸEQ!€ÚÎ2ptiŸT37ÁUªïn¿½³+Ž@ª®%¾yƒÄi‡Å¹ÑR›¶ªUC_˜f<è « ·ºÛ©D£kºä%]3ó\mЬ¥·ÙÞ.)DãC2½gfÔë½î)7Üð&F©/ Ä{ÄU³óé*k3Z=…åà‹¸Ž8Ìú¿OŒý8콞~‡vÁw´`hœ¾ß›…Aäþ\‘_m²¢xBgK4¤,5Ιºjiþq­JšªU¶ÊË{ºA—=€ç~ï4€ô½’>sWW›d=ÐáÇDtÿYû<ÙÉDan‘or¢Ü´•¹"™qÈáƒí%}rUmoQ¿¢‹R0Ù´€ ÜÂFÍÌmUfØ}lYÓ”0÷ó„IDŒÍzØ(°Ñ ÊÚ I£uô"ëòˆ;¡(\Òr©l\啯SD©Ï@ ‘ ²·HLTÆÁ¶QH—$p×YCSK ƒFo4,z°ZÑœvIœ)5S=ƒ*¤†fŸ–^—øÃÕõ|Úô$OI´ÇÍåÔñ‚Ì©@òå‡Ü]f¢IÄFKÕó›ü~ÝÒƒu†ó:‚)zØ<¨eŽ\ÖÐÀ’ ^®é™á%ÎÞ¡´[ÂÍ5êíÓÙŒë©=Ü}¡ÊWF1àc^ØìÖ¨º®êfç;£½‘AöG¦ÅQ³®¶ÅŠÆ÷ªÄä¹&<ÀºE 7¬ï*º>Ôúìø”¯Œ<ä†yPñ5Ž-I{)Ð8I !í±ËtÐçÜ}ÎõÁ—Œç5X—fvq¿¶cU+Ê=tpÀMVEÜç ÷£(‚ŽHþ’ßæEÞ>QvOrp”™|Ÿ\d5{„?az vèhP7`óbf%­Ái µšŸÈ͉-!%·½¦Z8šîJØ>§C¡“ÙE)V‚H0£0Ñd1²Ò¸û$C6!&†šöGaTÑDxNí~ÂøPûë íõ¨¯½>¹G£øYG!.«nÿwzë!â ìv<Ý”œÁÃÏϳ0µEz–RÆòŒayË÷ŽÐÓ´9£2múÊô mXdÉ£®®ð®¨3ÿPÃÉ€ÁÍ~i×ê˜;¬LžM­º×‡HÉ0Nü$Ú7×óèsF…,)D‰ébØÑPáÕ[9ÁËbùÈ~ÀÓó’ò“”Eg=“gÔ¤cÁH“³˜øÕzž01Èåâ+XXr?ˆÎìî2„õÆ»ž `gé3jÔYº¯Ñ‹üýÅöµö'ìryô*Ÿ0”$>g¦?ùSe“åƒéô&ó¨(Á›[›¤›*TÃ6Î×·íö`2_*û^f0nTÓo.ö{á£f;ÐB€£…ö?@‡ØV=4åšHºÙ|þ[ð 05”XÂïj>¬óVÑjL¼Y eŒM¡À’ý.„OÅ]ÛéæS^·Û¬ø8H2GˆÏìKµ uבە¥X´äØ¿#h–™Égj•5huÛun mT±Â¾ŽE×"^ -² ý­­«aŒÕiÓå?±öF*+ÖTÑ…î£Q§UfâxcŠ?«ÛðÀ”¸¶7ÍÃA;jˆÀtƒ¸ihÃUoÃã®.[eÚ×¶ŽÝÕv侇Ô|F —U¦RŸMÖùÆU‚€lœÀNà3Ÿ7ªý3j·k—`×IñšÔ}×ÒG©©P~ÓÒ·ËaÛWŸ p\¤I÷)`ŽŠò‡"_æ-¼ .E>ÙñBZ^F­FÈ™¼£èr÷/žö@v=ÖR“z”Ï©ÿ‰+]ûÜ@Å#?Nbð8Hº¸9å?!Ç€JMYÁ_âÞ…ŸÈøå’–Ÿ?ŸKµ¦¬nû!*ÊX¦Å@5v”v‘2d&Jîââ/@+}`ø›ºób8T¹TÇbÆâФù˳gáZAÍÕ/:Ku–|0~¹Él§ëhMúMÔð’eÇE|ÿnñû”Œ] ñ'‚ýˆñËËe±]©‰æ±„35MG]è,lÛçˆ8Yqÿ?Š$:ÚƒÆÆ|Èä0D¿+u—SÇæ F~™g÷Hò¬Í„g90?úï4ä;6-1c‰ÃE Î¥Ó’?.|È+„Ð+zCýȾg&¾}·±sUA–²ÿGûnõŒC‚‚¦~¤~AòÓ‰°šÎzªÚ~TÕäj½Œ(S:2¶~‹!iŽl`[x)s·àŸ2ƒ#çt \™fâ9“sžZÐÅ>èûGðU¥CïÓ=º¨«Ê=ÿ?Iß h endstream endobj 3550 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1PHDU.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3557 0 R /BBox [0 0 500 425.53] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3558 0 R >>/Font << /R8 3559 0 R>> >> /Length 247 /Filter /FlateDecode >> stream xœ•¿N1 Æw?…G`0‰ã\œŽ#pÇTºD†ªH¼>Î5U/#ÊÏÿòýœ#:òèêi÷®Àý{Âý îá~)b»v&kPLBaÐŒÓ çAÁQÖÈ(‚2Nn¶Ûùóç´Ù¼¾<~ÜN_ð4Á žr¿fñ u¶@t®Šï³ð2‰ZØëÚp²Ñªù2Ÿãÿ8£§!fEΞ8iºætÈ’”òpỄ2$¯$q![ëk›±Š’P½˜Ì«Â.ÿ”l}Ž«]K 5fb¶á±O´úõñ±OÔz檘ƒ'—¬…Å%r²Îôo`¾³Mÿ}Çh§ endstream endobj 3561 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 1197 >> stream xœTkLSg>‡SÎù¢]·IªiÀ¶YÔLSqn¢âð."oÅU¬Ð ´å"e½@‘ök+J ·–õ2têtCq¨ó’©Ʀ[f²K\Ù{šã²œË–l¿öï{ß'y¾÷yŸçûHBE$)LSªº9©Õõx=“%Ù¸(v*…Ë"é‘eѬTH`!……‚cqѱ“ þU°¼ †WIƯËô¾žžš9söì7Vj´%Êœýzù[óæ/g—È_ ò$…N™£–Ïà…ŠvaÛ¤O‡ áΔ˜3p nŠÁÔh3]Y^YeÃ6lq™«õµújFKS3Wn î}¸CvåÀñ¢&Γdåj¶¾·?ÖKK¹yGèÏa—£˜­õØko³¡˜3¶ŽöC¾Ø‘kWî\Ðõlê•qÄuM“Ñ;$§g/w˜ß&AÀr‘É;(¨e3Ä3Ñ»»Rº9^¥T4WØÆ'©rÚÝvt‰ûŒŽïÞ=x>ä¿Ø#ý Þ_j5`É>cÇ5œø™_¢ÎõC¯ü5 aªe2ZèÄM^ÇW²a€Ëd‹¬æw*Q10/6…qÞõx†kP (f†m‹s9â2¸Èø/äÙª¿XDðö±¯aO'ù„—0ÄKà^æ5 ¶t‡ZXÔÍÒ£ù^KFþææ¶Þ¬öMë3µ»òeù»Êso£„Üo¸›´=ÑbNªBF8ÒÈ$¸Íõø>‚› bDì%^ϱ“p¡|†Òñ\D¦ˆï•×Y+þ¢Âº¬‚—ÒÓÂ,u•58î!XË´Û›íx_ò|ì¿ìý‰O—…´]{ûtÎá“ÓDÃÆ$qGMMÄíœ6+eÇ•9]úq7x5W“F‹L‰¹Í§ÐÒH¯©®¨sÜEÌ!777-ÚÈÔ:½.¯Óƒ%þºÒ,gdìË­–ä*ó‘yb­^¯Q·:»[[»ºô­jo ÿžXŸnø­Ÿâ–YbÎXLW6¹¦ñYfp²MqP¥Ý±./'áí~í'%ÁŠ>| ÁÝç|=n@o13úš ·|,Þòþñ['¤þÓugñ0‚Æõ´¾a¬Ž÷%` œ@‘c@QÇf‰U¹ê ºíþî@~»JÆq‚õDe l†v5С ßN ¹…ÂÑ×âKÔe_ endstream endobj 3581 0 obj << /Length 1621 /Filter /FlateDecode >> stream xÚíZ[ÓF~ϯð%2Ì}<«R©ì…‚Jµ%)ªv.¡ý8éãøa”™¬©Ì× íO\ <,I7Ân£è¿Í³”kL`f¶ _çXémÝDK?lí³®vÇä4&LÀ­ ø ¥¦N^NyƒîÉüôç_Ï[{p]¾JC4!‘È-zNõÁÀÌ·}ÜSZçf{Z .«"TN·lý¼a*ùøÓUn²ÕÜ¡Ïz(ú¬w‹Òýõ £õf?Ì5ÿÁþóüً˯VOA±c½L8â;ÙŠ$0{é·9žFLÚbái° °±¡Íl®†ÙÚö·0"ÖÉCÓ;ê‹¢3ÌÑs§§¦F£Û¾g»¤¤»¤‚‚mÝü Ær endstream endobj 3468 0 obj << /Type /ObjStm /N 100 /First 1012 /Length 3244 /Filter /FlateDecode >> stream xÚÍ[m“·þ~¿Bß•²V­ÖkŠrpS±clpâ„¢¨yÑÂ&Ç.u»Tð¿ÏÓÚÕ‡yÙ½ ,u§™ÑHZÝ­§[v>+£Ø› ÈEÅÎ'å)¡² 9£J‰¤@ŠŒõR²Š(Ô‡¬ˆ“’Säm’WM8A ­¦$­Å¨¬áúnR–K)+ËAî%£¬'¹‡ŽlÈõžU69+%<0VúHøEAÚK¨Â.£„.=¹ü‘ꨒ¼àKY9ã}6ÊY’–3)Çõi¶ÊÉÐQbåBEšB›‚0¼1}ä B‰"'ˆ‡¹J,£„¡²'£<𖡤`ø:"ùå½ôæÉ)L}-Wë¡åù¥¨|äZ}ÄTë¡ÄÒ2^ó)ÊŒ–s–©Â¯`ƒŒ<'œ©è1kÞ‹HŒQ!šú.) Í cU4˜a”XE_JNEhì-žú,÷,žF'£„Øc’ ð˜ød¬ À$'ª#Çeb[Ÿ&•  èÃf•åí¤ [AÀN¥ì$^ÍuðFeSG ÁeS{€zd²2‡‚t`Ñl¶U´ÀšmÀd@è*³ˆÖB(¹N¤gÔsU´Vv^ÞðVeŸe°o$#Ð1vÈN†×ÈàŠ!ô:Wr×;nœÜ U»œ(~b‘’L†n¢Õ'²Ò €ˆkÿÊOÎKc,¬¤v¹&бÖM(æPï¢7KÆ¡7 ™¬u2菱댃å:˜S“ü6RÁA†ƒRmC&+ÓÅ>É[!J1®ÍcK%¨ó­['³{«åFݺ¥f÷€7BðFý"qweN!ï.ÄÎE¶W€˜1+Û €„µ·'5b׿Ջo¿=™=<_ ÊF=Q³‡§÷Ôìqy³QOOðH =þýUÁƒîy9™Ý¼²Ü¬E=+œ“Ù/e½z}>”õÖê½˸èî¬Þ¨'7l.fûuçx[|ØîåÛËå ­=Ùú7ÁSýÛ¶M+P+ØVàVp­à[!´Bl…Örl-§Örj-§Örj-§Örj-§Örj-§Örj-çÖrn-çÖrn-çÖrn-çmË çdöèu¿©×?,–ÿ9™ÝYå¼ Ö<}?{0»û„ê…ÌÅ€Y´4‰:maÅ0Bp:Ù€j·«†=R³û«Ç+5;U7†³n½¾{w¾Ø¬ŸÑ3úkùý¿èæY7˜’lî‹Ý©GÁøFÒÁ5vi7E&MÙh18Ní`S–IgL|à áUBíH=Ç÷CJ˜ÀKˆ†X" <¦û>•ìœÇ91û QoíÝCùdµ±XøDšÜA˜‹™‡Áu  Å‘{3Œ#ÙæÎNˆk®&aVÎê³·ÖhÂ"ï=ÃiùƒP÷%™9(Ù`A&Bì¼ ÖøtãÒèyBI»¨…2\ N¬ãu@ #§#–UÊ m°ž “5V'!é;LàDÚ£Ž ¾”$Á¦MÝ„‚LV 1…¶d’×äÝ9{$):HêÓ€2ÁÙD¬—ÊQÔÑ&Äà{È~DÌ .3%3oëzðãyßOéX#BÍI–ðbÄ¡)cm‡™P_ºÄÀÇB4†õÄŒíG§P„éÝ:›¤%„hn L$føó~0sÐÏÐñÜô%Ž1ŽØu½1qJ&"4“/@[ ÂK¸{0èéiÁ„}¾\Á)5ÅÃÖ¢h‡‘Á„ "¡È©wƒ7¶Ìóh6Ç y"mf8xèÿZq¢ ãi£ŽH0mÑ?Ì5¢mð@-4$€†°?êú#äë %-ù ¡Q‡­?iì»n€Ï¡{êAˆú¹ïº`]æd§ä»X%É—¨½×’ðúê#ê!%‰z©.îYôž_–Kkeâù‹ë¡%£sJ—x~ñ4— ˆZ™CŸ‡@C?ô¸ˆ±pâìÓ”S#!‚›LâSÂ@¼düaÒàK×á)üƒoiÈßþù/E 31$IxkÜ_¾>;{ú‘Ê\+‡Þ–Ó¾µpê=kƒUù”÷¬íÈ,yÏÚ>×PhÏÚ¼/f—f̾ò`´#Þ·¶«_߯¶,ò pûÖf£Mz§í$½÷Ê_¿“+Q~íÌ6ó3ÛL×Ïlç–.Î-]œwébÙ Ú¨l+p+ìÒŲ ´+´Göâ‘o…Ð ±R+´NÙL™mf",þA›aEu›Á_–}/M!gµƒÈó“PŒðfî8DTl°¦áw˜8`1ÀÜ€iÚ\±c¬–0óÈE€|( g–!S¸iÀ¼³dÞ;ânÈD&@{Ëg˜WÝ‚  è°†€…Ö§}ÓÛÏ:ÐÑ"ø3uqžæƒÉ‘ çÔÁ$3-ƒ’íÔ†ØbÖYfý@ÄÆ9ÛØó|t†GÓ™ÒûùÈCaSæý„2v@j쥌Ú¦ø#ºœìÈ'úÂVÁ8Õ,¾³ñ+Íí0h ±œK·®'<œ–Mj/[JöA“—“¤;³œ шŸ îé)¦Ä1™/³>ç£QLÙ4ÍÑ_`r åVÎA“ìJ `¶ž9בò`œáHˆxt„pJÔ¿?¤/2³Cð™|‚…’|%óÓ&GˆÂ)¡í%Ø£š)†*Crî8gÞn`ï09IÇïé‹çB$çp"À¡o·@Aœ8¡¥ôµžsA eðîŠÊ±§êÁ1o—߸ËQËç `€$Áón®¶rcHã?ä„`?Q›aIÌrl(i¬á{¶-ù`Ù6د¶…ËKŸDrQ;JÚ“®lû|8x‹ò Ëÿí§þß2‘Òøƒ—õÛoþ¿ Ñc€í÷׋B#ú¡ýЈ~hD?4¢Ñè·$|ûH·$|ûH·$|ûH·$|ûHÂï>’x:Õ¼¿¨T‰ë÷d` è"¸z c»yXfé{3æ¾|Ÿ•8áÉÌIœ©òÌÀ²K—n0¿Ä’î†ãÜïxØÃ·|ÏÿÉ-ö¨ endstream endobj 3623 0 obj << /Length 1869 /Filter /FlateDecode >> stream xÚíZÝ“Û4Ï_á§g†¨²dIv˜^[`†¡´G™¡åÁ—èî Žl‡ôøëٕ䯜äO±W«•öã·»’C½kz/g_^Ìž¼…‘XJî]\yçDÉÈ“± 2¼‹•÷Îg|¾`*òŸeIUÙÇób¹]ë¼Nê´È$¨`~ÀÕüç‹ofÏ/f¿ÍXzAOb@b*¼åzöîgê­`ðGÞΰ®=k€3ïÍìûuÛ¤ýí2Úß® DáI¡ãÂn÷=cÂ죙g&)(ई 膷ÖëM–ÔùŸ¼€µ‰5lLA£†ñSË1$IóVÒíFçÉZ[û¼RÂdÜðÞ ìÔY(ÜÞ"S §Íïs&ü"]9Ф嵳íë—3ïÝ‚IæïÊù"~j5i5w£ï© Ë"¯ê¹y­êÕÓ§F®^ÖEÙn5†0iìJ‰¢à®ò=ÓSB[e²"¿‹C¤œ½§”•Uý nSX¡fÃùóLc´UsÐÑŽê“dIYÎê'sNýÛ±-Iˆ±1·ö¼ÀÁþT†C?¼‘Pñ#ê1Þrœ­’:ùd aO—`tÕpƒ1øˆÈÄcrÔu›eoç tζ< " Ã€P …Jˆ/Ô1”$„°\ 1+íÇ.ˆÀŒ?¡_éÚ¾W–°I? yuVYz]8þÜŽ§ëäÚ‰ÐÈø¡Öyeò’vi}cùêÇåü¾'ÝŽU½L‘A¯,árÎе†7q2óE½ÝdÚ†¨*/Àö±ˆ­f›²XêªJM@õ·ùJ£Ì…"=Cî&^P0±ÌA,#ðó¿L4\ª‰†ËÈ$ [äíàÌcêwô}8㨃3ßÎŒI‡â`¢0ó°áƒ1d)„ñ@DcÜö(Œ#"£ø!0^˜Ø]pŠnÙsϽ!Ȇø"|×G8ÄÌ $fÁ C ˆ9æ×æ…Ô¯ €pÔKÂè}ãJ¹£'YV ßw­¬‘ík‡ìf˜© Z¯>÷c‡ðßéN¯áDðÇ(Û8’öÐŒ¤«²X»Á>Œ‘0¨¬†‚Ð/¶õBjŸz5÷#<í: OÕ¯«ö­¼uô; ZãøûÔUȳ\w/rüáÂŽ{Ó¿;ü{UÌXØêõ¥.ç‚>óÀÿˆ‰#˜å!L„¦»lK2ŸP²NÂàH«w!=Q²X@i{bššõvA ¹Ø³ç" ´…*ô¾ÓZÄD(õ¨1^åβdJÀr›oØIM`Ž ‡t‰‰âѱ&ØÃƒ‰¥´&;«jX«¶®Míü„vBŸ-Å1Ô¡D‰pRÇö=0O*L².Mò‰4é²ßöÒœõ›Šs­sm•ÏÒ?ÐR޽ÊÒ¥=†˜W¼f:lÛÍï›a§¦<Oä<@¾Òÿ=u‘·M\^>­ÆZÊbªÂ®Š­¹\ÈtO*,ø§ŸºZ=zænÚÚãËŸž¿þÎ>þŠ+js§±C[åj°úÖM¹Âuö¬:OUÚqíPE,p07ï ÜÔÜÆuiÞìþUÿZ_õ¬ü(ouh‘{_縖¡ÔõÖÙëQN2Ë&peüÁÅC9H§1Ò»àŒD¡K¦¯JT²¨!Aš~Eþ·Ú´æùÅ6_â{5¡Ü0ëK¢"e¼ 6á•Qk£Ÿ^}uþÔ¥ûöpÖÔô3—i®oj€Ñƒ@äTY›^g¶deo›âò¨vêA†™´‰ÿâë‹7{{ÜIj4»Çhß6õ-\/¡?ݧåɇôè `²"‡¢3<Ú÷‡ÇÏõaW±NèýÛgW§×5Cï0qÝf¾WŽ²ÆœØTðé0žðõhëšÿe’eM«ßÜL.ìD;+„&Òiý3ß³÷@S Ìmsp1" Àƒ=S$Ä„µãKó vvä¶; ‰4­ß¿3ŸÑÓ/S8‘{ßC^ëdõDÒã¿;<²/Jó´F]ïnXu•öx}k )paóé˜À êt@)õÏu¤YSéÎuµ,Óù‚|À£‘ÈæÒwÙ}„.õ¦Ô•Î;¸·µ{ó—xkÐ7%‡E܉Þ6æ)³÷g¤½ÃVD2g /|náãHâ\ùÅå/Âç†'­ìo²­‹uR§˜’Ìe¾ÏVuöIj{·.›{xxX­,M¹[vyHCÓp/»Ÿ L£Ãs¦³DµÂo²t÷ýp4A9GÍѺ·öÅ6À¶S€˜£Ã¹:ö¿¾r¼ö'7½Üξ´+¡L·Ò²ÔÎfÈ×\ðà‹¹"ººµ_/`†ýˆ î«> stream xÚµYKsã6¾ëW𔢪"à›J6‡µ3³“ªTÍ&ÚÊÁãMÂk)R!©ØÎ¯O7|@†8ÎTr±H¢Ñèç×Ý0wöwÞ¯þ½[}ó.„¥Qä;»GGø>‹£Ä‰ÒE©pv…sçzþzãʼn{Se]G·M~>ʺÏú²©áSÈCÏ~²¾ßý¸úa·úm%àîˆGÁR:ùquwÏt8óÓÄyR¤GÇ€TàÆÊùeõߟ‹éq›˜aÌ«sRÝw³V"Õ7ïÂxî€0aAêÃ>%JSW/De¸ÉãL„#©R[e—÷Í»»_læ}Óv¨2[+M>ÔÄs ôM»n§ÖÊJfÒL', "Ó–ÍãuQTèÛ#L-«“ñá#¸+ú5TŸó¬®›žž4i~Èê=š_08=2¯ÀæÅUïaÄ,ò’ÜêÆ8Utݺ@ðÃsoÝš¸§¶Aëþ^hO %ÃÂC—õSY÷²UQåF?lÒ6èËz¯‰Ù^vÛõ& "‚•»çª/O•ÞH§­=HÚZ5Ya†|4ºiã¥: ½2NOE~Gcl·gú}ÑÓ†Qbyi<£9A(d ¶‚»ŽŽ6¬„¼ÆÇ—O<äüDlÚ ”Mli]d=fv»ÝIæ%ÆJøPÖô«×keÉãZ ßÑ:øû„re(ÍKG_în6YK¨Ïð„ภ¼’¤ØnÉú˜X›°ÏV²ÊØ~¯Å¨µ\Oe$<{›VU“ëZø‰©YàǨŲ3e½œÊgS‚êªR¢ªT:= &…´ÎgUæÏs²#í˜V+μ%Ä¥_4r£¥„6€%Q8ô9,ràËÁb7 eßžUNl´JÖƒG04œâANá£é[CS£ íláÁ‚©KøÞ ìùc˜çêîa¬¤1ãqjb×Í¥Æ0^ˆa ‡§i ‡5ŽêE¸µD3<-Lâʬ%p”Lê‘4ò|ó¤ËH =><õÍò‘HTÉh{VufÙœõ­‚ý² ÆKÚ`»Rt:¤*ú¡Ý«FGs:dx WxënôLЭb/…ºãT™è ¯¨ž€‡œw SðL½·¦À—àm†½xø<ø|ñâà³ÕƒOh}¢SÿeC&hiã19¹½Êð(z À‰¿ p"hH/îçù€ôϳõ36Là3L 6¿cœÊKºòà–>g1_­ÁÝǶ9êŒÕ§Ñ­_ÙM  o0Y¨K8D§¦?èîé2ò‰O.Oý0ªéYϲcÞ%zH7f(ÐXçöÆTý¿Î榖¯+ĸ†è|º~káˆO°ÿÅ…#]*ö–Y0 U«b‡¦ñ'I×,˜sïô û…ã_jð¿:þåku¦|°/"eaý]ðMðò5&f(Áfc•`ˈ‡|œè#Pômƒe’Bõ†Ÿ˜ÀN帋ÛÍÉb©”#ÌÇ…©eš.´PÖÿc¾HÿÊÿ1†³DÌ‹£`þÿ ÐÒî=^Dé«Lu#L¿»u p¥“î§Lë!ôÕ“%A‰·<ÜŠtPÚ›”/¯_eóm£ÐãeAèÊúRý?Z"jJ endstream endobj 3662 0 obj << /Length 2164 /Filter /FlateDecode >> stream xÚíZmoã6þž_¡OWˆY‘)1ØÐÛ·¶@½®¯÷!ÝŠÌ$ºÚ’O’7›ß¾È’-¿l^n·Å!@$‘Ôp†ópæáÈQpDÁÛ³Ìξ}‹ %JJÌ®Ê9IdH%ˆT4˜ÍƒËñÉ”%iør‘5½}Uåë¥.Û¬-ªšD$XH¹š|˜ýtözvöß3 3DíI¤DE"È—g—¢`?á* îÌÐeÀcJñÅEðþìŸgQ_M©)¸°jÎnµU®ZézB£Ð+M…Ó{Ýè¹½»»Õ®/¯5Œ,oìSæ«Õ„Gὓxí;Ñ>kX}ã,üåíYpiºßü8{ïFXÍ]{uõ·» yJ"Yl•þq¹Zh\Éæ°è—/‹"Ö6?¼ú×Ö!± „ lÃË[t¬ì­LËá4ö.%1,>a“)¢(ü8aqX¸6¬?Ù;˜íâ¢(‹ö¹Þß"M¦Š2¼£8õ·o„ÌŤñޤ$– Ìiæº\ÕU öëùùd*q²¢n×ÙâÃÀŒ-O½«6·¢œèÐevãÜ} àpë Òõ¯Wó¬u¬1ö~UeÛÎ󪞃ë÷€—(zÈÁê ¦",`‰@J_L¦<ŽÃ<[,<–®&¬ƒJÞVõDlËú:¼Í·[ zàòßÁŽÛøN*’Já]÷ÂŽÈNHS? ½_é2[âBS¾{švòþ>"O‘$b~@‡ o‡µu?õŒy6íüââã<”-²ºÎðî~DÊ%I;djÂý€1[@‚”Çlé$üÍHø`ñ˜T~`ÃÔ z%ÔæÿùˆP–ûwª]¹S–¦DH@DYá‹‹Wãz4í˜\ ®N“#‚½Bv³—¯|Çä§9•ÛëÖOÅ©ÚñÑŠX'¤ÄõY/¿N$„óÅZL ~¥‚n¤Ú´?®$Œ7HÝÅ•UÛ=†-²øË°`3IƦ çND]åºiºŒâ°O6Œ€) zfo”(òTà< !Žeö.‡lÆ"+A×InØŽÉãVX¯V•SCöáF)ˆ¶sM£˜k'¹ÒîͲr“•Ú¿ØVöú{YáËw®s¬¹oßÅ%ò]Þ˜­úhy‘Qω ŸßÛ¶׻ןZ]¢9³ Å@ºr+¬qi}ß0··µUË·_ÀqJR®v7@DLTÚ……öÖÏà¯fiv!à}×áì`<ž2ž”b6$Š]6{‡Á.«!|bF¢4l†·¯ƒv{m'ö°ö'¬ËAþ%‰4;xÈ¿ú¢ÿ7rÊïÑĆ[¤ðE‘ô£˜Œ!k1­e]ø½Ñ.—î[;ÅH4ø‘º ¹«’$†èÒq×ZçºøØÅØòmV”ÚPŠóCu‰¹Ä׋ENÐ5>éZ—ù+ã4"4°òBxÔÿ9 ÷‚ öhJH*O‚½°G{˜pxÚKÍM{"ú§Í8úúÚtèójÙøŽ¦@ÛWyøùŒzéðjÆ0~8—¶ÿ|@®Jøô¸|Á—‘4Rž— J„|™Æ[ôîD\>N›q\öõépi)ÔòÊÜ<-ë‘©]ô†­Ûp —*õ ØzÁˆ-ž2¥êðJÀIZ‚¥dÀ°ZN·¹|²áòÇAö8µF16P ˆ(…ºº>¸¬k²0>[Ö›D¼Á£TaQnõ·™),üce¯Wº“ÛsHÉsûœ5öº.çz:Fž1—g~¯ÝvÈí±¸ph7‰¾r[c®AõEsú¼¸‡1ÊS ÞÏ€ýÇÈísg[÷”#E+o—Mâç,› _ÇË&2J×§#u¸§n=®n’ªÏ¨›€æ›ªÇ‹cšŒgz%N¶e¼n«ô3ë&S&Á©<n)܃­-dÚ%Цb·«´PDÆüH½(»õ“áò ê'{jF©úßWà}{‡óUöÁ} µì¾Èµ{Ýü Äܸ)Z÷޹Ÿ¾œ¹ûÑêõú·Ã\—@IÀÆolcu=¨ÍHÿ©ÐðxP„ÄgSõ«©úHL"GýÇÆ";ª‡:ËoíݼXúøˆ¹%³·Cí¡á;+‡Ðsü#„œLeÄÂ¥ÎJ§‰ŸÙq§Ø5ºE3>©:õ ÿNW&ÅØË¦¿ÓôëîVûÒ@yf•gÎ>vŽòœè”gÛÊš¿OÔö¶WŸÃ7@óþÖ=ºÐˆAÕçü.ÍÿlâCñ¨ÇxRE¸t«ø Tg­ÿÿ‚=›(Ø.n/þœ¹ª¥öÊ"&\Kr‰ ªü™mJ|ž‘ìþøèUeÎ’÷.›ï˜ÿSE endstream endobj 3679 0 obj << /Length 2709 /Filter /FlateDecode >> stream xÚÕZmsÛ6þî_¡O7ÔLÅ ’¾—™4‰Ó´½´Ýˇ4“¡%Øæ”"U’Š“þúÛÅ‚)Á’k[7s<¤ð²XÏî>»4›\OØäõÉ·'ÏΤš$aªu4¹¸šð( cLtªBòÉÅbò!Ñt&â$xQdMC¯/«ùziÊ6kóª„&Å”¸dÓߟ¼º8ùã„à lÂy˜25™/O>|d“t~?aa”&“[;t9‰$ å8±˜œŸür†j æSSÅ¡ˆ©i²ù i·ÈA·4 ­>, Eáã5îXD±ÉLˆ0âQ·×P‚V¡žÎ8c,ø<2¨òŽXðâÅoŒ‰¶9=ýù»—SüzzZ›lñ2k3ðSl:“* .«ªÀÕŸÅÑPs­C%`U»N>+²)gÁ5 ø'ÍQj’¡qN„Ó“nÎUV4Æ#Y¤a’ô£¾¡£­êë´0¯Ê¦¥5›vqzúÙÌ[ØQUÓD¸†* ᤻™ÿðˆNÃ8íEŸ·u^^{äÀáFÝ y¤ÌD*COf°¢4 ü›g¯qmñw3å*øŠÈ‰÷HeýÊýv½{Õ*Œ•ÜÚëHZÆòàV#&ZomvG ï nà{…ëI9È=Â8ƒë¥}X­k3iÄo^·ë¬øH†à jËšf‚ƒµ'bl ˆM2§U Æ ‚|™Á à嫆æ]_;;÷údòÁÿî寣Õ\óÚÑâxjáÌöEVVŠ$.§b¯øHŠàìÍÅù¶|œkïS1@þ,RqPVíÔŽÏËÖ”‹n…«)l ª©ëÚ”¦FãË ê]7Kát¦"¬2ê\šÖÔ M³iëÊ ¿©pô-ýXâØ5º Ý6ýnÍjûT­ß„g^æmžùŸÖ—†8]Ï]gvÙ´¤Ä¼¥–«u9Ç߸ÙËUaЛE'Žží¡—f}9GÇmÚÚðèözÆ`*Õ ¦ýÝaVÓ‘L9š±¼íçHþn/ubŸ7f(pÅ <÷Æ j®wbÆPöÿH0úh%aÑ>Á0œðà ràd†¯@ÙXOTV9Š×.¬Ýu|©wÌ«Ì8â¦:”bG™-¬‹¸v¯ ЉØxåF‘Y›ýÚË„…Å€mII‹Ï$K6 Æν⫵T|ù-ÒÔþJ‡þ;çÕò2/]…(Cªƒ^¹—K7¾±É¾µ7YK"{Uìê^£$¢1ëÊnëž'ÉëÜÚªLˆQ•¡1ÎV•õaØÚ]cl¯Ç¡Ú×qo7ñól“‹õ²!}‚ÌïS¾¼þ4óªôÙ-‡…\$ŒÇy j½q/ ›eá.ÝAâ-qÉD¤íh«.¼59ħ­æóuÝùÌ(Š7rzÃ/笨ºÏhA@v·nà,o›W_æfÕYìŠ×8ß™¼Õ’¯½äjïw+ Á_¨ôÉ1¹H¹h ¨Öè« ¥-ª}õ¯Q1ï 'Æœ{Ê‚¾ÞW ƒ±¾1à= p›÷ÜÖ¨ËñžDöå=hÜ_ïâJ…BðýŽ.Eå­wáí¦÷Þ¯¦7‰´œx„-Üj˜lZ_I“cÑ3ÞÕmÌób›ó¸Aå+^ã“q½]#‰;DË• È™-9úË‡Š«¥Ò¤à‡†DèÀQ$ÜUíËè}[<›u:Eä]Š çô.ÅD^ÄŠâ?S}'“Ž ƒP;LúîÒdÊ1ãYîûžø`©Yß®±f|±DE¦HË¯Š†Ú­·Åñ%=; ¶Ø5Ýæí›G¤.%06n•^º[}eæ9°á\ Âù`ÅrÖ®Áï‘OöIJU]ÍMÓô4|]. Ê,;/‰—éõ¨Ï­O:eáÅzrJ¡é¼Š*£2hºöŽ{%öÐî&Ðßùšþè·)ŒY™z“8@Ðr’W®ÈÚºÕâ4 8±…7~6ñ n ¦IŸd¹à«`•É>[÷tíöèñ÷ræhP,Ã$æã¸L@Ð)Q|ÆBMüZß×àb^u@¹˜r¼ã•›K êâ m²ZiKv lkïoŒå$(s÷Ý¥Ey\¨NOùK’¶¡2¾A[+.ŠNã;±ã/8Ø¿ú)s*:Bï(‚±ŽÇ5 ¥û«=@KR~:dk\Øz´ b%¸§{Õ𧌷†7RÆÚ]ºqy`„)yfhì?ÐR3°bû&u>:íÝXÚ;éÝYÖã^}¥üÔMñJï´-Ò7NÛû±„UÙ±· ¥wàîWÅ~ð1À(ˆBüÇlÁ/“Û}’*6h!ÂÏÒcVwOô?N?üGúX*´¼4[µë!'y"„=x+ c'ŸbÇl!)pŠñ}(áaÌPfFLJ ÷Ã×ãTñãk¨ÊVQp±»ãüÀõà}À@„yÒ¾ìE°ìR²äI‚·–pu5‡—¸Óÿ9ڜú«›€ÿ€¸­c endstream endobj 3591 0 obj << /Type /ObjStm /N 100 /First 1009 /Length 2832 /Filter /FlateDecode >> stream xÚÅZ]ݶ}ß_ÁÇö…—3rHÀØu ŒÚÚ†!‰T4õÞ þûžá^­c;ºŽlÇÁÞ‘4¢Ž†Ã™9CÅ”ÅSNŽ´˜]d6A] dBq¹ êJ2 ŽBÌ&‘#¦d;ŠULŠŽpxI0h²1×:ô²ã COsŠ ;–h-.@ljÇÕ φ„{óxZÁ½9žQŠc ㎠iŒ§&UÜ‘ñ&\Éîµ—c2ôÊÑþ¤Zî A‚Š& ÊoZc4‰œá9°®ÁÎE'ƒ@'YÔ¤äD+™”TCš(QŠK€oRuI"ž–)¸”̤™ÈÁT‚g»TƒÝÛ0ºLâ2U6)¹ã8—]–bçW3Û9ÆÕ¬ã®ª½¥]ÈšíØæÂ”! (L.×`7HuxZM¡ÆŠ§ÙÚ µ˜ð–„mÉà½ ê¸ O#²ÅâX °(N+áb6 øÇÐÕteLŸ­X‚w\=xpuzö¿ï»;}ùêÕõíÕééóí8þË·¯þsuúêúu믟…ðâôõé›ÓÃç4®NëË­{ÎT}ÿ„èånáz†•á¶¾&…Ú—îÁwzêN¾~víNÜ–鍊›‡×ooo^ÒKzòõ£¿¿œ&® xmÅ,LQØMã4ÏkÛ´´ðG÷ÅWøÿÄ’½-Š{ȹø±´v#~üͳ§Çá!UOXn=~D²¼Âkß|È´ß„¡v Ò©LËÂÂ-Í…kŸ—yi-7ž„œ}DŒK1ùÌð¶Šc„Ób÷C®3çeY§Es›çy!‹á=Í+|!Ôc!b¤TX×– ³rô¼qì•CYtE$L¡-X³=F)¥žç–E\w%%_¿ qAÈ”œ}ºÀÆ­jC2[k]¸J‘\ §ð’ qØšß &ñðÌýL9Ïu™§BUÂbÉ3vB®eîu=vñ‰%™Ä>"™RÅq°ØË¾Ô²rY—¾ö©Ái!Ïiê õe] ÒG€üà b"*ïGÌÓ ßh¨x-:aéÕžú ‹wÕXâ—Ø ;K1?@ýF0¶ÕqÕs¹ I œjÚñ–!ÁPiæ´ÊLóáäºÊ‘«WT Ìì y›# Â?8’O²ËÊ@| $+B‘‚Øã+*7f„/Ôª†S.‰_šaی¯ó²¨*Oˆµõ'ÔHË‘&ŒÞÊP*pÌl¦CܪÌ„—ä5L·†‚Ò %–Þ£öÖf¼CTéøTL Ö™±TP€SÆ«Hº²NÌ]¹­óÏmYê÷¹%¤føÑO!?rÏ£•ÿÁýÍþñÏ8±WTvjOÏîÕß}÷âW”ãPFÑçaÙÚ˜Ô@¼W; j<Ý©yÑêNíï°wlªA.íÕÖ๾cÁÇׯnÇ$>ÆòVTãã¶Çà sw`ô–¿;@mˆ´y>÷¨¨¼ÏWÀdPkÛ?=y}½<íp#wzòè±;=ë?Þºo{æ“éßýêôú«ÛK3c0sÀ›ë^/ýæŽsííÛé«ëÝðYã„:ü“é5îvQ²Þ)¿Áƒ±5<ƒ×ž…û3wP©= ´ ¼ qdÒ&äMÐM(›°LÛÈ´LÛÈ´LÛÈ´Lw#¿8® A¦/fd—:dÄ ‚ú¢—N 3ø×Ön,µkIÔÖ–W$š…Q=w“VŸÎnΠˆ ·ˆúwAí1Q£TúZ× Hì©-S-TÖÔ§cK=3r"+ñôÞȉQpÝ9äî:Ïp^KÑym8S ªÓÖÚz¸ Âûm€»§ýv §÷Ú¶}{æÖG§£óÆÑãFèã¦7å¸)˦,¡—ÐËFèe#ô²z9–Зà+—ñË\s“­-õ iàÕôß~óý´ô»EqdNBx°=yaoŸ XÎ A/í.¿əߊÈ86::Â#¶ÀKr >Æs„‡ûÀ—0}ŸxºF SÛÆoUÊaäãÌÑsýÄCQäñ@Lb@.ô§o­ÀtL‚½p€Gc¾eé%[ Ÿ°_vžÕ‰BÕLò52|?þ|+çöº]¿|iƒýwàFmdµ/ÆÊ³ÏŽ"˜P´Îv±M„ϰQó…‘%ÉÛW+Le|èg”ϰw¥ÑÛ—*à8ö|üÚ†Õ¢(ã³|† ±MØÀ@†o?žƒ'ììÎ\Ès±â¥“}݆¥ˆ~ÞÅÙÝR[1:ˆÐ4~Å*åOŽ&"RfË´„Y3/†qý«®„3 E©TÃo+Ÿ«aXÅ> Ù©àú^ ú{µoTÔ n‰¼sl$ºþ†vTöœÂßýŽë¼Ôß²Ÿ9—}QÇN–ãαù[÷iÛ3í¶6Ù`?·uº_{›ø%Îð.µHP£óÁøx–Óû™ß'9|8Ñ;¤;¤zdñ9y-:ŠFŠHñüëµÿÇՈѶ] öä•uìØþu6\»ÃÑË Ó:—9ÎÔò¤½¯œê°"iÍÜ©ÓñˆˆB]´;Ä)ƒFí3áÏÐLз•Ï_,DÛo‘ÝÚ·q¯vJ:¶%÷j[Ÿ±ìÔ¶ïñ„ö"‰Jx˽cGÌIˆ{µ\b÷Kڴýöjs­×‹£Ü[í­XöV7åÀö ½•ŽrZßrªåtkƒèÖÑ­ ¢[D·6ˆnm=¸ ’ƒª0¡zUÒÚ ÖféüÒñÿuNL endstream endobj 3692 0 obj << /Length 2730 /Filter /FlateDecode >> stream xÚÅ]oÛ8ò=¿ÂOˆY’))¸°Û6½.p»½6·\·(d‹I„Ê’kÉM³¿þf8¤>ÅNÓöy=$‡ó=ÃaøìjÆg/O~¾8yr©YÂR­ÃÙÅåL„!‹u2Ó©b:³‹|ö.á|!ã$xVfMCÃçõj·6U›µE]Hq%‰ùû‹_N^\œ|:pŸ‰FÁR®f«õÉ»÷|–Ãä/3ÎÂ4™ÝØ¥ëYÁRËÙÛ“žpG&gRá?žh=E´Š™ •'šE€ž¥ó…àœ­Yoʬ5Há“s8%…ýRã~²D+8Ênü+­³8~A{»1U¶6À¶L‚·PÄ~ýß&¦,N´_ðy.£ .rBøìٜ˶9;{ý÷çÿ:;»Ù­;ë®ø|)”uuEhãp( !™’/âÙÎ… šöt‚l'©_|Ƙ)ÝQZ½( ª½™Â7æzUWM‹«f ™D,Œg  œzš6?;ûŒÄee¶Ýf8ºe¢å!ÝŒD9¥ ÍÒ(9¦ŒNý™BÌBúyÖfSìKÁd”îí’”NÅe/î¹àÁ®,ŸkrÚ™‰cCÍ„=VE>è}çɹäƒÕ ‘$`Ë  ÊŠhÓÍ|DÖÌÂ8 @xp69èĂڿ°f]¹UM›Á¾<«Ë± ›¢½v(ÜšYh†&§ý›â b5¥[VånP–5šÀM‡kWåwVÆ-A¹"& –VÀæÈ²6Ûzeš¶ùɘiéXÝdÄÚÚ´f ±,I]‡qÐ^‚Y×û¥[ÍZv‰<Ô[‚÷ªÙ@ˆ'XW-Úݦt›­,.o‰Áý# ùêÉh&ykoz`_&ñø`X:q`>í ;›•€ôi`è/+³iiQ{¹Qá¿Ü“$ØÔMS,ç’¥CØ1L´ã 4‹?Ét×Kã79¢=õ ù³¨!¿–ª+÷³¾¤o(KK-Œ‹ª5W¨D0›SÝ\«k7ëÕ5™ý°1ΎИ0ޝêõº®Ê[…„aµbrF>5ÊC{~ÈÇ>åÓàÇóO Yª/_“Â{óâòpÈKât"ÿ„÷çŸ0õù'Ö.º[ Er³jÁ>î’"”b\‹Ã<‰“»ihŒ|X%æh*ˆƒùA. åØâ9ò÷¹ûE{Em!ìËdš“LÄrœæ@ñA(È22>">@ÑQ9ÎeQØ%(è̶`¼Ï³ÿ¶Ó#lëcêX*å~²-rƒ.Læt 9=Úg*±‡–/Z1%ô±òE+_Òo._ä°|™.%×_UF(¥ï¯#0€fôivËÆ¸ äÊT†â{Yü‰‚sË›²X{ò(æSÞÇ‘Í!øõY‚ª‘ašwjý µ¤‚»'å4azÒ›0cºƒ)K|éXÙA8D~¬Ï°+ÈÝ¡ŒƒºrSíýÐcpÈG0Zí–{K/’»†°—+1ô2ÊOcêÓu ‚, ™¹jàöÄ~>¶Ä ø±á2xÕÒ6+˜Õr°Â--ê ļ ‚¬ íÊW*BifÅEg\ø³Ç ]ˆ™Ï+JM‰`e#òÚ44ªê–ÍÈpÇdTRÚ]¤¹¢Ñgv³;„c‹*Ýô—_vmæêªÙfªÈqÖì‹{úå˜ß™±©/½oôÂg#Çë’q”B¶«·yQAÉÚ`xÁßÎÆÑŒ‘Ùû\ õøž‡Ýõ ÆðƒßÖŸW-¦œ¥ ZY9ȇE%œ H‰ÕaÓ AèNßݦbkÓ (±ÊÁ ý!6J0CìéèxXF>Ö KÜ4Ïò¿/ÚNG€V%â(ÿG ¶Ê"[ƒ”D¨ ~Öǵ¯c‹%ã"ì*hªúró@}=“lDÑk߉°í åZ:h>‚}MfÛ0GkTnN}»¢«í´ñj—?¥ÝXŠSücŒQ‹Ë×&« ›b…ÕÒÇÉG-!¨¬ÛtñÒußÀŸ†]3¬D*O/#&B¥ƒ›kãÚ^ -ñ€§„ù§ø×ñ¡Béø˜jµ9® ßV™¢ÈÖòXGM:V¸3ó›ŽzöÀ(ÿh{:â€ûÙßßÓbëé¡dã»ÄùX°˜#Nex:¾;>ÀÉ¿”i'’ráï€w¯‡¾f­©hJ¦úˆÆCØsï#Mé[?ìQM¦PÄ&É^WS¸®æá§«?ç‹#h¡ÞÁÊëÝrc‡yâÑIK¦£áûؽÏRº'ÃQߌY ÛGpê; ï>Ûv—•ïw8ÀêBžŽ;]£kAüüŸo~£áG$ÓØK1݆·ùdÈë›é¾…ÑôÍ‘ÆxëµÍ%\¥‚ª °÷îõÝ’¢òÞnŒÇþ+ÈyßÎáêKn²Îú `P Í]î‘A¾ïC*ðZ Ô] ·×…ÛvSØ»-,Îr‡ôÇî6๾ݓ„þU!ê$ °)‰ÓöùÓ—½‰tù.³ƒ{$nŸ š‰ƒÊb»¡e M÷v3D.‚³K+e³jiær×î¶³ÿŠâ;¯dÚ¹Oú.Xãð54››fåæ–ÓÏ–@×ÀÙôœŠ b1AŸÓŒÞ®²’‡yÔ<‰{<;uñöÕo4»Î*¼äƒ¹£(¸ÝK¸|ÍE°¥mÖ½ôàæ=Å:ÌEC‹/wQ6uS«½-Vî<6ezÿþéͯ¯~}y†¦&‚WH;÷´ÀË`«ºj³‚ ;ÿ¥Ùî#÷bkÍ•íá‚Ò—½ì ¾<›#‹S­2ÅxßIGË´zBª¼XmæD‡osáÒIA£ðöÊ…ã7/OfïhqÑB±†Øî´Pí »k"¯v¯ãûÿ 5, endstream endobj 3714 0 obj << /Length 1088 /Filter /FlateDecode >> stream xÚ½W]oÛ6}÷¯ 0 €‰á‡HJƶ‡%M–)ºÆ{Jú ËŒ#@–RYj“ßËŲc9iºíŤÉ{ÉË{Î=¤Z"‚Î'Î&Çg±@ N¥ähv‹(çXÉÉT`™R4[ ë€ñ0b* NÊl½vÝÓ:ïVºj³¶¨+D°€Æ,ü<{?y7›|™PØ :X‘â””¯&ן ZÀä{D0OôÍš®Á”Ç]Mþž&†ËÈ0\A°I¡0ãÂ…{ذqô~è:Bÿ:ý'ŒI€ï¶g Š(é ¯tÏö/À^^`R¶‰3aLLsnˆ¬D*ÍÙ"*±JŠxŒ¡z(pLÈB‚““BX»žNg¡A6UPjƒm ‚î'} ºÑU®·Â:>ƒÌ¥Kf÷ƒS°K‘¸~)ª¼ìÖåø PÙX €)MÁÁþæ,¶ÖRXÅýü,›—Úxg˜â$~²ûÃYlá å˜': K澨îtIAÑfæT–’‹"[†”ùÉVnð6ä$¨ÏßA 1ø-õt+-»-°¹ç2H8O46\þ2Á\(*­Å k§z??p|±b :­Úro‘ ÷ˆú­¢Á^®\åžråK¤KÅ^¯÷j·~<ÅÐ;HßÜRÊM˜›¥õ“51 þP_uùÝI]v«ê`N.  2U& Øž¥ä§±ãÝC®ïºpЖ¶6-æÚÿ¿kêð­rã½]æ‹{V”]£Ý¼ógA£[OmL¾†LÞÄ»æ.|Û_ßë¼0¤Ñ g£‹ÖrÏLZö<ºñ*[ùÀ€lpr« 4!u§)ª…ÝïÁ1±2íVsXJ€Œ©Á xŠI Éôeð±³_ä®Î/µ]ÏöϺ*7¹û÷H°sC‹íRÚ%Ž9ì $‡XÚÃäyy¡#Üò®…5éÈÙ^dV^ß(62·p—·½±LEOË½â¾øZÀªp_´]VŽœô0è¡úäIo'{$ÑH+}ÒÖW%ÿµÉŠÜÇœmgk¡ß˜öÓé1–R{ôÄÏvÌG7”´¯zM¨–nà\?˜’†Á_ÃHò$˜×ué&ól­¯tµ.ÚÂÉÇï}‚tŸiH 5y„'=ë6pH>U;”ÕêLi‹ r¬Í\Óh+tþr·CFèœÅOV[¯ƒ¦¿¥ƒf ×>+f>Qøÿ,ä~nX±8ì˜8*Ë¢j{u(/zé¶àn4ã­òó,áÎ ŸaR,àý= Ê0ðÿ¦fŸeb¢Ëìþ‡!R£ Dm½ ”PxH¥?òÒIÌ”Œ‡®$ż¿‡Ïu¥›¬íQ¨=>³0…;Þw™ù7(õA3)v#jJÄ”¦ýƒ•=°>‡÷´¶È>.Í·@ «Ýã4·;¤ endstream endobj 3698 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Table.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3720 0 R /BBox [0 0 500 396.83] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3721 0 R >>/Font << /R8 3722 0 R>> >> /Length 580 /Filter /FlateDecode >> stream xœTMs1 ½ûWø„eÙ–Ý-r- ?2¤ “JËÀÏGNÖ_Ý\ÂìÁ³Ï’ß{–äGmµÉß¼n&õö#ë‡'eôƒzTxÜÔó²™ôõZ¢¶œ÷z½U§<ÔÈ ‰£Æ„À)éõ¤^ÝÜl÷ÏOWWëÏ___¯¿©ÛµºWÖ‚q>é?Âq§ÁK‚ÀzRBg+r¨ˆµÆdjÖiY;E² ÖgM".ÉÙ«Ë<ä-'HÑžnÿ>xÿ©šª‚‚óà;3ÐL‰!¯Mò©Iâb‚£„"áb "ݹ IÈ1„ÁÂ9ýä-¹Î@A:IVë{K¤få2qÃY‚h¸Ôƒ4 &# a¤²8zx÷´ÙïÇþò±×QØ"e:›ï¹"‡Š ´p^²–HËÚIïJGE—¥¹ÏË­H¥Ù¦³V®÷ß_ J@i_ꌸäLè$¤É.YK¤7âB22†ÿo„ó ¯GãdÜýúñûçy'¦ó`:õÎH;­KÄœt‹ˆR8ï€Nã€2¤Öæ÷Äzcê“0Í¿Îúlô ‘Pö˨­†ÿ¼K$Ó¯­÷œ©D‰ AZ¢G†vjû敉ž9ˆŒˆŽ¤e¿Ëjš r”}§¢CÆ3š ¹$‹…¦=«h4X ;šÏ8Ò µä;&bŽ’ÉjÔÜ’Ó"/GÕÌuy›iˆjí½Z`¥O5'ÑïsñˆsÝ‼<éh²À¥'§…ˆLy¯þ‚B|á endstream endobj 3724 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2759 >> stream xœViTSg¾×{?•R5. ­ui­kë‚]DÁ}GÙ) Šˆ’°†5! Hò%a AÖ([Ô€¨ˆbwmÕºŒZ+m§v´ufJÛÓ÷r>朹¨sfΙù5ÿî½ï¹ï÷ÞçyŸç¹4å1‚¢iÚs[¢,>}VP²l»|øþmn"ÍMÁM`" \*ä$žö`O†I£¯{ù?@Ù«9†ò éEëBm3‚ƒBßš9ó€ä”œ´Ä„ݾóçÎ{Ï7.Ç÷eÅ70>=1Aî;¿ÈŒOJN‘ÅË36&Êâé¾ÏÏõ ŠOP$mOûÏgÿîöÿõ§(J¼L¾<9 %pEZúªŒÕŠíÙq;âw%n NZBQoP›¨)ÔfêMj 5•šFm¥¶Q3¨`ê-*„ZN…ST µ’ZE­¥P © ÔDjåAÅSwé\úˆÅ#z3µâQ$|E!üœy—¹ÃƳ—ÑëHƒ¾¹`¤v䯣fJ‹×à.\aǸ×ëéÁ:Q´EkÝ}‡˜¹kã³²sH½ŽLSçEÄÙQÇFfÙZm–êR»´F ÁÁ›iK)OÅ*1NË- 1¢l¨`‡òÁ*Z‘¡WŒë9ÑgôWýØ/¨ »L¸%ώݳ§O6ÚaÔëLZ#%ñ¬a­:/¢)a§ƒ(ÕØŒ½rا1}Ë>NÊ]·Jò€-2‡f'jB•â\¶ÜRiªÂ¨¥R!%&Ö¸Y“^Œ¼çàn Þ„ Xì8Ÿ'ûljúõUZ“?ÚÌýóÕ~Åü°ß±÷𭆎ÃnWýI|wçvím•5§ØÖÖœµ7X Èçç÷ñ à1ï<ñ—C DïEÏpέD>OÎe4Çm˜€ƒ3wîÈØ›W¸£U¥K ]ËšKÊö›ºMã}~åZØü øƒ°í3ˆEÛÂÍo¡[CõcX¸X7o&‘IO¦ƒ7xÿôHaüœ§ä5i~²¨ÿÂL2™0Ñ«ýwîrveJ“ÏæÝÄ_¢{.ß’ðß«êæ~é¢y¼ƒ**…0“Ñe橳pVZ”¥ûÃ+¢°^œ´aÛŠ ñs0H,ˆÉ$ˆáß{^”äÔ.\-[ŒÅëñÖúØÎm½I1x XóL=w6sg—ĵב\·vxz"™ÖÅy]ô¾ÛŠoÇùØK‰LúZÆß¤¶¯"˜Çúdïq7iO„Ñ?€L…1+¾{kLú¶é=VgÎÜ¿-WœÇVšÊ°£ÃåÚ(éÐn‡h´›uÈç$ÌæÚEm}îž;½KÉH‰Oáän“ /m÷MýëÇ-¨  üÛ¡Ë}×.t|ŸáÇòû[?[uƒÐn2#Ò”Í<(ª(|IÿrµÚ_ ˆ»*j·Vÿîj^âiÉýàc 0¡0·hIT˜|‹ú=Œv¨y2½8à5rñTvÒpOáCQ2ùzt™bD)̋ф"À0›í7ØÕv?ÔÊ F½D¥^d@d6¤1¦¶’’Œ`"?§¡^U3`ŠaŠp¨%›¹­·å›†'3ä«ö¡l®ƒõ‚oyÝ,®§ÿÔ/( Efµ9¯Úp‚u?ÓRV©×VIJ›Þޑӱ¿åPf}âödE@¸ô/¬Þ¼U‘ ÚšÃÃ[͋ĆÑʼ)±°†Pn½†§P¬mT×s š¼?¹ ~7Çñx_‡/Dû`²PÃè õÅ:¬ÃZ³¦4£"£4£‚B¶ºv|)=¿çHÖþtœ$ŽÙ›¶rwç@†$̵3åÖ3OX¶š†Ô5ÜW?ñþ•ó7ϤÚä–êjò~¥7‹µ7÷œkÛ3¯i˜JU÷{í†ó}& ‡ßE¤"‡¹¯¯(4/Ed!»wSÊr²h:0°ñiËݽ’½Wš¯ã>|&»3¡M^“z`#jb !A¨`tY9ù™X‹ó,9åÑŽ¨ŠhžûH2…L'±o5û÷m–~¾òY<ŒÀßas¤ë‚Ö|©Êv®yA»ö,çé¢oö  ‚ MÄX ½dË"Y¢©{q›µç‚ÎsãÞ}`ÆC~o¸Ÿ‹rUj½£Œ¢ên)„²ø¬¾UéT¸cë6c4kYÄúŒº,§³¡¾±ÄXj,—*¸5»»z›åÁ’,™µ1§ 6^‘¥JÄ{øZßs©ûXÃÙK{HimÖ±‰‡qƒíH'_"s‰°L¯ÉT§©R 31Ú|ø„´„5]ìî„‘ÇЋ¼y×ACûXøØÁ$ᬚ¤nò„žuÍ­ŽCf±ƒÌW²m««°Z­HKÒëÔ9ùY…¶ñʦ»¡$»½¨†7%‡½¬Í„d‡²’mÃ5ùíQOÉ›ã CüdqÚ¢=Åb%Lu°rM©½¼Ì^Ý }¯þ@|Ktf=.㜢}{ Ïyqq£¯Ð7ú!ëϘ5ø¡HoŽS¥Dæ‹å…Â<¶ÌdÁuUl—Õ°Iý{ÂøS`ÌÒ'Ó7nÙž% ñ8zÊ}¶å€6»AâJj\…D®ó n<(få'l¥ÜpoÀ\Q䊄ô Œæ¬ÿ Ø_?»ùÐmׯ[¥eŠ ymn#l¨kê[qjQDXVBœ4<&y~у٠8ÙUÓî–47Õµ´]@Ã}o€Ü¬›æÞŢȥ±òu8ǶÊÏåt¹ —\b ¯i[Ó\2÷Ç ¡8GåÄ'FÅ¥b?D$·ûãÝ @—ûðލêþáŽKøv&ÛßC/,î lo¡áUw™Wy•—Ý…º¶ÎF»V^+©Iµi÷óþV[ÛäŽ9¸i}hJtª45º0Áø>òÛû5ù‚1øk5à vëgÑTỾ/Þ?Ûùæç¼ï,ìçsƒÏ­ƒYSZTi¼Ø}2g›PÉV˜lf›ÉŠÅÎç©d Ë ´«Š‘Ï7à18W”’‘‘,oT´´56¶¶f4Ê_„÷ì8 å|„Õ‰üJòmÆ;ˆ«ø”å­½!·‘ÐÈÉèà#áÐ%FG>:™& ökFŸ3ÆÚEê?9l|tsõ|ŽÁ?ºƒÁƒo‹ˆ2›¹§wd™ßäS‹Å«tñ¹²”ÈuIþ8G8SN帊:ð·ŸÛÁWÃvàÎf¼4Šk,YöÐ>úî‘ëG%Îã•=ø‚jÖü[UõÃJôú¯ý‚†± q0ë-«±qOÙ}æ°¼]š@>ËØ*“ÍÄ/¤Ëªâ9•5«Tö ¿ª˜@@?&q1"YZÚ^ù´ÖöƒÎ¶öÔƒ2)!ÿõÌKUÍ…X!ºšéõht§ÅÓóA‰ç+õO}Ž b endstream endobj 3756 0 obj << /Length 1669 /Filter /FlateDecode >> stream xÚÝYmoÛ6þî_!ôC 5KRÔ[°Ø’zMÑ[ãÚ~PlÆfKž$7Í~ýŽoz‹d;±›lû`È¢NäÝsïŽ'lÍ-lý:øe2x5f® ÐókrmÇA¾X^è"/$Ödf}¶©3Q?°OQž«¿gét½äIqšÀ‹]jæ ¿NÞ ÞL ¬€-R›‘ »Öt9øü[3xøÎÂÈ ëVŠ.-‡(/.¬ËÁï¬Õl_¥Ú®jc/ô¥Ú>EƒE\QÇUjg¼XgB7;QJGê’ñ롃mžñdÊÕP‘êëX ¶×‹"^F+52MÁÚ8‰“yKtš.ÖË$×FÒ|£æ«1Å5hG”":ÖˆPºÚ/”º—¬Ï#×õìo1hΰ]¬£…~.ÀÌæÕRR:%]|[sˆ'G›_TzßÑ·¿`Ã4žUV5/b(dìüÈ¡¡ým†¤ñ¬M!5MW¶»ÓNT…„@lÉ‹ÍõOp'êáKPŒQ;NŠ¡^{qžÌ¾ëá«!±ÓT(úÄIεA|H±};S:„ °%]OSŸ h®ù®Þ¯¿å}ƒDÃõšlò¿â:K—ên_—¬(ÔPš©k-ùf¿=ûÔÅü(™™¥0](kä=@¦ ie¸Xû{œ¿¢+ÔâÁKÿ0Šå¶³P‚ɼà’%À‚¤ ›Š†òöRû¼4ÿH¹ê°ß'(Mz9—‘a£=“!W´Ò0Gù¯àI® IiM¿DPè°âŽø˜Šµoó>?,Rƒº j–/‡2W㉠‡Ë+ž»#SGÉ\¦×zØèÜòSko< Sút˜Ö¸³cØÇrz>- ®ÀK¯ÆPb„ (õTcû ¦‘*þ¤D¶ EE)!Ó1Oˆ˜¡×}Ó8FâHýbÏ®ž /ð·ú6çÅ.^-SiåWõúŠOcAI>»¿¥¢r ¯Öz•(SdRqŸ`üCC¡q@?Sæ¼04‰ÿWÞÇ“|»žš÷¯xJdÓ•(eíݼÉ;&Ee<š5â­ŽÕ¥·‹æîŒ—ü‰÷d­¾ø÷»šR:É/WÅ]÷F¸W€Ùæ° •ÛFX5ÈógcnYOuÙ}/’ì™É…Qåâ“ñù›÷g—êæOñ’¬^ïn…Ri6Ö?oŒÉ¶Ð½*:Á?…žÒE‹öBÛ‹Ÿÿ8¿¤Dõ $Û9lhkMœÙ'B”ùq(O÷'¯F׫Y´½rÚPµÂ¡é)•AÔzˆ‹P…yu¬œá.žnûü–‰ÙÓ >Y¾ÐÀþÀµð¼N¦¢i•÷˜Ú,Ù<ä‹r L}ÖãŠNØ…s6Ç<¨%ì½®³Çç“ËS«•œnˆÜÀ3%dU§£ê'ÄÈÀÉܵ!ï²Ûogk¥àÝ €Ú|/Ä_RJèRšAdl…ìÑÍl}¡WZ\ö#„péßûSÁ›P•«ÄÈõc¾nChïo®Öiˆˆïm,Ö)•‰ºÞ³ù(¨f{½u¶ÚÙXÛæ:Ni[@å‰cËqCP•øÏlÁx Õ—ôõ\ÊÝ\s‚¶ÈsÝ,ò‚úÁ§Ó yÄÙÑ 8FÑ͉ÙXË OI\œl×5ô ÙAuõ7éê£êdiB,°Æg¡Ú-a¥p¦÷õð—×ìÍ‰ÞÆî%qWSîTxTw÷$6“Æ•Ž¼ëÜødKΈMá$RõÇÕGš.Ø¡° £&{íF=ä…‰¢¦”¯t û•aŒH‚ˆ{C9¦Û@b<]qÕôQÅ”z÷&*”¤ì]ôÖ¤BvKqs4ºPL~Ù¨–7凔ý~=1ð ¿e` ¨œjþ›ñ©ÅMip³Áªr½—T÷õß%mhÚ«Ih΋*"5gÌ;úþÕÑÃmw#;?OLK‡|ž6_Ï=D}Õ¿ž‚9ŽüÊžE…‰±æ#Åd‚‚Ú%"m$Ñ-Š|jÄ?Æî1 "´BäôTlŽ¢Ãú³T~¹´ž´ÍÿÖò º endstream endobj 3783 0 obj << /Length 2337 /Filter /FlateDecode >> stream xÚÝ[[oÛF~÷¯ ú@5™ûFS uê&¶h7ê¢@’ZblîJ¤+Ruòï÷Ì…7‰"eI\`ûàH$‡g¾sæ›s™£`ïÞÃÞOW?̯^Þrá…(’’yóÏa )z2HFÄ›/½>eÁŒªÐ¿YÅEa¿¾ÉÛu’•q™æÜXPŸp|šÿ|õãüêÏ+3`´$aá-ÖW>ao ö0bQè=™¡kqJô‹+ïýÕoWØÁÄm¸·á Œ„ž Q&,Ü” ƒ£zÏû0BúTøyºtÏ4¸Í½CùO3Šâ§YZî¾­ïÄßåù*0W›$^Þ®âûWŸ†ý8 þªH"üoá9þ"ÏŠÒ-Êåõµ™;Y”ùFË~y ZF •F‹(DZ!lñg‡t%ˆÃ`7â}¹ f0YšÝ÷ˆ£ÚQ5öûQi/þPì'úŸ¯Å«q¸ #>vÆ`,¹7ƒÏHˆ£@K„¹­âÕs½ðGô_w±Àä@3SS˜šœËÍõ, Øß®oòU±+D?ÖXÒ¬´ûÂHŒWÛdYõùòV(Ð ËH½)¢¸Eœ[¸E⤕IІp—lìuþÙíÈ|µ]gnO¦YóÖ Bó€ÀZÇwzÅWI%¢BÕ+—uტPŠÊ7 °8•Åûo’2NWÉ€PpI±Ø¤ÆEtM± lg©±7£IÚ9ð:ÒbÇ`ñ]t£Å gËE¾^çYe©2ÙØ»p/”¹ýü!Íb02<úê$eKûåu±HÓ“ ëF¼}ó{¡Ý:$T' I*ŽQa«:à |¹,¶w ë¦õMàÉAÀzô_J@´/V%ãÒJW‹šUÓdö.L‘/RpÿÖU¸‡kóÀšOC`܇ ¿û7x g­gÌg³1Q˯¤ëÇU¢c‘ãÀ:)ò¥»0‹œ»]£¶ö>Ýu}rn©¬-Ü®2 †6îÛ Ôí…6[ãDÍvxQïŠÎín(=¼ww…›­Þ{771¦eq}=¤ÐœQ@™îÌ(™ñXÖÁvc?OÑÊÅÞ¾›¿w~š·ý4A*¢ÆÌR¬ãª¯}õã·n.¹H£Þ.·ó€‡þ×ǤG$,ÕØ/¥*û}r!ŒPZ'…µÎ}ìúJ ±?‰`ˆ6˜–Û_âõáif”‘ÜabVöH†-klôNÎ5©ŸŠ^l¶´¯€Ë‡b²€¯"Ú Ê]‹cDZùÃ(ÌÄd' ó¢wée¾ÞHƒ–»¥&ÐrÒI%÷’ƒš+)F4ò ë2ÚÕýv]öiÍ%@â»Z‡dDk Ƨtd•i£Æ¹ÚŠgjû»Î¯ì `öfÒÅí´PºdgXc”ØM6;RuZ8Nl&ÀMË…Ë©òËþí¬Ùäö-®D¤1ÌAŸ€iMß¿ ­‡PØR BBŸõG×– ýK†ø10(5º›¼Û'ËOȳ›ÐSid_(b„Ù—m€3Á³ g­DêÎ%VÛ"YöÄâã&âf¦úx zs¤c2SÐJ{c* Špð~ (‡ŒœO©í {«7ï—¿ÿÔ>ÔÏzË[r°.o%’Dî—·-Ùÿ#Á‘¬ w tH0®ØÞ•kêpSÅÔÔD© "ø]uÈr…T‚œ‹£[ØFÒT¶ó±z¨Juö+;LWI·¸zzH]¦?®š*¢.Ø¡çÝM½šŠ‡àø!:ÝT#SðlëË“w Á†¼ÂfÖ€(üå®Ôi¯ò˜„<“‹v–yÏ‚ÒOß6”׺âÊ&ɺ4ù¯¾“¸cÄV]Æ3!ýe¢™›i¿«‡¥Ù@ Ï«ÂÁøÜ‡½R FÔž[_”n~iN!̺>5—:xšbyno÷mUh•Ûntsp2ºN5ügA¬Ä|‚Í0…`³ »áâ2Ž\@ µÈa&»ÕÐqÛá,0ýÛ¡ f^»XSV´OÃʇ´xžÇu·Íï/e’u >J¾SÕሥbîM ×Pö†Ìë"ÜSð"|ePÄËÐeqW+I¾óàô³¯ DzËΉ,e–ƒp¿Æk®LÖOËúµÑ¼õ±nk¿ê±æ ÙÊ­¦¯Ÿÿòúw墳Ù:ßÒ°óÍR{Yt$ÓO¶é%¡–£)2æ)k²Ó(D*TI:tà JBF8b4jÑ3/Š ŸîÄÌã}ðy@ûwAhÜjv$MéWùaí™ûÎ_ëì¸:`mм1ž¬Ñ0U´XáîâœD°á`ëÁøe.ç($€ÅÓc«#™vœ^ªµáÔ”iˆ$üuìz:EÓR<ŠoÇQíd•F(r)› ¯œD°ášâºßw)ª1¢@¤> –{‡†Ç‘í,<ý\kã©ù²H—v`§bY{ÅP’ H5…`C*I Ü¾PÆ(1âšQ)šcI•6ã©|M«óõóª¨.7ÛÕ?ŽC'Yk+è™ØY‚ÛDZö‡J²ç‡J”Bm(H·%JŸ×|¨%Ê›¦Ï@O«Ñž(áXO”b9Ú8h~¸Óí€ú¡ŒvúÝÖ'¤šj¸¡¡È^³ ¦«{ªâ@O•¢(¬u¾·­Ïí£íÂ;Ó+Ú×·Ó«ôÍ7Mg£‹–ä“´?$¿œ+×þàÏi,âÕªj€<=$Y_÷Ãù‡{í6` úAs°öÿÖ!,´»¸K™D°ŽKDèµm‡{«Jel‡œ‰£7upü}Ú!§›j„cB·YääB°!/Ó.Ž\4©"œ!ÁÓª3õÓ¸è_AˆÏʦNG8²È WI:{¦lØCucâR…E’!Â"‘ •ud;þëLLýüicì#$ãù8ެÅ@.Çœ[#Ø}öÅPè9?ý¯þg‚DTAR×JøÃ±ê—?%Y²‰Ë*¿ª<Á<ˆÀ¸5üGì23Bì'ÅT¸;ê‹kU•>m*ýº'j“9sv^ýÏÓ,úzo~Ò–t± $ø/dvôh endstream endobj 3686 0 obj << /Type /ObjStm /N 100 /First 1014 /Length 3419 /Filter /FlateDecode >> stream xÚÍ[k¯ÔFý~…¿-h»«ªŸ+ ¸@Ð’²›Ý(ŠühÃݽ̠;ƒDþýžê™&\B²âèF<¦Æn·««N=Ü#>Pcñ²Ni8&lc}PÁ5žËß„!DÓ¤€S.ù† ³"H¾œÄLDöL„’×+#$6'H®\a!¦s ‰µz‡)é ó9ÑÛGS0bCñpmjØw†q€K˜^¼˜†™u¾d!•+„–‚=9H^3[Â,¢g­+W„†Ñ+psvW gœ8“€ 8)úÀÔˆñI%L`R‘ps+åú•ôZƒÿ"T ‰k\‘¸±„A’ÆJ(tìXpã«C ùÆF[ΆÆ&< ¤Ø8:Ì—'V±kœc§JdHÁ4ª%穜ô¼^@¡Á¹ˆ[&  a’²’zpQUVÙ˜px/å!‰ï¬^ûxÕ$ß@ýz-‡ ×Bë˜]ïå "z4&€DMð˜7!J‘¤‰†Šd›H©H®‰À¡’o¢;\šX´$61Fƒ{Hj°zÌÂÙè8KM’X$n’óEXiY€LQ:ÀÄÉQÚb»TD˜˜§oacÆ]›ŠI뙨ƜŽMê%¢—‘ZaYjôÆEFµÿr_—Ttº ÀKpÕŒ³*–.¾³ÇÝ©³P GC*¢ºžBgPÏÁqˆXkböŠ §0—Qdê°]ÅÔßÔö ª›ì)cI|vçÎY÷ü§×¹éîn6ÛýY÷ìͰ/ߟ\lþ{ÖÝÛ^Mùê{f0?t_t»ûßSùrÖ}“Ç}ó=iüÌEÓ,V°5jtÉ´žÆÝmîÜiºgM÷hû|ÛtçÍ­ñ²ßíîߟ/ö»éGzøøù³ÛÍ矟áïïdm­Ú:¹~grm„å9N­-ôÅù·+âaiYý4†–Á;pó–”ÏRh£ ñüØGêyrƒ14š>‡ÉôàÌd9Y^šâzˆI¸UI­S»‹±Ur´©¼Hñùàí˜_ï/¶›õ€ß[«.ÀÔ&ø X¹eÄ"ðLk,V¥c6ӈ皃±f?Ì™ègà<¤;ß&)âÚ AÇà @`0Å"]>-'¶ˆ-všsíåMóäç0Û‘G6ïC>o¾“Dù¦é¾û׿›² Ɉ--‚ÊæÍåå¿:Ôû·;Ø+˜ø·G“H™Úê-xvÙhXU«ÙÂÂÑ€R—ަyáha†)Ù¥£a€ËuBÉ·šª\ýp»Ù—%ˆ¤‘®\öUãýá ØBãÝá‹2¸F÷Ã7ÄÂÄtü‚  ŽgÎH=ƒ8gpßîéÕv|–aM÷ôüaÓ=Ïo÷Í×Müiÿ"Ÿu÷/oö;MbX¯WKÞmß\ywHŠÊ±/ótÑßÛ¾mŠñk°B”‚5?í¯p5ºpXg‡—ôMñ”ìí(°ÿ°.ѲqA-•hÙ[ïèOL´äª°²G¢%ïZÏöO@´P_«Y[%Z²°ã«’çAúiN1ÇqD27h®Î¦Ÿóäi$ùk%:µ®>ò-¥¸êhëm‹h<:A+aáÜÎ~â…£­f'‹qkDÖ¼t4á)‰ñÐ5ê¹Æ/×yè=‚ù€¼®ñÐ{tõ©<p«yH«•Oæ¡tx¢R›ªWAª`«àªà«ª«ðŸáq§7c¾jn=zú¤yôr»ÛïÆ«‹×ûFÝé6žò*÷ê¹çý>7·Îÿ†Ø‹Š•nÇî3cÿbÌ_0îËíôÿ†<¿Ø_bÀ}õ¯úW¹Î¾ÅÝÏ·oz‘78t÷Íþ¥¹}]çÞî=ÛãgÝ×O¿l¨ž½×ïr1”îɃó¿?~ò×ç¯òî³o¶¯úÍÁ„Îóá‰0i)€‹²“êi º¸Úíï¿ì¯P!œuOúãT@gÝ?/¦ýK].áóç?ZTÃ7Ë¿"ê?óÑ?:æ×ÏZT~Î>ÿ£ê/g꽟:¦þ3eŒh‹!Äã‘rö`3n§‹Í‹±¹»Ù]Ôï±­ª®+úºÊ*ÔÕúuß+Öû~ƤevBÑ­™îÃËþ<±¦»Qm‡±äýë/òÅ‹—ø<(!ÎéµgÝã}y1Þݼ€¡@ûÏöùÕ?´°…}]ìvÀ^ÖCûgÝwÇi¬Ç]1uÛ[ÝÝî^w¿;ït8žwßv}7tc7n/·›.wswÑ]v›n۽]·ïÞtoožäáÅeÖB•þ¼NEÕ©½'| k§­PºÈ²Šày?\f¾Ú>{3¾¼¿½|ójÅPJH£}H%ãOøTÄÑ"¤â¸ó´aošc49 CŒÒó`\Îl’IS²ó0¯þQ¥°ï0³Pû WTb´¥º`Jˆ×@¢µ=â#jzïOPbéQ7Y0ËûÉ÷ùèÇ^¦è¬‰9 ÆAR—¨EbW°kïQŸ„°òÚ¦Èb[cßC„¼&!ò/GtTbv!‚¦É1ÌÄe‹ìnгuâ3J;Z³~–6&@T5²mL|ƒ–H.¡ˆÜJÀhäµ%q#«Ê¾ed§ïÁKuu—#:®ªy°!RHXÜyD¹vaü`G{Y—_š! "[*…©}þJݳAܽîÇ|„ÝK)›y2 }ÊÉY]SŽƒ·=Ù5mÐÀØÒ;´Þƒ0ü[h?®à‘zäÖ9€4Ã$aróÀÙ{14ð>¬†ôÅÃâjèƒÁÇú±žKGƒU“‰ G‹÷­·¼p4Ão–â`Ô¿‘iéhñ­ÿ]–Oë«|÷õðµ½ÓãW‡WN¿¯ëœÿeµãì'W;úÚãPœP-r¸V2\+®• ×J†k$õr©—K­‘¤ÖHRk$©3KYêÌRg–:³­3Û:³­3Û:³­3Û:³­3Û:³­3Û:³3k¶•*ã{°”}Ç÷lƒûÓqÕ1ÁCÁoý8U3OÑù8÷ý ºiðõ6‘ u«æš QdìžÀ®F×6¿ s¥xJvŒd8ôÄ!3Ã4NäûqÄA ã°"âh°ÌŠäºr'@^;“Z‹,ÉEP²¾‘åØ&¯ïà|kù^y‰kõÍkÅc±¦únð¦ðhG˜ÀðNßU‚8Ø›DâàÙÄé·HÔÓd{ =çl‚!ŸgÏ!»9ÓŠy¦–^úÒÒE俨À|(bx$ Ÿ›È{ð òr(°A'¨¼°¤1 GNÉ‚ú˜†÷ÑqíØ[¶i@}Ë4 Àœ­qõf¸‡È)䦑7Ìã ,dEÌJEeû 8 è Ziõ%žµö}JÙz2DqFàI!ú¹§ (™s”h‚_“楕èuóh”AóÈL¤¼:06Ý)¼3Vã¡DÝkåù€wÊÂ{d̘ţ, 9È – 1 $Þ:³¾±Jˆ-k?.…b£:Ü)D6ìr¶C}ïD†É$ç9OcîíH+bæZÝ…ºˆõ…fBx?l”jÙÅŒ‚ÒØj?Œj¢îš3šxœ¢DOf4HŸþîò„àÈe™•±ÍþhĆÔzC?7b“A’,'õie2ÓˆÒÝÇi7¡¬Fò)Ѽj·ÉµºY«bf£ï+Ã)˜×Ý\õN‰„Ýþ¬CÖÄîÖŒð3Iê“ÏàLžòH,6åÙ ÂÓº;A©{„Ì*E©xä?F…ÚÖ2¢êàÕŽO#MƒÑ4õ~µ‘= ƒJ~C´y즥´]U‡e£ãrÈëêPœmÒcíqJÙ–Š‚C÷'åŸaĺªZÖþp]U‹Ü“NYÕ!MÓf™à&Œ‚„"æÜ»Ù¥YœŒë{FÅ\]ãÌ+»F V·uHÑÐÌ(~Bi}}ZÕSÚ†ÎÐG½>ø¸;Ãéž2Y:š¹eX8Zl—xéhÔ2ÑÖ5Ë6 ]ks^ë“^ë†^ßòûw™…(¿ìwFZÖï u;Ú{ýNW»‰®v]í&úÚ µõêàP‡:8ÔÖc¨­ÇP[¡¶Cm=†:s\·õˆ¼ÏEm6Z8¨-/î VÌ{ÛF>%Í\?å0MÎú9;7óh2ÍnžQÅæiš×O =ª’à 2ÑW´—tÚë¨Ð§Áð%Bm-ÖÚÎ`Ôɰ ÎêÝŠéµòLiAú–õG€œQÎù›ˆ&ÇÚ]ÁÖ ‚Iô7¡µNn‘Öp÷ H«%1|ƒ€Þ©Hwzè)ªŠÊ.õ›H˜©u°øŠH;ÙI›³у·ûu±(йüPèÉŠoõërD«¿­†o• :õÓ= AÙ5Û›H%© å÷<@ZT·½·dÿçÕ endstream endobj 3806 0 obj << /Length 2088 /Filter /FlateDecode >> stream xÚÍYßoÛ8~Ï_¡§… Ô<þ”Äàöa7M»] 9\ãÃíƒb3Žp¶äJrÓì_C)K²œæÒöp/ERÃápæ›c­#½=ûuqö—7REÑI"¢Å]Ä„ i’E‰V$Ñ,Z¬¢›˜‹Ùœ§Y|±É››¯«å~kÊ6o‹ª„.E™T³‹ßÏ.gŸÎ¬@#֓Ȉ¦*ZnÏn>Òhƒ¿G”Enê6¦2ûá&º>ûûõjR•mÚGP:™RZ¥„ ”&’N@wF)/.þ ”·Íùùb–¨8¿¥ñÆ ß`#<‹ÿ ŠÚ}ŒMÃX%œü7ï×8‹ÉHÃ,žØYœ™Ê0 –8)=Q)¡°?g÷Ê/6Ø%ÉaÊo«ýb&³øqg&¤ÁîéA¯/­{ާärE$ÏÂÜ¢l'ä1êusʈÚooM=!NPh6«ÎQªgØŠVí‹»yüo«šqú=Xͪzõ F2祟²y~•m> *‰¸½ß7úÊ«_›|åM9>0ªPªsþ¾±m¿ 1g4¡düP´÷ÕÞ* #y‰Oc×ÿÒš²qÀa»Ê| ›V`ʹJe|í …=©Æo¯ÿq¬…D“Âð²Úî6¦5›G|ovfYXí Ãë„ FjŸû+ìlï ï"á¹³Ç.iÜâku&?¾G×*–þ»²5µsÇ|éÍà¶4À¼Qز‚“,@]º÷Æéè ì;\z„æcÐDß`5+ŸK’¨l Ÿ° Tš$‚…辨6ûm9Š(ÑÀO d'!y‰RÜÆs™1 dì¼nkŒWhÿ4…`R=~9we}ì(Š”0ÕÞmUm¦dB|ws–yc®­s´Ågƒzü<}sn÷-ÅзÚzo¦ 9%Z똺SÃ} Hh—"n>u»Ï7CTc(8ˆËˆ¡2„{»·þ‘ˆ.™ã£6Î-Mm\@:/®ÂŒ“qyŒ¡Ó¨ìÚƒ°*#\v^j#<hÃBYàÙ˜Ö¯\Ù'Ã|’o§«Å_)0äqv^/ï±ýPl6غõ£V±yQ6Ý<R/poј-Cjº««íÓ¹ï@j>G°ùLz׿ãúÅ¿‰~I–ôéϾN¿Â]x.Urê®HRÞcZïÊ•K__¦Ô#gòÇR.%PÍì›)N—ƒúT¥€äÚžä*a÷6· èŠ×bqÈ–§ó.0ø«êz¿¼¿˜Îº0nS}¢ŠZÃÙ„Uq¼Á'^¾lÀ|¦´YоÎGßmÝ §ñ5Àš»G\Áú§ÿÀAzåÍgÉúë©JI*;ýÙkØ7ÓH¤`$=TPž!ñ„-\e d$ƒr·±{ 5‹1?µýdê ¯È¯öĉÝó²ÎIl»wQ죦)Ö¥»{º7|²¹åiîÎNSßk „£oþöañá—+|Áãƒ5ë°zî§Q2Ūòp?õ.|aíN^Ày€M+ñc8Wqûþ9⇶œ‡sMDʟΖ`2ÍžMyz"{”eŒØÀ±·Op „©A,࡞.—Ÿ#ÒÌߟ`Rgƒ¾Ê•¾£iU™&P¥IÛœfJKì ]upzRL<$h¬Š|]VMëª60akë{k?¸óW/O¸½ë¸k‰•$tW¢ùäݧ»æÝÈ'‹òyüíÅfÿJXö´Ø†æËŸ¦oœQÊ’ÿú&‡ô-Ôçzdg@åȤr‘÷>ßMq(I$g/¦ršñg/Ƴþ7E¹)J9* <†qÐŽwÀd¿…†!9Ù´p‹ßºU¶yQv•ûckN–¾h«GÅXJ)‡¢ï¶Xß·8†um«é+l¡Ž:þ´7]©¿§ˆŽ›âO«„ÃR°> ÷™¥ßŒ+ܦÚgkÒq T§«&¹/5oó²Øí7yþµèËo»jœ{]åm>$“‰™A<) wÿÅŸvá?Å„ðÔÖHÁ™@…’õ[[Í»¸ æ^Ì4²×ñ}îÿŸa Ÿœrå{ÒsªÎ™æðß9!ŽéùëÊAðãÚ‚M9Þþ¸ëâò endstream endobj 3830 0 obj << /Length 2111 /Filter /FlateDecode >> stream xÚÍZKs㸾ûWð”¡*#,Þ$\µ‡¬gvâ­ÚIvF[9x§R”ÙL(R!©õøß§ñ¢H™zØ'{1)l4_whG·Ž>\ü0»øîG.¢))Y4[E„1”È4’J ©H4[F71e“)MÒøªÈ𯽾«Ûµ.۬ͫš4&\N¾Ì~ºx?»øÏpDz RXD‹õÅÍ-¡ó§#¦ÒèÞ]GŒÃPb>,¢Ï¿\ྚ©)D™pj~ÒùzSh£–^:5Wuµ¶*9]ê[¯Ô§Ñ[ÓÕoÓ¶¹¼|ÿµýë»_ýh71E®QaÚÌヱ™ì)ƒ£)¥ˆ¬…8AðÇ|¹g^¦dfväUUüœmü°¾DƧݰ?ÁZh_ÓÙDŠ8›O’¸Ð——‹ªØ®K7æ7,ðdª5oÄI"R ™Jk8œ Bx}“—E^ê·“©Ä8þ=¯ÛmV|Ø`ÏòS’D¤ôkæNN­Ûmm`—Îð™{Ôz5a8Öµ.Ú5µ•Þù†õ„àx[´ùla[+/óòvo¨[j3!Âí‹1=I¤^Ù„Pû æþ£mЗ{ò:¼C[µrÏf;_¼ëÝtçÁ€a &S‚q'”ÇUnTáòÈfn&„ÄWaSa¬ÛT®˜1LÓŽÀФaØç®ÌÇ#¸H¤=\Ù ëH I—NÒÛQ#ÎÅnd;"ŒR c`ó®Ëå×1aŒ"šÊ0p^Uň´)•ÊÎ9¹Jˆ0s£ òpÜ~Ôf§îAgç ßà_Ø•Îm½Õ#êÐ)K~ÐAO%ºÅÝœç;¶Xd³åà#Çéœ:qNm™ýµÌWOµ²µ‡l¶ÖÇ£Ýãç&-—a*L mWì=&¸kæ•Ñfî¯yÓî¼À æ/ž<õ¾Ë!Ç0aá¹Ö™Y)¿0Ú˜¦M]™½þ=_j×`]Ú¼XØ·Õ„ÄÛra<;+òöÁµf^èÕ׳Ï×{38öMÎ#ÿö^ Œ Öfíã§©õ´SÛàP:µížTµ™óxYi#³¸¬Z×toœÙ)Ðûß®ï>oï\gl{Í3 6¸oòÎÌvP¡ËÛ0Ì(®‹¥TSHÜ"ì.™ñY"×ä0eZ³òÐÞá¡·ý¥Y之²{»¾ÃLkACLz0쇼Iºii äéZ£8Nâ8U8‹ÂÉ™‡é!ÐZöŸ:e2eÝ´a²@RO÷ã>1L‰ôçšô)&^è¯!Ø)†RÄ·:(@X‡ …ˆî3~î?ð†{GȨBðñ€”]¹ƒÄix™ÎãþÐ×ùzeˆ–Šß´ŽÌmõC-‰ŒK·„Ã7ŸCÞô8È›·¹vÏžy òvç^Óe<Ï<³ÍF—K×ëh}v,ÌÓH&wz[ÏÍŠÆè}‚*ÊýCè~ºñnÚ1¡V_znË|ëEœÄ¸u8NW?Ó•Ÿ†ãgÄJš|{W~àÃ¥5&Jù²²&—TŽÔÇ–º‚|õ¨JÆ…ôÛø¹­Ý‘ÞÇ*#”×I¯šò>ú÷žÞÂ,GžS@ O+ Ð$ATòaÁ-ð`ù ïJrG·ëÄI¬;ú·ºl:÷²£}å¢4¶Ø•Êžtªá6ýN5T„ñ+œj^E°I¯TJ”?.^Mõ@NSCÒû¸vBB†QýcWb:•R_¦çhJíë9 5\ »Aåv¯\<~ˆqN³<3#<{1'@b¥R¯€¾u,wS$yö9¡°j¶ã9ï¿.ôÆdßN{¶{R‰ØÑU@–”=Õ<ß^¬uMÂáâ‡]O²'dɤ/ÓtXçJƒZG«ãÎR‹[ d?aÔmÒ?ꪼ}¹‹û›nMiúðoºF#“ ešš0¾:¶ÈAx  ŽÃöÁ"C±m$i…ºF(içëì¶Ÿ¹¥Vô&8J0âòàþ|Á‡ù!Iál&ÿüpïÊ-y?üT®qßì3Ä|eìj+¹’dGñ0­ „švì~‹(”¦Ýàƒ"‘ÝZioE×s{¹uà2‹ °Jw—KÆ&ÆËGDô0½Q®NÒË~µ½—xÝ¥Ì}³Ï;÷®‰ÝÞ^—î6b^¹‹ ™ÜÞÙŠ¥{q=Ðç.€Ì‰vgê¢Êü™–‡vçóööṥYQtzZÑîÑÀ2­ÿÀŠWîµ wÇeîÏÛ"‰·ÃŽ&3‚!®õ”ÿ€ÿ Û’@ ì¹_jª ž2Ð¥®³ÎõBœ›M@ÈïÑÏY¸¦ð÷Sá[’K,.‰òŽkv)ÜiŸyÌößU6°>Ü_‹u¹¿üÿ‘¼áx endstream endobj 3845 0 obj << /Length 2020 /Filter /FlateDecode >> stream xÚÍZÛrÛ6}×WpúСf"’p/3m.n2í¤MÔ'7Ó¡%ØaK‘*IÅq¿¾‹EДäÈrÛ'ŠÄr]ìž= ×Î'ßÏ'O_2¤HÄq̯E(‰Ó Å‚óepÒh:£I>+²¦1?ŸW‹ÍJ–mÖæU 8æ4$,™¾Ÿ¿ž¼˜Oþš˜¤§‘ y°XM.Þã` ƒ¯Œ"‘7ZtD D‰z±ÞM~™àþ2)[&O¸YfûANgQ’„‹ß0¦m“Wæ¶È/ë)ÁaVÃ=oÕÓ8Ì+œ…\šß꽺iÍM[Áµ¬¯¦ð^U+;Õu“U0®µOèG¥y³“YæÍŸÛ 9%<|21L¬\v Ë­jåFã¿úÚ:òíù®3näÖâ—¯æï¬¨ñTp¡w§ºüC.Z³S¹Ý±Íz™µr‰h5Þäí‡jcëŸÔžä8<„0B µíx7ˆsÐ Tçè!Š!‹sD"á:Û¡t:#ã𣢡UÔ™RèKž™Ý;;›Ocf—S ýòìÌÔ·•⩺F€ìo˜c *<€S­yش˳³@™Mü?} MˆB¨G*¢€,r®°R¯åk#â-Z  …(ªòzD I Š0'ôí!-_$ê @‚pêê)…¦DGu‘J8Ð Å’ÈɃåÄËîAâÌh +„M— ˆØl|hÂ:³lO¶ûªp^r«… ¥Ž,®å"W¦º.õ@ÞÚ)\‚–k—LYmãT÷n°ýá±=Lü_ô0ŒSÓÓùÇЫJc±8> ËŒ!e¨dCàš°õCö0Ë|à‚FY¦·¢¹ T@‹ï!”„KÙgŸË{’Ëã­; —>¹|ˆâÏ$— šÍ.kOM.#¨½)\O^E±ÊÌð9\>%¹ìé<)¹Œ”ëQËSZë¨åÀÚc©eϸƒÄrS.UÓ "Åm¼àÀ6÷ìÀ×ü=BF=DñýØfÄ9ô±©Ï6…e›šÐíeš0 ûÐ:ª™ÿ­ïûŒSj˜~f¸§flàäG„[ªyñ1¯ÛMV¼ßËÛÜKo»2]DV€¢«¬8æ`¥–™ål®DÞ˜ØÎ;ŠØzTfÒ§|úàZj‘¿ƒáT¿­˜Ýz­§OmüWöƬ8MÂgêœûÕ+²)ö£Cš†f;~¿–íïnÉà|¸º3v*À¾F^mŠ‘ªË6ËK“–p»Ê>å+ãóàÕÓ7Ýê{ÇîòJM»Èe¹p„t1D¶ßä.£;€ðñ!œÎ—U»ÅGŒ·kÕÝñMÀùϧXtÇ´G> H¥íS+KÀy»ÂŒ]oe¾ZR}×é–PW«ýoSâŧö‡ç¿¦î@iIÇ6t™Ÿ~ßíö"±3a#[#a{¼D„—UUŒôQ„¥(‚ÞÒuRÖ/‹LíüµÑðÍHnFPÙX×}]eE#GTS(þiꤞŒte1ж]žkBaÎýM(‡æ±ý=hš&Nà][ç£](87Jãý]hºëB!5p,½¤øSgÜ­m³Ç=XŒ;ö› pžðh`®§ j#Í8p1>0w·9®OVŠáíl…|ü†vsÛ¡_¬ëª år?€SB!â…Ÿ_ü˜)PàŸ ´í/Uë¿0cBg›µz`\ ( iÌÏRÊ¥þÄÉìWM5ìé4¯fV¤Chãœ4dËÆH}€Ÿ ¯•h^ZŒšáäÊ}Öý²;=è¾H*“ßé{õhQ›•Ue¾n>mЫ¹ŸÝ®Xˆ³剹]¼þ˜/€«~àÐ>”w3v Ù3×­ÛÝfDZ;¨{‡Çà&ù¬S²¼l4CÃv×QÙöDˇÑºé´—<˜ÖÊAM;†{Ĩ*û‡d;Ù*á”w>š¹á8¾ÿ1@-ìñ|k´ýÄ)WëövüøËÅËHHöçíJ †–„ˆÏù—„ûGŒh®ë‘ZèÅ€Îe)ë¬ z§ó©âGv?e–k¨RWŠ)·O’3ÌψpÄ„n‰‰‹«»‡yÏ+ý·×*CYÍÿUÕ. endstream endobj 3862 0 obj << /Length 1557 /Filter /FlateDecode >> stream xÚÕXYÛ6~÷¯R š!)¢Ñö¡› "Ýø-ɃVæÚdi££»ûï;‡4šÎ¨ŒÃ‹<©k7|U¦íFMÒde¯8æ4$,ž~]¼Ÿ¼^L¾Mì€ÒÓHÂPI êˆÁû4AûR©¡yÍÚó@áó\jÚbiDòû¬X¹—©)¢MyÒH“[Å”€þþ.[+½D§¹ÒµnÌP„@ î]V4Ú£;ÉÝ«E/ÜɶNôÑZt®^ŽîQ]N—U“ÌG)Ý]¾n͹?YéB»þ´éŽq]•›QHÒY½›ax©¯á«®t‘ês™ÈàjÔ|nqHV4¼Ò~Þ«fîäh˜¸iÇèm¥‡ëÓ=¤µŠá¡ñKSo†×7:͌پ°\C0Ø4­ïݸ€‹±“p%w ï ê‘ÙïnQºU ¼A…÷Fé¿dEš·Kí$ár¿“ä‘­Ø þ~@—D’ußÉU®¶Fz€{c¶•ûÓI "8€Y ™ì]±ö¥6kc—‘Y²2FºœÚÈÉ>žú˜õˆòpšŸl=¡ÐnÛ = •åÐÙÿ#ß&ˆ ,•è í§n™ñòÝz’W%Ô°cU¬[1ëvší¶:^á(¤UD}…ûØÚ¤Æ´™ñAûšã7m‘oµÇW§ŽY€ä1f9X6 EôÝ;¦Çf§pßç|² ÃÂ-ÛýjÁî8ß̯ÊÒ÷Qu– ÿá3¬Õ{Åwgma±PÒöxQe`Åbl/ÿ©PaÚXÜÀh"˜¸¤HzC˜»Þn†ë) µWú[«kÇôFyÇ\06ÖÒÞ¼ìRÝŒõÖ0§½öoËf›÷òÞÿ6»1•·è.¥‡£9Ûšoø>G8¡¢v¥ÕóüßÄB·þi±S'bwðbK0ÜiˆzÌOÙ@TÂ%©Çpƒ¶Úá­éJvI×Û,¦ ʇgÚ‰'TBÜ“b€Ž{#ç˜Ï‰êؗOáÎGöŸ´ËýÊÔýPcóÿW„B> endstream endobj 3857 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./classCCfits_1_1Table_1_1NoSuchColumn.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 3868 0 R /BBox [0 0 500 217.39] /Resources << /ProcSet [ /PDF /Text ] /ExtGState << /R7 3869 0 R >>/Font << /R8 3870 0 R>> >> /Length 289 /Filter /FlateDecode >> stream xœ•ÏNÃ0 Æï~ ƒ‰S§IzdÜÆúPí¯VJµMðø8]ØUªíÄv~ß×£!F“¾›î_<®ö`p=ðp‰94->ÔÚ°ðT:±^Âi‘•!2Z¦X cÝÂÍd²ÜöUU¿¾íUõÜÍÍzÒíŽíûm½…i 3(˜ ï?õÉ'èñ¼/ã¤Ð‚3&%»SRZON¼–—yjXƒ)ˆ½‚DJ -Ìqö?-Á‘/CO¢lc-úŸ~5‹Ã¦ûUq…›­sÄgø\e‚U¸ú"?w© K"‰AHN2—ƒW·þ¼hÝÈš\FQw­î,¸:‘[rõÆ'é^Ý0™m$µÇг‹ñÉÅŽ5,ïÔ›oŒ†€ƒ endstream endobj 3872 0 obj << /Filter /FlateDecode /Subtype /Type1C /Length 2591 >> stream xœViPTW~MÓï^#C2Vº Ý$F³¸›%›& ÆˆÈ¾ª,Šl½°5KÓMwÝÐ}»›nšµA5&DÅ-™qâ+#±2¦b2KLRuõø1¯uªf¦¦j~LÕûñÞ½÷}çÔwÏw¾Ã£¼½(ç›#Ë,Z­¥Ë=߯2<&È‹yŽOXÙ\ÇÜ&#ö¡ˆŸøx÷-ùÁ'¿‡ú§¡äÊ›ÇÛ°#Áþr\tÂ+Ë—¯Uä—æde¯[³öõàŒòàî‡eådɃ—q/%™RE¾,S^‘#ËP?Ž™¥”¦þûÚ¿Ðþ?|Š¢Ë¡ù[¶+ÓË2öEdÈΉ‰•ÊÞ¤¨]T$õ"E-£^¢b©8*žzŸJ¢B©0j5µ•ÚFm§>¤^§ÖS;©* àˆ¢¼)%uŽ÷oÂë¯&~ ?›Í;_@ ö ÎÒbZCÏ (äÆáØo.¨ZðØ|™:ÒÃÏ󾞅°Y~×"ÈvÒI¶ Åp}tÊe?LðÙ~év ›‰Lj+’ë°ö;QrƒÎn>‹¡=L½ðÞ©jÇ6ñ ª±&”åèÔ"j²µXÚlQ'KX 2Gê*“ê0P?Ȭä =€ö|°1iBvñÚ嬘 úá%ð¿Ÿ~ ¬~È>+©Tg/-gŸcé½lÞ ¼D¢˜ª¸NnàO_½)ö[­™d~ç æÏQL‚° ”‚ÚPR¡-%UDmS7$w&5ï&!d£tgì–™« ë…Ù4±A‚¿Ÿ¾{Y\Þõ~زDNbzÒÆbÏJðưýÀ°tzªdÿ¸x$Ï©èþГ=+™~„ñ½ìw{”÷û;X™Œ]ôf‹¶Õü9†µÈ¿,w´O"~Þ°žÙòçWcR‹bS%_!ƒ5®$»2V%ª@-–FÒJð‘&ýnÉ|6"ñ:}¤ûŸ‚ṴÐ}aôô—g7± Äþ‰¬WòæÐÝÑ£n±/¤.O@ËïoøÌCxG¨ Sžß[È.1ã|z‰Íl!Ç1X…fM­#÷º˜Ö¾©Ñn0avÒw}ý ÁH6õh:Öáƒt,Ì–Ñ·ŒöJk(žD¦ÐJMh-.cŽ!_æÓÿZBéÞViB8Ð¥Am¶A † ÿº™ßÐë6qîF›lšvó- rXо1whìorôŠô.m³¾Ïï“«r}1ÇÅŸàš°žèhcµ±Î@ DoÕ577üvtBhÌȾoS$s–v©(5O‘¸5{ìQ±¸‚]ã ›Zë­v‚ýÛˆÝÔça×0p¨¶'ðÎg¯\txר„¥>WtªûÉ€hbxàô´;wmŸØ†õSŒÏïú,š™xá2Àt«ÉfGmåÈUºƒ'“:‹ÉfŸ²çè î´KgÇú§‹+Û”UJ": øLÇFž’¿ÈøõðnÌÂÖY޾…F:ÙZÓl>ƒá'v ]­³ëIfµˆ(Œ._)ÕÊÞŸwä„fØetÆÔ®±¤`¶½ýQâ­cÇ;Ä'O 6¢zÓÇ=£mŸ´‹|™HýtôE& ßïÂ=xù.ÇñG¡J£5ª .®iŸ”@"SÆ!u¿r4­;’à•ï%‡w—ö÷÷ö¸êÍ æ&‰©ÅÜLšðÀˆküì€ÝCÎÃV‘“]§FnS«hˆV«,” ÚòÊÒj{€º¯Êaª/®éàDãt4º-ØÉîS· 7é¨Þý}1€¥ÙY†¾&·N¤†¥N$×58ší½’xú{6¸Þ`5’)¯©Í5=nE#ÌÂÏx_ÌBéw|X9÷ŽÐhÍÐäW¥TŠäÕ‚ Ôh±‘f‚Ç[ªÒ%óH:›{,g6ýðRDTvR©8Þûø™Ñ©Áƒú²^ñˆÔµ„b–Ÿ²#$a¯ëØs+7ÁïàW|æX#LÙ’UMðêð¯ýzþúÝQ‡>³UÒ¨l–w©\Dt¨·»ï–3’K³2$I©Šmä-Ì gVÿÔxÇð¨x ¯{Ð} ûÎÐõTõÌyõøo’ymr±Ù\ÂÜ«BV[Fmt¨lÏcöš2evS}’´WïÆó;‘éùJUˆG‚Únôn½º×ô f‚§XæÏ:™>Úö«£s¦ {2ÿä#€FyÌ Ø(LÙ”&ßA¢IÚ|º|¬fÄtúúú¡ÂÙèžÞ’Dv—gæìÎÈ#!˜ß\èÇÛ—€:!fïÀ aÛ#Ç®+¤_áxûÂ}®^ôAÞ/œÈ®r"cŸæTv©Û=ærèå]⎻¾“àþ®®¾ÑÔC»Âò÷H öVg™ßÂ!yß°×hÓf½.ÌãG' ±éÚÈm ×À=©´Eçx·f!‚S\…S×bl2ßÀ‚~Ë8™^´k¦‘Ñ–­-¬Ž­å{î»Þb%Ÿl®N“Ìçq-ÐX]ÃÁK(ª¡ºÍÄýo@'N»;Ç9O<˜µEÂ&#SX•.ÚÈÊF\×àÂ^|äwçѳ‹ý¿èXz'½½¡¦ÅÓçÕÚØÕ±5j¶Ø­vK+õ·T¤JX52½W¥ßV‡ý¿ï¹5Âüâb…Ü¥t»\CCÅ.¹„뿚QeÃNäôøÝ¸šŸû¯`bæ6 Khÿ e­N« ÔU½ªûn?p 970¤ªråÙÒòt’@ÞšŒïÈ›û§öÌl©l(!…x{Òž÷×î<¾IâbÚÍf \´x·ÅÞî l#µÝ5’zl¢úx àïf~ý&ös6à¦ä…éôIrŸ?qìê©eYGÅÃyí‘\«ìKÌ_Nð ‰3ˆÄnaH}¥Ýü%fšÏ!ÎzU.–‡ûi¼+˜¿BØwýtðz;Yñ¹ù:Ú¼¾J¿ÁS–§žÐÈûë,¿wèœt¸M×j¾€™‡¨ÖšXq@ÆYg#j³Ø-œ4GZ5œw sœF³³–“E7—FÀïþ,„{>w…N:ÑRÑfÇpkskSÓÁ¾“G žtesw(C¦h½.ÆSGÅNC4&ÎÅûäHׂ§»ò7JØ,dŠ4ÔD¸C '*°æ5èœä¸2<µÿò»Q‰Qqâòéœ8²—äWnÜosÃP<7 Å{†!û“aèPKEŠ„mD¦˜JM,áD0¬>X€Ï» |>1©BYaažü`áÐð¡~÷pÁ!™„e½ÿkÍWÓÎÄ·ÂÞvzì©{ Çl>>3õ>¿£¨Š˜*s endstream endobj 3792 0 obj << /Type /ObjStm /N 100 /First 987 /Length 2700 /Filter /FlateDecode >> stream xÚÍZmoIþî_Ñßt¢§«ª_Oh%H¬lDrw{‡Ûcb]°‘íHì¿¿§Úž@x¹C!®é©î®®®—§º-)E㌤” yR"ÎA‰b<+‘ Iy²7‰¼Á¤PLovÁÄÌ&í£É%ÀMñ¢¬É”\ô&pRÇË ²²ã'}‹6JµbB™#J*b($í[¼¡Ä3¼Í±¶EÃÎé%¦PÛ° •µÂŽç G¬é•"Lé¶³±R©²Ã ‰<•x•+®¶16«ªÃ› N—‚÷ÊÇbB(õ­Ç¦Ö9°Ç¡Ô98šè¢Ž"d"ûºmJ•JØDhzU>Q•d½è: ëè¡\¼…¾ëʱÛ1DWÐ#ÖM€r"Hã%Õu– *hVªj×c¼‚Å -°£˜Äµ b$I•"˜â¶ ìO¥òÑÀVudü‘éÚ|60£¬ó ¨¬+¡kí¨1Ì;ƺ7Um˜7WÃÇ&CKµ‡˜,N3zPAçJ© d˜>VP·=BÒ6 •{Ì•äœU>,!ª™Âµ6¯lWàD±®2dxéÚ°ÝäœÚTÆBÈqÝuȲª6²”Ñýû£æôÏwi,Ëͨ9¹oêóÓùâ¿£æár5íV/Üß½jž4¿5/©>ŒšÝdc^Š› V‰Îú¨f,Ö«æÛD`{`îß7͉i/O—¦94wfóÍúu>{½^^¬&Ý]óë¯#üûva8z›ÔIÅÛêŠ9ZR“òÙÂo¾(Íä¼]¯w"ÑkzrøýÉ#”,¤a¶0fÉ6j(‘hO?\&± ¢@V :ªA3Ë1‘çè·Ó“=*‚$8P/Zަ—kô‰‚1hBžqæ…iþø÷`„ð©ä‚…..ÎÏ_ýf©ÌÑGËÉåvd Òà0î€MÀæäöÅYFÿÜR¢õÿøY÷Qc 74ÓP}S7Õ7Q±Ä®p-›j+Gȵ )¥v;B€L.îl5¨n× ÒÏöASRÎŽÍ”äÝCRLÁýpt™êæmŽWËÉIC6Íñá‘iN»÷óêªo·oºQsñºÅf­i»Š£.°}µÍoÛžuÓyûpùÞT¯‰ˆß©0Üà¸]¡·f·e¬·ÆÄõ¨<ôìˆÐ±'ROäžØê¡ÂA;‚¤oÙ*ÿÕ~œ½zbRtwQ­|)` Ÿâë§íø|©‚‚Ø ]EÇHH˜) %U;$“Û‡Î?^ „Xmrú5Úo¾`Á¼„°’‘È\}²[\±Õ·°eœ³%x­HSBDFæMÅú!ò­¢‰¡Ü„m¨$ŒÊ ÊP}SѰUsk„.ƒpå ã'`ô þü™ÞWŠûWr¾1®Ô㥠={"õDî‰Nr'¹‡“Ì=ÑȾ'ú‘9îiö1""®ê‘K#"²¦ºNŒèfcjËôÈÛxHã§Qdê5fìÚ›`}A‚Õ7‡PQOä“ ÿpìçâäÔ‹ãý>}[âôéÞ`v$&JØÊõ8=æö¬'óù¾Kˆ¢=^ŠÅœj!{ ±ÎûÉ»cï à-ÕZœáPç¡öµø¡‰ÄÕ'‰l 1Ô{= ¡ÛI‹B©ë]¬§•Àâ°lo<‚G¾ ‘%gÔ}…m–-Cfð 1œÜʾA9év'‘`½N¸=‰.Ë)XPA½,§ôÐYè:±]Z?Fˆ•µìL|n§!&鯔[Š]Lû: LˆÞuéÁk¶Qoi°Ã(^n£îat”ñR„@–ÂµÔØv̦-€´K¡›ù®Km¡”‰üxêÜô3Íå0ú*óFk óy0·³ñ‹0úcnAäÈoÀ€zë3lèõR! äö1B·<[¢ÀÀe(wÐ;Tnqb)•D­Õ‡¡cSÖbv¨Ü„¨ò Îr¯ð+(ûþfßYûð9²örsdÍ=|–5û5û5ûïsöê AA…¨×XàúñG¤y1^F«UDÐà¬iàU¾­VËÕþ¥’ OE‘ÓKåÓx}KRéb½Ý‡¬÷«z£Ù˜ +‰·˜=4kèï.a=PË_'{„Ö£ÒÌ)9uÚ2H냛¶d!7cù,{xìq•y—é™Ë@î H•e(7Æöa8·Šïr{=“Ma(7±u_<àù·¤T+å¡ÜØö8t• ˆzy(wÄô¥3(Õ C÷’€bõFñ“ÍWn¾Ç]aäÏ3Ot7Ï<¡?p ýQNèOpB¹šp ïôbÒ­ÌÇÇOÍã³åz³ž¬æï6H#Ý…˜«®ÝÌ—‹ÃvÓ™;‡gÇÀ¸DoäxÏù_œû|Ï–Ó¿b9oÎÁp !âyû¶ëG_böÃåû?ßt 4=¸ØœiËÝ«JC$y|²Á £æ÷ãg†ú·ÛuW7·ùýѳ§‡Oÿv:Û­ï½X¾mÛm?ì¶+ õ—5U[ÛAõ5˜æ«õæà¬]éš§íîØšͧ›3Õ*,Ö¸O>1¦º'”UÓR=Û~ô­r¹¯|ôÇAÁm¿·EÔô´­ŸW¿õçxÚÖÿ×äRßõÏø†u> stream xÚÝYKoÜ6¾ï¯Ð)Ð1ÇHI ôR'N EÛlÑC’ƒ,Ñ^5ZÉ‘´µóï;CR»¢¬ØŽ-ÃBCr8Îó“–ç ^/~^/^œD2HHª”Ög‚Ä* T*‰JY°.‚!Ë#'áq•u%_6ùn«ë>ë˦†)I%Y”.?­ß.^­_ N Id$¥2È·‹ŸhPÀâÛ€‘&Á¥aÝ"V†«àýâ÷ujRÂ%’ø”VsJ˘p!¥IÄ [1JiøR÷YYéTå ½îò¶¼0º£ÂÃA/N8É¥Áˆ’‰•øê*×vÏ‘HYØ7øäá©vãMÛ,™ /ݺåãaf‡gKACÐa×j«û´”a©‘åŸ%—¡cq[ó¦ÚmÔîBçåGJ9Þ·ë²ßèÖ.ž.9 ¿ZºÎ¶Úr4-^oÃÀÒÙ§¬ sÞ•uh½d4ÜmOA”¤!ÙânÇ_® èe­†þmÏ£ÿx½>Àr®— ôÈŒ6•ö,l8’°9ý[ç½VbHÁ®¼ÕY¯‹ç0ŠXSÛåÎ ¼ß˜8 §I=Nˆ3Õô'ÜŒ+šÖîÐY¾™³Ï^v¡Ñâµ.XT¨p½Ùuv¥,ì³ßݤ­Q÷‘b˜ºé!Èjï ã³Zýe§;«+ðv»ë¦·„=¡ìzËQÖsê£ìo;)á//ÿ¼æ˜þH%…“P±5Ìú2SÑAW˜Ì3Gè¬+«¯Ž©Cë! ¬þ¸«ºQÖÃ2ZÄm-²>³§tekïdî:ÝÎ{ªîÛ¦r•ér£mBàÀîb¯5r”Ue©S·êâÉî®[¿m@`8y³~Í‚ñ(ìb°ø¬»>«ûc,ÌüüŠì=ÞÀ¦HØpÁ§5$ä» œ±î°”v̇4Æá(Í8Ϫʉ³×FêÔí½pug›9]h…öÆ‚ªH1ŸPŒy·kW›|þêkYŸ{Q®¶l/*=n`‚möëv©šæóî¹Á•-S‡LÙ2šÖQú Ó//Aà¬áŒj‚§ÓÜéMÖY¢¿DÓ`Í…`ŠìpkpL‡A•GD`§M Áîq:;éC¥:«­ ´Ôù0Ù ‹öÑ uŒdç*p2è7í§åvÖp«Î ,)à5Ëó¦-Œh­Í$àa]w]³Ïƒ¬(wºÜóoŸ;+—‡¼™÷È msÄÆ¿×ž'½.%8I”ו¹ëÊÇ äE»Ë{#Ìùlߟ½imŒsÎ?{Ú±Ýi{p|ŒÔw«Õz©$v¨Ôjõkó~—½96eâÚv eJ#¤@l*˜)o"ß÷­u0Ž)Ãåù¢‰íãdhDCɇ²U2iàdA8K„FÎÛ¿-yµÉÕ1àÔ—8}z'\_µ‹¸6û!¤"ö_2ITº[ùž‡v'±iu|À‘9—Óø€'?t²ñù[p’Èè»åWWçlWd5K¿ç¯ÎáŸXEx¬¢±“’Þ‘Ü_£aFܳ^¦³Ñ ÞeÎOŒÙ'§p;;¯¨\±t°??8uÀà×?ÿ¾lL7ûzn>[êzzý³›,d endstream endobj 3983 0 obj << /Length 1010 /Filter /FlateDecode >> stream xÚŘ]s›8†ïý+tifj"(³7ùpÒtf½”î^${AŒâ0åÃ`›î¯¯ì6v\Žd˜éE‚H^½:£Âèz‚÷Ÿ®GõGý¸žœÇ““«€!⹜ŠâGD|ß Y„X@\§ènzS¦Â!dúìüxÃ<¹"â.gÓŒfv£0ìúÞcën'WF‘jÅ|Ý*tCEÇ]›ï/?ë6Z‰(šârʺ^\Ücì5òôT7{·‘€Aµ_¸½ž »™FSâG;J)SÂ:$ígr™e±C<!{+MÊÛeRú·*my+:•ßÖ`hƒ](ÞåUkQ;D!›ªî²W9ª’Üß&ßQ?o3”P7ˆ¼m+K93¹!ŽFL% ñ7$è^Ø“4½¨ò¶(Äl«Iz™4 D1ÙëÇï}¼Ñ^´ÜWGÆ’^Œaü¨g?3e}›}ëF 0Ómžÿð ˆõÒÒ¬åP„\ç‰ã+ózÔ åZ3N‹¤[‰fŒ0½Ú—[: Ã`*ŸÕ—¿WZò`£ì%"Es ‡ÂT¡Ó¯òHÊfå2 òUå§R’5 ÇÛ_Ž{Ïc¿ì3eÔp\»¤`½ÔÿuTE]YRŒüòôô¦”í£þã2e3Ï…òšÆVñ¡¡Ž‡•ÝëIèóí?G™R’g/;´Tc‘ÉTFÃ¯ÊΈ‹¶xõ_·Ðó¹Q²KgüÚ;Eã7³äcÌr3X760bˆá“|<üþS•ßL_JQÀ±K˜g7ÁN ¬¡3ˆB4°b¢#d¸Ž‹Êæ n\Ȇ²o“r%æu]añád;f(öŸº*WÝSï 8Ð#` ÌŸøÍHhp4ñQ®0¿Âl{y ¬õ¢þbsY­_Ê £ ¬TäÊÌHªá·‡DÖU*Ãx™¼¨ŠµªH¥H$m©H¾hOñ“b¶u­ÊaÒJí£m¡¢&‡ n*‘Þ§íB¹:òǨÙŠqÁ½Ï÷DлÆÏ(eV•–#ËÚxî|;†©?F¦¶kO¦VÓ¸º‰?YM0ÜîÅ}È¥oŠd…ƒ÷熢X½ýâ‘ý¤tFôcé v0§V>7Ü L6ÊLæÙšaª‰õ®£Nç®]yÿ-ZQüV> ƒ¨Ã.Îrq©_Èé‰Éa8ƒs€Û¾çýo&¥h¶ç«…ñðþ7o º¨2)Î3ð‚Ï#Hž]€ûq/÷!Q?TRüY¥–³ÜÎãÉw6G endstream endobj 3875 0 obj << /Type /ObjStm /N 100 /First 1004 /Length 2817 /Filter /FlateDecode >> stream xÚÅ[ÙŽ\·}Ÿ¯àcòÂ&kálŠ $ˆa)€Á0´´'òŒ¡pþ>ç°›#)qnwúæEªîæ=<·X‹­ÅC ÚJ VB6í¡K(=…¬ß×›QHA”#Ç' µw¥Pñ@§ÐB3½”ÆÇ10gå-1sxÌSf,˜±tƒàÒ[ÈuLS¦À(R¡„_[iœôÌŠüÔÖŽºÒ ÃRÞ…º‚sàÁä̈‡ºsÍ¡âÐëЩ R9‹Òñ%%ØPʉ›CŪwzAÒÂÏœ<ñ ðB9•±(°ˆœêX˜NN´ ˆ0o<DZPMιp,Ü#gëæ˜ îʼn³e/|'Çl¹Œ¥ƒ¾3ìœoï˜-ó7ˆ˜MÒXy"`Õ³(¯Ì&Ö8¶`6)yŒÅlR}ŒÅl—¸yðàæðyxª´™¾‡oþüø¤ÆŠ·õR#ýñöÝ«WßÞ|òÉ¥Ñ3^ëºÑ&=š–«GKÌåÚÑ"-Òù>ýèîömxð aa«úé±GXÚ 8}€ºiÓ§Pj…+žñ@8}€»µÒÇ€¾ùãó¿_œÀ¿ü‘nؼÞÿúÕë»oÃÓpøêóGáðäøóÛpÏêÉ?~:â‡g=Þ‚áñöíÆ•AïæðõñÍÝ»×/ŽoNl|÷‡ãËž}v÷sxšð<%ßb¢g¯ñ4ÂSO§ŸÞÞÞíé),“ÏËg¡M¡Ÿ…–¦§ Cø²öæðøÝó·ãóï¸ýûÍá³»×/¯¥ôíá‹Ã—‡‡OóøÀ·€vžæâÑà%¥HÇG‰.^rŠÞÆ}:Tø8~w÷ä.`}óâÕ³7o>üþ‡·o¾Ëßå'Ïž¿:þ–j]ÃÈj¬È^Kø<œ.fdDÐXêUŒ¾øüOëø ÀÇ„âÅ¢0\ºGÆv‹Uô>¾|òx!KûÈŠŠ¥ ÒKÔÙ ž.×ðyx÷êÝ· U”KÌÌQšbeÕJ#gT¤r­Š¾{ö ü¨ýˆL£zé¹#g‹—çGÿþÅBÊ)G…O ( “%VY¡Å-¶¤ÿO-¢\‚ú½QkDµ_I‹#\cÉ>×2Â5²qL¿Û?|Ší9)÷våhë0­×Ž6+­_c4ª‡h¨3®-9ª°+Gc9ëµÐ‚Ä›\ÿûäøQ>d%îâ¿”?H¢ÿkþë3×}ÿú)-]ν•Ë}¦´.SÐ)Ø| 3Yö™,ûL–ýœ,Yߟ…<™‚NÁ¦àS(S¨ShS˜Èy"牜'ržÈy"牜'ržÈy"ç‰,Y&²Ld™È2‘e"ËD–‰,Y&²NdÈ:‘u"ëDÖ‰¬Y'²NdÈ6‘m"ÛD¶‰lÙ&²Md›È6‘m"ûDö‰ìÙ'²OdŸÈ>‘}"ûDö‰\&r™Èe"—‰\&r™Èe"—‰\&r™Èu"׉\'rÈu"׉<‹¿>‹¿>‹¿~.þUx’%¦- uJX†Vx¨¯zÿÅ´ò\?fm ‹A†€‚¼Øˆ¢ªƒõy°Ú`ae! Æ®sOÉ»Â+HÔ•šÈÈ•˜Ô[DM M`‡[t梺AÂÓÂ"»pë¦lZÄ‚(—QÌÍxAq«š…$z‹MÙCa… M`ÏO¨È´È[¸p ƒ·;·²ˆo’±BJ°T÷"Q±³€òñþÕ¨‡ŽOc— `Û á+Û.Öf ÿ±èìà«LPH¯;ù'Bëœ{b‘ÆË$VúgÂö iÕ°ßlH”’±Cîà„rÎÚ>2örHj¯dO€V ¯%|Ýʇ•;$AÞ2„ –"’5 Š«½Ô}Hp/ÄN¬yŠL½\œŠ4b®QË>ÁòÞ"³ØRža ŠÙP„çõ4šü‹PXeÙÒÃâxhxÿœØ¯g?ÛÄ\w"Ð2¹úXŒ*RRŠH ¤Ø«æ +㢴ÖѸg¿A Å8€ËVò^é(_[Õµ¤m¤qþQmïÅÁ£ò¡À±uaúÔûnzÀ²Ÿ;r*Ôm1ƒ“#Ÿæ}H0y“6Ô–5éHÞç&ru/MT…BÊE ¹Uàƒ„ÁFÅ6Hô•áÞH8“$ÑQB\$QÒÚ¬•±5Srl0keå9bç÷;‘`'Ë1I'—ã"‰õCaŸžÊ}ÆÐ GͶdLV´ðLw®Fމ‡€ ê{)!ɰÝ„ ïeqðô\ºFM{i¢¶Ñ¬¯9òÄo¸ ‚EËÈm?=Œí…÷Xš=T,†”µoìùЬ-èê=VVÛÐË|eˆ(Ü][°Iƒ-²ó_a[kQV®…ÅŽˆ ê¨g¹H›Ð‡¡²lºúÃxqÑÈÛðQT¶£QÕvâ 5²•ÊÀÐ €ìÉÎŒÀL¶²gYYÑ¡†Q¡W QØ |U¸8Ø·Íĵ´A†ú±ÙHÝÊfˆbÛÅ{ (¬ÊV;¤,­#ÞÎ3Wg®ù´áäMŸX}‹D_Ù¥ÃÆ[œG£;'În@ ìY¥¤;‘  `¯—->¥ b#€‚TbÍùŸIÔ•ul`\¯BýÙ0ÃÖ$t\Ù‡„Ø@•PPÌpŸƒ,âÊ+KPo8G]˜ºŒ1Tq³‡mʽ—vÚÊKIŒ3º…•)ïÅDJµléaaöä‘Íõ¾­ˆÙ¼äÓîªûp0Aq‹2Ê‘³Òræ8¶ö– –-EèJE¤Èû<ޤ=®ÿAíÔC—*ûp0‡ñ‹y6Žžá({èÕVza¼†yÄÊ+YEu4Ñ¡Œ}8pϯ<Áàäãz)"8›è%o)baUÇF-a6ѼÑ,‘Wm+uÕ¾Ö,õýl`Ó,Ù™`»n¥®¥$ŠbÿÝîØZAs4°}«+²”´¯Ußs@úTd®‹$ZZ¹S=µÑõtÙ2&lüØF¯]ö"0‰Ô5Ûè–PÙ"u]l£·¼Ö.½Úè:¬’»ñ‹Mô¥ØÉÏ6Òï$Ûèä×Ë]ô•$8)ê…û6:;Ù‰mu- Ý;i‚‰“ÐÏmtm°K­ô¥$P\[yßJGÔŠ&l¥Ã,}£‰ÜV–3ÌÚÃ1O­tC-U[¾ÔKo+ ×8þØáÜK½ãzE3}5 çý{T‚2†$|ä°ífúR(|(àÌ!ã2ƒ•eë§|ßÍ犴zRFR߇ƒa2Þ¥=7ó­‚ÿ8 $[®¥°ÙÉü« Þ¦µvÚìd¿ÜGo¾ºˆÀ¤ Ã81Šþé 6Aw"µónØìaÓØ-bÛ¶¢u_ë¼+xÏ;q½s›C_é›,`xÔˆgû„‚Ûýr½/­òQ-°}|n£+ö …íãKmô÷$þ %5 endstream endobj 4082 0 obj << /Length 1390 /Filter /FlateDecode >> stream xÚÍš[oÛ6€ßý+ôh Ë‹H‰Æ0 s.M‡x]â Ò¢P,ÆjKž.K²_?J²S[aDRö†¼ÔµM}çòÜxbèÌèœ ~ÞzÔ gŒ8Ó;|8ŒSÀ8r¦‘s3<ŸŸ|v¿N?:À§L>\(ª>œL ü:h ‡Ô™-7_¡É/?:8õÒ¥C<¹U.œ«Á¸­†*½¨0¡øñø „¸ÈG£ÓóéÕh4“bœ‰°?Õj5údóµb—gçæûÁóõ÷8qÀ1sŽÔ˜nà}aGJšBÕßW"Ѱ„fšöa):I¯ÊÙý‡ãk-uhÊxo˜‘ªr2ÁaXÄi2I‹«rµJ3÷ȃÃBD¯Š$í¢Ä*è76bk¯‹x!}ç}˜5r]‡OåÝ©Œ"ù8“ÏËhá`ßÛDéÏÍŠÝx‚2ŒžWL pmü¢@øà‡­­AÛVLFÜÀØ?µÖ"(Y’¡3—ìm.2¶÷EN àÝ`P[ëúÒRÝñ€yþÛ¶{€r¬?ß‹°˜ÝOÂ¥P,¢ø-Š^äPˆ}SCË¥ÒN gÿC¼îa'az¦ú©È^;SÌíNM  €v™Šàˆíok㥤ûQ»ø¨*D§éêSÆPmš‚uŸ²ÏøAN™A…¥ÈókOÔ&ªÚÔ©‹°ÌP+ñšOã7•”Ñ‹‚K¨ ?×ë$³tžÄÿ¸ˆEôl·­D¨—–Eúm§|[™Ò<àC¬‰¤€>oðg¤J°ÿ]$Aß.’â"?ɲ4Ó–¢ïŠ{ÃŽTkKÉÇ™XUMŸ–í*j dµyÎ…-E×zJ O]Z5ºá–ýšÉæ@ßê|β´\5Þºòß…>L Ü©Öë<«0Š.ÄòVd¶ƒLG­Î×àBÖ&ª€Ò ß\y÷Õö ™ˆ*Œ Õ‰Fõ\çKY?/%OX> õBÇ(W+©T~%Yq2×Ò¼ÎÐ)W‘ôm«¨î.`»XvÃëP¹{: ùa =¨º[Ð&Œg•‘h'´¹ad©-fw>É~4:Oª¬OMúStòXˆ$—=§ñu«š€ÖLt!Ì`òÚmYÃDz·ì-ÔÀ²B|{Ë&iÕú4SÁEi-Bå¶È ÖÕœ+3oª«­0•¬þpneI}ÀÒë?|©–VU¨r\‚XvHwdTv4 Y– Í4£ÜûtZC æÌÞÔäé…çqð«c®ÝÞ<ÕÞõÁvwÒoÓ1è%ÀùQ”µ jåoŸ .É-¤t)o{Ö¦àêœËHr;I7„Y}8­Ÿ-ÒDôe¬Õˆ“¸0Jt\{Ï8Â${pÿNßëN˜»m¤O>Þaò³‡¬âÅnTæä/K¢§™Â,Ê¥vÚêQëÍfFß±™xÖé4ÍÌg?ÔÎøè2­|á!·…l‹¯¼å+7„ q›ß m~ÇÄö™·ý{¡€Â6#\‘ˆL^#·V*Mš×©Ëá°Í›‹0s×óÉæCyëi>ñGŽoÞÝUn˜®oܾyW{èSóÿã´žR<Íe|Ëê›ìlƒ4ÿ_>,‰‹ endstream endobj 3987 0 obj << /Type /ObjStm /N 100 /First 1019 /Length 2896 /Filter /FlateDecode >> stream xÚ½[ËŽ·ÝÏWp™lxY/>Á€P Û‹$†Š=ŒC–çïs[œÄ‹ô¦ y†wºûðt±ªX^µ¦’lÔ–Ä„ƒž´:ƒ?ð+)”š¤ZyOÓÔïi–†6ŸˆÖç5EÈ|¢¥¨óÝJOѺ>`4ēׅ#ˆ[ Œ4U>x¼rä©FŸODªMç5Õó‰–*Å„QOM”sÈHMçUÜÜl^UI-”ükZƒüÔDÅ7Âò´¡œM#õœ Ú±HµÔMù¾Ú„Ñ0ô¤Ç¼j%u®/F’zÎfš:—#(Ž(g3‡ W# œÍj¡œÍZ5ÈÅz‚˜ù6Vv.^Ö•ù°Cað†|Ê"˜ŠS»aèÇ ÔИ“cݤ´:ZrX/)ã@€–B¿*&s¨)F|#, –w70›„ò1,†H­|,0›´©V3¬@I2-Ç ˜M…ÚV ï¢vÜ€ÙÔ«a6¼)¤B%¤1‰¶ylN´WJ0¢‡æâ3,ö¸Á§¥ñÝ*f3;n ýÅq­»˜ÍÚh/^<ܾþçéöéÛ·Oïn_ýü·÷óó¿û‡ÛgOï¾{|÷M{(¯o¿¿ýáöù72?<ܾ|üö}úÆÂ²ô–´I†*[ ]Ô.Ù¼ã®OÓ‹éöUºýîéë§tû"ýæÇ7ÌÛ>ùäÿþw ®‘L BËP}oËžKëÈ6ì„Dì#7” ö“Ïðˆ.%+ü…FËný"Õr…ZªEV¬‚µÈurŠìý*A4Ív«j¹ÃÅvÏG¢fÆr¡nä’†¦"¹Ã(‡ëS•ÜÚ¸Š„M2Fðí4I¢ Ư!½3Ó³ÂD³r§Pè¥rc¥èU’Ðìt`ÐGî¤Ø³ëÜña¸í"–ˆÍñ™Dƒw`r—DÛ¸Ò³p“¡Br[·’…‚1Øà™qô‚€E·?¬Jé3ÀË×-Æ1Ú5$¼ÀMÒ8ÀöÃÈ aŠ8ŒÃå*ItøGãÆšú!Ë1#Ö–{¯Kâ‹éýÐ_¦ÛŸÿòWîùam%2ö¥·?ÿðÃë“›mÞŒ';vŽ_ÝýòéíûIá%‚”†@h>ö>ññ\©ë â,l}üˆÛ«wOß~õˆWM·W_¼L·¯yŸ^ÿZz¯ðF·Ï1ÓãÛ÷?1Úžì(¤Ÿž~~÷íãü[9þö§Çï¾óÙÓ/iʵ “z‘WoÞái†åõ¸q®ÉO˜xÆìä3Cöƒña0Ö¥!k k`kàkkP× ­ÁBò Ó? d t l | b ê´5èk°e!ËB–…, Y²,dYȲe!ËBÖ…¬ Y².d]Ⱥu!ëBÖ…¬ Ù²-d[ȶm!ÛB¶…l Ù²-d_Ⱦ}!ûBö…ì Ù²/d_Ⱦc!ÇBŽ… 9r,äXȱc!ÇB® ¹.äºëB® ¹.äºëB® ¹.ä¶ÛBn ¹-ä¶ÛBn ¹-äv ¿Þãçþ & ã™i¯:·>äñŽ@äÌÍ}¾V ã?Lꊭ±  ¤¹7¹ˆü22{äÑ%;ôõH`BâýßI ÁÜÇB)@]‘Ö#¨Ø„F•‹H¨SîXìÃΗ¹SW²Âçr* Ù©xgxóÈ9b3x‹Ê3."!3a±øm•á@ ):´ÂüŒ…n ¡ÂcFtB3we¡"ðêU$*ŒÞ(¼":Cy`Ç d±jg$úN}zˆ0¸§¤Ï+hÈaµ bì„Á=…ÂLü„r2dùã* º€,!„élRXIþÈb‘Bž¹Icùi¬²(¹aÛ¤±^ÆE,–‘z«s [FêP=«ñˆìôWH*ˇ,´°^$W„BˆÛs¸_Å‚+‚­ÔCìsE*‚ ¤Ø9z?c¡{•3Xý¶‘¢Q;A»cS­f±xÖ ^Äèv’vf¨mç>ÉÏʽeÖÞ•{{eV;s»3¶3°@BÏV†äŽ„èØ\gù?×ó-}# Uìšì±¼Ò-1öœ­,LÓÙXfáÏËш|‘)‚+GÒa­Á€OeQw.ˆgf‡³ÉÌ’•Àær *'3 s°AbAådöÈúäz™, …lÈ!,µ3(‡¶š\e¨0HE~‹=6,„õ7h©áwég²Û› 5¶V|#J´™&X!VÏ2xû,¦‹„ã®Y™‘)«´ þ>j\ÅŽšÍ¹gHLP ‹M é5[F¬¬³U!+ÏzšîeѰ¥ŽÙKkL ‹Ã‹A&ŽýT[3u$ìØ0%D¶¬°•aìðÁVN8èÖp;WðÛÆ +³ðÁú¹_Æ‚õáÙN³gƒ¡ª";Bœq šéìn*Üu­ÓL+c ¤Gj—‰b´ÌÒ¥ TQ¨d“¶SYìŒ|1;›¬³¥æÜÖ‘–U˜«@=ì2ìÝ-5V©¹‡:Ší4CÝÉ‚³Í® "ÖgYFR6TàÉv^% (¡À_JuOa* yÒi†º•„ÖãÕC3O^¨c“/Ð$ñí4CÕùœõ<Ðä%ψSà4xÒ ªyvb+‰é'-fG‹§_†wnž¦É{YDf{C”±¢Æ¸—® ± RëdaîšeîÀž>K!²è1ËÞgoD§;ûœ툰쭈…ï&ŠQÞ,|³êNQðØÞý·î<,Tè±À¢ â3 è±ü# ß;Yð´-$_²ãìâÓBî¾÷’@d):OpAØ\ë 'Ëe\GBg/&óê<îǺÁ+A¤w LÖÜWñ«S‡¦`%ú<¸‰½‡–:‹íÞä Âì­é,¾õ‹Xx0?_Õw¯#³Oy¿ú¾•ƒðÐR¢înÿ‡àF±qð{h+¸¹_w÷²?¬`å›çVXq¿î¾—Åᯔa'SÓÃ_±ìnúq¢ø»þð endstream endobj 4135 0 obj << /Length 1064 /Filter /FlateDecode >> stream xÚ­Y]s›8}÷¯Ð#ÌÔ¬$øxÛ&N6íÔÍ&îngÜ>[ñ2ƒÁÅx“ì¯_ð6¶®¿€ÁºçI—#Àh†0ºí}õ~»ñ œsžq]Ççâ!sxHÐhŠÆÖÝðzðÝþ9ú„\8>ã2¸þƒ0ZÝî F½_="ïbDv ˆb†&óÞø'FSùç'„7 ÐKÝtŽ\O6%U`Š{öð./Šwy1Wòñg¾C]¦ÒÏDùÛ„Y/Ëä¿ê,>ÔtbÖz¸í¡qŸúE<¿i òÈCŸH–¬L²¤|7ÄRvßÃÖ†Û;W‹i\ 0XÐë“Ð )oC^]ýÀ˜–Ë(Ù„b+~²å1Q4ÌW“®òt5ÏLSµ2q•É/„P³òªR‘zBžîÝÍÝè1ж!!”À×…ÈŒÒWºîc É^+y˜›ïçIÎ|@ÊÁkùÇõ7@wUCMJ¢q%P_Mº`/ÝØúA)?c….”^ ?xˆE™ä™n]z¤{ó-â·2Iu(ÞÉJq“”ËAQäD»u[í´)R¡­µ€f_·×2à@76“µ¬ŒSÀúhµ×2€¬“Û"_-Úõ DG”Ž ñlî²åê¹J2IDVR1—§%€*QÔ p”[ ÊÚjó}ÙÜÐ Ù'Zõú_›2+N“éµ%ÇÛBÑ=£” =[ø²Ö‰l)'¯ WYˆÁ$nÀ å§4æäïæñL˜ ÝEþÈüd¸š?‰âëóÚ?GÖHý-ÄA éâ¡ù4ЊÃù}hÁ‰ïcsí›l÷¶´·qayœ‹òüͺÒ~¸îŸåŽ„;aÀs}y¦*ès•RTdÞ^ª¼y1t£#JW®]H¹æÃUšþeûR€teRøö"uö‹žô!{ËÝ ›ÐÔÓíŽÐÍwmPB0˜ÃU†~¡µ œ4 ÒípAä‘;µ,+§6ÌËÇÕb‘7\1kvÆì©) rÝwŽè‚÷€at!Óú!Îfj¾×kw¤[¶nì=Íl§©c›ZqÂZì ‚áž§3íßEžÍ”ªç˜Ç®p³'˜’u–³Œ£ÚY7<7¾…ïνó ØÚT‚_ÅÓ)ø­ÃïËI’M+Í˯-ôÇ$3f|¹×R©Ú_æÕEèÁRîT~Ø#C»¿ W6¶‡Ð>”0,ù4ÎØ`-m;ÅšoXŸgòt3=€Ifü|¸Ø$}M–­fß ¤]r M¾¬¿_p‡úÜÛý~„ŽË×/fD&Џr+5åš¡TgŠ)kîøf‘\õÕs¥^Þ4^K¥®žÔ¬_ç¶‹­×·™Ý—®G½-Þíþÿš[° endstream endobj 4191 0 obj << /Length 914 /Filter /FlateDecode >> stream xÚÍXÛrÛ6}çWàQœ‰€ @ÂÓ—T²¤Oë°Î8y %Xæ„•„Æv¿¾ RÊP¶®Ç¤š‰·ÎÙ]ìÁ…’¡äÜù5vÞž‚Dž’’“ø†0νPFD*áIÅH¼$W“óӿݯñGÂýÈ …„ÆÍ&¸}íœÆÎ?ƒ·”°NÌSTEî\}¥d ?êq‘»Æ4'<Sffä³ó‡C»¼|Úå%8𠈡çsÑÂÏf_(õM}rò~þ盆IK¡Zm¹\ž;äjê‡Ñ„ùtkÐB)Sžò%™ú@“…mשY§÷«»Ï >ƒÇ#.²²Ð¼ß€ä»,ûÍ èDÛ<Ô¯’‡œž :RÆJ¼ÄÄtSUº0ÀSuZI®J©øQGmKi£'ûÂ)ºþ|æÈ‘|ŠÜ©‹”š¡±/K—‰É¦_y„‚…(Öµ©Ê!E •§4×"7mMô Š…X¯³ëçëp»µ­-äÀ• ¸¶¿ÌèjdÈnÐßÔ·GD¼±Á-+wê‹Iž˜ÑTwa¶Òfv«¶x¿Õ›|¯Å÷–LIXêr"xè©ÈKz,—2‡’2C­¨ïÓÚØøóãJ- _l²ì/7ýÌ6zôŠ~¾ùô_{Õ?ûœ"–@àUœfzn…ÙJU}D­J‹Ô ?_bf?‹|©“%µÁR(Ìdy KóübAÃùDc]éºÖ˱†ðÁ|³N´ë³;—Y_ΣWVI ©[źdò¤¥ßB<Ú}ÀÑëã‹Èh¹LV¨­KjêÓû…^¨õ>lŠ)âÂfr“ƒÎÖGLåª  ;ùÛ3ÆØI0Œoç§lwõ‹Ëà×XíM˜…â0Û–A€`YáD7K½ôLEb·Ö¸¬ø‡{“L½®¨éÊ`rm37ÎY‹E¯ÚÞl^꡹Eÿ(bH¾óÄ${¦Oež`ê%§¿»Óhéù¡ º§Ñ‘ò¸ÜR8×…®`:Yº mØu5רU Oº}ø”Tí cíÕ§¾Ø¾ O¨8aª}º±/·Æ»·O×íCs?ovÐ÷+˜À`˜Ýÿ´nW endstream endobj 4084 0 obj << /Type /ObjStm /N 100 /First 1019 /Length 2767 /Filter /FlateDecode >> stream xÚ½[]‹Ç}ß_ÑÉKß®ªþa°-”¶œ=8òLŒÖH28ÿ>çôLÝ•_æ.¦w@¬zvfªÏt×Ç©ªÞœê)äÔR3$hm(~Ì[Êv+‡ºÝ*¡'á †a™ƒ$m÷zMé.§nÉ;…ãF<,yJn#h¾ÛKPü’£T;÷4ow{вÝÅuÞ)ౌ9ÐŽ\ù; F¡Y0Î1r0Ë…£,A5X•)¥k™sŒ¬7Î1(€w…Ÿ.¹Üa„Kè„æí.>«ð]IøQù®$LÔÓà€F6ŽZ(\%Œz(ºÝXÏ Q")àÓ8„–š8€—¶Ýź÷ù.¢&! )¡Êv·†ªØŒZ¨y{·‡Z2ñÉàVŸ¦P{j˜C%ÔaD ÚÜ_Q MÓ|.‡fÆïÐZnœMkh5ÍçZhÍ8›öÐzål: ó®¥ÐÅ*æ0 ]+ç°zæÒQ­zæ ö­†AÁ¨…¡Ây­C™Ê|c„‘;ŸË)Œ*|Ÿ5Z?zç¼XbìÓvŠuêsÓ0œj$˜$œ'SC§"ñ)lQŸ<0ìó%MS— °7“ÅPçžÌ&S¤`6HäwÌ&•ê&³IÛÀlÒ§Ò”i›̦2Õ¦b6Õ©7³AÙa2R1´p*fƒ!NÅlºiVÅlPxÎV1›¥©0<¬hšÂú4ºù,f³il2­»RAö5·~÷âÅÝåÍÿ~¹—/ß¿øtwùöך×ÿéýï._=|øñþÃ÷ î!½½üõò·Ë×ß˼¸»|sÿîSøbb.ÁÜ#7ÉFŠX`•M3û2¼x.߆Ë_Þ<„ËËð§_~øÏ}Ä^þ9|ñÅþ-Q$v(¯ô+–Òj -£G«ã,µÄ© ­Æ†u¶®‘NBzU@èÊ¥(±ÂKBa"ôÂšÆ ó‚JÆ\úˆ¼r%,f8"XNlt»Ú@]­K²#e!ŠnÑÊ# D²héI(êJ9ÒûÃEe𑘨ª%aòi FìFÇÒcï\ ¨(½ìdŒÓ@HT~ºÔÈø ã”6=T´Ÿ‚ë?=èZdŸ¢}â%%uŠþ&\¾ûç¿è{cƒã…áGèØû_þù­?üêáý§)õâ#è|ë¢rãÛbCŸ4l^dƾy—×Þ}{ðáòúå«pysÿÛ§ðö÷ëñ ï._c¦û÷Ÿ>2~ÎiøÙ~ýðîþã…çïþqÿãO?|õð[˜+ÅÀÕÔë>àmîLÝœ«üO®F<“ªíƒêƒæƒîx$ˆÔæƒì—<\òpÉÃ%]2¹Ù>¨ÌÙÅÕÍÝ.Y\²¸dqÉâ’Å%‹K—,.Y\²¸duÉê’Õ%«KV—¬.Y]²ºduÉê’Í%Û&ùíkÑdðRBFœEQ~Wæ!­­3Yj\ƒ¤ ñ”Vá×k-'¡Ð¤XPoƒ‡ª©t´;69 D‹ 0ÙóÌ”r„QW¸õVW¢/Q¸þLGZœÉ(`" Áuªg¡€*f°â2Àºh¨5p, ðáRŒ•KýÀ§—ÆÐPU…÷*urÜÇR šƒ3W*ÁÄ`pxØôˆå¤´ö~ s) æ‡ÉUGð`ÅÀÁä€a”•Ö“ÌLþG0Q˜* %á:€h+·Ôª0›n%–YÖ€©‚ûæ^êD_ BñåÈ4¯ ° ±æ&ˆa+W©!k?ÈXbRáäX ¦ŒùÀ:V&eH{#+NЋÈbˆ )#­ÈU°2„oe>4·#ÏH"Â(x7(yÈðYµ±Î´r?©:gž("WŸÕ#u=BQ×®ã§5xˆlÓoÏJiG Vz Ø‹H–¡X ( ˆ 3ø‘@H^©šà/: •ð‘ÕÌPI ‚ïìí „Õ•+2¥Ɖ0ZaЬŒ…S$ÊÈÎxMíëWBi”H\ÊPX„¦ñì†ÖgÀ Šh Ô׎u]Éuºh£^ÉR yB%«ŽõK!ÅúU1oNZzˆŸ:YÿâV¦ÞV–ôX£­aêaŒa"3ó臤ßú‰œ{“ô˜X¼® ^ªLÖ?êж°®ÈPUä‘ôgd„™+s“ôëBG‘¹ðX‚Òá¿YÝ×ei¯ PŒqëÏ6 ‚ l¿q-@ù:P1QíG(’¬\ ;H•ã" (Àt„A®„e0k¤;,þãgìB‘pëa…5éÚ⦱ù²“]7õ „[l¥f"ûb5‡<3±÷Wzd©ì&Ïl¶r%ûö+ÍÌ \—5ç›4siñ_ÎÔ4³— ¢GÚÙoÓÌ¥ 6Å4æÂRØíù5¬Ä8ðVm%ä9–$ÒÐWÉÝQl‹eÄt;ðÛ½¬¬wgècßxÝìJÆ—e‰í(kk£hb‰†\sÌf{ƒœ×GyyYÊ14–̘qAÀ°À+´Ø9ÅÙ’Ê3ßÈ:‚t["ïMøõ†‘c0ÑEÔ’1ÛbpjðÝvä³e<¸¨yæa!ÊnòQôJ+mƒzÈæhg0€ß¬“XMò-zR˜Y*#Ëvˆ$D÷6Š•ÍÒ‘Ù çÇÿôÖìò(ûÈéEéËÍC £µ«y°uÚ†<Õ<Ø›cÉgQoîwà¶–×ï;p[cìuàx^fïñxȼdÞÊÞÊÞaÊþVöSöSöSöSvÉÙ%g—\\rqÉÅ%—\\rqÉÅ%—\\rqÉÕ%W—\]ruÉÕ%W—\]ruÉÕ%W—Ü\rsÉÍ%7—Ü\rsÉÍ%7—Ü\²7A¥»äî’»Kî.¹»dï˜ÊÞ1}»®ÒÌ27›sCèÐ Êfs®k=ɉ^Q°®=¼¢€£¸ºø?ËEªûY ‰!ÒÓ~Ràý‡R ”¢>ö@¥Ô~@6ßýˆÑ,ø&†¾T%@­ ¹ 0Kjô†,\¥œtüGñ6xE‘Ù(Ô§ ¨ëÛA9­cï¤dvÔ¦\ÉøÜD 228v·Ð‚„ aÿ4 Ý›suÕ«md$ï¹çs3W¤’¯Š™‘'«öÔ*?v‹Õ³å¶#ñd˜<î~ßòbvY¿/ÍSÎ×ýH Nñäí`º>:öí ígíÆn¡†Ä0±‡¿›¨äGý(}ŽÝ@Dnè»aÈ S9m;v·}E±»í' hÏ <õc]|Ï'>ËF·CŠÌÐ4_U(2CµqNNvÁr³|,Ó´Ÿbßúá7øv(Hf>:ø4žÁQÌóܵ_AÈ`ù_OQ‘Ó–Ï@°]Öαëϳã:´‘Eƒ‹p žþì%¤'d?ò öS"#ù‘ÓAxonq»5'ë H×ÖÜ^@ºÙš[ª{‘÷Ú™Û‹¼7;s]–waJÅçß%í]˜›çñ––Ü·JšÇóJÚÍãx£®ïFñ …éc7ЧóÙ¬]ˆ½9XK¬ìÏíÍAö íÈ6l¬_‰,±Ég+Á3i‡®jmf³ ·°ýåæf³[(O²ÿöÆ endstream endobj 4239 0 obj << /Length 791 /Filter /FlateDecode >> stream xÚÍXKs›0¾ó+t„™šêø–ØyvâiÚ錓1ŠËÔpl÷×wy¤!‰ä»½´ûíêÛ‡„Ñat¢zÚÇc‹#Çt…`È»C„1Ó.7…K ¡~6è}7n¼sĨcÚ\ÀäâáVþZ;ò´_·‘šbº˜£Q¤ o0 àã9Â&s´(~³àW’Oœ +틆ë¸(®ãâ ðXHpÛ¤Œ—ê{½kŒi–v»é( =ƒP¬û·\'òC¬„”Œ+l—'v¨íè–S}/5Â¥C/!ú0œn$˜SEÁ½x2¦ ÒQ”vùcy´Ìä¦*ðóiÿk“0 ?Ö!®éRQ‰¥ÈDúÁi0ø‘,8ôäŸjÁ„fÅ{K/Ôûɰ°.óu[)èV°˜ÒÍ5§ûP]sö@ ëˬ}ãÕܞʬ`ã%`ÙâÖ£àuKÖ!Z æõZcƒp}¡Bšv3Èv‘GA&qJ™éȟȽãÿx„_ãÇöٴ”ìÅÑ ¸™†qU™V3oŸyW \G Á Syfé>ÔŠ¿j½p"ûa$§¹éé~MþfØÐLæ*ž®%Þ…A°'A#‘,óY±ðW_átÜRnµ)¼un-R„]ŠÏ?“½r”»ég:’ì;¬YëÇRù¥z¢Ý¨$–£#ï Ê÷ǧçwè§`!ˆ3jbÌk˜dr§ò"ö™S*ÍFV$¼[½Í Þ&/êk²¨dí¯g=ÛP¿¦T¼:G\1ßU¬‡zÓK±>¾‡‘|‡Fˈ¥Ò{=à Ir»ü¼“^µ×‹‰@ü£ôXGPm³‡àzݧašÅ0bím_¸BXfe{ÑÚVU%ñüÎ+‘„ÎG<Ã-zmûþ€¶™ÈÚ:·ö@Š`brânr õp@&Lj «~@æ¸&ä9• tQ€òwÏp±¾\øIù@Hy§<[¾±»˜w‰[Žîòˆ«ŸœQŽn˽|ñÜ‹Mþj ñ©xúÄ `þ*Q endstream endobj 4252 0 obj << /Length1 1416 /Length2 6052 /Length3 0 /Length 7019 /Filter /FlateDecode >> stream xÚwT“ÛÒ6Ò„ RE:QCHè½÷*¥† ”$$‘Š ½IïU©*½ƒH‘* H¥ƒ)*J/_PϽ÷Üÿ_ëûVÖJÞ™yföÌÞϳ×Λwøí‘v05$ËI•uu5Á $, 89áXWØß~§) #RÿPFà X¼O‚Åu‘ ÖW X“‹K@@!Hòo -TxÀíº@-$†p*#QÞh¸£¿Îß@n(,))~çW:PÑ ††C! .ësï…¸P8 ëýÜ2NX,JJPÐÓÓSâ†@¢åxî=áX' ! C{Àì#õ n°?£ 8ÆNpÌï€Òë AÀx‡+ C`ð)ö04¿:ÐHS¨‚!~ƒu~îÿl,þW¹?Ù…àˆ_É(醂 ¼áG ÜÔWÓÀzaï!û ăÄçC< pWˆð«uPMÑÁOøg>  Ga1¸ëÅŒ‚eðÛ¬Š°WFº¹ÁX à¢?8Åï»·àŸÃuA =>[p„½ÃÅöP‚&¸û˜¦Ê Þø·Ï†Š‚$Ä…%D0w Ì ê$x±€±7 ö+¾pãgðóA!Q@ü0?¸ ÿðÁ@<`@,úÌÏç?ÿ´`0ÐÅí`ŽpàßÕñn˜Ãoþh¸Ð„§ºøüëÉ Ï0{$ÂÕûßð_G,htOí®’)ߟ‘ÿTRBz}ø……€üB¢ $"Ç?øý³Î]üOÿ‘«‰p@/Š]ô‹ß¨¿{öøCî? áþ³˜O]ûßL·‰‚ ø/ðÿ™ï¿Rþ4¿¨ò¿2ý¿;R{àêú+ÎýðÿÄ!npWï??»Úš#»]ÜÄùþ¥ñDŸ–[”OÌR”ؤŠÑÝwY£¨ÚÉåí»8)}ÿªîü˜èÉEW¢&®Ò¢×Ú^Y’¥CÏ"iúå“!¶É®ÏxEt—á¯ÜOn±AKÑ–©z·´eZ žT ½ý}3Ô]¬QZV¾s„b©U¥ûXTD.W˜Î<½ö3·Øc3ƒÆÇNVaÓ¾ûÅ8‘³§;­­J\SîQˆšhÜBÍŒoFÁ“ã-°à›ZhzU´2ÎÓmqß·ÂkÑJ§× YèW†kqýºðúq4R Èžól£-28†A 9âVÙôRWø[)aœ=A‰^Þ‹ãÝ@ú·=Èa€GI`ôñ&ît“0¨@ÕâHžß½.m:Úæ(Öû´›‚PnòÎù¹æTý-7EÐà©¡pýD/]ŸO+ßSúæeIêÅøƒ•aݤe}J'?~ÚiîÇWÑô­'ÄF·(.ì6åFñŒU1½ÒR"H& ùìsÖæ®°#3ÓN–ì5v‹Vös»s¤ÍõïJ,¦óÇ=.×o›ÝbÿÊH¸\Ÿùz²½Ž¼¯†Ñç N*àܲÚnòŒÖ{Y6¦!·§â·÷l:;¾û^òµ–¯µU`çûåAŽ%×HÛÀv­MYZÏ!¾¶­N1Åvy:<ïmA-¸@ÎIß«Í Ä½´iNŒF !O¹HúÑ ÎøG7&¬“ @7³«Ît}g a¸³ÐÆjS¨¨á%Äù¦Ä'›Á$y÷¦g*…=žÇÇÆºäÝ±Ž¶KÈøŽh"ƒP „ˆØ(‘.mÐ’ÐÌœô ƒ·øF¦¨Ç.Q~1««êG!³TN²^DµzÉõ;|Ш9¶`·2VÝïpÎ0ì‹ôä;¡X^¦ßf¤QͺJ,ãÌgPÕ»¹™Ù7MfíëoÖHÛ‹<Í7.¤œ•º³tìAwªË;3!͇¾~Ù<º‚wÕx£À`lÞ³[âÞc'¶ŽÑïi™èyßç¨MùØ¿lq ýô5¯Ì'Bgt“+¼½Ðož-¹Ô_´p|ð­n^N>vj¹Ö8ïcò›¡gÆØ¢ Œ-Ö´Ü&h^ceé` ÷>ùÚxÍ/8/ »:eþ4¨ù–xÀ¶;6xÁáØ¯fu$‰§2T‚ØÈpÌ<ÙûL¦VÈ9Yߺe1¨™Š³ýJ¬IvsÈ‚ÜxŒ`^iÅ3e7äü hˆ³Ôï jú†ýg'z¹HšÈËÖž*Eß`»ö׺ˆ6 pû{#Ö muòd¨+pai–ê@¥î&EVØÉ [ïîÞ¢‘[eÚÐõU`Wî盟ÆÈÙ^ÚÆ7ÇÞ“·Q´¤é&C,¢€ê€lQ¡ûÂR Ù Ì}2÷ÔG|À‡çPSMÆJ"1n´î­Ãlˆ}@@Ðìs½ÍP!+(²¸/²s.»ÅúþÒÃ{ºÂÉš·CC{²Ê×r÷ã½OÚ:&ÝÍ|á;¼u]‘¢~Ï %‹nTæÞƒ´ÔR_ƒÝ[Ïð‹#{&ä§úfcZI?ô2úòô `±X»ÿ@hÛE)!¼çÌõ›œgœù†Ì'{1•=Ä^4¯hý–Õø92oeÚÑÝä®Ã¹¨Úa¥kz¯­;4ve»P,ë1î‹”‘Š¥ïÎ×Ìœ;+òfÚ:ކ<¯ª&ç.ú,=XipÕ„=Xe·öVAú°S™@¶Î¥fÁxú3ä(î¨H~ˆ!Mù5­¥Ùf·<ä2õ¨ƒ>™ÙÜ;Â¥’Ü’G ÙƒøÁ„r® ѽ+oFKŽêÞ$¬âŸ×¹gzÿ¹Ýó‹AЃAgz9Õq—ê€ê›æÝí:q­õ‡OzãMR+÷3—€ºa®ÇÆ,}ˆÑ3ïÌ.˜IOÏùOLˆ"ñLV$2D˜}È׊Xa•¾¼ÊŒk œÕ+çJfJRoV¨ ”$”îѼ´1¬†Kâ(j 0ù(¨MHäúÁAÌË}!•ÜPíéWõHCC°†—óxÚ.Ù%±âç½*o¤×»zçòo©^ùÕF¯Òˆ,½ëx7ä›sL×iÕ3²‘ò±÷1»@Bò,èq3ƒiU4©4yg-e uiè…Çx8[~<+§Jt^^¯ÏMÒfÉÿf4#[ΦV'@ƒ‡m°WÇj ºŸÿИÁNÇOPnHÔ…æ ìçSý3qzÑŸá·™¥’?ÜyjbC¯sW>¾®·ÿ†žrùª‘îþ{øÖû«SrÉר{†ÂW®¬üæýà|Û¬3[eCb-Šc{Ìw;çfƒZä|ÿ`dãÓú”N¢´ÍC€½AŠ–&G}sJç½>î ôn†îk´ùZ þTD’wR^ˆÕ|ºa>Îó÷R¼Ü|Æbt‡D+DF±3¡8Þ=ïíÊýhIçRÓ0öe;Ñ–IÍ·/käíŒ/ÜFyéOâŒé$ã¦U› Íôù§R&:¢)+5ÖQ« × ¤l·È,q§¯©GÇØ‚UMI|²Á;àÁ ãªdSÓQQo3m_\ÀèÎRêwß©zìåg%ûõSÙrܤðT»ñ„–˪EukÝÙ{aÛS¼3drE×Ôìyæ¾ÀgÚ{üصô´õʲj!\öûñÁ…a#1,¸ÎµkÖö¥]Æj$An3æ&ý« Oöýôq•ê5#ìÕB¨è—·Ê‹ QÝ¢T½^:*oÛÓ"ëžvë±¾3$êD}ÍrèñZRáNy4ˆÈ«žšÈš†ÏÄ<y¹Ú9ÙôéX=GVIĶ£jñŒŸ¨ô´áËÞµµ ’@Ü«”•Xt9 åÆÂ(G¡Òs BÁȸÏRJô{À‰¹\êÌ9£Càb +Œm a7Ù7£9‘»Š^$w¾˜{ý»Rõ)?µKË˦œž—ÂÅÝ“—ÚlånQ³ s6Š­~h¿ß<ÖNCv‡ÃFî6®bATÓƒòø^þ=‚‚Ô|&QñTÂM7¹÷9‹Ø¾UOúÖrº?éHBI+j¾e?õz#£²zѵ€D½w¹•»æ}¥Ú—¿‰Qµ+ÎŒ÷ÚÚ.·:K RÞ ¸_p~fRÄÉ{,Ælùq§^iu1q*^¦cån4ŠÈ¹, ½gݳÂ/™ƒ—h=Ïiø9|eRØ=ð³v¯9Û9Äï)Àò5VCyãòVÿ[º @eqø²ŸÜëZº’NT*󤂹ucøÔ÷µ€O*´2Ìõô8?œ»˜~ê¡2Yß··,,“÷ÏP@®TbÊZÕç j1n<ó7æ „IJ±ó†+ðLW§—ËÍSåt©ÉõÏ6Cü/ý\üuF>-}}u@]¶Ëú…ÓÇ —ŠÌ&8¹„ÝXü¡ÆúÆ¡—ú¹@|(å&ƒþAhÆý¨oÎKjtÆ3-ï®Þá€l1NWc’jó >Zº@]ÀÈ*¾Õ‡daƒ«óĪav[Qw”ËÝw:¹BOÍi75ó3{ÆÓˆÑ¯,§ë_?zsþéĆ´õHXlFÛß@É/¯Èrx¯*t|Ç…ôiÐPŸb;÷¤•î2ãjJr*ºý™8ëÀ²‘÷úÉU®³Ãï¼eYvK¬q¢ªÑŒ8޳GЯs £HTì+Åï„NÅh EÈ«p[­·‰g.Q-MƒêªNã\kò׃B€ù´ å̶ÉÙK ’Q7Ó– :‰ãT+C,ÅJ\[Å_L¼&Ò¡üª#L+!‰È—ÆvŸfÛD—+Ú~¾Jj•{ñEÛË]¸³pá ¶˜µ,s=îïˆÙÎpPþ ìªj¼BEs’À–õº¦P*—›UC®¶6uwp¶f\ºâàcï‡'Á~nfYëü?êt‡p[Œ_\Nôäi'¦QÎ&Ó"H˜š³¤ÞL©Ÿ úúEªë·¨9'Ku[»Kû6‰‚Œî¹í>kaÚ ÷ŒÚñ½­¥e’[/Î=Ú¢÷œÏ¨ bäÓrgYÇVEJ0R­V½ÌÒBå!¯ªå]Ûj«¡t4Ëgw voÂÈò§7ø±àÇ™{ãídB“gN]NW|æI×G’™Cy´Á±o{ˆ–¾J¨sRG †ZÞlö4èþK>Fœ¾æ€l2‹Þ|žÓ JŽü4¥r3¥ÞY…|ì¶„ô•‡O¶kÏw0Ĭ¹Ö•²ŽÊߟÆ×ÎÊ­m~À]–ޱ±JlAûãÿj$VDbRt)?Ww|Ü”vô†YŠòHIV’cïòÞMŽLÞ±ø½ã>'4åÞÍ rvX©ôÚÀµ€Q³n{ÿõ3jÚâ9AÁœx¹¾0Æ ^iúÜýJü`cÅ‹¤2ª ÔgǽKžÞVó–Y3!w·ogò9 µë÷¥}ööŒ›DQ…¶ç¾Ž-Ö{º5Nµ@Úê²¹Ðe¿àÕ¡é¤*ÛT^h•`…'´û]mþ¦ùèäk¦Ð,cùí«…aÄégÝä•©€÷ ЧÞM&†. Dqø7’ºþæoÛBƒ}[ÌïŽç™¾êæ^ÇÍl¸ùx¼zÜ©‡åÍü‘¥"PI¯dJ °‘ƺŒÏñgfoˆ°rד¨•m¥3^9œýZÍt‰HQ?—»<óÆ¡Š“{æ5¤2­qKˆ‹$I¡½å_a·´+|SöêŽÁzR*÷¦ŠŒtseWÃñü¤æÊ‘†Žõiýü‰b­c¨zâ[=£ÞHhÐøÏæhÐÙ%ñ÷Ê­••ò£Ö*édgÑq#¶)ÛtY®îeÜBV³méz0ælíµ$P ëùâQ8åà…uLÚö5ºëÔ¶wýÎÙeµgÏåUVµ™33¹jøv"òÑ–B䢽&P­›Ÿî™<)u"©ã%´ÍCŸ(R”%šHôôv#ãxQ˜+,GWU ÷]]Ší|;ƒÒ†ñшœ„!ïáÐ úàÉz?¶—kÚëµMƒn¿`ZŒÎIF©JµzögçŒÐ«Bi(s;K;e5÷Ö#еzm¿¿I2ç1ôÚšKX#êò"˜r*¹MÖ¬¢Á¸‘; ê#„Öùw4Ñk^Y mÜ ,”r'¦ïésòÖž­=S“–¹wžû.ä§§ïö‹†yòqjÚ]cAtÛi{Å–b—ÝFKo~íɲk)§+n”ñÇ|NT¹«¬'¢mY?»½*¯zû‡!bô ùÖÆ¢ËíÙÜÝ£¼c_- žó] KbfR:¿;I£&ò*2<)[V™§ß’_~O(ý4·®þ®—º#‘„ !ØcMSwÑ;Š C‚^DP—Õ·²¡ív®¬­S !I<ö*í„K?ü驌ÝQrVnÓ%ÀR.C8›´ìÕLbõé‡qTâFhWh5G„ËÞò[…%²º¢´(ˆn@øë”t·û«a¾'i»vŸØÒ)®`uÂ$Fª@©ýá¾Ãc­úl<óîïV¨Ô’±ä)ú¹„ù²^Õ…ÍÝ$QSW?Ù¬vËž'Rò¥VŒêK®„*ú 2<±¤Xô¶¦¼#ëeÝñ„äelûü1}²0g¥©% ùùàÏ+*$/câY,ïz«$M¶]v3+²¹`9Oñõä¡Ö´] ,ë„C ¾Ì+~­lcÔ-á>E®Uo…W_é?=$% !lOA îÇbG˜(¼(’wöøéyÅë·4†m dvÀý€¦ ãK5Ó.ïESíÍ1Ç)«‚ì]ÌPâ+îÞ†£2½l‹^²»üYáÄ?Õ‡éü*ï5}ÃAÓÇw+†ùyà„?ÜL'æ¹Ku2R–Ì£ž]:CÉ VQ¶qÕŒýT­~´?™/6âdáÒmôŽÉ¿§\Dnw´ÔXÃG®èy];pð ÈRŸEž¯*¶Ìêj†“!9;Ôí·a²2O÷ÿ+Í£‚õDÞÀà¼ò.§`1éaEš/%T‡Š8x·Ö˜˜:÷οšš0ëœYç˜)T|¼°Lï~û@®RtÕ|dÛ†l#/×` ±ø ÿ‡aq·ÓFzÚ\“_K°_¯g¯î~Õè¤uÒPÔ‘Çò”Û9æÜn…—^ÖÍ|:š¢é¹6lUÖ¾ÅȘ6{”ö‚G“ž°ó²Çª1m§ò—tN×Q?Ä!Eƒú g^ÔØ—Q©>L<éçê¤{ô‘´§¸àð¡N“€<¨v–ÿýÒ”‘­ò‚Gâî0ãŒúb»B  [Ý07Z‰56Ó· eý." ïÅá•àõ™úÇãCóFƼÒG mu:›o š›È]\‘YÐ÷Á¸T/©Y ß6qªvMKÛÏ cbÏÏÏ0îaÆ¥­NÄÐSÛ:‰\Rf÷"»ZÒãKŽÏ êtìå¢#µ/g^U8~oùÍHOJâI>ý_ŽÄëEód&òs<Ëã†vœ#'SÈ膀´5¹H±«K]½þ»v¦ÌXÎHIœò¤'ÀµŸj«gÄÒŸÑï:‡G'2E¥0}Ê1tžìÌ;ðh#o Â~峊½Æ»5¸_ŽË+w: š<´ä*êæ k?_ÿé.PÕÈÚ6û®0ìF×Páf¯k’©—ðžqöó+ûœ:v8&R;#ÜX­ R*î½Ñ+„𠸧ï]Ý÷'Qו™ e™\oáuF«Ã<.ëùølrNñ[D/åð§ñå6Ñ X¦Kœ”aªQ¹®_]ÞÈ’pëq@@äu£†U†¬¤²kˆØ#Œ$™Õ„`§X÷¼ø©cKptzy錔–åø AIBûζt36â ¸|²Eé[ý³ðîÏ>¡vî圱ý5GD-?\TÊu¶¼ Z$™É"ŸÝqr›Úç,ú8jLÄË­„ò®Å…K;J´2pœrÝ·»‡©¸\s~­¥ØË© a~ÅѲ$:©cNLJ”‘–à j³ux™L>¦µ Í‹³âŸyíÍÏ->”‘j©èÅynþ¤À¤c>áyR†ìX PHiød”{ëäG‹ %ŸÅºø¬ÍíQxz õqKʽø®ý¥w‡–ûÇŸÖ;V>|³F‘‘àúÙz`G¤®ÿaž¯…¸¸\³èx®¨æ•Âm‰è®ñËI6.ðrûÂø‘vèõ …kzÃ7ÙŒãÝ(IÉùþÚ(›^ endstream endobj 4254 0 obj << /Length1 1452 /Length2 6371 /Length3 0 /Length 7366 /Filter /FlateDecode >> stream xÚxT“ÛÒ6"Ò¤÷N@zHï½÷RB ’ÐAz•Þ;‚ô"é(Uz“& R¤ X/z<÷Þsÿ­ï[Y+y÷3ÏÌžÙóÌNVØY Œù5Å’(ë[…BB"BBÂøìì&P ò7ŽÏnñDBp©ÿ`({B@(4¦B¡‰º8@Ë Š€bR@q)!!€°äßD„§@ä uè ´pŸ]ááç uvA¡÷ùûÀæ%%Åù~»Ý!žP0С\ îèÁ À†BP~ÿÁ%ã‚ByH úøø€Ü‘Og9n>€å0‚ !žÞGÀ¯’z wÈŸÒðÙ&.Pä_c„Êä   #Ñ.^pGˆ'½;ÀXS ïÿEÖù‹Àøs8 ð_áþxÿ …ÿvÁwÜ w8Aa€¾šŽÊÅÁA0$íòAa 4áwê €š¢!„®ðO}H°'Ô…@Ba¿jü}̪pGe„»;ŽBâÿÊOê £ÏÝOðOsÝàxÀß+'(ÜÑéWŽ^‚¦pèC/ˆ¦ÊÂÿ7æ AD…$ÅÄDÈCÄì"øk?Èoão]CP€Âà„.u‚ ?ð oåé øOÃ?Wø@ À F ÎP8þ¿££aˆÓ_ktÿ=¡¾k!´ü€¡_¯=Ù 戀ÃüþMÿÝbAssKcÞ?%ÿ˨¤„ðð Kø%Å„@ P .. úgôOÿá« wB$ÿJ}N§ìýG\„ðÏXz´r!® ý¨ýü?Ëý·ËÿOå¿¢ü¯BÿïŒÔ¼`°ßv®¿ÿä…ùýa •ë…BO.= ðÿ¦šCþ]]ˆ#ÔËý¿­š(záÎhEóï Ýÿ ‡"Õ ¾G( ìò—jþÂMÍ ‡ Ð_7 ÚKHè¿lè!»¡o$Zš¿Mô ýs_U8áøkØ„EÅ OO>º×è•( ˆžJGˆïo1àÚ€®1à„ðÄÿÕX€ ‰®ŠtC÷Áå—ñ7D+IÐvCÂ@ÈÃ’÷‚0„ó¯~ýç¿aa4Œ„¢OäùûGŠ`/OOô¼þÖ:ÿ¿×¿/ÄÆ_YD€¥#\›"º¯é}ø?Lb¯oôÆ&[ň¢8–ž¸èàäªÏ=T²w¬£Ï2X®Šš] ¤ç9ºšò}ð2?t-S£…¡:´¥tÂ_<úõì¥3„ÉAç<-ž»EzœbÈHloeÍ™f¾ø#R¼_dçÙÇÒë^䎕ä>ÀP~AÂ’IJP,ìÝÇ|lɶ³|@’Hæiíe¢i:}ùšx©ÔOûÕoË:1gìÝ»WùÃCY"§%ÚõbuQä´þZ,…ã©#´”)ùZÏ‘J¢ÊUɬ´eîQk·íÅ׾ϗ w¥Œˆxµ:ë)‡ÞÕ4ÑæÕŒ]”-ì_;e°ÛÎ3ù*HHÓžëÂ×ŦÄ^ïˆq1–}\/+À¢b`7÷®ÞèÎ#**/-u0ß´Åã< ±ý8CseŸ›¶É…IŒ¼ª$fcòw2óC&@NÇNn y[ÅuÃküŸÀ—§CÐ æ4øùnû«î±þèÛ#å\h²EOîþà^ÊsMыפf<ªb¨Fí%DŸwRaÒ|°QQ!–AW¯º´•‚äò k’™q± é’‰ÎF¶ž¥T¤bÈ< ¹ÛQã³7µbOdÃÚe3$B„­ÎœÜR1ÚwŽ–bt³¯Û‹6° AxuñÍ\™Ñ(W5ý´ü0§#ióü;GúV6ŒYí†êA°)¦‘ ð“Z¡Ãçòºé Þh¡ò•  ¼lµŸ 7‚ÁÛiÎë4M“¯»ÈÜt “gó¬Å°ÕÙÕ~´©vÚ&y ­ˆÐ®ÖKdѼß4ßô}‡æ‹éO;Ô¼¹tNßÄçì/®{Õ(ž‰ òù»¦Oò·¾|1 ‰|P«„ÝÎè=“ðŪ¥Ç)C¥j˜+Vö×mJ7³¼1[›ùI¨Ü9Fn†hÎZõî,wD a­øüÇ9v¢H¼u‚Òo©FþOÉÏΜ>DÏØ’ª¸¼=—Ù. ÈÉÙTÊß[ úöbx¥)ìÄ©|æ·¶Ù`7òlþ™‚ ˜I"­N'þ3œöã-í˜÷Ýôe©Ö(,šR+ßÂøÞ T¯QtÃ|ÃC$Žûð¶õìƒËoϧ–wç ºÂl—ØžsÄ8;µ!•€e$m?GvpDD¼LÞÜ´åÎe1ù0"<Ãܨ=Z™iÞ  í1f-–NÚÍøáe‹a‹¯(zš#¦$KºZâ _Í1Ù­ËIjœîfœ½¬"·Äžä ˆ™U(šÏä}Ì %ºu]MyÀGW·Zæß/TêU…a»°#¿V:)`t,mè•R…m¨5{³=5ުʵ9ß•_à#À<M4K&lo²z\â½L¦¿ìð»ì~)]Öl•¹Û7¼í½Ì$éFàGšHÕª‘êç!M§2º´Hs¥=æÏHEØÔ¾ËsðWW–ge „¼+óaÙmÌœK/32Øeûø¼Cê¦ç5÷hO¢ê½åÝ2GÎÚ}ôüm¯„1é‡ìŸƒ¢Wúèã—ßR¸GÖ[ý ,Ñ!’˜~q¾’?kFP¬`ÖÆåéh”½îÔ~{~ÖVÈýça!ïÒ*ØÒ/ch²«¬(ï>¹îDüµ=¿B3Ž™ö5=çyþtãÌEʸr´”ØQþ]£%9W¸exäज़žy«å‹Cµe™]¥ æÌOnÍ«8ëF‡\o¦m…—ÙI„0\¸GtaÄO‚º‡#æ_Tݧ5üÐIYQìW@˜–ôÆ›™ì˜÷QriÓ`ºj+8ñuÓÊíTÝáý%Áº Fª}Ôräíܨå–OÞzG;¬êbAå„G8E…6­ÀbEêäñé¼; \Ûf Ÿ×ãÔ+kaâaÚNôæþkžEv‡²ßÕY8«ïGYèʹúh2£Žiýß6·­øÏé XEvĪÜb¾ÏOüuCHõУ-ŽÎÊø[û™âÈFt-nLó« ÚåvÅíôŽ—=(Xoã”Æu±5†I¨/rJ·„1Ò –§å R•TîTÞ‹áãö&š†éJÈ-Ž[™eM˜8cb\þÚR3`&í##‹õ?Û‘ ì+“s¼qõ3ÉMh5sù˜µAû°bÂYyŒ6å,åxùEgî-Iÿ;]Lb”ׂQ:S†²£îT y³$ã‡=§4#\ëMµ/È}]‹;ðø°'¯x€ ‹MŸ 4ó`*:džV·EB/Û øáˆóîÓN™ËžulÿPðŠ(¾H<4žGUô^–côçRDbf€rµÛÏÛjxþÎ,31:uóãÊš"´a§8`-·O{føÊL·íñâb(‘i ™Š)ê'`žt›anò÷ç %&ŇåŽ@í¢·šš‰8×wÁ5%¸ôp!êjõgŒÌcŸ'íƒªÌ ?±ûGÌÓh5u,[”Ò•ô‹ 4ý„{Ÿ `Íß‹²N»WÊ®rOõuXª‡G½OMå—ÆµlïcOýyÇ)¸8ün)éÜm'Épžzú ©/½;r#ݹR<“k:ŒN˜“ ”’© TWi^ÆÊ.¡h<î™7Š©Î Ú<{¡Úý˜«fmœþ+VgŠŒo¸ñàGÓw›LºÓIr’Wu¦Ö‰´öO?Ùª@+¯­ËO¤2oÛ…ûY>S¬™F ÌÃȼ‡ýUÔ,bßiÖ4nï¡AhÐå¹@Ù›ø\ôï™~Qý@ƒì]d®äç ¦Ä íi<øŒ¼ÎŠ!| |/e]k„EI•GÃÄó¾,¤gÖ·f-3 |T«¤§í*ÉDåotÆa °2ø@\èhûˆ Bž@¶Ý=N´¢- ›™¡7v'{ŠsÁ"›†”Ÿú”˜ÌαHª–tR%»Êâ?¶‘ÔìøÜ©·#¹,S;ržïk¾_ ”³»w XYC¶Ñó°iúdœ˜yýÅÚìýVœ8¦èÒä™#à3'š×xµg|‹ÆCEbç[Ýwžx–VX§¼{émÿž »µñ{õy_°ï¥:ÛM}DÙÞ´@PqÇÔ݉ôç•Ôo§{Õ&sÒÁ ¹)a²4u/X¨o1óŒ÷T ` îø`ÆItr)¬¬<Îõ'·÷( èqhºg¾{*gÁòÊ=òyLa FEd~Ã:g¦¬±{U ñÚz!厌ßU¾ž!(g¯¬²gH |ø¥×R6n"iwSÔ´‰æ¦Ö½"n3.ùxc™¹o¥ KÀÆÎIZà¨ä±MdIáüVÀ Þ¤ùÁñ|4Pf}j¨4ë²—i–î°ìfo¥š7LTÒ&SüÈÓý)“cú)T҃Ů³Â°ûÍ—mÎr½<õ–ã;ÙrD˜C•“/\mZÈàg"rZÅþò+*‡!²zW‘·zà„Œ ©,¹äXW$xv÷ŽNºUú‰\!6ã®0ÞBÎb5¶ú “T|6;®lJCzè“)÷Ÿ¨¦RŽ• <ö ]¡ÝÈ!`£4ÛØq¡Cå_ø»±¹¹±ÙÜ߯§Ä:;µ«'éRÆ2ÏT8?û.Rp‘åÁ 3¬’fø1'Ëa£’RÐãìVëÙ“´‡½j³Xv?ISûàû䆯qnJܵ8ü¥eú ±CÝO·¬¡âÓT-ûùO?sòP]?´1¹?EÉÐ/Ä» âÊW »ÓrŽO;wÔfll–\ùÝãÚª·gPMORÁÒmÈ”/(Ä\÷í8wÚQªá­]ð||¬º~lš}㬯Í`ø”í[“,Ýû°¥|ù=G07‰H5]&ÑÞÃ;nÃ]Χ²BieǧÙwF==zh€®×Ej¤t$}1àH$#*ãPórSùAf§7V÷öÏ|;æ\ÒîÆ®Žoye­wuu;ñ[›#{s´Õ]*¯ÑÃhÓ±B6û˜x¤P!»;§® óòÔU›>ÎjTûbzeÀÚ¥=Å[Ó=gÙ '—ªáʸÀ…:ÒÓçê´H;»áH¾$ã²ÔäOއÙ?ûr$m¿@¹óQqWCªåÙ“ K F`Zëf—ÆH@»Oøˆ‘­ål.-þ6µÊ×™*+§ftò§8~³Ykìj²]aý#ÃJÑØ+ÅêÚË.ÍôZ¬Û±4ÇìöbB”qOL¨ü׿œðvðdæ3Óã„Þ²¿þVV.jqv_o¼c³2ÂÃ&Ãyü 2„tSOØÍ©t†ðÒ)&Ùk9õÞØë;Ö^5È×_‘_JJ¨Ò=µù*eN+MAêÍœI’}ÇbSúN„s*^l…y’€Á†¦´|‹Ii @àîs$ÕÁí S›ígᩲ³q?ï^§Š¶¼ˆ ñ ÑEÉùÉÖGñl…:(ßî}dK؃¢Wôl,†q¶] •gü8»õàür¹h”A's?¼Ø C…"ƼðR÷—Öv¾ÿæl6Iú¹7ë§féoo32û½{ÆO~|Q~Ô,ß§Þ%˜ªÆ*f*Ð $·ƒyÎûVÛp>Bˆ–ul¾fVv?ô3òÓÚa¸/BËfc©šeÂ燘þ; Ç…!¨ýñ`QÒ“³ÍñªfÞZÒ²çµu/~0ŠÇ5›"ÃrŸ-V ûí|LÃ1)ŠWý¡îé¼iŠ=H":Á–ÏØÔÚ‡û(ãzõö²DaÖaq=¶®÷‡u.WjTEøÖ:€ðót üóažÍ”Í!æ„9M¤þr ]Œ;‘@üÓĺ<#ë^ê™l„žŒë½¸?9Ãv»uäËD/¤ƒ˜‰O"耹¤–!Iò‘Q[äV9÷™´cœ£±ª†vKû«vˆÉâóMjÓ œ  Vöaí@{Cí ÷%¯¶N½T¢òÓb‰‚Î8B®%$®+ºv輕À¼Áª}¼ò£¢å10És‹¹¸ó9ž¦ÚŽ”|?*}9ÛØT 1e¿ŒiEÓ’Þª„ÂÑu¹D$B-Gsžîsæ,ŠÓ"ÑR’WU¼ñDo7Ç1^"`Èæ4Þ½£@0šöîðg’®¥DÊ2G:oÚÇ–˜QØ–™?™}äçŸrXrT ÄÕä4Óƒ®Ä’›§u¬y/Ó”â ⧆V ŽÏ¥•l “ô«ÒD¾öñ(Ýi÷‚wÝf{¾®9L´wSd§ ùiÿŸ9›íź}X¿$¥¡à`ÙÝfHH¡üòˑѽ¹†Ö[L$.Û·mâÊNúð®?uíÕØí ËÌ^Mfób‘ ú«¬§óchµŠVé+”²ë¦h†­}"D•·.{c‡G-< ëtØš8Õ5S£½™âuÓü l.)ç”Tõ@2s5Øv.‚Šn«¹é,v­Ž*d­hùx~”¼ˆ_42jM9¯çR„™hIFÙ̽Œw£\ÿ™v=G#õ_­ïTà9²é{X¦Q(£¦Mºµ½|gòÐ¥ân‡•Ø M$†;ßÚ¬‹1¿¹YÑí)-Îç —c²•Ûo}ô>4ƒ`ÕR±lWú¢ëÛ>v3±ªBq,Úk"±3㬶f¿:?ü))Ôè¤:Ì%íÁ*ûsÌ ¼$禎<\PßÝŠÃÓÿúyßžl ·Â#5; }½RSŒZ9SûZù¶ OC;NÍÛ1ã×lÏ ¿3Í*뜗œ¥´Sùfûà½ï-gŒTk_Ë»ÃAøˆ5b[5Mn2*°MÚ‹xˆÀû;ûó›zëCð"¶Íq3ŽU=Ë”Î5a½;Â/îåí» ååh˜BåeågGÑdâÈšVýÔwç¥~”Í2¬Þ÷=§˜Ïé–˜E“2IŸŠ6“>íËh§<.g§r³œñ~ë½àGûñ@µ¯Ÿ˜l‰E¼kñF6õó¼çêÚ„oyàûû`Ò¾öm\hå…ý‹¼[Öyþ~Ó© lX`íªÛ‚h–£‘â=×P¤B@²ì?s¹¾“˜m¹o)õ;~ ‡n:L7¾áþþKa@Czy"ã§ä ^cáðMê<¹£Pýú8—ß±kµÇk{ïFÿ$æGÖìàKN¯£±@J¹U‘ïB- ÔÝOmž¥Óp/äð<×OêhÐ_ü&LbTÙßBìûjw—9Æp÷ÜGÉy&e³ûÚøº«0u©–çprá/Ýј­é·ð@uéÎËñ½XÏJ7]‚ç Ø ýŽOD2²ac±(ã˃쌡‡Ü»‚F#Wk+/ªYi„[½ð³U!©¢W¼ƒ+ È «SN:\ŠÆŽŠ/Ùïwb ›èÎOŒadE®C€dZ:oZ ’µÍGìäÚþô(Šã"v~l]R©îáðmAÌ„çHeu©äÜü¡Zà³÷¥Rst¦+³ír£À˜¥Wi¬Ä}†æOÂõ¯¿Ì¦ÜçÑ÷ÿÞ)n?s§×XrüX»¼¦¹®—!˜/ÿc".gƒÐ„hÑãÙi2élÌJ&ßL¶ÉËš0ÍѽgÝu_0Õ:ßzâY}êíøNÏ5¸Íå§²VGÑoWÙ¿ë?é÷™|#Ûž÷ÓŠ¹<ËQ:¤æCG!Æ«ÅÍ{7ÒÆ«s¸ŸoíQøP·hß`Bù<ÿëYùí¿‚ŸÙß®ŒÉîÐZ}ý”úΓ›¶Qæ@žð‹¡óO™ Hµð|‹<Ø ÓØKyx«0¬üí­«Ú 1Û„HáK`Ýûê.ôÁ‰‡YU”†N.²;׿~œÀ‹÷ì[Fþ é“qy¢"àÖ2”ØŸvËÒ×Cøzíµ¹-P'˜bjÞRfhx¾»{•ñ«Ôè­% ï’¦û¶á»iwŸt+ "õæ-Å\úV ¿Î=šZ­ì„i‹9È“æGOðÔÚæÚ*éÒÆqÕ³ýïáBwN3سª{MhRk_*‚ƒí®ÏšH´V¶Œ–6šžáÏà'.%8éúÐN>-4¡û¦©Ø gÖà”¿×¹jWª_•Â_XLÝk¦Ñ ç‡iÅõ¡« £F¾§»\o•&±Ž¬+êöq :LO½¼#L9cÑ#*!†ø¹á[¯í˜'4äÄ ®‡¶:ˆ"ÇítPûÙ×0œ^¶4È»$RrM®%{̾÷ù‘¥š‹tM`KΟÍV6ÚºöYß»Îß3PibL\c¦¦ðá›ÓŸ+q}°ÿÂÝú„¨&A'âjNIÓjñ,yoÉÞòèù’ðëî"W !ꥤþPŽ!õÖÌלÔ×Î ß{|yý^ût”3" ެærø·\šjä¦û3¯-ûm™ˆcÆOÇíò­Å®†„b*ggšÊPo‘N5qz£àqÁÓäãçdž_®L=›Íçqײ‰UÀ[§‘º9S³*iî`6Ó;úb¯[Ç&5Ų¡ù•î~ØT¤S1ÕÞZ õ{xÄ®û¹ÈFB\6v@9aì÷§˜>œtÃÒO ¾Ÿ $Y× ¹Òßu˜‡Dý·É™%ü>ßãôß®ãnÝÌ”"÷¥~ß§—)¡¦´Æ…ïVv`¿ æm¾WïFÚtÌ-Dvõ?ßJ endstream endobj 4256 0 obj << /Length1 1612 /Length2 18593 /Length3 0 /Length 19436 /Filter /FlateDecode >> stream xÚ¬¶eTÝÒ% ÁàÎîîîîîÙ¸³qwwwwwwwKp÷Ü!ÈÍ{Nw=Îíû§ï÷cñ¬ªZ³fÕ¬Uc“SR¥6µ7JØÛ虘x –¶Æ.Îòövrô*@sÀ_#;<9¹¨Ðdio'fò4¦1  €…ÀÌÍÍ Oµwðp²4·¨ÔU4©iiéþËòOÀØãzþÞt¶4·PüýpÚØ;Øí@!þ¯/ª`fiˆ**iK+H¨$Ô’@; “‘ @ÉÅØÆÒ gi´sRÌì6ÿ>LìíL-ÿ)Í™á/–°3Ààì4±ü{ èntøÇEp:ÙZ:;ÿýX:ÌŒì@{²Xڙظ˜þCà¯ÝÌþ_„œìÿFØþõýS²w9›8Y:€³*‰Iü›'ÈÂôOngË¿n€½ÙßHS{—Jú—ï/Ì_/ÈÈÒκƒþÉe ˜Z:;ØyüÍýÌÁÉò_4\œ-íÌÿ‹À hnädjtvþ óûŸîüW€ÿ­z#ݶÿWÔÿâ` rÚ˜1À3³üÍiú›ÛÜÒžñŸA‘¶3³03ýÛnêâð?}®@§5ˆêŸ™¡þKÂÈÔÞÎÆ` 4ƒgT°ýM  ú¿S™á¿Oäÿ‰ÿ[þo‘÷ÿŸ¸ÿ©Ñÿöˆÿÿ¾çÿ„–p±±Q0²ý;ÿ^0€¿Æ øgÇØ9ý¿Âl-m<þþ3Pøo’ÿ8Ò £¿Í¶3ÿ+Ó¿–Ζî@S%K‰ÀÌÈæo§þeW·3:ÙXÚÿ*ú¯fè™™˜þçfaibm÷OëÙÿíÚ™þ'ù¿"ý‹:£†²š´Œ,íîÔE)ýÕ¤æáð—Øÿ(EÞÞôþÁ±wxÑÿ}ô,¬œŽ¿ ¹˜™}þÙþÃü_gy#“¥;@÷oÉLÌÿ*üüþë¤ÿ0âv&ö¦ÿÌŠ*ÈÈÎôïxý/Ã?n'§¿ªþëÅÿ-øžÿ5è@ ;Ð~mÙÞ„7Ø*=+T7:-¦;ØÏ 1âPÖ¤V\è_kßç—¾Ë]õý­.„¡y–ç£Ããç™Ãû¡ ÍÑx?– e_*ð²€À‡”z ðëE'íQ £ARÆoÍh¯«r;:LG{ÓÊ*¥oЄ³]¬N°WOÔþ¤®…þdȾ&iq˜Ý¨Í`hõEg¿)’NŸ)‡'ÆFGún ñisãàÈy°}Sξ%ƒ<¾;Ý7™|@½ºrºíñ*¡VC0üNnö_i·xA †r¶Zág,(ûåƒ*Tó°X&J ü‰—%Z¨g›™nf†WpÍpäìÔ»mMNú;ÆPtÙ°mæü›G±îå‡îQlv-¢ýË‘ûAD¤ÃBCG7$R&<ç.16¹~ýëàu°nÆ™þpÅw,·wrN¬F'àý@®RæÇòiɆ–ï¾ÜxêŒ5²ñÏ›´rtp¡Š@oovGN=SóÐitNbƒl~K4#=Å:=õ³»«Ío ÕÜH$(C–šÃw‘ì,×PyJ€-gG„v=Êjg;ŸÐë”.¸üJJ—qD­N ²‘sÝQ¼kôë.HU2Oì«C4åKÖ!7¹œ áºø!Üw™´)ü]„`íêxŠe/–poXâ·Á`é¸ú¡XóÁÐïn¾?@Õþ§¸Ó¨3» Œâª§³³ |ß<+X0eS6¤tA—öªÃ~JÉ7FD]æÝ—òTHÔŸÓæ¾e>øTx-ÇMÕ_9¢ˆ¤µr ü‹‡}wM”§$ñîR­j”…õŽ|ëW†JÕëÊq:¿ ;5‡«a ï#™t˜óÂÃø¯E!Aîx¬CŠ é·–°•i4T~úH»œEjF9ˆM¡§äkŒ­íM/csã1„ÐÈ;¢lò%)¹j6¹ÎÍùr0ó±_’y+†*Å©0X8WwÎ_¥,¶oØæ›U™µûPZSR#¶NN)p>²#Óxª‘CxÔèÚs½’ÅjÄRëZS{‘ë&¶YâÁŠçk^³ú]€÷=qý{„ ÂQP´·cHXÄ^fKßîñ[Z»R8(¯®ÞŠ…ôÇì”e’(Öô?=H’ÀÉ÷Ò>ìrI·AľVs>Ý’XÚ/˜þË|®}¸& zPóÊÚ Ž ó§F#…öôKaâ~3\`\¥VrÏ+ ûþ|so4=ù”¬h’~t—Z5ÙWø,†Æû½6½¤…€Gc2Ÿ'Hª§l ©xkG³FËPGìøÜ¯VöÐÒúMUiI%£öóR¨ÂG’”‡ˆÈ¯ì­³˜’æ£#«0=i _z©éZ£ïª¤º²¦µª%Ή¸Ó|½ûS(©@°j‹VÆÃk'nj!“ p>aæévSãA‘ºb“ƒ§kŽGcÑ£“+Ân¦Òï¢8ë‚ÚôžÆ(3H%øqÌãX/¨XK±oÀÖ&ni€ß§;½ôÈ#T¡W‰PÞ€&“þÕsçm£¡×ßCÖ•ÈÐòÀ{ê»âÆ^-ø5©NbðHjŠ “’Fk¨õåQMöÌÚ¿¬I„z²¾å}À¯÷px´¨W\ðá  Æ¹Ù¡wq{ÈuÜ_¬x~÷÷ÛU À(z¨§Kaã1h–vâË;  TqN'9 †,­^çïu}›'yŒCDŒúÃŒûe/9êѬ?°ĺdæaúM"{=æñNÇàOØJGmYBnö2ϰµñP¦ÕÒÝ^åæNjbÉ‘Ò(ß·½rІ}4yoXÏRȜɅÍ*]$½áXø§L~K 1¹ö<žp»Ex 1OaÚ¼ÿ Q 9^{±e‹ ÝwdÇiËô”Ç~ûSeçÓE¶F{G\‹§Ü×ú‡&yã°È÷cå6ø'ðÐ(¬X1„0Œ^=Åçxª ¯msÊ,T¿¼ó,YFú´Õ¯òµ@€õgÓ„³ü)Õ۸ZPiŒðS”ÊvErwòÏbÔèçÆ¦²ÂýÐÙB’VŸm"UŸ8Ÿ,r¬Q©m‚ìèU9ERHeä}XžQìYï\ã»´õKñØïÇP‘[•gš\áX´ænÃ-§ˆŒ}ãO]Š~<¢¢¨á· éÝLIŽÝÖ´+ýÙ=Dñk4¦M)§8¥ªºJ•sCªŒúœö6E‰ õñ«AµÇºzK¼ Z̽¾ƒÖ·VWÊÊ® 91%Aôœ²=úG.÷úºëyoå£o…™¯¿6ëEç±{^‰=:ÇÈ—ÿ€oD: ê[b:O!”ºU4”ÒýéòU¬¿D ›1!voC]ùÙ²Cð)²¶U, g/ko¾¦¾º6G(uk±+Qœ5*;µ¢‡ƒ†-è'¿Ëë\Ë7k9“•JÉ#¨‚©zm´FÁŠž7µvie·n=—ŠçNå ðe2‰?¼ª˜†"Ø1êÍë¾  ¬$ƒ×¾þY¥³VUušûäï$™š'…*È\ ”8f5k,TùËXåÂîaÎouKÜ~J+Â@¼u<ö{Õ Êxµ«Ùç>¯À:3vá7/à%“9ìVØê-Bˆ†ÙF¼Û6Õƒ±M¥“Û!ŠÇ/eÀCÆë´Ð†·=ÓÎNU1'¤½ai©2Ié]!ò­¶•\^¿ù>Û­'Â2b”¦0 ÁLæÄbjåz JÏmcC„¦$²¹µáËÁ¥Û‡kÚ¾ñp© Ì:ƒÉ¦­ƒm_áïÖ$Bˆñ (ú¬Ó |óÏúRL/¸›(žÌCjì¹;0$k`Ý $÷Û<Õ.ËUqëÓø”kêàxå§|–©Ýõ¼¬ïÖoض…tã«ðÖÔy%ØÚϾ'õmWÈ}a›oñM6L‰q°`6íú *GÕ·éÄRCH’ì/:Êj‘d(|ñÇ ]”¢}ž»–"à ëV½Ûôá=ƒôEª2ܽ ‹“Ÿóe:YC3Ï-Ã3¥úÉ0µ¥½-¶ïp¥¼ ¢~›?9ùLxœº‰œJ^‚ÓHœVM¶Å›!¢;˜>?ñ»¯ƒ¥n~¢V(ðå|"Ѷ#ŠäÒ¡k¥46ôšñlàßå2“‚{~Wù±>( ]Šeó Jz2[s°C/ju¢÷ÙÞqóÖGØrGÊB-%œjï·©#‘ø˜µ±ï¬|¦D†. JXé„/ZÒ¥ dÿ|)ƒ9]ëw_mlÙž‰ûÆöC‹‹”p HV—ÖAaLÍh‡­½ ¹O®ß3¼[ñæ«.VÇîÉ2Ãr õÎðýÇ"ë<ËÛ—ÏÈoYY=ö ›Ê¨á 3+d†t…·–\zUÅ"9‘¨ÜôãØ„Í¤Àý°ô`ý‚Ú;áh^(NÁ}Kp ž»´(V€döµ".7ÍÄ®eòš(–9ÂNæ=GÜ&ó Múfi7©YüjÚ>\Ã(dÙ} g¸¦)¸P‘FB‚“Ô»ÍeËz¬¬`N-Á:ð Óµ…‡’˜tT5Í‘àârS|ó=‡/ì§7:p.×>Ç´€ðú‰ØéS¥¼x<#,ë$-ÔÅ!XîäªÕM»Þ±|ºÊC³—â-qSò}ùÄt”¿oeæÕ­U¬Â¯í¢"I'ºúbnó¾M%bC܇¶rqýBG26`‹¡Œ©¾ Qô:ÐÛ°màJKÄ # }Ärñ›†žå$t?•JÈöñ©å97–Å f{ÓA@å ¾ !+ĵ9™Ôò#ß-ú O°ÏW*ñÛx4宆ÊÒPåäþÔL–ŽhGØíz‰ ³§½C_x](”íŒÅ©šˉ%ú, ý¨'gîRJM5ÌÎCA(rãw‰ßPQ§ÎaXÕò­?¬ÁEÖó¼Û¸Š#µÂ'c,ÿ¶šúÖ÷?ÉŒ!›Îçyš̳A'š Ø` ½ök÷!GgáãÔ2ñó™¯ÂKþgØû3¬¸nùÒ4Ê€^æ"óc $¤Îz¥Ùõ`öC©O²’ väÞ Á`$åº(kß94êµNxsçñƒJ¼œaûÞ³Ü5ð›õ3(ÿŒñÒYÂ:«•ïÕN!¢ O–Æôž¬xTóLâ$Ë’®“©]Y:nïڃ…Íå*‰Ž2qÒDÔcI43Z‚¦PÑå¬XhþýÒë$…^žWTÐÔuš^—wâGV4«´(Ef4ÌQU~ÖVU×Hº›·?S®4m} ÏLdŃÅ0´ ~ˆj@©–-8£·zŸ¼’||Í [ßSðEà$ª¥9 ûZú>•2ßoˆO3[Gšy+‘”öùšžÛÞ‰ˆ)L›? ®×ûDÞŸ‘…:+*~üKºÉ¥‚hHê"¿þN y­×)ɵsÜf1!['xñtëf|Ó0FàIï6æ§ÿï#õ­ÈÁ(«–òÒ2Ú^¥™c ¢­ ê$í~HJ¸cÁ÷¥’Ò€VszÛprcÙ±?F»8ôðV ½£ó±*„Ð3›O+eHu¬CùÃwMiÁˆí;‚CÎör›j?]òé÷Æ7á· DQDj# I%¢2•9•ó¬?÷Æ ´ÜÔÄÒµ *)ƒsÿâ|è&pÞu1I_s¢°SF­×&Æ7Ô¯S®'pyÔ>Væeœ ¨y.èF®±Ï_c&þø$úr–Þ)¸ÈŬž‘;N´ü©T6´8Xà¹9…ö;­!tbЮ†*bt‡è€‰îgWšÕêpÈ~6‘Ú·^@É€ȳÌóþø¸žÞFžÔû1½)äžÇnâIc‰“»Œ5]{:t}¢¶µ>iIL9ë{ã.DNˆnåqÂÓW†¬‹ðPפ5tDOŠSzØÉL0YZG¤¶‡Ã£óñÐÜxˆóìŠ,;µ˜Á—¢x5dï!»ú‡!rÈNƒ¥t¶Án_9ᯠù"’;làÇA`á®Ú­Pú}Í››ÓÍu©ð¼¯>gwBX¶º™OÂBµmÕc"Ò.$ÛÐ G÷2ȧr#¿eyR4Ù«Šé¶fÉQœQÇ~ãì”HW÷áóò4îÛ~йçÒsŠf$LëvB1…Zsø½+ÜÞ Í<Ѿ¥âPFYÒ"3/Èâî­·çH”ÔÚä’|…5¥Îäöy§7cÕ*o„ ÒªùÃDú–áÂÊõP‡q‚ ¡0Íúmc4^æR¼·4‰ùkŽ}Ô%¸GD^>•½ÊrÖÕÛRóJüõf'ò3‘§´³‹—ëVu.A›x"Ô:iEÆ,ÞçʼÜʦ{5ë) ¡û" '÷÷ ±Ú\9 ƒ¨½ð×f‘²•ýÖ?Ið ¥ÓÞ®2¿[£½Tl–Ç Ôû_«#dŽª0„Þ°3ÆM¸Ÿmù°FÌI_w_¡t³åk –6“¬] ô‹2…òLµœH§Jˆ>F2òÓÛl5ˆÓè(&"&cÞ%’ó:ªÉ™£y=¦ÚE3MfÄ-ŒÍ”ºûÌ@¢‘êÅçòu0ÚV{wXÐ#c'ûúšëãÆø:ͪOm1=t6.ß5à§³ n9ÎvcÓíímÃýÔ12l ¿6;÷· ÍzùbP?ú=ܼÿ9@•iœC¿þΤæ¿Ù¯N!wçï$x`/ëra’6õR´Ig|]ÞÏö4ó©÷ÜÚõ#vë<ž·n¨‚?‹hµøã,z¦>Ã÷ñÒ =þ3“Ì_'Ø|Pd2‹ó{ÆáþXY!?gƒ»n³fÞâóOœV³Äƒ©·¬j5ç™6IzÈ6ãÍKåoí2ª¶ë_3Yi¾(+Þ´Tï£Q_š“éð[È1øº£®üÒ™ów 8Ï'¢ÍÂø¤7U(8~¶ý±{2…óÄ^wÒãyA¼MRû‰ï:ÆìLÁå’hoR¼v#޹̇v^©Ï7Pt-lm„jîè…9:yy6AÒ¾|]X3·zÃ`X˜ùËcÚö{8VÒ´èÌ"Ì·èâ¨Ñð?Bº›Wâ¤wëã&Ôß,b´“F¥×ðhÙ“ &fz˜NŒòÁ0±5FŒEö‰¼ Z‹žLws2Ò¦Íoƒö3p£ôÊ(æD>Ÿ5Ž-GÇTBg àjR¹/ »w¹¹5Ò«‰+ÚD²îØS­ÎwaLûƒþàFö^(VLKÖ!')zï¡â7¶9õO)Ó¶œ~p~C÷º éC¾£D¹„üo„>rŠuê{ÊCyWQ’§ñ·¢»:ï`lwCš "ˆ v3pµ%¶°«(z|iµRës·…ã·M¯w|ƒ°ÝÅä~"ãÿŽøt™æ¢Iéoh‡Ö[YÆ„º–{ÖHÎršÄgïõQÇt~…Ц$œèg•·›ÔªýRWÔ¿Jð¡/€A¢s»¶&`§Åtš%(L…}ûT}™þ(+ G+Y7ɰmb»ïpvË/Èî‚öa ­d|Ó8eI-Vøzç͈\_žŽ¶o:ýûãOKå¢^Š.v>Á9wJ,¢½…j-ÎlÿV{´(@ú49Ú»àȱ –"{ ßßëÁV¸˜m¯Ä4EN*³¦=Ôhªv:÷{~ö;­Šý‡ØDn¬!8x•¾úÔqÞ9«Óœ\—vð_3Ì]gÀëàbŸöò•»½+"Âñçr£G¹¼æ}ög¼Ïü]hÌdßçü¬¬ÊÊJµŠb’ýäºË²Êr˜’áb‘tŸÁ»ã÷6•Jµ™Þ,ІAÔÈ*N£²hªI¦h7Ë›»´cÍ!Ó¨Ñ&ß~ߌ££ ×µ^0Q»—gÌexùR‰×Ÿºd2Þ÷þ!41™;? ™ä½H@SÎjf•ë‹TãÞÉK€3Ë åj5Êö²Õxi20Æ?kÃàw{o”=»Ó‡N+C‘¿ôµv™6€§Sïþ:7màžwöBÂW3ˤW&±¼ŠœÀ@ $—þÃþ­n)\ÛçÊHò7Å‘ž>ûxâÄ\­—±Y–œÆ¿6QÑ0ãfÿÝ^ÐÒ/¤ÅO<ŠçëK4••iw1®œA\Ñßzz`\Ñìf1©.®=†Ñ|‹dÉc4ÖŽZ¦>µ‘×·ÎѶƒÜo6Ç¢¼Iù³"@BÈU?DÞ†‘×”›>¥hq’‡ÔºÞñhœßÌfÏS×<,]ŠÛ^ŸÔ™^³9.7³`‚I©ß»¯G;hÖyŠkÐs`ŸõŠÙw#àÍC/ùI´Á‘~\Œ`ä´Š½JiöõGÍ ËÖ[ã1¥<ÍÉ ²<Ç×ռà $á#;wÔ¹®HŒQ=*%¼¸è}w³†Ý«]Þæ‘šŠé–ƒµû:­Ùð›×i"œºBäY¬Õº^ÐKo}L‚:jƒwb ]y@®…<ûE­¬rÆB¬&Û4æ…½Àͼh6¾#ž^CÃ/bG/`$àÜ[À_3ƒ¼t¥ºÖ’Ÿ€c‰?¥¢"Í*ØÍ×Óek㬠¼ i|‡cKÚœ‰¯ð#éBph_'©ßßÃC‰¾“£Ü|¼Ðþh’¬#ḣ¼éMôË FœÙ.©6(}Ë=1„7ùò6VfõóÉâ×+x8~3­¢ ]‡Bæn,}EÇŸðñu{úººBg—PÅü-šãïÀ)Ý,gZn(A/[wZr‰1‹¾»hªù‚"gÅw˜¬T|+¸ˆÁšLÅ0Óõz‘™£,ɰ”ó²€`rleå¢-Bøf‰ÞÅ!rOG ‰aòÓn«ÍväË”ELà7;ÑC:»eÉBªî÷ÁWËÔµé¯>p ð‘KxJéô±*ŸKK—<Òêј[LÏOâ…Ý«GìˆVÍéÈ!ºJdUÛ„Z²`Ž5 aÆ·òKô{Í%íò !áÒ\)¨st˜‘òJEÏŒkn%9²YL­$ëúq„m‰OC3^ŠÅÎ]-i·€]öìuÅŽÍ솑xsÁ—ÙeR̽ßî£I`‚Ù^~Ó´:™$³A®˜£(ŸpFÆ'¼*?yøqK'¦ê7sßiü(¾ú‡!Ÿ¢IzPO£ç†îÉóßüvy  ÿ¤X¢àE–ž°H·tá¢ù­q®è€ÜliÖ¤UÞÙë’jäÂÖýk“õq:KIøsÚ(Ë-Óú÷äw`»È”Ù÷§‚ª+´6¥÷’?¹/ëJ¶z§:ˆŽ 4ëP¾s´É9ãâŽKEýÃ"&i´œ ›ã¤·¦Ë2.y¤5Í]‡ ÆŠ&8úFèìS™vmÂóßõj¤6—"–Q¡#H[‘&:S:5¿óDaî‘ÎÍPC‚4~'ÓÖÑdìžûöf`³¶Ðb M½a]‘ÑÚc Nê­ ïQèxqßþT¢ƱS}O-¼R:©E»œ™uq=ê¾S°W<‚iÇ‚¨RáVDn™Ç<<øúÒ)¿¶K¡€ =r7Žr7Õ?5$’>ËÒ¡ïAÚ\â(`©B™ßë`²Š‡õþÄÚ"|K••£´q ³UðÒèóéàUætŠ ÐìÌ -fš®)gÔ¿€œ­ñÏ`ÚK”½G–®å-etQ}V °Fº×™¦Ã×U”)B/ˆUrú[ýí~òf•Ù|)Qó+ˆòè ¹Ú9ƪAØòƒ†=?«,8œô·žz>‘§Áu²ˆ?Ô¯†Ðì‡ Ùa8àÊ|ŽAg/šÆ vVBßùˆÝÃÙÂ#˜€ ÃßxÌbíûïQÏ”³Á1*sX°ˆ‰: ¾’Xù ăá/6nà‘žDT&…•Å¿F{F•ó2uVr $#ïXG¹˜[z]BÑymÈ2‹ÔÍô²KÛ´B§zÍÙ¼ÙŒl¥·zéd¼ÐCU¯,GÕ²YìÍÓŸnÑ×:ª‚cVù@ ]‡³ ÂoG°Wë*<³þgØg•ßeöj ¶Ëd7O\hÞ4>â£øv«¤'ÿ¸NrQáºòÑ-6¦×"—n‡ Ï©w9JôÓkÝÒEe&”ÄÞ÷¹k¢ö~ÛÂÚÓ´fâtŸòŽ÷Ô0¸›Þ}«ë·¶–ÐljÒ@À‰‚o:)•ÆÀ<‰FL1¸MþŽüÖ°¦BÖUô 6#AVQæC Æ"Æ/ëžÇ«°sñ± AmUZ>‚¯$€E»*ŽŽRÇq?°/I„Ë5›s,µÍáᵃ9X vÌ?Ú´ÉÕæd;Žqýƒ8KÈÜÖBû €DEÙèÇ(©¢Û¬5Í@ÑÉöÇOñ_£hÚ Á¡à¤Ê ôӆǵ¼Ͼ_u”œ!îsÑ„^ X÷./¦ äO¦7Šé×Y¶¹?»*GÔ(¾-’OÄÞæî½ÊxñeÎ>¥z}1‚ÔåœVðªRQr} OíÕ| †Æ»h¹êOãU+.þ¯·§J¢(w¦Ë VóXø˜KÏòZȦå–OáþAÙ3Û2F|^;)ÇY­q‹8,–lô«X"®o·ZÜ9í@Ûf6b´ö~3&n­äI\kÍ7•+»ÍñÖñÀÍñ}Á¢^ûûÙjñEºô$Ú<³ã…mó ÄMó73jzï¬j5ãÊJg‘.V³€ð/í ¬†™¹xµåóÝ9 ίM_[êô¥¾x†,ÕW$ÉÀp]V§@ïÚ埋3í-ý€ôÂðJf‡:í¿Y„…œï¡Úàà³û¡¦Ë²[^–7BÉúåü]×¥ósßt­.gÅ;;ïn÷K&µBÿs´1ÏÚü-ÙkåÚÌåðôfk®A<‡Ïü\%øzyüt,<©:þ5{°bôeQ°ØÑ):äFž€`/¬ ½ÍJŸ)J‰ /.»Q >ŽícE+}ªt´ÓÖbv{žÔ$gr?4éÓ|äetÐÓÝÏ1þ,VTÎü ‰ïjx:j7lF˜Ù~JPÒTÜm¤|„‡$÷MøâLðï˜ÛEw€Œ.jÁ ÁWÒøû—垟ŸaðôÑóì…»BÁ­#É|í'’Dë¬.®îé YšÝ[sm¨xô,rÀÆÞ™}ž‰^«¢òœ+z û±TÝwvQ<‰‡"T3ÿ)>Á–`¥rÊÀ j-ú0dh¿¹WÚsX?c?Ï!;SP\7ž»[’Ï¥d£æ“þ’‹Ž‹ñbrÄ|RA® 9TïdKδ]ç?MñΓ7j¥w´§LÑÄûP'¾Ó<à —±¹Â;°s&¿Šn¼¢‹Uàhâ¤ÀaVP-±J¢¡²K´•Š—óëLËB±ëú S·¼O"lÈÂàþ+êÔ—Ýoˆ2EÏ;÷:zÙ,LK Ošf¥emûŸÉyæL‹<‚‰íº %˜³U»}pE¸¯¿·ÑàzêãÞ Ⱥ¤•rëݢϡÕrãæ‚“±Ô¦|é úŸ¾IšÆp›ÛEÞü{¬\Œty¡NçC6îˆÓ³ 8°pÎÜMQˆ=}fÐ qO‡×ØÎî±Äà5i!©@÷ñaŒ!¬@ÿàhÁØÇÀÖ&1ZîS€@©P>·:dŒæJ§VH¼»{œëV‡+d‚–PìŸnõW|bAð*hуÜÕ éä˜Á*Ì…#”‡°à$rî‰ZmÎs¿oWuÅ|ûM‰&<†?Û\É•Y¶3îîÛTá†S Þäõ‚iŸ¡þ„&„ÈQDó.xú5/÷ÌÁ¦ýú~ÉZs óæ½^;~ýbzØNO:‰€éòÁ‡&±0¯øë‡ÄMïÎyâöÎ,S¸J¦í‡5%ч娗Âáùë´+³pv…õÜ8ƒ^œîâô¤‘*Ût±siÙ Þ§÷ XÕAqÙþeþuâ#möp0 £U©ÆÉý‰­+Ûf"ÓØ“sn×ááã÷2Pâùª3áâFö™$LKHL6v%æFøC—QÒÆ7È(5’ÒŸ´mËõ£…zÙ]î–mV ªräèÉG=޵0§(MݰÈM—Õ|æ] ¡¦‘Ãæ}m9Pæ9ÔðìVyôÍ貦žh…5Z žõ#áùÎRYZl7Ò Õõ6aµTö¼&6Pæ^?Ež/èäÏÒDB­¥WÅß#4qMjhÆvSS›´ÃQø‡èÔà B8ÆUy‰O»oϘ¢«ßç§X{µ?ŒÁlb®!ÙçI:b¾Å'Ð*ôÂÃè *;KÆ:±ôô÷»F°áÅ8)b ètÜþ†‚,|[írHš°×çÙ(ͼ~¥º£s]j¶dWUN¤~ýfçáo¦ÃÈ:j *ä@}Ϋv²5ñe–æyÁR°#Tsdâ·Ë­d}­©èÙnú¦Ûý–ÌAuýùEa€X"¸Õq,3dº˜–sU½ úå¦ËxRo×Pí£{é2=ñŒ?@{Weeh…(²AÅ¿†7¼ÂªŸ@Qñ<&Öq)ú±ßÙaB£QÙTckEsàn׋tÍ0ÌÉoeo¢Mùk¯(MÐêî„”\p >rF¸ÈÑLQ;ÖI¶Lƒ¥5›ñ¤ïW—ØqÝ—_[± AÝ<êåÉÎ]ì9RL f—þ’%&¶Ì4§»-ú匯ƒ/Ÿž13G±–ú‚í’Øþ‰dæÁƒaùXà…_ä˾¥h½Â9ò˜^\Z\_–½Ê(‘kšn¾§­Pº""öQÑó×oL_ƒZ/7 ‹µ5EDTø|±Ÿsð›uGò£(‡Ìn»pª¡#yòê ÚCÄÄuÊfÆ’‹ù½Kžø¶\âÒ“í6[IäyÛ–°V.ÿäÓÈÙ¶±^óá…n¿ê¬©@ý$–H~ª×(ü:U—h”±ª¿texª‰”:*w#avsp…#ETG$Ú…}4-÷`$ÌSæ9£»Ü•9u‘W+rœj9×kT_e)°}ø|ö©Y_åq:@Æ»s±Æ8 A¡s'þØ…¾èßjaO%Õ<àÁ“eˆ§P¸ÁR.6¦A²ö4@9¼ýrjmû$Í·Ñ0(ºÅê†ÀiJ×ù)@9Ècc`7t ë»nÊ·"Á¾5GþŠÍö¶™©±Û›NŒVÌ‘$r¨™ßàç<5 ɺ¾åˆKÝt.%ÍËâ|k™Ò+%[q=p» û$yŠ‹O8 k7Ü 5\^>´3[‚£‹Þ¤4ÖÜUã"‘`h!x}/åêwT̽0Ó×h Æ,¯–ö¤Ã—_“ø>õÝV 79Gûý3§ÝœÂŽ$*#´¸“×ñî,ÒrÐÃÒóRÑ‚Rœïsº·|®hÜ8õÉ_ µž¨¹Ùõ÷‹5‡<“âûnOÔl5¶âŠ+W‚D9O°T%\„é葚鬄ȧ_ä««•ö5c9>Œi‚(ˆZ©©Aùç&{ Þ0+ʽÎ$öÕ-™.a%Ã~¿ùeë/¸X9íú«w§‡ZÄKŠÏð˜úåB^‘’!¸ò«² œÉŒwuòò˜æe‡š®™Vœó“Ô.,js'%99Àaì>·=[|ˆ°à÷ÊKžƒ™Ÿ„*•>;²äiE [uRöZ·*ÁT:“51ÚU4°+¨÷üuDŠ®j-^ø‚3$Bú°ü¿œÎ‹¿µ’Ãß+Úô°ÁM%á™<›zFqq7>ÁüQzÅÕÂZ>û:fê²JYðö¿âAýá›´îÎ H œÒÌš8sÒÛ4ÁË=/"ûœÝ§ôØCŸýQʘSØH`È…¸>fWƒÒЇ·Ç*ý„+3ä}IЃíºï´V.ñÚA§ŠÚP÷gÇúÞ¶Š«2s™í¨X²Êk:ù»ÁvËzC®S%çÀáÊ@ùÂF{eäµz&«¢»d…v’“ ž0l"Y—רð¼X—œš“C BˆewM¸*êér6ïQþJi«’§ ÛE­Å€g"¯)êSÏIÚv–‰zÊ_—äèÊ|w[;‚:`Ú{Gù"Ñè ¾˜7Êüj€½ÓYV£²Õ££ ½p¤±™!"žü4.Õç嵑%Øïàök¦ËZƒEftd?`Êï¤FnZºM¯ãgu ÛoáÇ]Cü„F‚`¿{’M£3¹Ç 纾O;×/=°žŸŒ#`^6òu<Âo2Hûm–'ŽÅ¨Šù+Ûhsâ&%aûXÄ!è¢XqÝ…Ey1„î +ÿOæõÑD¥—eV+AQ?}méÜõ ‰„;„G0Ʋ“ZÃáHDÈ["ÙV¨xaUýAµhTL=bë÷ñ³SF$°kW&wa6ÛaTCé\Gj³lLzþcZW]®åÅÌ0¶ HÄFæ§Ï¨Q9;䆙åö<ÃDôw-¥ š(×LŽ ž‚&ª À€êµhd“Euö/‚#®ÜXZÕG†û1¤¹vÕðÆä¼4vrytìêìEØbV¼ÏŒO›°}ÙLy;àçfãCèþ`¹ÞQ«gÁå®T±^ïÔEGáÛí¥/¨°7bö´;t.šGß›«ùjÓóìªw  ú}Md ’xè™Þ@ö2U.ý‚1êÑ<3†()ì½âú0¿‚µÚYG#BL¦ûÎxý1Ù¡ ˜Ü¤š¹©âí@Á&ÐG ,‡æ¼{.Ï0¿ìŠö;x‚äÆmWk…ˆG6½@ÆðóA<nþ ™E„ ™™¯+ðë•‹‰^l_lMËc£n4…ΡW5ö;íHÐî¤-²jIÛžwÌTÊQÕ1£È)w!>èm„yXp¯iN€khÛ ùr,E9ƒ~ý]ïéÍ}“£øf¨Õ Ê=2¦1q,Ù»Š¡=·¨þ•û/N5±ô‡£ß3¢ÀUkù&èm Q]z †›HÈCNƒoïí•dwïcœå »”Â~%ïË=WE"ôfÓ‹& ز……þÆgʨªE¥|8ÑcÌ #¬¾©V¼Õ/CšE²°¤ƒïÝÞf«uh`ûýè??ümqüòžžñdTë°s8VÕ,f±@õÊR|Ä^¯7·7×ãXä~?–YþóÁl“ë©EÓOC•Ös5+yêåŸjòý ݲøá—™›³„~ØÓüâ㟰¶–SÅç>)säÙù£_ƒé%Ï«VbÞ6¸-t™fÔhíZÇŒ(,Ždè] ø]6Äñ…Ø%ÉW¼îqÓ’Q)Ž•Àø$0š^Y_OÒa<=ƒÓ‚úÀ†w4˜ |ãÛdr÷ºœ¥ÐÓ»w1Ynx«'.Ä"ž¶ƒàݹÄ]LVµé­Ø²SfÍééç6A¬ ÅÃhvüÅ/Ú9³´l-KC—ZðÒ­³ ²1ÿs‘ªE7”ŽË#acƒ»È~ÞÚ|]}eÎ3ׂ/˜X6MĽ $Ê~]IºózÁ¸F[!b8:Ôa¿xd.³ƒ¯¯þ‰öë£zdxÚß´Õ÷MŸ„ìÓ§qy’Š„4i‡’~RPPCï'éAðÆX§Uš¦ÄødújT°hxÉ‚7?Ò.²9wvzÍë,Bb<ù™°3û2ÈÏt •©ZŸ¹^Z<ì¿BÀIŒ)Z$cylüzSì…–¹›ºª Ž_,(žXÃ(Ã>ha&8­©)#ñŠ£céÈ]ÿì^„ƒ$æ£nŸ–¯™ðáuÆ5åËÇôÓç ûb"2ÂÒQ\wŽ>sv[y`É„T:VÇþƒ Gø#o)¸×ó„~3lÜfÊ’øÖ°ý;*çœHñjôËO)ÛïYD;dm×3HœLP¨{åm’¦v?­Ò™¬²‚¢øg’P[ì41¾´e»Læ_‚Qzòõ<²ÅÁÔµˆ$ÈbJ]¡ †ÆAúÁåÄåªLÃÉÙw`9r˜DaRÉ©‘2¡Ý‘­J›® Ýg¦ k -."ŸYl×@£—Οcº[¨ãMDtŒÄo•Bݘ¨•ÓŽì¡W8±A‘”!r9rôÈY;Ü&n,~±^&šãüH*r¿6¤PÞ'/º_㦾šš•¯ÀC¾y3¼¯ëÿû¥È<ÉGûC A±µxÙwmÊ/ERÉþÈž:Kdš}õy•³™yi™äç5åt¨Ò"¢;&l–M‹‰Ÿ—Í×ZÊŽm•„€ðId‡{½Á®WDïôfoû‰%,bt*ï©BÈXËò[ ³Q»r6o_3N' žd“ü”qŸ*ô|=U˜ÐxŒÿy$âDiåm……rsË€=õ^ED½ý(¨‹Êîÿìƒ9‹¨Ôöë®PŠˆ–uAÉ,ãºüø}2 ëXyà’NêÕ¯] Wø÷EwbÑNÆT<:¿ÅIÑÞ9SŠDlEí8¹WáÒj#渕ÃM:§àjòÕçvÇç 2…+€?ïÄv™2”ŠkZÜí1ÍZGׄøSSÔÙ,ÜEÛR¬Ð\C6¥ŽÜ¦ÂoëgE«Ò/B† ±ðŽrî/*\)Iþ­×µÜ™˜X“)vì?ÂuEŠfMFÙVL™Þda»o  4º)CÚ倥/’ÝD‘ì}HÀÅù£9ïYmLúG,â=è,µ.¾&Êë˜\»¹ñ* BšgبÃ*Å/öçà ¡Ê4aP;«yTiÚdôEfæN3W´£ î™ †.Cñù4´âqï @†°•¡”– A—ö¸7gô›È‡C¤ ÷ùò~•ËñtœpÌwdwü´<ýš3«:B¬@ kù¦Œ •8m”èÉçpHͤëwS7ßDðã8äcROÍô$ÁgXÖr“{›ø\²µõ\¯Lk/]î´_e+Z‚Æ)Ÿu–’Ó(‡3;N>YWa§46zLróâ@Ù{k¦ù"–H¶2ÜŠçïL3îîás¶¥ÒmðƼl«fë¶ÐZ/ožAóÝ*iI-òˆ¸Hy;&™ |=óñš¨i©¨›ê3yu·tÜÊ":èòì}O»¬”©eñ¼¸Ö.üö –½.D‹˜cÝɰgÅ~yÈÜmsÞº+R- ×›@“²|èû:å°§1•Ò>uÚ[¼ƒ“ƒiX×p¹yŸ^;™aHRœ¡˜`lƒb¶ò¦ñ¥Y›vÚNÖïmáˆ0}޳¾´8¾ 76Û€Îo·,OüØSÍÖoð[EŽÎpoSz•òˆ˜Þ_Nû&ß9Ùœ©¬«rF5-}Áf¦ö DÆþÈ•·ù®a€÷éú ‘QWÒ í6BøGãàvë TÎŒ¼Úy¹^ëÛo|Ý1Â=øX¿Ã¼ •åµ'n²rO)’Ú6A !ó~$²ÙêìZFïãÀ/Í|"Û<µ‹™´þƒ‡éqóœäÜhˆ_Xrã7Ê!ƒ`¯Ì©NˆZ¾"†DàÞ% P^æK÷äÆ7ý†}6ãü܇Å&ïSþÕNle÷döܘmÅóÅ3~‰­¬­ïçfgA•èµ®zXynjºÏô5«•«kôÌ%iïì3,t*s¡Ó¥y¸ÃýûÁ›øS½g\’~9v·i³F’ׇ“ס£9yÅÔ2-þŒ +(SæPí6eæ0ýnmÍå—†ã–>êéô÷BOвÑ Åê§m¹&he Ò}``}`s½jÉv‡,*\ÛÞÆ‹Sþ#׉܄IV¾¾—Šæ±Ô²`Zÿ³&.¡õãË’4!±Ý %¿‹µíþ€Ø¥·^bƼN´–ýàzY ëÆi‚(’òZ¯w§±u޵H#e`ârCl16§ˆ<ôìøÎÿé õ7#Vž²¬$ÛLG‰$"C%®/:ô@GÅÌþ­ËÇâK>É3í‰7®Ì{Íþ t¸_uSQ?’f¶Ñ±1 u¬…Hl¯¸®z–¨1Kð‚õߎ4+2J/!oì½tù@ÓfãÊUâõŒ©ÖËÜhp/T§Ð¤ý Ù›¡“~™} ü!¥~ ðssˆ&Óç"~,þµ¤<¦»\åÊàÏÍñ3þ¿Ö@¦ø0Û°šÈÒwª@§§ù”ûÕÛMêv¦& O—–1’>L‹u™[}v3o$Ž ‹“ò)©Ì¯k…á:âㆠ¨@i¾…Š—LIo"Æ)ÖÞdzóñÙ ¤&ŸeYÀÏq½0È!PÂ5àGžäg¥y µCì|˜%ï#‰€¤9š‰)à.JóÉÁô1@ÌM{Ú×û€787žp˳¿ŒE/8€Ž$೤¦•ª?h[ ÍEµy£é¿é{e‡GWˆMdÊÜtÅ&'Ïn ¥ ŽPÍåiZøÔHFþÉW!Ë¢G!äߦÔKQ_‗&}GO5Fh7U}vR)ÃsÀY÷¸C\koG/ß<Žnâü÷zn‹…²,-ýı’Ïe0DKçï°g HQp\„:E/¬ƒŠVÝuôÁ6–ez:ŸUu „”ø(D/È6"Ôì<†c¿&çCµÅ1kPü‘‹.© ˆ0ɧƨ³ìÖÐÝÐ;¼?Š*·'W+!Õ–¾bŸX/7¢Y ÑÐZ,ÛO­'Ó9ò‡«o2o^¤Þ5Êx5Ù Õàôñõï%Þr(€+F8>柙ÌjËM  «ðQî¸mØŽò‡|éÙ¦3S®3wC[Ç.Yó³÷‹L‰‡v\Í o³#™€§ß#¦Õ %Nm)Œ®íA+ê vW-Æ›|«µ%bÆFštªèõóU!€È<înƒs9½Œ^‰S¥ätYô ½lþƒ ‰:ä>Be¼Î!›½ÚÄÁ¹K‘TÜ#®uàó £³rÁí ˆâÐ>ˆFbBÏÀx9èeüs>Äd"™…ß&«©¯î¸Æ‡±L¤ Àw™:ÑŠlϾ®äPÐ+âh¾W–ÄõQw (ðØF£¹ 8¬JäR‹uäI“U[Nw20AÉÕ›»áLä¿I’ÜvhÖ¤÷O÷ùݘÓ{¾uFP<©‘RœÏ£±-é;ÆŠdºŠÄþ6yîTÛ¢kˆCß>˜À‚3/ ·ÑÚ§5{ö¯î½ñѺ{¾¶վ̣“*x„>±Ðøùa0nÇ›ÁéSvúýšèE,¯'Âì°s$l^¹šSîy`’ÚLÃX¾\pošf'Æ6lìòz&<ä‘^€K”þBbäʽûÑì¾ØeíBv ]J«(€ÈQi ®¯Jâ6TG©]'Y§?O§FÅFÿ5kÃó]z®Ûð—Íd;í *^¡¹s‰±.áoˆRŽMóDü®ìä)µÀ—yJúœ5Ývž'?yW3k(o°²T5¸“Û$tRÜÄ5¤Í×dÊp÷À¤ ¬»´æí,z׸¦1çÏ:¤[Ò”8)Ñí-ðáà÷³Ä‡ dmä5uÏ~$mÇA|àý8.T£h‡m¥Â{ÐÕ±•ZÑñ³q”Ú“—ÆPœ ^Àj·ˆzž>€Øâ Ž+H¼«2~–@øõÐ+´*:˜ ¾·¼y+ûKCjÐò4ìÆ+øñP€øz›`I•À‹Xé»)£šäBA§cÒ:K:¡Ðh°\ÈÄéÁ»£µ_L1¢çnto&m’¤šoÚ£³ìíÍêSµ 0=½óµWCöÆj`‹¨@¥³×Èþ£-a#áX„\(6aÑÍûvJÖâ- Ù»¨`ôe‡ûÀøQZõÉÍžÃêßRË„EV_R"dhP¥âÜ.öüšÈ Àñ¤¼?X ¹ ‚´óêóÑrcÛ»×u`S‘lÓºmÞP¼á ¦83«$Z‰Géz[é&JµöV1D åTrÞ;3r#È}›…”º¿ûßµ»šág²Ä¨8Ь`Í“‹~Š|iQøn¾¯á9><<• ÈÄDj3MÖ‹¹µ_o·¯íä¨5.ø*¡HTýUBpÐ%_>$&8R®)^ºÅL KK)Q/ÙPÑêA”›­³œƒ>Þ.;Ç ¥Iñèíÿ˜„o¿üù jzmRÖÍ¢{F؆³>þ™W›í‡w Hgß™iX âÓ}›ÑG¢×À*y7¡Ÿ³ ©V«8®äÙ_éwæŠÊЏ#Éȯ}þ*Rýâ$˜°á^Ìš«DË”8ŸgbÝØ@¸¯]áfiú†0êu/ŽPDLw6½úö©œU¶â0Ä’DP׊ScFtyÖÉ·’(äŠjë ˆÆ š‚{Ïç9ºûÌÊ[qÓ’j¤R%¨I„ÖöLN/»^Æ*¹-j·Hšu5o‡©Š-ñÒÏ0¡µÊ›NÏ»uÐcWrz+_Îô¦ƒú X„½gB.~œCqÛômרé6¤Þ/\œÞ»½V¢‡òêwssq54Ÿv K©Æî žLm º9oÑRuC8ôMc’Bõéâq É«¡Ò‡‡tüËD(Ýb‘¬¯•V %ã[y¸àØæ³3·m?OÎ1J€RÚ„–µFìƒ?\ðņ¤P‚„ð_¡íÄ/…ÂCr®y1w¿l¿…ý[ûÍ/qŽEú“æ'ï[}ésöi”öÅÅÙøš€KCèL¥M–ÙuSåí-ž¬'.ƒùà3¨ÆÙ)ÝTà´…ÙdÞÕNÖogþƒ¼è0djê‘ë}Æ‚!vÞƒøk¥Hõ»â‚àB²ÚxM·–½Ô6‹Fî=¼üî¼ZŒ¡7» ]é„ÃQ$-`ö„dM6¼¸$=ŸEØX çI©wh¼¼ µ?ÂÅökí(Ù y tP /|‡ ¡¹SN[êo=E[ÖÿËcÎ?¶¨äÒØfE-VËÉÔsâsɨ>ê›är(bpÿ뾉迈oA. „Kó%¦Ñj hˆÙ endstream endobj 4258 0 obj << /Length1 1630 /Length2 4806 /Length3 0 /Length 5627 /Filter /FlateDecode >> stream xÚ­WeX”ëÖ¦$‡®—î[Db`‚Áaf†NAéAAI iI‘ )P éTâÜgŸ}®ý_çœ3×û¬{­{ŽÞçº^~n3Kq-(Ʀ‹AãÅ¥%¤T¤‡‹7΃6·€!¼M]PH€ÈSñókca<ƒ¾ ÁÃT[¸ sddieee*~@ãéE"Üð€µ…­°¨¨Ø_–3ÀÅÿO„‰C"ЀáÁ†ÂxzÀÐxÅh ƒx7G¢`€¶©™‰ ¤gb èÁÐ0,˜yZqŒ®04& À1XõÇpÅ ¡È³Öp.-pž0W$! æç ó<ƒÄO։Þ$@`!hÿZ×…2xàK Ü2À8»gP,pv×xyÃþ_ĉòÿ7w´…ýQì?øþà!„¡h¡aÄ¥e$¤þ0#qºH?Ô ‰wuàaf¿íÖh( ‹B¢am•$%õ7ÌÊ éz }&‚ü ý{ù¹~/©c¶_ýw7ìoO3Â&à­ü=aÀ?ÒØc ÿ<œñ€Á? P\A—‘Uå%iéà“ñ7ô_gc‹ôì¥$¤¤¤ÂÿŸ¿¿N£ÑA»b g›c‰‡ ¡„eû§á võÆb ÿ~ÿ Mÿyþ½ö0˜Ì•jjãªzÇ=+'_Í”ß;tÕ¾«Cš´7Ò³¤ÖêQaX%¦=4+ú“r™óQU¤DݰÊI“ÿøªçñçk"_ú:Q‚í°‡ìÁ¼Â…—æZE¿„K:–Ðd³ Ü3úHvCAÊæËü¹…ãã# ŽáYìùÍá0^ŸÂ0ßwOÚ×ÌšD†Ö‹uDôÕE«ßR—¾ öô¿ê}Ù¾MÞù™MôA"%¿*„)$}•; ïïŒÝ«u=!ÿé£è;¯jq±œTâ[Zc\pžkÓî¥V} ™Vot¸báswfþìóÐ=ø'–ùŒ2ýÅø&të…‡»ê¤¶_ót"¹¶‹ï{ÅS1&”6pé²âÞNi’=нЧ@Ê­õ&2‘»µ>h+øe¡<™åÃvÞI5¥,è•ë6F–n/p©ŽÉðÒÆIâÛH9Õ£‹.…yÊÛuœõçvÏ"£Ö >k¿HŒ?µ1™ûH»!xx›ûáqÃ@€ð—Y»ŸÂ ù7­î%pÜéÑDŽÉ<¼ñta¸f@mtë» ;‘C=éÏùŽîÞ¯C“õ}£fD¦J·FÙÇšBÂo|àÜ kèHÒ¨%™+Uùîþ®&ýY,—U:™Pû Ýz/7˜N·Ý|k§  —€†ÕóLž#‹v~÷v½'úbé›ÎOÜã2Ê2fçAX†Kþ z)÷ˆø!“¸áÈn·w(Èb}Á|Ž%¬–~dÛ¨?´ÇõC¯oPÛm˜Ë°™<Í°ÄæUñâ óÿY”ÑGZ6.Y‡ÿÜ Ôå"¹@_xLF@Á6ÈF ‹f- i)/?{Õ!îQf8Ì•é’/&7À.愲埶¾œ7Þ‹HQj §MP%IÜ_ß´P{X$ÁpŠ/ÿžøá§ ëN€š–¬ÂÀºû`ýòäØOµò<æí i!ÇêH{<’Y5¸ÿz “^rˆ{>ïòxÏWc‚á`O] ·Ðñ¦ls§Ê˜»o^¸"I¥Çiw–ºn¿óßHWlãäûHC·Ã™é­­ý$ ‘Ö(#x¬ÅTãç¡Ö£gNU¾‡Ýq¥º „××~Jõ9ÿêñ)N‹Ó9­PÏ^|z'òó<Û}å °Ùì´¤¼¥ª»ò•OØa¦E…vÎê†m{³8ºçª´ÿ¨6 ÓÚv$7|sìå]|ð‚u'×nöÓÔωï“>ÖdŸ§QƒN4Ÿ‚¥¬}X!]§‘‡±Ôýf1? Q$oÚlªÒš¢f•8—3Z–ÊÂ)²˜—íméT'ZW¬3ÔVÒ•~1•òÞñª°ën‡Æ<ÚULÜ•’‰{ªJ«ï•qG ×(8¦¾Â•GÉ3øY­ÞOBÎ9‡ŒÉ}(7–f)ºE¤b¦îCDkÌyäÄØ¾Ì7¯Òœ.ˆþÇá&±µ’ˆÃÁµ,ÏÞ·Í\cí½³ƒN­Í\w96²‚e¹ÈíôB©·§p ²/N «a¬09ºé.žÚc¡À%Ѩ˜j\Я-P•`ú øñDZ`Äz£}䆔…y¥!>ÁSaØ4_¹|,ô‘|I8æ£ï=méuþv¤õ¼zAÝ{6˜Ãø`kÆûhóL¹Ö OŸEæôÓÄ’¦ŽˆÞÛO6Î-xŒHgNNuSÂŒY ¯ ’T/dNäÿ¨­Pª¢¹œxúP³²[ŽÝ5å‹âÎ4íî1|4Kõ°ÞØúgz^[mÑx³ÿ7ç6ÓÞŽ¾ÍhVäîöêºü¼ª`Iù×ÖÌ÷^ñPi}#»½#×›úoZË—Î?^¾è<œT±{²bë,ç²à4§bÍPÎÝCi©Àg´Jópõ™L¥hTŠ?f¨\Ê"þÖã›¾Ž«4øë’µ‡¨“â+p”ã¼{;7¦ÅØdb—®b%„ÏcÿŸ&ŠXf4C1È›öÛýÊ[¦Q’ý°æ§?Ùñb<~Á»#k!ú¡(–¶xêÎx„#t =Œ¡0v+'ÅãøËnZ±æÝ5Öš ÂÅ[£B.¿ž“âb}F:ÙÙ b»Ì¢]– ^Ì{xË%ÇTE5®|Ù^º”µ£aIÄ‘òq÷Óç×R\NËÑ_HdçÓ}Aì¡°hÚBÕ—K¯ï:˜ß˜Ð+8½µØ8D)ŶychÎl‘‡g´.Ñã][•—×#{¨Üۖ缘–V-:ÌÚ¦íGF7©»òé ›¿¶ŸøÂЕ+¶ä|W•Mt6¹úˆb››´Ç“'à-cæÙ A·_î›3+˜Àpòp¿êœÓüM|5zƒXÿY÷œÅ~ŠÑ³'Ðð—Í3†{bÃqjêÁkAõåJØŠšØqWÔUb2¡Ðå¶ükô,l V1 Þ«ŸU¿Š¿X‘¤^ê5Ã?ÉOáÒ¾\ÛÉÜÕ¨¢Ã'-*eåÇN^¹»øê—ÉÖ¹onÓ¡Q±]­{yÉ3A©k³-µ&Žy¥øBÐ¥'³î¥ÑFæä¬bDþ{¯rŒÔ ‘c¸_5鈚`›Ü§ä5pK¾éž_¦ˆP;Žª8Úÿöœ”'´ÐSÜÖ÷ëÏ\’EE‘ëOW…uõg.ë퉖qâî÷ÙYe¨{å©>­Hkº÷_ÆÒ¨ ³Ê\šb!yVÊý“íÛ悸ùa ÿ¶¯ž•èHd ÆÌùã|uݲ͋>c` Á=/’7Á6a–ïbÚ¯kÇ;V•&VŽ»éÞæñ=:_UÅgÁ¨Ð±ï-ø¼†N=ÅÀù„=`ª”§Ü¯0[×Å^9ð:òªáÝáæÝQmUrL2ý^yÝÃxò{½†1§¸èú»êUq0F³œ`Õ ÚEïæpÀ"O‘6ª~îôPdjá|ñJ¤i`ñ{Pu)\À¸‰{÷‰Îëä¨~™ÊáeOn­µÕš&õõâlñl‰hê-hñútžû<ÖñRÂìÓ rÅ|%fÁ;Lw •5ä¼ä§Ó×’ÝSÉlBr¯æ£öò©ïš.랬ÍS¹ ã g%/ï¦Ñ¨I.e–ЂÇrº/ÝŸ¦/t<0¼VÚ£ôÀÂÚ²ÔŸQfuQÏš*FÊCƒ”MþP2(0öˆùsŒð=ÆÀàa!¯º€cwó훊°i»ðzýÄ**ùéviÙNß|_„‡¹z8Ç1…±ÐGþæÇ·»ÀbÙù׿âžå *Oµ´ Ù®Û$Ó»Íì?›Ë‡¹¯‹w¡„‘¶¨p™<¾y±´•›ÿœÁ;ìÊô×=î—÷®š\é63I¤NW„]U‡eDŽË+ó“ƒý9Ó w8¿Sµ•)gõÍ?[ºÙ>“¢9½ }œˆÔxM4>SC~ƒ§zÝ0÷\Rï¢$é|ÿyÈùãîwBVê.^s¥M%yêQ/ç” Ó‹éÆmÇ"&êÌTéfä†þñ¥¯Ù[£–ÕȤL *3úšO®{Ò˜hxáTüDg™PÛ ¼Z:ÎþY4­/Ê5{ _n \$]ª;…×|Ûß<å\quĸaRÚÞ9fí*0_ÎóÒ™¹ÖHèegšÂåi=»Hgûù¶9'¾´Üo÷ž(3öÝÉ[rk;üe1Í+þæ¹¼æR§D“ZÞò`óÝ‹Ë"Ÿ^¼ ¯´žQy9䥲»ôþˆÌÌGFëb2¶ÌV<í?Yv«‰5àJµæŠ&A1ßlHÉдÑvÓº ô¦+z!g•±ö˜GAOí‚G®‹¹À,èqƒ—†ÙèyÕ>KpÛõI­R~ñ/0Œ'~âÍZù¦wü7­¿íËèÎ_è_äþvEžb×Á%m&»tô=ßÍÉë:á‹7̱îЙۓÜ`NéA•ø½†7dÑ *ëp1 xt´ñ‹Â½%S/[M†±¤:묨Ë7/ñr{øÎQž¾ª{=ø¼x˜8 Ô¹ õˆ1R¿ƒ ¼¬x>t‰éA@!Àó¤|MÁ,B›õWò¬ Bèá@à£òF·CÚì)MQ…õØ–u'ù/[5ùÀ-Eª®ãP]¦¶0qŠŠ<ÙM©>Þ9˜C¹¯ã®é‘R)weóþÛW˺V"ò Ã'S*ø 7H¢†r¤Ççð•ÝÕél±rñ9þ]½RÄ&2ú¨[ÌšÉ]Ê<„„î.7?70\ïozõ¼`âë#“78Ïò^rZÏ´:î<Ü^¯ü%$7eeÀÅ}!ïcfDwæõõQÄ5ÔŽj¯æÚo;°0²hú~ö±k ‘Úc_qj0Þ¢?­OÕ½ÂvŠz/pïRN£øá¨øª"Ï]Ö^ôÍã·D%/ýWÑ?¤KYxƒùÇp‰ˆrD´ÔÀ­u·‹£YÁ¶ÓUAâ‘eá=íic­Þ¤CøÊ¼‘‡m´g¾rûUo9Ýå kC Ñž:$ö<øÜ\íáŽ%l÷añ} £ä¦WÆN<@.™éR†{~r•ß Ù`Ϲƒ²ÐÒ‹Í<‹„­×%—wá^ ôÚR¿­DD‘B1ܤeɯʢf…:±Å5sÞRÉû”˜×RIáþˆŽ7ßÚªøÓóÞrš" ^"½¸êÕ^Q›žûþéˆô§b߯ÃQ‹Ìи­+½FÝ>ñæ‚{ÝФ:HÏlnÍòlúÃÞ„ð þâ°)Ñ&ÿÏ®ÄÌçP)é™>`¥3Òñ”VþÏï(:)­‡V¯¹ò]øÆ÷Óй×Sædôc¤»n\l^QîÂûô­Ä^Ÿ— ¼¬;v˜ØŠ­—d1Ep&ÁåŽÞ¹ š?ÞÑÎ|w¢3ì2ØN›=ÄRý>wÛLçžÒjZp¦rl®¶èwwñ]‘ÛÄ|HЙÙVŸç›Ñzå9k†}ßÁŸõ•N„+zÕó23óKÑLõ¼u}„e¹Dº_œ¥Ëo†åÙúÅ*õ4ºÚã¨Ä|óz!£Ž•MVI‘»$^É–$_,ùÞXéwˆWˆñúàüs/»1UŒlµ`›9ŽöðÈ..«Dá,Í®wßqRµÏǯ;Co›Ñ &à|ÿÙ(æ±·®LËmâ.oLO½äÔ‚}2•Øí¦ó6 Éôé;»Vþ°Ç‘5NÇ?ŃüÂ*Ë."؇f¶]ª•M!*Òñð7¸õÿíÌ£Ìn"Ò˜G;I€È~rßëàr­8ûÀW î¾0TÐ÷ò‹û¥Pó¼öþ9»Ñ¨Ÿ‹¾×öATxõ,äu3]ÎÀ9ds Qgf‡ƒ~ÒJ8|º{wmÊ*>ý¤,ŠÍ—cÿ6‘‹#Ë:8‡»9øÿyTb… endstream endobj 4260 0 obj << /Length1 1608 /Length2 12169 /Length3 0 /Length 13000 /Filter /FlateDecode >> stream xÚ­xeTœÝ’u‚Kàš4îîîîîN 4îîœàÁ‚» .Á=X€à.áã}ïܹ³î7¿fæÇ³ÖsªêìÚU»ÎYÝ™ª“˜%Ä( q€2±1³ò”Aöæ®.fŠLâ°%àÕÈ…BE%á 4ƒ‚ ’fP ?@h ZØÙl|||(T ˆ£§3ÈÚ  ÕRסc``ü—寀¹ç?=¯;]@Öê×7 âht€¾Bü7j¨ `*ªzrÊ2Ze-€ Ðèl¨ºšƒAEÐÁH°‚8ÀÿX, – ¿Jsa~Ås˜\ ×m@  ã_.F€#ÐÙäâòú¹¬Í ¯=€B  °«å_^íV¿ 9:C^#ì_}¯`ª¨‹…3È xͪ*)ýžP3è_¹]@¯nÄê5ÒbáúWIû^a^½P3ƒ ô€þ•˰¹8‚Í<_s¿‚9:ƒþ¦áêr°þF€3ÐÚÌÙ tqy…yÅþ«;ÿªð_ª7st{þ½òwÔrA]€`+f6öלÐ×ÜÖ –¿EÎÁ `cý‡ÝÒÕñŸ>7 óß ¢ýkfè^I˜YBÀžK  ‹2úš@û?S™ùÿNäÿ‰ÿOþ?‘÷'î¿kô_ñÿö<ÿ;´´+¬lfÿ:ÿ¸`¯7Œ @ð×óÿÅšÙƒÀžÿMô¿êÿÁ𿑃š½¶AÌÁúU VfÖA.Ò  ¥*ja°2¿öèo»–ƒ%Ð r¾jùwLl\\ÿæÓ´YØ9üÕtn¾¿]@Ëgþ*Ïß¼Yô4%tUdþý6ý;JõUu¨¦§ã+±ÿ¨C bùŸ‹¿0ÄÅ!o&6+Ïëacåðqòùþ7ùþbû×ZÉ ê ò¼ÍÊöwéÿñükeôo0RË¿æDjæ`ù:ZÿiøËmáêìüªèß§ýµä®ÿr Ðh²4±±MÏÊ€ÖâçŽIôõ°Á†:–ÖkTCºýÓ#6ù*MŸjB™&øÿ´zþ8t|Þ‘§ßîÁÓt§OòI|)èz Þ¯Q·ó0ì±—¢eéÄxŸÎ)nÀés³jïn©©—EÝKY_Ç–®åØ0‰¯îù'h3éø—oýœªe$Ü2Cs’ôéúò„Aõ¢ukÈRYsñn®3$3[Ry3ÖïØ¸K ¿¹,á=e÷š“ ‡Plœ‘æï(¿>*OÀ ÖÎN$Œz.I»öú”X&¦`+;ž¢µ&gŠAPà$Î qÈ.ØÙa$Mô¯dNæSìù…¶‰8ÂÌ/œ\Áð[…±œF~·+Ûñ.6†D®è½ÆüóÕÛ†"  îº¯Ãgüó1Ê´±Fd¸ ßþÅ ÓžùVQŽ"·Nx9D§ø«¹ìwâٻÔÚrP9œÊ*UƒÐí›_¨A´¬>ƒ7/,Ey¶QöG1mеÓÜˈz"•½Ãmïå–HÄY¤‰Äs&D›GàðÙßZ/å>$'ÜW~ÃüH¡×u3x; kÎñ¡|ÔSÈ,HÆÕÑâElài«ùP;Ü}y1YÀ…À®×ö¡ gÀÿ3Áãz=]á2ýB.:K¨Ôˆ)ñL1[¡®<Á[X¶¢nÄù>B¶§ûµ.ø™/;æ•ÛI¹hAÖêâÒÃGýâø7»–9ǦģxûÅ“ñ':vOŽno”MÁÍH0ý&mf—%²/•Š™qá€\æ1ö¥û÷üâ¼ÉãüÒXü;¶ŒAOÄÛ¡Œ‹T¿ÀÔ¼ñëJ_D¿SS]Ì¡îÔÎßuo–;tÚ•Ï`³î:¢4&Ó…ÝÕiHc2bB³ŒíˆA;?z{fê´¼Iþ””þIq|Xk=mØç§«w¨Íœ¿#ﲊÅvçE“×ù«?4zV„¸„…%VÇ̳‚-¸Í~8¼„裋““õó{VmÈ<-o1Oe =À.Kô ÷ËäÙâ®ÍÌR®­b€Úñýã-£øèñçBíÚ“ãw¦Îâµ”KÝÍZñƒ'Ê©ÙfÒ²œYwȨ¨!?ð#}Ga‰3Ø`ûô&ÝSàïG’þ*‘_éÙ%8»hÖÐÌ Ð ½#ÉFþRŒM;HûÖk„›w=ŸÌÒ›è‘íô>.îÎm¿nÉb˜Û8úôÞ9wýÑRv &•ïT û¨82¢¼n‚Ø/Ø=;¸=ß\NÅbϧžåhã8ˆOî"å<²ó­DZ£1˜¯—©Æ›çŸZñÓU ñá ž‚¤=4Ä…‘£lå–›-fÈ’¡¹@ø¡_9ô £öþ\ôáþá»ï¾…l½ÜeXâ\¡{t3Ûæn5¾_$1OæðžcA1\Bùâs÷»â"RX¾®ãN…éëB÷¶`öà;ÎIC„çOQ*0ë4kÄ%8-N$’VԛȤÅ$a~¢¾˜U”dA.£$ÅHKþV‹Y96fJQ§¬ æ»ß’Á¡ºoZ{ù—´œ(Ôû³!2Øj•‹Ñ°œ<'à;úS.¿ïÞ¥õ›Ô\>ߤ ^èÙ„Š£2ð®~i¤ìŠ×t[ÅZOpA«Ú&þD¼K˜7¿òÁLÞÔW1±3´Ñ ŸÓîÒ±/CõÈõ7#Î=Ûo•ΕæÝ{çµ=GÇ‚ÂÆ±8Ê¢ Ï~žÉWa&Tœ$ŸÄüÊÀYXR߯œÓêÒQeÝ…¯Ø4#'oê(Êtu‘iqX’¼!¯GáöJ×\Pà] ”½L5Â.²™ Eƒýõpð£T)Õ¡¢ÉmŸêie8€4CÚA`Ï-8¨€HûóÀÎâÌj·\Ó. 6¡´—‹ÓuÑ„4lnédàŸ>·úÑ"ÐÑŒ”¯w:£ "••iÈÛ/[|u¯n)Ý\¿ò}”Æ,މ"X‰Õ»Ã#ÄU«øœ "ÖWPTc±¢íóE¿—@ô)÷ZÃ)Âó'P $Ÿtþ²X~O ·à9t¨ê<} rq<ð빸SŸßnã0¡Ž†ßø¡tèUÑú)c&žÖ÷œG®–Sú>¤ß>ÚÈŸ\°Ê‹-zp  Ànóⱺ>È7S¶EÑùmÐcGÏåÞÄÀww³«ÁœùEm9²›ÃSÆØjI³¤Ùï ílç32 ˜×$ Æ%¿ùè5ÿIÈÿXèÄÒ5Y¶â˜›y8|u¼ð?MÀzFGoÀWŠmöY…“—2]A»žuáV07I¨½b¡ôAHML"8H”׿ڲ7fU{üHUo7Á1x_zYõ¤§”à`ÙÝ!]òI_Ù6Ú ËOÄÑ{‡~R9‘÷vÞ8aÆÅ!в€£®Ñäµ"1­“ßùTO!ð)íWíHò‚#ï>ƒ¦ú™‹|Í×Åá°3¦+6:\#¿LC`ÎyÚ8ÓÆc ÎêûlÖÜßDÄÞ}ûÁœ¨,ßþ+ªâ÷Cçk]”o¸.&ø›íÚR¢ßˆÕ´£Ñ‡Ž?5œ7 +& ÞÌñ]Ör m7Ýß爰4v]Òê ÝkîoA¦íß)µËùüZœ'¸ËL3;ÊëÚ“c+gP:7]ý‰RXV“‘|=MÒwáî°œÈìÅìR¢‹!Òß ^:_jÌùdùp¡lÔéó˜¹ä€ óîû+3ؘ‹Ó ~§sØ€¶ ©bã–Ó¡akmýaw‰_hÖñâTQžÅ0áâGäòBR“îõÃþ2¿˜ˆ" ¡}ô–ÄËü¹ù7ñ³ö‹i7“ËÇιOô!±ïà1˜7æ‚ £¹3Ö´‡ûEWÓωÐä|•çöP5>£¢Óî:>“„àŒÎrÖÒ˜”¨ýªë³_%/¬u“aCcÞVà-Ô¥térp|ÃøpzŒH©´{ͼ0w{¼ÜèÎz+òô“ÿˆq©•ƒƒÍ½Eа— MÓãÁHXÌ0Žìh¡\ WRœ8G¯TùpUPN]ZC›iç±÷ÅL]7ýÅjþ³†­¹QV:ÏNLb¢’¤Áñ¿hwOY§ #,%i¸Ü².8.m*…j;Å?RW C¶‹‚>áÜôfÂø.½a²?›6álåˆFã…²Œß'L×Ú¥ Ñ úDêxƒ¨ºÎ¾Ã@½Â¹Ê{i­s%¢Ó†ã‘.ÿèTý€»œû§ "+XwXÞƒi´YQÙÏðýŠR>Ô 6 ä¾D÷*ŠÉæ¶Íw#žUbl„C‚«ûn_¢®gË×#†æIÞ¶ˆóê‚u˜ä]U`‘:½ÌLå•LÎÖ”ëÞ[™ fÁxzZâ‹—Ì©LbdÂvÖ%²Õð¶Í®† ¸u¡£7—æ½ÒóWqëÇÔ$‚[R¼=5kLEI!g²ÍïÈU¹Þ/Ú"m™ºÊo¥ÓcÁ ”³»ñJÐö²j]tL;_1—¤ù%¸ÆT†ÐH„ i^Ô· ":˜ÏïzdÈW Fa/:e.dÅõ ýêÈfcösø´u0é­[”èH7}óYÃaÆ ˆ‚DXš…]x¤oc ÕpÊëµ9t™êÒ‡{6•9©AÌ]^}cáôi\íö—ðXQ¥©&²2N¹z#ø£BòÞT*­IaIZÕßÁ®i‚ÀY·¨‰QÑx"à‘$-Ìà·a ?n‡ê÷IR¿5½z°­§X-W¶YðëWúÈHãºtRì»Oz°ê)@ÍÝÈODž)KptÕ½aðý Å‘ØøAñSOïj³cŸQ#¸!IUë3QÙ<ÓG,ˆÎNY¾Øæf™ùËië—õíš(ÖîzÁïžaªG°uMk|çÚ±Ór8O™B(kEŒAÐTCI°À—ƒ©¨ÍÚie™¦Rån’t;«iRšiF0å,=Ù@nëwäf¥€heȹzÂ…×Z[@>bc^Òêù§¼UtoT~K¿O»õ5s'~{À«}qšÆBÚ.¤ÅuE§²JšU×X§RzÍŽá‚àn«ÅôL»·ï[¥ÙÝžEP]õyL ³U`§x—ŸèBû‹†3¢òªÌƒW‹Èä,„®/ŠcC¬Ù™›ôY¢áàGÃ/’Þ5CDîºlÚ ¨Œ_>,Í.ᬖš†Ô '+Ö9Ö ö«ØqvÈ\’uhwÆ@Z‰žð™ŽËœàÞ«VߺA…çî‘þt¢dÙfÐWÐmÿxòŒ<ñxùZÞpâG½ž†t„Û-\jᤓ‹Y}ÜÆM<Š×d¼7Pß÷öÈE¾®¦¢YËŽëÔ“ p ŸåDr|S¼AÔƒ´¸Ûoïx¥·{¼{!äL‡”Æ1 R~íÓ¸µöEO«¡©&Éd›üŽß›Y%8R„iõx ðÍãHÈÇ"€+jÖ¶$À™ q$•ôŽ^ŠºZÿÃQâÄ‹ '~F»V·ž¼@—ôïwEÒ•\*ìap%Íëo¿âs¥˜Á·BŒ$IãÊ>Ðà‹Þ{ñ éȸt_ æ†Ò5’kóaKRvî%Y=¤qÂ:sŽÉ×9ú~íOW´Wi`C`ìC¥&?Ðâ΀E *çCdxßæj ª*T®¹[¥—w«áÉíß™:×MüÃ6AsYúës7Í˺Aÿ]‡ª{Ò™½iÀu¹—¨µÛm‚ÆnéTÞb†q"fyÿsñh,䃞ÿ±è%å\`xÛƒB5Š0MîHàª@Ìø ªàáF8[s#²VLüwÁÓ[»¨ Ë=bú¦EA8³¹ ¢i=î‚eH"ö·<º^^sA‹ ùÑÏ®(ýïy´fãQS²g•Òó¦D‰fqÍ’Æ54§ÃYŸæY[õóÛ%›:G9RZí¤WöÌF¼«dZÔÔÕV§xxnôlnøC¿…ùLbdFoht© o¬Mà[ˆ3ÖF‘uÎ ‰Xäí;&¦>rb{ â!jsV-²´Ëˆ•dQ¼syk5Ë(°‰A°¦0 ÷µ²Ñ("¾QøÙ$#‰w“w-îž’¿lìZäÚü(œwF [–z#ØøÚéV‹ò±\½aÄï˜8ÖtÐñ?K¢Ç»Ö+…‡Y‘â@®B?ÀS‚Õ¦ÄhÜÓkëpGüì&ê‘ø€ü{ž¼3SÁ9a‚=k‰ý“•e¢àœcX`¥J(§Ãâ¥ÀÉ+›hšFZ ]Öa!üaØþ~FCžÚ¦‰™0ÐlsG¨üàäà'Yâþ'²†XrÉÒнÊG¦_›Ãà® éÄ.m¨hâÑíý{\ÁÑd’¸?Là&}ÛqÄòÕr´Pß«d#>yvÓr/×ó[ÙXæën~ïлu2¬.ªÝwèL[Þ§ãVYá$þ³¹WKETÅzcP$8i‡Æ’­ëÀtñÊÝèÏâ½KˆiO]Òú#úìé3E}ŒÈÃ1;d]ªT£¢R•æÆ}(ò#N2²\gÂuº73P»‰‰Ð%ey©×ðÍWräJ:ӻʩ†JñëàùœÝ‚¦/©]ó—Ä|Ú€v í‚‹ùËšhgx0+SH¾"¸¨CÑ¢¶²lwõp¶[ÈFŸ±2¢¦SÏ•ëȸ˜$Öª29¡¬ù-IZð7‚Ô¶LJéÌ&¥€k?ÎG9C®VޱU6¶kCŒòÜ-¹;INFyôC 9Áuýþ*ï‰vç„¡³ÇÐ µ¦¤ñ~Õ3þ"ª©øi‘A·:9)ú¼®²‰ˆªÝ®Pç×V‚Œ*rLú½°0}öãewgrÎ, @­Ÿµ@}Ë´ãYÖMœ¢Àœ–-D]qY˜<Õ˜¥¸Ìå»×Ã`mKÊ[âX¦ùq€hò}üjkiv>~—¶l­°ç(å7TüJXjzø¡æ.e3š‘UùùS‡ÍiýA ²5”5_P_Ö6KFafríÖ'àà·ö»!sgÙ²÷&-ú08N‘E ,dEªÚ¹œsD0wn0–R³ñº¹>/RŠf%“…ÃvùèÇïÉ–›Šƒ™q[ŽGòÓ™MÒöxê26*ö™Ä£ÇXÐs(59ÓºuTŽ "®ÆæðUu4×Â?/»nŠÖ„*“v4 ÌòBtÑçvñÉØjž‡9æuà$޼RoƒŽÚð=š‰§¡Õo„ÈìgÇ›€zÀNqVnÅM ]=Çe<è›eÚèúÙË_<ÞvGbA\äOòªÓ½!•Y+íX¹ÒοвW†­Žµ@ßßã)ÓõÕùxIN-,M{e6‹ Uh(Ï‘B¢cJhá‘ÇiØ»›SätV+ùÓD¡YwãÚlž•yœ1ÒݻĘýÒXW³Yö&[ +G•FwZ=!ËìÅ¢OË:ÆIvVìäžÚþù/¶­‡ƒdôÏÔØPÑ„«Q±UVLvÓä¨j<„ŸÓÝ*д±Ks“¬í“ÏZ‰/µÓ¶vˬoòҼﺃ\[MÅ »¦Kè~p19¦¥è˜ ï>Ø÷ÆGÖã±í.Pö;ªÒÑQ’ØtÀa #ÀÃ_1G­¬£§dÐP¥Š¯m°‰Ïà ¿+p³B–,øƒŠVÍú]çKÜOi–A–@±¾·åcv½U:2–¡Ñ÷’´¢Ýwë¨P; ×Ç.¦¬·Åý 5X™C²)לWüáFQ¦´PÎ}')޲˜Gµq³Äì’†”¥˜DÕØL$Ójkö…,9IÔôP ~ýgï€âÙýÈV{Ê +븕·#wCÊBXÖîãE™ß#'ÖK åènÔ¿ÆÅi/{í¤B8l£ùËλ÷;†HÞìà6û·(ÔîÓç_ýbl°®ûô¼2RК…Å÷¬[íQe õ^¬è¾mŽ âÍ2 õS:z0˜ð*ìŸb‘"À9Àc;(“}•‚q.WJýy*ˆ¶yZûÎ…îǯú—G“B§Î­Ú%ˆ–×ç ´6ýanlÒ–‹OGTúF¶î ‹â¦ÄÕ«nœÖªxGŠ©dZ43M÷ë{^ŽÌAívø¢$5mû f —»özŸ)-s—Ü´;бÈS–.·tû%\1oÚš¦Þ€tK-²¬d˜!>|/m‹ÓyÜìÅJ¼æ®¿ –;û}!¿]'‚ʯÿùå¸c98|SRÄY˲Ç/É–ÅMZyÌÛB¡‚rÿ:£¡T›L¡8Qr” ³ƒp ~wpcêÆ÷Œ>ð1ø7¨N|ëMÇÆán敞ä|G “–PI)ý2çÀ™ƒÉ‘$o&@ù_Zd€å>á—u‰·ôôPCÉ9Å6üM kzÆfê}šêv¯ÕýR–ìÁE"h3çÄ,-o8öÓ™²<\eyâP¦[(ü½ˆ®3fa‘­ü þï+p¡sYyðÞWÞÃ÷ÇÆN.ª~l k@Ñ.±#¦R2©fÓèáSêŸë(ýÙÂÈ»û…òæÄÆ·5¸Âl''Ÿ Š«ð†žPª"ÿ<µÐ5 ·\lÞ"— ë„ÿ*^d&¯4ݾË]îæ!»¢ˆ,0}¼ ¯ß=–I¯§YŠtIS å;ÿV è—Ëh(¢‰QàIìvO2fU_µïRúˆ•X§¤‚jµ¶-Îrf2+ÂÃÚ9¤­UXšÞ€¥ý/O„ýw6ÜP²,šCíX¿|µ:)b9¯uÙXô·2Q)4'(‘£Sª'î¡” Œ.Àé¯mø›>+^£e!’:¼ÍýbFol_GÉŠ5zXœ³«ýòÎñ悟f…q"më9ýϧ.µŒ†¸ªÑ},"¦©ÙrrnÐâ/]Vœæ|”(Q¨_kŽÞ%>Ùe…MºÎ"È£•ß6²[ºEž_´WöºÅ+dUFúž®ù‚t¸4Qñý°a_âxÍ‹¢4ª¸:M)½CÕgÉ2 &t+À²jñ MšÚ#\¼@q4–×Pᦠ%CJ‚ïT]©›G}†y«å>#d6=mv²\®tN.éšñ-ÊÛÅ-pSä1J~X+ös¶8¤íSfÔ‚h÷ÄÖ;êžâUqì˜Ó‰T«lÜp¨Cl7•­Cj2¸X)µÅ0ù„Ëý,F=VuØtÃO¨êà öÃÚ‘ÇØÎZâ.ÈÂüâõè\ÉìWyÜrôŠ¿ MÆvÜ}ýÂÿÓ«ÿÁÒÒßÊê19· ï2‘œG}ËjN¾(1{ä‹{AB·{ݶùŽO¦‰‰·M[ÆÊCA¢ø ø}Üæöš²FÈ^“­,i~kL˜58Ëú®¸ü*ÿ ­k¤Ñ•%?èÌZŠÄÛ^½’­àw4ÌßëïC¢»(ðèEÅ^±Œ#‚Ó[ÈŨoq°XŸJÏ£ÅG#Ä,í"ٴ˲¼Ã=¬üE±ø5g|5x™™¬£g< U' ®›RyÒ¶§EY i‰S@Äå èÚÉË`nF1Þ%y9ª™¥¸?¢H–ÙKG Ñ„L¡æf8uIäuïªÚdxÍî=>D®o v²œkJå`kýøt…J²õGî‘´ɸ Ö°B¨\ª’“-¶)_Öw)Œã MÚø.MøN2v½™9RÁ§ì@€ã¯‚·o¼ßx;ˆÂSñÆÜ™c³LÝ<Ü-¯‡­¨Fóò¦Vz×™à3Þùy³AÙíÁõà.~µ4}|Á“•?\óF¨âL¯¹µÈñ § rX°äËgB ¨Þ.N*“úÐ<«VAÒÅ{){Á9!¢ÂGö$¿ˆ¢S}Ÿ³žˆL “D„§‰9âT9§Û¬³xî-ã·Èò`vSr57˜½YN„³Æµš¢Þõ§Ÿ¶K:Èæ«F.ŽäÛøúƒËq°íJ*ß.Ý™RÆ×ôÖM íqÆÎŒ%š˜¦¹×©Õ—²a²%—>câapå"Ahª»œSC|ßç”|uÜ«|ÓËé1ÓLà ñ»íà }\â<%S÷UG´µÞÝÉ}wÓyKögl+4È× ,ÊôÞƒÄZö„Æ`•wnÖ;ø±þï~j‰§îø…NŽ9§]XW-=C:Å4Ï Ç¢~¼švýáŒM´Ò6˜æ}x·¶tÇÀ»BÏAÛÕ_ó(î>˜·üÝ¿Š‹µìoÍèÎZœŽq= Ï®;œ$úß^jä,æ«Ô¼Î×ÅÙ‘ÐQJ¢áK(FmưRë‹Ä=Oþ¢ä¯qG„™õB<òÀn`ØF椶öŒ°Å"‘tÛÄvù.á¨o”>³ç ¡m6¶íŒPYW{ØC&©j ¢_è—Pµ›îXø dÅçÃNdG ©÷ÍÂוœâ#¼Û”y$è]ß½N6–JÓ”IYl.2æ݃ò?Έi$aÒ·œYñèÚ^hkÉ”ÿN&õÁz#Y TŠmFÖ‹kú„êPöµüž´Ó¿GZQT•5%ªß/¢Ù F¦ Ü`Ìåz\2VWt/ÔòÖ:ê1»YÞªAż }vO”6“ÍhnÎÏÄö=éÒM_ü¦¯QŠåˆ¬/ñÊüß9¾— XÖÈ™¼î-‰\ç¥É=™`>÷•ïXž,\ŒD +™1C·AT Ú“$Z†b^E›žqPÜ Ö§{þôb¥)ª7ßA_—Ö’$Áx¤kéU`«‹ñÃzÜÆÑ."ÈâÅÓŸ•I=‰S™9ƒʤ¶ZÛèdCp*ê +Ø(D~`¾\{·Œš(£ÓLöe%…Àš£L/ ƒMŒ¼'=àávðÄ&F¹…£±~ÅÜÊg‚–ôBŒ+Pα˜™½Bê½bnÜ9Gð…ŽœI^Iª­LGS%wÞD=kÏ‚ÌÉŠ«1iz‚“¿úÛWkÔþ3'Ìjâøê=~v;>ñö˜øá,a]ŸÍV¿Š÷©æ°4u­üÅçÝûqS 4âîØ‹~˜ÎóéÐ\œÚA1;’˜J›©ëî:g{îÆª½´^.ñjbôaší\$ ‘Ýó"=ƒ(Ê&ïE¶ér%w±xÖìýÃOß;“ªIDQè7náÑJçA¯ÄWõ[ª, :è{½ía^Æé³¶ëámOüèÛ¿‚'D¥Ø›óH¯qÆy~NG˜mã&çÔKá ÏðH;“'çH/ŽNõVQQi\°¢À “ú¡iª¼‘èûiŒquX-¼ÛÃjÜøÌ…¶zá(HôÂRnf¾äÕÚ6R.;ÓªEo˜Z\2\„'½ºØ\0á<‘O~OÕÌ^¦JÅ_¦„ÝË cj›â<}âÖ„3•p¾\_DŸ“ê½ëwù³Éź}ésl]¤a£R‹V**1„ZZá©ë¼fM/}R&$‰ôŒ„íHxîÓ­ìLŸýuá‹Q'sÿA±>Ë´b7|.ûûà⑹ ¯ž6+7 åâ%`7ý0SC-ÂeÓËTÎü‡¾+9Gü‰”)9˜V•¥DœIêi>VuèÏt,¼Ùü»«ætÛ.Õo,ÅD¡ü×Ï Tæ!§ðVaD8ê…HàmüÜœæx‘ðåÑŽký~Ê Ýbÿ†3³W¸Œ"G 3ÈÖ `åvCkë´ˆ~î€¥ê ˜—..têã“ýÆÜ°bZ•ð˜†ÔIKN?úÔ‚‘.ÓýX‘+¾QT0 Á ÊjÆ9%]ˆáѬÀ6.ްV¼Y‹¯Le°/Xtl5½ ÄKbãÞ– \DÄÈ-ŠóÁE¸ îeâ¤Æú&aØ¥»¶R¥CÎO‘RöBæ)"y¶êrÈ1m3ƒës˜¿‰@k×SkaíŒz ûÖ•Ì!bÒ„å®>uQàV¼8í¦"qItÁJ}0Áèš«E¸ØùÈ¡sñ&ØB‘ŠO–?Œ„œ»R¤ŒÓòRÕ>è²ÍÞÛ •x˜§B 3IÒœQ6ÌØcÊ·½©úX‡PUí¡Í>5Êqßèõ sà<׿t£¦lÙ¨)5—Òi`éjy¨$ºÎ0-N ë$ŽÝ’\…GÌI‹?𳏫8£\à×É2p_o‰ÝAɤ3ÝûÉ—pT($踹Ã?3@ä¸Ç¹vD³ììÈi–\w™ÿì5ƒ]ÞP¯1óV› ‡°ü²–Š/ -Â}% ‹ÿ¹1–öÛ¾=fü}Þ»ƒd5†ýJyYs!0–߆,­IŽÈò, €ùõþp^Y‘öoháÑÇS€`&ÕÞ{Œ_|ƒÛÞµ,r2ù T4á¤Î½¢$&òb÷ÂÏr¾ F3iæ·ß³Šžqª|b5;õ> ª€j¾ßcÒSíž…^¤žÔ(å7´µ #ýζ‚Ù#à¬î,}î#8¤¢ùþå)Yr¥Ÿ«žGEªFL{ »¹¡Hap|JŽ¢Á-/¾ìa–^øOä–§K´à7TQÏÓÌ+oËvN«ë›ƒMZa¡°*t‰Ô_¿ûzÐz/ð ÌÛÛ3'ïKfµÊ†Yµ\¹iíí…gãA&ú<6ÔxŠLÔ«K@tàOÆx£ÞusE–FÀÜÏa\ÀèìYn ËH¡wu­ô~ µµ{>…¤@lÍ»èOÓH:Á2øéëƒ ÕméuÂf G‚ R”'ÏǧKÁ<8.\Äá—ªBIña5ñZÌnªñoiÉùcNO>dÛû'¦s3íø!éW›ˆÞÆ×þ4ee6ÚŽëûþ¹‹©”.ÀJQu)ïxÒÂÔ‰ºY™|kžˆŠ„ȵ½HF0öòtã€-S®=Ðjž;uõ‚x˜`Ë¡lå Öá{ðgœÃË_ûp!—¤®½Á‘ad.ùö»{f<]ìÇ©n¦i! Îû§¸ÐÀV©Q\Çh|Çÿ$Ž ‚}ä¯D­¬_§³ñKÿm“Æc¥It°4:)ÛŒ~ÀØOÄrŒ;’’x¨ŠÛѓܒbÆScCÀà­I´^‹É±ü»)C¾šn2 ‡«°ýw¯ñàq»ã{¯72˜öJÔ£¢ûáhy&°–g°Š\‘Aï±?l^ëCÝ-sæ<ä‘ÀƒÓ5óÓ@÷¶`ê6à­»i#l/Ý ¦Fbwëòr­‚ÊÁî~|ë sÁ˜wÿŒ²ŠÿDv è Á;IéX uÚŠœô’^¦C©È’hï»snÿseg¬Ì x½¾þcÚuÜFRÃõ¯¾Zdb)6[ 1 +$uÃÞW§cq—pâ‰aÛwn\Å~"«õu·GSÉwrãpˆäÞó†à­ÕPsærw—ÆEݘ÷niWMŠIÖ²¸¹6—1ÝN.ÖqÙëè²» i£’n¿ н@©I1~dEУtS²?ð(.!“ñeA^lVö¿prÛV6Ÿ'n]>'^›?]tEðßK•õºZ¶².Û è#™_f¥Ñ¨+=¬UãIØwü:ôe × d%Ã×Ô—),ô¸tˆdºYKaàÌ•ˆgUùVT¤¦»9; +4ËÃw’tSãRâxó¦JëG˜`Å’´4–íé|ÑŸ2𘦈î ÂØÓ>`ªv€"R —ÙƒÉPÇ‘ÄÖZÃ8<Ç#Ò ‹-• %ÄŽôtS¤6)ÍÈO¹SC•5 ‹eœWÞÅD9ý {Wú@'[Ð,“Ìj[©¯²ÐrÝ#Ì!]¼t®–4Ô™[Ï»wè¯gSÛ%T½5ãQùP6 ÛwɰófCEv!¶ó¡RèímŠ7°áDöY;•yúÞÓ:c ÉW^Q4ŠLæ_"TåÉ߉å=ÎÞœ¦~†6›ÚÖ¦˜Äïgý„;%J3-åÖ­©qÑ<ä¿EÀ¹¶ç*ßÑOîbÜ®©‡ôz9¶Øþ?Ý&Üç endstream endobj 4262 0 obj << /Length1 1625 /Length2 12465 /Length3 0 /Length 13308 /Filter /FlateDecode >> stream xÚ­ueTœ]—%Á]ƒ-Ü‚»»»K…»»‡àîww Áƒ»»‡!ï7Ý=ë›þ5Ó?j­çž}î>ûÈ=EN¬¨B/djg ·³u¦gf`âȃlŒ]œTŒleé…í¬MEìlM;<9¹ˆ#ÐÈdg+jä ähM¢@ €™‹‹ ž bgïá2·pP©)kPÓÒÒý—å¯ ÀØã?›N s[ÅLJ+ÐÚÎÞhëüAñÿ|Q8[f k @DAQKJ^@%!¯Ú¬Š.ÆÖ €,Èh뤘Ù9¬ÿu˜|d ú›šÃ—Ààd4}\º›íÿBt{ £ ÈÉéãr˜;Ù:ÔÀÙ²5±v1ý+àÃnf÷ {G»›ìƒLÑÎÉÙÉÄdï øˆª(*þ/ÎFÎc;>`€Ù‡§©‰Ëß”þÁ>h>Pg#­Àèîü7–1` r²·6òøˆýAfïúG†‹ÈÖü¿ÐæFަÖ@'§šî¿Õù¯<ÿGöFööÖÿܶûÇë?5€œ€Öf ðÌ,1Mœ?b›ƒláÿ‹”­™€™é_vSûÿÀ\ŽÿˆêïÌPˆ02µ³µö˜Íàåíœ?B¨þߺÌð?×äÿÿ4ø¤½ÿÍý÷ýøÿ÷=ÿ;µ¸‹µµ¼‘ÍÇükÉ>¶Œ@ðwÏþ.š¿‚Mÿ¯[F6 kÿæÞ¿;jÿ¥õ/Ý¿cRÎF²5ÿh Ó¿Œ 'q;ÐTälb03²þ¨Ö?vµ%ŽÖ [àGWÿ)(€ž™‰éß0U ‰•íßò³ÿ ~,ÊSþѨt3 «ij iÒþw»õOÅpVõ°ÿ÷¿s‘³3ýÏÃ_aa;w€=3+€ž•‰Àù±v¹8Ø}þ›ÿð0ÿ×YÎÈÙäÐùÈ›‰ùŸìÿ÷ï¿NzÿF#fkbgúwhTœlM?æì? aGÇöþóô?²þó?ºMà—ìLx‚-S3Òœk°sÇEuúz˜!Cì‹ëU óý«ìºýRÃ6¹Ê _ªC&¹ßZ=æí_w¥iö†{°¬)»“çyø>¤Ô½ùhkí´{ŒúÅHi'Q^s²Ú_™Ô÷¶Æ•”õ¼@L¶³:Â^ÜSû“ºæû&ûcìk’R‹ÙÚ†^Sp|B‘pxÿ‡r`dhðg÷Tï.mv,9¶oÒ1q¢³‡¡ãm½ÉÔ“ëW™›‡èÀ6Œ§rºÇJ‹—¦;zîµ’¬$&oÕ!ž uE  ÈÕ(‰;UãuF¥V2é@duÊö¡ œ4e†¯ÚÔù#³ÐŸqñð ÜhõYÿI¸o³p|”ê8ëæ¥gkÇà˜Þh§yr2éÀ‹³H3ìåme¿!.Ƥ5¥'ÙTOB‹åD™L«ß"°Œ‘VEÀ¥%æG;ýb,Adºó>„4…íÒ÷Im2ë’|1¿ñ Òn;8îµèeÿ¬‚Þ,ö?ÌÉ9Ù¢5†Vý]Á²ÌÓyA$tn\á çbÏ{ZjYò.ÎÎ&—»wº éÂhÈËz›®½XÆs):ÜpÖZ.Þ[YÍ)cç1!(ó•fà€÷ÐòÍEÜ¢¨o ø¦4½­ƒ˜ä!ÜhÝ µµ.¸Ö¶¼ã’âH)Råk/볦¼ýzu–¥ÿ1²dÐNÎ-ë+6k#±Õ§%¬9‚%¾Š—‹]>+´‰²žMã"?vþEV’,AÙRgN$e¦pô)i~­w© K HôäúM÷lŒ¦¥ÑmÅ,-lpHî§ìê«–SHžëŸ£­bÿ‰­3±0ñ6Z]ŒÒ²ÎïÞ «µçKõ =ð²î”&Ü—±Ï0oD‚/ôGuµ¬åy‚„7\ÄyË ‡ÌMâ ¬«ùÕ…%òJ¿Vvh–ê .o5/ê÷0ÈË…+JÂÑ™‰.Dâi'£¨}å"‚gסmâ‘ø—½žÇKŽÒ!t(¦´ï¿H©BK<Á47åN]$ˆf,“¦¼÷Ï×k›³vè†.yVmò0â|)ñˆ¸ÚçñMèY±÷æ´ST§U¾ÚÍ%= ã•„v ÖÞ—64få£EGÜÂÚTkêFNÎÓ“#ü$ÂÍVŠðëðšFéQ¯J½åÇÑÅ ΊaQkõ?/Ï, ¼ÿÕ\nþãlc Ü~ˆ7Ê€M_[ØÚÝçÄÉ|‹Õ ‹B“ œ©ã…AÒe…Î-*ì™ä¨AÙóäRG¸¤€K´ €‡Ìáå.–š!5$áÊÅXY>TLþ‰ÄHw,†C[«qʤ:©P÷ÆœÕbì=0ÂÞ‰fØÙiÖN)îØûŠHbzœ³úÔP’×ènƒK“…Nr®fQ¡’A3]¿xqü g Ò„ÂÕ5ÔÚKŸHZÈ~f~ —&''€CÉ •‚Ñß3΀ܗVLºå"vñ²»¥WÍÓ˜ÛŽ•ýZ¹sWP }ä~ª¢á¯1{ÀÄüÝ ä$o‹(ÅBOÌwå‡çÄâQ)K‚1/(ѽô™Ng€½]“¿÷KoƒK¦Vþ˜ºØ:T‚Ecõ‰¹úÍ7óLµAô#˜;OÔÈÏØ [f\/ñýlmöy‘RÇý ¡FºÌ›8¼›?º9­ä,N•) ¼`#!½¿!™ù© /ëC}×á¡C!ºYÞ*¥cÇxÐÚñ‰„«KúÒ|ß ÁKMù|!®i1×`w $È;!_°ÑûbDM6M²²êQ¢ñðĵÅ=9 :d^ƒKTRŽo ¯h5{7—hÑz?ùÀy5tÇœa¢ qy5ØC·»—æ6Í‹¢G†<Ž-µ2 ¤Ù……â^ðX¦¿ p« -îô‰ï[(ÁõTË¡íÒ1EÌ×ÔNƒØÌLþ<ƒ»–|UoÖcÌó{ÁÐ8·šã¬*¡b …<–îÍ=6¶(u¶óö½;"Ò‰W|=ÔåþH2akâ•2I^uD ú¶$}øH ø=—BÂýN©Ø¿È¯d²Ì0 ¥è6ÑXBœR%Y©0Ñ£¡ŽŒ¯wX“סXP+ùj»|’„狟ÐÞóÂlGèvÍá¾ú”=Y²3|X?:äsaP‘WÞ o>È]€ÓõD RŠˆrq,²Î5d½9¥/â±è‡.ß²ëÒ›ñ0x*X0ðyI­ÙË Yh¿g/‘»¥smW^'6*ÉsJø¦ác¾¶6ÌKô9Î\ýe½Å«¤08³Ÿ²®•ßZOadi%žÔ/|[w°Æ ÃîAc¥ý(ÍÕ&L®Êdö€œÒ2u¤¢Æç©(!ÙR Ô§¦áéæÈäHYzÝ'„\Š˜¼k5åÀÊ«¾%¸,ƒ0W¡S”r„øf lŠˆ°&üýS“DŠ‚6?r~RŽýÖOq73“Ú!Àoa¸^š9ȉ¥k_ ¸æg¸Á ,ÁÞ>w\ô^Ù»!P.¦<$ -Tû!ŠF ô(¨å_¸§=Ä‚}ã`©‚##yPƒÞ#ªÄìÓ| 5$æ4—M†¾Hû¶‘*¯SË„îJæÝÌžÓB®Êvm›&$`"ê›ö-`±Ú<æÿdÐ"äøý—ÈÊ¢àû傎OÜù#‰ÍNg‚]Ür!àE”žÛ51w•CÀ½¬>ú ÔÄTk"˜0%À×ÒPNŸ˜d‹ìïÄRÂ) j !yXÒTžQQ¡™;m-áÅFkû¢Õ£ßLÌ`¬s_¯âVH LU Lj€Y)Ø—í²ò‘ŸÞ+¼Â÷É•º~ˆ~ÃCëgNš7.Æx¼Ùb‰|ô¼¦¦=¿V3¥<ïéÄ, Ÿ&ÎrïR8ewž¯b [;ª"®ÞÃûœíw°D5W»®´ÌÝD'3ô<#‘<í±,Kè§ëµ{q—¥VpœeF½éN^膽Vû3®':ôx@\b Á¸oÁÐð 3dªÎ ¢<òS!ø·zÒ8A\æÛl•Ø`Mù•°Œ5UÛqÐFéÝò•—T +ØÝ ŒdJN遼iÅ1dH¬G™Þè4%„G÷,hV±³70¾/n… w›ÙB‘½iÑz®2 …åà—³²uaa ¶¹}‘1)7-NØ æ„Í'"%Ù^Ùì!^±¦<Ý!\]ïÚÊ’îsaC€Kû…ƒs`Mì9R¸º1¥ âb‚.&©oÜ–ûöm"õgb³œÄ/é ² ÛôêGžƒü kã¡)–5ðÜ$¼@joeãŠ2È—q‘ðã¤êtWÏ‚Ò]ʸ‡Ú/ ¾E7Óµ-R†—ÏÁž-npes/ý 膜$xãjý®r•ó7?Mo|é&Á*ç–%²Ý˜˜c¯r"ßÇþž}A1ã~Gž?û„¼ü¨ëäU_`L¿³e^óQ4xe66˜zWÂJ+]×»Õ²Fˆ‰…Êô‘âRÎ[qïWŠý®æßéXkžÆ½íÀzñwš9·v­*w1¼ª“Â'‚H$gȾ3ºíõaüÆR^Š¿>}>MÖsB¿­×ì ‡Jû¡¾.ƒD]V ‹=D ³ ±ÛyÃ:eÕ›Çm}&üðþûóÚ³qÔ㞨kÃ/¾ØËU¯8a/*Í«mCdº»N̫̎½G­%£óßC»?›Ï)òͬ  zç¶ý„÷ªÁüÜ™Zkb¶¢ò"Pàñ¬»2Ágê‹Ø8êBj/™Qù…ùJUÿ7ªMT–ÏÃa­ËìE¸z‹…ä9Ÿ;“Æé÷VŒf:¥}3=:“W3>Ä„fõêý¾ªý½?å'µg¨‡ ÍégT[:jü\ÞR’KþœÉï±ø[IþŸ‰ë^ZKT×|>µp¹ƒ2ˆn8<䩾~*ú…/ôÔ‹}9À©„ïç¡îGsËì¾lÞüÍx)Šš‡AM7öÆŠ¾9Ö|#÷õ4Fôû.$^¸HJ½6Œº›M2ãPú]?Nê ýN"þÛ ñufD³oq‹~á[¯ÿãOœThŒ aóJz’~¿ß‰wK®¹ÙÙåìz[8X†§ñFùÉÅ¿Êî³Te_ç®ÍÒÿ0Ã8Áþ>®;î^Ù¸ûæi¤ì¨’ÓìO9ô2îG‘Ê5Ù9@Ù]¶%²Ç f\z´€ÙÂñúÖá_>ˑۛ9rìòe_­R‰´ À©2ü‚ä0q£ÝâóûQôÝÛb¡ >6ZæWXŠÒŽÆ!u–`¸üOôU‚B* îSµx]‹šl¿wッÞK¥-B=l\7(?…\w9M›©å³ô8S;3ôìI’"ÖÒÕä­£ó¥\]cÂÔ–¢(Ìl©íþÝIg‹åq&ïÌÕ\“Z¯]¶™þA•Ùiø›œ„…ÐvÌÈîBgÚý·d?†»[”Ï"ùתo‰‡½g¨ÀNzîŠyfœtNfúÈÈk9“’ÅŽXxᢠ,tÚÀºû¶æ¤©ŸÎ.ÜÚg‹á Ç„¾±&â³îA C­T;4ÔNc;U åw²IPcÈj¾zz$˜š¾œð |-ñÒdIx·,TCªC¤@G¢8%¤™@®ßEèzU¿Í?æ `uÄÃe­^ѳñFÚÕö%Xü™Ì˜¯·ÕögyÙlDlFRðåWvÜó9I§ÒIHðo¨q˜óÕ:}«–iôø„ ʺÌwN‹Rêe7¼’&“8þ½½NºÎ×¼Taðغb½Û'q_Õ9”aãÙý¼Ì¨ ‘(H+€óÇÿ”ÊyÊ9êÔeàƒj T¬„Ë™;k}¥õög±ߨEF¼°8•}”`ÙÊBs~£… é<{DÇôµ= ”PW‡‚ÅxÄ©\—9J÷©Þ ›Ääâæ5¬I¥ÏMŒ!iÁZ®$Êi’¯üÞŽN¤SqU®µ6.&‡uæzg­t’ c½$bû¿Ì*§ãLÎô§¢h­fÓÞr@äœ2/Êsn»ªÎœéGœÒ¡`]çv&ÓXïÒZd¤öñcJ³ˆÙ!¤ 4¹CC—-(7½+ 4 Û×YV]ž¤¤“àÍ[´rw]-ÅüÂi€›éÎBÜC-uœ˜„«±í‹U(ÞèO¤¿cî¤rÓUkýÅ=­„Þ0¸køÝ¢á0›`ro@åôVv+!ñö¢…sÎ…;ÎÐ¥£ŽöÇÄOoˆú õ6Ù+/  ²Š¿ÖºM>cš­wi¶ë˜I|öÍû,‚²Èì&zÈ(ú U%ó[ÄÉé—›<¾Uô·ßÈZûãäÞÆ_ê3­ß¨W)¯RÁpH­8ä?ˇÛe¢FïH©@¤¢G½ï{–¯ÑJpö¦Ó ¾eã|Ãi}­¤ub4 ÑGè)TMæoöD˜[Äô‹³ê|½Žw§üÕ³ñ¹\â}RÏ]g².Å•±q@ÙMaÑßÓBU#§äiŒH{-šúÒ—‹óåì{”ºœ‡Âr>÷ò>Xv9º¡•‹RV=nK9*r•îâFѺܰ^~J—¿PQùð*Ýk6Ñ«¶å&mdÒÃ|‚Á&‚‰ãr× oü&b:I‚¸ƒ†ÒQ×H[¡ÊÍ´šÉM‹LË%ff—Ê®-âe†P1ÞÚEpº·©ÉÙ¤6v´ÝÖV—p`L’¢€äŒ=qÄñ¢¼EÒÎ0ú3ìÆk#ç¸ùA¸l ¶è0-Z·Í¥¼k~ÝxM7ûÃ…1X"[ >/Ò¤pÊÉ6?GNpK…Sše”h–qzý…ù§E78wD¢ÿ •BfÞRÞÍ»ø¤ök¢ê®BÉŒû7;šm”w% †þuë\öŠ­noó´x¶YðTªÊ(at*ÚæÎ5ÑèÅARLCÐ  ŠÒÔ}c=›©AM6õönxë™8¹†.R£œÄR æ‹g˜O?E† ùàƒ%B½`½ÉRŸY¹Uˆã÷Žå ó»UYT²;¤vÔæäįŒáýíP?[˜”:Äaì®~ÈRÝÁ è- µPJÓU6>IG‚¶üZߢøW£ƒq£‰·“è¾{Ðvº 1ï2Zz«1ãèŨKgåEYTmÑ2µY ävæ³ß—ÀèßÝd®Ÿå+ø'Œ©c)¯ŒýJqWÃ,Žô(jy.ËNu RC«0!ø¤ªÛf×r”¯åŸéÕ;7ö'⇤H{:>-0á²T¯Ð;ßͤŠ$DKí[ê{P Þ-¬.Äþç”|/4&D>ä» û~àètœÏÈo§%Õ#è:So¿&sQ¿ÈÖ_(­‚Ï=ðièM|%‘¼âú"²žë‘ªsFy"E‰×,L"ƒú‡2ûŠD? -¬"÷h“N§[á¡Ï"ž Xnø¿6Ñ;ç)¸»°:\e±; EÀUÛ)ŒÃ¤¾7ÃA€¤à6ç€Ï_ùǵ2>þüùi.„Þ‹ÇCÂ9¶dâ¼ËEcx•(­Æ‡ l¼µ7@²ÉaÊD‚±Ž­ämv‰S^V è¾¾¾«›ƒeƒ°Ø ßUí×[3ˆ;åæ?'åÖ¨:êãîôHè!·¹Å”NõHØšÕŠú‰-Zõeó ûw3GW ’ì.$ºÔl S¾¯Ò¬ÿfq½MßýLáÂ8G7+{Dyd™.¹âÃ禬õ ì+™ÂH³h78ÈåJ*7è3‡;];LR*lu‚b;Í&#h›³§#›Ïã<«þÊØóŒ)A4$“îB–šqŠˆéF:ÌNÚ–÷&Îч[U‹gú+õÙ†~ ‡E>J2Q4Þ³{û5éh2tÇ„48bo‹"éÇŠ–Ù? ¸E-ê!ÞÚéå!kBëñ…h¡~„„Bóº¾)÷òflºKæ¹™‘™­ ‚tfcó­š^±bòûPÎy¢–•`ôv°t¾elëÙYê•­šíQ(ÝV›V²èš]br9ö‚(*f‚ P25ßQƒ•„ÍPÔì@q¶dXÍjHÊXeêîJ`®G3¯`ž1©§üÖq-Ÿfô,¾1VÏξàP kÒ?ÇÔ¹Ž…„OÍÓ/‰‹uf¹4doy›Ë=#L65Ï_»:Ge57\0ù ¹¯ö¦vWñà…N¦Æmòw•“½b2 Ÿ æ&˜ JÑ×^ »Ê5זּҧ=/±±Aöæiyvj㫦yA{8Xumßi1µT{øR ‹,=O¯RqÔE3Ú(Åu&üÐx3ñÐ,ÖõNQ럶ôu ¿7½±¨MfR»å 8°õ éß0QôÖN·3þ‘¥ŽF#αw"Ð ’ªcÉÔöx`ªð÷ÄF>õÎKa÷Y‡æ7ÖÝN$ÍËÝJšNÃg‹qm2èL¸ò7÷µZH(ºœKvf@ô~VQ¢ÜöýÊ#—ÈÙ7/ôé×üäª8Pv"úeÖ. fû¼}ôxíÅ.O4Ø3@q$\ðjœæýð3;ðBXTÚÙ¸Þ9íP€Š$Z,šõ<ñWh!Æ&•!à§)-jzQ&d©k;Ôe%K"Shý„ÎǤ¹úI ^KD#]`/Ÿ”–L÷Îæëúß'0©©„N=ÜD¬:š<' „èV j¬ÖOC9ï”2òø¥z|޾o-<´µe!Nç4Þ!R¾4Áã ýÂ{?·2jDŠ[hy §’R÷ {ZÐh!<³:²•òj%ÔíËÅq\Rô<3‡„ “,Á0•w®¢ÐÝq÷†²ž+ÉþöˆƒRO€ ¹ê$kNØ[»ë/P’§‹‚—IÊ|á'ºc<õvÿɧñžâNÒ}7‹Ÿirg—Áw•ÌÁÞµ{'ăö’£4*çhÑTíÍ;÷ ó7³U™æ±©Tæijy:xÍWµÃ•¸ÓnUÅ&IžFò ²ý‰†ÆÙ*YÄGåc¤L!×ùŠçèIÚfž>è§üë—Fø,ÓS­Ab”À"G[+‰¬4ì­±§í*s"Ì,E#„Bºëë·ÍÚX<öŸZRºnj¸nôˆ©˜øÃÐ@½/9ú•›Y­¿éŽ… Ä©ÅÔòª´<™IµºN6«§>÷ vmÿ$Ce›ŠÄSœá/v#*§ñõ¤Å\û½HøE­Ç«™BäáÑ?•í”rVÞžâïl>lg2œPÆ[ÜF8|ˆŽ`N=oÔ×ͨ2˜R‰Ó&ñBû6ÞNMHC²Õg\v…¼»„DØ×rà¿´B*²îLQ»ôưVØJçï¼çÏ!$O’áWãIEœqj¥øûˆ–Z/üý)^ õ{5ÑJçºFl¬ïíŒ3:ÜðåÊqƒ­E÷éÎâœB.L£Ž$b‡çM,†qã³Ç³·MU;N?±ÈÕžW뢞ÚK[èä/·$âæ€!KRÓ^¯ÌŸ¨@.×éó)8GóNmv?õkÆ…$Úä°Ôñû17ÝSÞŽù"UºíR6vøà£­‹Ù%{Ê–Ïh¬šXJÂþ2wíE[×Ù@ìÀÎ+"レè`¾4NlP³¿8+$„pG<Èg8}ÖTÍî©N}zÖò¸0øDW:·VK/=s\×såL†ì…?½+÷Uö¡C<(]ùÝÙôHS-IÕõÀa8$o’ö½ÃJ²O2ÐÌ%7ù[OBHaرõ2)¹9»ýȬM^>žPfì4´öB¯±Ùš=}‘œyë7ÊG—eÊÀ­pry—JP­éÜDæÞ1€HI¬ô¢ c\(Øþ³à-PaMÍ)úÄk•{”Ö”¬Kµ)nDÈõ¬™xPàB=$Õˆî v€Mlg;S*ò ý -N‹ôÕô›rô³©þ—ãèƒÎц’i¼äuëìôz詘í.Åm©kæ“üieÕç £~ýïäõN¢Ÿ$¾Iá¯$­b™ÜÔD‹yÞ9…ÇÛ³Å2÷´±?Û>ûÀv˜¡“œ˜wÌœH"¸Ž¥¤l"IG <²Úš1¶Ðñ’¶ j+Ù ÕÝxFXSqî¾ö«Â¡bù¥í´Yc `»!H2vW$Õ™XZ{嫵ڥbõ7l1ÊŠx!éÃëæ‹È¶áiÀ Ì\yü¿Ú¬x: xÒåºïÐA $çÕd*ôö%`¯êõ¨¸TW±QÄ*p|PTâ3 ª HE…?¯O⎠Üþ³„Ì™­Wt–¡ú ° 3ëp”.zIÐ0LÎ_Ww™A©3–¨[—=™1” Š3Ûì5a\ª@áü£³!9Ç<–‰á(…ä°­‹Üs ú5]*({ô;ýh|=»lgÈSÇ2TïS¸'ܹB‚"WÅ.UÊ4iVéÍ4«%%þýdèEpÖÇfÚbÜ–QLà\su@2ã‘ØåfvËéiP â+§X©qÄ¥÷Ón¦m¸F÷KsÿÅ—Ö‘N²DXøcîG ,çå—v(ÙQªq?çRB»H¿`‡öžºüV¾]•îjžØWÄWzg)a‹Lª&p»¸âçMÉ}ßVª¥\’j^ª‡ˆkݯZ‰n̓ƅ¿œËJ—eï(1výyƒ¶_¹Ï+]ÞM“O’'ÜØ¦.‹Y6¡µ¼‡°šxR©òa²‹ó5Fo à¾&àGÆD'Ñ&£à4hÎE„Џ¼é©f›­ ðÆjcîVþ8{8‹TìXÙz˲°É‹¶ÇûÎÑ£?ø›éF¶Áºg}×Á‹AožåM¼Aüç2îÛ !ÃsàôòTæ„_µãsê‰ìR k•Iú5Øê»Êe·¨˜Ë@Õˆu&uY'ºçò9>g¼ò%„¿!Ñè.CÕCÔ*K9™±Xò'TÖ”ÿ&£¨y(ÌHlRÀÚ% ¸k®jŒ=mÁw¸Å€|Á€d)éÚ =«›851 Ãûƒï¡ytŸÐ¿®D<™c·]×DY 5scÏÇsŠ~>ÝñÉÁ3†M_çúý©ñVßÌØÿ99ØØ5ÂéÕyfõ‡Y½«ÚpßÓg824Ž&U`–¯Y·vvüd¡· qq¤RM8Ô;sÃÇŒ±RT6Ì Ï£mÚãåプÂm­[)¼¦wjH£2› ÜQU‘MI†Îƒ>)«P=3‹^ÌËÉÚãæR)è" èZ±%ylù6Ë"˜þ IÑ%͈¨m¢LbkÒÑ®V"B!Ûâa5†­Å?v¿–É$2  BÛVºÌ‘KÐ $Jrqô2]§pIG—r‰&”þH¸ŠömùÒÿp(~ ;¦¸è^ÕÝ÷¡ÖšÃ#¬Í6¨©*C¹X'H‰Ç-Rî3Ûùbs@ Ž´‹]ÑÊ…U‰»ŠEýªx%äWA0ó(ñ Ë·¦z‡åÀS”ÄIW¾œ©ä _å(¤¡A@‰'˜mÿVúÝNG—ÑŸÀíGbú#ʸb÷®²› C8 ¢ÅØf2¦~YÆÏ]à~‚²œ‚¬Y1Fú¿[åX‰Ô ?iØÕÝÜJÇÒƒ3–'Ž‹€w&^©^Ãâ"$=§ßÀÕ4 ²J¹œ#=»»Ï=kn|\<ìªn~ΞN;he‡<ù*Ùþ•ûùx7v¼?Œ~jè³V,ý*™³‘/•­X´ñ(¥e¨ëËëU7„“}I'› ¼`·ú*#óï*ƃH –{N¶‰ÏõBWÒÙ…b4?´‡y\=â¥ò»™–›¨.¿ÿDJw$”Kœ GhÖÚ°bMwÏd`­CQé;ë!´çœß^}ô©³977$£%£Ù}Ûš¥•Ò9å/ Ûä¡åzYo´ÒR¶úf¾mìb°üKwcf݇2gtp¥iKUNd«b…Ö¢Db°~ŠÚ´t‘éˆ{+%å³bÆv}æv^l®´û38•¬ø2nv]J7ëk#²N¨W|©$SuQ$o/̬ùYÍI2VךּMs"þ»o¶’T -'«yQLÕœ+ N­Q –š‰~`bf©ª°Fò;žY0JùOÖ9H£ç †ÅûPÖ%.¿ÐQHö2‘¬é¡œ³?MÐ×ê+ɃæÑ‡M([c?!¢ÊãórA桵|&Á¯G¯bcªoX;!Ö]$©žÒýûÚ¯Ãß`ÞlÒúœW¹+mØòmº]µ3Éâ]$4@=|ô.&·²TÕI=|:8˜ý/8dUhqágYLÊɽ Ç‚£¸UO¶ %š´Ëæp°œá)Æ©jä¶¾F;ÌžkÈþä«(ç×ðÚèQçSØšã¶!HÎaÐ0TT·×ècó5yœr(ãõã2Y¥£´¡ÆÕ ›1}ÆDðßíÕäÞ,²ÓJ"¸ï䋿œ¢Dæ,¦+å€ö0±u›g³K…{•óËÐ"½¤)¶ DúOUž%E€}H‚0èb"Z›Ž§”eÒ·ö=µÉl5+änžïê=­SqÚOµÆóIž+Y›—7h¿©ëgµ#käK ÀP×6óÓzš* ±™T´·¾¢ÄW" gSWÏ™`z½qûx¸eðÕú(⸿ÂÓÛès¾oä t‘Ý+CÅy^ÍcåÏ ;¤~‘Yµ1߀g¸|éý‡„n:îÈô€W¦¼=EQŒC3¼§QÆwNõu™šQöÈõ9}ïÚ‡sâÞ völVBœ]A»=£³Ê{ôÅ1˜ ßÀÃyF#%µü®dçW#BN’~2ÀE¥kâg%{ðä¾®>„|"Ö8 9I‹”о” ¬o«v´"¢ " óª¶ßö ©óÙÿ•JVxOÈf~ÝDN ¸þuSš1v—ÍHükRkåT$óÔP_פ‘óg;ÕíY_”`§† ø2ÈåêqºÊYά²kwêŒÛá¾z9̯׀½ùi£s±’Uª«˜w4Åg¶xƒ½].ìSëÎB\žíCç³ø ½ÒH ÃÖ£0XB]2”`b³Ndz] 9ºB òóÄ´sñB¦¬™9uâ_ë,Rb½Š¦bþîöÉ,ö,G߀pv*ݽU„v©"¾y¡ZsÇ‹¼—5¦S¿ûtßÔÞ+mÉø'¼†#w$¡ía¨M û«åx”§'q2g†ö¶‘_žlŽ…ˆdseÍ[Nìp[W´k„C•’;Æž£Ê{^܈÷ÃŽ_,UÎoݸç£ê¦Γ`•½$ 8×U>ÊÖÃv18•¾[–üàšÏϙå?¾Sì. ÜõFáÞ¸Ï þâ¶°§ÑœÀÅHê5ޤn·}Ì$‹=¥rê ¥ôô¥¢iæ¼ 8ùgò`™³ 鮵ÿÍæf•®Àûµ•©Ý鎯-x´ñ´“ç‚Zß{ñÐÈ^>J¨±nÕnETŸÀ‘}úì ÿPñ.P ªS¸HT½‘¹qo¿ö¶~zV¿ñ'OõO©?[Ìè }S+_&Á "2“Ûþõ­ Õé‘«œèhS¼6Õ²\Ëu„Pø:Š½íŸˆ†CÈË=?ÝÊižSÌ:÷­ÉðFxÂí#‹ýd¬át¤‹PXf d ïÞÏ_ÜñªÁµf@nuÖ˜ŽóÂhuòR HL™* 3K?òŸ'(˜á9¡AÆÚÕ+4W›‹ þ‰™My/m¡%¦ª ifµ“ŒÙ¿`Ò²XQ m@å){ø"ÔJ6L^¸ ’š ^,Šâ² õÇÞ ¾ëz™¡Dò‹gîž«6´ðÀ¯ã:ËrÕãäoéeþJþki[ÜÍ)Æ©À…»Ý®t^¸Áì£2÷¦J8Êï{~¬œGžV¹ÄÍIYÛUn<-¾5û 7y‡³o3äŽnìMs¤–*É¥™útp[ Å~Ysÿ^ͽ™ëI“{; ”‚ ‚AÌ-”6ÚŸ™¥"‚•±‰ý©^<æz…¥miˆ(uî»GͧSŒ1eµ"þ—*{m7¼ÎR1å³½¡Oì`eO<·SINc;4ŠÜbið»ËçiBsrÑeÝv9¬‚»–MÙ#œ^Õ©_ `Û`Ùr‰åÖ2s~Ò}S‰ÅÜ4ä^ûüÛf4µYýçY‘°wI‡/+ZçîÜÖÐ×›‡9U’KÄÜVW}KÔöX¦6v5ŸaOžj“vqÊ#Ù_ñiK¹ä åi´¿5ÇÑR)LÁâÊZå)\H5CÀuS„™I wÂ2É÷Bw Ò¨üt:9Ì’ép’BZ™”uY·Aô Ѷ ¢á<‹drâ>Bå5°¢,=ŠÉG²Zbü:Åûc]ÈP‰í:²©ß8ò«žß'¤×©Ð«kh~›)ÇHª á¾C»8çß§%û½¶páy%¾öþ”‹5ï;C~cÔÚ* S_u1Ẏß›¥ÈŒ{ܳå÷`£eÂxJLÄáç¶³—“oӄ߉;â…¶ž_Kiì…çFÆ‹Ä"6»q{%ÚÀ_Ó†€-êfMŽÊ7ö\ãÆ·JÄQU|¦ »Å5Ë{ˆ•lRÅõ¦!ÎîI²€ánd²¾–—$hh¼$IX͵  x±JË+³)„¼Î-KrKžž‚Îq˺Æû—'È™ææg}ðݽðüÉ父0&ù#Œ4&9¦Hçáì "±€ô3·Îö4z48~Ó`JMa•öZÕPÍPa6Ng¡ôËœ nsV<¨‹JÊ$Ÿ„‡¶Ùà 3‹qðÔÙlu3âØocØ[¡3#kƒ#®0¦°Ý*ú_ÎBÐN iЃuôœûÎqt2츢…BŽ<<Ýmp×½^*•©ÔOú1ÅZ§!av•%]›Ï¨-G¹9þT7ù ÿ/öbX¹ endstream endobj 4264 0 obj << /Length1 1625 /Length2 8019 /Length3 0 /Length 8852 /Filter /FlateDecode >> stream xÚ­WeX”ݺ&¤»D)éf%¤»»s`ZIABé.¥C`H饻Aéð ßÙ{Ÿë;û×9ûÇû^ïzî繟\ëz½¦—”µ“DÞÉÑ• ÈÍ+P‡:X¹¹è€U¹¤`ÖJ® àÄeb’A@@®P'GY+D`±ÈBÀ>>PXX— ã÷B@mí\¬zÚlœÿ’üVXyý¹·tÚ:˜ï?Ü!0'¸ÄÑõžâÿl¨\í ( ÑÐ4RRW°*¨ë ŽÄ}šnV0(  C] l'ö×vr´†þNÍ…ûžKʸÀ!`è½Ä ÿ†8pÂêârÿ €ºl G×û¸: Ž`˜›õïîå6N‚#œî5î±{2M'W0 wÜ{Õ”•ÿ+NW;ëoß.Ð{àds¯iívûÒìžæuA]®O×ß¾¬ k¨ òº÷}OG@ÿ„áæu´ýWœÄ„°†A\\îiî¹Wç_yþGö 8æõÇÚéÖ?c€ºº@`6ܸ@¾{Ÿ`×{ß¶PG\žßâähãòþ%·vƒÿs‡ þˆõ÷̰ݲvr„y¬!6¸<êN®÷.¬ÿ·.sÿçšühñ¤Áÿ‘öþÿšû÷ýMüÿÝϧ–wƒÁÔA÷ð×!¸?e\ª€ßç à÷Aÿ/æõoŒþ®hù+Ðß\Çþ¢–r´½ï›÷/1ÔEê ±Ö„º‚í6 Ø}±þÈõ­!ÔrßÔ?õ¼7ÿ†éÚAÁöŽ¿«ÿLøq´þ{ì÷}ú9¾’º†®Ç¿;ZÿhjÞ€«®øïÐ Ôœ¬ÿ¹øÍ#-íä ðæ>àâç¼Ï‚ü¾ÿÆç"à¿Öj WÔ`ÂËÍË Ü¿ÿñükeö79G°“õï¡Ñq9ZßÏÙ?¿a°qßÞ?[ÿ>í¬ÿL<â ãNO8Eƒ_&¥&»–Sfv Èš´·Ñ»Bà…Uºy9ŸZü“—„K,oÊB¸«‡Dî¾x}ßß®)³¯÷´>„±´$Bö³i|ØÚrH晟s¬ñ˜$ÿ0ˆò>ø¦ºøÀø¯þúò€–¶yÁ &íP#?ûàœ-€Á='€œñ NèþPCÑD\BZž»óƒ9~ëüŒåkowWgËFÛ5GF “(ˆÒ/a‡þ½«—%âgøÖƒë³Hz|È =¸½“û²Œ¯•ñÁºµ$­Ý¾Y’ÿâpíŒß7™Mªme¾!Ú 3·8²Ú`d/gu/`Õ´ÖCGšߢ¿ûNlSsÐ3ãiùóaC6ÁÕ}"©yþhO&ÅCô!lô€Ø„1I‹°¡kG Ãd –‡*¬3/nbÇMë6ä£HS)‘³5«(¹“@ })½óÕLJªnHÑä4*^?9+‰‰ð |B»17| ®ê6WIò„{âÕc–7}¹‡‹8ë(w¶•Éë÷©Ì÷—Øx4¡¼™'!×mU7WaüPr]¿ ÌXN?Pq„¾sròâÍx!ÙV6Ðì $Ô"ËÄW€)eH,)XR?¼~Èo{Œ÷3œvû¬Œ>‚ô¦EKIHÎ#&KUVR¸îs–Jt‹:Ež)¾=´Äÿcoأٺ¡ÎâAu7êW*„ñô°6‚Þñ«Ê´Í«Ï¾¬¬7%r/ë%ÑÂÜÂiG—ŒÓÈž¾2ÖŸsù–¦×qŸaR[d•j×|“N‘¡ð™›~³ø‹JPŸŠúÇzéT[¥Ž7xn";= KyÝgëGYÅà¾Gºó¾õL  Ìì&ìÆé RDÊo%Û>>{.ÁC@t,?¶ý&¬liÓIÜgá§ Ô‰{¿òÊd7Q€,*)(FÓ`•ñ ¿,¯:º¼Øb=æùüPÿjoR×>ÕÉ2NbxÜB$£IÌa’þ„Ïù¡j_4rtX+—¨k²Œné,­<:§®34¢»ûá~"æ«Í¢[ø5þl·Ú×_ãfý<< ³Öý!Fó„t¡úOEEQ´¯†Z¬bñ¶qÃdëwSð¨ù@ {cÜ|„RØg Hõ}ž!«~C^CXÅ4‰­ø`U‘Šá;á$z~*`T¢`tϦ›ÃÓüÞ-Ýî©ï2[ž} ÑÏåIžÅ»–”]ãNfä'Ðlì”ÜGbf8¯Œ@F »fY}"$'k½:·)xdyÕj}å›Ú÷=]Æô3ù¨e;´‚eÛÃùžf÷âçmOÜhê`誵¾à0+„/igÔ‘!ËÚã0ô>„ V#_0Ùý¬gÑŒYšßHð^9µŒÛ~íÛÔB§7Ø™I]‰ô~-øsÑÂû«Ô·ï޹Ågòøzny¸-öSg·¸§d’fÎÙ{îXÇ#œôì3°A¶ãÿjž„)ÎÕhç}96qäMM&€FK¹–ïÅ*9]™ìŒªÑÑå%Ûz‹§£oƒæ{ùE0+9ë:)ÈÉ>GZf¶ú•Dä~ªfÍ9k> —ήžû0jí‰ÁÿF£°¯´HgËáÞ ß¼˜5T®ÎgÂô½Ë Ãv^,Jû뙣´áp°"ÿIÞgE„³ì–&ùÐ;Ž$Ô¶¶øtžÁ‡ÅÃ~a¹ÓЖéJ¶»áÁ8ð›Ú#{HÞšæ’µ¸ï`yë ìKëÓTäŽï–'GY[•M)·š¶@s©G“œ³âŒ¬]Ð÷Ò‚ouä&°CsðlŠ6}š„ÊÜâÏ,Ž+‹;’‹â*7DÍß:§éÌ Ñ',-”“Þø¼õ)9¯¦øÔ‡ŽËU•p66b¾ª8CâÒ{uêîQi.ã~Nêa šŽ›¨QÌ[¼PãzÌkœ<“Ñ™Â*ÆšÔu©  Y‹Á‹"-Ë‹º3íµÞï¦Ó"ç%ÄÒ£ÅY¿Ðˆ†õ¿¨×sQ±×YÔÈ; Û¸°¦5i ˜‘€ƒÚt-WÛš¢I1Mòf(«.„:üJ[GŠéq‡d[œ×Ê¥ð†ëD§æ­¤t‘ µbïÅ=bR?×Þ>ó ç¾2cÊïFo£#ë.kÊÜÓ¸öh‰»‡"4m3<×Öz®‘¹Â&™ÃñƉ¯/Dhºy|&p´Ýô¢,Z›uùÏ(^zj1ç+Ñ!u &…ÙëCòV®§?#VãgØû~AjžEᤒÈwaw+Ö}{ÇWò4.ô}eîÒ—½~gÿ ‹Œr@À½éû‘ü· ¢/.êïö¹'±+¤ÁK­ª%~5|™ ,Eì}WM@ßs\ÜmAIW,U&ýÐ:7܇gñ°Ü.sƒ>õwfâdÉ쟽V UÙ/Ðs¤P{NŽ…pjމ•žÐ#? ‰Ó]Ì( øÖ˜…©â"æ»]=¾´àA@ý‹•ðíÅ$ë䲜}HàX›v“+¾l´gll.ý¦Jœq‹Lj߬™hÞ®ÞB˜^Uû¾Ð=óIÀ¥· •Þsž xªQ©RÉÒTì ÷0_”…ã£XòñÂqì4 ãò¿S« ¯³¦k¹Z Ï®ñêu¾ÛüUüâ¼Z‹»WmB5­'å¿a aÉdEBL烒.Õªù¥’õT ûõ†j/{Âoï^ÌÄ„M=/¼óoØ>Atà7£%u?`< lD´úW½]ïì7ÓÁŸ}í¾Î ÌÑh„ŸœÌød) 9WÇ3lùjFj‡ýd&—%¡£©zç*vEG`ÖÍ&(ÎÃI`<±Ê·#x6&д&"öá)mk\ìp¢¼•+ƒÒ­¤Í`°Ë¿œ—¸ ¡ñ&D³eúÌâP~]d÷ €\ÁÉ­˜¨®ƒ“ZhØB›YŽF Æ¢¸nWy"/l;ö8*£užáGTd%âOV²í!Ù‚9ögq{Y‘p"å«¢5_×ao³®â{’îãP3Iy•×T`¾ehÇÈѽº[¦> S#N@ +zh)礃Óõ®¿ö*ôE(?änÃŒãj¾â¼J`›ðqâZ{½ˆ!X˜&®°ƒ}wˆDó×íaænÊ{JŸVÿ…@²³8EO„¡)¥€ê×WÝ¡<|!¾LʵZzgžN×_’j( ¬7Þ\ÞñÜAƼ®ãÔК—×ï")ë6$‘¨Ó9J{“'µî§ rˆlg1ë’Ñ\ó’ÊA㹌¯>æäè£zåà{n¸WOMHž'˜êCÁðˆ|‡çÄóáÒR'xx—TÆ3/êåÃm1îc¸­OÑ`NÌ2¤‘qz—a4]¶²šXt¶è9Ù+ŸÄ¤ÏwÌûÈý"Æ[ýeö¬Ó5#1ªZ¸¼{è­J0'VþÀÊM‹ó:ò{VAZÎ.ð„Ë‹5ÍF|ñ)æ8@ô!í)•VE,±M{Ñ®ìCòÚkšcnD‡Ì“>u5BMêLpûpñüð×%³ _ ®¹SqIƒÞGý÷ôeJ¸ÑB*A””¡xÖb£„Q»nÃS&‘^¶@ÍMüÔºÜGiòÖ©.ÞÏà õsÄïrJ£]x=£ºl3Ö.ñ+¡zVÙÝóÑ•`ëh;¡0hèEõ‹MJúwÖ?ý,X]â‘ûv]A pÃ_ZŽÙgì“á“ùA[ŒÞ]4lã^Çó‹üBŪ>ѽOÏyyݘ½å Èsñ±ÉÍ?}\߸·5ÈÊs[è›,¢íðÑë=þdim·}ë`ìgâ/¾K~*c¹âô8ý„Ëò%¦ºeí冩¶†Ù¹ö6ºPY#\îƒÄwÝ ÂôDÍ'¸E³=`ýC£òi‰…-úK™ ü×\¿H¯éYê°BÑ´n/aYjã©y šøê¢øZ3‚8"½ ã„`r<טñjž$N½'dÝc;ªÓS´™F6Ùî~<,¿ÃæW~é±âùšÊï#è¡e988ÆgQƒIœ‡’Ìâˆ_ê(5yn;%€\Õ¬þL¤ÞË:ÍZÔ½$AÝL2„AºZ~e_[ HÕÈÖmxüyÎã]éΡê{OB"̰ˆPTdv´Ó·;š^¹½Ê_*aT–« ô  ó±$¿Tz³¥ØÙB&wëß  éu]x#™\-Ùy†êWóD’€]O|Šk²õ8]pk W ~Q¡‰‚P]ºPC&Ï­ZÏ«[[¬ƒö3ÃØæZ „Ù8[¯{ÍZÆÃ Ñp<Þc‘åö¨†Óë0ØÌ+‘F’/Zé¤ÍŸë2&h‘žt5 ÐÕ‘ïjÑWK'{+V^/k¨˜†µÆ1˜Æé 7w£¥/€ GjEˆòðÊ ±i~äâ—ãä·Ðte©Ò¹£ê%”ðõ\Ǽ†\‹úM“ŸÛ¯\Ž%Îfœ¤uðZù—[cÕÇ–öìYêß°º—Ò¤AU7/{7öeK“ùå¶*yÆl¿#ã|D¨ŠŠBë¸E3ÕæMÊÖàJS£5œ3þ Ïoaõ*Ã-Ëóµ"]ìdÚ™»áXíßô&æBDà ô} ;ù6oh}¦Ó'ŽÒ¼ÌúÄ„šPÎÄR}2`ûô¾7¤ž^[Êû‘÷“ —ŸÍÑîïÍæý2Iš…%¥¸]]tJ`ÚXªœ)ÜP_B¦2ð·ÞF¿ó¨çKôSMT)±›ZÑÿQqæLJŒ¾oÏUíÀßDÑ TöÝuisÇØáJ2‹ômçýïè>1|ÏŠ é¾›À›P¼’_v‘|xM¿Ó˜&î÷óžkoum?yêâ\n¦:<¢O™"Vó;¾ÄbŸý3YDÂo[\•X• ýä•q5ªç¦âkV7é³Ï£Õ\_‹ÚyÜ'bJOâ3Ãæý¸ê$2Ø]ýºãwŸk jÁ*M¹ã‰5‘‰:î%˜™ ×%Ædœ™#^逥¤ärʘŠcƒ.·Š©&.gòQÃ$¬#ë|o,%*(š&8Ę́x©ÅÆöžþõšNóÁôÚYœ¸² Ÿê÷êñ³j¤E»qb\*&ÃW…#ˆáë’Àx&õkGÍ«7+rÙ æLÍSRê"¾ÙE) eg1©w‘îÚR©z³UîéÑSû–ªËâÕÌè__¥41ÑÄ[È—ýO’io÷©µ »¹;<.¼¡Ïíü|¶‚œ>(/ب§£Å»®?n|£XÙb·Ç1ÑòDò,¿ìCÕ_TìÕÎtPÔm«§QóûÂÝpN>=›vëhöä¾/Þð4|=ä§#ZBwÑbœzUzóØSƳxOåמf´ÕGij¾ãË&7¿V1p€Ë}â•ê”Ss©Q9f¢l6ô]³#}o‹¯v?tRˆ{SÛ¶½¤KÞEjœRÕÈ…Z¿ÌÖÈ}K`Ÿ†ï³EcƒNôˆŸ8+N¸È ö“q 4Ï+ÙNÝä›Ðz£­ÛñÝy…aÄKصÁþùSsóû'â³ÎXƒ’ ÙàIžÜ›ø9A¤XÇôæDç¾5*«àÖóÛáì-ÏjQ¬X#½ÁJØ•n.8ˆè ‘Aº9ˆ’’ÓýS*Šfô":cOmý ÌÎB]½%VFâ€^Š f«Þ¥¡I%½ÔþDEpäa¦¿7cº"s®ew%–ðùé©TdUY9çu}iªB¼Ñ¥">&ÄG"Ó{P7Ñáè{ØIÜÄ$)ªýúli›¡êD7%ñùG½a){¢Wó¡ ïÅ+ÑLCNQNÿZ-5M 5óý€^{Øx[E¼8§ŽüôSÞXõ”º©ÏV³_ñ£iÞ'AjÁÇ)Þh‹Áõ»†.ï"Ž ‹»%¼ãp2¿õ9Ø`¾”œ~Rì"†Ð¡PþÁ'#xé –V‹c«£(çkŒ~Ž-ȵc)RS7á͸±D“nàpgÌ/8ã;“íwc†÷vºi yRÝý8~†÷ó=aÓ×é0ždÑ]]̯3ÛÀÁè›a`%öˆk?tÚÏÞV½Ô´G³®&õß'w'ñO$£âQlm®|àÙZ>®"¶™ ‹Üh®ºþ?²üW£¹;}ªí2[EjeÀílWÓ©ôkðlARCh,uŽ\T݇©óÖ×l]x£R»å•¢…ç„Ü#Ic¹ |håë¯"®ëÊİ Za¨8ÏØq»Ób± ó,°th<ÛÚàŠHÎ ÂB£qIøô­g»Î·Y[Þ/ižÏ·š¥ôéK‘¤œnº*ùõÙñh…5‚³Š¿.½¢á)¨Hcž{OBÞ·¨õ©WÉÚ¨aýIÏÛ. ¹=!uAF==b|Tß_Ò©ƒ¿m\Êc­|Åù:¥ZuJC~ÞèízÞ™Ÿ©ì4\§ šÄïíÏ¿Tõú¹Õ ÆëœMÎ[J…µfh§l:î EcYÕˆü°àÄ@ÖÞ5ÛäHyæz†Ó±Ø4º5aÆç2~o¡¬›ž2kˆ}¿ŒÑwcV{ToeñꉊτvâB5÷‰å׊Ðów&Û¾(ÄædÒˆiõƒKgÜþ[tÿ•„å°k«Åñ¢”-<&[kèÙ!‚½BŸ­€­À¥·³’òÜÅ—$LžýÄ9Iäx¼ùÒÃý7¤n“òd/d-³å+©¾ðÈålîÀ÷Ë&ñ¦õ©­ÄQÙáCÄ ~…Î1¹†röd?’Ö^ÎJ•½èÙâ*QMtÙ5ÔQ4_X¬LuI³¾>*m*òLYª°ñP[1µxo1þ©µ ~m&¥W!€¨¡dKùIÅ&²dÚê­ðÙ¤B ó^‚@—ŸÚcfä–Õ-ÇÝëï;·›©G¢oµ¹|j¾¿Iá“çœÊ!P³% ]mlœx„ï-‡YPá‡ÍÑÃF9j›/½Ç-WQT¤{‹÷ÑPÖ<ÁN_$^1¸!kéïH``*Éu;Ê7AJçwJûÄŽ‹ø9€¢h0çÍÞ‚#Úê«–Ä xªY‹L¥Ãw±ØŠ×1’sÛs? 7à )ƾ©£šXܰg6 "iNóüÅ4#0!ÉÈ€×\gû¤0EIØÖF F²¯·¦›;¶àÙ#«WŒ¯²Ž:ìËc>§¾:ö%äÔÔÆBÎAxľ-Q¯Ìÿe„àñƒ_¿Ö¬˜›m®<©XT½e+O_ éY¡íͯT0Ôû½Ñ ꌼ¨W•4,¦d!’ŽÄ,8}Õ#]³aÊZ^Øò@VËñå†On(Œ9¸â>«p>2’`;vZÝ€bU¿ó'‰±ËmÚýÔ+‚çv’a'UX½MVÕñ‹›Ù{6–ðHÚÍæÏƒˆ$a}—c]Iä)ýUó’ê¶÷­Ò…"ô<ð…®7”øËòœ¶È–ؤF‘µËHÜ#p[¢Žèæ¸æ û´ÂGóðÙgg‚lOsBBÃw:,g†kóÙ\Ó®Ь¨ÛAê—Ùe%ìÑϹ·$ew²£ÛÃ4±ä«¼<„芦CB;AÅO4í,‡Mb„ lU=³Ð¥Ø‚Ò#×ï2§/ƒ·lÆ . Ð|“å/åÓNÆ} Oãˆ)Ó¸n¢ykALžU¦¥ï`q»HžÆÜ–-@=cC;GöÜŠu’]ÉIß°V*{»·ôÌjï‡Þ9ú¼æÉuIm¢x¬zÜ I•÷/«kÑÔäŒ Ýbð©¢(ZysåÙͲ‡ ñЩòÙ“êãLŒõhtš¥Ud1/ËEZlª²|År°:6Ȗ⟆zîÿˆ ¿DâRŽx¼Ÿëf™Ôcó£â(­Â3ë‰únvPÜD•¼ÁÛHnƼ pHnÂ8ç±]»¤5}B žÇ:§_» RÉ£©¹C÷ €„Ò_¶+ß=¨¬Ï\: ñ¡ß;¯´v}cƒ ô+Î|%1¥ó#j±úðDe5 ýdëfôóò–Åu¢Ø ­¿‰*•eþ%«9p·ˆÇÃÏ1_Ç“\5çÝ—¯54&É04ºÛm #³>6¥+û=·¨+Èó½õCæ«[z¹ý‹q"¯‚ 5åCbŽ‚jó}¢£Èt~ê«´l‡ÛRöEbüiâ6©ü©S#žÃ¸xŒì/á:ÄÌT¶Ø‡É´7§¼ÛâC#<ÉZ–.Ìbiwù饞@ñDÊ~Õ³8,~À* JRôÓÀ8ü§Te PY•>!gHÀ¶ «[WÕß#} :¥àˆ(Î+³'ÃÑËÌãäÈV›®÷(Hd6xÌlgw%Gá% ¨¢BTÉOcÑq6œvÖ«Bø6i¾{/Äÿ˜¹ã?…ʼ{̧c*E¢z}(Í1< Û²®Ûk©fð$D.?7LЩ”+:ùUú31èÄ$k­’âù’Ãß¿âNð8†A0?í#Íx»£õæ¼x»]ÌÝ¥-—«‡Jš¶W©Å™7bo@=öpºTì9=Ç™°¹—úDé:`BÔþbHë$t0âü wÜv0½~»CÕ=¡©r…ÍèÉAiÓj|S®Ê÷¦IÖgÎÅçÖ1k‹qn“öËãØ,my€9¬Œ;qTá§tð.'8Açí©ÐÇÇ+GFw‹’ÉI$*—Ü)϶¼®qumɈ]«_&ýSkÀÄçv½: -Q›8ÌVþèDR‚²ýþ¿17ÛjHaöÆó4˜M;l½¤ï$:Tím6Ö®XÌç%gá}ó4I…O¨rî!o˜­‹Nͯn),oC*=‹%Mx=.uˆöž0£å)•¼àš˜ù\–F ÷!ðÜþæo¶Y•ö^ÄÅ<µÞÇ–3<©Ì£ ¶Ú»¨9Žÿ ×R­˜„Óâû#cbOåT)ý4ì^Öz晋_^5f]¾äpúè牿=’¦9'Sr5U]¥Qk¾LˆNžgÚ8þUCæZñ'ys§ÔünqÇþMóù endstream endobj 4266 0 obj << /Length1 1641 /Length2 9416 /Length3 0 /Length 10259 /Filter /FlateDecode >> stream xÚ­weT\ë²-Np n»w î§îÆ‚‡àîA‚w nÁ]ƒ$¸?²÷;çÜqÞ}î=?ºÇújVͪúf­c1ÐhêpH[:AòN`'·@ÝÖè Õ1«rÈ89XÊ:-•`æ€gA2‡Ù:_›Ã@"}%à5Èðê€GXX ëäì ±µ¶˜ßhë³°±±ÿËòÇôüò µµŸÜ@NÎŽ 0ì™â¨`6 €•­ «¡i¨¤®`VPPAç&4]¶U[  bX9AÏÚþi ÊùÌ% ˜ Î Ûç0‡ÈùÄpAm¡Ðçg€-` 1Þïæ°[8¸Zþ)àÙnåôWAΧgÇgì™LÓ ƒZ@la€ç¬š¯åÿ®fcû“jû œ¬ž=-,\ÿ´ôöLóŒÂÌmÁP äû“ XÚBÌ=Ÿs?“9Clÿ*Ãj ¶þWìÈÚbé‚BŸiž¹ÿÜοúü—îÍ<ÿŠvúËëŸ5ØÂ  +NtžWÏ9-`Ϲ­mÁè\F låàáþÛnéêüÌ ù나ÿÌ Ësæ–N`O€%È KÝ öœÀü?S™ó?'ò@âÿˆÀÿyÿwâþ»Fÿå%þß¾ÏÿN-ïêà nîø</Àó¦Tv àϲùS°%àÏʱµø‚Ím<ÿ›ðwÔý]òÖÇþ¦–[?kÃ!Ì)ü·Õ*oë²Ô´…YجÌžoí/û›çŠ ¶`гº],€ƒ‡›ûß0][ {ðøÿ†@`Ë/ýY°¿ çÒ•×cÄöÿÛ³yk>ÏL×Óø¿©ôÕœ,ÿyøÃ%#ãäðâàáãp¼óð„…„}þ›´ñðüë¬fƒØzŒ¹9¹¹yÏÿÿøýëdúo4r` 'Ë?¤3[>ÏÜ? ` WäYê¿ÖÀsçÿ8ÿ5ý È}qÎÉBô£]jF¬Š8§äµqw'bsQ­nAž…S‡_jèºpÙ»ûÊ Îº1‘ÇfÏÙ}ç‡-eÖíÁN"¦ŽdÐQ.…KWÞwÆVA¶í\fEXiú‘^Ç3ªkHFÜzÛ#ZÚf…÷(”c­¼ÇW,þtnyþ/é/±}-RjbÛpëàð«ò÷v¯.™z‡úû:N‘»¶ÈÙ²cÐD͉}“öiažï çµÈ·n*g×QZnËØo¾ØÜ7\pˆ|/n"ÊÇâö¶µß%Wa)¯|v3OÉÃ5!¸¤f ""øb˜Lבϒ²¹+Å®¦L”áëŸ6qtÃ#}9"·Kv\÷Ž}‹»y=Ëx÷wHPYûL¡Ù\ ¥3#ác£"QÃxaÉDø•D½–é /öÆ ŠÞ¹0UžÉÜ@Z‚–Šå¯e_Yõ=)2mé‰Ówè§<ø?3¾ú%p¥ûʇ+8+Moñ-ØÓ6úX®çWÝ#.†õ›Z51 õzûZ±ö‡·âM(*îkº’oîRÑ™,$?yD/ë=©“SäyaÜ™‰‹\5êçèxÈU>ìªt§¥db¯êfŸt‘aóÚãe=b—fVä²Ô2ØÝ ,ׯ,Q*UË‚Ff]„æ—\ ǩКË×ÌèÂ2zí z!„qQ§Ò/SÙR³, !4@‚ÌâIYÇum‰‘’Õšé/á8ºm4¿±2y³HÏÙ78߯Õ|ký‘ïWý21nžoRQJpEÎy+´îÒô{»jÃÛo­ºnÝœMõb=l;RäÒyÆ^¤³oÉýgôÇXll¨U¯óÍ{jC§Êå %£$¹MÏÜ.…,—ßMG§& éö]hÇ`´­4DöÛÁöÜ7’݉®Y÷ïZ\=ãöÝb&QÕ¼q[Bͺ¯ªøØZ“4˜ß®ËþçPæš/¦ãÌK1¹ÝV{åË£tW….‰3(qÆ9ųKB²ÛÌD‡!+pVÃñž[-çt¦nNÕ(+sÖëT`ðpÏÁŸO^0ùªÅ¬®ˆv‡e›n©Ê±fµ#ªLmT¡ A“R^%on”.³”ÜQÒÓU·²³å%,!Ë÷u«üC ·mÕØ±ýÜ*S•ä-;|:¾= iÎ\%¼üá¡J\—CEp€ã'®ñ´Í6¾ŠC 8Wæ~½k¾LúDËé÷Nmw1fWÓÏ.”˜”!®‚ˆ$0;&fqç‚> ‹¡‰Â’ŽR¥koÎ"z’eáJ<}µÐ—:u IÉ‚m[ànºÎh£m²´7‰ZJ¶¡Õ6ötå?p÷pI_lÙ‰v°EÐ.ýlÐܦ Þ¹Âxg9wsÙØÓ-c0ÃOmðúOR„–•à¾t8t-éç¸2 ]ÌÔÏÒq¸½Š~GÞÍ<êV`gŽ^SìŸ`M´O´¼{=}Qø@W®ºW+ù&›A>A+Zž%ÿ‹>* Ê—½È\¡Ô½¼iÒÊs¦îûÉZùïnÉÔRs±Ã?êRø ¤îÂÛ&V[ƒo‘~ª×yôÖ€û3ç Ð(ˆ$k"–¾unÃFWiÇUõ5êÔ¿ ™O´¢>ìïHËjЂkõdZ ôi‚–Šúžc—+¬ñÂiùUãrï2­ùZ£F.£*{go6)BÓxP±~Àâ?ÄkÚë'Yb:(R\QÍ9±J´>êÍ·6òw OÍ…ãJGì•oP~¦Ü¤)‰9G» îɆz¹ùeÓÕ"(Ja3ù ÇE] !À—%ø¾VzY#›`–­>QfçFm8ÒvsÍ}Dêon?ªP#i3Þrœ-“Ái¬ogŒYø2v†$‘ËÔÛ®<=€ÏËÜuÞÈüÐü<.8sQ'3m1?$JŽ“øñÙ¤¦°Ym¢üÇnrh Ö†Ÿd)4Z(8º­Â/á|ãÎûämÁ¢îºç+7Ç1ö_nà@Uêï]ú¢¿ªX³ 0)ÛTV>È@»‚qVY)"ËšYù1ùi¶]y9ïÚ|%í½†ÒÂÚV˜ï…f”a9×û~ý«~YÕSSâi·?à¦&L-·°ßÊfT]#h“ÀþDb(MÛŒÜ üÝÞ°±3ÜÄ¿s±.­"¢âÌÞ¼áÖ%Ü1·Ád<'Á¶Oœ¢È(ãÈ®#Þ‰4wÞ÷Ð '߀ð3ãËúBÐÃÒ n¸ Žü.àf÷´'‚Àw:_[ãgH¥+åô3ËÖ­o¨(Mª­RDŽÎ”&B²öW¬+𤢆/sæ„—q¾|zúàO~ºÎ×¥tÀ3äyOï…(œÒU÷©HO0ò7ø#|;ï.Ÿ`Ÿû’î‹/I-ë¨$@ÄC¹UÛÚ8 ôÄ¡—¨¯—ãŠ~èŒäøc^$ np‹à–iF­Ž±’4jìØÅ{^çÑM ókvpu ûLS?Ÿ*L @ªf_©y"ÅÔ&aDŸÕÄu:=ÔE®%‡þÌ|Ç}óí‹ØÊü@-Ã< yY>ÛZ9kd€«Ÿ8ò¾Ü;Æiž£3Ã1ÿRB©¸Ç­šÕ7.Âi®_ã7MLþ!Y^ei¼vÙ"C·QâYºLSó¼eéĵ#ðDsÞsO°zÈÏ!WËŠgG¯ÞJ³¡îôzF°Õ,g…À¯1(aäVû Oõ$ÙÒ ™Öu¼Ù™µO€óüj´Òµáɯ§I«æ2œTª¼°ÇIæöËŠë1M‘Êk|¿ÝSí¾ÉxË;¢Þ6ÄúN“¼:›Ò©ˆ:\ çmvb–áÈŽÿ¿÷ÚÊx1­ ?tþZŠ/arÕçXW¸Ð.¦Y<íHù:û)\¿ôÑØ!/Ò!g$3Lõ!új8¼ù¦IÕØÞ݇+YmQ(¡2¦…o—Ÿ(ÿ#•Ì!ŸÆ/Ò}›AÝ(«“+ëÄáì.â„Dç’â4è(O÷X‰L§}N¾ú+|óõa6Ç/ý;Ìó™s¹äq¤ð¼6¼|‡Ð)"þ {szŠ5¯²G2¤L,ú´Ÿ^l-$d拼VëìÂÆ?‰ùäk™¸ƒ°¡F|B× W? bDËœî¿Â±¯tÈU(òÒ°°ïéÑ‘1gåÿÁtpmfôrY }6ÐqËo6ãåŒ)ÌüUŸnW¦YÿòƒçÂQ­™Ö¤Y¥áßé…ŸKm"_ÕJÆB(Ç“ˆÜ~h6I»«t£—Ôä3ºÉ¤€Ìp>Û—>TÃ/¦¶ÙÓÁh1;ÀÄË·ˆŠ-ÐgR#DÒßã;ËþK ௠›Îß}à úƒázë;Š !í"»)¶käN ‰¥ñÏAË .P®àþd¶Ó-JÆ!jž&\•1/IŽÆ–ÁÜFDæu/é£ZÎÄ¥­~î<—ÔuÕ_síŸj¡« {Ý%ZcDnܪEî épo‰ƒ%ôYùð5?uó¶7EÔ’î}×ç ?@bO’–Y•¥‘¾¹ßæ½Çã•ê2Ï‹4z¥Æóuê=Ý+‡…M^Z·3ÚÀqÛ#ívÓ{‚þÛº–SLHžc‡Òý‡Ùwáe%Wi·Ã„yxðŠåmüßšßbWÎGœûóOÏ…Ä8Ï+Á[§ÜÜ{2dè­ÝÃE~“F)©tŸgÅâœâäiãU!² w—3éðøeã¶úÍÜðIClúø@MÙŒ† öG3~Ì&“âÆuïFy÷Úcœ±åC “~§· ‡¯Ýì¿€9£~ª$±™g­*2|$z£÷½öS\±%´xŽëm¡£™«†¡:Qê)|(èb&÷ú®·m®?ó;GÒÖ|;]¢‘Tcñlkÿ¼(¨á;-’Aö7‹ÕhÍÙ݉#.g×§¦$Î+ÙÊ®ÙtÒl#|>û”!Î ‰¾&š £×!e]kâ¥JÞÚ˜TÂæi1q_qÛMgPaÔ€ ”¼-ÓŒA•l:kÔÍË_°Ö‰E§¬™§qÂuHX"žŸÍeFê7™Ê'Ó ½ïµãmïB·3üjÚ„•€'M’ííö¶0Y‚¶føc³ ²”j©cÝÀÜïWEhIÞ›â p‡qŸŒ~WdE1Û5 C™ñ‘²~·G´‘»ÞSh È©Æü”ƨSùÑÎ%‹ý©-V¯ÆM ¿Ìãõw$ñki(ö¢uñ8NŠÃ,Òó"gm¡•¢¯äŒcÎö–ÊȬbÚ´‰û­9f˜ž½QpåQ”:ä_TôKá‚|R‰î.kêsEÑ£S“m¦¿e%³Lq‘¶/‰W1£ŽpñÚ«‰¾Å38t ±r%a&¢üLi:^ÝŽ/P¯ë6DëÔL$Ã0Þ‚O-ˆÀ À«Æ€²ý|"#ž¡XJb„‘Á‰%H iƺf°«ò3v:Ͷ4ܰjÁµ¼‹­»ºKÌ*´±Y°Ç¿YjNÆ?>†®T†ØíšG0YÑËÆëµ6>‰¾p.‘½ôìp}ïÌÿÙIžÙN›Ýÿ¤¢0û$­ÑÑ$Їàÿ.¸ù=sûš%¸dŠ%ãŽ[#Ôƒõ3á¼0úDø«ÇûWcÒž·ºW$G‹| 0Ž”º»Á˜È™­r‘×ñ“oÌ7·ß}€k"ï¥R4!²¼î+Î@aÍ\w¢‚Þ/ù¡+û=y±ªºŽNœ´le#îê¦ÊGªÌ 9ù¼Xmþr: ‡–©½ÇðbÓe6 {žcr•}ÿe»¥ˆe³;fÔ5™'¨X“h__–¢ü –\U(KAk©qîpÖ?Ã÷{I'|aµÁZ¨ÖVºµtP:éú#{¹)ˆ#˜Ãçý¾Nɯ N¬·í™¸bßw­Ûu¦äÃVfŒ6ØÝðϘ|ÄŒ¨4Û迲6'÷íÀÍQ“?-5–è.»=}e­7Oå÷± ˜cfѨt“|ëùY0_¶é2€OŽpW‹ß#L×6ðΖý`e,ÿÚþz7ï,®Æ¯ˆ8#ºše™hÄ8Â]êc²PJ(Œ#ÝGî¢ ÒËÐQqw”Âÿh>x«—ø¥ÅZæC‡s¿î€Û¨‹ÞÈëL|¤§%5®t–ä˲´]€ßCYçǶµî<„Sc3CìTý?øÖõ¹®îcB­ñOâ7K\m¯b¬ÞOÏÉe˜ÆÝzà<’Ù:Õ»j1G¨£ä°}É¥®‡ y옹%`FÕ§riS ÷€ÈCÝìX‡‘½øŽò"@à'ƒÍÍZÏ,i†Îr×åVoYmçGE÷.™7±TÁ¬Ü“;Û*­(NÔ• ©Ÿ ¨L³Èc)%‹ñEžEú÷Úo¢`æ@³%xr3tÉt‚W{U±†NÃÕò¼›rLçCw5Úª·Œç»;âüpž.ÜTG/F,<ƶìv°[¡3]ù]%ym7#H7ælŽü:Úy꾚¢B–ÇžûÐVà%µýf"͇MOO2’BTcì"•d¦]Þ—]-&¬Ùti¸œжӕDlGé§eGùx’M­t—r&*š‡èæMüfÖ"«[y PôXVQ/€×‘Æu_Zš¡|mÞñˆ®¯P< æe}ÕiÝ% ´±é›øM„Zó3«‚>0t~àó¾2æÙÓ†·â÷´|ÛÛüœoçÓþ´º jÜPSQ÷°—æÄ!Sý.ÃÂmḣþzJ›²|¡ ³˜¿w™#Œ³‡ ßõ5›áœhÑKèroÆÉT–Ô1•b83xjÆ6Ê”ù²bK§ÙZé™Xé·aKwÝ i¥å*Òf“Ò½t½Þ‡µc1iz…d"Á )>‰#ŒC" žÁé/ÅWRsUA ?¸ SGÈ2‹b¦9‹ÒvŒÀûñ#ÅŸñ ó½Z?ÊÐØÑîO§Î+Y3>×`Î|Š…¬ ½$ñГ?² nÏã{Šñ¸Rö¯ÝíþÞ2±^` À÷‘¿šJ4Í;Å–wé,D.U“ñü|×JV´™ÔJí€Q]rk6áÚØM$»XíjéJ @¤í¦Ï.¨Íà›…ê®pÔXnÉp šš6ßn¿uTÍNÅå )ͱJ7N¹º².RP\{46úGÆzOd À3ЇÔ¢ÑENÓË>È0P½¯'j~Kor ˜ðÛÈ\F*àç{‰$ÞùŠ2ôE*éVž˜µY† ¾’­N«jÒ¡,p±«¯]6Þ‰¬þe cc¤e†H‚ìä•g4å–½¸ÕÙb†1JñŒn!$Å:]MÇNòײÿGW ·…¢dvHçײIµwÁ¬e\¬%%'’:Hzs…/^9³=hFJû•SZMý¡ØMc‚c­3å6JªžÂ Œ$ùÝÞ…á†ÀÏq1-FˆØt÷`t 2}'ÿè®÷?7á"F,˜ëÅ·gýYU”ç*1*9ÞY‡ š¼ìvBü9~¥Ý_¼©•T D21ú¾'3°TžóyAV·sDîQÙßÂ4Ͱ†uÆ$‘ ºÞ†‹,þ(ùÉ@žyhÇ9Ý']˜ãÆ~´ÄDwnãw‘ÞÌÿbÂÏÜK ,ç£nˆÄAvB\LuGÇ¢­~þÜsC¥—ÇîqýÂ¾í› É•¶›xÂÏjò×” ùD'ÛdÇÑ(åˤh¼Iù@E±Ÿt•ŽÎ}ÑóãnLg0ä€MôÕ„§|íÜ7¿C5–üHå…kvR±5ûx"Pöxt¤| èýè¿K㩟ñÈmœž'’¼Gy󣿧Ÿ–ÉIé„å„–ðpsôÕãç )޳ßD\vÖ'&’óã–ÜÈ)(éG vŸÃ½–(\¯õæ»m¿ÇØ&ãUcCŒêŒ_ %µfµÐxÀa½Cˆ¤ZRGïLzuü³ýµ)gsaøµ–D’Cæ(þv5äIJè…¿¦µöap]žQgZGROÔί‚YÝ•åcgßãøW>yê À B¤õ·ù¤¿u+;,¦œðg|Õ‡IÅó¿Î­Àz#"«a± ZC8]Í×óHž#Mt¶V[„Æø>Ÿ™‹‚#¬ ×ú”~T~½,ã•¿Ç@v‘¤ÕvÓΞŒ)ikËO€ªÓç¦f ”(4ýOIaôR=¯ÚUw»€‰ÕNZ·+óÀ¶´yÞÒ'2èRÓàŒ%’#bTËßÿSJj€øpè²X$‚þz7~h–ÀÇøÅ·lµKrwxź(¶Ì#ޝ…0UQ@ùTì2;8VÌ]xÇ]lLjÄ-zT²îC¸‹ÂáRQ°“Tk7@~jÑK§ú¸ã¨ùΨ0Q©(º¼Žoœ:ýØ~)t%ÐØÉM$gŒ+/G¹ÕFÿ©`eO"º­uß®ýZ÷*®µª“ÄyÑÛÔåëRZl•K>œå!tE7ó—ÄD¬ž•Ø×Ù¼ßQIû2­”PY6|ÈœuZáºqöBÈaõ<¸º'3ÅVèš‹&ÛR£YM0ew'èK¼x}N@õe=x¬0Ðs/ÐýÄF?ë—;Þ„”Oñeо<Ry©ÜÑ!p9–äv3úâÜ‘[ n)ò—Q¯.Ó˧Õï l–„|x9žVÃ(“¤µ~ç̈ÌÈ‹™} Pþšû¾7wð1±ô}ITÿ°¦öVÓ±2‹(Ò6þCGî \¢y›|“冻.q¨“›£W#<‡ÒWÃu)Åí‘roä}} º×maBSiæ|¯!áu`ð^˜N©ZŠàj=¢Ã¯ô‘¬:µP$Ðc7ÓÄúì[íwޱ€sfúê 'VÙe`¯U`1ÙfK L¸ت &ÙÏd1K,¤¯}#›ŸalÑÀýqz©,Ë>&âMÌØÓ«ŽÌb&®½ 8YVŒúP× Sw~åöƒÚªàœ‘ ‚Ý…Kò/­ ¿ÈQÙyt±¾Óí³jÕ[3ÀÐçö@Žá|†Ý›Š9­¡Go hL/ÿäYwUýD¢\42Ó&¤gËÞ%WŠ9&‹8¸SšXù™ïh5cÀD%}Í•‚n‚þåòqõ~ ·™p&Ig¬|f‹Ý«ÓÎQ ×(.1¯gõŽ–ôý\ Á‡ºf×Gl ¾ZÍ'‚+«°utÚOM&7C¶w/‘ÔÉÑFV}O£Z „JcÎ<¹üñÅŒð#2ž\ª¿!ã#2¬Ln[^Ɔ#xÓöâ¼È[ð›¼ÓйÓTx=vWX˜”tµD«Éò5‹Ö?gœ{ÒŽGõ:³<.ßý4;ÑëD~÷Š[Ô|úJßAhI{•.¸d Qá}a‹»þHWy}h‘isуù„ÖZ€kŠ 6ñìQÓy‰Ì4füi=RK¦ð«V àmŠõƒé8x'âR ñ‘Ñ·2«Þå5å¬Ïìæì£œæÚ-áRƒñãxûÜ€ê‹q¿W"¢ÖQ×öÀ9ÑN³B2>JZ¾åPM{*Ñèž¾ûH–Ç1ø~”¾¾ÚÀ)²ÿù‘¶²Í¨û¸nÚ4(­Cþ öPÌÔ+ÁÒ‰c…Â]Ìn»àp“ÄE œ¿Å}éÒ}¯tL2ñqcY9¢L'‚¥Ø¯ËúÓöIh&Ò¬ûDDdö¢™wL•¤ÖáruÙäønM¤{U%Öµ©¼„îœàSžsy‰»‰Ô†zÒµâCöùe6sÏUA3[GʨÇ£ n]ÃòûŠ..WYKë¡%ÄblùûÀH¿FþØ­¹•ÈÇ/œr¿ÞòøŸ¶fûkác;YA÷RT¿ÐÆ·æ°·kFÖþI9¤$9ÇŠ ¥ˆ™ÍN z_´MÐ"N¥GB)­4èÅ„Æß…Ù¨Úi^/n½/ºòhq‹šéóøjË£Š¬Ñjh˜ZZŸY(£y?EOË¥Ðio[é£×J> ÙçÁýÍKýõëØEl­>dcâA7ù† ·—WüK…ñ&?œ´MrÞ ë7&` _L: »Š:c”‡O;:YÝÒp7õo B{l;OóW´£6²9]Ó6B¿ï?"„AÛ¿˜"¤û""É/êˆvŽ ŒéÍtQ¾•y!?’wå°×7˜­a žs©áYGQ@¨ø `W%'œþXaê‰ó^%Ðß>ivÖã ì݇…›p»ïu!Úù Èéƒ fÔÙ”â÷”>ªzóœdªŽ¦_YË·-‹A„z«S(õ¥K+¬ìî\¹CáåX ߬§|ì}~>ñ}¤R6–ãÕoÁÈ]PµE¼{!ñzÌïã{â0'6oÜ §¿‘‡ÈP™WÓmÒÄoÉz;ÐŽwôR1¯–.>K¤ìôÂm¤ò “•w2æ€wûòÎmË*äeF˜£c[Ù#íòHâÁËL@¶(!šo‘.;fèò»óeÑš„Jo}ÁÏ©ÞæªúV™àëÐÿõ#àDs¨Â"•ìnÒÒªsìeË8M4Õý=bÖÏ£”µþ¡A½DzÙUƒüø«'OøýÁøMéÛUe;œÄ“wقĪ>x×v*aG‡ cï­óaÕð ã}ƒ`àÓ'¿ÆIüçß%¬À‰2Êd¦îz£ŠòÝÛzÕ¶JhO†ˆŸÎrH¬’x´Ûêmycë½_•f#×9Tb²©¦{äÊaë2 “¸Ï@anX¦†¯¯²óÍžrã{õyfp¼)UG®nZÕ&¤>òc£?£N"OÑñlÚÑüªº¶zöÊ%ò£òUÉ“‰ZÍ\HhhÚÅ]ÚIVæ,ÕZúú )F?-<…Ö«èèj³—e7áKå,[¼2Î\™Ž+Èl”Ýwæ§M)&‚‰‹[.6iפEÛc=CDç…d\:ivr½çJ—‘н÷·¢v ÎÕ¸‡³*@}Ý–|è5 EÖ|TŸZH$xåºþ «„] endstream endobj 4268 0 obj << /Length1 1144 /Length2 11133 /Length3 0 /Length 11905 /Filter /FlateDecode >> stream xÚuweX\KÚ-Ü ;ÁÝÝÝÝh¤qwwwî4·A‚»;I ¸{¸œ3wfî7óÝgÿ¨ªµÞz­V={ojrU f1KGs´#Ä™…•¨ v0wwÕ0ƒ(2«ƒ¬Ýo —25µ&ØÍô_ô!á2s;B$ÍÜÞxMw ’™ ÈÆÊÏÊËÏÅö6gåø§¡£ ?PÕìàèT¹\ìÁ7JÒÑÂÝqÓpwr²ƒ,ÕA®Žî. W~ Õ[fÿ(áèäí¶¶qÒi©ëÐ322ýaãããš{ÿ“J‚\ÁÖ ÍÛÄdïèôW¤72 Èå-iË¿lU­Ì¤,Án• ¤³qssâÿðÁÉÊ ô†±¸Z±@@nèß•‚XJ8:üåÀù¯žI‚]@oEyøÏ¾ÙA=!¾ÿ[!–—déîôA vvÉIþ_ã7ùߘ5È ÈÅÊÎÊÇÊ9A^6þ ©éíú›dû 6ƒXúû:9:­Ìì]Aþ`+ÐÛ€ìëj溹¸ƒü}ÿ_â®ÙØ€–` 7 9Èúíþíý Yýc­dææö°²°²²Yÿzþ53z;PKGˆ½÷¿Í•Í@ÀúêZ*²òŒÿYû¿¬ÄÅß\2³ñp™Ùy¹Þ”òæ‘‹ã?=ªšÿoF¬ÿÞ,±ròý#ñ·Žý3y‹ë› t –ø?=);º-@@º‹Ä•‹õMoÛÿ*žÿÁÿ¯úÏÒîöö×O÷Âo•»Õnoæò_æf`{ïÿeÃê€þ¡óÿ973{°…ÄÚþ_m»Jƒ½@–ª`7 ›ã¸ÄòïRutÿugÌl\lÿÁiÚ€-ì W×7õýM –ÿR báh †X5ÜÞôgæbù/à/ÚÂÝÅå­=ÐÛÞ®­Ào ‚@^ ä•EG 0Û¦°®û1bOæ“ÜZ·¯îdœÈñöÐ{,0ýÊ„vUÄœE7¼éy’ªc6Âu°J°ÐIÄRñ<žv|âÝ,Ø8áØ0²ÑDÇ,Ÿ•ùQÏé¦/Xˆ’ã3 %¼‡dÏÈknõ¨…%&°5"ñ÷ú¿œUà‰IkJj‘TéùðCNUdíÔøáçG{$YmC"3Qä{[fhåõQZŽïpj»±MÅѸç#dÝšÎ͉õªxø{&zÙmºD{ û˜Êb i]}Gù³=Ê0 O˜š Ø@E'$œ æRtX±@$ÎY(ìž¡Eå]fƒ˜™×{RÄlúTåRº+"Èlï®Ý·³-u/;Z]YÅ… ãvµ >äh/:lÌýôèïQØÙ‡j4$…R# t¬O ñrlùí'§aòµ$›[&±ƒÓ–O¬Tð¬ÙØS—”—‚Hö;ðkJãÌøÒ˜ŽIµævÐw‰hï¹–›ÏQ±´k“®èUVfI²ØüI½Ú'ÎL¦KêÝno>žïÎöKãᬛ—6¸é6¼rk@Bå>PIszbèR-h0ú ^FcÉH±0A²‰(.DúÚŮޑcOJ«c_ »V(+s¸°{ÿ­±õ%P³baÃT‹ZL« UZŸJÈùëOp ·}NubÔ Jh±Ð Ctì°HcžÂv‡©üµO¥y–ò¸2¬6mcÊËVûç;áH'¦ ÔA`ˆhƒõ-bÓW€M5·½Í-¡â˜I3Æ,üÆTFx6nr;iµzÌÒöȇ:tôo}ã`ÌúH1"ÛÂèæÊ鿾Tärè_bӈѻÑÂ׿Ø'ÄÜûÄõøÅ­yêÕq˜:(Ž. qÙZ³ÇÚDxQôS·7nÂzû4{úð¦ØªÙ·· ýŠeÉü’ù+ìàòzW—÷»à9[Y~´ývò×ÎFë©DÜÚí*ï{ %|¹ôž¨`& ØIÌüêê¶ufŸþÓCUb›ÓÙÌîvbŸŽ6´U·P0¿ç¼k|Ú ¢G/4L¯Ÿy—Ò$auJWÓç¨vEEÔŽÄ!ýB­*%4îô|ý:ì#xš!¥ãk¬G%Ú`“ >¨º­É¼ÊÔ95ç±Uþª¨1‹z—ЇÈ÷È„•/O‹P (Þ£™ígæ«*SW¤¿¡ò¬.Ý :Þ9½¼ÌWP.ŽÓ5rtÝSìݽÓã_¨víMúBqŠoRaðûÞ‘µš$úÙ«±žè °+k;±‘÷Б"QͶ´.XK®fQ±{˜2Ÿ“ E;TãòÛÙo >ú¼a­š“š$&­f¾³í¤¼Ìg²¥ÐX1KÜõ§ÁYÒ'.‡°a ök+´ÁYcì,çš‘ž¬Kž†)…ìçÝ;ªòõb™ë¼ƒ»¸Ë‰[Y]"Ê™ÃÒ¬Z·8ßáâÔÅš6ÈýFkÞã¾—›HêïOÛ¼òmo åPQÑÌÆ—Óý¦{I¸Ká°?O#²vñ‰ÓU/…àFíÑz× ÄBá$“´øîiYlh éB, bã2ê×;¨”Ç9üãïZ ¡£ÐJJÚ÷̧‡Zq€£ëh¾àúÚ¬å¤È»[CÎ}8®Ï—Ô[MvÎ8C¶‰nP„0+wÒGô› Ýš¸kjî±úƒœLf'”Æ(' vÈ “¸–O:å5ŽÀ»’r¡¦y™ ¡&þF‡lzQ¡'ô0Ãxõ-ÊXìJ–ÇÇ”ÙðT^4?”0ž’›thf§Õ¨i–(!¬¯†Î‘($NM #ÌÅíUþ(S–}Ö†t?ßj]óe‡G昭ÎÕ»V ÑÈæ' "ï-“)W"¿ä›’¨l éjNϽb– $ÈÓŒ&ð^ë"Ñ÷üH2àp9ÁÐ  Ç`;q[^`'JYnÁÖørJœðœŒ¼Æ´ôôÈT$™ˆ(þu¯úîØFç­tBÖtUu`|Rwojª*æs…V¢Ý¼«y7qOÂ{ßo¿IÇH}A@€grÉu˜|b©˜ò•­l?Fâ{rQó‰/7sÖ6à4ñÇ8³ôŽè™ðRQ{ÿAøHb ý¾•ǧÖ(Æ—ì¥wÐBUÊÇ$ò‡}ÆXc~Sí9A¨õË3qým5á+B· 8"lÊ_7Ë_Recˆ’¿Å4ÖjÃ7i%ªG_~îƒæo…M3 büÃ#U½÷´qÔã=ô(p{ÿ¶×ÜË„H;Wü<°]‡Ó›ßÃæ”M"”mxP paÑû„ˆ¶1´ØZAkl;Üøé%Èú… öl…ÕÕV'%fXDåÒžªô*ÄûÐøkÇv†·­i :-É÷Bã®u\-Ö­µ‚³X™Ýítòvº}1yÉrqŽ…[m V =…ô‚)<ˆu*äÏŸ>™eÙ Ô {ç(}ÅED:Ûy÷†¡ŒÑ4;DÁÙ|³^‹¢ Òoçx³p¼W”ÂNŽIú¿f d„‚}Ø®‡Š´þ<û]Â%Ž2¤µÅ*/½ÄxlÖ©ˆ‘'C1Ò.hî6ÕôJ¾”±•ÿËóa²®Ýi'K»&ã#+é/tŽÁ ñpµbÞ§ ·£ÿ•:9ž×—ÁãHÑøed"¥ó(8®ž b/mqÅïÖµÕi{ö0÷¥®ëfI„eÁAl+m kî늼ê¾ËôÊŠXÚ`ÿR‰ `l¹šÜÇ Ž¨W~@ì3Â(&„øp¦4{¬h¨û æ,"ÜNÜOIø¢„°%b­tõ%y¶¬»$ùOI…*-¼71­Q¿!>Y¢% ›I))͵¶Ÿ©Î/™)áþ0çƒ8~% ôüÏ6ï?ݪÞo.æ†÷IažÉ:Å­R’Ï¡–C>K’˜¯1oPðx7þ¼SFa­†z΄“©¿"®Ö³¥bd÷ Íç¥Ã‹¬ç¢ˆ­†u‰qf}¤¬Žòä‡ZNÈ;=d Ô{(Æhwômïãi‚>™ÌLy¨Üýa” 0MG'9u‰êÌW ÊÀ*è‚CiÑÆ¹óîuœóRªˆ’ÈÅ µ¥Ë±Íè/#Í®6*mÕÄ×6„†øÿ,£íUNS)ºS ¤©È–´,Ôï»Ã“©ÿ>iËbv7-Êòc-}ìu± ïøM-*ruå<¼tÖ»®‹1t#ÔrÝ?óUh’Aõõ÷+S2 ‹L[PªÅ=ƒLÉÜ8«!?+Ë¢F'Ò%q´`n¨–p<±:äJÊu¨ï9uÒ±t©Á²ò=°å³}Ÿe¿`Ê@ËŠ¬äõÊšùΓ_n¸²‡—WQoY#H¦Œök;Òlü×t9A‰c]úñ¶=86Õv”eŒ£z=‡ ¯îEësêßâ…fƒŽq†G‚>µ—ËŽ[ƒp°#ÛÌG´­s}E(œTU¹¢¼*¤‰ÐiNd4ØÕ~a32“ŸžÚ¦ËÙ"´rá×°œºÂ`)æ Qtv“ã$/LD LI![³èÃݳ3?ÙÁ/—•dP“A=ŠuÔ¨Ý(m}§ghs»ód(ÌŸá™~Þ˳šèC+D­‹rcÕçcnlŠyA4p¥T,ðÀrÊI»ˆCÈãé-ì·i aûU†sJ•ÇÂ^œ ¢ïȵÒb6z8P£iÕ}ÝdŸìo€õÂ7€¦ Ñ Å%{[Y!•¹G5ÝÙNÓ×CøÍð-ÿZ<ñQð AeEØVá†vï('YSZºá h4¼$“Âà7Î^Ôl3‘Êe²þ=³|ót€JËULRK+¹0H³Ðö{ErdÊWdIhòí§3¤mY¶{Ð*mò­þ59ú¸I´Å`u7Ÿ?¿òi2Ÿ?"DŽ4‚…Ÿ.ÑP‡3TÕ+-Ç´:»B5[Ÿˆà~}6ÿä@´"Epp0ó”)Ø|,àZKäas•£w„“®ü”öY{Vú÷âB–z™Ýï—t]NteѪ3e>§ RÀÍhc1ei·Ùò{=™šºŸ`.ckƒiá@£u¥÷ý¹OÖò\ØxÃÎöËG>}CÛY£ÃÀrÓˆv¿éNèjѰ$Å?ÁQæ6›tL»Ö?Y²vÇ;rÝnÛè¹]ÅUßÍ“Iù¹h˜cX-'ÂZ¦æ0“«L7Œ´–ÿRݚôûäaaŹ-­ÿ»äËÓòe¥çEÚgç…‚›Ÿú$álÃÓ0õY†‰»-ÀêttÏDºÅùþao%„ÂíÛ_Pº1¾[eNÞlf ùËV46é¥.Å×»yí£xèWû””ƒŠìÙ§žÙìL\¾£Øå]àGf5›úÒäÕ­Z—žþ2z@ˆ+C˜lnÅp¯ãŠ~ül¾»G(רE9(F‹ãë8ÑñP2Ìo‘ų-½ V-žQGc˜€Eê}Xvb‘›Oë1“hwÂH¥ÞÈp襗YŽîÒøŒÅð(;bÆK%Dj¤ÜÉE›jS9"nÕŸ\wïV"™ú`æ·å^#esùk%gÐÛyR(à½Te«§{HãÎØlïCôÞ lb‡¼5܉ªZý.0Ë%%‚S%Ú누©’hÍ…ú%æ¹tRz9ÍÕÅBHO·aR…Ý–J¯Í´Ä฽ôQÁc•ßÞñ›Ç²]Üdžfš” =!Ó…ö0N;—Ÿõ‡îÛAL‘;<p_¸³Å@ÌO?+ËýÆûÕž;;C’”‹ðÇì¾V˜/ÊáÖøòÃYév6ã¼p™†L=qƒÑuEÃmPc¸[Æ9È¥0Ðæaû“c·¹åqúò5vøe O”NÒ’X´{j´“W=ºk0ÅO导¢ð™]oÒè ЄZ!rÉgþ¶è%EDX‹÷M["PpûÏs0P'7ÖÚ»+a#™têÙ}9ïPÂî >ûKø'Žåíù!½Ó›«.‰‹˜¤Q·Tòÿí7;Éq5Ü6r=Œ— Ë•œµå p!?üRîÆßÍé4‹RuÈþö‹?bÙÑ8Ãi­!_áÜ»«HQì=3ɶíf¢ Ôú9á%Áá|•3ad-ÚD@Ê—/Q0Å«¨€ü×}`íªIEº^¿p­š“র§ë”›ö™(ÁA~ueƒé!L^»æxߎèªáu[í)ý1`ÃÍéü’Q=ÜJ4âúòCÙÜ,Z<äå@þsûjÏäb—ø³Ú1·{R„qdc.9ózë#ûD9~ÄWÞ:ÕR~ŒÊ¬ÝÞ_L‘Å‹ô¡g‘è!°e5‰¬P»Z„0ÏÅf‰®¶ˆ’º4^Zò„Òá¢)ÈØFÇ*8ÄWûFäᣕv2QñÁÄgn¹GìO#Íw¡$ef;x_`Cw™àص’Z£ÓÐÙíô–NÉ3ßÝVuêóiïâ:õjf"[Þ*æU¯I”—›@<Ç^aº±ìCµÁY•Ow_¨39çEô;5r /ä0ôß7±Ížš mÉù¡XËÄÛD{rú¼÷ÁD_O]QNqþZ$Tä×d(ú†Á ÍÝ“ª|n§n±'oÜÂߤè`©úº>»ãšªÉÊa7Ax ^¼Ðøµ°‘L¥+³Ð¨¹"5×R¾êfWØæØ)GSûƒN@‘ ñœÈ;EBE~w«Êèä‚É;æÐ6ÃÏSüÁNlUz­[\”¼«ùè<™!pŽ ó‹ »8üDV õâݲw"EwÞlЗÏ1ó¾ùÌÕX¥f&'°×kp=¶v—¦ÄÛŠ_‘oˆµÿ˜ŒËg¹ÓáOep?àÃfÄúMXR|ù@<ä1ò¨çy' sß/[ðª÷«{q>Qs"™‰¹ÿlÏ% *Îï­kZv‰©°O%¤‹zXœîcâ+¢#‚3¡†|÷nèÛ7é =—ŽÏ^bƒ,4蜋‹h©ñSÃì,ßÓ¦• ,€¨ƒž^(Z\Lnšû{©e…^²á'E¸ üž>é{wÕ¸ÓŠ\ðDwéS;+Sw6zMƒï}ÃuW®·ÎµŽMÉj¾Ä'œVTS6ĢЊžÛàÂd7œ©é‰ÙSž~ÍçÙìš}´Ö'Ó2s¦zŠð¡S7ì:ÓÔ¾>°–Ù ÌK(ܼóæ‰z›J4ÀàL ⺹?ù-±áLJºYO"Õ±„Ó>SP—ß!ò„zMš»p5߸#¾_ÏR„JcþQõåó ä’Þþ¸.Ù‹§žeÛ¦Ð#ÿéKG+¯´y 0ÿ´e]Ø=ÌŠ´{&›m·;¶GeCc+Ü¸Ü EôA½ˆúj¯.é±C‘ÊrùŠéï6h@Œ;ºÓlnd¦”ƒÎ¡ÕôÅ9å%/Uï'™>ÇÜÎ ”æVÞȕά¼¼ÙMËmïM$KêH,Ò€$Zjöø¸;Ö6ºïùÒÍEK¿³‚ñ[7Çï#O]ý©WÎì»uL6½WrÏ0éëǵõšÇe‰ú¹&1pÈõãYóU›¿ÅyX<¼³à[ƒJ³™ÂÄ´T3Š__NägçXÄG™R©­Íâ÷>H¼\œ,çKFxRLfLfŠOk$BA7\¼Be^ 7,ÀPÅâœwMnÄ“£_¶'\Õk/ÙÜèqo«P±ù*N"b”q•šº»¶‰t´>RMجLoǵ5‡€U9DÖ"ð—eFéE Z ÑG|1ij¿µççC"B 'Ú%/˜Sú‘RŠîÛ¥ÛÒ,ÿ¨,á?ç\.'îôF„1V¡Rž„Rªä¾rãyœ–^}›¹Ô9ÃN­k-÷ÑÝâÇv×´Ò§È#6Y@Ÿ[3Wádéî7H4ÌlŒ©¼È}   KénjåbüZ:Rd( ¼ñÌC’qåÉr›%Öžg˜?z©X6Õ±I{7ÞQ6ùî:·‚6‡âVÒS(ˆ £«üƸ‘YÉIÄ1˜GÍxmÁ:aoØCò$e›šÀxüF½ŸæFùò6lžÏl³—œ>}’Ž[ ‘Ü¢FþÝU¯·1í¨ŒPPZšä B¦9¼é:Ð+äª#uâhbž×YŠfݾ®W>g¨±+ãŒ!ˆ|®yß`PíYAÒ,2"Jk¤y)€¸UFÐÃuÌDf>P@Ó;<íõ‘Œ€Â¬òœËì‰AI¢*j×UÚ[”#s>¦Aƒ*¹@B©,ÎX°Å÷t­e”„•º­&8d5/rëL&ôê/œþSdªM‹òÅvç¤:vݦr@òèõüixèrh•ø6ÿÄf˜Î*Ìͽ“ë¦KŽçÀ±Ɍ9C4k¡ñCsH„ñWU©W÷<˜ù®è*ʤ Ž+Š$£k“uü |q¹«Ç-8z ‰à¾ò'Œž—aàùHÑG636öœ‘œKý;( ǯ[¶¬ÿAÃu¬Ûƒ«B&¡Ï®î ±ÚwP|‡‘ec©ß+¦òó]"°»Ì.®ó}ó@Òã¶h9š¢IjÙ œmò%Õ"8*C1…R§wJ§èäCr$~;<±X·é9J5„E/!›ò=WEô˜K×^¨ s'i±pˆ3¢0&qpv™ÆÙ/ýXg)%²uý lA*DÇT o 8#B•-åª%8Ä)$™/ÙìѦFÀÆN£À¼H,¼¤Ϋ‹†’@DŽÀò޽Žwp*-»qB<ž¥xúΣR»_¢øÖöpÀÍ–0nŠ˜U¿†c²¢ R|€vjÙEíº äãõn±¬ÝGÁ^•;áœå~‘tï~êoJ7›,Û?¦‘âÞ¬Y¢²•vA%•™äô|Ò»(wÞÓ~~ÖµÆA£ø0Õ°¡¶7á6E(Ȭ³”ƒÈœ/±5Í (NyºÚ²àn5…+ZU† GëÄBÿ² â×LD_s‡®â>¬´UªxX‚aygYÊÍ‘­î娡E‰aOI=wm…÷lÆú‘-µŠ7XTP-4gºÁ߉?/óg ‰þ䢋vªü90Ó„zà›–m·®'U5[^#+Û*nî ŽïbÇÞrðƒ´hC¡£×9•€-#2T Î\—¨ÿ¦]÷&ó‹—©Õ¦üð ØG’&/T÷Š¢E3¤ÆUÞ\êç«¥£Õ1O•ª·vcAモÑÜÝð®£{*5bÄIL&>úY?íØ«£SõØ„n?[ÅŠŠ**Ëk inè«­šì £åÛ½½¾'\¯mÖ¬{ªœ¨PSfFе–;?¨Ö¼Z‰Æ;œÖâÂÒn<_\òÜøfŒˆ`5±ä¨k¬nK/Z»ÈSM?–ßÑ-±å4b›ñˆZîV‡T=G¦þ e?¾zæzid]sݪúXïÉö&`Î^ ÙZùANÚ+'¥€[¯¨«ï2ƒ]/TE± ÚÐÝÄ ùÀiã¶âá#²}$“în—¸]'¹Ã<ÄPÝžÆ$ºîXéIBÄß!ï6ñNcX™BoÚEDŸÆÀ®»ý¶áfœâ $v4‡ŽgfŠ”w†vrÙâ5r9k;Äú”‰ïaçÊ\–9 Z#¨§ÇÕ ¼óä™ù!À‹mÌâ„#£ëc»Ï³$q¶;Ì5Ô\)¡ÛDmͨºFÞÏ5Bg…:r냈¥\Y–A͵ÉVuöP”ƒÈÙ»–šjùåzçð53– m$Ùã)R”-Ù’ÒÚ’¸Dk!óžrö™–èÀµ\G¾µÜàÒ5µ™y²ìŸø/Üri Ã$¹>i΃=]YÖp=ļù—ÓÖæ¹Cq¤¿ˆ‹¡"Kû¶_¨Àü 4ëÂû sQæ?Óˆã>HJMx¿™–±ó~ä7É'ñ?H«—ššFd GWPV¿ék×&¨èyËz!uRëGu:(îe*?dUjç¤y>MÊx“pßÂSžš–„î”qMè~ç}Ÿ·¯ç÷ÇŸ¶väå,WØÏ–B%x/ÈÎÜÕr¹’Ìb¶ÙÒÊéï%°]ùN>ÝÑä“_ƒía¾JUñÐuÁp1 Œ‹5{Æ´Žðø˜<‘R I£™tÉ–M6ó°`è0úÀøå?=ùô#E`ŸîßÌÙ|¯ÿtUs ­A}*(.%N¦8Œ¶–ñ«)K þvQgOá “˜çmûˆ‡Ì tÁdŒ ÝG²ã üåm˨ŒØ#m' †‡ÅOljèÉ<³ÐN1 à-×+4S²‘PþíærfŒŽ>é[Ìþíö¼Á6RÞëŸ);wçÕ]óë½0éY•ONh,cZbp—ÂG4úûȯ#Êù£-nÞuä=^]Âw²F?†§ •ÙIï,…fÊv Ù&".÷ |þs˜å /õÅ’—íªßØÔ3GvúÈ}i…R#S<Û難 ,ÍAëúdVk9§,L63Í›6f… ²{q¨7,ë-;ÊáémÄuN—C¶3òáâ^²¼;*çÖü>$GÔ„OÓßIvצ¿š‚.µ$Åö•±x†,+}>˜ùè©ã³Kz$…Τ0{66sá¿~P·Ì&ߪÓ¡³8ËC­òmZÁÒÇÍí(=Š2“qô eˆ!¦ü|´`¢?^hB6g€ò/xJœ5‘IÄ8Ôh:ƒû½ aGðõˆø:@hXåÓÖìŠ@–zóœižöl›ÙGX‹êÌW[{yƒh‹Ý¨v5ƒö.A“ Z‚ÌuQ®±ÙÉBüƒØ‹'†KÑ‚>÷1öÊg,–ÎlýBб/grÎ7»°D–UYì¹v´4¹UtGʹ¥ÙÅ ¸UÈÙŸ3©l<Ýùtd<ñHy\$aWôÔ-ùt,@‚¬E‡”Ô`‚¹Â^bµ‹ñ2G¶òÝŸúŠôkÐ<Žï˜õñjuoœ} " °s¤Ú6ÐÚÇHE‰±E·'ïf2¢Q aoeâ>ÜúV]DE4\ôœwó¡àÃ’,¢ÝëZ+à›ÌTå»¶›§uÈŽ0Z”Å)q^/ŸºÀGIl*µcì/œGñ´#ž®Ùžy ›!¸Î{ˆDYñCÖ”¦*E³dà8 W—aûˆwFK#§4.ù5…påÇq‡Ñ¡g©\øû‹\u4e³øòLߟ=!ˆr|¬Zö¤ßÔaeä–¯xÌ#¯¿$}˜ûªà]YZOÿYfá;þ;Sšà[Æi ¥WÃ÷Uç? É^½jÙ)ÓU?‰õ‹…qg÷•ïþøì‘Ÿ”¢¢ !“ï¬öŸ¼WÑ'©EFgÂAú3Ñò»*Flÿ÷‚ËWdã®ÛS "´|½9Â܆š„§†–üЗÄ+ñÕ=)«<ÒEÐø`Mé;¹_¶l~¢Aî¦k™4Ø%p!&UKÀÇ%0bÙDÝNkabŠ(pÐÐg&)üLB-Ý«6ï:f¸Ö“Rjm×ß_A-è {¡ñ ‰ÂÜñ²Zè¼WÊœÐzGŸ5šq[(ꥦ½¢ˆQ€70~ïGøB k³Å7(¬ÈbÀ$²¹¨ÔlndºÒ©Vª{û‚.Rã($á"D£‹uŠD|<¨ÛÅJñ¼#†qm/BÇ ‘™ÿ:p¤‹d"ýºd—¢3¦B¡r¿·‡­bö ¶ñWó‘»Bãh<ö*=¹V#’ó÷:‹`ì;DsI-º‰™D@ÿÔ€ýÙœ?gL7­ÆRªÍ¸¯%ÅO”¡?$”CY=-`Á³Ì\Ú€Ô)dd…1¬a©Ì+ï­Iç+„*„nŽÉ,¬ëПÜj°…q:ª¸™A;¤GÎ wÐÍì¸#óÐÅSlÂdª>Xv‘—ÇcS'G¦aeïÁìúí›”‰á6[}õb& 7:†ÝZß|‘©›5§‘– åP¥”5Vßrñ¨¼êÙspÎZo9`­o„"1HNo£±­)’ÖGB¿s“K…!ÄðÈç7º-ÃrWçGcäo’»Åk†>X½_Án|m$ÂF®Ï‚"¬°_ tÆDî‘øncÈ&;yþ8VyÓ!ˆCg Z@QÌõd©–³å„n‡zŽÌ¨¡{•!(1h{×acþçÔá«|uŠHœëÁÎïÀÒržžÓÕQ™U+!À”¨…†¬&Ôcå¹ê׃oœuÑ»¶óž¶ò°€.­cÑùô ¶O©`úWº˜’îÉîÓû±h‰«Ðõ=@Óñ¨ªª¡UÞsÑt%©ŽP~a¶öÏ6­W¯–ó.ÏBDþéƒáÄ=gÍ–ö,ëI²ÚQU‹º'„ž@(œA¢ˆ1í’™8.Â>9G±pýñÑì,j’c8A¼ç~|Œ0û_W-“|CÛÆÙ¨S?¡(ÆXô¼-õ÷ÛæzRÂòç2nŒY/ÆTÚxÑÅ/ú“æÃuhDÒ¡¦ª‹Š<‹ý1k‹üÆ"3È[çnÆ$n÷¡Î… —sÀ}–Ø\rŽoa¥¶áÏ›hè¾]ÇmŽ¿Ã}¦cP«Ô_½¬èÈH@Ûß·ÜN½ÅÐK©4ÝCõÒ#ÍnD[8—(&†Žp ‹]f\\v¯KG'Xá:ÞÛD•ÿˆ|v8‰§w 3xØZJC2Iê²@Z€—Îý9"€$ä!ÝJÑÃÀφ–N‰«¹–Hoïeüýþ®‘Ü|¿;c€Ç©Ÿ$‰×$ÐÇ_k¹®Õ_ûû~Wm c½„ë½Ëå„$•p‹Üª:ó¹ÎÂë'¯¤ô6¶ùÈš1´sÑVêVa;•[çȰ ùí êv[x+ͬi__›Öª9õ‹¥æì`FIs:âÚûc9¸^zaRס™PÜ9 ‰vs:t²_O“Ý=õ+'ývª½Ç`R~˜q³r~N°~ Ôü(;; î°X±2ä‡çñÛÔ‹tÏû ÔdOÂÖÍ-@]{ð­8¦|Q¤½ÒûV¦¦¬óµÙv­°óÞ¶Hgî˜vr=ÜÂR839‰ãO’úVðcûÃQ¬7ר8"†°çåEÍ„œîŽÕ¥+ï÷¡æ 1HšÁÏñ\Ñľ~„£dvu#§•á»_3IÈAx?Böš“UVkÀPyÈ ßûª#ž=’ƒ¿Ð¼³oæ_z¢è/¶¶|d›dwT4«àg]Z=m “ ¶FºŸjàú» ºÐ'ØåÒ$ˆ`TµÖ"2â¡Ùèìp3rèL“ ÒÄ_hÛÉ0çdHt9”šæyhdz¢ú{¥þ¶†F•17êN'yD¨ÖÉd¥mJâ'$(8Í“½"”;þ¬Do$*ø©3^Ã@ÙA­\‡ROÇ¢5¶_†ÖÈêÁKlà©ãqÁOHWWA´Ó§];u¬ú8¶kvÈ1-­÷Sç³®ôSp™¶!·ÛÕ’ûƒ"Wõm*¡·íúý“îµhùüâµÒÁ³ÿ $«ê„z”²pÛÒø•b^$'Ú}%0{ ±0©è´Ñ8M»È )2× íÌ¥Ö~²2ÊÑÌv(\šÛöA|¶CkÂlk>'Å_\;ƒýöÃöÇ>l¯Ì˜‡;UKªM[¶Ø yçá÷¥ÙCóv8Ã)7-ʈt’.oäíg¤Ƴ!Åü\ó~Š×/ÞnöÅpF åjc­³ƒþÓ©qV•nòÂ6¢k‘ßÛgñ0 €hÝ>ð6‘ÃÂX¦Ûz$I¥sõ1cã¶µV,¹v·ª–‘‰û /kæ Âè$ÔBö÷¦ïŽ£9ÁžƒbX7c³éSJÔнÞîÃÕFÁqØ¡{,)ÏxÖˆž ÐC_œ–_õWÃÄK²!wxß©å†léŠþÚWäfø¶µø¡wþ‹º1.z§²8çË€¨ÁµÂ÷ïòJ¶éŽSù-CÒðJ=±û#ç6±ÓËØñµrChË-H—%bF%ÿ× ùßtsÿ€~}§àw£…þÍyIë£I5võzµ"]F¡h,ª¯;-­ïv§Šg7óüNÆè‰—¹¦‡6‘Š…TÎ’7À&s_¼Ïïê|ïñ­?ÂÅnôçéé:ÕµJ§P{ö$y¼¢2bBDñî*¯éhÚ¦PÙ´ô+˵؀S‰ÀEïJQßÿ§BB„ÿ-€ íÊi]ƒð™¢ïü²3 :<@%þЭÀ¯cdÖ¾£P|}CðHšƒeWFÄ¡]_P€În÷0w¢öÆÎGb§nâ S®a¨‘ÓU®"žš{S P™«¾éŽ´¢c‡Ð¬Ü\½W²Žà£Šaº%½Æà-R/•­Y¶óÿæú ^ endstream endobj 4270 0 obj << /Length1 1177 /Length2 9437 /Length3 0 /Length 10218 /Filter /FlateDecode >> stream xÚm·eX\˶5Œ»“\‚»»»;Áh¤wwwÜ%H†àNàÁ A^öÙ÷ÜóÝóígý¨ª9¦Y£~,êªLb3 4ìÂÄÆÌÊPÙ›¹:k˜‚™ÔV®r.¦v€W€ËšZäbüG—WP hê‚€%M]^}4­]J¦NvV+?+/?'ëëž•ãߎ'~€ªÈâPºì@àWHbîj»h¸:8Ø€ê@gˆ«“9Й`ùÚá?WH@<@VÖ.:-uzFÆÿ±°ñññÌ<ÿ$Î +0€æuã´ƒ8üUí5…  tzmÜâ/_UKS) Ë_´tÖ..ü,,–¦ÀW³³%3èÂBÿÚ¬ØBbÿWg´¿æ' rš¿ódù§Ú‚!î`ï„,A`‹ѳpu`у]r’ÿðjBûÍ èàbegåcå@sk–¿Jkz:ÿ²ýe6[øz;@–¦vÎ@_%ðuAóv6u\œ\¾Þÿ_àÿžÐØØ s€ÐêõJþ“ýÕ ´üû¬dêâò°2³²²Xÿúþwgôz¹°çÜ•Mí)u1miÆâÿ¿žââ×´Ll<¼&v^NÛ+O>.ŽÿΪj úŸ®Xÿ,¶„øþnþujÿ&àtr~U%€î_"¦üßLÊ9@÷Á²r±¾jåuaûG!ýüåôß5¤]íìþ5º¿É^Ù;ñ·{}"Ídþÿ‹2µÙyþCÜ;êÿ–þÿ¤ûoøïìb`+; €‰ýo#ÈYä´P¹˜[ÿ­’¿íZ`‹=E *Äô×c~ ábû/LÓdn :;¿Jñ_lñ_E¥Àæ Ø  áò*FS'‹ÿ5ü›»:9½Îé_7õûï³%èµE Ðh޶81±i鸫#qgú5ÁÑË­uóâJΉk»Í ×£Lh[NÂYpÍ›š#©:j-\c¯–@"ËãnË'ÞÉŒŒ‡Š'I|ÌÜ(¨ÌqŽB÷サ—81†0=ï@Âs@öìCåµ°Ä8žFä­?ÙþÞ¾£ ÉûÊ/Õ¨*ûsô|ï‚NUdíüÔø‘f‡¡’¬6Aáéèò]ÍS÷´òúèÍÇ·øÕx&?çúÄ1¹ügÃdÐ\ÎÍHôÊyø¡ã]ìÖ ¢PØîÅQù´{W,cèÏà ³H„ɉd«X„„“\Šö‹æ($Y? û:§è†1x˜ÄÀ&GfµîQk^å¹ù”„®ŠÈ2[Ëw­cì£ó Ë++£˜Á7õ³‹ú øÆc ©ñ?Óµ*äMÌÜÊæ—jv|Èêk¶Ÿè‰—Kòi»ð•€6ÖYÆ€'÷  Ãp ‘¤DÁD[ÛH LM2bô‰÷ZY0R‡@ Pòz5›Óû½ûäiá¢A®ü"‘Ùô|b•$²H¹£òÞˆ e1|·Q$è²BÃÓ“È,7ÃzÕ ŸlS_éA¦MtHÜìG0êT,=:a M÷ºÁßüŒAÓHÇ\3ûGHåýÛ=R¼úo_W ùP@×ͽ–I{Ø8ß½~ppŸ?ñœ¶(ý¨KAv&EJi`q]hǨòSæ0ÿ–Ïßk  »È\%¨&L%€-ôtÓCðÒÀT£çún _ǬZ¡”0Oä„¿ëkL’¥1-Ã^’:"4–#›¾çò»ýSYd¡+ C"v)mßãb›ùyâm”‰Þvq/]ÝÓ™‚õ„—R¼ªth­Fr–¦¿³Ð I¦o žâ_Gó±‘$¯ÈÍz‡²”rí# mB Ͱç(jn!Ô’°Y"7d Û³Çþf7 ä)jÆu lR@CŸ‰x½N~-AWd™ááöœŒ²õ®ZL ¡køÛL\ <ÒVë1™á£[”‰zJÛÔ.#”â†'NÇ%õtcäÊŒan+…= ÷ÅšÛ¶a„õ÷¦U·›5ã ‚GW°—pL]£QòîÂ1>õWlê$ùX®_p‘2`Êj6 NëÔÿ'ÊÊăâ&Æ`r{Ѷ¿Õ´‡kÏïÙéD *úUÓ‡;»>’Ö: ™,þ ÎEVáehvº³q–÷’À×Ì:f}<‡HáË9 1ûPDçàLÐ{ü/éTËrqF‰Lý®Ð[6lµøü›Ï_Š‹Áf7ë”/¿í~û…z9\’çÈ uO"3ì]Ù~ã}¾A½eãÌŠëÚ[ÎÎ"püd=þiÔk$X;/Å%ž‡ùý˜¥ŽÄæSÔ2B›ºÒñ¶´s§‡t§W!.ò¼³œ¡ŒDG ì’cKÅÞoÄ›Jï\†mÁ–Z×Ù1ƒÏºuC:’XÐv²„R°·N‹ë]ä·‰ì´;žó—{b.öx4cHEe›V¹v’Jròã³½òÔgMÖÆì¦ãD['Þ+Ÿg-šể^#ÝŠ‰Ü­ÃZË %Bba<ׯH™Ó0Ú$¢Ä•ï(zIK æ!æ·v¡Cd2Ï:Í"äM‚ýSa‰ómh&Ø#P©å.Å™ ²¢ÉÆUÚaþPVÏÿ ÇÈP]Ú·mmŽ|» ÌÊlÅ$5бTdS‹ÍH­ Ì_±4”Ƈ )9|ŠbéýÔ/ÌÂÅ™(Þ™DçÈêx(B褒i&þìA®Çœaù?Sž×û2éÜ‚"0ºÌù6pûï¨ì6ƒ;^Dmðu ò·óp8óD±¢ð´±íë{F v‹Õ²Ë¨&tÐañø€ú!Ö”üv‘ôàïoÁ§[ì$òÈO¾mÑßoÃVF-±ñ)î‰hz‹lc´;uõµ RÔ›úø<œNÞcõ»Q?¶…É Š{î"Á8çjŽ0µTÍØ¾É æµlåSòXé¨Å莔AjïpºÕW¥Î÷Ùbµªúúö^ÍBžÇdôIË)¹0‡¡t—7OÛÐVз^0À:0ZdO.œ4ù–ñž óàcƒ¯×4³d“õ/îc÷|?‘h>ß¡ŽÔ¨9þê9üå«éT˼ày`©0èÒ"§º 9­:GØ ÐžŽ/<úp—G{8¦”bÈÜö¶Ò´àcj\û ’¢`¾gFú ¯é»#ü©Û~ª¡Ï±GS×÷žçµCWÚ2l_¯å‹e©ž”Å&óM„L޼Çõò\?*•fC–Ø"ë]フÐ3µBßšž¿ ñ—ýyöc5‹4vÖÒøÒ5ÿJ¡‹yÙÃ*²O-)u³DJyðóffZùÈ맇aæ¼{«ëk]Tåå„ …t(7¸¤®/8žrMqòXƒÑ¹8Ì(Œ 3޹Ï9š>¸ûëçw/ñ´'w”çú]?¸d|K5‰!qm;xb†j-5x1Ó(„”Y—Siƒ—Bj¥é鹘:f¼ÉG†‹V†£“˜xª0Þ‰õÚ˜~Ó† Z„Ù…K„ôR„œ¶ŽtZ]ëN])¢Œð|ƒœוí*7 Q*T¡- É6¾ßJO-»Å%Wµ_ Â67ø*WêÄÈ4Ò¦ò¾õ1t*œÑ5Á‘ôo²B¤¯3†æg3~÷t¾àŸKÑ*7SÐñxIÈxzÎNuç㟜d1Xê~bÒ#Ñoì~pGµƒ¥ýÀd£fË{©)2Ä`Èq›Éª×moŒÈ6§Ôù!à5È#„´Ös±¨u6{ä¢þS8rÓ e—Þ‰¯:ï`~Ò| «èpr–x¼t™iº”1á¬4z½#¡977·]Œ¼vÎñ-MÊè ÿ‚ΜÜx[hmIØ Mû!0Í“ß0û¶è§jsÂçâÈ÷2‹ÜCY‹_÷Jr0 wˆ<£›šÁ©fÄZÎr4±#jÔ‰G«¤ˆ¾#áq×ÈRØ+¹ÉŒI§‡4îùQ8Î2.Ni¡É>8ÆXîÂã–·ê±QÔÂÒ¤+Z› B““(MÔ´áTõÍ“ÕxÍL€(ÎUœoê¸q¬™‘ Ÿv.pÒ&¢&7.Œ~ŒÐcGYryL.òs6¡¬24±Õ¢y&·ÛyûÔ@ràÎP²æÂ<Ç·#Å,<ók¬L&šr!§Q¢»NÐ×ã®§Sá|Ù[ ,ƒ9XQÏnÝѶ™í+ JÙ÷ªNµ\F‹ô>¥ì¿Nd“-ϧefׯ H׋Ö8êVºuÑà`ªb[LÉn²@ô›¦ªbóyÙ'á]©Þ?ÍéÇ qá~m(qã‘¶"Ëõ ÁâBUãc|3HOÈâû±˜ÅŸoogètÊG Ãĥ能>ÄR*æ'Á#È(eIJ¸UW$ãÜåñ Ú8]Z$IèèíYãSæ¼µëœÇ‚<ãÀå!¡+’|’CO¶'­œû|àoG/«UJÅÃmÏÐ]Í¿sw܉~ªÔI©ZD‚|·‹©#6Ž•kžÕ—ɾaÓ>Þõ0a72[)q¼<ÆÒÑ’XFÍ»pž£—çEÏ¦ã ÆNÞ ØrK[m»'%ðr2¢¾7Ñ5o غ7hÛ•ÊäÙÀ×ÿr|ªgšœ0>Š8Ef”2Q1ü´´ »‹p±%œX|B·Éܱiýþ]6z–jEK-ŒeÓ4¥OáÃr¤˜•ÖÉÄS‘¼í›ZeAÀ£¦3=Så{7Ä~ôZFôÍJ‰n^¿¢]T6?2á@öHŸHN‡E˜Frs̾™zåœæ”Û©Ü3;UX¹£ ´ ef¿,¤ç°fÙr°Y©éKÛ¢|Æ2½Î‘Œ#Á/@²q¼o#WÂ-?oWY‘Œú„>)Vßwê x_‰yMyõ¸'ùðƒüêó½T‰FÙR˜É[ؼ w;Ö¸z¼?Ð{~ EiVw¤Ô6N4°xŽ"6£³dcí¤ŠèúN—Óðp&MJ¡M9iÿú7ãK—$nóu%Ðã°œÐòë¤%b×K’®°ÇX5‚1×=æð¢T/dúPÅ€Ó@æ6ŒË·°“”(‹±n¦>/N‚ üÐfêÈ^ašýgûÔç“yZË¢üç¶WÑj‰ô#çí#¢Ë+Ù(KþPÉ9§¬Ö¡‘¨ë2þãÜ-¼ùeóíí73)±×2ßh h«\ð':$= ›Šß¾‰N™Òçúa~VéH mÀ#iÏĽ­~‘ÅßDý\ä¾Ì½ËhUgú€“¼#¸ÒðöüQŽMó;:»ìí»®íÅþç) b†Ö¦Ls[…cÿ™Bb•2»„{Mݯ¡¯5E xCòðbV¯Ò3¬›…ê·Ü¶+½‹ƒ|çáÑÕ+s01·aÜ×–ÆÏ³YÝ«‡uЉAÍVá÷–†ÞÉ)̆-O?­öûÆf†gY‚ÞmüPZÂ3v¥ù@e“È™í²xÊ­+ì¡Å§CïR:GKYYN3ï`©{ˆæ5“’ßA‰ ‹«…«1(ïß0ßÝIÒ­°µÙQ¿3w:>Âò?$(7×¼ —ц]¾”ƒ7\UmTS?固ª„8uï]¼ḏ̹éÿÑGíƒÿMx¨!!cÕ•è0c(Ú¢ºÊ›Æ<ü»àÇ=—·¦B"Î.”⦱M Àùú»…ÖÂðåžÈÓ/#N'…ͶÌZ&û¢"˜SÖ;Ë6nXtVƒK\œ4%Zwø9bü(G-YýB.š2 ü®øí>ì ‡ô”G+O#~æû÷[t_~ Êï: 椭¥ü9f,á.?µÍØ*ELÁ›„ÍVHõRð±ú3X [¥ §Aðno/r¹˜R§6ΰåø»™/‚çTDALÃs$íÖÔ‘Ñï³÷}ë+S`ý<™â¸¸vC›ƒ5wõ¹ÿ¸üF7tÖ2ÀCâ]øîyÈb"2=¼¿V@Ôç MøÒÛxê—ê ¨ŠÛ±XB3pYÃe¢M“ä¾Þ?0ÕæVœµ7Ž‘ ÿƒÜ ™É÷Íìrv¤qxi.|õ)Z³Òû™î¬O‚†%ñ‘$8ZâJAãghøBSC¿Kµtª»’ˆªD;k(Þ ¿ ¶òg<Å:"»¢¨…Δf7}-Ï[ããúåvç \ìåªÅ#²ûy…[ÆùqÄ]µý®Øfß_hJZ6Ø3ÚRâ›ÌL:U&®Øžl;#9DNè¾ú)0{¨mFH£(L çPô‰Wëá»7ÜIá* Ö$bdf#A¨"Ï[ðá·bE\¿ïlƒ[×l\àX iå’˜dšA å†zbª)rGc_iÖ—€!µÉmÝ •£ÅÞMç¾—³¢T1÷b÷¼F¸k˜ Õšº]Üi|°€*g¯/¢š8ʵÔX„ˆçP‰;¯9<[ÜO8Äk8ðCƒbAE?Ñs…†XÝçùw¢êXeë »Ê•Ï*RŒüoÏb»¢AͽªôGuú,uø çÀl;sV²ýsb‚)œ’ª~W‘4 vV䣖þ¬=C´ôÓá+êºf}é¼ÃÑ=àî¾Ìv&t=ê_ДXñLáB#Ö‹²ÍO¤d„Q%ö¯m"ªçǶ-Ô†ü4ÚfïXåýmPîû{ÚXäÙ‹«÷òŽôèƒQ{MïÏëø1áí¬­­PF‡VqæðJ6žG‘ŠÄYÆ¥wÎg Â8—¤ìÕ¨AˆŒÉ’]ù»¸ 1ˆ©Òl5«^pT1õÓˆÿDÇN v‡ÆbkÐZ}',U(ï€_5ïû´ð¨ âÆ]¯£ú&¥é„]¨ÔÅÝ •ñâÞô•T¾½&ïídÉÐ'¾®  –õ©å\áuÝüŒS|c³.Œv½úÓÑÊ›è¶û ‡|õŽÜb†&–…)uïúk¤Ô¯I@êê®y®ZNÓ±_%açömÇG—YDþ/¸áXue)çæð;ËcžÇè­bV¬,nŠxçjTÌñ9S ´ˆÒ†ÛͰ ÊjŽœ„keçy… 3Ø÷„d¢)5.ÉVãi*Åß¹‚-‘GYL¼yð‡ˆJ:ÎÆÔÂΈwT½ñH‰V’z ¯$¸„™ßNÕ‰0“Üì1ZH²ïtÜfvtuƒ‹E5Zi vsƒãçYPG¶ëtôÙÐÌüÒÅÚõŽ·ø¨nR\(‹§…ØbH¹ZïË ÚAíØ ;4á&·óßè—öæ{.jõ‘‹Sþ´&)­º8ŒÃØÅ?Ħêìnûg#; ;JüúsžÝÈᛪ, .S;ò¯àjºëôÛbß—˜5eCZ8pmµh©j\¢|g%´5§ˆÇÌ]ÎV4;»ì}Šhøi¦ðªV‰¾ ÷{ÓÊ!³öªÀ¨#›½»•o&Ç8ב‰hÓ_ˆ•hô‰‘'5ør±o>/°@à¼eí·±£šhÖ­TȲÓ÷©^‚Ç…4/hâ †=ä¸?/ȵ ýÐ-¡êe­6– LŠ+d%A¨PaØy˜uXté´wµu ósOfà½g,2ű3OsÛ}xï“^ß»¬w‡ƒîñ,Å’Ú£Mâ9¸Äî§){65Þ°ÝØô¢mÖ8V g·ö}Ò{GÙ:e¬RžÀƒ{ÜóÛK8ÝïA°V^–vñÙÃU‰ VÖ¸'Ì(i„&Ð\–)`>­}ýÜUÕ9sÄ?Ÿð¤_ÚT6ôèSv39^„Aö1V#Ò„áªÖÚ®ô5q–xë­Ãå…Äb ëå´ˆ¦]©f_m¤§V®å{³¸ÈÕƒYÏ4‡YµH¼šç»lšoƒ÷m«akÒÞXñ7‹ÁÂ¥À: i1”5½d¢Ó¬ îÔ~ã‘9BJÇkU€Ó±tuU‹Ìê¤8 ¶@‚hSµ9.Õ* ž«'¹Ê|ØùžÄß?YW޽ë*v0”¢Ñ_¥Û{±<Öýޱ™•zq2¿gtœ,q)¤`a‘KNÉô1÷Ù‚ŒŠ…{Å2ž«1£ŽBÌŠwÅ=Uîúé™¶ï¿%Üϰmvîƒ"ûJk÷ö;àZ&‘J‘ª›Jïi?ËŸ `[øY`AzrêœOùNr[©gK“¸ËË‹a¨Hrû³tŠæwRC¶"ÄéLH9%Cø¾÷½ÿÑñY …LyZ"ðDkcNª¿¨lêgzÓU?ŠB+äÆßˆ+—{[­0S…ü€èíÞ=Ÿ)sI>Š>|pfÎüòL,éXóN×ÙNq9ZNs4<{‚ÔY¹[p'Ó–´M%…ô$tFá…=ªX¶*Ïñ?$)†óñðk8Ñí`¹‚©QW,_~|G39mgš } ™˜¢Þ29ÔðƒlN…5µÎr+Ž¿ìÚÍOÔ¬> Á¹|-(„tcy|ly3Ù0šÊ¹çµ'áN„ÛcËÝ-K‚n†eÕúr¤—î†ZÿSX2çÈ2òC’Èâ \Jìäz§ËS…'ãbÓÀ-«Zïtt{„‡AÖ.º ÐùÍ9• ,å¬ò>@}˜Zâ8‘Z¤dÞõp‹íR½Çš1xâ¤M"IóE°RV2¤1¬aVc³Tc—bÖÃ&ëx‡#-1ç|Üêê!e†¨QN—¿V·È&LÍTy4T,íNI;ņrÚ²Q!§ö g?˜Mw÷ÈqÓIüŒQ»§fª2²ìŽ'9à15p†•E¢hbÍŒ“+¬®G̃ À:·Y{V¬¿àZÆ)qýh;Ô”˜s¯ µš°o7:ØÛZI:9ÑAaG à1¿HJ㛓åšÅª;Ryv†æ=¢d+²/6è©;ÞüÜå˜^HzC<§Bßśմ½vËÏ÷îíó ¿´)Ô Ê ƒØÈºSÊ¢sç½ùÊ–8Að0€À3áû{?í; }³þ„ ¯üퟪÝ߉ŸÂÆŽ9Y{ˆ$ÕfzpþúÕì,Zý™Í 49Ìv/ØîjmãƒEZ¢ sO˜ÏZÐÍ+Ê}’9Ÿ£VÇlxš¿ ’,k°¥h 7|#A"{`œ(ˆ¬¼¸j5•ˆªþë‹Ë©r¹|½b—ñU÷7Â5Œã®@I>0Vu:Øï“)‹Öe•trËO´Uœj=;Ô8öŸÃÂÌíõ­*øÚA‰ I§¨µ±Ò`£¾"j·ÛèEÏùÍVáÉØ»Õa÷-Û¹ÝûÑÑU”¥·3ÆCÜùx!úe3/™`£Â.–ë^ ¼fŠ/PåmFés$5•0ªŸ§‡üQª™;ÁW7„Xõ.+X”ʶZóÒDBdÔÈá¿G¬Î?eÅj\>6ö‘rd£’ÈÄÒ~´§O,iŽ¢¹[乑ÖGâ%dŸŠ¥o”Nűq;1¼ØÂ~¢Ïˆm1;ütt…lㆮWz÷•˜Ü1êqJ‘^Á§MíqWso,…_¬”ñ!˜$ºß%·FÎ;Ñ%ž¾%'ø£Á•‹Û¢¥á,h‰JÁ˜uL©€j­yKܯÕÒó¿ãÀKSq>šÍþƒ³Úƒ@PÀÿN–·¯qkC$ЈÀ~@ˆŽm°Â¡Bb0›­õPí§¤  v!ðs1r›~­VKˆÓšË穼Î¥„ìûŒ3³¼À V~½|)lUÉL˜0qó¸+‡ØOršGÀz¸OìQRˆ!¡NÕ׃rÚ,ôX4é ‘ü+‰Ex¢zùf(¢ö—1måŠs}š]†äå³Ot8&öþL¦olRåõÊ}UhÉ©†»“®±Š‘6?dz©·D2Óq´ôAfû¢ŠIÕ¸j‹¹Kði9Û Bwìð©¾è8jHÚ†@Ù$sk¡=à†é·~4šÙä Éd9ã†;®b¶i‡¹­1ÆÔšBv(c©ëpѱUÏýêˆs›Çò»¨‹õW¶°)ŒòØðIKTp_ËèÒO†azÝ>£õ'¾­\š¿æPé-}Ž&ŒGh‰óVK° ^ùü§°$ gÿªGjGC@,›¢4’åå>:³k7@âä–té—u×as¤X )ëâSUx gž'Eüホç—Úý˾³Ã/¼Gœ0ÿ© ,ÍxßRúr©øô¢ß3l«\{x+$Žô²Òa¢R¨y†'Ñ=ûuÎìôææci¿Ñ› JE›4.láÈ>i/l[ÜHz· £™ãôIË-5@SyÍœt¾ÉœùsÂê™7ÞŸýN¢¡ß¶ èvPCXãHÄomýu~`¥TwÎbƒf¾}ÍVKŠy êàߟ¢dFÐD²íàîÕ»ãàÞ–,ŽàA51mN —%«Ñì}æí»/ru§øÂ¦Æ€“§Ñ aÒ•a¾Aè;ÁŽ+ˆ]›€£*wžƒÕOãMó‚)·Ï/‚§Ž?5Kÿ„éætÊÀÙÂv8õ„H r½sbbA ¥å¬~^ÅEçË|@à )™¤h¨¢‡˜ý.XÐa®•c 6Z±e±‰sR–ºÒŽrÜçã2ÐMržzHøv×ÝÉ\ãuóqó16*X ¼Qp@&¦\Vž\Õ¦²cèÝ g×)X`!9†û»ùÖŸæÅ‹w_b¯ˆ†`=N"CF$ï°æj³›ÕÞK÷º×ÁK¹E:‡ŒèHáͼýõÆò›µÝç/}ЙæãgmÉÀ¯á´Q#n‹úÒK)˜¹ˆ²©ç0rÍ;Æì*¨k_H¶t¨ø•BHj1 +…Å+»O*'Dʾúš=,\vvœôóˆ ¾oÈEšU3¾I]¾„ (®`ÖÝ_OÉ$ÏÕ‘†¯ẙSç{%^ààùyª]Ÿ cá©þ0¬"üÙ0ÐìX›”÷Lžj¾ýëÂS=­Ùs¹+òN!k×uÓ-Ø õâO„ñÙ¿ç.¿éª–Óv Š ì=V*Œ§[úÏ[ôúÝá*)¸$áŸCâŸÕÊî½ó¨Ø:LDß…L²ï+¦cw¦PmTçaIU1ÖsY–ù=Ç?6=j‰ ¸ÝÐ]¥åYF 6fî^TF 0ÈEÚÇè<©¿¿×Ÿû™¨qïÈÎ& %cø¡Å)°ß*T·š'F …û?¼U@Î ®=ì­§Úƒþ-/½êÌ[_ØöãM]|0?Z–ì¼p„„ Åù ó÷©*3ºˆû22é-Œ¾1/VwY;F9¼Ì ΡêàqFjɸØ\ çRps£,Û|;ÿ@¯Ò#±IŒ+€F…ÚöÄÒ/¸ 4Ý·­E­·†x1,Ï«?ÝÆZ¾ª|ó=+û< í¢•¶ƒ¼ŽN T¯r-[±¾¨†úÍÝw[ìÛ±YV [ÉD8-bˆËr b  ‘„¸þNþ'WgÑÒÂ|`Žªõœëy*5qГHˆGpý>™­ë5Nýº!½4N$ú'ÝËËòŸiXd#ħÁ4Iûå*G*Î2Ó ‘—Œ0 HÄ´µM•|MðAÆq¢‹3“·× >Ý^7V±¶æßñ–ÏY]k>ú ÷b±é͇hvÿxrØ>HøŒ;üë ‘Q¹á)’ÐM¯ÔÕ¦iRBâöCD`ÇÌY…ù–6ÊÙSJ¨óß`{9íõZS—iTÛŸþÀ_¥s2飬rƒÞêd7‡*ÒŽ÷µ´Q»YÞ×,—žŽøv«gVò'¼I}(¿gÁ{Ý!rzâ‘ØQK®­òxsä®;|s–üb·@ë}øÁÎuÍ6j•âÀfsè`pmÛÍà¤gžòã†4æ$ž{e»m“9]gQx†vƒ·³gŠ${’îÜÿ¯4Û endstream endobj 4193 0 obj << /Type /ObjStm /N 100 /First 1010 /Length 3999 /Filter /FlateDecode >> stream xÚí\YoÛÆ~÷¯àc‹"œ}Šq·i³ÝØÙ‘Yfl5²äHr›ö×ßïÌp(J¶h+a„‹‹ !5šåÌ7g›s†”µp²à…NB)*èBZCS¨`©` £bWXûøÂ¥¦PPð¼ÜJ*‰Bˆ ÷P’ )©›qmb?]•L¹5•lo¥€!ÐT>’+ÀÊRˆHÅ™ŠcQç,Í€Ö‡8py„ dJX¢Œ%ƒ§’/”ŽcC(”¡JÎ e©UrQ(O­’KZ´¦ʃßC‰¾¦V S©€4Í+9n–x 9H9âäøê‰ARðÂðØ*Da„%*BFê'Ta´´˜CèÂË©ÎÆš‹6^>á ÒX_XžZCael•¼°*Ž•¢°:R–¢"ÞK© ëLÀ`¶õ`1J¦p\ÐÅ ©¸ÂI’ u:µ†Â™Ø Æ:[Áçed‰„Ü$ÇóÀ1‡Ò…§)Q2…W&JÐì@IóÂ[©8”,OŠç† è J: TÞE>kªsq,úy+0‡ÖEP"Ö™"8G³iâÊÅ!E¯b­'b$!™èÆU誰ž:(+xOˆ tTÚ(R `ôKbyÊDÌ…þ å ƒ(„ ž†YRm¥¥:pêk1̈8…Å0cH›¤Ã0+H‰¤¦¢5xjwÜ‹½@héN‹ÀEDÈœÀ]8EcÍQƒóP(,ã6XŒÄÃÉ $ "@09Cuö‰½ŸÞcGÿ\T»;™L{ìðòx¿?M>î±ýé줚½ãð ü=û=d÷Þ‰øe=¯†‹âL¥T˜˜>i ç%>TP¥× Ýî?ÿ\°Ã‚ý:=šì~ñÃÅà´*Áé‹_~ÙÃÿ@‹I1«á%'5ã¾$q*Êà6ƒð}bÈŒP¾ ´/¹Ð]lýA€ .$‡§Êè…”.-Ì@I] Þ…‚Ûþ…!=/œU† `‰;’†ñPGSÀ”>B9^zel‰¶Í ´î“ºtØbàäKãH)lé°/Â!—Ú›Í LèQ)x(á·— ¤(vŽAXþ tfaiÿÎ:!xi:¼„—=(¶ïK Ÿ­‚)# ÆðàKB¯¶uÛ€ÐXÜKnáúdD€aÒ^u¤ j) “…×èp*ôï-±SÁDLö—Ââ+;ò—Ù>…ôp¦±OŽúݘF¶ÏDmŸ7ƒXq—÷ÉýšçyÁ^¿yKÑ6ƒè›1Àär<~Ÿ;L'‹Hô@›KÄQˆ)\H_QP8B_0Š=›M‡‡ðìÙýƒ‚UŸÅûU<¬=vÄ«ÉbN]O+O/gÃjž‚½X÷¸: ö§Ÿ‹È+(~$í{6˜a4ÌÓÛÔ12vމcÐOxbÌŸ ˆ…ê‚É› ¹sh:§åÄ`¿.ˆ\¹ rAç‚É› .|.dÊ"S™²È”E¦,2e‘)‹LYdÊ"S™²Ì”e¦,3e™)ËLYfÊ2S–™²Ì”e¦¬2e•)«LYeÊ*SV™²J”ß÷cÀW ìNÖè2€eP8ä(Vc°ûµïÏÁÚ’”ÄjYR.ƒå—ðH%Kï:"Ó£S‚`ËÁ¤J”œS°b$c5gìmýÁ×rb@îd…/2.¤(¥‡‰Y8)äž]›DŸ(²h‡Y¹+9òMb…¦,⼃Bó>Q`VÄ*[hÀLJM):R:öl¯z­IC ¥Ž°y„ªŠNÊìhÃlP(ÄNv B€Ú99˜%¯²©Ö7‡ö®4º¡ƒ¦¨­T;rš®±R„õvf¥ÉaÁFb¶™–¶¢4ÞïÈaeØGè°¨¡@í DòZ˜Ò#$ÈžBKƒ¼\íÈSÔœP^”!iâ„ P³#FÔÖ¡àèd,›¶RЛ‡29ÿÒ<”‡ôŽ÷0¥m‰¸1oaÊpFïj ƒ< §ƒ ‰€Y·/µµ0`ê|ÿ$¥Àf‰{@Ú58L¥BBz LjG h£ŠGS0K^ qª–—ªóÈTéþMBiddE\_jÕyp«û7Q$GÑ4³‰R½îrÛýÚhÍ áyi—¬@:LßìŠt$F³[::ž3ÈEèÁ€¦NGñ ttÑ5ºI‡ ^Šéf}R—Ó°|RwcÖ§•æ*‹=SŒ•¨nN€ä78@6èèYl> 2àï ­dÿT ˆú€êf¦ÿdãTI‡#ù9&ejG¡•FÆA&Ú€€£ S¡›Aè~éPÂ`»pô$Á&=NvÒéô˜¦ÿ#dƒ=LÑ£ît„³S)wÕbÒ“Ú¶2:Ñ» ñ l[¿´QÊ‘E kû÷V†#ãð·Š)2—»òV5í»¥È:ˆ]ƒ0 ^‚° Éh'ˆoà­46G/hÔÞJ#úwÜïÊQ$ÅTðÛôAVLÚN½2»UL—¬mž‹£ºkëèUFá<²+(À¦Ç¥‹˜eÆ].Söï2—ï(D—yÓ+ k¾ŠóÐ[P==æé~²óÎÕEØÁhñþ¦¯–ó¢Ç  9sN¯× EJez~³%G&è®=È 6-RMzÆqý¿ÍÆ #ÑQô.’±ñrn<È•9â»Etžëè“J=æ¦+Ó!ù"¬«¤¹V.Ä™Ôf•opØFõ^Årl§Óùº_—ËQZ¬«ëÜáÊ´‰o­ÏÌç†×u¿ø"˜ M[¾"Zã¨L¸’¤E„B—€GVJŲD–Ce2Ñ^â±ÍðTC}6I2¶Ó 5íâksñòª“re’4Íëè“®<æ¦+Ó!ù"¬Á™8Wû¢‡Ú½Yã0QÃd¬§7Òb_ÔSßܯW—ƒÖ©®®Ï¸‘ó‰vä[ë3ó9ó:÷£OâOnËWäOk\Ä»äO´Gxlî¾X–nsœ”½¾n?ìDãíúÚ<ß²¦Õyù+-E}¿¶«„xSOd⮾{4°¾“.cJ[ßS¸TdÑ2ß[ ÓlŽÞù@Rk‰Ÿt ƒV„k(Çž´IÁ¢5Í£5ZM¼ÛD‡bCqÈÔ±£¢‹äDq†¨v4ˆGx xˆS ré"ø4öhÀö%)¥n¹ñÞb™M}Í=s_E¥»lTÇ4Œ7µ£¯eU»‡¨¦R~µ{ ”¬úôúiÛ=IµçøZ÷Ðôo¹ª\˜Æ†;ýCÔ1—~¡È èÒ64Œl€£[€›²”©ÚéÓ×BX÷±=KÞ4‰²ç(àûu«HiÍ+¾ÇNßc§ÿØéû6÷µÍ¡ý.*}&qE÷X#ˆ"á-M…­¿¬K1^†§X{yÞ@Iüýj>œ.ÓYJêŸ ÎÑrøæàÙþËŸî=~üPp4Œ§óB§ûñÍÊ;JwâO\¸g FÜéýJÐóÞàâ·jtz¶ ÷¸Çhj»C?Ùbƒñhxwr:®PƒŠÃEuþ¼Øc¯ëQZ 9Ìèüàv:«‹jÆÆÕ|þcÂq0Âh-M<)X=HÙ¼°W¯Þ>z„…¾Ù´0xÓ;ÁÒowYšY. «ü²…i¾qaƒ9–5š<,ÎØñ`øq>ÌÏØxz:ÆƒÉ ›ÎGãÁlmÕz›U¿üÏÑÃßÿøéÉèüørþx:ytçyuzyýòÉ;»…l½-±JÓ^½1®½zíVWÏ›µ‹ÖÚ¥m¯ý.Ûg÷Ø}ö€°_ãÉÖïìöˆ=fOØSöŒ=g‡ìˆ½`/Ù+öš½a68¿¨fsâÊ`>†£Ùðò¼á!,Øq‹‰Ç³Á°W©4# ±ø±Z4Õ(§†!NÇÓ îççvÂN¦c°U,bgÕ§ËÁ˜UŸ‡ãÁ9ûÀ>ŒþªØ‡éåŒ6ÊyÆÎþ¹8«&lÄþdÙ8j+;g6M*6¹ý³Æš­¶ù§÷^½x{>w°GÃsÑo׃€ãò_ì¸î„†9’odÎR¥Û ½ªÎƒZ…å]º Óȼ-öe¾5úµÆ¿­vµ·Ï_<ýí÷6ÿ:Â$ìdw¤¸bM­Ä*ãÄ*ãÔgàÛ:%Õ×Jo¯qû·„Ž/ÇãêæxhrBÁÆ•°¨Ãìm_UóŸV#â¸øeYúfñ’Ý*–øõÁó»/Ö5«ËiyÒ.úkÜvµœ–÷[è×¶Úu۠⪶Œ7éÈ‘Dwxœ…¼xÝ5ăÉpz2šœ‚ߣ*`¡Ÿ¾“iH²óÂL- OÖS(ßb] òµ‹lòš¨ú‰‹5£êõ§µüÈ,ZbÒåh|Ñ£žGOvM/BæQLT’pr2ÓØ’ªüâ¡k”dE-Vr²FAÚI\K0KnoÉùÿ¹âþ?]Ý–Î;‘i9<ìÚnÅWÐ_ÑÈÎ.y³÷Wí¹õ:U"(ßÌ«øúÕS’óOê#þÌô`4›/ÈÚ ‹nù LóÕèdq6OBäZÒ5ÿúaÆ•ùÍúüª5½ 1ËùÍöóou{|:ô‚¯3 ¸‚Ïtãm|º|7FâW0º-x¨zÁ¸1Ú½‚-tb3m7bD/Ø:ã¥u|n ûÐöVøèÏ Ìéï \ÒUó—0WmûŒN°õç×Ô\ýcv—òµÂÕÀ×õ>‰7n/ÿ9Q² endstream endobj 4273 0 obj << /Type /ObjStm /N 100 /First 919 /Length 2164 /Filter /FlateDecode >> stream xÚ¥X]«e9}?¿"@:©¯$0 ‚/ŠŠø&> ØHÃ0Jwè¿we§rr²ÍÙí½§¡ï­söN­U«ªRÉ­QC µjH1á¿Æ@1ÃÈ8IH)Z£$”JHÄ)cä²PH–j(RCʹ†ªvK«°’CªKRnn ^¥œ‘Ââ"8Ã’š©Uk dßeð¢\cH%Q RᯆjÁHvc"¸JÌYšS‰^¨}dSX¢¸yû¸ƒ{+¸”­…–A£äÔ,@VD ÁÇ’oÒèr‚:°JàöV¤Ö`†¤Ca”( I¬4 Â0À¯cmU.0ˆo–%År–HXÁ$"TƒwIí‘Ðð£`Ô`N$Á¼‹´GŒ—2·¤ˆi¼2$º$’‚Fx¹@º–*©pfIƒF(`𥠉5ä]‘9”Á¹¥Cì´"÷Bõ¦x¬Ú*Rª!ËŠ¬jÓTóñŸñ£=,GÖ± ·çÍi{œ"¯-¶d‡3#º)*Ϙñ²àe.5ânBHã‚—›H`qÂË?”ÑáùÈ"UToŽœošP¦ %‡pC¦æf†‚37Õ`D 07¯‚³IjúÁ€Ãö8—(0ðrQº P[ö`‰„w`‰¨$$j½ƒAž`aH'°H{„á¦%/+¤XLôöÝw·þÏ??†üñï¿Ü>üú¿üü5Ø Ÿ?„uTp º}øí§¿} ©‘ÛÇPSî¿áéø-þ=´>~çãù_oßÿYs’"ö 7²ÉÜ ñŽÐû‘°z8VÆøÆ¸é0ê+Py äA½Œoî×ñM}A?l¦îÿ†áØV‡QÝ`{”¬P2ôn¸€ÉfßôðÞ Õ6âà ©S§¡³GÅÅëCz}¼ª5Úᦵp7(º!âÆH£õ*}'”%÷gâmÃîFñÂË#ŸØM^€ÊÙJtêe`b7pcTi)òT¤‡›šÜ_eªªc޽"Õü¶¨tªe¸ñ桘¢dnôM†Ö÷CáĢ¿äJâ€àRW…h/@‘÷‘—"b§6QºÁÙ • Ø†¿Üû Ø®¤˜…ò+ªï©¤ž4²8 òG6"·ÎëPæ›+å‘¢ì-ŒsÎx$㑽-W¶@åU|· â㑊ï²TF–7FµB•âŽkÆ€ª>©ò0”_€ª^ <¦0G—‹“W·ãN7Þ8¯(&I“|v0ù†Î<0™^gøèn|L¡‰ÄêqŠK–7ž-V(ñýGó°²Ë¥C·ÑŒÃé› òeC7óÃiÚc°Uö¦æ¬úT.N½DuÃk· W² ÿÇÑçPÕ¡$–îû’¸Q»nBüÍ9ÏK4å"{U¥]PýÇaÍYúöv~t\kû™eÌAӸݕút÷Ž;®µ/`óóqî³Ãëí¸÷ Ø|Û°J/`w羯ùÄ?nνuit˜²kó7°R~Šuܵ{;èqÓþ–CKÃÁ8'ß+÷©qoÞ{ž\þá—¯?}ú¹yýͧÏ_À­ûݰSõÓw$¾/ýôõ§¸Æþø\½À=BïM|þüñ_Çõ¾}ZV[µ¹š÷«ÿñß_¿lVÓ}uOË}õuÇÓ³‡7¨ô‡kðWt)e‚èJq¸í }NžWË\®Vçún„g_Sêœ÷¾|õŽIžRg¾K&# .Ý Ù¥sšC:>CÎüØšŸ;H‡´]¸6…7½\Í„ûqûìk¦ÁÒÞW_½g2…×|%¬LÖª4»tNó™t:³¥§Æ ž­]¸:…—zµZò#aݵ¨Ì4ˆî}ùê™ÂKº’Ž—vIqéÍ.Ó|&Ìlñ©MxÙ‘x.Oá™÷«;EÞíH<…§Ë)-U7„ôpyÙŸøz¢™:å'-mB»]f~(íWwŠ´k šR§ËƈKñº§ÐÒ”/ÃM3?锟â ïÊ1Íüĺ_Ý)¦]mÄ)u”‹pÛ_z}­ÅìÄ<ܤ—áFžq¼ƒ8dù_Â:FÛ0m¿ºSìW»ój«é*ÜB‹¯üî æáFº WÇ´䘻ƒpY!mCxŒ£¶Zö«ŠÚOXçÕVÊ]H7?žгpmæÇNùÑ¥˜mWŽ6ócñjµ–G¶««í}ùêÂëecˆ-iˆ‹tú؃擡¦:³%§Æ]€2¥–Ë­Š±t-fu-æt†œù‘S~xW€> stream xÚ}Y˪$7 Ý÷Wøµ$?a¬B!?0‹Y „f&!ŸŸã.W©ä«öâÒU·-ëɧ¨NC ‰K(ŒÄ)$j¥ã3‰„ϤHH±„T>)ä„ÿõJd|J¨TÒz¨µi9´Dø¤Ðs Rk ˆM¥ .:v-=¯JFÊŠµ…‰HŒÅÒ3.°8S|HÂâ\‘'aqIØ›S¨‹c1"©µ„±¸#Bð_޹˜ U\4„“€_”‡ÄŽ @ˆÅ‰ë“.çÄÁKL¸ÀâRJ`°ã J zÜþ=nú­#’#.@ 6~0 %„Ý9#å‰EÂAÜPë7„ƒ ¨À£zäRû€‰Å­æƒ ޝ@0ÅŒÅ<$‚V ‚‰:öÁÄã+LR°(SB(GÈqGbf|EÊ—Ò£4©B jèF(dÃâ^T±¸7´d@tƒ-d_¡Äy@ ÈOA k=@@s¤A³œ‡Œ¨H.Cs´O®€I‚Åmˆ&XÜF§0wT}´"ÀÎHShô>•„ ÆE/Š-(‚T%¯@° k¿RP#Ð+»R±äJC¡Á­t4%¨ák øª¢_ `èì„¡Ç@«2ä«*Ö%A©°."bÈA l5”ĺG'tK}|øðxûãË÷??C °ýþxûê´ãò·O_?ÿõý9zÇý×Ïÿ>çqÜ}üxF{^ÑÉþõó¸{Îô»hÑèh¢GÜrS4{ÍL?ùúíûìí—Oß4ÑÛOÿƒ}~à%%:èLIÅ>“Ì”ÉLY£Ù> Ró¢µÔ±mèŽ3ì¶×YÈIw›tg¢Wt£êŤ¼’t#9€#ŸÑÒ»}@ŒNoHowt[6¥‹†î6éÎD/èJOš’,à3ÉLÙ=ÀñŠnÕ~BÞò>º–ÝÒÍ^õN÷vÐ=½¢ÛTŸºès&9RÖꮪOÍÛh¹näí¥…¯äïuDûH´ð¥îJ—«A’MéN˜Gé&̳t²¤,ªVY#W£–G·hás÷£ˆ%;ÑY Ÿ·ƒ‘ÈìÕ ÝrŒ3Ñ«NɪO^ô9“Ì”Þ`dÕ'Õm´“ìIÒÂ'ñ÷:¢]$I /}W:6]—í0ÒeÙvЍZ²Œ ›1®há…üè¢xƒ!ZxÞ™®; 9銌™èU§°êË>dƒ½Á`Õ‡º}@do0HKMÛÁˆ¦ÏØ›Áàý`êC‹>Ñ8FôÚ‘TŸXýè"y½µÔqçÜÍL¶™£q Ú;†::/Ž~%™)vdut^}è=M°š3/æ¼Ðmæˆæ”?Mº‘vtYG¿’Ì”N;²::/Žn!²÷4ÁjÎ\wGƒ¼ 9é¶ûQu&zEWGgãè\vdõp^<|èy8«‡óÖÃÙäUÈI×xø™è]õp^<œ‡³çá¬΋‡/=gõpÞz8Kdëál<œ÷Îêá¼xø•d¦ôÚQ=œ_ z®ÍêÚœ¶G•15¶¾{›tóö¨bµz^¬žï²çœ¬®Í‹k¯Ñ÷ƒ‹“×)êá¼xøB×G¢…ßz8“Eb=ãá'Ì,¬΋‡_I¦Z]õp^<|‰6ŽÎž£³::/޾Ðu‘¨93íc¼7ºïe‡ŒîŽÁËóÀZ:utŽ«ZåN>ztÕÑ9ò6úþ¶€½g Ž×ÛêÍßkF;H¨WN~éŽh²~s;Šû®XÔE“ÄåíO½OÙx!wËrxf)ÝvsZNj×;jöÍx+øž{˺~QáÄ1Q5ƒªµªën¢¢5‰ÊSyÎm$Õy7BUå©i}k¼ûtöRjô÷:¢]$E‹[Š_¬™ÛJx›ÅŠÛF)ªHám£ä{k_­:s+PÚù(/e¯Y%Éi‹1™ª.­]îtݽh¢¬ÒåEºä¼A¤¤b¥²Çx?`®ªNŒÙhwÞ½À˜T»´LSòÚ1iÝ¥m1Šéíd‡1Ý_s^w/0Šj'Ë8Í$Ëz­»ì.63Ì»Éñ;Á £”-FVíx4öN1Öºó~fØh-vfØÌ ï5Víh¯]4uq ŠB‹(ÑÃäID*Å]t4ÓHÞhG-},þ^3ÚCUˆ¸¸ú%Ë"!¨lL5ÿ¾ÕÁ< œdÌVú з§šy*8™Ø.Eöfßî‚tGõó¶=ÄÚ]›îH£F߶´».Í9XÕÌë¶Üõ^nïÙC}½n«mlÝsu5õº-¶qxÏàÕßË¶ØÆì«Slõð½…/N±Õ˜_ölY]yoÊb²K6޼7dõãÅŽÓýÈñ¬Yy5æ{]³SWõ×Å^¥˜è̯b÷³dñïw¿xêÏRîöǯnÉûYFßÔïJo,Ò>i¤{éÓöyM-yqdNæE݉ó„¸Ê¡ endstream endobj 4281 0 obj << /Type /ObjStm /N 100 /First 1044 /Length 11228 /Filter /FlateDecode >> stream xÚ­}Y$9ræûüŠ|T?H"if<A€vŽÝÁ.Zƒ9´ ¡À³'¡êÊBV–fF¿~?cäÞA÷ŠÖ §ÛÓÃi4Úù¤»xgîßI¼sæÎú€ÿß9ܰîÎ%¾‹wäéŽïØÆ;vÑÝ ~ÀÝkõˆÿ.MÈë-gC˜?†;Gdô 䣙÷ÒQÐ{ÉÜQb½—ð/%\¡ã‚^ÑÈé9¾óÖúHrç½hÉ£ÿ”ô*Ü…ÀÊSŠwQÙÀUº‹¸¼c2æ.‘%½²w)j[2îÎÒÆd—I[“Á-Gù.u(æÔcq¢ƒ!ÑîëeÄe¤I!ÝYf«wñ/Ë)è]ˆÆŠí â²Þ²>,ØŸÏ¢·`b@o½¸DoѪHÈ¢·èyCoÉøùzK2/Áˆ3LáÒâÒOºZ³vòà—>é( NçœÕÞœà2¨žÈAÑø[ôR1ê%45¥Ë„Ë zQ%:¡9 BoE;&ôæÙh óiJšÐ[`6èÐ[H~>‹Þ"§I ½Å$ó½%¡ù Ø º`X†ñsl¤95„A„S-L¸šw—Atl,w )]ö¸<©….%è0Ö Öæ]ô Ô.½A»Êº 7´Ó½± 7’Ó¬ÖK ½Apàùôzãë ¥I½1EÕ… 7Ög¡&°d”Þ8zm†§š‡» Ã„¢Ñ9éØvèÑá÷¿øÇrOW¿ËýÓ“FŒùç÷ý¯OäüãŸÿù¼¥¼¶t›– ƒx¾ñØÿónCç¹ßÜ?~Añô×ÿÉ_^»øÇ_>|¿w?é̾tfã¶³³ž¬Ï%¼ì¥!_oèÎx„Û½§B¯TÌU*ñŒÈ%V^%í/‘85» çW1Û+R>qÍç’=ìóx^Ë/Ô¿Ï?ö/wÿïï~ùËqÿôåCüó‡/_kÿQòd w÷ˇ_üôo½>=<þ*?åíS'•Ýýݯêßÿá)?>}w§f?ïýæ·üÃöé@§_~ûÔüûÝ]âtvÃá†LNÿ|ßÿ–.òöòô¿ÿtó>){F–õ†;»!z㜯7øìFÀ þDÔüSÖ^ú{yæCùK½¿ÿNÑ3±rÿ)?þmÞyî¯~Ì_¾<Ñ~°ÿ¢-þ˜ËG•—¦ÌõC²cñFSÅú†8á<•Ð{ô±vk¾Ó%»dxà©&Ù„Ö‚É%ר\–’òiôôÝL–»d¤d‘n% %q$Ó›'ä–ͨÑyQnbø©ŸÅô³¿“ý‚X@zîÃåT1„ròQºoÈ*Á¢>ev›²/,¶wM`¥F;¢«`4d³A“LÜ%S˜s­­¥l|qaH-­¤T}(¹7S• ï“i­ d §¹IJ#ߨUö ·†Ÿ¢¿¬ÁÿqÿéÍähùȇlÁ¤Tk,!D¤ ®ÕÛÞª -&†ëXM:?QñÏÒÆÏ`fÏ,ÎH(¢ÄäšôªoÁ[y®0µjæ¸ÂŽp0’˜r ®kð@Ë)FpøiJDö$ìGs1[n V³6rûê: CؘDd‡H€<±³+ ?iybº*l­œ0ïI¦0 Ñ„Õ4˜¡“Ý£d''{DFò‰º/©ô£XPDø+¾Ò{éyÙ3˜oÑÓÏ`eÏ\NÉpúÉåaŸЫß~úòuŒûzLýëýGüçËl(74„{×1„ ¨‰Í˜–.b\³3 A:¥°Kú?óÇû¦iüû|òwÿmm¯JA¨«ˆv¦#Ó6Xk@Ò)(NzbFºEÉÂǨ~ÿõÇÒÿuüþá/'á„;xQÀ·Q>¦Ö+­?䜽¥2Ê(1!¦žÚà„:yÔfšu:b2ÇF Š'âs¸ñ}ÈÔ|+H+Á_[Åu³± g[¶ªK:Ãþ0Y Iˆäi²CtC;HgÄlà ž¬15#á8 ̓ZSŽ<íPþþáû¯?þ[þøµONŽÙÁÏÐØ1VŽÎY+ĸk5­Å::b§«:_Â>jŒï>¨HBÚÉïó§ú¯Nº‰‡ÿ8¡9„{O‰¡™`£ VÀ8­+Fûßuüÿûøðé‡ÓŸÏÁBKöoj£¸ÒWB.ê^jbÃÎÚ¬V3B >¾Ó™ ·¢šA¾*‰©³i4’ @»ŒÔj5ëAÂÆSmxÈ^¾QQ7suÐt@H†4ïÐÊÁNCj„´Tš+Í”n5°‡à׊ù ‹Ð9Àœcä–mRqDm‘³Î Ä3Ä">:²#D— ‰ÃZû(·AåPrI_!z¬ñMJ¨TzÂÑ5̰Y$M'a=×6Š®šÇ¾nnfã¨y¤R–gÅhbb#7'MfôXcÔAÜ!;2¤ó<20¤ƒNóˆk××Lñ9 (q$ɹÂmÖ—3e;»æå¤EÈõŒ<Q9 HV] œªá©Û¬ø²Þø˜žªó5ûºH5Ú5vÍ0ÆÑ„ °XÐ ?R«µ(œiSrÐ<öus3GÍ£0fäá.Á[×»$.ZÙÖqÂví·ú‚¥i–ŠdAvtˆë a-é+î“n×Y_çuO˜WBhw]±LOH,(ƒn×\´`F IׇV䉠³S¨ÈlM§,¹ƒ(jl†»1@Ð1Y­”‰k2u»ŽY@4-lmô1\m(¹<òm=á°£Ñc_77³qÔ<ou¶ ¡ÔR‡…¡ðñ)@ ”;Er93è²x] %dëÏzºÿ¨×úôØëßîÿ«·—ú6¥ÝfùëÓÇùñ1ÿíÇÏOsýЕêcÕ 5€BKqp‹°¢À½éž*Å5l‹ÓÅ(RÃ-„)wÀ®\'Ô<\+°“ŒCÔ™öÍa_ÿÍÌíÉyÄUWÓˆVçg­I€N'[]CM¡€1^Yø¿&L¥§û†÷9ÂP êÇ5‚ÅÙ)Twaö¹Õz2ŠMCëÈvÅ—œ¨z›„åÂB Ùx“‘fDƒŠZ`YT7ÞMÂta_çlN—ÖÿQL‹†3Œ|ˆoÇ$Ì7àuW¬Ô¦w"cÏ1Žt¸ü$¼’®}ü7³üóÌ€ 80rL9‰­ð ¯ï^§DÒ ¢†a'~YH®`¨–šó±ÊÖ==´Œ"Svå¨ÞQp^·½ëfÆ^eœsZꓦ2­¤`™a>€_4¬níCË„˜)Ü<}I S/Å6o‡îâª/*ˆJ†cèÐÉÁ1sØ×Ç,3?¬À­š)ÀM-ÀK‰áÝv:÷JÁ64íÆ6”ØpÊQíÀ-UªÐE›áeeO 5²Îkrm€±¡ê¼¯JEàñÏawŸBóA†n¢ƇÈÞ-;8À±ji«ðMo&ÊH68\K@×™Fi]' ëÂJч@n0²B³ràPÀ&}Tlnü=”9èãFŽ™Z ƨ ±œ#rxÅWŸt_nšÊXù¦N:¡sFv=§ØMdœNØpµsžUV#gƒâË›}«úXA·+9ÂÇŒÂ+mfB½‚ a°LBõ–šI,©ØbôDëWÚÌ8ÀuNݪgѵ”ºß&6] õ¬†PLÈìpÏâM ½ù‘Ýh"‚HY缆ð1sØ×Ç,3í‚×"Çà9¨”Ê\ââ}‚¯NY®|S'Ú"5GÒ3YHwáê®Ëamë2˱nEñX×ÇBšƒ+jäq—: E1“ÀšƒˆáSNgïªØ„܃êŇ uncVÚ¬ÕI³I7WÏHƒ̱fæA3>±³+µ{¯[ C&TÔ£¥RMp|;íÉ2‡}}ÜÈÂ1sÐ×À>U¬®çrQÇzÀ©Dúnx*c£ZôR"l± ˜*+šÅ0&¶ð#MQ¬°C˺…¦× I)¢®oºß Cw‚’t& ·²§ÖìlJ‘`|ËAÃfBÄE*rš’»âA½+€@¨©‹+&B °ëLsK†ált•¹³5¸ÖŒ„Õ`ý3”d™Ã¾>ndá˜9 @içẠšeöˆÕ†pàvÊ›+Ï@D3¬E¿ bDT0(sì€EO«X?*2\v¬/´ä3P@oÅ““>÷hrXäèzVÆn¤ð/ºªY§¼k¹å83÷•dÿ¾î,½–‘^žAVA© ˆþT)øÚ¢$ÀꛥÓ ‡Ô¾/÷ŸÃÇ®î•Ö_kÿ¬“sìñúØ_žÓE$pÑ µÚh_u# µÍ)‹H‡(õPQ¡Äî2ê!ÝתžIjìÕOJé*¥ßä§üqò½ó °9€‡rVº®:Š4"59as’ë •ÿùøðõóË lÌžb·B]PÛSÏÛ£²Ñ½$µ†ìè©¡r(«„2˜’±J*ù=þu™ŠTDêÒlY—î xu}Õ|9š®”Œçd¡ªTO(t£Ö<>É0u-Ñ\œ•®l‚:'StÎÍ™ ëõðÒ³‹Åƒ¢Ç„8£Nº²MåeÎÏ_ûõl/üO×D2í­êù6ÉKï{:_´Õ¥Wz N¯ÞU‡b ÒPÜ âÒ—ÊtmúuK÷·?æúÙ±Lò­­Ô–’zêœÇÀ;¡Ð­)õž\L™•oWt·§0ùƒÏ—Õ)õ&ŒÁÉÍ]楌á-«}_)U_Éé¬ÞÿîûËÃc›½ïE쟩šC|4M#”ÃX×Ç€¡`Ò%C¾+ÄÒ÷’D麆³îÝçŒQ’7dué Á¶ й¯›®Jpj¯jw8¥1r—É5Öh¤Kú(P®ÆE{Ñ•³-SÕéС †Mf“ z@é¨ý_™×<µO-ãIÉÝêšÀØœž`@}¢$º|_‡´h_QX‡X„Bݸ֭a”¸‘tÇnÒJã÷ÇÌã›UsGG %«Z‰³íúf‹Pohô7Ð/Ìq-ä2WWÒ©©zNtž/² ïtMÍÔ+/ÚÇÒtùw .×PÇ¢¾±Æ¡4!QžíiÕ~Yž#Òfƒä€¢]W&G}':õºèv´È#xe@JÕtÄ{};Ive—žÉV”í4Ôžp•m‚›ëÖv&.GÿrÀ.hâ6™®žoÅ4ÔD,ºûkN,%¯ÂÉ&N÷ð 5èâ>À½Q¯W4/Zf;T½y[-M÷\„ ¥WpàYçB9&è¿õÐt9ÌÀ/ÚçÊ5Çã¨èlª±º¡6„à%êòßëí¹†Ëeô¤¨‹`9ÃŒ]ð&nešÁ¢˜êÑÚz€ð ×ØÒˆp§›`9ÝÈ›#f°¯‰Û8dâ+’Q3Ñs7A_'S4ÅÆ® %r˜ÞäÞ ! œ!ÎÇtps}ž$r%ä~Šò 5x.Ö¶ÊÅu}æêð„”]KD ÕÍöqÑÞFm¬çª ƒ@Ò]t6Wo Èi†n‘%|`=! C£û b¨ÀLн·tmÒ©}BµæõˆÅPl׳ƒÈ¦Ô¸êy,5N3ÜÝÎ|P·1pÈ |i¦…^B¢k\ÒTIÈN(¶OÑ`á •™ú…7"²úˆòž¥k 4[Nf´!×Öª©ÖÄRj]“„òL7 Õ”gÿfaF¡Aé…CË:gŽLº¥Ë˜Ii;s´Ù5A™¡kþ:Ò«.éJzâ¶±1ÍÍ~Õ¬(Ù£–6#ˆjR­º ÉΛh¦2ƒ}MÜÆÀ!3HDz¦){*L@õ:¢VábKc71—[u€îDÈëVwzŠÓµP™KAUÉS fÕ> ƒ…ÙúR Hc„„ô(ið4£…7&d!Ds±ÍºÊ’ºÝ2ÏEaF“ÿ¹ Ô’1Hnº–ÈŠâa0צWf(‡<"ú&š"©JR*Ñ"Öè! 3š))hâ6™ðÝð]}Drn%µu{G˜.©rc¡F<t²-“«‚ptX¼ÎæBx¨áOAu-J´¨ë‰`E€Äï¶9”@ 'è-«ö£ÝÅaw4(c,Kµ¶R¹³L3\ôßU²Gö‚ ê„ö<¬KwqÈ%é†(˜ÁÂŒš:aÑ£j=@*O£ûšœé¢oÄŸ±IWO蚥y `ø.É$qºªõ1@9­öÂþ¨¢èàvNö,á’®Ñ -%ÒUÉFÓ®[H¨d“oŒ.` k‹_itƒFœ£‡]DÄ*H¿FÜàÙÌÕíÐЕ kïl‘¯»ž­ƒ(`Ljz~Cœ4䨙ìkèvF›‰ž¯KŠ%t „@ ¤\ÑE€àiF‚ìèZgœ©z[K-øCñ¤×¥‰IâÉLvT< 〢D|&@<䥚õÄõ8©çòŒ×ïN/¯½ßfé¸Ä.6ouƒ HÓ£zïÍ©;xçW@?èFÎ(¢çSS譡ÀSzÜ=¯†>¢û}±ßÈÅžâŸÉp ˆ(мBºQ’=%Vß¹»)°’J¦Ø¬gG-:Š ´Ùô 't=-õ+×FÉÌŒÈ]¡.MjÕí©SœiE`‚‡b2£ë4‘œë«€åÍ•I€jW_SÖ“µZ‡õ8¹Ô“ßÁ슀žÁš§5bÐuá©KG] ÎT§Ù§½hpT7²pÌt³‰5Ùˆn&M¨gPšÆ¨'"•6•qåë*'ŒHÜ`ŒšÀŠTC¶ j@…s†HÒÊ»ý”’j¬Hl*éëLÒÈ]O¯•6}$}U(ë>ÂC wbÔÕÈ@$Ó¢W€<€îB(‰³$}µ™Œ‘XAɳE¯d›$£´iÖyÿV3²MÒg„!sÈöõq# ÇÌ!ˆ®M*ˆ)ÝÕŠó8Óz !]™MdW¢ˆÈb££>6úòGçH³nþÖS0É$;ƒy\…—Tœ×ã1*cXFµ]»”aT'•6aÎâQ $f Õ£?=Zm€WfÚ“[@:r¢§eêÛRñb2êÔRrQæúet(º‚|D]Ü•-ºtÓ™ØÓ\˜ƒ;dûú¸‘…cæÐœ~вìºÒ ëÎ6šðëêªnãk­BõüžêE]úɈó³@@¹¬gÅ$±(VÎ ÒPtéч¨,#û¤s¹ٙY®ÄUxé¥è0W)ÉYI’¼nôeµ›ï³äÊ6ó·ÏK¹ë¿¿­&xýÌï¶}TºÇzÜÓåÅVz¾Œ %}׌Ñ£¥B¤öÆ¢GW@2×¶_¡¨'ø´˜Pj¯‹ … ¨V¯[+ú¤H ŠP¬ž}A>ŽÐr³(ˆ|Ö…]dC-s†Ï/)Ø}ÔÕø%F¤„¢$¢QjZi6WæH_¾Õ¤gÂãâÈy D€¸“,=¥H)\yçðB¡¦§ÆYW\c}€U]F¯šP¹½·7kíV¦Ž™QÖ³X{îìõ£¥º'0èþ}ÓlCYWô¼hˆge6zεúr^5ÓÝ?™*Rø0(5³~sÑ[ªÈë×V½m-#Wdí±E.F7AlðfMVÙ‹®ç&D˜tU¢|Ð3Eyîz!ï–B/PO&=r[¿£ÛŸ´ ëª7]—~íSI¯_;C­¯g@Œ‚.Ò·5"dw×£*¦«EŸ×9ïšÉ­ÜÊÄA³Ð³2¥¹ZGõ›_€ (Q °lˆºé‚®¸ÿB¡U[æëhzx`b|3—ùÒ!Ÿ”ºŒÈÓ4JÑ]÷ß4@1Œt9æªâI!¬($=Í™€—÷ˆB­´`<@ˆOÉêö}Pðk ”õÞ‡³.ÉrÉú¨“¾-ÂàgüI+ Ù[ râ Hé¨%èÁŽ0Ÿ<È1³Ø×Ê­L4‹¬[wn‰¾èÇ­jf=Ñq¹bNY†µŸéñ7HŠ€_!g!rÝUæô4­ÌÕÎx#K?E•ךÀO~†«¦ëæä¬³@iÐQä6`rj0.*ÁKbïÈw’É„ÅÁ/yÐ÷¨Ø#êÍhJÓãGÑïç)'§÷ÒÒ, ÄÈs뮞h'J_"±ž•§«å'…ƒÑb_+·2ñÞ,þ£àÿúùXó’žï}ø1ßš?¼†‡Ï§ïÌ>ÿ=î?ž¾òf^Vÿ k¾?|Ð}}.ߟxëYy÷?~>}z0ŸVõ§ @앟>ýŽóíïò§/÷úñßp©¯yÌŸ?+«ée±ûý§ÖÿŠ¿_¦Ðæß0¥‡¯OzW6wë(·ñüÞý§§Ç}ò]¥p‘±M«÷c™?>öúýâ—/ÒÜúò”?~|–—÷·?”¯÷›þx¡Í‡ÏøïxxüQ÷~ÿúé^%àã…ßþ–æ÷ÓûÃ]Ϲ½ÜêݼÿòåþÓó{ÍÏÖð|ëCEëªv|ÿ ?¿LF¼ü|ÿåÏýñô¡g·ýåÓÃÓËO/'«|Òî>çÚOž¡êñÑY*ÄWöÕE}¿ÅŠLÄãE¹Ô¹Gùyöû|è¯ã¸à;¡¼'d Òi®†‹žÕaR5FîN¥êT¨}}éò®±~ÙY‹“†0šñÈÒLéKÁªëlíë[ŸwõLânÀ8•2¿¯Á¶J@5‹ç¬ë& k¢LVç¼2ª{*Ê’Ôô›kú:ÁôÙøeÿµñË92ZÀ½¼ØüœèóÞï¿Xqƒ¬^Ƚ“ûé¾™qËœ÷lÌ<.g{O#÷köx¾çæñ-²¹GsÇoîÍ]\ïóÊÀÛsטœÇ¡½Ðç{sGo{š'|½Dç{óਗ©Úç{ŠÞ“ÙÜÓ³¨Íûý×o ¼>w…I‰KvKTÅ–¶âç@$ÞÞS±%ÙˆÒÎTq3è95e ]æòL–V®²éç˜m÷s[†Ùh÷yIûF¾§eòi3D7å¶½¥pÇ]S¸2ðöà.õH5z=[óùž‚k6œÏWŸ.n8ws»Ðv4óý¹e¸ùŸÝe6•ƒ·¯±©‚#ÙŽ>ÎC~s/Í}3t~O¿f¶*§Ó*‰Íç*Z¾f˜ÊÀÛƒW¸Ô¯ûMx¡9ý¿ÍypÚ¨üôž|ktzû±¥7gÉÜ6•ƒ·¯±©‚ó[ëçTÈûàx n#sž“|q#8ý6ù­Ìçþ›ðþèo^á’gq$KÒiQˆ!Íõ‚ÑlŸSÁý$ŽégÝéõ#'Ï÷TÑ_qsåàíÁklªàbÜÕou™­,uÒ–sàØÄís[Ú’#½—®ø2ðöà.‚Ó%óçdýär#7ý” ±Åykã=ú³±§8Ò_æO»~yê2wnæÆM~s3K¤M3¦ÍSÓµ7aRcâóæ)™çª]V²{ åîZ$×ðeí&Xh4°ÖmzQAÙÉi0­s×'- Λi$Ò}F—™{àt-€kÔÒtóÖ¹T4Y»‰è46OMAm$Lóðw9ÃÐkä¦k{~ÔÝùs©ÐÜÕ¿QíüÎÑyǬ•ÂyàÓÈYž s~”“ß¿J{íùõ±ËÌi²¼ÁZêò:It~kJ·áE%›PÂÁoœBŽõW0¿j¾§ç·½Ýô¢‚ò|Î XI-ίõøpn2¿ÿÏ]]æÁÌåͯñY®ùìüîf M/§¯n˜;}~ñ\*rúâÕæ©ù`>P™Ÿã —ٓ׸,×Âòékš›¨ìµ¸<çÄϯ^¥sõÏÏè%{nˆz‚«M›ê’¸Éåx,¯áØ_‹Æz’ÝZ·WA¥Ò¼ *m’¿~¨¨pÞ¢nc7O)è6.^dÏ¿FcŸ®°7“€9g%̯­oJÝ ëÌÆ±õ#s΄s+Ó ^z2Èù­ù {Ùi_}6\+QÂ<Ôž6ÌÂlp`˜3hÐæJx3¬yúÆÿg¶3—Ã]x­M®Yn$rÛЦkˆÙs~£Ê‰èÜgçÑ;$çCˆ<_:lÊü†“½È]|MdñZ"›_jàuëžÇ~s+γ>7R™çòð¹²'°ç¥y6Ø,_3Yº–ÉÒ<ìncﺕÄy³¹¥’òî\óð¿ÑlRIùð’ÞÇË%½f²t-“%•TØ„²¤’ ›Ì0¿@Þ2Ùcþá1þ3ÀË?Øp:Ù`åùͯôü+¿û•ÞÚÆË¸?ç]‹ CùÉ3nRõWú¤™Áäâ¯'~½ñW~u3{ÅK¿šÓpôÿK??Ö]Älïù¿Øzgäî¹ çÓ%܉²;+‚·?Ó©õT~÷ó|gèäêï3.ðõö3H\ª™/ ãrû]Ь1_åb!öWŸIÂÕßç[K‰WŸ›tüu!Çù{Ü“Âi$— L1üÈÁ­  endstream endobj 4376 0 obj << /Type /ObjStm /N 100 /First 1050 /Length 4976 /Filter /FlateDecode >> stream xÚ­\[¯#·‘~Ÿ_ÑÑ>8¼I 8{ ²› ²N^Á ¥–âæbœsfmÿûT}Ý”Än–ZÖ€8üHÖW^›Tð)f>¥ÁÅ,‰m²±´`RVŦ›F––RKF––ŠG.KËÖH»Q‚ÛÍXZ]8ÉÒ2I|³.œD7 ‘¥åâQ¥kP¥9¤l (@,­Ä"$‰¥•4`i¥ ¶Hú’™ pg2N"=p)gÂ\€»“!'|Yº3³Õ©p²d¡Ã¤µÒ}CŽý""ØyŽ­Šž“É IîxŽYJ`rt:®—Þýæ7ï~ý§ñÓùuøß_ý0¾Œÿxøþ翱îþSÜÅYœþ2tpǰc l¤:óRp/Õ¹ÿ+p48&ÿþî×ÿùáÓ‡7]‹ný¿¿ûíow,@¢U vª°jX×udã}cÎ]8,p q_:ô«ï¨/…ÄÁÒ‘ âÀ¨3 €ÕÚpÖ`1=µñ8=VÑ¡[ý õÅ2>v)xx€fta Òä?¨Ÿ‹Š‹õy¶Rq1²vßù Ôßµü§²ˆÀ½Šð ââÈät<×P€ï¬I¿'Ì_„¤±ÀP—œêKq‘ °Z[LL<Ô+0zÊ< ?¶€;ô«?¡?º[R½„ž’U'À]ëÅe(K¾kªpìÊNNn_ýtèWßQ?Wý®Z8›žnFmßvnŸ¥.êçº]ÁËl“Ù™þ½Ú5w¦ªÖäö Ü󬳵v7î—Ž—XEAE¹Üz¿&§Çݾ*ЫýXu¿Œß¶•€ì4ØìG Û¤Ápy¨}Õ¡[ý õId8«QH€Uõ3`¯ÁE`¯Ygv}ÖP8ÆÓ¾ötèWß×ÞÁ»^¥ï-6¼UõàÝH ïFU6CaW}× }GϨï’ÊÞ%•!¼›4õ=¼[4ÞMZÏðpLÚw¾K‡~õ}í=¼«ÆŸ‡w³ÛÞͪöðnÖLëáݬõ|i;g³«½w‡ní}å#$hÝž€j–‘¨ÉEë¨6b ]«-“¨[¬öPñxè×ÞQ|™k]éë¶L¶ÞôGìe2ó®?[6‚Ǥâ¨ßïôÀE¼KWûU~ý ”‡§²ÀƒŠGÁ»ë•'Á‹n¥\—Ÿ?^ë^5é7ðŒ8½7ªð…ñ*,¾öVÕRfÆ­Š;àªdzñlæ'¬PJOXA¦)£[AœÍfÒpÄ’Sa„’S•D$9ÕÆ$öMà¡_ÿ £íƨŽpw _p¼ï®¬}¬0uÍCNe_ÿí4HÏ ˆ©Ê(]–M…}òÒIBwkØÎ –è£Ô‡ê§îò®¾£þ²«óÑwõ+ó8Ë0i°œ5XÔÝàXbÖҫ–=§øxË[UèV¬= 9Èð8hpû°_ –”Š^õËãÝ_Õ¢_׳‰‚F •#,@Iƒ#à¢Á2¼Qw8ö{ú{EÿôŒú2Tõ \Ð…—¿OÝU.`8k°Ø¶ Âð>Ù”}õ7'ŸKõõmÁÜï¶Æ`ŽAÅEÅL¤á€»kÀ°€U[—èÊþñpU£[ÿ DQ-@€£'Àª%¼rw€\`ÝÞô–í€Ï9íë¿Ù„göa9™c=†õÐÒØžöõÌÒøžwë‘¥éNõ°ÑtÇzÖhvv€•~¯öFñ—ó8z;žÎÓëÏŸßÆŸò½yY· ú=ÿ/y>Ýò>|ÿqFf¾e¾Çsf©™Ïãëùõ0\K^ϧ·_>ÿ‹(’¶‡8=6÷u6ôo˜\¿Çܲ-IÓ:g§õê–Éà×ÙØÓ×¥Ð-;"6ãpé)þ€¾㛺ھe'ÄÊF«Œ qël9i7õäâš-º¿.Œ¦D=Úâ:{ÙÒ8[‡³[¶|7±~ÃÇ#{­«Ã'ß°ö‰Ã§Þ >Îf§ÒÇù×}ñôÅÊr7c%"#{;r¾åä¢H›-¡h­”ǧ!¿nÚÏ_5°O‡¶¸Î^{\Jëæñ0¯ÙËù”ËfCH¬œ7A"çQ.‡µ½l9ïÒÇÔ}ñôÅÊ×c£[vAöšôÄhÖÁ ¯ûmÀˆ²)-+öû|h‹ëìƒG[šÙBbåâÖºBöºû±rñ›ìŒl=v„SSü}±r kV^‡N4(¼Ö5âä,®#*ÂÊym‚èq–töåÐ×ÙGY™¸a/+×A Ùëvâž;ðµ«"Ά’N_85Åuú+¯iŽÊz$ì·71BØg»µñ ûkÚ4"‹–TöÍOáy1rܸ—°uq¥ÄÈi3ÂRFö:ÐHŒœ6ž’óåtÓ ¥ûÒ:ù„Õ=­å&±qÉëñ"CîšMÁz£Õ ÓU‹Êú!Ý-¤¬Æ ™Õ`ŽUL±«<öüjÄÃú¥”U^ÄJm•)!¹ý°xÏᾬNV\åÖ‹ýš®˜qµÀu‹Ue|õ +ýñ™.F•îÝ*eUºøžGk‰øÎ³¢‹s›6‹mWYlÚuklXÒ"òïJª|”ô·¿_^ÆŸa~ûtñ÷#ºXKù\LÌ£³œ°çÑðÂÝÁ”žhðow´‚ó˧ZÙí‰ZïÇlS ~Š#¯fÌiäôñLn”ÓçÉÎ+…gÌó·›2îéâlM²§ý‘דäde“yèr9†K9f\û„5ÿk|;}/ªƒÁÓ¾~Bùødù?¿½\el'‘ÿ'ƒ?OãùüZsÑ9=©ów?ÿ0+œõ Pqüüö-ï_ßPú:1ì–~?–S:—ÂÚgâýØéh(Gu*Œ ,š ÒòÊT…¥¶ºÍó»Úµ@ìo°òSÈËó …z­7Y…qJܵϲB Ieà]ÆMÜ¿›sÜUœ¯u6:.€Á»¬V€Á×ó:}×Lì'ê:¸fâeXeb‹Sdžš‰+­ÛëF㮤Jç¹+s\T­ÁY3q=µÎ¼5—R󊮢ÖCœ%'Û–w4n%5²8u¯çKÞü,¸å/)õCý’7?n€—ƒ¶%?¿ÒÕŒzçÿ¤ÒÄ[Oßj~¾Ûx_ÐMcäå¡n£áü°66Ú̯i·Ÿñon–ˋۖ G­(®uûò ¶­ Ã¥6–È Map+¨Ñ„áZŸ s²$Ü4­{ý|¥Ø5yóÑRãrÜú3¤±,‡»‚ KÜ4¹‰B\4¥E¸ôÙø¯Cý’—ñ[=m{yJ·‚ Í€ïY+q Е6;‘¶_ààõ8lÉóÈkXâÓkç{Õ•À­œF2¢…&qÛïúôkÉÃo Å&2pÏÏSË¿”æ?‘’·±(j$q¯Ïç†.õÅvÔŒóµåæ_jŒóOÿ´åæßûI}–ñ6¾Gæü›@­¨ù‡€š®çîiÅã7H\ÓͤßS;°ã¾m? ÜÜ *,iþ] &ÞË£Ôx’ð£0mO!üÌŠ~aÇ5Z~UÇ)\Ü j4çÞiiâÇvÚé“ð;Ô&Þy§Ææ לs›7ÿ.ŠÆ2î *,ÖvmGMËÁV.5¯Xâ®mn\žË´&ªSBõi¦Û$™ÔI2á)h;o'¼ÿlÇ5.Ï8 /Vay›$³:If¼n —ñÈ·$3öæÆè™p)µ¥žp¦ß¶—ñîQéæù6Ifu’Ìo#‹à×rãÞ‚G‚ÔH/8¼§&¨ ìsÓÏ ïiSy¾M’E$ n”V|ij¶ÆH…×RÇâÓ6.X{Ú–&–ž^Êmþ)½IòËô—9+þ÷û÷ò×ÈXîb²»þ–Á ÃUœë ¦Åõ–ˆÿñåÃÛùöLh¸àw_ìªÂ?L\"¸Åiœð5j"ÖÕÄ&æ–»Nùû÷¯_¾¾œ˜Ç¯NÇ××Û¨o¿|üú鳤þðùÿƦ?}ýt<¿ü÷å/_~|íðÉUVYËPêê&Ô﨡³¶ù%ÂßãÈ|<Ç]ÁpËt …mr9Mf¾'×op¤ËÙ{ÃÕ¦Tx&òæ8…Ë1¹ñâ§‹»P+Õ¬¥šµT³.áɪ|)Ï)6&?Åt¢Ó…BôÇ1žŠãe´§ÓHÁà+üªæ¿þôö¿ÿëûÑä|:Ã9äàÏc²ã…·‰…ãÙ•S™6Ô­7~‚tI¸šð5j"îhPyX¢‰F÷X…)My ÉÆÉ §ÈÛ£®ÁÅZ—O¡\Œ<ãLþr¾\Üi*g^>™étîh@•]ª‰\K¸Õß”~{½OãAž×¾—œ§qâÁ2¦lÙ~$¿@F?ú­¸ 8ÒÙŸG;‘½LäS8™ wbö¢I)ÙûûX•¿­ö¶ÕÞ¶Ú{¹ºê}1N¤þ ‹‹öäBâðÌÑúÓ”NvŠ¥ÈïçNvËþß_¾|ýá;¼CÜ2¬ö´Õž®ÚÓÕ¨qU ·×}o’8^£Ãé”F'OC&o¹·O~:Ùp‘ŸªÚò„s¨\¸£¥l.éhÏîrÉL­Lát¹ps™¶*¸jRWMêªI] WÕt{u&qäá$¼ÓàͯH'îvæ9¼ã‘|ÇÆ<ÿüã——‰«º4†Ëåä˜õ±˜Ý4¥qºÖæTb‡¿¯÷Õà¾Ü×°ñUG¿×MoDâ1Ä4qT³MS±ÙL¼gkCᡯÓOÿ ÝN—l½åai¬‹gÿÅ8Î üýTC endstream endobj 4508 0 obj << /Author()/Title()/Subject()/Creator(LaTeX with hyperref package)/Producer(pdfTeX-1.40.19)/Keywords() /CreationDate (D:20250311170709-04'00') /ModDate (D:20250311170709-04'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.19 (TeX Live 2018) kpathsea version 6.3.0) >> endobj 4477 0 obj << /Type /ObjStm /N 31 /First 299 /Length 1109 /Filter /FlateDecode >> stream xÚ—[kI„ßõ+ú1Ù©ûœÓ70‚`³6›„ÄÞ—`D{4rº¡‘Xòï·{¤²×š±dƒ)µGóUµ¦Ú"Þ)­D|PÆš"¢"WDЊ"ÿråš@ÊÚP+ç\¢|ðEXuû'§Œf=ÈÊ+c,•µ|oòRTT†C¹.je$–µh”qd‹"e|l+M«D‘–BÏ ÓR£SD>fFôŠØ·÷ Šä rë2×j£{VECQ¤(J,Šk×®‰b“ç•ULÌE9Å,<ÈÊgåìàêj0ús>mÔwɯóоª,†§ a4„Ñ0>(FîlÁ@<2ÿ³š·_ßd̃1Æ<ÐÊ‚V}ÜuÙ<¤²Þ…#"Ê]ѽ‚î‘ pnù}tÑCîÒÑá‚APt± ‹Åê‹t1-}—¹%»ÏtA j\,¡˜Å,¶³7O Ûƒ@´¸X$@1 ŠYõ#¬~B„žO 5.¨qq0í^1Ê‘áŸí|WÏ—¹~{î ߨrA• ª\<|ûŽïãW4ü˜4ëý¶ª3íäPøÛv½ßÜ3]8º]Ðí‚n?ç¿ôG/?ŸI“¤-'©*Ÿò)Øû)›OuÅÓÊÈÌÄ||:sX4¿ ùÍ/h~ pìÙÃÚåúô½ ï}/è{‰°ÍÛê÷òƒe/({AÙ Ê^"¬Eÿ†ßë;7†ÿ¹=q°8X¬&†7lÏ>ÚMÝäËÛ›ò °zûsS«ÑuÚ¥Åúq0ú’ß’/¢Ã†Œ>ïw‹ùê°KŸÒ²nÿtµ¯Ë[þZOëÑ]Sãòvñcz¨ÍÕÕèÓ~Ù|×Y|݌ǦÛñØcå>{}ÞÔ«í¨•?Ä/ÿ»©¦Ÿ endstream endobj 4509 0 obj << /Type /XRef /Index [0 4510] /Size 4510 /W [1 3 1] /Root 4507 0 R /Info 4508 0 R /ID [<1CDFA31FEBAC1ABF6FD1163E3254BEB5> <1CDFA31FEBAC1ABF6FD1163E3254BEB5>] /Length 10716 /Filter /FlateDecode >> stream xÚ%ÜykÝZ×ñ¬žrÆœyžçùtŸyžçyžúŒ9GŽCI¡X ûZÔM§ ‰€æÕˆ€^§†²¹½V4 bUÄÖŠ"…&Îóyxÿø¾YO’õû®Ý9{¯µ3™êïõe2}™”É,êý¯ÿóá¾ÌâÚZ‚>µcjƒšý0 vBm@3žR»¢/ɵkj}šsažÚuµØü|X vO-£¹rjzµ¯~Ò\‹ÕÞ«}Ô\KÕ>ªå5—Áò^m:£öAs¬TëS{¯¹ V«­U{§¹ÖªmU{«¹Ö«íP{£¹6ªU{­¹ 6«]UÕÜ[Õžª½ÒÜÛÕ>©½ÔÜ;û2çÔ^hî‚Ýj Õžkî½j‹Ôžiîƒýj+Õžj€ƒjÕžhÈÚvµÇš‡à°š¾ÿê#Í#pTí¡ÚCÍcp\í¥ÚÍp²W›Š~¾¯y N«%µ{šgà¬ZVí®æ98¯6GíŽæ¸¨¶Ií¶æ%¸¬¶Yí–æ¸ª¶Eí¦æ5¸®¹ÝÐ ÜTU»®¸­öZ-ÞÞÛ«Á3yµ«š±ã÷Õ"£øÈøÒ½Þ¬®S»¬öXmƒZìntöSµGj5#¨çjÕâ«FÈ/Õž©× AFÕ^©E7…\oÔâ{œÕ 1ß©Å÷ˆ.©{¶-_NkÆ€ø¨¶W-â1˜fzƒ}è›3žØç‰“jFãLŸšAüUùÎÉ3jñeŽkì3½Á>TˆÃƒ}fŽZtÎQMƒ}fžÚ~5^Íì3 Ô.ªÖ4Øgzƒ}¨ƒ„“3ûÌbµèœMƒ}f©Zø¨Å¦b'{{?g(ØVÍø‚Õ¨ÅnD猨… ›5£c«EFñ"”£j!ðFÍô¸Z<âë‡ 'Õ¢O×k²iæ´ÚAµè:&ΜUV[«Éâ™ójGÕ¢Û€™‹jÔVk=3—ÕˆÌÈ›¹ªöBm¥¦Q;ÓÎsJѧ·Á>sS-ÉrMƒ}æ¶Zôi¨b°Ïô"›{­_m©¦Á>s_-ª¡™Á>óPm±ÚbMƒ}æ±Ú µPÔ`ŸéÅ8·yH-§i°ÏóF-ü›§i°Ï¼S ÿbXì3Ô¿9šûÌGµð/†do°§/zƒ}þŽŒ'¢Ã†Ôô©Eç jöÀZ 4ã‰!µø /ÉBï#ç͆p}šsažZN-6?¨EÇú‰ñÅBÈ©9ÊOÆþ-‚ÅjñäGÍ%°TÍ}2¯¹ –«9hé‹°Rí´Ú{ÍU°ZH“ï4×ÀZ5'ßj®ƒõj7ÕÞhn€j·Õ^kn‚ÍjoÔF5·ÀV5}5ùJsô†îüKKÕ^jî€j¤™|¡¹ v«­V{®¹öªmS{¦¹ö«íT{ªyªíQ{¢9 #jçäcÍCpXͯ´ÉGšGà¨ÚIµ‡šÇภ¥Ò'च?Žfé‹SpZÍ/·É{šgà¬Ú µ»šçà¼ZôßÍ pQíŽÚmÍKpYÍ~ò–渪ö\í¦æ5¸®æ/âä Í@ïÙù~=L^׌ ÜV›§o‹¿«æ€7yU3vü¾ÚzµøÈøÒÕüʘ¼¬öX-ú/v7:»—‚¢ƒÂäEÍê¹Úµøªr/ýu¿ýÕH_„ £jÑ/ÑM!׵藳š!æ;5¿¾&£‹CêjþÚOžÖŒñQ-œŒxzƒ©ïmo°¯ùÛO„˜'Õô†é“sÕNhöÀZtØqÍAR3`'ifaŽš¿ö“G5çÂ<µèØ#šóaZtâaÍ…S‹ÁyHs,V‹A7¢¹–ªùK79¬¹ zƒ}aÙ_ˆÉƒš+`¥Z ìš«`µZȺ_s ¬Usp›Ü§¹z™ç²ŽÊ“{57ÀF5ÿD™Ü£¹ 6«9ŠNîÖܽÁžûì¯Úä.ÍmÐ칆Ÿµ“;5wÀNµ3šñâÝjqÀÛ®ÔÛƒEÛüšŒMÅNîW‹¾ßª_ð Z»½Ýy$e/Ïxäkåež"¼H5âNÁi8gᜇ p.Áe¸Wá\‡pnÁm¸àM™%ûü³ ÿVÓߨü;Â#x Oà)<ƒçð^Â+…×ðb{±©÷ðòð|ó®ÞèR¾ÛDïÁ€—ÜO™?Õ$ÆëèݤîÎ*w»9 mw1µ»(Ú]Äì®:vW »kzÝõ@¸îF Yw3Hµ+î.ºé’¦KŸî`Êlý†ØS&v™Óån—/]¶wYÒ5>ºÜèr£Ë®1Ø58»Fm—]FtÑeD—]FtÑeD—]FtÑeD—]FtÑeD—]tiÑÝ™2;—ÅžÒ¢K‹.-ºwÝûÀ’.º<èò Ëƒ.º<èò Ëƒ.º<èò Ëƒ.º<èò Ëƒ.º<èò ûÉ)8—‘ Î` BÈp#eö|%ì|•2ªñº8y‘…8e1âDÅ|ˆÓ !NJ,‚8±âÄ2pÚáó p²áó*pŠáópbáó:p:áópáó&pêàópÂàó6Ø Î|H™?kŸ'cwwÁnØ{aì‡0 #pNÂŽ”9óc‡àˆ>xí‘_æù„ãþi;yÎÂ98à"Ü„S)sívlô\†«pà ƒ݆çp+eîC¼øÜÚü¨Gá<†'ðžÁKxñb;>ÝïÑ‹”yù06úÞÂ;øy`ÄtJ™ñý^7M†i™OË|ZÜÓò–ï´Ì§{=þG¾.^̃iZL ~ZæÓâž–ôtœV’ô´h§¤Ìÿ¡x[œ[ü4U¦Y2½\‚œœ–þtœB’þtœ8÷ôú”)ì‹ ašÓqºHÒÓ»RæÛ¾ÏJZæÓ2Ÿ–ùôa8‚ŸÞ›2ã¿/&ôh§Â18'€Ó§€*ÓBž>”2ßù4ÞKiÿÉ¿÷è<mæBÃ*ˆoD†é )ó—Æb+|™æËôu¸œ2µOÄŸm#túÐbº7BàV<Ëœéûp7e¾ò Q»,™~2“£Æœi†M?N™}5úLóeº'È×rQãÐ4K¦GSæ'–D-~Ui:¾àÛ”ùé“ñ‡¦ó¾QDö!efþV<ñ1¥Ç?_úRföG£ÙY˜C)ó+ã‰9°æ§Ìo~wÔÀ2X«aiÊüöÙx6þ½0àÑZXëa3¬I™ö_‹×mð/ÒøWÑ|Í­§·¤Ìÿ]/Ùq*1ÎîJ©ÿv<áßù+Å Ä8c¸/¥ùÿ=žuª$ïìÛù8mxŽÀpJË.ÇKâÜá18GSZ÷!ž8nï£sNs‚çÏ€3çÏÁ8™Ò¶ß‰w8xþ\ƒØ«‹)íÿúx6vþóqTq^ïü-p6ïüxàjJÇçÆÛîÂ}ðOß|lþ)„À¯àqJç*^ü^Àkxo3™ïÿ=Þõý`Øà ÂÃpŽÂ1ð«åÌ 8 §à4œ³pÎÃe¸Wá\‡‹°!¥?µ7:âìðe>8 ±âÜÍVˆ3'qZäÜ‚§ðRoDnÑ7á܆;×îA\ix®/œy®*œy®%œy® œy®œy®œy ®œy ® œyo$óªš]JéK‹â}€žˆÓgü»{“Gàƒfü›ý½xö¥ôÃþ VÙYeg5Ž쬲³ê[VÙYeg•UvVÙYeg•UvVÙYeg•UvVÙYeg•UvVùRåK•ÕÞn|W.vƒ¶U'¦'cØTeSuPªJ©*¥ª”ªRªJ©*¥ª”ªRªJ©*¥ª”ªRªJ©*¥ª”ªÆaJU)U¥T•RUJU)U¥T•RUªT…\•yusJ_ü|ì3¥ª—€uUÖUYWe]•uUIWã Aª©¤J*Aª©Æ… ›)}ïÁØr\Š‹MÎçE[íý8ùÛkâÙOŽMq•'A\Û釸¢3ñW( ®Þ,Ÿ ®Ù,_ËaDx½ÃCõ¯Åöæƒk6ËAäףºØ|JwC¼¸÷çø·=݇ý°VÁjXka=l€° 6ÃØ Û`;쀰 ŽÀ!XšÒ×fã#wë—7íupâÀ=—¾¢7ŽÂ18'à$œ‚ÓpÎÂ98×ápJ?ÓŒ¼á2ôBÎŽFó&Ü‚Ûp'¥_9ïx 7RúÅwѼ ÷À¯–É9®a|€ø /!þÂkˆ/øÞÁ{ˆkyˆ+€dð‹{¨@† d(Äå¸ÈüIJ³±C‚tI!.ô¤—÷B§ð žÃ‹”~íãm:¶ _ b,lJ}[÷Æ /¾\Ù+,×ó \+p­Àµ7 Ü(p£ øÂü”þOlŠ*‚RàFFQ`D…Ý × ’.lM}oc+{að 0 ‡CxPàAxPàA…« ä¡ԗûØ27 ´(\‚k@  @  â.…¿(7 O@·t{A·^ d(D¾â.\I}+þkì A )¤@A )¤cSxô‘§èƒ˜ !.ÆÚh‡>útèÓ¡J‡*ªt¨Ò¡J‡*^u-:4ëð ×zyЉò c\vHÓ‰|?¦¾õKâÓâ‚/A:é¤CA:qe®ý[–úîýjìýp wtlý0 ‡á(ˆ¶C¤‘:Ž46u×q¤éðªÃ«¯:¼êðªÃ«¯:Dê©Ã°›:kSßÁ{±÷Žu>í \‡[ð^Ã;¿í¸‚fýÏNF‡9u8Ùád‡“NvbÇ9Ùád‡“Nv8Ùá_Çì°C½õ:Ôë0¶3œúŽ|-öÏ¡ªãØÔ!k‡Ê{:)óÉE°â»ŽŒ‹ãÑaÔëP¹Cå•;TîP¹Cå•;Tî0±s-õùÁø\fw˜Ýav‡ÊwÞè’éuê»ö[ñbÚvhÛ¡wç“—$Ða£ƒ©ï;òü Ȧ¾×‹¢9Âù°ràk.ßmÔwÝ+SßÇ?ï]æ Œš 0º6€y£~äÆuÉ;ÀýÑ]à2þè8 ÛSßùJlÔµüÑ}F„ðï…Ñ#p NÀi8gᜇ{pN¥¾?ñ8¶ìŸ£—À¿:F¯BüÙ¹7á6܇ðÁcxOá|€»©ï[¯ÅæŸÃ x£A½…÷ŒˆÎΧ¾/ÿv¼#Ž%‚r²+ëôNÖ¹Œ¬SÙÉ^F¿ó$”ÙäÜÔ÷~<šºsRP“‚š\ ‚š\1·¢—Ñ_¹/–ÑdÌéˆI2š”Ñd\h™Ÿú~èëâu1­B.Te'·¥¾8OÄÜ y¸º”uÙ)ëzTv2&lHu2¦iìJ}_ù¸~>’ú~ìp¼÷Èh2†ËÑÔ÷#¿OˆÌ¥¼ìdü{ð"HÆÕ´¬ËlY×ß²“'Sß?ù{™Ô÷sóâm ®Œf]úÍN^M}?ýûßRÒ.·f]¯Íº›u…7ëgֵϬ‹¢ÙÉ›©ï¾¥·½_ýoshqE{ÎPôýóÔ÷o¾5žÙdsò ¨ÉJ¾®Yg]ÌÎNöFد52©?ÿ¦·Ñߌûù!24–BêûŸ_ÕùƒE°`† ›úÓ7ö6ºìÆÛVÃØËRÿ‚J<±ÖÃ&Ø 17`GËa¬„U©ÅÏö6ºý×ã½{`/ƒí©ã¿'öÁˆ‰1‡ ¦Ã쀰 v§þ]WzÛ;9o;1¥%æ¡Oý‡.Çç æµ\‚˜¹rN@L–9§Sÿé_‰wÜNý·Ä£;pîÁ}xá<†'ðÞƒCoáZê¿¶46õ ^Â+…×é›'3tÌŽº•úï})Þ–‡ðÉ/KµR‚>èá•„W^) ñ[”%™—d^Ji!H¿$ý’ôKN”¨RZr+9±PŠÌߥþÑ8§P’eI–¥U@‹’½j-Mý_þ?^Òò’–'Zbl ƒ[ÎG´$Ý@KF-ß·DŸÒØD*©´¶ëJÛ% ”¸Q2›ª´6õÿÑŸˆý£Ei7ðªdJ&a•ØÔ2ŨõÐÒí-½[²%†•ìdÉ4«’=-™\UbI‰%%–”L¤*q­Äµ¹Jä*]S¥J4+ù–%š•|ÕÒ5 Mi8õÿ‰ÙØÝ˜}3¢nÃb]‰u%Ö•â·ÜZ +‘¦ôÖ™Ø ÿJü+ų4+ù–¥@¸KZ!Í£Ôÿ-…x›>(éƒÒ;ˆŽ Y«7¢~ü‹È’W-^µxÕâU‹W-^µxÕâU‹W­Ø?^µxÕrdhõ¥þïþ±)šµhÖbX‹a-"µˆÔZã²»kùm ß-Z´hÑ¢E‹-Z´hÑ¢E‹-Z´hÅÛ(Т@KZ-áµÖ¥þ¿üó±Ž9-n´hÑ -8ÔbS‹-é·ŽÛÓp™7b`·¤ß’~Kú-鷤ߒ~Kd­“©¿z'> -2´xТ@Kæ-q·ÄݺãÔ¤ðZ--‡–KZ--ѶFZ÷Rÿßù©Øh¼XÈ-ù¶"_Ç’Ök›zšúgœˆŸ{-Âë ÝÉÄÛbï–Zò'/15q2—úç»ãó`>,€Õ°Sÿ?/Y9XKa AæÀÜÔÿs¿ïXka¬‡¸²6ÁfØ[al‡°vÁnØ{a‚Ã0 ½?1¿4'>w?€ƒføðFá­Óù¦ÂÄ×ò’kGá‡pNÁi8gᜇ p.Áe¸Wá\{pí&Ü‚Ûpbªã=ˆ Ž ¦5>‚˜ÌøbØ¿ƒ÷ð^ÃHêÿåŽon–ãµgg}ßk/á˜Ç8² n3Â#÷à<Øh>Uœ/™ÛLÐý0ƒ ý¦ô›ÒoÎ65ÙÔdSS7™Ó\‹CM59Ô\Œh2¢–¼Iý¿ù÷âÃW›«€Mr5ÉÕ$WÓÁ‘˜X™I;þCüŒ“߿ޛT8î%ãÎ{³©Éº&뚬k²®Éº&뚬kÆëX×d]“uMr5¹Ñ¤Jscêÿÿ=v’pÍŽŽÍ8êÓöA<˦&›šlj²©É¦&›šlj²©É¦&›šlj²©Išæñ40ø/âÓÈÕ$W“\͘§½K©&¥š”jRªI©&¥š”jRªI©fÌŠw“RÍÛi`ÉÿŠÍs¨ócéÓ¤O“kÍ7@Â&AšŸt»ÎîýêîA˜:2椎da Äþ}Hk2ÞavêÈ\˜ý`&êH. ¼úÎ{u݈¦#.žŽ¬IGVhGÖ€|GÖAx`ÎçÈâ4pèÅm€e ý³DG¶ÀvpÝ`d'ì‚ݰ\Ùà œ×SFNÀ¶4p¶Ÿ GàÄŽW[FÎÀY8çá\ç6G.ø ×à:Ü€s“ŸÁÉ4pãÛâsoÂm¸ ÷á<„Çð^A^ƒéË#qŒIËR ž§‡÷bËï!B—︌Æcöñáz]ü•õ1ÔJÇÅ8.Áñ…`ñø"0oxœã²Ÿ@Ç:.Ðq¡ŒÏIàElO¾ã¢—ê¸Ç¹ÆE;¾ „7.¼q×fÇ·¤?úõñ^YŽËr\Œãbã¸Ç5~( |k3^|âäò‘4ðÍÛ¢&äqiËh\Fã1’:.ÐñiàK—ãÅ7ÒÀŸ[D1®ÇÇ/§Ò¯EÍv\<ã´ãBw´—ô¸¤Ç%=~= |×X¼CÈã¯ÒÀ_wÇcî¹Èf#€'ià/_Š'bºÇcйŒfã q³dü9¼Hc}& ÷ìl6 üøÚx“Ãcöv_øÇß5ÌÆ q ÎÆ|ï˜3+¼YéÏJÖèžJÿô{ãm1{Mø¹ŒfLá–Ûl\“[–~ú·â‰˜Ç-ËÙ˜©-ÆY1ÎÆÔ2ÌÆ4ñUià~ÿ»ÒÀ/G?ÏJpvghþÛh¦³ò•þ¬A7+£YÍÆ%N#tÖx›5üf¤ó&Þ+óY!Ï2b–³†îlO‹ßøæx #f%3k¬ÎúS9{6 üÏx–³ì¬g ÓYIÏÊcVÒ³â¬8+óY™ÏrcÖŸÙYÍÊhVF³F÷¬àg ÓÙQ'#Š»i [ ŒÕYãrÖ_ºÙO^—}Ð0C…9iðʾxñ|X !ka^\º6^²ÃX+a¬aÄRÖÃØ›`3 CLw?1Éý¬Kƒ«;ñ[ fâï€]“ë÷ÁˆyëÓà†¿ïˆiñÇàÄ ö óÖ/Yã—L'¿t. n_o‹ì1eÝ|ôKÀLòKÒàáz¼$zü^ܳ4šæ”_z/\"îž ÿÅúyB?Oèç ý<¡Ÿ'ôó„žœˆŽ}¾wèû‰èñ7ð\…¿ô> »Ÿ׬óð>¥Á{ zYüó±Ý4¡7&„2!” ¡L`B2+@<â™Ø Óà‹/ÅVÃò„‹ã"›Ù„È&â4iljHaB ûÓàøÕØŠð&¬i˜í„h'΀(&¶§Á÷{ãuâž÷„´&¤5a™Â„',²˜ôÄî4ø‡ÆãBž8è„@':!¼‰+ Á Wð',5˜¸±ÀÀý‰XVpb1Á=ˆ%➈… – ˆv€‰gð"é˜ð ,öd8Ad.ž‰Óið›Bà‰× Õ ©NÄÜŠ÷ Љ¼ß/Kaì„=pnÂm[!Ș ó`>,€…ƒE°–€O^ËÁ範U°ÖÀZXëal3 †7ÃØ Û`;ìßcxìßhøœ„ˆ»'ð؇躽°öƒo>|†aÁa8GÓà.ŒŸ~wá>èÉzLƒèƒøÒ§à4œ³pÎø—à2\«p ®Ã Åð-ˆ<ö`ؤ‹á‡àlÀ°å ÃÇÓà_øßò1<ëN†ŸÕ&Ã/À“áWJ½öU—Q]ïÖul]ŸÖug]‡ÕõiÝ·,ÆçZm2ü¬1Ö%ÃV– ò’è0žõP‘REJ)U¤T‘REJ)U¤T‘REJ)UäF‘Åðåmüž±e=^äUÑ>©W\™ÎnaY'ÙTdS‘ME6ÙTdS‘ME6}ßâQ~quœÜŸ¡Šú È«"sФ)ò¥È—¢%Ñ“±ÚDŒÅcpôU‘Åè0ZiQ¤E‘EZiQ¤E‘EZiQŒíÑ¢H‹b,’jñPü±ßý‹oÉÓ"O‹|)R¥È’"AŠq¦HúÅXk$ý¢ô‹Ò/J¿Èœâ[ÑFFOÒàOþ§Ø¼|‹¢-Jµ(Õzú: m]ò˲.˺,벬˲.˺,벬ñõ4øKóâm¢­‹¬î@Qw ¨Ë²¾Âü!¢×êÒ¯K¿.˺,벬˲sdY—e]2õUiðמÄgˆ¶îQwx¨K°¾×)©XtX\—e]–ué×ýº>­ëÓzoìÿïÛYý@üÏ?MI×%]rݹ9óôžŒž”`]‚u Ö%X¿‘†þþ¦„R?ŸÛßMƒ½.¼z|sáÕ㫃e u‚Ô R¿œÿßãx›,ë/ÓÐýÑŒ5]ÓPöû¢)ßz¬‹Š•aÆjÝA¡Î¦:-êÏÓÐb3žŒ5]ƒ0”†.œZÄó) ­ïfbM×|ˆU[ !žMЗ†þØœhö§¡áoGV^\•†ÿ·hn%ièÔÎhZƒur ¬‡ °ba×20ÀN®HC—þA¼cì†=°öÁ~8aFà†#pÎÂÖ4×5ž4öä18'à$œ‚˜ì¶ ¶ÃØ™†ž}G¼÷\€‹p .ø ×à:<†sièÝåxï ¸ wà<€GðžÁsx/áŒÂkG‹ôʱ½'iè~SoHCÿq0¶'F+×rŸ#¼Ã i‹årËå,–Ë}Þ’†~w}¼ƒ Ÿ%ø9þ€KТµœEk9‹Ör­å,ZËY¥–³J-çfE9KÕrnQ”sO¢œEk9ëÚrŸ…gåZîs\M£Š[å¬W˹1QÎzµœõj9+ÒrŸãR™¡a©Zîó±4ô/Æþ=q[—ûL¸†}nØ—†6ž™míÅ 5Û£Õl9«ÙrŸc¼QÀ’¶œ[å¬kË5âmdh¡A†öçW)Û¿*^ÂŽ 4xÐpÏSir'){ý¿Ä‹ÉÐ CCú £§Añ⸾jØ7øÒo#–:/IÙµ/c+Ž ¹5ŒýU±jš% G‹K´hТ!ý†AÜ0ˆîC`ÆLÞ­ ón’wÀü ¸šwƒ‘¼;Šäݾ%ï~-ùùàöKy7øÊûž·€3¿ "ý )ûg^Ææ¥¹'+ñÈúó¼•Åy7 ̯sèó®»äÝá%ï–.y7ÇÉ»%XÞR«¼µy÷uÉ›…™wN?ï>EyçÍòw‹¢ü.ˆ7±²ØMçòîÕ”wc¢|¬'v¯°¼Û¨äGÀí°òqë’¸A܇À½&óçÝ{'ïfEùSà.2y÷)Ê»±N>Ö¤»'VÞí`ò½ñ_ŠoéŽ1yw*Ì»ÙSÞÍ]òn[”wŸ¢¼ù ù[àV #include namespace CCfits { template void PHDU::read (std::valarray& image) { long init(1); long nElements(std::accumulate(naxes().begin(),naxes().end(),init, std::multiplies())); read(image,1,nElements,static_cast(0)); } template void PHDU::read (std::valarray& image, long first,long nElements) { read(image, first,nElements,static_cast(0)); } template void PHDU::read (std::valarray& image, long first, long nElements, S* nullValue) { makeThisCurrent(); if ( PrimaryHDU* phdu = dynamic_cast*>(this) ) { // proceed if cast is successful. const std::valarray& __tmp = phdu->readImage(first,nElements,nullValue); image.resize(__tmp.size()); image = __tmp; } else { if (bitpix() == Ifloat) { PrimaryHDU& phdu = dynamic_cast&>(*this); float nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } else if (bitpix() == Idouble) { PrimaryHDU& phdu = dynamic_cast&>(*this); double nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } else if (bitpix() == Ibyte) { PrimaryHDU& phdu = dynamic_cast&>(*this); unsigned char nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); unsigned INT32BIT nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); INT32BIT nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } } else if (bitpix() == Ilonglong) { PrimaryHDU& phdu = dynamic_cast&>(*this); LONGLONG nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); unsigned short nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); short nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(first,nElements, &nulVal)); } } else { throw CCfits::FitsFatal(" casting image types "); } } } template void PHDU::read (std::valarray& image, const std::vector& first, long nElements, S* nullValue) { makeThisCurrent(); long firstElement(0); long dimSize(1); std::vector inputDimensions(naxis(),1); size_t sNaxis = static_cast(naxis()); size_t n(std::min(sNaxis,first.size())); std::copy(&first[0],&first[0]+n,&inputDimensions[0]); for (long i = 0; i < naxis(); ++i) { firstElement += ((inputDimensions[i] - 1)*dimSize); dimSize *=naxes(i); } ++firstElement; read(image, firstElement,nElements,nullValue); } template void PHDU::read (std::valarray& image, const std::vector& first, long nElements) { read(image, first,nElements,static_cast(0)); } template void PHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, S* nullValue) { makeThisCurrent(); if (PrimaryHDU* phdu = dynamic_cast*>(this)) { const std::valarray& __tmp = phdu->readImage(firstVertex,lastVertex,stride,nullValue); image.resize(__tmp.size()); image = __tmp; } else { // FITSutil::fill will take care of sizing. if (bitpix() == Ifloat) { float nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); PrimaryHDU& phdu = dynamic_cast&>(*this); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Idouble) { PrimaryHDU& phdu = dynamic_cast&>(*this); double nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Ibyte) { PrimaryHDU& phdu = dynamic_cast&>(*this); unsigned char nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); unsigned INT32BIT nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); INT32BIT nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } } else if (bitpix() == Ilonglong) { PrimaryHDU& phdu = dynamic_cast&>(*this); LONGLONG nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); unsigned short nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); short nulVal(0); if (nullValue) nulVal = static_cast(*nullValue); FITSUtil::fill(image,phdu.readImage(firstVertex,lastVertex,stride,&nulVal)); } } else { throw CCfits::FitsFatal(" casting image types "); } } } template void PHDU::read (std::valarray& image, const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride) { read(image, firstVertex,lastVertex,stride,static_cast(0)); } template void PHDU::write(long first, long nElements, const std::valarray& data, S* nullValue) { makeThisCurrent(); if (PrimaryHDU* image = dynamic_cast*>(this)) { image->writeImage(first,nElements,data,nullValue); } else { if (bitpix() == Ifloat) { std::valarray __tmp; PrimaryHDU& phdu = dynamic_cast&>(*this); FITSUtil::fill(__tmp,data); float* pfNullValue = 0; float fNullValue = 0.0; if (nullValue) { fNullValue = static_cast(*nullValue); pfNullValue = &fNullValue; } phdu.writeImage(first,nElements,__tmp, pfNullValue); } else if (bitpix() == Idouble) { std::valarray __tmp; PrimaryHDU& phdu = dynamic_cast&>(*this); FITSUtil::fill(__tmp,data); double* pdNullValue = 0; double dNullValue = 0.0; if (nullValue) { dNullValue = static_cast(*nullValue); pdNullValue = &dNullValue; } phdu.writeImage(first,nElements,__tmp, pdNullValue); } else if (bitpix() == Ibyte) { PrimaryHDU& phdu = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); unsigned char *pbNull=0; unsigned char bNull=0; if (nullValue) { bNull = static_cast(*nullValue); pbNull = &bNull; } phdu.writeImage(first,nElements,__tmp, pbNull); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); unsigned INT32BIT *plNull=0; unsigned INT32BIT lNull=0; if (nullValue) { lNull = static_cast(*nullValue); plNull = &lNull; } phdu.writeImage(first,nElements,__tmp, plNull); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); INT32BIT *plNull=0; INT32BIT lNull=0; if (nullValue) { lNull = static_cast(*nullValue); plNull = &lNull; } phdu.writeImage(first,nElements,__tmp, plNull); } } else if (bitpix() == Ilonglong) { PrimaryHDU& phdu = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); LONGLONG *pllNull=0; LONGLONG llNull=0; if (nullValue) { llNull = static_cast(*nullValue); pllNull = &llNull; } phdu.writeImage(first,nElements,__tmp, pllNull); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); unsigned short *psNull=0; unsigned short sNull=0; if (nullValue) { sNull = static_cast(*nullValue); psNull = &sNull; } phdu.writeImage(first,nElements,__tmp, psNull); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); std::valarray __tmp; FITSUtil::fill(__tmp,data); short *psNull=0; short sNull=0; if (nullValue) { sNull = static_cast(*nullValue); psNull = &sNull; } phdu.writeImage(first,nElements,__tmp,psNull); } } else { FITSUtil::MatchType errType; throw FITSUtil::UnrecognizedType(FITSUtil::FITSType2String(errType())); } } } template void PHDU::write(long first, long nElements, const std::valarray& data) { write(first, nElements, data, static_cast(0)); } template void PHDU::write(const std::vector& first, long nElements, const std::valarray& data, S* nullValue) { makeThisCurrent(); size_t n(first.size()); long firstElement(0); long dimSize(1); for (long i = 0; i < n; ++i) { firstElement += ((first[i] - 1)*dimSize); dimSize *=naxes(i); } ++firstElement; write(firstElement,nElements,data,nullValue); } template void PHDU::write(const std::vector& first, long nElements, const std::valarray& data) { makeThisCurrent(); size_t n(first.size()); long firstElement(0); long dimSize(1); for (long i = 0; i < n; ++i) { firstElement += ((first[i] - 1)*dimSize); dimSize *=naxes(i); } ++firstElement; write(firstElement,nElements,data); } template void PHDU::write(const std::vector& firstVertex, const std::vector& lastVertex, const std::vector& stride, const std::valarray& data) { makeThisCurrent(); try { PrimaryHDU& image = dynamic_cast&>(*this); image.writeImage(firstVertex,lastVertex,stride,data); } catch (std::bad_cast&) { // write input type S to Image type... if (bitpix() == Ifloat) { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } else if (bitpix() == Idouble) { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } else if (bitpix() == Ibyte) { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } else if (bitpix() == Ilong) { if ( zero() == ULBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } } else if (bitpix() == Ilonglong) { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } else if (bitpix() == Ishort) { if ( zero() == USBASE && scale() == 1) { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } else { PrimaryHDU& phdu = dynamic_cast&>(*this); size_t n(data.size()); std::valarray __tmp(n); for (size_t j= 0; j < n; ++j) __tmp[j] = data[j]; phdu.writeImage(firstVertex,lastVertex,stride,__tmp); } } else { FITSUtil::MatchType errType; throw FITSUtil::UnrecognizedType(FITSUtil::FITSType2String(errType())); } } } } // namespace CCfits #endif CCfits-2.7/FITS.h0000644000225700000360000011523114764627567012774 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef FITS_H #define FITS_H 1 // exception #include // string #include // map #include // ExtHDU #include "ExtHDU.h" // HDUCreator #include "HDUCreator.h" // FitsError #include "FitsError.h" namespace CCfits { class PHDU; class Table; class GroupTable; } // namespace CCfits //class PHDU; extern "C" { # include } #include namespace CCfits { /*! \class FITS \brief Memory object representation of a disk FITS file Constructors are provided to get FITS data from an existing file or to create new FITS data sets. Overloaded versions allow the user to: (a) read from one or more specified extensions, specified by EXTNAME and VERSION or by HDU number. (b) read either just header information or data on construction (c) specify scalar keyword values to be read on construction (d) open and read an extension that has specified keyword values (e) create a new FITS object and corresponding file, including an empty primary header. The memory fits object as constructed is always an image of a valid FITS object, i.e. a primary HDU is created on construction. Calling the destructor closes the disk file, so that FITS files are automatically deleted at the end of scope unless other arrangements are made */ /*! @defgroup FITSexcept FITS Exceptions */ /*! \class FITS::NoSuchHDU @ingroup FITSexcept @brief exception thrown by HDU retrieval methods. */ /*! \fn FITS::NoSuchHDU::NoSuchHDU(const String& diag, bool silent) \brief Exception ctor, prefixes the string "FITS Error: Cannot read HDU in FITS file:" before the specific message. \param diag A specific diagnostic message, usually the name of the extension whose read was attempted. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class FITS::CantOpen @ingroup FITSexcept @brief thrown on failure to open existing file */ /*! \fn FITS::CantOpen::CantOpen(const String& diag, bool silent) \brief Exception ctor prefixes the string: "FITS Error: Cannot create file " before specific message This exception will be thrown if users attempt to open an existing file for write access to which they do not have permission, or of course if the file does not exist. \param diag A specific diagnostic message, the name of the file that was to be created. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class FITS::CantCreate @ingroup FITSexcept @brief thrown on failure to create new file */ /*! \fn FITS::CantCreate::CantCreate(const String& msg, bool silent) \brief Exception ctor prefixes the string: "FITS Error: Cannot create file " before specific message This exception will be thrown if the user attempts to write to a protected directory or attempts to create a new file with the same name as an existing file without specifying overwrite [overwrite is specified by adding the character '!' before the filename, following the cfitsio convention]. \param msg A specific diagnostic message, the name of the file that was to be created. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class FITS::OperationNotSupported @ingroup FITSexcept @brief thrown for unsupported operations, such as attempted to select rows from an image extension. */ /*! \fn FITS::OperationNotSupported::OperationNotSupported(const String& msg, bool silent) \brief Exception ctor, prefixes the string "FITS Error: Operation not supported:" before the specific message. \param msg A specific diagnostic message. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \fn FITS::FITS(const FITS &right) \brief copy constructor */ /*! \fn FITS::FITS(const String &name, RWmode rwmode, bool readDataFlag, const std::vector& primaryKeys) \brief basic constructor This basic constructor makes a FITS object from the given filename. The file name is the only required argument. The file name string is passed directly to the cfitsio library: thus the extended file name syntax described in the cfitsio manual should work as documented. (Though the extended file name feature which allows the opening of a particular image located in the row of a table is currently unsupported.) If the rwmode is Read [default]: It will read all of the headers in the file, and all of the data if the readDataFlag is supplied as true. It will also read optional primary keys. Upon completion, the the last header in the file will become the current extension. (However if the file name includes extended syntax selecting a particular extension, that extension will be the current one.) If the rwmode is Write and the file already exists: The file is opened in read-write mode, all of the headers of the file are read, and all of the data if the readDataFlag is supplied as true. It will also read optional primary keys. For backwards compatibility with older versions of CCfits (which only read the primary when in Write mode for pre-existing files), the primary will become the current extension. If the rwmode is Write and the file does NOT exist (or is overwritten using '!' syntax): A default primary HDU will be created in the file with BITPIX=8 and NAXIS=0. However if you wish to create a new file with image data in the primary, the version of the FITS constructor that specifies the data type and number of axes should be used instead. \param name The name of the FITS file to be read/written \param rwmode The read/write mode: must be Read or Write \param readDataFlag boolean: read data on construction if true \param primaryKeys Allows optional reading of primary header keys on construction \exception NoSuchHDU thrown on HDU seek error either by index or {name,version} \exception FitsError thrown on non-zero status code from cfitsio when not overriden by FitsException error to produce more illuminating message. */ /*! \fn FITS::FITS (const String &name, RWmode rwmode, const std::vector& searchKeys, const std::vector &searchValues, bool readDataFlag = false, const std::vector& hduKeys = std::vector(), const std::vector& primaryKey = std::vector(), int version = 1); \brief open fits file and read HDU which contains supplied keywords with [optional] specified values (sometimes one just wants to know that the keyword is present). Optional parameters allows the reading of specified primary HDU keys and specified columns and keywords in the HDU of interest. \param name The name of the FITS file to be read \param rwmode The read/write mode: must be Read or Write \param searchKeys A string vector of keywords to search for in each header \param searchValues A string vector of values those keywords are required to have for success. Note that the keys must be of type string. If any value does not need to be checked the corresponding searchValue element can be empty. \param readDataFlag boolean: if true, read data if HDU is found \param hduKeys Allows optional reading of keys in the HDU that is searched for if it is successfully found \param primaryKey Allows optional reading of primary header keys on construction \param version Optional version number. If specified, checks the EXTVER keyword. \exception FitsError thrown on non-zero status code from cfitsio when not overriden by FitsException error to produce more illuminating message. */ /*! \fn FITS::FITS(const String &name, RWmode rwmode, const string &hduName, bool readDataFlag, const std::vector& hduKeys, const std::vector& primaryKey, int version); \brief Open a FITS file and read a single specified HDU. This and similar constructor variants support reading table data. Optional arguments allow the reading of primary header keys and specified data from hduName, the HDU to be read. An object representing the primary HDU is always created: if it contains an image, that image may be read by subsequent calls. If extended file name syntax is used and selects an extension other than hduName, a FITS::OperationNotSupported exception will be thrown. \param name The name of the FITS file to be read \param rwmode The read/write mode: takes values Read or Write \param hduName The name of the HDU to be read. \param hduKeys Optional array of keywords to be read from the HDU \param version Optional version number. If not supplied the first HDU with name hduName is read see above for other parameter definitions */ /*! \fn FITS::FITS(const String &name, RWmode rwmode, const std::vector& hduNames, bool readDataFlag, const std::vector& primaryKey); This is intended as a convenience where the file consists of single versions of HDUs and data only, not keys are to be read. If extended file name syntax is used and selects an extension not listed in hduNames, a FITS::OperationNotSupported exception will be thrown. \param hduNames array of HDU names to be read. see above for other parameter definitions. */ /*! \fn FITS::FITS(const String &name, RWmode rwmode, const std::vector& hduNames, const std::vector >& hduKeys, bool readDataFlag, const std::vector& primaryKeys, const std::vector& hduVersions); \brief FITS read constructor in full generality. \param hduVersions an optional version number for each HDU to be read \param hduKeys an array of keywords for each HDU to be read. see above for other parameter definitions. */ /*! \fn FITS::FITS(const String& name, int bitpix, int naxis, long *naxes) ; \brief Constructor for creating new FITS objects containing images. This constructor is only called for creating new files (mode is not an argument) and creates a new primary HDU with the datatype & axes specified by bitpix, naxis, and naxes. The data are added to the new fits object and file by subsequent calls to FITS::pHDU().write( ) A file with a compressed image may be creating by appending to the end of the file name the same "[compress ...]" syntax specified in the cfitsio manual. Note however that the compressed image will be placed in the first extension and NOT in the primary HDU. If the filename corresponds to an existing file and does not start with the '!' character the construction will fail with a CantCreate exception. The arguments are: \param name The file to be written to disk \param bitpix the datatype of the primary image. bitpix may be one of the following CFITSIO constants: BYTE_IMG, SHORT_IMG, LONG_IMG, FLOAT_IMG, DOUBLE_IMG, USHORT_IMG, ULONG_IMG, LONGLONG_IMG. Note that if you send in a bitpix of USHORT_IMG or ULONG_IMG, CCfits will set HDU::bitpix() to its signed equivalent (SHORT_IMG or LONG_IMG), and then set BZERO to 2^15 or 2^31. \param naxis the data dimension of the primary image \param naxes the array of axis lengths for the primary image. Ignored if naxis =0, i.e. the primary header is empty. extensions can be added arbitrarily to the file after this constructor is called. The constructors should write header information to disk: */ /*! \fn FITS::FITS(const string &name, RWmode rwmode, int hduIndex, bool readDataFlag, const std::vector& hduKeys, const std::vector& primaryKey) ; \brief read a single numbered HDU. Constructor analogous to the version that reads by name. This is required since HDU extensions are not required to have the EXTNAME or HDUNAME keyword by the standard. If there is no name, a dummy name based on the HDU number is created and becomes the key. If extended file name syntax is used and selects an extension other than hduIndex, a FITS::OperationNotSupported exception will be thrown. \param hduIndex The index of the HDU to be read. see above for other parameter definitions. */ /*! \fn FITS::~FITS() \brief destructor */ /*! \fn FITS::FITS (const String& fileName, const FITS& source) \brief Create a new FITS object and corresponding file with a copy of the primary header of the source. If the filename corresponds to an existing file and does not start with the '!' character, the construction will fail with a CantCreate exception. \param fileName New file to be created. \param source A previously created FITS object to be copied. */ /*! \fn static void FITS::clearErrors() \brief clear the error stack and set status to zero. */ /*! \fn void FITS::deleteExtension(const String& doomed, int version=1) \brief Delete extension specified by name and version number. Removes extension from FITS object and memory copy. The index numbers of all HDU objects which follow this in the file will be decremented by 1. \param doomed the name of the extension to be deleted \param version an optional version number, the EXTVER keyword, defaults to 1 \exception NoSuchHDU Thrown if there is no extension with the specified version number \exception FitsError Thrown if there is a non-zero status code from cfitsio, e.g. if the delete operation is applied to a FITS file opened for read only access. */ /*! \fn void FITS::deleteExtension(int doomed) \brief Delete extension specified by extension number The index numbers of all HDU objects which follow this in the file will be decremented by 1. */ /*! \fn void FITS::read(const String &hduName, bool readDataFlag, const std::vector &keys, int version=1) ; \brief get data from single HDU from disk file. This is provided to allow the adding of additional HDUs to the FITS object after construction of the FITS object. After the read() functions have been called for the FITS object, subsequent read method to the Primary, ExtHDU, and Column objects will retrieve data from the FITS object in memory (those methods can be called to read data in those HDU objects that was not read when the HDU objects were constructed. All the read functions will throw NoSuchHDU exceptions on seek errors since they involve constructing HDU objects. The parameter definitions are as documented for the corresponding constructor. */ /*! \fn FITS::read (const std::vector& searchKeys, const std::vector &searchValues, bool readDataFlag, const std::vector& hduKeys, int version=1) ; \brief read method for read header or HDU that contains specified keywords. \param searchKeys A string vector of keywords to search for in each header \param searchValues A string vector of values those keywords are required to have for success. Note that the keys must be of type string. If any value does not need to be checked the corresponding searchValue element can be empty. \param readDataFlag boolean: if true, read data if HDU is found \param hduKeys Allows optional reading of keys in the HDU that is searched for if it is successfully found \param version Optional version number. If specified, checks the EXTVER keyword. */ /*! \fn void FITS::copy(const HDU& source); \brief copy the HDU source into the FITS object. This function adds a copy of an HDU from another file into *this. It does not create a duplicate of an HDU in the file associated with *this. */ /*! \fn void FITS::read(const std::vector &hduNames, bool readDataFlag) \brief get data from a set of HDUs from disk file. This is provided to allow reading of HDUs after construction. see above for parameter definitions. */ /*! \fn void FITS::read(const std::vector &hduNames, const std::vector > &keys, bool readDataFlag = false, const std::vector& hduVersions = std::vector()); \brief get data from a set of HDUs from disk file, specifying keys and version numbers. This is provided to allow reading of HDUs after construction. see above for parameter definitions. */ /*! \fn void FITS::read (int hduIndex, bool readDataFlag = false, const std::vector &keys = std::vector()) ; \brief read an HDU specified by index number. This is provided to allow reading of HDUs after construction. see above for parameter definitions. */ /*! \fn const String& FITS::currentExtensionName () const \brief return the name of the extension that the fitsfile is currently addressing. If the extension in question does not have an EXTNAME or HDUNAME keyword, then the function returns $HDU$n, where n is the sequential HDU index number (primary HDU = 0). */ /*! \fn void currentExtensionName (const String& extName) \brief Set the name of the extension that the fitsfile is currently addressing. */ /*! \fn int FITS::open(RWmode rwmode= Read) ; \brief open the file with mode as specified on construction. Returns the 0-based current HDU index. */ /*! \fn bool FITS::create() ; \brief create new fits file on disk and construct the fitsfile pointer */ /*! \fn void FITS::close() throw(); \brief close the file. */ /*! \fn const FITS::ExtHDU& FITS::extension(int i) const \brief return FITS extension by index number. N.B. The input index number is currently defined as enumerating extensions, so the extension(1) returns HDU number 2. */ /*! \fn FITS::ExtHDU& FITS::extension(int i) ; \brief return FITS extension by index number. non-const version. see const version for details. */ /*! \fn friend std::ostream & operator << (std::ostream &s, const FITS& right) \brief Output operator. Calls output operators for HDUs in turn. This operator acts similarly to the ftool fdump for a fits file, except that there is no freedom to output partial information. The current implementation of this operator for PHDU objects only outputs the array sizes, not the data, which that for tables prints the data also. Provision of this operator is intended largely for debugging purposes. */ /*! \fn const ExtHDU& FITS::extension(const String& hduName, int version) const \brief return FITS extension by name and (optionally) version number. */ /*! \fn ExtHDU& FITS::extension(const String& hduName, int version) \brief return FITS extension by name and (optionally) version number. */ /*! \fn const std::multimap& FITS::extension () const; \brief return const reference to the extension container This is useful for such operations as extension().size() etc. */ /*! \fn Table* FITS::addTable (const String& hduName, int rows, const std::vector& columnName, const std::vector& columnFmt, const std::vector& columnUnit, HduType type, int version); \brief Add a table extension to an existing FITS object. Add extension to FITS object for file with w or rw access. \param rows The number of rows in the table to be created. \param columnName (Optional) A vector containing the table column names \param columnFmt (Optional) A vector containing the table column formats \param columnUnit (Optional) A vector giving the units of the columns. \param type (Optional) The table type - AsciiTbl or BinaryTbl (defaults to BinaryTbl) the lists of columns are optional - one can create an empty table extension but if supplied, colType, columnName and colFmt must have equal dimensions. \param version (Optional) The EXTVER keyword for the extension version number, defaults to 1 \todo the code should one day check that the version keyword is higher than any other versions already added to the FITS object (although cfitsio doesn't do this either). */ /*! \fn void FITS::addImage (const String& hduName, int bpix, std::vector& naxes, int version) \brief Add an image extension to an existing FITS object. (File with w or rw access). Does not make primary images, which are built in the constructor for the FITS file. The image data is not added here: it can be added by a call to one of the ExtHDU::write functions. bpix may be one of the following CFITSIO constants: BYTE_IMG, SHORT_IMG, LONG_IMG, FLOAT_IMG, DOUBLE_IMG, USHORT_IMG, ULONG_IMG, LONGLONG_IMG. Note that if you send in a bpix of USHORT_IMG or ULONG_IMG, CCfits will set HDU::bitpix() to its signed equivalent (SHORT_IMG or LONG_IMG), and then set BZERO to 2^15 or 2^31. \todo Add a function for replacing the primary image */ /*! \fn FITS::resetPosition() ; \brief explicit call to set the fits file pointer to the primary. */ /*! \fn PHDU& FITS::pHDU() \brief return a reference to the primary HDU. */ /*! \fn const PHDU& FITS::pHDU() const \brief return a const reference to the primary HDU. */ /*! \fn FITS::currentExtension(); \brief return a non-const reference to whichever is the current extension. */ /*! \fn Table& FITS::filter (const String& expression, ExtHDU& inputTable, bool overwrite = true, bool readData = false); \brief Filter the rows of the inputTable with the condition expression, and return a reference to the resulting Table. This function provides an object oriented version of cfitsio's fits_select_rows call. The expression string is any boolean expression involving the names of the columns in the input table (e.g., if there were a column called "density", a valid expression might be "DENSITY > 3.5": see the cfitsio documentation for further details). [N.B. the "append" functionality described below does not work when linked with cfitsio 2.202 or prior because of a known issue with that version of the library. This causes the output to be a new extension with a correct header copy and version number but without the filtered data]. If the inputTable is an Extension HDU of this FITS object, then if overwrite is true the operation will overwrite the inputTable with the filtered version, otherwise it will append a new HDU with the same extension name but the next highest version (EXTVER) number available. */ /*! \fn void FITS::destroy() throw() \brief Erase FITS object and close corresponding file. Force deallocation and erase of elements of a FITS memory object. Allows a reset of everything inside the FITS object, and closes the file. The object is inaccessible after this call. destroy is public to allow users to reuse a symbol for a new file, but it is identical in operation to the destructor. */ /*! \fn void FITS::flush() \brief flush buffer contents to disk Provides manual control of disk writing operation. Image data are flushed automatically to disk after the write operation is completed, but not column data. */ /*! \fn const std::string& FITS::name () const \brief return filename of file corresponding to FITS object */ /*! \fn static const bool FITS::verboseMode () \brief return verbose setting for library If true, all messages that are reported by exceptions are printed to std::cerr. */ /*! \fn static void FITS::setVerboseMode (bool ) \brief set verbose setting for library */ /*! \fn void FITS::setCompressionType (int compType) \brief set the compression algorithm to be used when adding image extensions to the FITS object. \param compType Currently 3 symbolic constants are defined in cfitsio for specifying compression algorithms: GZIP_1, RICE_1, and PLIO_1. See the cfitsio documentation for more information about these algorithms. Entering NULL for compType will turn off compression and cause normal FITS images to be written. */ /*! \fn void FITS::setTileDimensions (const std::vector& tileSizes) \brief Set the dimensions of the tiles into which the image is divided during compression. \param tileSizes A vector of length N containing the tile dimesions. If N is less than the number of dimensions of the image it is applied to, the unspecified dimensions will be assigned a size of 1 pixel. If N is larger than the number of image dimensions, the extra dimensions will be ignored. The default cfitsio behavior is to create tiles with dimensions NAXIS1 x 1 x 1 etc. up to the number of image dimensions. */ /*! \fn void FITS::setNoiseBits (int noiseBits) \brief Set the cfitsio noisebits parameter used when compressing floating-point images. The default value is 4. Decreasing the value of noisebits will improve the overall compression efficiency at the expense of losing more information. */ /*! \fn int FITS::getCompressionType () const \brief Get the int specifying the compression algorithm to be used when adding an image extension. */ /*! \fn void FITS::getTileDimensions (std::vector& tileSizes) const \brief Get the current settings of dimension sizes for tiles used in image compression. \param tileSizes A vector to be filled with cfitsio's current tile dimension settings. CCfits will resize this vector to contain the proper number of values. */ /*! \fn int FITS::getNoiseBits () const \brief Get the cfitsio noisebits parameter used when compressing floating-point images. */ /*! \fn fitsfile* FITS::fitsPointer() const \brief return the CFITSIO fitsfile pointer for this FITS object */ // ! The FITS object class. Contains a primary HDU and Extensions indexed by name. class FITS { public: class NoSuchHDU : public FitsException //## Inherits: %396C90CB0236 { public: NoSuchHDU (const String& diag, bool silent = true); protected: private: private: //## implementation }; class OperationNotSupported : public FitsException //## Inherits: %39806C7600D5 { public: OperationNotSupported (const String& msg, bool silent = true); protected: private: private: //## implementation }; class CantOpen : public FitsException //## Inherits: %39C8EB1D02C0 { public: CantOpen (const String& diag, bool silent = true); protected: private: private: //## implementation }; struct CantCreate : public FitsException //## Inherits: %39C8EB10020B { CantCreate (const String& diag, bool silent = false); public: protected: private: private: //## implementation }; FITS (const String &name, RWmode rwmode = Read, bool readDataFlag = false, const std::vector& primaryKeys = std::vector()); // Open a file and read a specified HDU. // // Optional parameter allows the reading of specified primary HDU keys. FITS (const String &name, RWmode rwmode, const string &hduName, bool readDataFlag = false, const std::vector& hduKeys = std::vector(), const std::vector& primaryKey = std::vector(), int version = 1); // Read data from a set of specified HDUs. keywords can only be specified for the primary here. // The code will call a different constructor for the case where keywords are required for // the extensions. FITS (const String &name, RWmode rwmode, const std::vector& hduNames, bool readDataFlag = false, const std::vector& primaryKey = std::vector()); // Initialize a new FITS file object with the primary from a // different file. FITS (const String& fileName, const FITS& source); // Fully general FITS HDU reader. May read any part of fits file by // supplying HDU names and version numbers, and optionally // the data read flag. FITS (const String &name, RWmode rwmode, const std::vector& hduNames, const std::vector >& hduKeys, bool readDataFlag = false, const std::vector& primaryKeys = std::vector(), const std::vector& hduVersions = std::vector()); // Writing constructor. Takes a name and information to create an empty // Primary HDU which can then be filled with calls to HDU methods. FITS (const String& name, int bitpix, int naxis, long *naxes); // Open a file and read a specified HDU. // // Optional parameter allows the reading of specified primary HDU keys. FITS (const string &name, RWmode rwmode, int hduIndex, bool readDataFlag = false, const std::vector& hduKeys = std::vector(), const std::vector& primaryKey = std::vector()); // Open a file and read a HDU that contains specified // search keywords with [optional] specified values // (sometimes one just wants to know that the keyword is present). // // Optional parameters allows the reading of specified primary HDU keys and specified keywords in // the HDU of interest. FITS (const String &name, RWmode rwmode, const std::vector& searchKeys, const std::vector &searchValues, bool readDataFlag = false, const std::vector& hduKeys = std::vector(), const std::vector& primaryKey = std::vector(), int version = 1); ~FITS(); static void clearErrors (); void deleteExtension (const String& doomed, int version = 1); // Read keys and data from a single ExtHDU in the file. void read (const String &hduName, bool readDataFlag = false, const std::vector &keys = std::vector(), int version = 1); // Read multiple ExtHDUs. If the version number needs to be specified // then one must call a different method. void read (const std::vector &hduNames, bool readDataFlag = false); // Read selected data from multiple ExtHDUs void read (const std::vector &hduNames, const std::vector > &keys, bool readDataFlag = false, const std::vector& hduVersions = std::vector()); // Read keys and data from a single ExtHDU in the file. // Construct and Read HDU specified by number. One can add further HDUs by number using the HDUCreator factory. void read (int hduIndex, bool readDataFlag = false, const std::vector &keys = std::vector()); // Open a file and read a HDU that contains specified // search keywords with [optional] specified values // (sometimes one just wants to know that the keyword is present). // // Optional parameters allows the reading of specified primary HDU keys and specified keywords in // the HDU of interest. void read (const std::vector& searchKeys, const std::vector &searchValues, bool readDataFlag = false, const std::vector& hduKeys = std::vector(), int version = 1); ExtHDU& currentExtension (); ExtHDU& extension (int i); const ExtHDU& extension (int i) const; ExtHDU& extension (const String& hduName, int version = 1); const ExtHDU& extension (const String& hduName, int version = 1) const; fitsfile* fitsPointer () const; PHDU& pHDU (); const PHDU& pHDU () const; friend std::ostream& operator << (std::ostream& s, const FITS& right); // ! add a new Table extension to a FITS object Table* addTable (const String& hduName, int rows, // ! Number of rows in new table. Mandatory const std::vector& columnName = std::vector(), // ! Optional set of column names for new table const std::vector& columnFmt = std::vector(), // ! Column formats for column units. Mandatory if columnName is specified const std::vector& columnUnit = std::vector(), // ! Column formats for column units. Optional HduType type = BinaryTbl, int version = 1); // ! add a new Group Table to the FITS object Table * addGroupTable(const String & groupName, int groupID); //GroupTable * addGroupTable(const String & groupName, int groupID); // ! add a new ImageExt (image extension) to the FITS object. A "writing" method. ExtHDU* addImage (const String& hduName, int bpix, std::vector& naxes, int version = 1); // Force destruction of the FITS object. Essentially // is a manual destructor call. void destroy () throw (); void flush (); void resetPosition (); const ExtMap& extension () const; void deleteExtension (int doomed); const String& currentExtensionName () const; void currentExtensionName (const String& extName); const String& name () const; void copy (const HDU& source); Table& filter (const String& expression, ExtHDU& inputTable, bool overwrite = true, bool readData = false); void setCompressionType (int compType); void setTileDimensions (const std::vector& tileSizes); void setNoiseBits (int noiseBits); int getCompressionType () const; void getTileDimensions (std::vector& tileSizes) const; int getNoiseBits () const; static bool verboseMode (); static void setVerboseMode (bool value); public: // Additional Public Declarations protected: // Additional Protected Declarations private: FITS(const FITS &right); FITS & operator=(const FITS &right); void unmapExtension (ExtHDU& doomed); int nextVersionNumber (const String& inputName) const; // read the primary HDU. Read the image if // readDataFlag is true. void read (bool readDataFlag = false, const std::vector& keys = std::vector()); // Returns index of current HDU where primary = 0. (Extended file syntax may cause a shift to an // extension.) int open (RWmode rwmode = Read); // Create returns true if a new file was created or an // existing file overwritten, false if appending. // // It throws exception CantCreate or CantOpen if either fails. bool create (); // Close the fits file. // // Called in destructors so must not throw. int close () throw (); std::ostream & put (std::ostream &s) const; ExtHDU& extbyVersion (const String& hduName, int version) const; void pHDU (PHDU* value); void readExtensions (bool readDataFlag = false); ExtHDU* addExtension (ExtHDU* ext); String nameOfUnmapped (int hduNum) const; void cloneHeader (const ExtHDU& source); // Check if caller is requesting an already read ExtHDU (ie. one // that's already been added to ExtMap). If hduIdx=0, check by // matching name and optional version. Otherwise check by matching // hduIdx. If found, returns pointer to the ExtHDU. Otherwise // returns 0. This will not throw. ExtHDU* checkAlreadyRead(const int hduIdx, const String& hduName = string(""), const int version=1) const throw(); // Additional Private Declarations void destroyPrimary (); void destroyExtensions (); int currentCompressionTileDim () const; void currentCompressionTileDim (int value); private: //## implementation // Data Members for Class Attributes static bool s_verboseMode; int m_currentCompressionTileDim; // Data Members for Associations RWmode m_mode; std::string m_currentExtensionName; std::string m_filename; PHDU* m_pHDU; ExtMap m_extension; fitsfile* m_fptr; // ## Additional Implementation Declarations friend void HDU::makeThisCurrent() const; // MakeImage needs to access the m_pHDU pointer friend PHDU * HDUCreator::MakeImage (int bpix, int naxis, const std::vector& naxes); }; // Class CCfits::FITS::NoSuchHDU // Class CCfits::FITS::OperationNotSupported // Class CCfits::FITS::CantOpen // Class CCfits::FITS::CantCreate // Class CCfits::FITS inline ExtHDU& FITS::extension (const String& hduName, int version) { return extbyVersion(hduName,version); } inline std::ostream& operator << (std::ostream& s, const FITS& right) { return right.put(s); } inline bool FITS::verboseMode () { return s_verboseMode; } inline void FITS::setVerboseMode (bool value) { s_verboseMode = value; } inline int FITS::currentCompressionTileDim () const { return m_currentCompressionTileDim; } inline void FITS::currentCompressionTileDim (int value) { m_currentCompressionTileDim = value; } inline const String& FITS::currentExtensionName () const { return m_currentExtensionName; } inline void FITS::currentExtensionName (const String& extName) { m_currentExtensionName = extName; } inline const String& FITS::name () const { return m_filename; } inline void FITS::pHDU (PHDU* value) { m_pHDU = value; } inline const PHDU& FITS::pHDU () const { return *m_pHDU; } inline PHDU& FITS::pHDU () { return *m_pHDU; } inline const ExtMap& FITS::extension () const { return m_extension; } inline fitsfile* FITS::fitsPointer () const { return m_fptr; } } // namespace CCfits #endif CCfits-2.7/config.h.in0000644000225700000360000000475514764627567014111 0ustar cagordonlhea/* config.h.in. Generated from configure.ac by autoheader. */ /* define if the compiler supports basic C++14 syntax */ #undef HAVE_CXX14 /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the `cfitsio' library (-lcfitsio). */ #undef HAVE_LIBCFITSIO /* define if the compiler implements namespaces */ #undef HAVE_NAMESPACES /* Define if you have the package */ #undef HAVE_PKG_cfitsio /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDIO_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* define if the compiler has valarray */ #undef HAVE_VALARRAY /* Define if IteratorBase does not work with some STL functions. */ #undef ITERATORBASE_DEFECT /* Define to the sub-directory where libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define partical template specializtion can not be declared. */ #undef SPEC_TEMPLATE_DECL_DEFECT /* Define to 1 if you have the header file instead of */ #undef SSTREAM_DEFECT /* Define to 1 if all of the C90 standard headers exist (not just the ones required in a freestanding environment). This macro is provided for backward compatibility; new code need not use it. */ #undef STDC_HEADERS /* Define if compile can not resolve ambiguity in overloaded template functions. */ #undef TEMPLATE_AMBIG7_DEFECT /* Version number of package */ #undef VERSION CCfits-2.7/GroupTable.cxx0000644000225700000360000001624114764627567014647 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@heasarc.gsfc.nasa.gov // // Original author: Kristin Rutkowski #include "GroupTable.h" #include "ExtHDU.h" #include "FITS.h" #include namespace CCfits { // GroupTable::GroupTable (const GroupTable & right) // : BinTable(right), // m_name(right.m_name), // m_id(right.m_id), // m_numMembers(right.m_numMembers) // { // // +++ deep copy the members // // } // make a new group table GroupTable::GroupTable (FITS* p, int groupID, const String & groupName) : BinTable(p, groupID, groupName), m_name(groupName), m_id(groupID), m_numMembers(0) { } GroupTable::~GroupTable() { } HDU * GroupTable::addMember (HDU & newMember) { int status = 0; // add the member object ptr to the container of members m_members.push_back(&newMember); // now physically add a new row to the group table for this new member HDU // the hdupos param is only read if the new member file ptr is null if ( fits_add_group_member(fitsPointer(), newMember.fitsPointer(), 0, &status) ) throw FitsError(status); ++m_numMembers; // +++ not sure if this is what I should be doing here. or just return void return &newMember; } HDU * GroupTable::addMember(int memberPosition) { int status = 0; // if using memberPosition, the new member HDU must be in the same file as // the current grouping table // +++ add this to documentation ExtHDU & newMember = parent()->extension(memberPosition); // +++ so we need to add an HDU * to the vector. what if there is another * to this HDU elsewhere? Does it matter? // add the member object ptr to the container of members m_members.push_back(&newMember); // now physically add a new row to the group table for this new member HDU // the hdupos param is only read if the new member file ptr is null if ( fits_add_group_member(fitsPointer(), NULL, memberPosition , &status) ) throw FitsError(status); ++m_numMembers; // +++ not sure if this is what I should be doing here. or just return void return &newMember; } void GroupTable::listMembers() const { std::cout << "Listing " << m_members.size() << " group members: " << std::endl; std::vector::const_iterator iter; for (iter = m_members.begin(); iter != m_members.end(); ++iter) { std::cout << " " << dynamic_cast(*iter)->name() << std::endl; } } //HDU * GroupTable::removeMember(HDU & member, bool deleteHDU) HDU * GroupTable::removeMember(HDU & member) { // +++ deleteHDU must be false for now bool deleteHDU = false; int status = 0; int rmopt = (deleteHDU ? OPT_RM_MBR : OPT_RM_ENTRY); long toRemove = 0; HDU * returnHDU = (deleteHDU ? NULL : &member); // +++ "updates the member's GRPIDn/GRPLCn keywords" // so I should reread the keywords from this HDU (if it's not deleted), // to update the datamembers? // +++ but there's a bug, and fits_remove_member doesn't actually remove the keys // remove the HDU from the list of group members // go through the vector of members and look for this one std::vector::iterator iter; for (iter = m_members.begin(); iter != m_members.end(); ++iter) { ++toRemove; if ( (**iter) == member ) { m_members.erase(iter); break; } } --m_numMembers; if (fits_remove_member(fitsPointer(), toRemove, rmopt, &status) ) throw FitsError(status); // +++ or should I just not return anything? // if we deleted the HDU, return a null pointer return returnHDU; } //HDU * GroupTable::removeMember(LONGLONG memberNumber, bool deleteHDU) HDU * GroupTable::removeMember(LONGLONG memberNumber) { // +++ deleteHDU must be false for now bool deleteHDU = false; int status = 0; int rmopt = (deleteHDU ? OPT_RM_MBR : OPT_RM_ENTRY); long toRemove = memberNumber; HDU * returnHDU = (deleteHDU ? NULL : *(m_members.begin()+memberNumber-1) ); // +++ "updates the member's GRPIDn/GRPLCn keywords" // so I should reread the keywords from this HDU (if it's not deleted), // to update the datamembers? // +++ but there's a bug, and fits_remove_member doesn't actually remove the keys if ( (memberNumber <= 0) || (memberNumber > m_numMembers) ) { throw; // +++ better exception handling } else { returnHDU = *(m_members.begin()+memberNumber-1); m_members.erase(m_members.begin()+memberNumber-1); } --m_numMembers; if (fits_remove_member(fitsPointer(), toRemove, rmopt, &status) ) throw FitsError(status); // +++ or should I just not return anything? // if we deleted the HDU, return a null pointer return returnHDU; } // void GroupTable::mergeGroups (GroupTable & other, bool removeOther) // { // // int status = 0; // int mgopt = (removeOther ? OPT_MRG_MOV : OPT_MRG_COPY); // // +++ or have a func const getMembers() ? // // add all these new members to the current member vector // std::vector::iterator iter; // for (iter = other.m_members().begin(); iter != other.m_members().end(); ++iter) { // addMember(**iter); // } // // if ( fits_merge_groups(other.fitsPointer(), fitsPointer(), mgopt, &status) ) throw FitsError(status); // // // " In both cases, the GRPIDn and GRPLCn keywords of the member HDUs are updated accordingly." // // +++ again, how should we handle the fact that the keywords in all these HDUs are updated? // // if the HDUs are objects, we should reread the keywords, right? // // // +++ if removeOther, then the other HDU is deleted. How should that be handled here? // // I don't like having extra functionality in a function // // } // void GroupTable::compactGroup(bool deleteSubGroupTables) // { // // int status = 0; // int cmopt = (deleteSubGroupTables ? OPT_CMT_MBR_DEL : OPT_CMT_MBR); // // // first, remove any group tables from the member vector // // +++ am I basically repeating the processing that is inside fits_compact_group ? Since I don't keep detailed info about my members // // // // +++ this may delete HDUs that could possible have an object somewhere. Do we care? // if (fits_compact_group(fitsPointer(), cmopt, &status) ) throw FitsError(status); // // } // bool GroupTable::verifyGroup () const // { // // int status = 0; // long firstFailed = 0; // bool isVerified = false; // // if ( fits_verify_group(fitsPointer(), &firstFailed, &status) ) throw FitsError(status); // // // +++ I'm not sure how I want to handle this function // // if (firstFailed == 0) { // isVerified = true; // } else if (firstFailed > 0) { // // a member HDU failed // // } else { // // a group link failed // // // } // // return isVerified; // // } } // namespace CCfits CCfits-2.7/CCfits0000644000225700000360000000146114764627567013153 0ustar cagordonlhea #ifndef CCFITS #define CCFITS 20031208 #ifndef CCFITSCOOKBOOK_BUILD #include #include #include #include #include #include #include #include #include #include #include #include #include #include #else #include #include #include #include #include #include #include #include #include #include #include #include #include #include #endif #endif CCfits-2.7/CMakeLists.txt0000644000225700000360000001122214764627567014611 0ustar cagordonlheaPROJECT(CCfits) CMAKE_MINIMUM_REQUIRED(VERSION 3.8) # Allow the developer to select whether to build Dynamic or Static libraries OPTION (BUILD_SHARED_LIBS "Build Shared Libraries" OFF) set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}") set (LIB_DESTINATION "${CMAKE_INSTALL_PREFIX}/lib${LIB_SUFFIX}") set (BIN_DESTINATION "${CMAKE_INSTALL_PREFIX}/bin") set (INCLUDE_INSTALL_DIR "${CMAKE_INSTALL_PREFIX}/include/CCfits") # Define project version SET(${PROJECT_NAME}_MAJOR_VERSION 2) SET(${PROJECT_NAME}_MINOR_VERSION 6) SET(${PROJECT_NAME}_VERSION ${${PROJECT_NAME}_MAJOR_VERSION}.${${PROJECT_NAME}_MINOR_VERSION}) SET(LIB_NAME CCfits) SET (LIB_TYPE STATIC) IF (BUILD_SHARED_LIBS) SET (LIB_TYPE SHARED) ENDIF (BUILD_SHARED_LIBS) #============================================================================== # Source code: #============================================================================== FILE(GLOB H_FILES "*.h") SET(H_FILES ${H_FILES} CCfits) SET(SRC_FILES AsciiTable.cxx BinTable.cxx ColumnCreator.cxx Column.cxx ColumnData.cxx ColumnVectorData.cxx ExtHDU.cxx FITS.cxx FitsError.cxx FITSUtil.cxx GroupTable.cxx HDUCreator.cxx HDU.cxx KeyData.cxx KeywordCreator.cxx Keyword.cxx PHDU.cxx Table.cxx ) #============================================================================== # Dependencies: #============================================================================== # Try to get CFITSIO info (incl. dependencies) using pkg-config: SET (PKG_CONFIG_USE_CMAKE_PREFIX_PATH "on") FIND_PACKAGE(PkgConfig) IF (${PkgConfig_FOUND}) PKG_CHECK_MODULES(CFITSIO REQUIRED cfitsio) IF (CFITSIO_FOUND) MESSAGE(STATUS "Found CFITSIO:") MESSAGE(STATUS " CFITSIO_INCLUDE_DIRS = ${CFITSIO_INCLUDE_DIRS}") MESSAGE(STATUS " CFITSIO_LIBRARY_DIRS = ${CFITSIO_LIBRARY_DIRS}") MESSAGE(STATUS " CFITSIO_LIBRARIES = ${CFITSIO_LIBRARIES}") INCLUDE_DIRECTORIES(${CFITSIO_INCLUDE_DIRS}) LINK_DIRECTORIES(${CFITSIO_LIBRARY_DIRS}) ENDIF (CFITSIO_FOUND) # If pkg-config not found, try to find CFITSIO; dependencies e.g. # zlib & curl are really only needed here if CFITSIO is static. ELSE() FIND_PACKAGE(CFITSIO REQUIRED) FIND_PACKAGE(ZLIB REQUIRED) IF (NOT WIN32) FIND_PACKAGE(CURL) ENDIF (NOT WIN32) ENDIF (${PkgConfig_FOUND}) #============================================================================== # Target: #============================================================================== ADD_LIBRARY(${LIB_NAME} ${LIB_TYPE} ${H_FILES} ${SRC_FILES}) TARGET_COMPILE_FEATURES(${LIB_NAME} PRIVATE cxx_std_11) SET_TARGET_PROPERTIES(${LIB_NAME} PROPERTIES VERSION ${${PROJECT_NAME}_VERSION} ) # Visual Studio: IF (MSVC) ADD_DEFINITIONS(-D_CRT_SECURE_NO_DEPRECATE) IF (BUILD_SHARED_LIBS) # MSVC shared is broken; better fix would be to "hide all symbols # for all compilers", and export public symbols with a macro. SET_PROPERTY(TARGET ${LIB_NAME} PROPERTY WINDOWS_EXPORT_ALL_SYMBOLS ON) ENDIF (BUILD_SHARED_LIBS) ENDIF(MSVC) # Add link dependencies: IF (${PkgConfig_FOUND}) # pkg-config supplies the CFITSIO dependencies (zlib, curl) IF (CFITSIO_FOUND) TARGET_LINK_LIBRARIES(${LIB_NAME} ${CFITSIO_LIBRARIES}) ENDIF (CFITSIO_FOUND) ELSE() # pkg-config wasn't found, so add everything individually: INCLUDE_DIRECTORIES(${CFITSIO_INCLUDE_DIR}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${CFITSIO_LIBRARY}) TARGET_LINK_LIBRARIES(${LIB_NAME} ${ZLIB_LIBRARIES}) IF (CURL_FOUND) TARGET_LINK_LIBRARIES(${LIB_NAME} ${CURL_LIBRARIES}) ENDIF (CURL_FOUND) ENDIF (${PkgConfig_FOUND}) #============================================================================== # Install: #============================================================================== include(GNUInstallDirs) install(TARGETS ${LIB_NAME} RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) install(FILES ${H_FILES} DESTINATION ${INCLUDE_INSTALL_DIR}) #============================================================================== # Tests: #============================================================================== IF (TESTS) ENABLE_TESTING() ADD_EXECUTABLE(cookbook cookbook.cxx) INCLUDE_DIRECTORIES(${CMAKE_SOURCE_DIR} "${CMAKE_SOURCE_DIR}/../") TARGET_LINK_LIBRARIES(cookbook ${LIB_NAME} ${CFITSIO_LIBRARIES}) ADD_TEST(cookbook cookbook) SET(TEST_FILES file1.pha) FILE(COPY ${TEST_FILES} DESTINATION ${CCfits_BINARY_DIR}) #FILE(COPY ${CMAKE_SOURCE_DIR}/testprog.tpt DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) ENDIF(TESTS) CCfits-2.7/ColumnCreator.cxx0000644000225700000360000003525214764627567015363 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman // Column #include "Column.h" // Table #include "Table.h" // ColumnData #include "ColumnData.h" // ColumnVectorData #include "ColumnVectorData.h" // ColumnCreator #include "ColumnCreator.h" #include #include using std::complex; namespace CCfits { // Class CCfits::ColumnCreator ColumnCreator::ColumnCreator (Table* p) : m_parent(p) { } ColumnCreator::~ColumnCreator() { } Column * ColumnCreator::MakeColumn (const int index, const String &name, const String &format, const String &unit, const long repeat, const long width, const String &comment, const int decimals) { return 0; } Column * ColumnCreator::getColumn (int number, const String& name, const String& format, const String& unit) { long repeat=1; long width=1; int type=0; double tscale = 1; double tzero = 0; getScaling(number, type, repeat, width, tscale, tzero); return createColumn(number,ValueType(type),name,format,unit,repeat,width,tscale,tzero); } Column * ColumnCreator::createColumn (int number, ValueType type, const String &name, const String &format, const String &unit, long repeat, long width, double scaleFactor, double offset, const String &comment) { switch(type) { case Tstring: if (repeat/width > 1) { // A vector column of strings. Not currently supported in CCfits, // but for backward compatibility do not throw -- user may be // loading a table with no intention of reading or writing to the // vector string column. std::cerr << "\n***CCfits Warning: Column " << number << " is detected to be a vector column of strings.\n" <<" CCfits does not currently support reading and writing to vector string columns.\n"<(number, name, type, format, unit, m_parent, 1, width); break; case VTushort: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); m_column->zero(USBASE); m_column->scale(1); break; case Tushort: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } m_column->zero(USBASE); m_column->scale(1); break; case VTshort: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tshort: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTlogical: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tlogical: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTbyte: case VTbit: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tbit: case Tbyte: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTint: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tint: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTuint: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); m_column->zero(ULBASE); m_column->scale(1); break; case Tuint: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } m_column->zero(ULBASE); m_column->scale(1); break; case VTlong: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tlong: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTlonglong: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tlonglong: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTulong: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); m_column->zero(ULBASE); m_column->scale(1); break; case Tulong: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } m_column->zero(ULBASE); m_column->scale(1); break; case VTfloat: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tfloat: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTdouble: m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); break; case Tdouble: if (repeat == 1) { m_column = new ColumnData(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData(number, name, type, format,unit, m_parent, repeat); } break; case VTcomplex: m_column = new ColumnVectorData >(number, name, type, format,unit, m_parent, repeat); break; case Tcomplex: if (repeat == 1) { m_column = new ColumnData >(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData >(number, name, type, format,unit, m_parent, repeat); } break; case VTdblcomplex: m_column = new ColumnVectorData >(number, name, type, format,unit, m_parent, repeat); break; case Tdblcomplex: if (repeat == 1) { m_column = new ColumnData >(number, name, type, format,unit, m_parent); } else { m_column = new ColumnVectorData >(number, name, type, format,unit, m_parent, repeat); } break; default: // replace with exception. throw FitsFatal("Unknown ValueType in ColumnCreator"); } if ( scaleFactor != 1) { m_column->scale(scaleFactor); m_column->zero(offset); } return m_column; } void ColumnCreator::getScaling (int index, int& type, long& repeat, long& width, double& tscale, double& tzero) { int status (0); if (fits_get_coltype(m_parent->fitsPointer(), index, &type, &repeat, &width, &status)) { throw FitsError(status); } int absType (std::abs(type)) ; FITSUtil::auto_array_ptr pKeyname( new char[FLEN_KEYWORD]); char* keyname = pKeyname.get(); sprintf(keyname, "%s%d",Column::TSCAL().c_str(),index); bool scalePresent (!fits_read_key(m_parent->fitsPointer(),Tdouble,keyname,&tscale,0,&status)); // reset the status flag if there was no scale factor so cfitsio will not // propagate the error code. if (!scalePresent) status = 0; sprintf(keyname, "%s%d", Column::TZERO().c_str(),index); fits_read_key(m_parent->fitsPointer(),Tdouble,keyname,&tzero,0,&status); // if there is no BSCALE key present or BSCALE == 1 ... if (!scalePresent || (scalePresent && tscale == 1)) { if ( !status ) { switch (absType) { case Tshort: if (tzero == USBASE) { type > 0 ? type = Tushort : type = VTushort ; } break; case Tint: if (tzero == ULBASE) { type > 0 ? type = Tuint : type = VTuint ; } break; case Tlong: if (tzero == ULBASE) { type > 0 ? type = Tulong : type = VTulong ; } break; default: break; } } } else // scale present and tmpScale != 1. { switch (absType) { case Tbit: case Tbyte: case Tint: case Tshort: type > 0 ? type = Tfloat: type = VTfloat; break; case Tlong: case Tlonglong: type > 0 ? type = Tdouble: type = VTdouble; break; default: break; // do nothing. } } } // Additional Declarations } // namespace CCfits CCfits-2.7/FITSUtil.cxx0000644000225700000360000004253514764627567014213 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif // FITSUtil #include "FITSUtil.h" #include "FitsError.h" #include "FITS.h" #include #include #include using std::string; namespace CCfits { const unsigned long USBASE = 1 << 15; const unsigned long ULBASE = (unsigned long)1 << 31; namespace FITSUtil { InvalidConversion::InvalidConversion (const string& diag, bool silent) : FitsException(string("Fits Error: Attempt to perform invalid implicit conversion "),silent) { addToMessage(diag); if (FITS::verboseMode() || !silent) std::cerr << diag << '\n'; } char** CharArray (const std::vector& inArray) { size_t n = inArray.size(); if (n == 0) return 0; char** c = new char*[n]; for (size_t i = 0; i < n; ++i) { size_t m(inArray[i].length()); c[i] = new char[m+1]; strncpy(c[i],inArray[i].c_str(),m + 1); } return c; } #if TEMPLATE_AMBIG_DEFECT || TEMPLATE_AMBIG7_DEFECT void fillMSvsvs (std::vector& outArray, const std::vector& inArray, size_t first, size_t last) { // recall behavior of iterators: last has to be one-past-the-last entry. // if last == first, this will still do something. the "first-1" is a zero based indexing // correction. outArray.assign(inArray.begin()+first-1,inArray.begin()+last); } #endif void fill (std::vector& outArray, const std::vector& inArray, size_t first, size_t last) { // recall behavior of iterators: last has to be one-past-the-last entry. // if last == first, this will still do something. the "first-1" is a zero based indexing // correction. outArray.assign(inArray.begin()+first-1,inArray.begin()+last); } string lowerCase(const string& inputString) { const size_t n(inputString.length()); string outputString(n,' '); for (size_t l = 0 ; l < n; ++l) { outputString[l] = tolower(inputString[l]); } return outputString; } string upperCase(const string& inputString) { const size_t n(inputString.length()); string outputString(n,' '); for (size_t l = 0 ; l < n; ++l) { outputString[l] = toupper(inputString[l]); } return outputString; } string::size_type checkForCompressString(const string& fileName) { // Simply look for the first occurrence of the form "[compress....". const string leadIndicator("[compress"); string::size_type start = fileName.find(leadIndicator); return start; } string FITSType2String ( int typeInt ) { string keyString(""); switch (typeInt) { default: case Tnull: keyString = "Unknown"; break; case Tbit: keyString = "bit"; break; case Tbyte: keyString = "byte"; break; case Tlogical: keyString = "logical"; break; case Tstring: keyString = "string"; break; case Tushort: keyString = "unsigned short"; break; case Tshort: keyString = "short"; break; case Tuint: keyString = "unsigned integer"; break; case Tint: keyString = "integer"; break; case Tulong: keyString = "unsigned long"; break; case Tlong: keyString = "long"; break; case Tlonglong: keyString = "long long"; break; case Tfloat: keyString = "float"; break; case Tdouble: keyString = "double"; break; case Tcomplex: keyString = "float complex"; break; case Tdblcomplex: keyString = "double complex"; break; } return keyString; } bool MatchStem::operator()(const string& left, const string& right) const { static const string DIGITS("0123456789"); size_t n(left.find_last_not_of(DIGITS)); if ( n != string::npos ) return (left.substr(0,n) == right); else return (left == right); } // VF<-VF #ifdef TEMPLATE_AMBIG_DEFECT void fillMSvfvf(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = inArray[j]; } } #else void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = inArray[j]; } } #endif #ifdef TEMPLATE_AMBIG_DEFECT // VF<-VD void fillMSvfvd(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = std::complex(inArray[j].real(), inArray[j].imag()); } } #else // VF<-VD void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = std::complex(inArray[j].real(), inArray[j].imag()); } } #endif // VD<-VD #ifdef TEMPLATE_AMBIG_DEFECT void fillMSvdvd(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = inArray[j]; } } #else void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = inArray[j]; } } #endif // VD<-VF #ifdef TEMPLATE_AMBIG_DEFECT void fillMSvdvf(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = std::complex(inArray[j].real(), inArray[j].imag()); } } #else void fill(std::vector >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = std::complex(inArray[j].real(), inArray[j].imag()); } } #endif // AF<-VF // AF<-VF #ifdef TEMPLATE_AMBIG_DEFECT void fillMSafvf(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1 ] = inArray[j]; } } #else void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1 ] = inArray[j]; } } #endif // AF<-VD void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1 ] = std::complex(inArray[j].real(),inArray[j].imag()); } } // AD<-VD #ifdef TEMPLATE_AMBIG_DEFECT void fillMSadvd(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = inArray[j]; } } #else void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1] = inArray[j]; } } #endif // AD<-VF #ifdef TEMPLATE_AMBIG_DEFECT void fillMSadvf(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1 ] = std::complex(inArray[j].real(),inArray[j].imag()); } } #else void fill(std::valarray >& outArray, const std::vector >& inArray, size_t first, size_t last) { // vector to vector assign. stdlib takes care of deletion. size_t range = last - first + 1; if (outArray.size() != range) outArray.resize(range); for (size_t j = first - 1; j < last; ++j) { outArray[j - first + 1 ] = std::complex(inArray[j].real(),inArray[j].imag()); } } #endif // AF<-AF void fill(std::valarray >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); outArray = inArray; } // AD<-AD void fill(std::valarray >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); outArray = inArray; } // AF<-AD void fill(std::valarray >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); for (size_t j = 0; j < N; ++j ) { outArray[j] = std::complex(inArray[j].real(),inArray[j].imag()); } } // AD<-AF void fill(std::valarray >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); for (size_t j = 0; j < N; ++j ) { outArray[j] = std::complex(inArray[j].real(),inArray[j].imag()); } } // VF<-AF void fill(std::vector >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); for (size_t j = 0; j < N; ++j) outArray[j] = inArray[j]; } // VD<-AD void fill(std::vector >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); for (size_t j = 0; j < N; ++j) outArray[j] = inArray[j]; } // VF<-AD void fill(std::vector >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); for (size_t j = 0; j < N; ++j ) { outArray[j] = std::complex(inArray[j].real(),inArray[j].imag()); } } // VD<-AF void fill(std::vector >& outArray, const std::valarray >& inArray) { // vector to vector assign. stdlib takes care of deletion. size_t N (inArray.size()); if (outArray.size() != N) outArray.resize(N); for (size_t j = 0; j < N; ++j ) { outArray[j] = std::complex(inArray[j].real(),inArray[j].imag()); } } // Parameterized Class CCfits::FITSUtil::FitsNullValue // Class CCfits::FITSUtil::UnrecognizedType UnrecognizedType::UnrecognizedType (string diag, bool silent) : FitsException(" Invalid type for FITS I/O ",silent) { addToMessage(diag); std::cerr << diag << '\n'; } } // namespace FITSUtil } // namespace CCfits CCfits-2.7/KeywordCreator.cxx0000644000225700000360000002453514764627567015554 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #ifdef HAVE_CONFIG_H #include "config.h" #endif #ifdef SSTREAM_DEFECT #include #else #include #endif // HDU #include "HDU.h" // KeywordCreator #include "KeywordCreator.h" //#include "HDU.h" using std::cout; using std::endl; namespace CCfits { // Class CCfits::KeywordCreator KeywordCreator::KeywordCreator (HDU* p) : m_keyword(0), m_forHDU(p) { } KeywordCreator::~KeywordCreator() { } Keyword* KeywordCreator::getKeyword (const String& keyName, HDU* p) { int status=0; FITSUtil::auto_array_ptr pCard(new char[FLEN_CARD]); char* card = pCard.get(); if (fits_read_card(p->fitsPointer(), const_cast(keyName.c_str()), card,&status) ) throw FitsError(status); return getKeywordFromCard(card, p, keyName); } Keyword* KeywordCreator::createKeyword (const String& keyName, const String& comment, bool isLongStr) { if (m_keyword == 0) m_keyword = MakeKeyword(keyName,comment,isLongStr); return m_keyword; } Keyword* KeywordCreator::getKeyword (const String& keyName, ValueType keyType, HDU* p) { int status = 0; String val = ""; bool bvalue = 0; float fvalue = 0; double dvalue = 0; std::complex xvalue; std::complex zvalue; int ivalue = 0; unsigned int uvalue = 0; short isvalue = 0; unsigned short usvalue = 0; long ilvalue = 0; unsigned long ulvalue = 0; unsigned char byteVal = 0; FITSUtil::auto_array_ptr pCard(new char[FLEN_CARD]); FITSUtil::auto_array_ptr pV(new char[FLEN_VALUE]); FITSUtil::auto_array_ptr pCom(new char[FLEN_COMMENT]); char* card = pCard.get(); char* v = pV.get(); char* com = pCom.get(); Keyword* readKey = 0; if (fits_read_card(p->fitsPointer(), const_cast(keyName.c_str()), card,&status) ) throw FitsError(status); if (fits_parse_value(card, v, com, &status)) throw FitsError(status); String value(v); String comment(com); bool isLongStr = KeywordCreator::isContinued(value); if (isLongStr) { bool restoreQuote = value[0] == '\''; KeywordCreator::getLongValueString(p, keyName, value, comment); if (restoreQuote) { value = '\'' + value + '\''; } } #ifdef SSTREAM_DEFECT std::istrstream vstream( value.c_str() ); #else std::istringstream vstream(value); #endif switch (keyType) { case Tstring: readKey = new KeyData(keyName, Tstring, value, p, comment, isLongStr); break; case Tlogical: vstream >> bvalue; readKey = new KeyData(keyName, Tlogical, bvalue, p, comment); break; case Tbyte: vstream >> byteVal; readKey = new KeyData(keyName, Tbyte, byteVal, p, comment); break; case Tfloat: vstream >> fvalue; readKey = new KeyData(keyName, Tfloat, fvalue, p, comment); break; case Tdouble: vstream >> dvalue; readKey = new KeyData(keyName, Tdouble, dvalue, p, comment); break; case Tcomplex: vstream >> xvalue; readKey = new KeyData >(keyName, Tcomplex, xvalue, p, comment); break; case Tdblcomplex: vstream >> zvalue; readKey = new KeyData >(keyName, Tdblcomplex, zvalue, p, comment); break; case Tint: vstream >> ivalue; readKey = new KeyData(keyName, Tint, ivalue, p, comment); break; case Tuint: vstream >> uvalue; readKey = new KeyData(keyName, Tuint, uvalue, p, comment); break; case Tshort: vstream >> isvalue; readKey = new KeyData(keyName, Tshort, isvalue, p, comment); break; case Tushort: vstream >> usvalue; readKey = new KeyData(keyName, Tushort, usvalue, p, comment); break; case Tlong: vstream >> ilvalue; readKey = new KeyData(keyName, Tlong, ilvalue, p, comment); break; case Tulong: vstream >> ulvalue; readKey = new KeyData(keyName, Tulong, ulvalue, p, comment); break; default: std::cerr << "Unknown keyword type\n"; } return readKey; } Keyword* KeywordCreator::getKeyword (int keyNumber, HDU* p) { FITSUtil::auto_array_ptr pValue(new char[FLEN_VALUE]); FITSUtil::auto_array_ptr pKey(new char[FLEN_KEYWORD]); FITSUtil::auto_array_ptr pComment(new char[FLEN_COMMENT]); char* key = pKey.get(); char* comment = pComment.get(); char* value = pValue.get(); int status(0); if (fits_read_keyn(p->fitsPointer(),keyNumber,key,value,comment,&status)) { throw FitsError(status); } String commentString(comment); String valString(value); bool isLongStr = KeywordCreator::isContinued(valString); if (isLongStr) { bool restoreQuote = valString[0] == '\''; KeywordCreator::getLongValueString(p, String(key), valString, commentString); if (restoreQuote) { valString = '\'' + valString + '\''; } } int keyClass (fits_get_keyclass(key)); if ( keyClass == TYP_COMM_KEY || keyClass == TYP_CONT_KEY) { return 0; } else { return parseRecord(String(key),valString,commentString,p,isLongStr); } } Keyword* KeywordCreator::parseRecord (const String& name, const String& valueString, const String& comment, HDU* hdu, bool isLongStr) { char keyType('\0'); String value (""); bool bvalue (0); double dvalue (0); int ivalue (0); std::complex xvalue(0,0); int status (0); if ( valueString[0] == '\'') { value = valueString.substr(1,valueString.length()-2); } else { value = valueString; } if (valueString.empty()) { return new KeyNull(name,hdu,comment); } if (fits_get_keytype(const_cast(valueString.c_str()), &keyType, &status)) { throw FitsError(status); } // If input float or complex is using 'D' syntax for exponent, // must convert to 'E'. FITS allows 'D', but C++ stringtream // output conversion won't properly handle it. if (keyType == 'F' || keyType == 'X') { string::size_type locD=value.find('D'); if (locD !=string::npos) { value[locD] = 'E'; if (keyType == 'X') { locD=value.find('D'); if (locD != string::npos) value[locD] = 'E'; } } } #ifdef SSTREAM_DEFECT std::istrstream vstream( value.c_str() ); #else std::istringstream vstream(value); #endif switch(keyType) { case 'L': value == "T" ? bvalue = true : bvalue = false; return new KeyData(name, Tlogical, bvalue, hdu, comment); break; case 'F': vstream >> dvalue; return new KeyData(name, Tdouble, dvalue, hdu, comment); break; case 'I': case 'T': vstream >> ivalue; return new KeyData(name, Tint, ivalue, hdu, comment); break; case 'X': vstream >> xvalue; return new KeyData >(name, Tcomplex, xvalue, hdu, comment); case 'C': default: return new KeyData(name, Tstring, value.substr(0,value.find_last_not_of(" ")+1), hdu, comment, isLongStr); } return 0; } bool KeywordCreator::isContinued (const String& value) { // Check whether the last non-whitespace char in the value string // is an ampersand, which indicates the value string is to be // continued on the next line. bool status = false; String::size_type ampTest = value.find_last_not_of(String(" \n\t'")); if (ampTest != String::npos) { if (value[ampTest] == '&') { status = true; } } return status; } void KeywordCreator::getLongValueString (HDU* p, const String& keyName, String& value, String& comment) { char* lv = 0; FITSUtil::auto_array_ptr pComment(new char[FLEN_COMMENT]); char* comm = pComment.get(); int status = 0; // The following function actually allocates the memory for the // lv string - very unusual for cfitsio. if (fits_read_key_longstr(p->fitsPointer(), const_cast(keyName.c_str()), &lv, comm, &status)) { free(lv); throw FitsError(status); } value = String(lv); comment = String(comm); free(lv); } Keyword* KeywordCreator::getKeywordFromCard(char* card, HDU* p, const String& keyName) { FITSUtil::auto_array_ptr pV(new char[FLEN_VALUE]); FITSUtil::auto_array_ptr pCom(new char[FLEN_COMMENT]); char* v = pV.get(); char* com = pCom.get(); int status=0; String keywordName(keyName); if (!keywordName.length()) { int nameLength=0; FITSUtil::auto_array_ptr pName(new char[FLEN_KEYWORD]); char *name = pName.get(); if (fits_get_keyname(card, name, &nameLength, &status)) throw FitsError(status); keywordName = String(name); } if (fits_parse_value(card, v, com, &status)) throw FitsError(status); String valString(v); String commentString(com); if (KeywordCreator::isContinued(valString)) { bool restoreQuote = valString[0] == '\''; KeywordCreator::getLongValueString(p, keywordName, valString, commentString); if (restoreQuote) { valString = '\'' + valString + '\''; } } return parseRecord(keywordName,valString,commentString,p); } // Additional Declarations } // namespace CCfits CCfits-2.7/HDU.h0000644000225700000360000010700414764627567012646 0ustar cagordonlhea// Astrophysics Science Division, // NASA/ Goddard Space Flight Center // HEASARC // http://heasarc.gsfc.nasa.gov // e-mail: ccfits@legacy.gsfc.nasa.gov // // Original author: Ben Dorman #ifndef HDU_H #define HDU_H 1 #include // vector #include #include // CCfitsHeader #include "CCfits.h" // Keyword #include "Keyword.h" // NewKeyword #include "NewKeyword.h" // FitsError #include "FitsError.h" // FITSUtil #include "FITSUtil.h" namespace CCfits { class FITS; } // namespace CCfits namespace CCfits { class HDUCreator; // Needed for friend declaration } #ifdef _MSC_VER #include "MSconfig.h" // for truncation warning #endif #include "KeywordT.h" namespace CCfits { /*! \class HDU \brief Base class for all HDU [Header-Data Unit] objects. HDU objects in CCfits are either PHDU (Primary HDU objects) or ExtHDU (Extension HDU) objects. ExtHDUs are further subclassed into ImageExt or Table objects, which are finally AsciiTable or BinTable objects. HDU's public interface gives access to properties that are common to all HDUs, largely required keywords, and functions that are common to all HDUs, principally the manipulation of keywords and their values. HDUs must be constructed by HDUCreator objects which are called by FITS methods. Each HDU has an embedded pointer to its parent FITS object. */ /*! \class HDU::InvalidExtensionType @ingroup FITSexcept @brief exception to be thrown if user requests extension type that can not be understood as ImageExt, AsciiTable or BinTable. */ /*! \fn HDU::InvalidExtensionType::InvalidExtensionType (const string& diag, bool silent); \brief Exception ctor, prefixes the string "Fits Error: Extension Type: " before the specific message. \param diag A specific diagnostic message \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class HDU::InvalidImageDataType @ingroup FITSexcept @brief exception to be thrown if user requests creation of an image of type not supported by cfitsio. */ /*! \fn HDU::InvalidImageDataType::InvalidImageDataType (const string& diag, bool silent); \brief Exception ctor, prefixes the string "Fits Error: Invalid Data Type for Image " before the specific message. \param diag A specific diagnostic message \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class HDU::NoSuchKeyword @ingroup FITSexcept @brief exception to be thrown on seek errors for keywords. */ /*! \fn HDU::NoSuchKeyword::NoSuchKeyword (const string& diag, bool silent); \brief Exception ctor, prefixes the string "Fits Error: Keyword not found: " before the specific message. \param diag A specific diagnostic message, usually the name of the keyword requested. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \class HDU::NoNullValue @ingroup FITSexcept @brief exception to be thrown on seek errors for keywords. */ /*! \fn HDU::NoNullValue::NoNullValue (const string& diag, bool silent); \brief Exception ctor, prefixes the string "Fits Error: No Null Pixel Value specified for Image " before the specific message. \param diag A specific diagnostic message, the name of the HDU if not the primary. \param silent if true, print message whether FITS::verboseMode is set or not. */ /*! \fn HDU::HDU(const HDU &right); \brief copy constructor */ /*! \fn virtual HDU::~HDU(); \brief destructor */ /*! \fn bool HDU::operator==(const HDU &right) const; \brief equality operator */ /*! \fn bool HDU::operator!=(const HDU &right) const; \brief inequality operator */ /*! \fn const String& HDU::getHistory(); \brief read the history information from the HDU and add it to the FITS object. The history string found in the header is concatenated and returned to the calling function */ /*! \fn const String& HDU::getComments(); \brief read the comments from the HDU and add it to the FITS object. The comment string found in the header is concatenated and returned to the calling function */ /*! \fn void HDU::readAllKeys(const std::vector & keyCategories = std::vector()); \brief read all of the keys in the header \param keyCategories (optional) A user-defined list of keyword categories to read This member function reads and stores keys from the current object that are one of the desired keyword categories: either the default categories or those given by the user-supplied vector of categories. The default categories are: TYP_CMPRS_KEY (20), TYP_CKSUM_KEY (100), TYP_WCS_KEY (110), TYP_REFSYS_KEY (120), and TYP_USER_KEY (150). History and comment keys are also read from the current HDU. Note that readAllKeys can only construct keys of type string, double, complex, integer, and bool because the FITS header records do not encode exact type information. */ /*! \fn void HDU::copyAllKeys (const HDU* inHdu, const std::vector & keyCategories = std::vector()); \brief copy all keys from another header \param inHdu An existing HDU whose keys will be copied into the current object. \param keyCategories (optional) A user-defined list of keyword categories to copy into current object This will copy all keys that exist in the keyWord map of inHDU, and which belong to one of the desired keyword classes: either the default classes returned by the keywordCategories() function, or those given by the user-supplied vector of categories. The keywordMap can be populated with readAllKeys(). Only those keys in the map that match the desired category are copied. Keywords are written in alphabetical order. History and comment keys are copied to the current HDU from the input HDU, using the getComments()/getHistory() and writeComment()/writeHistory() methods. All of the input comments and history are merged into one block, not spaced as they were in the input file. It is highly recommended to use the default keyword categories, and not to pass in a user-defined list of categories, unless the user is very careful. Using the wrong categories can lead to incorrect keywords in files. For example, if the user passed in the TYP_CKSUM_KEY category to copyAllKeys(), then the CHECKSUM keyword would be copied from the old file to the new file. Similar care must be taken with metadata keywords for columns. This is more important for copyAllKeys() than for readAllKeys() because copyAllKeys() is the method that is actually inserting the keywords into the new file, while readAllKeys() is only reading in the source file's keywords. */ /*! \fn Keyword& HDU::readNextKey(const std::vector& incList, const std::vector& excList, bool searchFromBeginning); \brief Read the next key in the HDU which matches a string in incList, and does not match string in excList \param incList Vector of strings specifying keyword names to search. \param excList Vector of strings specifying names to exclude from search. This may be left empty. \param searchFromBeginning If 'true', search will be conducted from the start of the HDU. Otherwise it starts from the current position. This is a wrapper around the CFITSIO fits_find_nextkey function. It reads in and returns the next keyword whose name matches matches one of the strings in incList, which may contain wild card characters (*,?, and #). It will exclude keywords whose name matches a string in excList. If no keyword is found, a FitError is thrown. By default the search is conducted from the current keyword position in the HDU. If searchFromBeginning is set to 'true', search will start from the beginning of the HDU. If HDU is not the currently open extension, this will make it so and start the keyword search from the beginning. */ /*! \fn static std::vector HDU::keywordCategories (); \brief Return the default enumerated keyword categories used by copyAllKeys() This returns a vector of integers indicating which categories of keywords are the default for the copyAllKeys functions. The list of categories currently hardcoded is: TYP_REFSYS_KEY (120) and TYP_USER_KEY (150). For the list of all possible keyword categories, see the CFITSIO documentation for the fits_get_keyclass function. */ /*! \fn void HDU::writeComment(const String& comment = "Generic Comment"); \brief write a comment string. A default value for the string is given ("Generic Comment String") so users can put a placeholder call to this function in their code. */ /*! \fn void HDU::writeHistory (const String& history = "Generic History String"); \brief write a history string. A default value for the string is given ("Generic History String") so users can put a placeholder call to this function in their code. */ /*! \fn void HDU::writeDate(); \brief write a date string to *this. */ /*! \fn void HDU::deleteKey(const String& doomed) \brief delete a keyword from the header removes doomed from the FITS file and from the FITS object */ /*! \fn const String& HDU::history() const; \brief return the history string previously read by getHistory() */ /*! \fn const String& HDU::comment() const; \brief return the comment string previously read by getComment() */ /*! \fn template void HDU::readKey(const String& keyName, T& val); \brief read a keyword of specified type from the header of a disk FITS file and return its value. T is one of the types String, double, float, int, std::complex, and bool. If a Keyword object with the name keyName already exists in this HDU due to a previous read call, then this will re-read from the file and create a new Keyword object to replace the existing one. */ /*! \fn template void HDU::readKeys(std::vector& keyNames, std::vector& vals); \brief read a set of specified keywords of the same data type from the header of a disk FITS file and return their values T is one of the types String, double, float, int, std::complex, and bool. */ /*! \fn virtual HDU * HDU::clone (FITS* p) const = 0; \brief virtual copy constructor, to be implemented in subclasses. */ /*! \fn void HDU::makeThisCurrent () const; \brief move the fitsfile pointer to this current HDU. This function should never need to be called by the user since it is called internally whenever required. */ /*! \fn Keyword& HDU::keyWord (const String& keyName); \brief return a (previously read) keyword from the HDU object. */ /*! \fn int HDU::index () const; \brief return the HDU number */ /*! \fn void HDU::index (int value); \brief set the HDU number */ /*! \fn const std::map& HDU::keyWord () const; \brief return the associative array containing the HDU Keywords that have been read so far. */ /*! \fn const Keyword& HDU::keyWord (const string& keyname) const; \brief return a (previously read) keyword from the HDU object. const version */ /*! \fn HDU::HDU (FITS* p = 0); \brief default constructor, called by HDU subclasses that read from FITS files. */ /*! \fn HDU::HDU (FITS* p, int bitpix,int naxis, const std::vector& axes); \brief constructor for creating new HDU objects, called by HDU subclasses writing to FITS files. */ /*! \fn virtual bool HDU::compare (const HDU &right) const; \brief internal implementation of equality operations. */ /*! \fn fitsfile* HDU::fitsPointer () const; \brief return the fitsfile pointer for the FITS object containing the HDU */ /*! \fn std::map& HDU::keyWord (); \brief return the associative array containing the HDU keywords so far read. */ /*! \fn long HDU::axis (size_t index) const; \brief return the size of axis numbered index [zero based]. */ /*! \fn void HDU::axes () const; \brief return the number of axes in the HDU data section (always 2 for tables). */ /*! \fn const long HDU::bitpix () const; \brief return the data type keyword. Takes values denoting the image data type for images, and takes the fixed value 8 for tables. */ /*! \fn const FITS *& HDU::parent () const; \brief return reference to the pointer representing the FITS object containing the HDU */ /*! \fn std::vector< long >& HDU::naxes (); \brief return the HDU data axis array. */ /*! \fn long HDU::axis (size_t i) const; \brief return the length of HDU data axis i. */ /*! \fn virtual double HDU::scale () const; \brief return the BSCALE keyword value */ /*! \fn virtual void HDU::scale (double value); \brief set the BSCALE keyword value for images (see warning for images of int type) For primary HDUs and image extensions, this will add (or update) the BSCALE keyword in the header. The new setting will affect future image array read/writes as described in section 4.7 Data Scaling of the CFITSIO manual. For table extensions this function does nothing. WARNING: If the image contains integer-type data (as indicated by the bitpix() return value), the new scale and zero value combination must not be such that the scaled data would require a floating-point type (this uses the CFITSIO function fits_get_img_equivtype to make the determination). If this situation occurs, the function will throw a FitsException. */ /*! \fn virtual double HDU::zero () const; \brief return the BZERO keyword value */ /*! \fn virtual double HDU::zero (double value); \brief set the BZERO keyword value for images (see warning for images of int type) For primary HDUs and image extensions, this will add (or update) the BZERO keyword in the header. The new setting will affect future image array read/writes as described in section 4.7 Data Scaling of the CFITSIO manual. For table extensions this function does nothing. WARNING: If the image contains integer-type data (as indicated by the bitpix() return value), the new scale and zero value combination must not be such that the scaled data would require a floating-point type (this uses the CFITSIO function fits_get_img_equivtype to make the determination). If this situation occurs, the function will throw a FitsException. */ /*! \fn virtual void HDU::resetImageRead (); \brief force next image reading operation to read from file instead of object cache. [Note: It is not necessary to call this function for normal image reading operations.] For primary HDUs and image extensions, this forces the next read operation to retrieve data from the file regardless of whether the data has already been read and stored in the HDU's internal arrays. This does nothing if the HDU does not contain an image. */ /*! \fn void HDU::suppressScaling (bool toggle = true); \brief turn off image scaling regardless of the BSCALE and BZERO keyword values For toggle = true, this turns off image scaling for future read/writes by resetting the scale and zero to 1.0 and 0.0 respectively. It does NOT modify the BSCALE and BZERO keywords. If toggle = false, the scale and zero values will be restored to the keyword values. */ /*! \fn template Keyword& HDU::addKey(const String& name, T value, const String& comment, bool isLongStr = false) ; \brief create a new keyword in the HDU with specified value and comment fields The function returns a reference to keyword object just created. If a keyword with this name already exists, it will be overwritten. Note that this is mostly intended for adding user-defined keywords. It should not be used to add keywords for which there are already specific HDU functions, such as scaling or checksum. Nor should it be used for image or column structural keywords, such as BITPIX, NAXIS, TFORMn, etc. As a general rule, it is best to use this for keywords belonging to the same categories listed in the keywordCategories() function. \param name (String) The keyword name \param value (Recommended T = String, double, std::complex, int, or bool) The keyword value \param comment (String) The keyword comment \param isLongStr (Bool, default=false) Is the keyword long (greater than 68 characters) It is possible to create a keyword with a value of any of the allowed data types in fitsio (see the cfitsio manual section 4.3). However one should be aware that if this keyword value is read in from the file at a later time, it will be stored in a templated Keyword subclass (KeyData) where T will be one of the recommended types listed above. Also see Keyword::value (T& val) for more details. If the keyword is long (isLong=true), the keyword is written using the Long String Keyword convention, as described in the "Local FITS Conventions" section of the cfitsio documentation. */ /*! \fn Keyword* HDU::addKey(const Keyword* inKeyword); \brief create a copy of an existing Keyword and add to HDU This is particularly useful for copying Keywords from one HDU to another. For example the inKeyword pointer might come from a different HDU's std::map. If a keyword with this name already exists, it will be overwritten. The return value is a pointer to the newly created Keyword inserted into this HDU. Also see copyAllKeys(). */ /*! \fn Keyword& addKey(const String& name, const char* charString, const String& comment, bool isLongStr = false); \brief create a new keyword in the HDU with specified value and comment fields \param name (String) The keyword name \param value (char*) The keyword value \param comment (String) The keyword comment \param isLongStr (Bool, default=false) Is the keyword long (greater than 68 characters) This is a wrapper to the function template Keyword& HDU::addKey(const String& name, T value, const String& comment, bool isLongStr = false) casting the char * parameter to a string. */ /*! \fn Keyword& HDU::addKeyNull(const String& name, const String& comment, bool isLongStr = false); \brief create a new keyword in the HDU with a null (ie. undefined) value. \param name (String) The keyword name \param comment (String) The keyword comment \param isLongStr (Bool, default=false) Is the keyword long (greater than 68 characters) This creates a keyword with a blank value field. It is possible to add a value at a later time using the Keyword::setValue function. */ /*! \fn std::ostream& operator << (std::ostream& s, const CCfits::HDU& right); \brief Output operator for HDU objects. Primarily for testing purposes. */ /*! \fn void HDU::writeChecksum (); \brief compute and write the DATASUM and CHECKSUM keyword values Wrapper for the CFITSIO function fits_write_chksum: This performs the datasum and checksum calculations for this HDU, as described in the CFITSIO manual. If either the DATASUM or CHECKSUM keywords already exist, their values will be updated. */ /*! \fn void HDU::updateChecksum (); \brief update the CHECKSUM keyword value, assuming DATASUM exists and is correct Wrapper for the CFITSIO function fits_update_chksum: This recomputes and writes the CHECKSUM value with the assumption that the DATASUM value is correct. If the DATASUM keyword doesn't yet exist or is not up-to-date, use the HDU::writeChecksum function instead. This will throw a FitsError exception if called when there is no DATASUM keyword in the header. */ /*! \fn std::pair HDU::verifyChecksum () const; \brief verify the HDU by computing the checksums and comparing them with the CHECKSUM/DATASUM keywords Wrapper for the CFITSIO function fits_verify_chksum: The data unit is verified correctly if the computed checksum equals the DATASUM keyword value, and the HDU is verified if the entire checksum equals zero (see the CFITSIO manual for further details). This returns a std::pair where the pair's first data member = DATAOK and second = HDUOK. DATAOK and HDUOK values will be = 1 if verified correctly, 0 if the keyword is missing, and -1 if the computed checksum is not correct. */ /*! \fn std::pair HDU::getChecksum () const; \brief compute and return the checksum values for the HDU without creating or modifying the CHECKSUM/DATASUM keywords. Wrapper for the CFITSIO function fits_get_chksum: This returns a std::pair where the pair's first data member holds the datasum value and second holds the hdusum value. */ class HDU { public: class InvalidImageDataType : public FitsException //## Inherits: %394FBA12005C { public: InvalidImageDataType (const string& diag, bool silent = true); protected: private: private: //## implementation }; class InvalidExtensionType : public FitsException //## Inherits: %3964C1D00352 { public: InvalidExtensionType (const string& diag, bool silent = true); protected: private: private: //## implementation }; class NoSuchKeyword : public FitsException //## Inherits: %398865D10264 { public: NoSuchKeyword (const string& diag, bool silent = true); protected: private: private: //## implementation }; class NoNullValue : public FitsException //## Inherits: %3B0D58CE0306 { public: NoNullValue (const string& diag, bool silent = true); protected: private: private: //## implementation }; HDU(const HDU &right); bool operator==(const HDU &right) const; bool operator!=(const HDU &right) const; virtual HDU * clone (FITS* p) const = 0; fitsfile* fitsPointer () const; FITS* parent () const; // By all means necessary, set the fitsfile pointer so that // this HDU is the current HDU. // // This would appear to be a good candidate for the public // interface. virtual void makeThisCurrent () const; const String& getComments (); const string& comment () const; // Write a comment string. A default value for the string is given // "GenericComment" so users can put a placeholder call // to this function in their code before knowing quite what should go in it. void writeComment (const String& comment = "Generic Comment"); const String& getHistory (); const string& history () const; // Write a history string. A default value for the string is given // "Generic History String" so users can put a placeholder call // to this function in their code before knowing quite what should go in it. void writeHistory (const String& history = "Generic History String"); // Write a date card. void writeDate (); friend std::ostream& operator << (std::ostream& s, const CCfits::HDU& right); long axes () const; long axis (size_t index) const; void index (int value); int index () const; long bitpix () const; virtual double scale () const; virtual void scale (double value); virtual double zero () const; virtual void zero (double value); virtual void resetImageRead (); virtual void suppressScaling (bool toggle = true); void writeChecksum (); void updateChecksum (); std::pair verifyChecksum () const; std::pair getChecksum () const; void deleteKey (const String& doomed); void readAllKeys (const std::vector & keyCategories = std::vector()); void copyAllKeys (const HDU* inHdu, const std::vector & keyCategories = std::vector()); std::map& keyWord (); Keyword& keyWord (const String& keyName); static std::vector keywordCategories (); const std::map& keyWord () const; const Keyword& keyWord (const string& keyname) const; Keyword& readNextKey(const std::vector& incList, const std::vector& excList, bool searchFromBeginning = false); public: // Additional Public Declarations template void readKey(const String& keyName, T& val); template void readKeys(std::vector& keyNames, std::vector& vals); template Keyword& addKey(const String& name, T val, const String& comment, bool isLongStr = false); // This non-template function could be entered with Rose, but // it's instead placed with the other addKey function to // simplify the Doxygen generated doc file output. Keyword* addKey(const Keyword* inKeyword); Keyword& addKey(const String& name, const char* charString, const String& comment, bool isLongStr = false); Keyword& addKeyNull(const String& name, const String& comment, bool isLongStr = false); #ifdef TEMPLATE_AMBIG_DEFECT inline void readKeyMS(const String& keyName, int & val); inline void readKeys(std::vector& keyNames, std::vector& vals); #endif protected: // Functions as the default constructor, which is required for // the map container class. HDU (FITS* p = 0); HDU (FITS* p, int bitpix, int naxis, const std::vector& axes); virtual ~HDU(); Keyword& readKeyword (const String &keyname); void readKeywords (std::list& keynames); virtual std::ostream & put (std::ostream &s) const = 0; void bitpix (long value); bool checkImgDataTypeChange (double zero, double scale) const; long& naxis (); void naxis (const long& value); // Flags whether there were any null values found in the // last read operation. bool& anynul (); void anynul (const bool& value); FITS*& parent (); std::vector< long >& naxes (); long& naxes (size_t index); void naxes (size_t index, const long& value); // Additional Protected Declarations private: // clear the FITS Keyword map. To be called by // the dtor and the copy/assignment operations. void clearKeys (); virtual void initRead () = 0; void readHduInfo (); Keyword* addKeyword (Keyword* newKey); virtual bool compare (const HDU &right) const; // clear the FITS Keyword map. To be called by // the dtor and the copy/assignment operations. void copyKeys (const HDU& right); String getNamedLines (const String& name); // save keyword found by read all keys into the array of keywords that have been read. // Similar to addKeyword except there's no write and no returned value. For use by readAllKeys() void saveReadKeyword (Keyword* newKey); void zeroInit (double value); void scaleInit (double value); // Additional Private Declarations private: //## implementation // Data Members for Class Attributes long m_naxis; long m_bitpix; int m_index; bool m_anynul; string m_history; string m_comment; double m_zero; // Floating point scale factor for image data that takes // the value of the BSCALE parameter. double m_scale; // Data Members for Associations std::map m_keyWord; FITS* m_parent; std::vector< long > m_naxes; // Additional Implementation Declarations static const size_t s_nCategories; static const int s_iKeywordCategories[]; friend class HDUCreator; friend Keyword* KeywordCreator::getKeyword(const String& keyname, HDU* p); friend Keyword* KeywordCreator::getKeyword(const String& keyname, ValueType keyType, HDU* p); }; template Keyword& HDU::addKey(const String& name, T value, const String& comment, bool isLongStr) { makeThisCurrent(); NewKeyword keyCreator(this,value); Keyword& newKey = *(addKeyword(keyCreator.createKeyword(name,comment,isLongStr))); return newKey; } template void HDU::readKey(const String& keyName, T& val) { makeThisCurrent(); Keyword& key = readKeyword(keyName); key.value(val); } template void HDU::readKeys(std::vector& keyNames, std::vector& vals) { size_t nRead = keyNames.size(); std::list valKeys; std::list valList; for (size_t i = 0; i < nRead; i++) valKeys.push_back(keyNames[i]); // read all the keys requested, rejecting those that don't exist. readKeywords(valKeys); // get the values of all of the requested keys, rejecting those of the // wrong type. T current; std::list::iterator it = valKeys.begin(); while (it != valKeys.end()) { try { m_keyWord[*it]->value(current); valList.push_back(current); ++it; } catch ( Keyword::WrongKeywordValueType ) { it = valKeys.erase(it); } } keyNames.erase(keyNames.begin(),keyNames.end()); if (!valList.empty()) { if (valList.size() != vals.size()) vals.resize(valList.size()); size_t i=0; for (typename std::list::const_iterator it1 = valList.begin(); it1 != valList.end(); ++it1,++i) { vals[i] = *it1; } for (std::list::const_iterator it1= valKeys.begin(); it1 != valKeys.end(); ++it1) { keyNames.push_back(*it1); } } } // Class CCfits::HDU::InvalidImageDataType // Class CCfits::HDU::InvalidExtensionType // Class CCfits::HDU::NoSuchKeyword // Class CCfits::HDU::NoNullValue // Class CCfits::HDU inline const string& HDU::comment () const { return m_comment; } inline const string& HDU::history () const { return m_history; } inline std::ostream& operator << (std::ostream& s, const CCfits::HDU& right) { return right.put(s); } inline long HDU::axes () const { return m_naxis; } inline long HDU::axis (size_t index) const { return m_naxes[index]; } inline void HDU::index (int value) { m_index = value; } inline int HDU::index () const { return m_index; } inline long HDU::bitpix () const { return m_bitpix; } inline void HDU::bitpix (long value) { m_bitpix = value; } inline double HDU::scale () const { return m_scale; } inline void HDU::scale (double value) { m_scale = value; } inline double HDU::zero () const { return m_zero; } inline void HDU::zero (double value) { m_zero = value; } inline void HDU::resetImageRead () { } inline void HDU::saveReadKeyword (Keyword* newKey) { m_keyWord.insert(std::map::value_type(newKey->name(),newKey->clone())); } inline std::map& HDU::keyWord () { return m_keyWord; } inline Keyword& HDU::keyWord (const String& keyName) { std::map::iterator key = m_keyWord.find(keyName); if (key == m_keyWord.end()) throw HDU::NoSuchKeyword(keyName); return *((*key).second); } inline long& HDU::naxis () { return m_naxis; } inline void HDU::naxis (const long& value) { m_naxis = value; } inline bool& HDU::anynul () { return m_anynul; } inline void HDU::anynul (const bool& value) { m_anynul = value; } inline const std::map& HDU::keyWord () const { return m_keyWord; } inline const Keyword& HDU::keyWord (const string& keyname) const { std::map::const_iterator key = m_keyWord.find(keyname); if (key == m_keyWord.end()) throw HDU::NoSuchKeyword(keyname); return *((*key).second); } inline FITS*& HDU::parent () { return m_parent; } inline std::vector< long >& HDU::naxes () { return m_naxes; } inline long& HDU::naxes (size_t index) { return m_naxes[index]; } inline void HDU::naxes (size_t index, const long& value) { m_naxes[index] = value; } } // namespace CCfits #ifdef SPEC_TEMPLATE_IMP_DEFECT namespace CCfits { inline void HDU::readKeyMS(const String& keyName, int & val) { makeThisCurrent(); Keyword& key = readKeyword(keyName); key.value(val); } inline void HDU::readKeys(std::vector& keyNames, std::vector& vals) { size_t nRead = keyNames.size(); std::list valKeys; std::list valList; for (size_t i = 0; i < nRead; i++) valKeys.push_back(keyNames[i]); // read all the keys requested, rejecting those that don't exist. readKeywords(valKeys); // get the values of all of the requested keys, rejecting those of the // wrong type. String current; std::list::iterator it = valKeys.begin(); while (it != valKeys.end()) { try { m_keyWord[*it]->value(current); valList.push_back(current); ++it; } catch ( Keyword::WrongKeywordValueType ) { it = valKeys.erase(it); } } keyNames.erase(keyNames.begin(),keyNames.end()); if (!valList.empty()) { if (valList.size() != vals.size()) vals.resize(valList.size()); size_t i=0; std::list::const_iterator it1 = valList.begin(); for ( ; it1 != valList.end(); ++it1,++i) { vals[i] = *it1; } for ( it1= valKeys.begin(); it1 != valKeys.end(); ++it1) { keyNames.push_back(*it1); } } } } #endif #endif CCfits-2.7/Doxyfile.in0000644000225700000360000033461014764627567014175 0ustar cagordonlhea# Doxyfile 1.9.1 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project. # # All text after a double hash (##) is considered a comment and is placed in # front of the TAG it is preceding. # # All text after a single hash (#) is considered a comment and will be ignored. # The format is: # TAG = value [value, ...] # For lists, items can also be appended using: # TAG += value [value, ...] # Values that contain spaces should be placed between quotes (\" \"). #--------------------------------------------------------------------------- # Project related configuration options #--------------------------------------------------------------------------- # This tag specifies the encoding used for all characters in the configuration # file that follow. The default is UTF-8 which is also the encoding used for all # text before the first occurrence of this tag. Doxygen uses libiconv (or the # iconv built into libc) for the transcoding. See # https://www.gnu.org/software/libiconv/ for the list of possible encodings. # The default value is: UTF-8. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded by # double-quotes, unless you are using Doxywizard) that should identify the # project for which the documentation is generated. This name is used in the # title of most generated pages and in a few other places. # The default value is: My Project. PROJECT_NAME = CCfits # The PROJECT_NUMBER tag can be used to enter a project or revision number. This # could be handy for archiving the generated documentation or if some version # control system is used. PROJECT_NUMBER = 2.7 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a # quick idea about the purpose of the project. Keep the description short. PROJECT_BRIEF = # With the PROJECT_LOGO tag one can specify a logo or an icon that is included # in the documentation. The maximum height of the logo should not exceed 55 # pixels and the maximum width should not exceed 200 pixels. Doxygen will copy # the logo to the output directory. PROJECT_LOGO = # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path # into which the generated documentation will be written. If a relative path is # entered, it will be relative to the location where doxygen was started. If # left blank the current directory will be used. OUTPUT_DIRECTORY = # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub- # directories (in 2 levels) under the output directory of each output format and # will distribute the generated files over these directories. Enabling this # option can be useful when feeding doxygen a huge amount of source files, where # putting all generated files in the same directory would otherwise causes # performance problems for the file system. # The default value is: NO. CREATE_SUBDIRS = NO # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII # characters to appear in the names of generated files. If set to NO, non-ASCII # characters will be escaped, for example _xE3_x81_x84 will be used for Unicode # U+3044. # The default value is: NO. ALLOW_UNICODE_NAMES = NO # The OUTPUT_LANGUAGE tag is used to specify the language in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all constant output in the proper language. # Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese, # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), # Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian, # Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en (Korean with English messages), Latvian, Lithuanian, # Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian, # Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish, # Ukrainian and Vietnamese. # The default value is: English. OUTPUT_LANGUAGE = English # The OUTPUT_TEXT_DIRECTION tag is used to specify the direction in which all # documentation generated by doxygen is written. Doxygen will use this # information to generate all generated output in the proper direction. # Possible values are: None, LTR, RTL and Context. # The default value is: None. OUTPUT_TEXT_DIRECTION = None # If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member # descriptions after the members that are listed in the file and class # documentation (similar to Javadoc). Set to NO to disable this. # The default value is: YES. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief # description of a member or function before the detailed description # # Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the # brief descriptions will be completely suppressed. # The default value is: YES. REPEAT_BRIEF = YES # This tag implements a quasi-intelligent brief description abbreviator that is # used to form the text in various listings. Each string in this list, if found # as the leading text of the brief description, will be stripped from the text # and the result, after processing the whole list, is used as the annotated # text. Otherwise, the brief description is used as-is. If left blank, the # following values are used ($name is automatically replaced with the name of # the entity):The $name class, The $name widget, The $name file, is, provides, # specifies, contains, represents, a, an and the. ABBREVIATE_BRIEF = "The $name class" \ "The $name widget" \ "The $name file" \ is \ provides \ specifies \ contains \ represents \ a \ an \ the # If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then # doxygen will generate a detailed section even if there is only a brief # description. # The default value is: NO. ALWAYS_DETAILED_SEC = NO # If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all # inherited members of a class in the documentation of that class as if those # members were ordinary class members. Constructors, destructors and assignment # operators of the base classes will not be shown. # The default value is: NO. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path # before files name in the file list and in the header files. If set to NO the # shortest path that makes the file name unique will be used # The default value is: YES. FULL_PATH_NAMES = NO # The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path. # Stripping is only done if one of the specified strings matches the left-hand # part of the path. The tag can be used to show relative paths in the file list. # If left blank the directory from which doxygen is run is used as the path to # strip. # # Note that you can specify absolute paths here, but also relative paths, which # will be relative from the directory where doxygen is started. # This tag requires that the tag FULL_PATH_NAMES is set to YES. STRIP_FROM_PATH = # The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the # path mentioned in the documentation of a class, which tells the reader which # header file to include in order to use a class. If left blank only the name of # the header file containing the class definition is used. Otherwise one should # specify the list of include paths that are normally passed to the compiler # using the -I flag. STRIP_FROM_INC_PATH = # If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but # less readable) file names. This can be useful is your file systems doesn't # support long names like on DOS, Mac, or CD-ROM. # The default value is: NO. SHORT_NAMES = NO # If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the # first line (until the first dot) of a Javadoc-style comment as the brief # description. If set to NO, the Javadoc-style will behave just like regular Qt- # style comments (thus requiring an explicit @brief command for a brief # description.) # The default value is: NO. JAVADOC_AUTOBRIEF = NO # If the JAVADOC_BANNER tag is set to YES then doxygen will interpret a line # such as # /*************** # as being the beginning of a Javadoc-style comment "banner". If set to NO, the # Javadoc-style will behave just like regular comments and it will not be # interpreted by doxygen. # The default value is: NO. JAVADOC_BANNER = NO # If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first # line (until the first dot) of a Qt-style comment as the brief description. If # set to NO, the Qt-style will behave just like regular Qt-style comments (thus # requiring an explicit \brief command for a brief description.) # The default value is: NO. QT_AUTOBRIEF = NO # The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a # multi-line C++ special comment block (i.e. a block of //! or /// comments) as # a brief description. This used to be the default behavior. The new default is # to treat a multi-line C++ comment block as a detailed description. Set this # tag to YES if you prefer the old behavior instead. # # Note that setting this tag to YES also means that rational rose comments are # not recognized any more. # The default value is: NO. MULTILINE_CPP_IS_BRIEF = NO # By default Python docstrings are displayed as preformatted text and doxygen's # special commands cannot be used. By setting PYTHON_DOCSTRING to NO the # doxygen's special commands can be used and the contents of the docstring # documentation blocks is shown as doxygen documentation. # The default value is: YES. PYTHON_DOCSTRING = YES # If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the # documentation from any documented member that it re-implements. # The default value is: YES. INHERIT_DOCS = YES # If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new # page for each member. If set to NO, the documentation of a member will be part # of the file/class/namespace that contains it. # The default value is: NO. SEPARATE_MEMBER_PAGES = NO # The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen # uses this value to replace tabs by spaces in code fragments. # Minimum value: 1, maximum value: 16, default value: 4. TAB_SIZE = 4 # This tag can be used to specify a number of aliases that act as commands in # the documentation. An alias has the form: # name=value # For example adding # "sideeffect=@par Side Effects:\n" # will allow you to put the command \sideeffect (or @sideeffect) in the # documentation, which will result in a user-defined paragraph with heading # "Side Effects:". You can put \n's in the value part of an alias to insert # newlines (in the resulting output). You can put ^^ in the value part of an # alias to insert a newline as if a physical newline was in the original file. # When you need a literal { or } or , in the value part of an alias you have to # escape them by means of a backslash (\), this can lead to conflicts with the # commands \{ and \} for these it is advised to use the version @{ and @} or use # a double escape (\\{ and \\}) ALIASES = # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources # only. Doxygen will then generate output that is more tailored for C. For # instance, some of the names that are used will be different. The list of all # members will be omitted, etc. # The default value is: NO. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or # Python sources only. Doxygen will then generate output that is more tailored # for that language. For instance, namespaces will be presented as packages, # qualified scopes will look different, etc. # The default value is: NO. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources. Doxygen will then generate output that is tailored for Fortran. # The default value is: NO. OPTIMIZE_FOR_FORTRAN = NO # Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL # sources. Doxygen will then generate output that is tailored for VHDL. # The default value is: NO. OPTIMIZE_OUTPUT_VHDL = NO # Set the OPTIMIZE_OUTPUT_SLICE tag to YES if your project consists of Slice # sources only. Doxygen will then generate output that is more tailored for that # language. For instance, namespaces will be presented as modules, types will be # separated into more groups, etc. # The default value is: NO. OPTIMIZE_OUTPUT_SLICE = NO # Doxygen selects the parser to use depending on the extension of the files it # parses. With this tag you can assign which parser to use for a given # extension. Doxygen has a built-in mapping, but you can override or extend it # using this tag. The format is ext=language, where ext is a file extension, and # language is one of the parsers supported by doxygen: IDL, Java, JavaScript, # Csharp (C#), C, C++, D, PHP, md (Markdown), Objective-C, Python, Slice, VHDL, # Fortran (fixed format Fortran: FortranFixed, free formatted Fortran: # FortranFree, unknown formatted Fortran: Fortran. In the later case the parser # tries to guess whether the code is fixed or free formatted code, this is the # default for Fortran type files). For instance to make doxygen treat .inc files # as Fortran files (default is PHP), and .f files as C (default is Fortran), # use: inc=Fortran f=C. # # Note: For files without extension you can use no_extension as a placeholder. # # Note that for custom extensions you also need to set FILE_PATTERNS otherwise # the files are not read by doxygen. When specifying no_extension you should add # * to the FILE_PATTERNS. # # Note see also the list of default file extension mappings. EXTENSION_MAPPING = # If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments # according to the Markdown format, which allows for more readable # documentation. See https://daringfireball.net/projects/markdown/ for details. # The output of markdown processing is further processed by doxygen, so you can # mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in # case of backward compatibilities issues. # The default value is: YES. MARKDOWN_SUPPORT = NO # When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up # to that level are automatically included in the table of contents, even if # they do not have an id attribute. # Note: This feature currently applies only to Markdown headings. # Minimum value: 0, maximum value: 99, default value: 5. # This tag requires that the tag MARKDOWN_SUPPORT is set to YES. TOC_INCLUDE_HEADINGS = 5 # When enabled doxygen tries to link words that correspond to documented # classes, or namespaces to their corresponding documentation. Such a link can # be prevented in individual cases by putting a % sign in front of the word or # globally by setting AUTOLINK_SUPPORT to NO. # The default value is: YES. AUTOLINK_SUPPORT = YES # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want # to include (a tag file for) the STL sources as input, then you should set this # tag to YES in order to let doxygen match functions declarations and # definitions whose arguments contain STL classes (e.g. func(std::string); # versus func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. # The default value is: NO. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. # The default value is: NO. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip (see: # https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen # will parse them like normal C++ but will assume all classes use public instead # of private inheritance when no explicit protection keyword is present. # The default value is: NO. SIP_SUPPORT = NO # For Microsoft's IDL there are propget and propput attributes to indicate # getter and setter methods for a property. Setting this option to YES will make # doxygen to replace the get and set methods by a property in the documentation. # This will only work if the methods are indeed getting or setting a simple # type. If this is not the case, or you want to show the methods anyway, you # should set this option to NO. # The default value is: YES. IDL_PROPERTY_SUPPORT = YES # If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC # tag is set to YES then doxygen will reuse the documentation of the first # member in the group (if any) for the other members of the group. By default # all members of a group must be documented explicitly. # The default value is: NO. DISTRIBUTE_GROUP_DOC = NO # If one adds a struct or class to a group and this option is enabled, then also # any nested class or struct is added to the same group. By default this option # is disabled and one has to add nested compounds explicitly via \ingroup. # The default value is: NO. GROUP_NESTED_COMPOUNDS = NO # Set the SUBGROUPING tag to YES to allow class member groups of the same type # (for instance a group of public functions) to be put as a subgroup of that # type (e.g. under the Public Functions section). Set it to NO to prevent # subgrouping. Alternatively, this can be done per class using the # \nosubgrouping command. # The default value is: YES. SUBGROUPING = YES # When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions # are shown inside the group in which they are included (e.g. using \ingroup) # instead of on a separate page (for HTML and Man pages) or section (for LaTeX # and RTF). # # Note that this feature does not work in combination with # SEPARATE_MEMBER_PAGES. # The default value is: NO. INLINE_GROUPED_CLASSES = NO # When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions # with only public data fields or simple typedef fields will be shown inline in # the documentation of the scope in which they are defined (i.e. file, # namespace, or group documentation), provided this scope is documented. If set # to NO, structs, classes, and unions are shown on a separate page (for HTML and # Man pages) or section (for LaTeX and RTF). # The default value is: NO. INLINE_SIMPLE_STRUCTS = NO # When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or # enum is documented as struct, union, or enum with the name of the typedef. So # typedef struct TypeS {} TypeT, will appear in the documentation as a struct # with name TypeT. When disabled the typedef will appear as a member of a file, # namespace, or class. And the struct will be named TypeS. This can typically be # useful for C code in case the coding convention dictates that all compound # types are typedef'ed and only the typedef is referenced, never the tag name. # The default value is: NO. TYPEDEF_HIDES_STRUCT = NO # The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This # cache is used to resolve symbols given their name and scope. Since this can be # an expensive process and often the same symbol appears multiple times in the # code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small # doxygen will become slower. If the cache is too large, memory is wasted. The # cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range # is 0..9, the default is 0, corresponding to a cache size of 2^16=65536 # symbols. At the end of a run doxygen will report the cache usage and suggest # the optimal cache size from a speed point of view. # Minimum value: 0, maximum value: 9, default value: 0. LOOKUP_CACHE_SIZE = 0 # The NUM_PROC_THREADS specifies the number threads doxygen is allowed to use # during processing. When set to 0 doxygen will based this on the number of # cores available in the system. You can set it explicitly to a value larger # than 0 to get more control over the balance between CPU load and processing # speed. At this moment only the input processing can be done using multiple # threads. Since this is still an experimental feature the default is set to 1, # which efficively disables parallel processing. Please report any issues you # encounter. Generating dot graphs in parallel is controlled by the # DOT_NUM_THREADS setting. # Minimum value: 0, maximum value: 32, default value: 1. NUM_PROC_THREADS = 1 #--------------------------------------------------------------------------- # Build related configuration options #--------------------------------------------------------------------------- # If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in # documentation are documented, even if no documentation was available. Private # class members and static file members will be hidden unless the # EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES. # Note: This will also disable the warnings about undocumented members that are # normally produced when WARNINGS is set to YES. # The default value is: NO. EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will # be included in the documentation. # The default value is: NO. EXTRACT_PRIVATE = NO # If the EXTRACT_PRIV_VIRTUAL tag is set to YES, documented private virtual # methods of a class will be included in the documentation. # The default value is: NO. EXTRACT_PRIV_VIRTUAL = NO # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # scope will be included in the documentation. # The default value is: NO. EXTRACT_PACKAGE = NO # If the EXTRACT_STATIC tag is set to YES, all static members of a file will be # included in the documentation. # The default value is: NO. EXTRACT_STATIC = NO # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined # locally in source files will be included in the documentation. If set to NO, # only classes defined in header files are included. Does not have any effect # for Java sources. # The default value is: YES. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. If set to YES, local methods, # which are defined in the implementation section but not in the interface are # included in the documentation. If set to NO, only methods in the interface are # included. # The default value is: NO. EXTRACT_LOCAL_METHODS = NO # If this flag is set to YES, the members of anonymous namespaces will be # extracted and appear in the documentation as a namespace called # 'anonymous_namespace{file}', where file will be replaced with the base name of # the file that contains the anonymous namespace. By default anonymous namespace # are hidden. # The default value is: NO. EXTRACT_ANON_NSPACES = NO # If this flag is set to YES, the name of an unnamed parameter in a declaration # will be determined by the corresponding definition. By default unnamed # parameters remain unnamed in the output. # The default value is: YES. RESOLVE_UNNAMED_PARAMS = YES # If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all # undocumented members inside documented classes or files. If set to NO these # members will be included in the various overviews, but no documentation # section is generated. This option has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_MEMBERS = YES # If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all # undocumented classes that are normally visible in the class hierarchy. If set # to NO, these classes will be included in the various overviews. This option # has no effect if EXTRACT_ALL is enabled. # The default value is: NO. HIDE_UNDOC_CLASSES = YES # If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend # declarations. If set to NO, these declarations will be included in the # documentation. # The default value is: NO. HIDE_FRIEND_COMPOUNDS = NO # If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any # documentation blocks found inside the body of a function. If set to NO, these # blocks will be appended to the function's detailed documentation block. # The default value is: NO. HIDE_IN_BODY_DOCS = NO # The INTERNAL_DOCS tag determines if documentation that is typed after a # \internal command is included. If the tag is set to NO then the documentation # will be excluded. Set it to YES to include the internal documentation. # The default value is: NO. INTERNAL_DOCS = NO # With the correct setting of option CASE_SENSE_NAMES doxygen will better be # able to match the capabilities of the underlying filesystem. In case the # filesystem is case sensitive (i.e. it supports files in the same directory # whose names only differ in casing), the option must be set to YES to properly # deal with such files in case they appear in the input. For filesystems that # are not case sensitive the option should be be set to NO to properly deal with # output files written for symbols that only differ in casing, such as for two # classes, one named CLASS and the other named Class, and to also support # references to files without having to specify the exact matching casing. On # Windows (including Cygwin) and MacOS, users should typically set this option # to NO, whereas on Linux or other Unix flavors it should typically be set to # YES. # The default value is: system dependent. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with # their full class and namespace scopes in the documentation. If set to YES, the # scope will be hidden. # The default value is: NO. HIDE_SCOPE_NAMES = NO # If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will # append additional text to a page's title, such as Class Reference. If set to # YES the compound reference will be hidden. # The default value is: NO. HIDE_COMPOUND_REFERENCE= NO # If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of # the files that are included by a file in the documentation of that file. # The default value is: YES. SHOW_INCLUDE_FILES = YES # If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each # grouped member an include statement to the documentation, telling the reader # which file to include in order to use the member. # The default value is: NO. SHOW_GROUPED_MEMB_INC = NO # If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include # files with double quotes in the documentation rather than with sharp brackets. # The default value is: NO. FORCE_LOCAL_INCLUDES = NO # If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the # documentation for inline members. # The default value is: YES. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the # (detailed) documentation of file and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. # The default value is: YES. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief # descriptions of file, namespace and class members alphabetically by member # name. If set to NO, the members will appear in declaration order. Note that # this will also influence the order of the classes in the class list. # The default value is: NO. SORT_BRIEF_DOCS = YES # If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the # (brief and detailed) documentation of class members so that constructors and # destructors are listed first. If set to NO the constructors will appear in the # respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS. # Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief # member documentation. # Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting # detailed member documentation. # The default value is: NO. SORT_MEMBERS_CTORS_1ST = YES # If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy # of group names into alphabetical order. If set to NO the group names will # appear in their defined order. # The default value is: NO. SORT_GROUP_NAMES = NO # If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by # fully-qualified names, including namespaces. If set to NO, the class list will # be sorted only by class name, not including the namespace part. # Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES. # Note: This option applies only to the class list, not to the alphabetical # list. # The default value is: NO. SORT_BY_SCOPE_NAME = YES # If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper # type resolution of all parameters of a function it will reject a match between # the prototype and the implementation of a member function even if there is # only one candidate or it is obvious which candidate to choose by doing a # simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still # accept a match between prototype and implementation in such cases. # The default value is: NO. STRICT_PROTO_MATCHING = NO # The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo # list. This list is created by putting \todo commands in the documentation. # The default value is: YES. GENERATE_TODOLIST = YES # The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test # list. This list is created by putting \test commands in the documentation. # The default value is: YES. GENERATE_TESTLIST = YES # The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug # list. This list is created by putting \bug commands in the documentation. # The default value is: YES. GENERATE_BUGLIST = YES # The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO) # the deprecated list. This list is created by putting \deprecated commands in # the documentation. # The default value is: YES. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional documentation # sections, marked by \if ... \endif and \cond # ... \endcond blocks. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the # initial value of a variable or macro / define can have for it to appear in the # documentation. If the initializer consists of more lines than specified here # it will be hidden. Use a value of 0 to hide initializers completely. The # appearance of the value of individual variables and macros / defines can be # controlled using \showinitializer or \hideinitializer command in the # documentation regardless of this setting. # Minimum value: 0, maximum value: 10000, default value: 30. MAX_INITIALIZER_LINES = 30 # Set the SHOW_USED_FILES tag to NO to disable the list of files generated at # the bottom of the documentation of classes and structs. If set to YES, the # list will mention the files that were used to generate the documentation. # The default value is: YES. SHOW_USED_FILES = YES # Set the SHOW_FILES tag to NO to disable the generation of the Files page. This # will remove the Files entry from the Quick Index and from the Folder Tree View # (if specified). # The default value is: YES. SHOW_FILES = YES # Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces # page. This will remove the Namespaces entry from the Quick Index and from the # Folder Tree View (if specified). # The default value is: YES. SHOW_NAMESPACES = YES # The FILE_VERSION_FILTER tag can be used to specify a program or script that # doxygen should invoke to get the current version for each file (typically from # the version control system). Doxygen will invoke the program by executing (via # popen()) the command command input-file, where command is the value of the # FILE_VERSION_FILTER tag, and input-file is the name of an input file provided # by doxygen. Whatever the program writes to standard output is used as the file # version. For an example see the documentation. FILE_VERSION_FILTER = # The LAYOUT_FILE tag can be used to specify a layout file which will be parsed # by doxygen. The layout file controls the global structure of the generated # output files in an output format independent way. To create the layout file # that represents doxygen's defaults, run doxygen with the -l option. You can # optionally specify a file name after the option, if omitted DoxygenLayout.xml # will be used as the name of the layout file. # # Note that if you run doxygen from a directory containing a file called # DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE # tag is left empty. LAYOUT_FILE = # The CITE_BIB_FILES tag can be used to specify one or more bib files containing # the reference definitions. This must be a list of .bib files. The .bib # extension is automatically appended if omitted. This requires the bibtex tool # to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info. # For LaTeX the style of the bibliography can be controlled using # LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the # search path. See also \cite for info how to create references. CITE_BIB_FILES = #--------------------------------------------------------------------------- # Configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated to # standard output by doxygen. If QUIET is set to YES this implies that the # messages are off. # The default value is: NO. QUIET = NO # The WARNINGS tag can be used to turn on/off the warning messages that are # generated to standard error (stderr) by doxygen. If WARNINGS is set to YES # this implies that the warnings are on. # # Tip: Turn warnings on while writing the documentation. # The default value is: YES. WARNINGS = YES # If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate # warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag # will automatically be disabled. # The default value is: YES. WARN_IF_UNDOCUMENTED = YES # If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for # potential errors in the documentation, such as not documenting some parameters # in a documented function, or documenting parameters that don't exist or using # markup commands wrongly. # The default value is: YES. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that # are documented, but have no documentation for their parameters or return # value. If set to NO, doxygen will only warn about wrong or incomplete # parameter documentation, but not about the absence of documentation. If # EXTRACT_ALL is set to YES then this flag will automatically be disabled. # The default value is: NO. WARN_NO_PARAMDOC = NO # If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when # a warning is encountered. If the WARN_AS_ERROR tag is set to FAIL_ON_WARNINGS # then doxygen will continue running as if WARN_AS_ERROR tag is set to NO, but # at the end of the doxygen process doxygen will return with a non-zero status. # Possible values are: NO, YES and FAIL_ON_WARNINGS. # The default value is: NO. WARN_AS_ERROR = NO # The WARN_FORMAT tag determines the format of the warning messages that doxygen # can produce. The string should contain the $file, $line, and $text tags, which # will be replaced by the file and line number from which the warning originated # and the warning text. Optionally the format may contain $version, which will # be replaced by the version of the file (if it could be obtained via # FILE_VERSION_FILTER) # The default value is: $file:$line: $text. WARN_FORMAT = "$file:$line: $text" # The WARN_LOGFILE tag can be used to specify a file to which warning and error # messages should be written. If left blank the output is written to standard # error (stderr). WARN_LOGFILE = #--------------------------------------------------------------------------- # Configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag is used to specify the files and/or directories that contain # documented source files. You may enter file names like myfile.cpp or # directories like /usr/src/myproject. Separate the files or directories with # spaces. See also FILE_PATTERNS and EXTENSION_MAPPING # Note: If this tag is empty the current directory is searched. INPUT = . \ ./doc # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses # libiconv (or the iconv built into libc) for the transcoding. See the libiconv # documentation (see: # https://www.gnu.org/software/libiconv/) for the list of possible encodings. # The default value is: UTF-8. INPUT_ENCODING = UTF-8 # If the value of the INPUT tag contains directories, you can use the # FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and # *.h) to filter out the source-files in the directories. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # read by doxygen. # # Note the list of default checked file patterns might differ from the list of # default file extension mappings. # # If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp, # *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, # *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc, # *.m, *.markdown, *.md, *.mm, *.dox (to be provided as doxygen C comment), # *.py, *.pyw, *.f90, *.f95, *.f03, *.f08, *.f18, *.f, *.for, *.vhd, *.vhdl, # *.ucf, *.qsf and *.ice. FILE_PATTERNS = *.h \ *.cxx \ *.txt # The RECURSIVE tag can be used to specify whether or not subdirectories should # be searched for input files as well. # The default value is: NO. RECURSIVE = NO # The EXCLUDE tag can be used to specify files and/or directories that should be # excluded from the INPUT source files. This way you can easily exclude a # subdirectory from a directory tree whose root is specified with the INPUT tag. # # Note that relative paths are relative to the directory from which doxygen is # run. EXCLUDE = # The EXCLUDE_SYMLINKS tag can be used to select whether or not files or # directories that are symbolic links (a Unix file system feature) are excluded # from the input. # The default value is: NO. EXCLUDE_SYMLINKS = NO # If the value of the INPUT tag contains directories, you can use the # EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude # certain files from those directories. # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories for example use the pattern */test/* EXCLUDE_PATTERNS = # The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names # (namespaces, classes, functions, etc.) that should be excluded from the # output. The symbol name can be a fully qualified name, a word, or if the # wildcard * is used, a substring. Examples: ANamespace, AClass, # AClass::ANamespace, ANamespace::*Test # # Note that the wildcards are matched against the file with absolute path, so to # exclude all test directories use the pattern */test/* EXCLUDE_SYMBOLS = # The EXAMPLE_PATH tag can be used to specify one or more files or directories # that contain example code fragments that are included (see the \include # command). EXAMPLE_PATH = # If the value of the EXAMPLE_PATH tag contains directories, you can use the # EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and # *.h) to filter out the source-files in the directories. If left blank all # files are included. EXAMPLE_PATTERNS = * # If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be # searched for input files to be used with the \include or \dontinclude commands # irrespective of the value of the RECURSIVE tag. # The default value is: NO. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or directories # that contain images that are to be included in the documentation (see the # \image command). IMAGE_PATH = # The INPUT_FILTER tag can be used to specify a program that doxygen should # invoke to filter for each input file. Doxygen will invoke the filter program # by executing (via popen()) the command: # # # # where is the value of the INPUT_FILTER tag, and is the # name of an input file. Doxygen will then use the output that the filter # program writes to standard output. If FILTER_PATTERNS is specified, this tag # will be ignored. # # Note that the filter must not add or remove lines; it is applied before the # code is scanned, but not when the output code is generated. If lines are added # or removed, the anchors will not be placed correctly. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. INPUT_FILTER = # The FILTER_PATTERNS tag can be used to specify filters on a per file pattern # basis. Doxygen will compare the file name with each pattern and apply the # filter if there is a match. The filters are a list of the form: pattern=filter # (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how # filters are used. If the FILTER_PATTERNS tag is empty or if none of the # patterns match the file name, INPUT_FILTER is applied. # # Note that for custom extensions or not directly supported extensions you also # need to set EXTENSION_MAPPING for the extension otherwise the files are not # properly processed by doxygen. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will also be used to filter the input files that are used for # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES). # The default value is: NO. FILTER_SOURCE_FILES = NO # The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file # pattern. A pattern will override the setting for FILTER_PATTERN (if any) and # it is also possible to disable source filtering for a specific pattern using # *.ext= (so without naming a filter). # This tag requires that the tag FILTER_SOURCE_FILES is set to YES. FILTER_SOURCE_PATTERNS = # If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that # is part of the input, its contents will be placed on the main page # (index.html). This can be useful if you have a project on for instance GitHub # and want to reuse the introduction page also for the doxygen output. USE_MDFILE_AS_MAINPAGE = #--------------------------------------------------------------------------- # Configuration options related to source browsing #--------------------------------------------------------------------------- # If the SOURCE_BROWSER tag is set to YES then a list of source files will be # generated. Documented entities will be cross-referenced with these sources. # # Note: To get rid of all source code in the generated output, make sure that # also VERBATIM_HEADERS is set to NO. # The default value is: NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body of functions, # classes and enums directly into the documentation. # The default value is: NO. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any # special comment blocks from generated source code fragments. Normal C, C++ and # Fortran comments will always remain visible. # The default value is: YES. STRIP_CODE_COMMENTS = YES # If the REFERENCED_BY_RELATION tag is set to YES then for each documented # entity all documented functions referencing it will be listed. # The default value is: NO. REFERENCED_BY_RELATION = NO # If the REFERENCES_RELATION tag is set to YES then for each documented function # all documented entities called/used by that function will be listed. # The default value is: NO. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set # to YES then the hyperlinks from functions in REFERENCES_RELATION and # REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will # link to the documentation. # The default value is: YES. REFERENCES_LINK_SOURCE = NO # If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the # source code will show a tooltip with additional information such as prototype, # brief description and links to the definition and documentation. Since this # will make the HTML file larger and loading of large files a bit slower, you # can opt to disable this feature. # The default value is: YES. # This tag requires that the tag SOURCE_BROWSER is set to YES. SOURCE_TOOLTIPS = YES # If the USE_HTAGS tag is set to YES then the references to source code will # point to the HTML generated by the htags(1) tool instead of doxygen built-in # source browser. The htags tool is part of GNU's global source tagging system # (see https://www.gnu.org/software/global/global.html). You will need version # 4.8.6 or higher. # # To use it do the following: # - Install the latest version of global # - Enable SOURCE_BROWSER and USE_HTAGS in the configuration file # - Make sure the INPUT points to the root of the source tree # - Run doxygen as normal # # Doxygen will invoke htags (and that will in turn invoke gtags), so these # tools must be available from the command line (i.e. in the search path). # # The result: instead of the source browser generated by doxygen, the links to # source code will now point to the output of htags. # The default value is: NO. # This tag requires that the tag SOURCE_BROWSER is set to YES. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a # verbatim copy of the header file for each class for which an include is # specified. Set to NO to disable this. # See also: Section \class. # The default value is: YES. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # Configuration options related to the alphabetical class index #--------------------------------------------------------------------------- # If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all # compounds will be generated. Enable this if the project contains a lot of # classes, structs, unions or interfaces. # The default value is: YES. ALPHABETICAL_INDEX = YES # In case all classes in a project start with a common prefix, all classes will # be put under the same header in the alphabetical index. The IGNORE_PREFIX tag # can be used to specify a prefix (or a list of prefixes) that should be ignored # while generating the index headers. # This tag requires that the tag ALPHABETICAL_INDEX is set to YES. IGNORE_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output # The default value is: YES. GENERATE_HTML = YES # The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a # relative path is entered the value of OUTPUT_DIRECTORY will be put in front of # it. # The default directory is: html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_OUTPUT = html # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each # generated HTML page (for example: .htm, .php, .asp). # The default value is: .html. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a user-defined HTML header file for # each generated HTML page. If the tag is left blank doxygen will generate a # standard header. # # To get valid HTML the header file that includes any scripts and style sheets # that doxygen needs, which is dependent on the configuration options used (e.g. # the setting GENERATE_TREEVIEW). It is highly recommended to start with a # default header using # doxygen -w html new_header.html new_footer.html new_stylesheet.css # YourConfigFile # and then modify the file new_header.html. See also section "Doxygen usage" # for information on how to generate the default header that doxygen normally # uses. # Note: The header is subject to change so you typically have to regenerate the # default header when upgrading to a newer version of doxygen. For a description # of the possible markers and block names see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each # generated HTML page. If the tag is left blank doxygen will generate a standard # footer. See HTML_HEADER for more information on how to generate a default # footer and what special commands can be used inside the footer. See also # section "Doxygen usage" for information on how to generate the default footer # that doxygen normally uses. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FOOTER = # The HTML_STYLESHEET tag can be used to specify a user-defined cascading style # sheet that is used by each HTML page. It can be used to fine-tune the look of # the HTML output. If left blank doxygen will generate a default style sheet. # See also section "Doxygen usage" for information on how to generate the style # sheet that doxygen normally uses. # Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as # it is more robust and this tag (HTML_STYLESHEET) will in the future become # obsolete. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_STYLESHEET = # The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined # cascading style sheets that are included after the standard style sheets # created by doxygen. Using this option one can overrule certain style aspects. # This is preferred over using HTML_STYLESHEET since it does not replace the # standard style sheet and is therefore more robust against future updates. # Doxygen will copy the style sheet files to the output directory. # Note: The order of the extra style sheet files is of importance (e.g. the last # style sheet in the list overrules the setting of the previous ones in the # list). For an example see the documentation. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_STYLESHEET = # The HTML_EXTRA_FILES tag can be used to specify one or more extra images or # other source files which should be copied to the HTML output directory. Note # that these files will be copied to the base HTML output directory. Use the # $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these # files. In the HTML_STYLESHEET file, use the file name only. Also note that the # files will be copied as-is; there are no commands or markers available. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_EXTRA_FILES = # The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen # will adjust the colors in the style sheet and background images according to # this color. Hue is specified as an angle on a colorwheel, see # https://en.wikipedia.org/wiki/Hue for more information. For instance the value # 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300 # purple, and 360 is red again. # Minimum value: 0, maximum value: 359, default value: 220. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_HUE = 220 # The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors # in the HTML output. For a value of 0 the output will use grayscales only. A # value of 255 will produce the most vivid colors. # Minimum value: 0, maximum value: 255, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_SAT = 100 # The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the # luminance component of the colors in the HTML output. Values below 100 # gradually make the output lighter, whereas values above 100 make the output # darker. The value divided by 100 is the actual gamma applied, so 80 represents # a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not # change the gamma. # Minimum value: 40, maximum value: 240, default value: 80. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_COLORSTYLE_GAMMA = 80 # If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML # page will contain the date and time when the page was generated. Setting this # to YES can help to show when doxygen was last run and thus if the # documentation is up to date. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_TIMESTAMP = YES # If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML # documentation will contain a main index with vertical navigation menus that # are dynamically created via JavaScript. If disabled, the navigation index will # consists of multiple levels of tabs that are statically embedded in every HTML # page. Disable this option to support browsers that do not have JavaScript, # like the Qt help browser. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_MENUS = NO # If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML # documentation will contain sections that can be hidden and shown after the # page has loaded. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_DYNAMIC_SECTIONS = NO # With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries # shown in the various tree structured indices initially; the user can expand # and collapse entries dynamically later on. Doxygen will expand the tree to # such a level that at most the specified number of entries are visible (unless # a fully collapsed tree already exceeds this amount). So setting the number of # entries 1 will produce a full collapsed tree by default. 0 is a special value # representing an infinite number of entries and will result in a full expanded # tree by default. # Minimum value: 0, maximum value: 9999, default value: 100. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_INDEX_NUM_ENTRIES = 100 # If the GENERATE_DOCSET tag is set to YES, additional index files will be # generated that can be used as input for Apple's Xcode 3 integrated development # environment (see: # https://developer.apple.com/xcode/), introduced with OSX 10.5 (Leopard). To # create a documentation set, doxygen will generate a Makefile in the HTML # output directory. Running make will produce the docset in that directory and # running make install will install the docset in # ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at # startup. See https://developer.apple.com/library/archive/featuredarticles/Doxy # genXcode/_index.html for more information. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_DOCSET = NO # This tag determines the name of the docset feed. A documentation feed provides # an umbrella under which multiple documentation sets from a single provider # (such as a company or product suite) can be grouped. # The default value is: Doxygen generated docs. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_FEEDNAME = "Doxygen generated docs" # This tag specifies a string that should uniquely identify the documentation # set bundle. This should be a reverse domain-name style string, e.g. # com.mycompany.MyDocSet. Doxygen will append .docset to the name. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_BUNDLE_ID = org.doxygen.Project # The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify # the documentation publisher. This should be a reverse domain-name style # string, e.g. com.mycompany.MyDocSet.documentation. # The default value is: org.doxygen.Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_ID = org.doxygen.Publisher # The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher. # The default value is: Publisher. # This tag requires that the tag GENERATE_DOCSET is set to YES. DOCSET_PUBLISHER_NAME = Publisher # If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three # additional HTML index files: index.hhp, index.hhc, and index.hhk. The # index.hhp is a project file that can be read by Microsoft's HTML Help Workshop # (see: # https://www.microsoft.com/en-us/download/details.aspx?id=21138) on Windows. # # The HTML Help Workshop contains a compiler that can convert all HTML output # generated by doxygen into a single compiled HTML file (.chm). Compiled HTML # files are now used as the Windows 98 help format, and will replace the old # Windows help format (.hlp) on all Windows platforms in the future. Compressed # HTML files also contain an index, a table of contents, and you can search for # words in the documentation. The HTML workshop also contains a viewer for # compressed HTML files. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_HTMLHELP = NO # The CHM_FILE tag can be used to specify the file name of the resulting .chm # file. You can add a path in front of the file if the result should not be # written to the html output directory. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_FILE = # The HHC_LOCATION tag can be used to specify the location (absolute path # including file name) of the HTML help compiler (hhc.exe). If non-empty, # doxygen will try to run the HTML help compiler on the generated index.hhp. # The file has to be specified with full path. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. HHC_LOCATION = # The GENERATE_CHI flag controls if a separate .chi index file is generated # (YES) or that it should be included in the main .chm file (NO). # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. GENERATE_CHI = NO # The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc) # and project file content. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. CHM_INDEX_ENCODING = # The BINARY_TOC flag controls whether a binary table of contents is generated # (YES) or a normal table of contents (NO) in the .chm file. Furthermore it # enables the Previous and Next buttons. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members to # the table of contents of the HTML help documentation and to the tree view. # The default value is: NO. # This tag requires that the tag GENERATE_HTMLHELP is set to YES. TOC_EXPAND = NO # If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and # QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that # can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help # (.qch) of the generated HTML documentation. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_QHP = NO # If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify # the file name of the resulting .qch file. The path specified is relative to # the HTML output folder. # This tag requires that the tag GENERATE_QHP is set to YES. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help # Project output. For more information please see Qt Help Project / Namespace # (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#namespace). # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_NAMESPACE = # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt # Help Project output. For more information please see Qt Help Project / Virtual # Folders (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#virtual-folders). # The default value is: doc. # This tag requires that the tag GENERATE_QHP is set to YES. QHP_VIRTUAL_FOLDER = doc # If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom # filter to add. For more information please see Qt Help Project / Custom # Filters (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_NAME = # The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the # custom filter to add. For more information please see Qt Help Project / Custom # Filters (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#custom-filters). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_CUST_FILTER_ATTRS = # The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this # project's filter section matches. Qt Help Project / Filter Attributes (see: # https://doc.qt.io/archives/qt-4.8/qthelpproject.html#filter-attributes). # This tag requires that the tag GENERATE_QHP is set to YES. QHP_SECT_FILTER_ATTRS = # The QHG_LOCATION tag can be used to specify the location (absolute path # including file name) of Qt's qhelpgenerator. If non-empty doxygen will try to # run qhelpgenerator on the generated .qhp file. # This tag requires that the tag GENERATE_QHP is set to YES. QHG_LOCATION = # If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be # generated, together with the HTML files, they form an Eclipse help plugin. To # install this plugin and make it available under the help contents menu in # Eclipse, the contents of the directory containing the HTML and XML files needs # to be copied into the plugins directory of eclipse. The name of the directory # within the plugins directory should be the same as the ECLIPSE_DOC_ID value. # After copying Eclipse needs to be restarted before the help appears. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_ECLIPSEHELP = NO # A unique identifier for the Eclipse help plugin. When installing the plugin # the directory name containing the HTML and XML files should also have this # name. Each documentation set should have its own identifier. # The default value is: org.doxygen.Project. # This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES. ECLIPSE_DOC_ID = org.doxygen.Project # If you want full control over the layout of the generated HTML pages it might # be necessary to disable the index and replace it with your own. The # DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top # of each HTML page. A value of NO enables the index and the value YES disables # it. Since the tabs in the index contain the same information as the navigation # tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. DISABLE_INDEX = NO # The GENERATE_TREEVIEW tag is used to specify whether a tree-like index # structure should be generated to display hierarchical information. If the tag # value is set to YES, a side panel will be generated containing a tree-like # index structure (just like the one that is generated for HTML Help). For this # to work a browser that supports JavaScript, DHTML, CSS and frames is required # (i.e. any modern browser). Windows users are probably better off using the # HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can # further fine-tune the look of the index. As an example, the default style # sheet generated by doxygen has an example that shows how to put an image at # the root of the tree instead of the PROJECT_NAME. Since the tree basically has # the same information as the tab index, you could consider setting # DISABLE_INDEX to YES when enabling this option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. GENERATE_TREEVIEW = NO # The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that # doxygen will group on one line in the generated HTML documentation. # # Note that a value of 0 will completely suppress the enum values from appearing # in the overview section. # Minimum value: 0, maximum value: 20, default value: 4. # This tag requires that the tag GENERATE_HTML is set to YES. ENUM_VALUES_PER_LINE = 4 # If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used # to set the initial width (in pixels) of the frame in which the tree is shown. # Minimum value: 0, maximum value: 1500, default value: 250. # This tag requires that the tag GENERATE_HTML is set to YES. TREEVIEW_WIDTH = 250 # If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to # external symbols imported via tag files in a separate window. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. EXT_LINKS_IN_WINDOW = NO # If the HTML_FORMULA_FORMAT option is set to svg, doxygen will use the pdf2svg # tool (see https://github.com/dawbarton/pdf2svg) or inkscape (see # https://inkscape.org) to generate formulas as SVG images instead of PNGs for # the HTML output. These images will generally look nicer at scaled resolutions. # Possible values are: png (the default) and svg (looks nicer but requires the # pdf2svg or inkscape tool). # The default value is: png. # This tag requires that the tag GENERATE_HTML is set to YES. HTML_FORMULA_FORMAT = png # Use this tag to change the font size of LaTeX formulas included as images in # the HTML documentation. When you change the font size after a successful # doxygen run you need to manually remove any form_*.png images from the HTML # output directory to force them to be regenerated. # Minimum value: 8, maximum value: 50, default value: 10. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_FONTSIZE = 10 # Use the FORMULA_TRANSPARENT tag to determine whether or not the images # generated for formulas are transparent PNGs. Transparent PNGs are not # supported properly for IE 6.0, but are supported on all modern browsers. # # Note that when changing this option you need to delete any form_*.png files in # the HTML output directory before the changes have effect. # The default value is: YES. # This tag requires that the tag GENERATE_HTML is set to YES. FORMULA_TRANSPARENT = YES # The FORMULA_MACROFILE can contain LaTeX \newcommand and \renewcommand commands # to create new LaTeX commands to be used in formulas as building blocks. See # the section "Including formulas" for details. FORMULA_MACROFILE = # Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see # https://www.mathjax.org) which uses client side JavaScript for the rendering # instead of using pre-rendered bitmaps. Use this if you do not have LaTeX # installed or if you want to formulas look prettier in the HTML output. When # enabled you may also need to install MathJax separately and configure the path # to it using the MATHJAX_RELPATH option. # The default value is: NO. # This tag requires that the tag GENERATE_HTML is set to YES. USE_MATHJAX = NO # When MathJax is enabled you can set the default output format to be used for # the MathJax output. See the MathJax site (see: # http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. # Possible values are: HTML-CSS (which is slower, but has the best # compatibility), NativeMML (i.e. MathML) and SVG. # The default value is: HTML-CSS. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_FORMAT = HTML-CSS # When MathJax is enabled you need to specify the location relative to the HTML # output directory using the MATHJAX_RELPATH option. The destination directory # should contain the MathJax.js script. For instance, if the mathjax directory # is located at the same level as the HTML output directory, then # MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax # Content Delivery Network so you can quickly see the result without installing # MathJax. However, it is strongly recommended to install a local copy of # MathJax from https://www.mathjax.org before deployment. # The default value is: https://cdn.jsdelivr.net/npm/mathjax@2. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_RELPATH = https://cdn.jsdelivr.net/npm/mathjax@2 # The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax # extension names that should be enabled during MathJax rendering. For example # MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_EXTENSIONS = # The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces # of code that will be used on startup of the MathJax code. See the MathJax site # (see: # http://docs.mathjax.org/en/v2.7-latest/output.html) for more details. For an # example see the documentation. # This tag requires that the tag USE_MATHJAX is set to YES. MATHJAX_CODEFILE = # When the SEARCHENGINE tag is enabled doxygen will generate a search box for # the HTML output. The underlying search engine uses javascript and DHTML and # should work on any modern browser. Note that when using HTML help # (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET) # there is already a search function so this one should typically be disabled. # For large projects the javascript based search engine can be slow, then # enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to # search using the keyboard; to jump to the search box use + S # (what the is depends on the OS and browser, but it is typically # , /