ttfautohint-0.97/0000755000175000001440000000000012237367737011040 500000000000000ttfautohint-0.97/lib/0000755000175000001440000000000012237367737011606 500000000000000ttfautohint-0.97/lib/tamaxp.c0000644000175000001440000000624012161241630013141 00000000000000/* tamaxp.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" FT_Error TA_sfnt_update_maxp_table(SFNT* sfnt, FONT* font) { SFNT_Table* maxp_table = &font->tables[sfnt->maxp_idx]; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Byte* buf = maxp_table->buf; if (maxp_table->processed) return TA_Err_Ok; if (maxp_table->len != MAXP_LEN) return FT_Err_Invalid_Table; if (font->dehint) { buf[MAXP_MAX_ZONES_OFFSET] = 0; buf[MAXP_MAX_ZONES_OFFSET + 1] = 0; buf[MAXP_MAX_TWILIGHT_POINTS_OFFSET] = 0; buf[MAXP_MAX_TWILIGHT_POINTS_OFFSET + 1] = 0; buf[MAXP_MAX_STORAGE_OFFSET] = 0; buf[MAXP_MAX_STORAGE_OFFSET + 1] = 0; buf[MAXP_MAX_FUNCTION_DEFS_OFFSET] = 0; buf[MAXP_MAX_FUNCTION_DEFS_OFFSET + 1] = 0; buf[MAXP_MAX_INSTRUCTION_DEFS_OFFSET] = 0; buf[MAXP_MAX_INSTRUCTION_DEFS_OFFSET + 1] = 0; buf[MAXP_MAX_STACK_ELEMENTS_OFFSET] = 0; buf[MAXP_MAX_STACK_ELEMENTS_OFFSET + 1] = 0; buf[MAXP_MAX_INSTRUCTIONS_OFFSET] = 0; buf[MAXP_MAX_INSTRUCTIONS_OFFSET + 1] = 0; } else { if (sfnt->max_components && font->hint_composites) { buf[MAXP_NUM_GLYPHS] = HIGH(data->num_glyphs); buf[MAXP_NUM_GLYPHS + 1] = LOW(data->num_glyphs); buf[MAXP_MAX_COMPOSITE_POINTS] = HIGH(sfnt->max_composite_points); buf[MAXP_MAX_COMPOSITE_POINTS + 1] = LOW(sfnt->max_composite_points); buf[MAXP_MAX_COMPOSITE_CONTOURS] = HIGH(sfnt->max_composite_contours); buf[MAXP_MAX_COMPOSITE_CONTOURS + 1] = LOW(sfnt->max_composite_contours); } buf[MAXP_MAX_ZONES_OFFSET] = 0; buf[MAXP_MAX_ZONES_OFFSET + 1] = 2; buf[MAXP_MAX_TWILIGHT_POINTS_OFFSET] = HIGH(sfnt->max_twilight_points); buf[MAXP_MAX_TWILIGHT_POINTS_OFFSET + 1] = LOW(sfnt->max_twilight_points); buf[MAXP_MAX_STORAGE_OFFSET] = HIGH(sfnt->max_storage); buf[MAXP_MAX_STORAGE_OFFSET + 1] = LOW(sfnt->max_storage); buf[MAXP_MAX_FUNCTION_DEFS_OFFSET] = 0; buf[MAXP_MAX_FUNCTION_DEFS_OFFSET + 1] = NUM_FDEFS; buf[MAXP_MAX_INSTRUCTION_DEFS_OFFSET] = 0; buf[MAXP_MAX_INSTRUCTION_DEFS_OFFSET + 1] = 0; buf[MAXP_MAX_STACK_ELEMENTS_OFFSET] = HIGH(sfnt->max_stack_elements); buf[MAXP_MAX_STACK_ELEMENTS_OFFSET + 1] = LOW(sfnt->max_stack_elements); buf[MAXP_MAX_INSTRUCTIONS_OFFSET] = HIGH(sfnt->max_instructions); buf[MAXP_MAX_INSTRUCTIONS_OFFSET + 1] = LOW(sfnt->max_instructions); buf[MAXP_MAX_COMPONENTS_OFFSET] = HIGH(sfnt->max_components); buf[MAXP_MAX_COMPONENTS_OFFSET + 1] = LOW(sfnt->max_components); } maxp_table->checksum = TA_table_compute_checksum(maxp_table->buf, maxp_table->len); maxp_table->processed = 1; return TA_Err_Ok; } /* end of tamaxp.c */ ttfautohint-0.97/lib/tafont.c0000644000175000001440000000510612076552172013155 00000000000000/* tafont.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" FT_Error TA_font_init(FONT* font) { FT_Error error; FT_Face f; FT_Int major, minor, patch; error = FT_Init_FreeType(&font->lib); if (error) return error; /* assure correct FreeType version to avoid using the wrong DLL */ FT_Library_Version(font->lib, &major, &minor, &patch); if (((major*1000 + minor)*1000 + patch) < 2004005) return TA_Err_Invalid_FreeType_Version; /* get number of faces (i.e. subfonts) */ error = FT_New_Memory_Face(font->lib, font->in_buf, font->in_len, -1, &f); if (error) return error; font->num_sfnts = f->num_faces; FT_Done_Face(f); /* it is a TTC if we have more than a single subfont */ font->sfnts = (SFNT*)calloc(1, font->num_sfnts * sizeof (SFNT)); if (!font->sfnts) return FT_Err_Out_Of_Memory; return TA_Err_Ok; } void TA_font_unload(FONT* font, const char* in_buf, char** out_bufp) { /* in case of error it is expected that unallocated pointers */ /* are NULL (and counters are zero) */ if (!font) return; if (font->loader) ta_loader_done(font); if (font->tables) { FT_ULong i; for (i = 0; i < font->num_tables; i++) { free(font->tables[i].buf); if (font->tables[i].data) { if (font->tables[i].tag == TTAG_glyf) { glyf_Data* data = (glyf_Data*)font->tables[i].data; FT_UShort j; for (j = 0; j < data->num_glyphs; j++) { free(data->glyphs[j].buf); free(data->glyphs[j].ins_buf); free(data->glyphs[j].components); free(data->glyphs[j].pointsums); } free(data->glyphs); free(data); } } } free(font->tables); } if (font->sfnts) { FT_Long i; for (i = 0; i < font->num_sfnts; i++) { FT_Done_Face(font->sfnts[i].face); free(font->sfnts[i].table_infos); } free(font->sfnts); } number_set_free(font->x_height_snapping_exceptions); FT_Done_FreeType(font->lib); if (!in_buf) free(font->in_buf); if (!out_bufp) free(font->out_buf); free(font); } /* end of tafont.c */ ttfautohint-0.97/lib/Makefile.in0000644000175000001440000010276512237364313013571 00000000000000# Makefile.in generated by automake 1.14 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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) 2011-2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' 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@ subdir = lib DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/gnulib/depcomp ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/autotroll.m4 \ $(top_srcdir)/m4/ltlize_lang.m4 \ $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/errno_h.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/fcntl-o.m4 \ $(top_srcdir)/gnulib/m4/fcntl_h.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/isatty.m4 \ $(top_srcdir)/gnulib/m4/lib-ld.m4 \ $(top_srcdir)/gnulib/m4/lib-link.m4 \ $(top_srcdir)/gnulib/m4/lib-prefix.m4 \ $(top_srcdir)/gnulib/m4/libtool.m4 \ $(top_srcdir)/gnulib/m4/lock.m4 \ $(top_srcdir)/gnulib/m4/longlong.m4 \ $(top_srcdir)/gnulib/m4/ltoptions.m4 \ $(top_srcdir)/gnulib/m4/ltsugar.m4 \ $(top_srcdir)/gnulib/m4/ltversion.m4 \ $(top_srcdir)/gnulib/m4/lt~obsolete.m4 \ $(top_srcdir)/gnulib/m4/memchr.m4 \ $(top_srcdir)/gnulib/m4/memmem.m4 \ $(top_srcdir)/gnulib/m4/mmap-anon.m4 \ $(top_srcdir)/gnulib/m4/msvc-inval.m4 \ $(top_srcdir)/gnulib/m4/msvc-nothrow.m4 \ $(top_srcdir)/gnulib/m4/multiarch.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdint.m4 \ $(top_srcdir)/gnulib/m4/strerror.m4 \ $(top_srcdir)/gnulib/m4/strerror_r.m4 \ $(top_srcdir)/gnulib/m4/string_h.m4 \ $(top_srcdir)/gnulib/m4/sys_socket_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/threadlib.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LTLIBRARIES = $(noinst_LTLIBRARIES) libnumberset_la_LIBADD = am_libnumberset_la_OBJECTS = numberset.lo libnumberset_la_OBJECTS = $(am_libnumberset_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 = libttfautohint_la_DEPENDENCIES = libnumberset.la am_libttfautohint_la_OBJECTS = tablue.lo tabytecode.lo tacvt.lo \ tadsig.lo tadummy.lo taerror.lo tafile.lo tafont.lo tafpgm.lo \ tagasp.lo tagloadr.lo taglobal.lo taglyf.lo tagpos.lo \ tahints.lo tahmtx.lo talatin.lo taloader.lo taloca.lo \ tamaxp.lo taname.lo tapost.lo taprep.lo tasfnt.lo tasort.lo \ tatables.lo tatime.lo tattc.lo tattf.lo ttfautohint.lo libttfautohint_la_OBJECTS = $(am_libttfautohint_la_OBJECTS) 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@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/gnulib/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libnumberset_la_SOURCES) $(libttfautohint_la_SOURCES) DIST_SOURCES = $(libnumberset_la_SOURCES) $(libttfautohint_la_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) # 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 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@ AR = @AR@ ARFLAGS = @ARFLAGS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@ BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@ BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@ BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@ BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ 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@ EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@ EMULTIHOP_VALUE = @EMULTIHOP_VALUE@ ENOLINK_HIDDEN = @ENOLINK_HIDDEN@ ENOLINK_VALUE = @ENOLINK_VALUE@ EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@ EOVERFLOW_VALUE = @EOVERFLOW_VALUE@ ERRNO_H = @ERRNO_H@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CPPFLAGS = @FREETYPE_CPPFLAGS@ FREETYPE_LIBS = @FREETYPE_LIBS@ GETOPT_H = @GETOPT_H@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FCNTL = @GNULIB_FCNTL@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FFSL = @GNULIB_FFSL@ GNULIB_FFSLL = @GNULIB_FFSLL@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@ GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@ GNULIB_MBSCHR = @GNULIB_MBSCHR@ GNULIB_MBSCSPN = @GNULIB_MBSCSPN@ GNULIB_MBSLEN = @GNULIB_MBSLEN@ GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@ GNULIB_MBSNLEN = @GNULIB_MBSNLEN@ GNULIB_MBSPBRK = @GNULIB_MBSPBRK@ GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@ GNULIB_MBSRCHR = @GNULIB_MBSRCHR@ GNULIB_MBSSEP = @GNULIB_MBSSEP@ GNULIB_MBSSPN = @GNULIB_MBSSPN@ GNULIB_MBSSTR = @GNULIB_MBSSTR@ GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@ GNULIB_MEMCHR = @GNULIB_MEMCHR@ GNULIB_MEMMEM = @GNULIB_MEMMEM@ GNULIB_MEMPCPY = @GNULIB_MEMPCPY@ GNULIB_MEMRCHR = @GNULIB_MEMRCHR@ GNULIB_NONBLOCKING = @GNULIB_NONBLOCKING@ GNULIB_OPEN = @GNULIB_OPEN@ GNULIB_OPENAT = @GNULIB_OPENAT@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STPCPY = @GNULIB_STPCPY@ GNULIB_STPNCPY = @GNULIB_STPNCPY@ GNULIB_STRCASESTR = @GNULIB_STRCASESTR@ GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@ GNULIB_STRDUP = @GNULIB_STRDUP@ GNULIB_STRERROR = @GNULIB_STRERROR@ GNULIB_STRERROR_R = @GNULIB_STRERROR_R@ GNULIB_STRNCAT = @GNULIB_STRNCAT@ GNULIB_STRNDUP = @GNULIB_STRNDUP@ GNULIB_STRNLEN = @GNULIB_STRNLEN@ GNULIB_STRPBRK = @GNULIB_STRPBRK@ GNULIB_STRSEP = @GNULIB_STRSEP@ GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@ GNULIB_STRSTR = @GNULIB_STRSTR@ GNULIB_STRTOK_R = @GNULIB_STRTOK_R@ GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WRITE = @GNULIB_WRITE@ GREP = @GREP@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@ HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@ HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@ HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@ HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@ HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@ HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FCNTL = @HAVE_FCNTL@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FFSL = @HAVE_FFSL@ HAVE_FFSLL = @HAVE_FFSLL@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_INTTYPES_H = @HAVE_INTTYPES_H@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@ HAVE_MBSLEN = @HAVE_MBSLEN@ HAVE_MEMCHR = @HAVE_MEMCHR@ HAVE_MEMPCPY = @HAVE_MEMPCPY@ HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@ HAVE_OPENAT = @HAVE_OPENAT@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@ HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@ HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STDINT_H = @HAVE_STDINT_H@ HAVE_STPCPY = @HAVE_STPCPY@ HAVE_STPNCPY = @HAVE_STPNCPY@ HAVE_STRCASESTR = @HAVE_STRCASESTR@ HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ HAVE_STRPBRK = @HAVE_STRPBRK@ HAVE_STRSEP = @HAVE_STRSEP@ HAVE_STRVERSCMP = @HAVE_STRVERSCMP@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@ HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_H = @HAVE_WCHAR_H@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@ HELP2MAN = @HELP2MAN@ IMPORT = @IMPORT@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INKSCAPE = @INKSCAPE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MOC = @MOC@ NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@ NEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@ NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_ERRNO_H = @NEXT_ERRNO_H@ NEXT_FCNTL_H = @NEXT_FCNTL_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDINT_H = @NEXT_STDINT_H@ NEXT_STRING_H = @NEXT_STRING_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ 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@ PANDOC = @PANDOC@ PATH_SEPARATOR = @PATH_SEPARATOR@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@ QMAKE = @QMAKE@ QT_CFLAGS = @QT_CFLAGS@ QT_CPPFLAGS = @QT_CPPFLAGS@ QT_CXXFLAGS = @QT_CXXFLAGS@ QT_DEFINES = @QT_DEFINES@ QT_INCPATH = @QT_INCPATH@ QT_LDFLAGS = @QT_LDFLAGS@ QT_LFLAGS = @QT_LFLAGS@ QT_LIBS = @QT_LIBS@ QT_PATH = @QT_PATH@ QT_VERSION = @QT_VERSION@ QT_VERSION_MAJOR = @QT_VERSION_MAJOR@ RANLIB = @RANLIB@ RCC = @RCC@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FCNTL = @REPLACE_FCNTL@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MEMCHR = @REPLACE_MEMCHR@ REPLACE_MEMMEM = @REPLACE_MEMMEM@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_OPEN = @REPLACE_OPEN@ REPLACE_OPENAT = @REPLACE_OPENAT@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STPNCPY = @REPLACE_STPNCPY@ REPLACE_STRCASESTR = @REPLACE_STRCASESTR@ REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@ REPLACE_STRDUP = @REPLACE_STRDUP@ REPLACE_STRERROR = @REPLACE_STRERROR@ REPLACE_STRERROR_R = @REPLACE_STRERROR_R@ REPLACE_STRNCAT = @REPLACE_STRNCAT@ REPLACE_STRNDUP = @REPLACE_STRNDUP@ REPLACE_STRNLEN = @REPLACE_STRNLEN@ REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@ REPLACE_STRSTR = @REPLACE_STRSTR@ REPLACE_STRTOK_R = @REPLACE_STRTOK_R@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@ SIZE_T_SUFFIX = @SIZE_T_SUFFIX@ STDDEF_H = @STDDEF_H@ STDINT_H = @STDINT_H@ STRIP = @STRIP@ UIC = @UIC@ UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ 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@ ft_config = @ft_config@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ 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@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = $(FREETYPE_CPPFLAGS) noinst_LTLIBRARIES = \ libttfautohint.la \ libnumberset.la libnumberset_la_SOURCES = \ numberset.c numberset.h libttfautohint_la_SOURCES = \ ta.h \ tablue.c tablue.h \ tabytecode.c tabytecode.h \ tacvt.c \ tadsig.c \ tadummy.c tadummy.h \ taerror.c \ tafile.c \ tafont.c \ tafpgm.c \ tagasp.c \ tagloadr.c tagloadr.h \ taglobal.c taglobal.h \ taglyf.c \ tagpos.c \ tahints.c tahints.h \ tahmtx.c \ talatin.c talatin.h \ taloader.c taloader.h \ taloca.c \ tamaxp.c \ taname.c \ tapost.c \ taprep.c \ tasfnt.c \ tasort.c tasort.h \ tatables.c tatables.h \ tatime.c \ tattc.c \ tattf.c \ tatypes.h \ tawrtsys.h \ ttfautohint.c \ ttfautohint.h ttfautohint-errors.h ttfautohint-scripts.h libttfautohint_la_LIBADD = \ libnumberset.la BUILT_SOURCES = \ tablue.c tablue.h EXTRA_DIST = \ afblue.pl \ tablue.cin tablue.hin \ tablue.dat all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(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) --gnits lib/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnits lib/Makefile .PRECIOUS: 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__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 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): clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_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}; \ } libnumberset.la: $(libnumberset_la_OBJECTS) $(libnumberset_la_DEPENDENCIES) $(EXTRA_libnumberset_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libnumberset_la_OBJECTS) $(libnumberset_la_LIBADD) $(LIBS) libttfautohint.la: $(libttfautohint_la_OBJECTS) $(libttfautohint_la_DEPENDENCIES) $(EXTRA_libttfautohint_la_DEPENDENCIES) $(AM_V_CCLD)$(LINK) $(libttfautohint_la_OBJECTS) $(libttfautohint_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/numberset.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tablue.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tabytecode.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tacvt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tadsig.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tadummy.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taerror.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tafile.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tafont.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tafpgm.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tagasp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tagloadr.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taglobal.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taglyf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tagpos.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tahints.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tahmtx.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/talatin.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taloader.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taloca.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tamaxp.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taname.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tapost.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/taprep.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tasfnt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tasort.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tatables.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tatime.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tattc.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tattf.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohint.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(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-am 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" cscopelist: cscopelist-am 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 distdir: $(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: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(LTLIBRARIES) installdirs: install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \ mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags 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 -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: .MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \ clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \ ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags 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-compile \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am tablue.c: tablue.dat tablue.cin $(AM_V_GEN)rm -f $@-t $@ \ && perl afblue.pl $(srcdir)/tablue.dat \ < $(srcdir)/tablue.cin \ > $@-t \ && mv $@-t $@ tablue.h: tablue.dat tablue.hin $(AM_V_GEN)rm -f $@-t $@ \ && perl afblue.pl $(srcdir)/tablue.dat \ < $(srcdir)/tablue.hin \ > $@-t \ && mv $@-t $@ # 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: ttfautohint-0.97/lib/tagloadr.c0000644000175000001440000002523712076552172013466 00000000000000/* tagloadr.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `ftgloadr.c' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #include #include #include "tatypes.h" #include "tagloadr.h" /*************************************************************************/ /* */ /* The glyph loader is a simple object which is used to load a set of */ /* glyphs easily. It is critical for the correct loading of composites. */ /* */ /* Ideally, one can see it as a stack of abstract `glyph' objects. */ /* */ /* loader.base Is really the bottom of the stack. It describes a */ /* single glyph image made of the juxtaposition of */ /* several glyphs (those `in the stack'). */ /* */ /* loader.current Describes the top of the stack, on which a new */ /* glyph can be loaded. */ /* */ /* Rewind Clears the stack. */ /* Prepare Set up `loader.current' for addition of a new glyph */ /* image. */ /* Add Add the `current' glyph image to the `base' one, */ /* and prepare for another one. */ /* */ /*************************************************************************/ /* create a new glyph loader */ FT_Error TA_GlyphLoader_New(TA_GlyphLoader *aloader) { TA_GlyphLoader loader; loader = (TA_GlyphLoader)calloc(1, sizeof (TA_GlyphLoaderRec)); if (!loader) return FT_Err_Out_Of_Memory; *aloader = loader; return FT_Err_Ok; } /* rewind the glyph loader - reset counters to 0 */ void TA_GlyphLoader_Rewind(TA_GlyphLoader loader) { TA_GlyphLoad base = &loader->base; TA_GlyphLoad current = &loader->current; base->outline.n_points = 0; base->outline.n_contours = 0; base->num_subglyphs = 0; *current = *base; } /* reset the glyph loader, frees all allocated tables */ /* and starts from zero */ void TA_GlyphLoader_Reset(TA_GlyphLoader loader) { free(loader->base.outline.points); free(loader->base.outline.tags); free(loader->base.outline.contours); free(loader->base.extra_points); free(loader->base.subglyphs); loader->base.outline.points = NULL; loader->base.outline.tags = NULL; loader->base.outline.contours = NULL; loader->base.extra_points = NULL; loader->base.subglyphs = NULL; loader->base.extra_points2 = NULL; loader->max_points = 0; loader->max_contours = 0; loader->max_subglyphs = 0; TA_GlyphLoader_Rewind(loader); } /* delete a glyph loader */ void TA_GlyphLoader_Done(TA_GlyphLoader loader) { if (loader) { TA_GlyphLoader_Reset(loader); free(loader); } } /* re-adjust the `current' outline fields */ static void TA_GlyphLoader_Adjust_Points(TA_GlyphLoader loader) { FT_Outline* base = &loader->base.outline; FT_Outline* current = &loader->current.outline; current->points = base->points + base->n_points; current->tags = base->tags + base->n_points; current->contours = base->contours + base->n_contours; /* handle extra points table - if any */ if (loader->use_extra) { loader->current.extra_points = loader->base.extra_points + base->n_points; loader->current.extra_points2 = loader->base.extra_points2 + base->n_points; } } FT_Error TA_GlyphLoader_CreateExtra(TA_GlyphLoader loader) { loader->base.extra_points = (FT_Vector*)calloc(1, 2 * loader->max_points * sizeof (FT_Vector)); if (!loader->base.extra_points) return FT_Err_Out_Of_Memory; loader->use_extra = 1; loader->base.extra_points2 = loader->base.extra_points + loader->max_points; TA_GlyphLoader_Adjust_Points(loader); return FT_Err_Ok; } /* re-adjust the `current' subglyphs field */ static void TA_GlyphLoader_Adjust_Subglyphs(TA_GlyphLoader loader) { TA_GlyphLoad base = &loader->base; TA_GlyphLoad current = &loader->current; current->subglyphs = base->subglyphs + base->num_subglyphs; } /* ensure that we can add `n_points' and `n_contours' to our glyph -- */ /* this function reallocates its outline tables if necessary, */ /* but it DOESN'T change the number of points within the loader */ FT_Error TA_GlyphLoader_CheckPoints(TA_GlyphLoader loader, FT_UInt n_points, FT_UInt n_contours) { FT_Outline* base = &loader->base.outline; FT_Outline* current = &loader->current.outline; FT_Bool adjust = 0; FT_UInt new_max, old_max; /* check points & tags */ new_max = base->n_points + current->n_points + n_points; old_max = loader->max_points; if (new_max > old_max) { FT_Vector* points_new; char* tags_new; new_max = TA_PAD_CEIL(new_max, 8); if (new_max > FT_OUTLINE_POINTS_MAX) return FT_Err_Array_Too_Large; points_new = (FT_Vector*)realloc(base->points, new_max * sizeof (FT_Vector)); if (!points_new) return FT_Err_Out_Of_Memory; base->points = points_new; tags_new = (char*)realloc(base->tags, new_max * sizeof (char)); if (!tags_new) return FT_Err_Out_Of_Memory; base->tags = tags_new; if (loader->use_extra) { FT_Vector* extra_points_new; extra_points_new = (FT_Vector*)realloc(loader->base.extra_points, new_max * 2 * sizeof (FT_Vector)); if (!extra_points_new) return FT_Err_Out_Of_Memory; loader->base.extra_points = extra_points_new; memmove(loader->base.extra_points + new_max, loader->base.extra_points + old_max, old_max * sizeof (FT_Vector)); loader->base.extra_points2 = loader->base.extra_points + new_max; } adjust = 1; loader->max_points = new_max; } /* check contours */ old_max = loader->max_contours; new_max = base->n_contours + current->n_contours + n_contours; if (new_max > old_max) { short* contours_new; new_max = TA_PAD_CEIL(new_max, 4); if (new_max > FT_OUTLINE_CONTOURS_MAX) return FT_Err_Array_Too_Large; contours_new = (short*)realloc(base->contours, new_max * sizeof (short)); if (!contours_new) return FT_Err_Out_Of_Memory; base->contours = contours_new; adjust = 1; loader->max_contours = new_max; } if (adjust) TA_GlyphLoader_Adjust_Points(loader); return FT_Err_Ok; } /* ensure that we can add `n_subglyphs' to our glyph -- */ /* this function reallocates its subglyphs table if necessary, */ /* but it DOES NOT change the number of subglyphs within the loader */ FT_Error TA_GlyphLoader_CheckSubGlyphs(TA_GlyphLoader loader, FT_UInt n_subs) { FT_UInt new_max, old_max; TA_GlyphLoad base = &loader->base; TA_GlyphLoad current = &loader->current; new_max = base->num_subglyphs + current->num_subglyphs + n_subs; old_max = loader->max_subglyphs; if (new_max > old_max) { TA_SubGlyph subglyphs_new; new_max = TA_PAD_CEIL(new_max, 2); subglyphs_new = (TA_SubGlyph)realloc(base->subglyphs, new_max * sizeof (TA_SubGlyphRec)); if (!subglyphs_new) return FT_Err_Out_Of_Memory; base->subglyphs = subglyphs_new; loader->max_subglyphs = new_max; TA_GlyphLoader_Adjust_Subglyphs(loader); } return FT_Err_Ok; } /* prepare loader for the addition of a new glyph on top of the base one */ void TA_GlyphLoader_Prepare(TA_GlyphLoader loader) { TA_GlyphLoad current = &loader->current; current->outline.n_points = 0; current->outline.n_contours = 0; current->num_subglyphs = 0; TA_GlyphLoader_Adjust_Points (loader); TA_GlyphLoader_Adjust_Subglyphs(loader); } /* add current glyph to the base image -- and prepare for another */ void TA_GlyphLoader_Add(TA_GlyphLoader loader) { TA_GlyphLoad base; TA_GlyphLoad current; FT_UInt n_curr_contours; FT_UInt n_base_points; FT_UInt n; if (!loader) return; base = &loader->base; current = &loader->current; n_curr_contours = current->outline.n_contours; n_base_points = base->outline.n_points; base->outline.n_points = (short)(base->outline.n_points + current->outline.n_points); base->outline.n_contours = (short)(base->outline.n_contours + current->outline.n_contours); base->num_subglyphs += current->num_subglyphs; /* adjust contours count in newest outline */ for (n = 0; n < n_curr_contours; n++) current->outline.contours[n] = (short)(current->outline.contours[n] + n_base_points); /* prepare for another new glyph image */ TA_GlyphLoader_Prepare(loader); } FT_Error TA_GlyphLoader_CopyPoints(TA_GlyphLoader target, TA_GlyphLoader source) { FT_Error error; FT_UInt num_points = source->base.outline.n_points; FT_UInt num_contours = source->base.outline.n_contours; error = TA_GlyphLoader_CheckPoints(target, num_points, num_contours); if (!error) { FT_Outline* out = &target->base.outline; FT_Outline* in = &source->base.outline; memcpy(out->points, in->points, num_points * sizeof (FT_Vector)); memcpy(out->contours, in->contours, num_contours * sizeof (short)); memcpy(out->tags, in->tags, num_points * sizeof (char)); /* do we need to copy the extra points? */ if (target->use_extra && source->use_extra) { memcpy(target->base.extra_points, source->base.extra_points, num_points * sizeof (FT_Vector)); memcpy(target->base.extra_points2, source->base.extra_points2, num_points * sizeof (FT_Vector)); } out->n_points = (short)num_points; out->n_contours = (short)num_contours; TA_GlyphLoader_Adjust_Points(target); } return error; } /* end of tagloadr.c */ ttfautohint-0.97/lib/talatin.c0000644000175000001440000023074512235361427013325 00000000000000/* talatin.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `aflatin.c' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #include #include #include FT_ADVANCES_H #include FT_TRUETYPE_TABLES_H #include "taglobal.h" #include "talatin.h" #include "tasort.h" #ifdef TA_CONFIG_OPTION_USE_WARPER #include "tawarp.h" #endif #include /* find segments and links, compute all stem widths, and initialize */ /* standard width and height for the glyph with given charcode */ void ta_latin_metrics_init_widths(TA_LatinMetrics metrics, FT_Face face) { /* scan the array of segments in each direction */ TA_GlyphHintsRec hints[1]; TA_LOG_GLOBAL(("\n" "latin standard widths computation (script `%s')\n" "=================================================\n" "\n", ta_script_names[metrics->root.script_class->script])); ta_glyph_hints_init(hints); metrics->axis[TA_DIMENSION_HORZ].width_count = 0; metrics->axis[TA_DIMENSION_VERT].width_count = 0; { FT_Error error; FT_UInt glyph_index; int dim; TA_LatinMetricsRec dummy[1]; TA_Scaler scaler = &dummy->root.scaler; glyph_index = FT_Get_Char_Index( face, metrics->root.script_class->standard_char); if (glyph_index == 0) goto Exit; TA_LOG_GLOBAL(("standard character: U+%04lX (glyph index %d)\n", metrics->root.script_class->standard_char, glyph_index)); error = FT_Load_Glyph(face, glyph_index, FT_LOAD_NO_SCALE); if (error || face->glyph->outline.n_points <= 0) goto Exit; memset(dummy, 0, sizeof (TA_LatinMetricsRec)); dummy->units_per_em = metrics->units_per_em; scaler->x_scale = 0x10000L; scaler->y_scale = 0x10000L; scaler->x_delta = 0; scaler->y_delta = 0; scaler->face = face; scaler->render_mode = FT_RENDER_MODE_NORMAL; scaler->flags = 0; ta_glyph_hints_rescale(hints, (TA_ScriptMetrics)dummy); error = ta_glyph_hints_reload(hints, &face->glyph->outline); if (error) goto Exit; for (dim = 0; dim < TA_DIMENSION_MAX; dim++) { TA_LatinAxis axis = &metrics->axis[dim]; TA_AxisHints axhints = &hints->axis[dim]; TA_Segment seg, limit, link; FT_UInt num_widths = 0; error = ta_latin_hints_compute_segments(hints, (TA_Dimension)dim); if (error) goto Exit; ta_latin_hints_link_segments(hints, (TA_Dimension)dim); seg = axhints->segments; limit = seg + axhints->num_segments; for (; seg < limit; seg++) { link = seg->link; /* we only consider stem segments there! */ if (link && link->link == seg && link > seg) { FT_Pos dist; dist = seg->pos - link->pos; if (dist < 0) dist = -dist; if (num_widths < TA_LATIN_MAX_WIDTHS) axis->widths[num_widths++].org = dist; } } /* this also replaces multiple almost identical stem widths */ /* with a single one (the value 100 is heuristic) */ ta_sort_and_quantize_widths(&num_widths, axis->widths, dummy->units_per_em / 100); axis->width_count = num_widths; } Exit: for (dim = 0; dim < TA_DIMENSION_MAX; dim++) { TA_LatinAxis axis = &metrics->axis[dim]; FT_Pos stdw; stdw = (axis->width_count > 0) ? axis->widths[0].org : TA_LATIN_CONSTANT(metrics, 50); /* let's try 20% of the smallest width */ axis->edge_distance_threshold = stdw / 5; axis->standard_width = stdw; axis->extra_light = 0; #ifdef TA_DEBUG { FT_UInt i; TA_LOG_GLOBAL(("%s widths:\n", dim == TA_DIMENSION_VERT ? "horizontal" : "vertical")); TA_LOG_GLOBAL((" %d (standard)", axis->standard_width)); for (i = 1; i < axis->width_count; i++) TA_LOG_GLOBAL((" %d", axis->widths[i].org)); TA_LOG_GLOBAL(("\n")); } #endif } } TA_LOG_GLOBAL(("\n")); ta_glyph_hints_done(hints); } /* find all blue zones; flat segments give the reference points, */ /* round segments the overshoot positions */ static void ta_latin_metrics_init_blues(TA_LatinMetrics metrics, FT_Face face) { FT_Pos flats[TA_BLUE_STRING_MAX_LEN]; FT_Pos rounds[TA_BLUE_STRING_MAX_LEN]; FT_Int num_flats; FT_Int num_rounds; TA_LatinBlue blue; FT_Error error; TA_LatinAxis axis = &metrics->axis[TA_DIMENSION_VERT]; FT_Outline outline; TA_Blue_Stringset bss = metrics->root.script_class->blue_stringset; const TA_Blue_StringRec* bs = &ta_blue_stringsets[bss]; /* we walk over the blue character strings as specified in the */ /* script's entry in the `af_blue_stringset' array */ TA_LOG_GLOBAL(("latin blue zones computation\n" "============================\n" "\n")); for (; bs->string != TA_BLUE_STRING_MAX; bs++) { const char* p = &ta_blue_strings[bs->string]; FT_Pos* blue_ref; FT_Pos* blue_shoot; #ifdef TA_DEBUG { FT_Bool have_flag = 0; TA_LOG_GLOBAL(("blue zone %d", axis->blue_count)); if (bs->properties) { TA_LOG_GLOBAL((" (")); if (TA_LATIN_IS_TOP_BLUE(bs)) { TA_LOG_GLOBAL(("top")); have_flag = 1; } if (TA_LATIN_IS_X_HEIGHT_BLUE(bs)) { if (have_flag) TA_LOG_GLOBAL((", ")); TA_LOG_GLOBAL(("small top")); have_flag = 1; } if (TA_LATIN_IS_LONG_BLUE(bs)) { if (have_flag) TA_LOG_GLOBAL((", ")); TA_LOG_GLOBAL(("long")); } TA_LOG_GLOBAL((")")); } TA_LOG_GLOBAL((":\n")); } #endif /* TA_DEBUG */ num_flats = 0; num_rounds = 0; while (*p) { FT_ULong ch; FT_UInt glyph_index; FT_Pos best_y; /* same as points.y */ FT_Int best_point, best_contour_first, best_contour_last; FT_Vector* points; FT_Bool round = 0; GET_UTF8_CHAR(ch, p); /* load the character in the face -- skip unknown or empty ones */ glyph_index = FT_Get_Char_Index(face, ch); if (glyph_index == 0) { TA_LOG_GLOBAL((" U+%04lX unavailable\n", ch)); continue; } error = FT_Load_Glyph(face, glyph_index, FT_LOAD_NO_SCALE); outline = face->glyph->outline; if (error || outline.n_points <= 0) { TA_LOG_GLOBAL((" U+%04lX contains no outlines\n", ch)); continue; } /* now compute min or max point indices and coordinates */ points = outline.points; best_point = -1; best_y = 0; /* make compiler happy */ best_contour_first = 0; /* ditto */ best_contour_last = 0; /* ditto */ { FT_Int nn; FT_Int first = 0; FT_Int last = -1; for (nn = 0; nn < outline.n_contours; first = last + 1, nn++) { FT_Int old_best_point = best_point; FT_Int pp; last = outline.contours[nn]; /* avoid single-point contours since they are never rasterized; */ /* in some fonts, they correspond to mark attachment points */ /* that are way outside of the glyph's real outline */ if (last <= first) continue; if (TA_LATIN_IS_TOP_BLUE(bs)) { for (pp = first; pp <= last; pp++) if (best_point < 0 || points[pp].y > best_y) { best_point = pp; best_y = points[pp].y; } } else { for (pp = first; pp <= last; pp++) if (best_point < 0 || points[pp].y < best_y) { best_point = pp; best_y = points[pp].y; } } if (best_point != old_best_point) { best_contour_first = first; best_contour_last = last; } } } /* now check whether the point belongs to a straight or round */ /* segment; we first need to find in which contour the extremum */ /* lies, then inspect its previous and next points */ if (best_point >= 0) { FT_Pos best_x = points[best_point].x; FT_Int prev, next; FT_Int best_segment_first, best_segment_last; FT_Int best_on_point_first, best_on_point_last; FT_Pos dist; best_segment_first = best_point; best_segment_last = best_point; if (FT_CURVE_TAG(outline.tags[best_point]) == FT_CURVE_TAG_ON) { best_on_point_first = best_point; best_on_point_last = best_point; } else { best_on_point_first = -1; best_on_point_last = -1; } /* look for the previous and next points on the contour */ /* that are not on the same Y coordinate, then threshold */ /* the `closeness'... */ prev = best_point; next = prev; do { if (prev > best_contour_first) prev--; else prev = best_contour_last; dist = TA_ABS(points[prev].y - best_y); /* accept a small distance or a small angle (both values are */ /* heuristic; value 20 corresponds to approx. 2.9 degrees) */ if (dist > 5) if (TA_ABS(points[prev].x - best_x) <= 20 * dist) break; best_segment_first = prev; if (FT_CURVE_TAG(outline.tags[prev]) == FT_CURVE_TAG_ON) { best_on_point_first = prev; if (best_on_point_last < 0) best_on_point_last = prev; } } while (prev != best_point); do { if (next < best_contour_last) next++; else next = best_contour_first; dist = TA_ABS(points[next].y - best_y); if (dist > 5) if (TA_ABS(points[next].x - best_x) <= 20 * dist) break; best_segment_last = next; if (FT_CURVE_TAG(outline.tags[next]) == FT_CURVE_TAG_ON) { best_on_point_last = next; if (best_on_point_first < 0) best_on_point_first = next; } } while (next != best_point); if (TA_LATIN_IS_LONG_BLUE(bs)) { /* If this flag is set, we have an additional constraint to */ /* get the blue zone distance: Find a segment of the topmost */ /* (or bottommost) contour that is longer than a heuristic */ /* threshold. This ensures that small bumps in the outline */ /* are ignored (for example, the `vertical serifs' found in */ /* many Hebrew glyph designs). */ /* If this segment is long enough, we are done. Otherwise, */ /* search the segment next to the extremum that is long */ /* enough, has the same direction, and a not too large */ /* vertical distance from the extremum. Note that the */ /* algorithm doesn't check whether the found segment is */ /* actually the one (vertically) nearest to the extremum. */ /* heuristic threshold value */ FT_Pos length_threshold = metrics->units_per_em / 25; dist = TA_ABS(points[best_segment_last].x - points[best_segment_first].x); if (dist < length_threshold && best_segment_last - best_segment_first + 2 <= best_contour_last - best_contour_first) { /* heuristic threshold value */ FT_Pos height_threshold = metrics->units_per_em / 4; FT_Int first; FT_Int last; FT_Bool hit; FT_Bool left2right; /* compute direction */ prev = best_point; do { if (prev > best_contour_first) prev--; else prev = best_contour_last; if (points[prev].x != best_x) break; } while (prev != best_point); /* skip glyph for the degenerate case */ if (prev == best_point) continue; left2right = FT_BOOL(points[prev].x < points[best_point].x); first = best_segment_last; last = first; hit = 0; do { FT_Bool l2r; FT_Pos d; FT_Int p_first, p_last; if (!hit) { /* no hit; adjust first point */ first = last; /* also adjust first and last on point */ if (FT_CURVE_TAG(outline.tags[first]) == FT_CURVE_TAG_ON) { p_first = first; p_last = first; } else { p_first = -1; p_last = -1; } hit = 1; } if (last < best_contour_last) last++; else last = best_contour_first; if (TA_ABS(best_y - points[first].y) > height_threshold) { /* vertical distance too large */ hit = 0; continue; } /* same test as above */ dist = TA_ABS(points[last].y - points[first].y); if (dist > 5) if (TA_ABS(points[last].x - points[first].x) <= 20 * dist) { hit = 0; continue; } if (FT_CURVE_TAG(outline.tags[last]) == FT_CURVE_TAG_ON) { p_last = last; if (p_first < 0) p_first = last; } l2r = FT_BOOL(points[first].x < points[last].x); d = TA_ABS(points[last].x - points[first].x); if (l2r == left2right && d >= length_threshold) { /* all constraints are met; update segment after finding */ /* its end */ do { if (last < best_contour_last) last++; else last = best_contour_first; d = TA_ABS(points[last].y - points[first].y); if (d > 5) if (TA_ABS(points[next].x - points[first].x) <= 20 * dist) { last--; break; } p_last = last; if (FT_CURVE_TAG(outline.tags[last]) == FT_CURVE_TAG_ON) { p_last = last; if (p_first < 0) p_first = last; } } while (last != best_segment_first); best_y = points[first].y; best_segment_first = first; best_segment_last = last; best_on_point_first = p_first; best_on_point_last = p_last; break; } } while (last != best_segment_first); } } TA_LOG_GLOBAL((" U+%04lX: best_y = %5ld", ch, best_y)); /* * now set the `round' flag depending on the segment's kind: * * - if the horizontal distance between the first and last * `on' point is larger than upem/8 (value 8 is heuristic) * we have a flat segment * - if either the first or the last point of the segment is * an `off' point, the segment is round, otherwise it is * flat */ if (best_on_point_first >= 0 && best_on_point_last >= 0 && (FT_UInt)(TA_ABS(points[best_on_point_last].x - points[best_on_point_first].x)) > metrics->units_per_em / 8) round = 0; else round = FT_BOOL(FT_CURVE_TAG(outline.tags[best_segment_first]) != FT_CURVE_TAG_ON || FT_CURVE_TAG(outline.tags[best_segment_last]) != FT_CURVE_TAG_ON); TA_LOG_GLOBAL((" (%s)\n", round ? "round" : "flat")); } if (round) rounds[num_rounds++] = best_y; else flats[num_flats++] = best_y; } if (num_flats == 0 && num_rounds == 0) { /* we couldn't find a single glyph to compute this blue zone, */ /* we will simply ignore it then */ TA_LOG_GLOBAL((" empty\n")); continue; } /* we have computed the contents of the `rounds' and `flats' tables, */ /* now determine the reference and overshoot position of the blue -- */ /* we simply take the median value after a simple sort */ ta_sort_pos(num_rounds, rounds); ta_sort_pos(num_flats, flats); blue = &axis->blues[axis->blue_count]; blue_ref = &blue->ref.org; blue_shoot = &blue->shoot.org; axis->blue_count++; if (num_flats == 0) { *blue_ref = *blue_shoot = rounds[num_rounds / 2]; } else if (num_rounds == 0) { *blue_ref = *blue_shoot = flats[num_flats / 2]; } else { *blue_ref = flats[num_flats / 2]; *blue_shoot = rounds[num_rounds / 2]; } /* there are sometimes problems if the overshoot position of top */ /* zones is under its reference position, or the opposite for bottom */ /* zones; we must thus check everything there and correct the errors */ if (*blue_shoot != *blue_ref) { FT_Pos ref = *blue_ref; FT_Pos shoot = *blue_shoot; FT_Bool over_ref = FT_BOOL(shoot > ref); if (TA_LATIN_IS_TOP_BLUE(bs) ^ over_ref) { *blue_ref = *blue_shoot = (shoot + ref) / 2; TA_LOG_GLOBAL((" [overshoot smaller than reference," " taking mean value]\n")); } } blue->flags = 0; if (TA_LATIN_IS_TOP_BLUE(bs)) blue->flags |= TA_LATIN_BLUE_TOP; /* the following flag is used later to adjust the y and x scales */ /* in order to optimize the pixel grid alignment */ /* of the top of small letters */ if (TA_LATIN_IS_X_HEIGHT_BLUE(bs)) blue->flags |= TA_LATIN_BLUE_ADJUSTMENT; TA_LOG_GLOBAL((" -> reference = %ld\n" " overshoot = %ld\n", *blue_ref, *blue_shoot)); } /* add two blue zones for usWinAscent and usWinDescent */ /* just in case the above algorithm has missed them -- */ /* Windows cuts off everything outside of those two values */ { TT_OS2* os2; os2 = (TT_OS2*)FT_Get_Sfnt_Table(face, ft_sfnt_os2); if (os2) { blue = &axis->blues[axis->blue_count]; blue->flags = TA_LATIN_BLUE_TOP | TA_LATIN_BLUE_ACTIVE; blue->ref.org = blue->shoot.org = os2->usWinAscent; TA_LOG_GLOBAL(("artificial blue zone for usWinAscent:\n" " -> reference = %ld\n" " overshoot = %ld\n", blue->ref.org, blue->shoot.org)); blue = &axis->blues[axis->blue_count + 1]; blue->flags = TA_LATIN_BLUE_ACTIVE; blue->ref.org = blue->shoot.org = -os2->usWinDescent; TA_LOG_GLOBAL(("artificial blue zone for usWinDescent:\n" " -> reference = %ld\n" " overshoot = %ld\n", blue->ref.org, blue->shoot.org)); } else { blue = &axis->blues[axis->blue_count]; blue->flags = blue->ref.org = blue->shoot.org = 0; blue = &axis->blues[axis->blue_count + 1]; blue->flags = blue->ref.org = blue->shoot.org = 0; } } TA_LOG_GLOBAL(("\n")); return; } /* check whether all ASCII digits have the same advance width */ void ta_latin_metrics_check_digits(TA_LatinMetrics metrics, FT_Face face) { FT_UInt i; FT_Bool started = 0, same_width = 1; FT_Fixed advance, old_advance = 0; /* digit `0' is 0x30 in all supported charmaps */ for (i = 0x30; i <= 0x39; i++) { FT_UInt glyph_index; glyph_index = FT_Get_Char_Index(face, i); if (glyph_index == 0) continue; if (FT_Get_Advance(face, glyph_index, FT_LOAD_NO_SCALE | FT_LOAD_NO_HINTING | FT_LOAD_IGNORE_TRANSFORM, &advance)) continue; if (started) { if (advance != old_advance) { same_width = 0; break; } } else { old_advance = advance; started = 1; } } metrics->root.digits_have_same_width = same_width; } /* initialize global metrics */ FT_Error ta_latin_metrics_init(TA_LatinMetrics metrics, FT_Face face) { FT_CharMap oldmap = face->charmap; metrics->units_per_em = face->units_per_EM; if (!FT_Select_Charmap(face, FT_ENCODING_UNICODE)) { ta_latin_metrics_init_widths(metrics, face); ta_latin_metrics_init_blues(metrics, face); ta_latin_metrics_check_digits(metrics, face); } FT_Set_Charmap(face, oldmap); return FT_Err_Ok; } /* adjust scaling value, then scale and shift widths */ /* and blue zones (if applicable) for given dimension */ static void ta_latin_metrics_scale_dim(TA_LatinMetrics metrics, TA_Scaler scaler, TA_Dimension dim) { FT_Fixed scale; FT_Pos delta; TA_LatinAxis axis; FT_UInt ppem; FT_UInt nn; ppem = metrics->root.scaler.face->size->metrics.x_ppem; if (dim == TA_DIMENSION_HORZ) { scale = scaler->x_scale; delta = scaler->x_delta; } else { scale = scaler->y_scale; delta = scaler->y_delta; } axis = &metrics->axis[dim]; if (axis->org_scale == scale && axis->org_delta == delta) return; axis->org_scale = scale; axis->org_delta = delta; /* correct Y scale to optimize the alignment of the top of */ /* small letters to the pixel grid */ /* (if we do x-height snapping for this ppem value) */ if (!number_set_is_element( metrics->root.globals->font->x_height_snapping_exceptions, ppem)) { TA_LatinAxis Axis = &metrics->axis[TA_DIMENSION_VERT]; TA_LatinBlue blue = NULL; for (nn = 0; nn < Axis->blue_count; nn++) { if (Axis->blues[nn].flags & TA_LATIN_BLUE_ADJUSTMENT) { blue = &Axis->blues[nn]; break; } } if (blue) { FT_Pos scaled; FT_Pos threshold; FT_Pos fitted; FT_UInt limit; scaled = FT_MulFix(blue->shoot.org, scaler->y_scale); limit = metrics->root.globals->increase_x_height; threshold = 40; /* if the `increase-x-height' property is active, */ /* we round up much more often */ if (limit && ppem <= limit && ppem >= TA_PROP_INCREASE_X_HEIGHT_MIN) threshold = 52; fitted = (scaled + threshold) & ~63; if (scaled != fitted) { if (dim == TA_DIMENSION_VERT) { scale = FT_MulDiv(scale, fitted, scaled); TA_LOG_GLOBAL(( "ta_latin_metrics_scale_dim:" " x height alignment (script `%s'):\n" " " " vertical scaling changed from %.4f to %.4f (by %d%%)\n" "\n", ta_script_names[metrics->root.script_class->script], axis->org_scale / 65536.0, scale / 65536.0, (fitted - scaled) * 100 / scaled)); } } } } axis->scale = scale; axis->delta = delta; if (dim == TA_DIMENSION_HORZ) { metrics->root.scaler.x_scale = scale; metrics->root.scaler.x_delta = delta; } else { metrics->root.scaler.y_scale = scale; metrics->root.scaler.y_delta = delta; } TA_LOG_GLOBAL(("%s widths (script `%s')\n", dim == TA_DIMENSION_HORZ ? "horizontal" : "vertical", ta_script_names[metrics->root.script_class->script])); /* scale the widths */ for (nn = 0; nn < axis->width_count; nn++) { TA_Width width = axis->widths + nn; width->cur = FT_MulFix(width->org, scale); width->fit = width->cur; TA_LOG_GLOBAL((" %d scaled to %.2f\n", width->org, width->cur / 64.0)); } TA_LOG_GLOBAL(("\n")); /* an extra-light axis corresponds to a standard width that is */ /* smaller than 5/8 pixels */ axis->extra_light = (FT_Bool)(FT_MulFix(axis->standard_width, scale) < 32 + 8); #ifdef TA_DEBUG if (axis->extra_light) TA_LOG_GLOBAL(("`%s' script is extra light (at current resolution)\n" "\n", ta_script_names[metrics->root.script_class->script])); #endif if (dim == TA_DIMENSION_VERT) { TA_LOG_GLOBAL(("blue zones (script `%s')\n", ta_script_names[metrics->root.script_class->script])); /* scale the blue zones */ for (nn = 0; nn < axis->blue_count; nn++) { TA_LatinBlue blue = &axis->blues[nn]; FT_Pos dist; blue->ref.cur = FT_MulFix(blue->ref.org, scale) + delta; blue->ref.fit = blue->ref.cur; blue->shoot.cur = FT_MulFix(blue->shoot.org, scale) + delta; blue->shoot.fit = blue->shoot.cur; blue->flags &= ~TA_LATIN_BLUE_ACTIVE; /* a blue zone is only active if it is less than 3/4 pixels tall */ dist = FT_MulFix(blue->ref.org - blue->shoot.org, scale); if (dist <= 48 && dist >= -48) { #if 0 FT_Pos delta1; #endif FT_Pos delta2; /* use discrete values for blue zone widths */ #if 0 /* generic, original code */ delta1 = blue->shoot.org - blue->ref.org; delta2 = delta1; if (delta1 < 0) delta2 = -delta2; delta2 = FT_MulFix(delta2, scale); if (delta2 < 32) delta2 = 0; else if (delta2 < 64) delta2 = 32 + (((delta2 - 32) + 16) & ~31); else delta2 = TA_PIX_ROUND(delta2); if (delta1 < 0) delta2 = -delta2; blue->ref.fit = TA_PIX_ROUND(blue->ref.cur); blue->shoot.fit = blue->ref.fit + delta2; #else /* simplified version due to abs(dist) <= 48 */ delta2 = dist; if (dist < 0) delta2 = -delta2; if (delta2 < 32) delta2 = 0; else if (delta2 < 48) delta2 = 32; else delta2 = 64; if (dist < 0) delta2 = -delta2; blue->ref.fit = TA_PIX_ROUND(blue->ref.cur); blue->shoot.fit = blue->ref.fit - delta2; #endif blue->flags |= TA_LATIN_BLUE_ACTIVE; TA_LOG_GLOBAL((" reference %d: %d scaled to %.2f%s\n" " overshoot %d: %d scaled to %.2f%s\n", nn, blue->ref.org, blue->ref.fit / 64.0, blue->flags & TA_LATIN_BLUE_ACTIVE ? "" : " (inactive)", nn, blue->shoot.org, blue->shoot.fit / 64.0, blue->flags & TA_LATIN_BLUE_ACTIVE ? "" : " (inactive)")); } } /* the last two artificial blue zones are to be scaled */ /* with uncorrected scaling values */ { TA_LatinAxis a = &metrics->axis[TA_DIMENSION_VERT]; TA_LatinBlue b; b = &a->blues[a->blue_count]; b->ref.cur = b->ref.fit = b->shoot.cur = b->shoot.fit = FT_MulFix(b->ref.org, a->org_scale) + delta; TA_LOG_GLOBAL((" reference %d: %d scaled to %.2f (artificial)\n" " overshoot %d: %d scaled to %.2f (artificial)\n", a->blue_count, b->ref.org, b->ref.fit / 64.0, a->blue_count, b->shoot.org, b->shoot.fit / 64.0)); b = &a->blues[a->blue_count + 1]; b->ref.cur = b->ref.fit = b->shoot.cur = b->shoot.fit = FT_MulFix(b->ref.org, a->org_scale) + delta; TA_LOG_GLOBAL((" reference %d: %d scaled to %.2f (artificial)\n" " overshoot %d: %d scaled to %.2f (artificial)\n", a->blue_count + 1, b->ref.org, b->ref.fit / 64.0, a->blue_count + 1, b->shoot.org, b->shoot.fit / 64.0)); } TA_LOG_GLOBAL(("\n")); } } /* scale global values in both directions */ void ta_latin_metrics_scale(TA_LatinMetrics metrics, TA_Scaler scaler) { metrics->root.scaler.render_mode = scaler->render_mode; metrics->root.scaler.face = scaler->face; metrics->root.scaler.flags = scaler->flags; ta_latin_metrics_scale_dim(metrics, scaler, TA_DIMENSION_HORZ); ta_latin_metrics_scale_dim(metrics, scaler, TA_DIMENSION_VERT); } /* walk over all contours and compute its segments */ FT_Error ta_latin_hints_compute_segments(TA_GlyphHints hints, TA_Dimension dim) { TA_AxisHints axis = &hints->axis[dim]; FT_Error error = FT_Err_Ok; TA_Segment segment = NULL; TA_SegmentRec seg0; TA_Point* contour = hints->contours; TA_Point* contour_limit = contour + hints->num_contours; TA_Direction major_dir, segment_dir; memset(&seg0, 0, sizeof (TA_SegmentRec)); seg0.score = 32000; seg0.flags = TA_EDGE_NORMAL; major_dir = (TA_Direction)TA_ABS(axis->major_dir); segment_dir = major_dir; axis->num_segments = 0; /* set up (u,v) in each point */ if (dim == TA_DIMENSION_HORZ) { TA_Point point = hints->points; TA_Point limit = point + hints->num_points; for (; point < limit; point++) { point->u = point->fx; point->v = point->fy; } } else { TA_Point point = hints->points; TA_Point limit = point + hints->num_points; for (; point < limit; point++) { point->u = point->fy; point->v = point->fx; } } /* do each contour separately */ for (; contour < contour_limit; contour++) { TA_Point point = contour[0]; TA_Point last = point->prev; int on_edge = 0; FT_Pos min_pos = 32000; /* minimum segment pos != min_coord */ FT_Pos max_pos = -32000; /* maximum segment pos != max_coord */ FT_Bool passed; if (point == last) /* skip singletons -- just in case */ continue; if (TA_ABS(last->out_dir) == major_dir && TA_ABS(point->out_dir) == major_dir) { /* we are already on an edge, try to locate its start */ last = point; for (;;) { point = point->prev; if (TA_ABS(point->out_dir) != major_dir) { point = point->next; break; } if (point == last) break; } } last = point; passed = 0; for (;;) { FT_Pos u, v; if (on_edge) { u = point->u; if (u < min_pos) min_pos = u; if (u > max_pos) max_pos = u; if (point->out_dir != segment_dir || point == last) { /* we are just leaving an edge; record a new segment! */ segment->last = point; segment->pos = (FT_Short)((min_pos + max_pos) >> 1); /* a segment is round if either its first or last point */ /* is a control point */ if ((segment->first->flags | point->flags) & TA_FLAG_CONTROL) segment->flags |= TA_EDGE_ROUND; /* compute segment size */ min_pos = max_pos = point->v; v = segment->first->v; if (v < min_pos) min_pos = v; if (v > max_pos) max_pos = v; segment->min_coord = (FT_Short)min_pos; segment->max_coord = (FT_Short)max_pos; segment->height = (FT_Short)(segment->max_coord - segment->min_coord); on_edge = 0; segment = NULL; /* fall through */ } } /* now exit if we are at the start/end point */ if (point == last) { if (passed) break; passed = 1; } if (!on_edge && TA_ABS(point->out_dir) == major_dir) { /* this is the start of a new segment! */ segment_dir = (TA_Direction)point->out_dir; /* clear all segment fields */ error = ta_axis_hints_new_segment(axis, &segment); if (error) goto Exit; segment[0] = seg0; segment->dir = (FT_Char)segment_dir; min_pos = max_pos = point->u; segment->first = point; segment->last = point; on_edge = 1; } point = point->next; } } /* contours */ /* now slightly increase the height of segments if this makes sense -- */ /* this is used to better detect and ignore serifs */ { TA_Segment segments = axis->segments; TA_Segment segments_end = segments + axis->num_segments; for (segment = segments; segment < segments_end; segment++) { TA_Point first = segment->first; TA_Point last = segment->last; FT_Pos first_v = first->v; FT_Pos last_v = last->v; if (first == last) continue; if (first_v < last_v) { TA_Point p; p = first->prev; if (p->v < first_v) segment->height = (FT_Short)(segment->height + ((first_v - p->v) >> 1)); p = last->next; if (p->v > last_v) segment->height = (FT_Short)(segment->height + ((p->v - last_v) >> 1)); } else { TA_Point p; p = first->prev; if (p->v > first_v) segment->height = (FT_Short)(segment->height + ((p->v - first_v) >> 1)); p = last->next; if (p->v < last_v) segment->height = (FT_Short)(segment->height + ((last_v - p->v) >> 1)); } } } Exit: return error; } /* link segments to form stems and serifs */ void ta_latin_hints_link_segments(TA_GlyphHints hints, TA_Dimension dim) { TA_AxisHints axis = &hints->axis[dim]; TA_Segment segments = axis->segments; TA_Segment segment_limit = segments + axis->num_segments; FT_Pos len_threshold, len_score; TA_Segment seg1, seg2; len_threshold = TA_LATIN_CONSTANT(hints->metrics, 8); if (len_threshold == 0) len_threshold = 1; len_score = TA_LATIN_CONSTANT(hints->metrics, 6000); /* now compare each segment to the others */ for (seg1 = segments; seg1 < segment_limit; seg1++) { /* the fake segments are introduced to hint the metrics -- */ /* we must never link them to anything */ if (seg1->dir != axis->major_dir || seg1->first == seg1->last) continue; /* search for stems having opposite directions, */ /* with seg1 to the `left' of seg2 */ for (seg2 = segments; seg2 < segment_limit; seg2++) { FT_Pos pos1 = seg1->pos; FT_Pos pos2 = seg2->pos; if (seg1->dir + seg2->dir == 0 && pos2 > pos1) { /* compute distance between the two segments */ FT_Pos dist = pos2 - pos1; FT_Pos min = seg1->min_coord; FT_Pos max = seg1->max_coord; FT_Pos len, score; if (min < seg2->min_coord) min = seg2->min_coord; if (max > seg2->max_coord) max = seg2->max_coord; /* compute maximum coordinate difference of the two segments */ len = max - min; if (len >= len_threshold) { /* small coordinate differences cause a higher score, and */ /* segments with a greater distance cause a higher score also */ score = dist + len_score / len; /* and we search for the smallest score */ /* of the sum of the two values */ if (score < seg1->score) { seg1->score = score; seg1->link = seg2; } if (score < seg2->score) { seg2->score = score; seg2->link = seg1; } } } } } /* now compute the `serif' segments, cf. explanations in `tahints.h' */ for (seg1 = segments; seg1 < segment_limit; seg1++) { seg2 = seg1->link; if (seg2) { if (seg2->link != seg1) { seg1->link = 0; seg1->serif = seg2->link; } } } } /* link segments to edges, using feature analysis for selection */ FT_Error ta_latin_hints_compute_edges(TA_GlyphHints hints, TA_Dimension dim) { TA_AxisHints axis = &hints->axis[dim]; FT_Error error = FT_Err_Ok; TA_LatinAxis laxis = &((TA_LatinMetrics)hints->metrics)->axis[dim]; TA_Segment segments = axis->segments; TA_Segment segment_limit = segments + axis->num_segments; TA_Segment seg; #if 0 TA_Direction up_dir; #endif FT_Fixed scale; FT_Pos edge_distance_threshold; FT_Pos segment_length_threshold; axis->num_edges = 0; scale = (dim == TA_DIMENSION_HORZ) ? hints->x_scale : hints->y_scale; #if 0 up_dir = (dim == TA_DIMENSION_HORZ) ? TA_DIR_UP : TA_DIR_RIGHT; #endif /* we ignore all segments that are less than 1 pixel in length */ /* to avoid many problems with serif fonts */ /* (the corresponding threshold is computed in font units) */ if (dim == TA_DIMENSION_HORZ) segment_length_threshold = FT_DivFix(64, hints->y_scale); else segment_length_threshold = 0; /********************************************************************/ /* */ /* We begin by generating a sorted table of edges for the current */ /* direction. To do so, we simply scan each segment and try to find */ /* an edge in our table that corresponds to its position. */ /* */ /* If no edge is found, we create and insert a new edge in the */ /* sorted table. Otherwise, we simply add the segment to the edge's */ /* list which gets processed in the second step to compute the */ /* edge's properties. */ /* */ /* Note that the table of edges is sorted along the segment/edge */ /* position. */ /* */ /********************************************************************/ /* assure that edge distance threshold is at most 0.25px */ edge_distance_threshold = FT_MulFix(laxis->edge_distance_threshold, scale); if (edge_distance_threshold > 64 / 4) edge_distance_threshold = 64 / 4; edge_distance_threshold = FT_DivFix(edge_distance_threshold, scale); for (seg = segments; seg < segment_limit; seg++) { TA_Edge found = NULL; FT_Int ee; if (seg->height < segment_length_threshold) continue; /* a special case for serif edges: */ /* if they are smaller than 1.5 pixels we ignore them */ if (seg->serif && 2 * seg->height < 3 * segment_length_threshold) continue; /* look for an edge corresponding to the segment */ for (ee = 0; ee < axis->num_edges; ee++) { TA_Edge edge = axis->edges + ee; FT_Pos dist; dist = seg->pos - edge->fpos; if (dist < 0) dist = -dist; if (dist < edge_distance_threshold && edge->dir == seg->dir) { found = edge; break; } } if (!found) { TA_Edge edge; /* insert a new edge in the list and sort according to the position */ error = ta_axis_hints_new_edge(axis, seg->pos, (TA_Direction)seg->dir, &edge); if (error) goto Exit; /* add the segment to the new edge's list */ memset(edge, 0, sizeof (TA_EdgeRec)); edge->first = seg; edge->last = seg; edge->dir = seg->dir; edge->fpos = seg->pos; edge->opos = FT_MulFix(seg->pos, scale); edge->pos = edge->opos; seg->edge_next = seg; } else { /* if an edge was found, simply add the segment to the edge's list */ seg->edge_next = found->first; found->last->edge_next = seg; found->last = seg; } } /*****************************************************************/ /* */ /* Good, we now compute each edge's properties according to */ /* the segments found on its position. Basically, these are */ /* */ /* - the edge's main direction */ /* - stem edge, serif edge or both (which defaults to stem then) */ /* - rounded edge, straight or both (which defaults to straight) */ /* - link for edge */ /* */ /*****************************************************************/ /* first of all, set the `edge' field in each segment -- this is */ /* required in order to compute edge links */ /* note that removing this loop and setting the `edge' field of each */ /* segment directly in the code above slows down execution speed for */ /* some reasons on platforms like the Sun */ { TA_Edge edges = axis->edges; TA_Edge edge_limit = edges + axis->num_edges; TA_Edge edge; for (edge = edges; edge < edge_limit; edge++) { seg = edge->first; if (seg) do { seg->edge = edge; seg = seg->edge_next; } while (seg != edge->first); } /* now compute each edge properties */ for (edge = edges; edge < edge_limit; edge++) { FT_Int is_round = 0; /* does it contain round segments? */ FT_Int is_straight = 0; /* does it contain straight segments? */ #if 0 FT_Pos ups = 0; /* number of upwards segments */ FT_Pos downs = 0; /* number of downwards segments */ #endif seg = edge->first; do { FT_Bool is_serif; /* check for roundness of segment */ if (seg->flags & TA_EDGE_ROUND) is_round++; else is_straight++; #if 0 /* check for segment direction */ if (seg->dir == up_dir) ups += seg->max_coord - seg->min_coord; else downs += seg->max_coord - seg->min_coord; #endif /* check for links -- */ /* if seg->serif is set, then seg->link must be ignored */ is_serif = (FT_Bool)(seg->serif && seg->serif->edge && seg->serif->edge != edge); if ((seg->link && seg->link->edge != NULL) || is_serif) { TA_Edge edge2; TA_Segment seg2; edge2 = edge->link; seg2 = seg->link; if (is_serif) { seg2 = seg->serif; edge2 = edge->serif; } if (edge2) { FT_Pos edge_delta; FT_Pos seg_delta; edge_delta = edge->fpos - edge2->fpos; if (edge_delta < 0) edge_delta = -edge_delta; seg_delta = seg->pos - seg2->pos; if (seg_delta < 0) seg_delta = -seg_delta; if (seg_delta < edge_delta) edge2 = seg2->edge; } else edge2 = seg2->edge; if (is_serif) { edge->serif = edge2; edge2->flags |= TA_EDGE_SERIF; } else edge->link = edge2; } seg = seg->edge_next; } while (seg != edge->first); /* set the round/straight flags */ edge->flags = TA_EDGE_NORMAL; if (is_round > 0 && is_round >= is_straight) edge->flags |= TA_EDGE_ROUND; #if 0 /* set the edge's main direction */ edge->dir = TA_DIR_NONE; if (ups > downs) edge->dir = (FT_Char)up_dir; else if (ups < downs) edge->dir = (FT_Char)-up_dir; else if (ups == downs) edge->dir = 0; /* both up and down! */ #endif /* get rid of serifs if link is set */ /* XXX: this gets rid of many unpleasant artefacts! */ /* example: the `c' in cour.pfa at size 13 */ if (edge->serif && edge->link) edge->serif = 0; } } Exit: return error; } /* detect segments and edges for given dimension */ FT_Error ta_latin_hints_detect_features(TA_GlyphHints hints, TA_Dimension dim) { FT_Error error; error = ta_latin_hints_compute_segments(hints, dim); if (!error) { ta_latin_hints_link_segments(hints, dim); error = ta_latin_hints_compute_edges(hints, dim); } return error; } /* compute all edges which lie within blue zones */ void ta_latin_hints_compute_blue_edges(TA_GlyphHints hints, TA_LatinMetrics metrics) { TA_AxisHints axis = &hints->axis[TA_DIMENSION_VERT]; TA_Edge edge = axis->edges; TA_Edge edge_limit = edge + axis->num_edges; TA_LatinAxis latin = &metrics->axis[TA_DIMENSION_VERT]; FT_Fixed scale = latin->scale; /* compute which blue zones are active, */ /* i.e. have their scaled size < 3/4 pixels */ /* for each horizontal edge search the blue zone which is closest */ for (; edge < edge_limit; edge++) { FT_UInt bb; TA_Width best_blue = NULL; FT_Pos best_dist; /* initial threshold */ FT_UInt best_blue_idx = 0; FT_Bool best_blue_is_shoot = 0; /* compute the initial threshold as a fraction of the EM size */ /* (the value 40 is heuristic) */ best_dist = FT_MulFix(metrics->units_per_em / 40, scale); /* assure a minimum distance of 0.5px */ if (best_dist > 64 / 2) best_dist = 64 / 2; /* this loop also handles the two extra blue zones */ /* for usWinAscent and usWinDescent */ /* if option `windows-compatibility' is set */ for (bb = 0; bb < latin->blue_count + (metrics->root.globals->font->windows_compatibility ? 2 : 0); bb++) { TA_LatinBlue blue = latin->blues + bb; FT_Bool is_top_blue, is_major_dir; /* skip inactive blue zones (i.e., those that are too large) */ if (!(blue->flags & TA_LATIN_BLUE_ACTIVE)) continue; /* if it is a top zone, check for right edges -- */ /* if it is a bottom zone, check for left edges */ is_top_blue = (FT_Byte)((blue->flags & TA_LATIN_BLUE_TOP) != 0); is_major_dir = FT_BOOL(edge->dir == axis->major_dir); /* if it is a top zone, the edge must be against the major */ /* direction; if it is a bottom zone, it must be in the major */ /* direction */ if (is_top_blue ^ is_major_dir) { FT_Pos dist; /* first of all, compare it to the reference position */ dist = edge->fpos - blue->ref.org; if (dist < 0) dist = -dist; dist = FT_MulFix(dist, scale); if (dist < best_dist) { best_dist = dist; best_blue = &blue->ref; best_blue_idx = bb; best_blue_is_shoot = 0; } /* now compare it to the overshoot position and check whether */ /* the edge is rounded, and whether the edge is over the */ /* reference position of a top zone, or under the reference */ /* position of a bottom zone */ if (edge->flags & TA_EDGE_ROUND && dist != 0) { FT_Bool is_under_ref = FT_BOOL(edge->fpos < blue->ref.org); if (is_top_blue ^ is_under_ref) { dist = edge->fpos - blue->shoot.org; if (dist < 0) dist = -dist; dist = FT_MulFix(dist, scale); if (dist < best_dist) { best_dist = dist; best_blue = &blue->shoot; best_blue_idx = bb; best_blue_is_shoot = 1; } } } } } if (best_blue) { edge->blue_edge = best_blue; edge->best_blue_idx = best_blue_idx; edge->best_blue_is_shoot = best_blue_is_shoot; } } } /* initalize hinting engine */ static FT_Error ta_latin_hints_init(TA_GlyphHints hints, TA_LatinMetrics metrics) { FT_Render_Mode mode; FT_UInt32 scaler_flags, other_flags; FT_Face face = metrics->root.scaler.face; ta_glyph_hints_rescale(hints, (TA_ScriptMetrics)metrics); /* correct x_scale and y_scale if needed, since they may have */ /* been modified by `ta_latin_metrics_scale_dim' above */ hints->x_scale = metrics->axis[TA_DIMENSION_HORZ].scale; hints->x_delta = metrics->axis[TA_DIMENSION_HORZ].delta; hints->y_scale = metrics->axis[TA_DIMENSION_VERT].scale; hints->y_delta = metrics->axis[TA_DIMENSION_VERT].delta; /* compute flags depending on render mode, etc. */ mode = metrics->root.scaler.render_mode; #if 0 /* #ifdef TA_CONFIG_OPTION_USE_WARPER */ if (mode == FT_RENDER_MODE_LCD || mode == FT_RENDER_MODE_LCD_V) metrics->root.scaler.render_mode = mode = FT_RENDER_MODE_NORMAL; #endif scaler_flags = hints->scaler_flags; other_flags = 0; /* we snap the width of vertical stems for the monochrome */ /* and horizontal LCD rendering targets only */ if (mode == FT_RENDER_MODE_MONO || mode == FT_RENDER_MODE_LCD) other_flags |= TA_LATIN_HINTS_HORZ_SNAP; /* we snap the width of horizontal stems for the monochrome */ /* and vertical LCD rendering targets only */ if (mode == FT_RENDER_MODE_MONO || mode == FT_RENDER_MODE_LCD_V) other_flags |= TA_LATIN_HINTS_VERT_SNAP; /* we adjust stems to full pixels only if we don't use the `light' mode */ if (mode != FT_RENDER_MODE_LIGHT) other_flags |= TA_LATIN_HINTS_STEM_ADJUST; if (mode == FT_RENDER_MODE_MONO) other_flags |= TA_LATIN_HINTS_MONO; /* in `light' hinting mode we disable horizontal hinting completely; */ /* we also do it if the face is italic */ if (mode == FT_RENDER_MODE_LIGHT || (face->style_flags & FT_STYLE_FLAG_ITALIC) != 0) scaler_flags |= TA_SCALER_FLAG_NO_HORIZONTAL; hints->scaler_flags = scaler_flags; hints->other_flags = other_flags; return FT_Err_Ok; } /* snap a given width in scaled coordinates to */ /* one of the current standard widths */ static FT_Pos ta_latin_snap_width(TA_Width widths, FT_Int count, FT_Pos width) { int n; FT_Pos best = 64 + 32 + 2; FT_Pos reference = width; FT_Pos scaled; for (n = 0; n < count; n++) { FT_Pos w; FT_Pos dist; w = widths[n].cur; dist = width - w; if (dist < 0) dist = -dist; if (dist < best) { best = dist; reference = w; } } scaled = TA_PIX_ROUND(reference); if (width >= reference) { if (width < scaled + 48) width = reference; } else { if (width > scaled - 48) width = reference; } return width; } /* compute the snapped width of a given stem, ignoring very thin ones */ /* there is a lot of voodoo in this function; changing the hard-coded */ /* parameters influence the whole hinting process */ static FT_Pos ta_latin_compute_stem_width(TA_GlyphHints hints, TA_Dimension dim, FT_Pos width, FT_Byte base_flags, FT_Byte stem_flags) { TA_LatinMetrics metrics = (TA_LatinMetrics) hints->metrics; TA_LatinAxis axis = &metrics->axis[dim]; FT_Pos dist = width; FT_Int sign = 0; FT_Int vertical = (dim == TA_DIMENSION_VERT); if (!TA_LATIN_HINTS_DO_STEM_ADJUST(hints) || axis->extra_light) return width; if (dist < 0) { dist = -width; sign = 1; } if ((vertical && !TA_LATIN_HINTS_DO_VERT_SNAP(hints)) || (!vertical && !TA_LATIN_HINTS_DO_HORZ_SNAP(hints))) { /* smooth hinting process: very lightly quantize the stem width */ /* leave the widths of serifs alone */ if ((stem_flags & TA_EDGE_SERIF) && vertical && (dist < 3 * 64)) goto Done_Width; else if (base_flags & TA_EDGE_ROUND) { if (dist < 80) dist = 64; } else if (dist < 56) dist = 56; if (axis->width_count > 0) { FT_Pos delta; /* compare to standard width */ delta = dist - axis->widths[0].cur; if (delta < 0) delta = -delta; if (delta < 40) { dist = axis->widths[0].cur; if (dist < 48) dist = 48; goto Done_Width; } if (dist < 3 * 64) { delta = dist & 63; dist &= -64; if (delta < 10) dist += delta; else if (delta < 32) dist += 10; else if (delta < 54) dist += 54; else dist += delta; } else dist = (dist + 32) & ~63; } } else { /* strong hinting process: snap the stem width to integer pixels */ FT_Pos org_dist = dist; dist = ta_latin_snap_width(axis->widths, axis->width_count, dist); if (vertical) { /* in the case of vertical hinting, */ /* always round the stem heights to integer pixels */ if (dist >= 64) dist = (dist + 16) & ~63; else dist = 64; } else { if (TA_LATIN_HINTS_DO_MONO(hints)) { /* monochrome horizontal hinting: */ /* snap widths to integer pixels with a different threshold */ if (dist < 64) dist = 64; else dist = (dist + 32) & ~63; } else { /* for horizontal anti-aliased hinting, we adopt a more subtle */ /* approach: we strengthen small stems, round stems whose size */ /* is between 1 and 2 pixels to an integer, otherwise nothing */ if (dist < 48) dist = (dist + 64) >> 1; else if (dist < 128) { /* we only round to an integer width if the corresponding */ /* distortion is less than 1/4 pixel -- otherwise, this */ /* makes everything worse since the diagonals, which are */ /* not hinted, appear a lot bolder or thinner than the */ /* vertical stems */ FT_Pos delta; dist = (dist + 22) & ~63; delta = dist - org_dist; if (delta < 0) delta = -delta; if (delta >= 16) { dist = org_dist; if (dist < 48) dist = (dist + 64) >> 1; } } else /* round otherwise to prevent color fringes in LCD mode */ dist = (dist + 32) & ~63; } } } Done_Width: if (sign) dist = -dist; return dist; } /* align one stem edge relative to the previous stem edge */ static void ta_latin_align_linked_edge(TA_GlyphHints hints, TA_Dimension dim, TA_Edge base_edge, TA_Edge stem_edge) { FT_Pos dist = stem_edge->opos - base_edge->opos; FT_Pos fitted_width = ta_latin_compute_stem_width( hints, dim, dist, base_edge->flags, stem_edge->flags); stem_edge->pos = base_edge->pos + fitted_width; TA_LOG((" LINK: edge %d (opos=%.2f) linked to %.2f," " dist was %.2f, now %.2f\n", stem_edge - hints->axis[dim].edges, stem_edge->opos / 64.0, stem_edge->pos / 64.0, dist / 64.0, fitted_width / 64.0)); if (hints->recorder) hints->recorder(ta_link, hints, dim, base_edge, stem_edge, NULL, NULL, NULL); } /* shift the coordinates of the `serif' edge by the same amount */ /* as the corresponding `base' edge has been moved already */ static void ta_latin_align_serif_edge(TA_GlyphHints hints, TA_Edge base, TA_Edge serif) { FT_UNUSED(hints); serif->pos = base->pos + (serif->opos - base->opos); } /* the main grid-fitting routine */ void ta_latin_hint_edges(TA_GlyphHints hints, TA_Dimension dim) { TA_AxisHints axis = &hints->axis[dim]; TA_Edge edges = axis->edges; TA_Edge edge_limit = edges + axis->num_edges; FT_PtrDist n_edges; TA_Edge edge; TA_Edge anchor = NULL; FT_Int has_serifs = 0; #ifdef TA_DEBUG FT_UInt num_actions = 0; #endif TA_LOG(("latin %s edge hinting (script `%s')\n", dim == TA_DIMENSION_VERT ? "horizontal" : "vertical", ta_script_names[hints->metrics->script_class->script])); /* we begin by aligning all stems relative to the blue zone if needed -- */ /* that's only for horizontal edges */ if (dim == TA_DIMENSION_VERT && TA_HINTS_DO_BLUES(hints)) { for (edge = edges; edge < edge_limit; edge++) { TA_Width blue; TA_Edge edge1, edge2; /* these edges form the stem to check */ if (edge->flags & TA_EDGE_DONE) continue; blue = edge->blue_edge; edge1 = NULL; edge2 = edge->link; if (blue) edge1 = edge; /* flip edges if the other stem is aligned to a blue zone */ else if (edge2 && edge2->blue_edge) { blue = edge2->blue_edge; edge1 = edge2; edge2 = edge; } if (!edge1) continue; #ifdef TA_DEBUG if (!anchor) TA_LOG((" BLUE_ANCHOR: edge %d (opos=%.2f) snapped to %.2f," " was %.2f (anchor=edge %d)\n", edge1 - edges, edge1->opos / 64.0, blue->fit / 64.0, edge1->pos / 64.0, edge - edges)); else TA_LOG((" BLUE: edge %d (opos=%.2f) snapped to %.2f, was %.2f\n", edge1 - edges, edge1->opos / 64.0, blue->fit / 64.0, edge1->pos / 64.0)); num_actions++; #endif edge1->pos = blue->fit; edge1->flags |= TA_EDGE_DONE; if (hints->recorder) { if (!anchor) hints->recorder(ta_blue_anchor, hints, dim, edge1, edge, NULL, NULL, NULL); else hints->recorder(ta_blue, hints, dim, edge1, NULL, NULL, NULL, NULL); } if (edge2 && !edge2->blue_edge) { ta_latin_align_linked_edge(hints, dim, edge1, edge2); edge2->flags |= TA_EDGE_DONE; #ifdef TA_DEBUG num_actions++; #endif } if (!anchor) anchor = edge; } } /* now we align all other stem edges, */ /* trying to maintain the relative order of stems in the glyph */ for (edge = edges; edge < edge_limit; edge++) { TA_Edge edge2; if (edge->flags & TA_EDGE_DONE) continue; /* skip all non-stem edges */ edge2 = edge->link; if (!edge2) { has_serifs++; continue; } /* now align the stem */ /* this should not happen, but it's better to be safe */ if (edge2->blue_edge) { TA_LOG((" ASSERTION FAILED for edge %d\n", edge2-edges)); ta_latin_align_linked_edge(hints, dim, edge2, edge); edge->flags |= TA_EDGE_DONE; #ifdef TA_DEBUG num_actions++; #endif continue; } if (!anchor) { /* if we reach this if clause, no stem has been aligned yet */ FT_Pos org_len, org_center, cur_len; FT_Pos cur_pos1, error1, error2, u_off, d_off; org_len = edge2->opos - edge->opos; cur_len = ta_latin_compute_stem_width(hints, dim, org_len, edge->flags, edge2->flags); /* some voodoo to specially round edges for small stem widths; */ /* the idea is to align the center of a stem, */ /* then shifting the stem edges to suitable positions */ if (cur_len <= 64) { /* width <= 1px */ u_off = 32; d_off = 32; } else { /* 1px < width < 1.5px */ u_off = 38; d_off = 26; } if (cur_len < 96) { org_center = edge->opos + (org_len >> 1); cur_pos1 = TA_PIX_ROUND(org_center); error1 = org_center - (cur_pos1 - u_off); if (error1 < 0) error1 = -error1; error2 = org_center - (cur_pos1 + d_off); if (error2 < 0) error2 = -error2; if (error1 < error2) cur_pos1 -= u_off; else cur_pos1 += d_off; edge->pos = cur_pos1 - cur_len / 2; edge2->pos = edge->pos + cur_len; } else edge->pos = TA_PIX_ROUND(edge->opos); anchor = edge; edge->flags |= TA_EDGE_DONE; TA_LOG((" ANCHOR: edge %d (opos=%.2f) and %d (opos=%.2f)" " snapped to %.2f and %.2f\n", edge - edges, edge->opos / 64.0, edge2 - edges, edge2->opos / 64.0, edge->pos / 64.0, edge2->pos / 64.0)); if (hints->recorder) hints->recorder(ta_anchor, hints, dim, edge, edge2, NULL, NULL, NULL); ta_latin_align_linked_edge(hints, dim, edge, edge2); #ifdef TA_DEBUG num_actions += 2; #endif } else { FT_Pos org_pos, org_len, org_center, cur_len; FT_Pos cur_pos1, cur_pos2, delta1, delta2; org_pos = anchor->pos + (edge->opos - anchor->opos); org_len = edge2->opos - edge->opos; org_center = org_pos + (org_len >> 1); cur_len = ta_latin_compute_stem_width(hints, dim, org_len, edge->flags, edge2->flags); if (edge2->flags & TA_EDGE_DONE) { TA_LOG((" ADJUST: edge %d (pos=%.2f) moved to %.2f\n", edge - edges, edge->pos / 64.0, (edge2->pos - cur_len) / 64.0)); edge->pos = edge2->pos - cur_len; if (hints->recorder) { TA_Edge bound = NULL; if (edge > edges) bound = &edge[-1]; hints->recorder(ta_adjust, hints, dim, edge, edge2, NULL, bound, NULL); } } else if (cur_len < 96) { FT_Pos u_off, d_off; cur_pos1 = TA_PIX_ROUND(org_center); if (cur_len <= 64) { u_off = 32; d_off = 32; } else { u_off = 38; d_off = 26; } delta1 = org_center - (cur_pos1 - u_off); if (delta1 < 0) delta1 = -delta1; delta2 = org_center - (cur_pos1 + d_off); if (delta2 < 0) delta2 = -delta2; if (delta1 < delta2) cur_pos1 -= u_off; else cur_pos1 += d_off; edge->pos = cur_pos1 - cur_len / 2; edge2->pos = cur_pos1 + cur_len / 2; TA_LOG((" STEM: edge %d (opos=%.2f) linked to %d (opos=%.2f)" " snapped to %.2f and %.2f\n", edge - edges, edge->opos / 64.0, edge2 - edges, edge2->opos / 64.0, edge->pos / 64.0, edge2->pos / 64.0)); if (hints->recorder) { TA_Edge bound = NULL; if (edge > edges) bound = &edge[-1]; hints->recorder(ta_stem, hints, dim, edge, edge2, NULL, bound, NULL); } } else { org_pos = anchor->pos + (edge->opos - anchor->opos); org_len = edge2->opos - edge->opos; org_center = org_pos + (org_len >> 1); cur_len = ta_latin_compute_stem_width(hints, dim, org_len, edge->flags, edge2->flags); cur_pos1 = TA_PIX_ROUND(org_pos); delta1 = cur_pos1 + (cur_len >> 1) - org_center; if (delta1 < 0) delta1 = -delta1; cur_pos2 = TA_PIX_ROUND(org_pos + org_len) - cur_len; delta2 = cur_pos2 + (cur_len >> 1) - org_center; if (delta2 < 0) delta2 = -delta2; edge->pos = (delta1 < delta2) ? cur_pos1 : cur_pos2; edge2->pos = edge->pos + cur_len; TA_LOG((" STEM: edge %d (opos=%.2f) linked to %d (opos=%.2f)" " snapped to %.2f and %.2f\n", edge - edges, edge->opos / 64.0, edge2 - edges, edge2->opos / 64.0, edge->pos / 64.0, edge2->pos / 64.0)); if (hints->recorder) { TA_Edge bound = NULL; if (edge > edges) bound = &edge[-1]; hints->recorder(ta_stem, hints, dim, edge, edge2, NULL, bound, NULL); } } #ifdef TA_DEBUG num_actions++; #endif edge->flags |= TA_EDGE_DONE; edge2->flags |= TA_EDGE_DONE; if (edge > edges && edge->pos < edge[-1].pos) { #ifdef TA_DEBUG TA_LOG((" BOUND: edge %d (pos=%.2f) moved to %.2f\n", edge - edges, edge->pos / 64.0, edge[-1].pos / 64.0)); num_actions++; #endif edge->pos = edge[-1].pos; if (hints->recorder) hints->recorder(ta_bound, hints, dim, edge, &edge[-1], NULL, NULL, NULL); } } } /* make sure that lowercase m's maintain their symmetry */ /* In general, lowercase m's have six vertical edges if they are sans */ /* serif, or twelve if they are with serifs. This implementation is */ /* based on that assumption, and seems to work very well with most */ /* faces. However, if for a certain face this assumption is not */ /* true, the m is just rendered like before. In addition, any stem */ /* correction will only be applied to symmetrical glyphs (even if the */ /* glyph is not an m), so the potential for unwanted distortion is */ /* relatively low. */ /* we don't handle horizontal edges since we can't easily assure that */ /* the third (lowest) stem aligns with the base line; it might end up */ /* one pixel higher or lower */ n_edges = edge_limit - edges; if (dim == TA_DIMENSION_HORZ && (n_edges == 6 || n_edges == 12)) { TA_Edge edge1, edge2, edge3; FT_Pos dist1, dist2, span, delta; if (n_edges == 6) { edge1 = edges; edge2 = edges + 2; edge3 = edges + 4; } else { edge1 = edges + 1; edge2 = edges + 5; edge3 = edges + 9; } dist1 = edge2->opos - edge1->opos; dist2 = edge3->opos - edge2->opos; span = dist1 - dist2; if (span < 0) span = -span; if (span < 8) { delta = edge3->pos - (2 * edge2->pos - edge1->pos); edge3->pos -= delta; if (edge3->link) edge3->link->pos -= delta; /* move the serifs along with the stem */ if (n_edges == 12) { (edges + 8)->pos -= delta; (edges + 11)->pos -= delta; } edge3->flags |= TA_EDGE_DONE; if (edge3->link) edge3->link->flags |= TA_EDGE_DONE; } } if (has_serifs || !anchor) { /* now hint the remaining edges (serifs and single) */ /* in order to complete our processing */ for (edge = edges; edge < edge_limit; edge++) { TA_Edge lower_bound = NULL; TA_Edge upper_bound = NULL; FT_Pos delta; if (edge->flags & TA_EDGE_DONE) continue; delta = 1000; if (edge->serif) { delta = edge->serif->opos - edge->opos; if (delta < 0) delta = -delta; } if (edge > edges) lower_bound = &edge[-1]; if (edge + 1 < edge_limit && edge[1].flags & TA_EDGE_DONE) upper_bound = &edge[1]; if (delta < 64 + 16) { ta_latin_align_serif_edge(hints, edge->serif, edge); TA_LOG((" SERIF: edge %d (opos=%.2f) serif to %d (opos=%.2f)" " aligned to %.2f\n", edge - edges, edge->opos / 64.0, edge->serif - edges, edge->serif->opos / 64.0, edge->pos / 64.0)); if (hints->recorder) hints->recorder(ta_serif, hints, dim, edge, NULL, NULL, lower_bound, upper_bound); } else if (!anchor) { edge->pos = TA_PIX_ROUND(edge->opos); anchor = edge; TA_LOG((" SERIF_ANCHOR: edge %d (opos=%.2f) snapped to %.2f\n", edge - edges, edge->opos / 64.0, edge->pos / 64.0)); if (hints->recorder) hints->recorder(ta_serif_anchor, hints, dim, edge, NULL, NULL, lower_bound, upper_bound); } else { TA_Edge before, after; for (before = edge - 1; before >= edges; before--) if (before->flags & TA_EDGE_DONE) break; for (after = edge + 1; after < edge_limit; after++) if (after->flags & TA_EDGE_DONE) break; if (before >= edges && before < edge && after < edge_limit && after > edge) { if (after->opos == before->opos) edge->pos = before->pos; else edge->pos = before->pos + FT_MulDiv(edge->opos - before->opos, after->pos - before->pos, after->opos - before->opos); TA_LOG((" SERIF_LINK1: edge %d (opos=%.2f) snapped to %.2f" " from %d (opos=%.2f)\n", edge - edges, edge->opos / 64.0, edge->pos / 64.0, before - edges, before->opos / 64.0)); if (hints->recorder) hints->recorder(ta_serif_link1, hints, dim, edge, before, after, lower_bound, upper_bound); } else { edge->pos = anchor->pos + ((edge->opos - anchor->opos + 16) & ~31); TA_LOG((" SERIF_LINK2: edge %d (opos=%.2f) snapped to %.2f\n", edge - edges, edge->opos / 64.0, edge->pos / 64.0)); if (hints->recorder) hints->recorder(ta_serif_link2, hints, dim, edge, NULL, NULL, lower_bound, upper_bound); } } #ifdef TA_DEBUG num_actions++; #endif edge->flags |= TA_EDGE_DONE; if (edge > edges && edge->pos < edge[-1].pos) { #ifdef TA_DEBUG TA_LOG((" BOUND: edge %d (pos=%.2f) moved to %.2f\n", edge - edges, edge->pos / 64.0, edge[-1].pos / 64.0)); num_actions++; #endif edge->pos = edge[-1].pos; if (hints->recorder) hints->recorder(ta_bound, hints, dim, edge, &edge[-1], NULL, NULL, NULL); } if (edge + 1 < edge_limit && edge[1].flags & TA_EDGE_DONE && edge->pos > edge[1].pos) { #ifdef TA_DEBUG TA_LOG((" BOUND: edge %d (pos=%.2f) moved to %.2f\n", edge - edges, edge->pos / 64.0, edge[1].pos / 64.0)); num_actions++; #endif edge->pos = edge[1].pos; if (hints->recorder) hints->recorder(ta_bound, hints, dim, edge, &edge[1], NULL, NULL, NULL); } } } #ifdef TA_DEBUG if (!num_actions) TA_LOG((" (none)\n")); TA_LOG(("\n")); #endif } /* apply the complete hinting algorithm to a latin glyph */ static FT_Error ta_latin_hints_apply(TA_GlyphHints hints, FT_Outline* outline, TA_LatinMetrics metrics) { FT_Error error; int dim; error = ta_glyph_hints_reload(hints, outline); if (error) goto Exit; /* analyze glyph outline */ #ifdef TA_CONFIG_OPTION_USE_WARPER if (metrics->root.scaler.render_mode == FT_RENDER_MODE_LIGHT || TA_HINTS_DO_HORIZONTAL(hints)) #else if (TA_HINTS_DO_HORIZONTAL(hints)) #endif { error = ta_latin_hints_detect_features(hints, TA_DIMENSION_HORZ); if (error) goto Exit; } if (TA_HINTS_DO_VERTICAL(hints)) { error = ta_latin_hints_detect_features(hints, TA_DIMENSION_VERT); if (error) goto Exit; ta_latin_hints_compute_blue_edges(hints, metrics); } /* grid-fit the outline */ for (dim = 0; dim < TA_DIMENSION_MAX; dim++) { #ifdef TA_CONFIG_OPTION_USE_WARPER if (dim == TA_DIMENSION_HORZ && metrics->root.scaler.render_mode == FT_RENDER_MODE_LIGHT) { TA_WarperRec warper; FT_Fixed scale; FT_Pos delta; ta_warper_compute(&warper, hints, (TA_Dimension)dim, &scale, &delta); ta_glyph_hints_scale_dim(hints, (TA_Dimension)dim, scale, delta); continue; } #endif if ((dim == TA_DIMENSION_HORZ && TA_HINTS_DO_HORIZONTAL(hints)) || (dim == TA_DIMENSION_VERT && TA_HINTS_DO_VERTICAL(hints))) { ta_latin_hint_edges(hints, (TA_Dimension)dim); ta_glyph_hints_align_edge_points(hints, (TA_Dimension)dim); ta_glyph_hints_align_strong_points(hints, (TA_Dimension)dim); ta_glyph_hints_align_weak_points(hints, (TA_Dimension)dim); } } ta_glyph_hints_save(hints, outline); Exit: return error; } const TA_WritingSystemClassRec ta_latin_writing_system_class = { TA_WRITING_SYSTEM_LATIN, sizeof (TA_LatinMetricsRec), (TA_Script_InitMetricsFunc)ta_latin_metrics_init, (TA_Script_ScaleMetricsFunc)ta_latin_metrics_scale, (TA_Script_DoneMetricsFunc)NULL, (TA_Script_InitHintsFunc)ta_latin_hints_init, (TA_Script_ApplyHintsFunc)ta_latin_hints_apply }; /* XXX: this should probably fine tuned to differentiate better between */ /* scripts... */ static const TA_Script_UniRangeRec ta_latn_uniranges[] = { TA_UNIRANGE_REC(0x0020UL, 0x007FUL), /* Basic Latin (no control chars) */ TA_UNIRANGE_REC(0x00A0UL, 0x00FFUL), /* Latin-1 Supplement (no control chars) */ TA_UNIRANGE_REC(0x0100UL, 0x017FUL), /* Latin Extended-A */ TA_UNIRANGE_REC(0x0180UL, 0x024FUL), /* Latin Extended-B */ TA_UNIRANGE_REC(0x0250UL, 0x02AFUL), /* IPA Extensions */ TA_UNIRANGE_REC(0x02B0UL, 0x02FFUL), /* Spacing Modifier Letters */ TA_UNIRANGE_REC(0x0300UL, 0x036FUL), /* Combining Diacritical Marks */ TA_UNIRANGE_REC(0x1D00UL, 0x1D7FUL), /* Phonetic Extensions */ TA_UNIRANGE_REC(0x1D80UL, 0x1DBFUL), /* Phonetic Extensions Supplement */ TA_UNIRANGE_REC(0x1DC0UL, 0x1DFFUL), /* Combining Diacritical Marks Supplement */ TA_UNIRANGE_REC(0x1E00UL, 0x1EFFUL), /* Latin Extended Additional */ TA_UNIRANGE_REC(0x2000UL, 0x206FUL), /* General Punctuation */ TA_UNIRANGE_REC(0x2070UL, 0x209FUL), /* Superscripts and Subscripts */ TA_UNIRANGE_REC(0x20A0UL, 0x20CFUL), /* Currency Symbols */ TA_UNIRANGE_REC(0x2150UL, 0x218FUL), /* Number Forms */ TA_UNIRANGE_REC(0x2460UL, 0x24FFUL), /* Enclosed Alphanumerics */ TA_UNIRANGE_REC(0x2C60UL, 0x2C7FUL), /* Latin Extended-C */ TA_UNIRANGE_REC(0x2E00UL, 0x2E7FUL), /* Supplemental Punctuation */ TA_UNIRANGE_REC(0xA720UL, 0xA7FFUL), /* Latin Extended-D */ TA_UNIRANGE_REC(0xFB00UL, 0xFB06UL), /* Alphab. Present. Forms (Latin Ligs) */ TA_UNIRANGE_REC(0x1D400UL, 0x1D7FFUL), /* Mathematical Alphanumeric Symbols */ TA_UNIRANGE_REC(0x1F100UL, 0x1F1FFUL), /* Enclosed Alphanumeric Supplement */ TA_UNIRANGE_REC(0UL, 0UL) }; static const TA_Script_UniRangeRec ta_grek_uniranges[] = { TA_UNIRANGE_REC(0x0370UL, 0x03FFUL), /* Greek and Coptic */ TA_UNIRANGE_REC(0x1F00UL, 0x1FFFUL), /* Greek Extended */ TA_UNIRANGE_REC(0UL, 0UL ) }; static const TA_Script_UniRangeRec ta_cyrl_uniranges[] = { TA_UNIRANGE_REC(0x0400UL, 0x04FFUL), /* Cyrillic */ TA_UNIRANGE_REC(0x0500UL, 0x052FUL), /* Cyrillic Supplement */ TA_UNIRANGE_REC(0x2DE0UL, 0x2DFFUL), /* Cyrillic Extended-A */ TA_UNIRANGE_REC(0xA640UL, 0xA69FUL), /* Cyrillic Extended-B */ TA_UNIRANGE_REC(0UL, 0UL ) }; static const TA_Script_UniRangeRec ta_hebr_uniranges[] = { TA_UNIRANGE_REC(0x0590UL, 0x05FFUL), /* Hebrew */ TA_UNIRANGE_REC(0xFB1DUL, 0xFB4FUL), /* Alphab. Present. Forms (Hebrew) */ TA_UNIRANGE_REC(0UL, 0UL ) }; const TA_ScriptClassRec ta_latn_script_class = { TA_SCRIPT_LATN, TA_BLUE_STRINGSET_LATN, TA_WRITING_SYSTEM_LATIN, ta_latn_uniranges, 'o' }; const TA_ScriptClassRec ta_grek_script_class = { TA_SCRIPT_GREK, TA_BLUE_STRINGSET_GREK, TA_WRITING_SYSTEM_LATIN, ta_grek_uniranges, 0x3BF /* ο */ }; const TA_ScriptClassRec ta_cyrl_script_class = { TA_SCRIPT_CYRL, TA_BLUE_STRINGSET_CYRL, TA_WRITING_SYSTEM_LATIN, ta_cyrl_uniranges, 0x43E /* о */ }; const TA_ScriptClassRec ta_hebr_script_class = { TA_SCRIPT_HEBR, TA_BLUE_STRINGSET_HEBR, TA_WRITING_SYSTEM_LATIN, ta_hebr_uniranges, 0x5DD /* × */ }; /* end of talatin.c */ ttfautohint-0.97/lib/tadummy.h0000644000175000001440000000162712177664234013360 00000000000000/* tadummy.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afdummy.h' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TADUMMY_H__ #define __TADUMMY_H__ #include "tatypes.h" /* a dummy writing system and script class used when no hinting should be */ /* performed */ extern const TA_WritingSystemClassRec ta_dummy_writing_system_class; extern const TA_ScriptClassRec ta_dflt_script_class; #endif /* __TADUMMY_H__ */ /* end of tadummy.h */ ttfautohint-0.97/lib/tabytecode.h0000644000175000001440000006145112227174256014020 00000000000000/* tabytecode.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #ifndef __TABYTECODE_H__ #define __TABYTECODE_H__ /* symbolic names for bytecode instruction codes */ #define SVTCA_y 0x00 /* set freedom and projection vectors to y axis */ #define SVTCA_x 0x01 /* set freedom and projection vectors to x axis */ #define SPVTCA_y 0x02 /* set projection vector to y axis */ #define SPVTCA_x 0x03 /* set projection vector to x axis */ #define SFVTCA_y 0x04 /* set freedom vector to y axis */ #define SFVTCA_x 0x05 /* set freedom vector to x axis */ #define SPVTL_para 0x06 /* set projection vector parallel to line */ #define SPVTL_perp 0x07 /* set projection vector perpendicular to line */ #define SFVTL_para 0x08 /* set freedom vector parallel to line */ #define SFVTL_perp 0x09 /* set freedom vector perpendicular to line */ #define SPVFS 0x0A /* set projection vector from stack */ #define SFVFS 0x0B /* set freedom vector from stack */ #define GPV 0x0C /* get projection vector */ #define GFV 0x0D /* get freedom vector */ #define SFVTPV 0x0E /* set freedom vector to projection vector */ #define ISECT 0x0F /* move point to intersection of lines */ #define SRP0 0x10 /* set reference point 0 */ #define SRP1 0x11 /* set reference point 1 */ #define SRP2 0x12 /* set reference point 2 */ #define SZP0 0x13 /* set zone pointer 0 */ #define SZP1 0x14 /* set zone pointer 1 */ #define SZP2 0x15 /* set zone pointer 2 */ #define SZPS 0x16 /* set zone pointers */ #define SLOOP 0x17 /* set loop counter */ #define RTG 0x18 /* round to grid */ #define RTHG 0x19 /* round to half grid */ #define SMD 0x1A /* set `minimum_distance' */ #define ELSE 0x1B /* begin of `else' clause */ #define JMPR 0x1C /* jump relative */ #define SCVTCI 0x1D /* set `control_value_cut_in' */ #define SSWCI 0x1E /* set `single_width_cut_in' */ #define SSW 0x1F /* set `single_width_value' */ #define DUP 0x20 /* duplicate top stack element */ #define POP 0x21 /* pop top stack element */ #define CLEAR 0x22 /* clear entire stack */ #define SWAP 0x23 /* swap top two elements of stack */ #define DEPTH 0x24 /* get depth of stack */ #define CINDEX 0x25 /* copy indexed element to top of stack */ #define MINDEX 0x26 /* move indexed element to top of stack */ #define ALIGNPTS 0x27 /* align points */ #define INS_28 0x28 /* undefined */ #define UTP 0x29 /* untouch point */ #define LOOPCALL 0x2A /* loop and call function */ #define CALL 0x2B /* call function */ #define FDEF 0x2C /* define function */ #define ENDF 0x2D /* end of function */ #define MDAP_noround 0x2E /* move direct absolute point without rounding */ #define MDAP_round 0x2F /* move direct absolute point with rounding */ #define IUP_y 0x30 /* interpolate untouched points along y axis */ #define IUP_x 0x31 /* interpolate untouched points along x axis */ #define SHP_rp2 0x32 /* shift point using rp2 */ #define SHP_rp1 0x33 /* shift point using rp1 */ #define SHC_rp2 0x34 /* shift contour using rp2 */ #define SHC_rp1 0x35 /* shift contour using rp1 */ #define SHZ_rp2 0x36 /* shift zone using rp2 */ #define SHZ_rp1 0x37 /* shift zone using rp1 */ #define SHPIX 0x38 /* shift point by pixel amount */ #define IP 0x39 /* interpolate point */ #define MSIRP_norp0 0x3A /* move stack indirect relative point, don't set rp0 */ #define MSIRP_rp0 0x3B /* move stack indirect relative point, set rp0 */ #define ALIGNRP 0x3C /* align relative point */ #define RTDG 0x3D /* round to double grid */ #define MIAP_noround 0x3E /* move indirect absolute point without rounding */ #define MIAP_round 0x3F /* move indirect absolute point with rounding */ #define NPUSHB 0x40 /* push `n' bytes */ #define NPUSHW 0x41 /* push `n' words */ #define WS 0x42 /* write to storage area */ #define RS 0x43 /* read from storage area */ #define WCVTP 0x44 /* write to CVT in pixel units */ #define RCVT 0x45 /* read from CVT */ #define GC_cur 0x46 /* get (projected) coordinate, current position */ #define GC_orig 0x47 /* get (projected) coordinate, original position */ #define SCFS 0x48 /* set coordinate from stack */ #define MD_cur 0x49 /* measure distance, current positions */ #define MD_orig 0x4A /* measure distance, original positions */ #define MPPEM 0x4B /* measure PPEM */ #define MPS 0x4C /* measure point size */ #define FLIPON 0x4D /* set `auto_flip' to TRUE */ #define FLIPOFF 0x4E /* set `auto_flip' to FALSE */ #define DEBUG 0x4F /* ignored */ #define LT 0x50 /* lower than */ #define LTEQ 0x51 /* lower than or equal */ #define GT 0x52 /* greater than */ #define GTEQ 0x53 /* greater than or equal */ #define EQ 0x54 /* equal */ #define NEQ 0x55 /* not equal */ #define ODD 0x56 /* TRUE if odd */ #define EVEN 0x57 /* TRUE if even */ #define IF 0x58 /* start of `if' clause */ #define EIF 0x59 /* end of `if' or `else' clause */ #define AND 0x5A /* logical AND */ #define OR 0x5B /* logical OR */ #define NOT 0x5C /* logical NOT */ #define DELTAP1 0x5D /* delta point exception 1 */ #define SDB 0x5E /* set `delta_base' */ #define SDS 0x5F /* set `delta_shift' */ #define ADD 0x60 /* addition */ #define SUB 0x61 /* subtraction */ #define DIV 0x62 /* division */ #define MUL 0x63 /* multiplication */ #define ABS 0x64 /* absolute value */ #define NEG 0x65 /* negation */ #define FLOOR 0x66 /* floor operation */ #define CEILING 0x67 /* ceiling operation */ #define ROUND_gray 0x68 /* round value with gray compensation */ #define ROUND_black 0x69 /* round value with black compensation */ #define ROUND_white 0x6A /* round value with white compensation */ #define ROUND_3 0x6B /* undefined */ #define NROUND_gray 0x6C /* apply gray compensation */ #define NROUND_black 0x6D /* apply black compensation */ #define NROUND_white 0x6E /* apply white compensation */ #define NROUND_3 0x6F /* undefined */ #define WCVTF 0x70 /* write to CVT in font units */ #define DELTAP2 0x71 /* delta point exception 2 */ #define DELTAP3 0x72 /* delta point exception 3 */ #define DELTAC1 0x73 /* delta cvt exception 1 */ #define DELTAC2 0x74 /* delta cvt exception 2 */ #define DELTAC3 0x75 /* delta cvt exception 3 */ #define SROUND 0x76 /* super round */ #define S45Round 0x77 /* super round at 45 degrees */ #define JROT 0x78 /* jump relative on TRUE */ #define JROF 0x79 /* jump relative on FALSE */ #define ROFF 0x7A /* turn off rounding */ #define INS_7B 0x7B /* undefined */ #define RUTG 0x7C /* round up to grid */ #define RDTG 0x7D /* round down to grid */ #define SANGW 0x7E /* ignored, obsolete */ #define AA 0x7F /* ignored, obsolete */ #define FLIPPT 0x80 /* flip point on-curve to off-curve and vice versa */ #define FLIPRGON 0x81 /* flip range of points to be on-curve */ #define FlIPRGOFF 0x82 /* flip range of points to be off-curve */ #define INS_83 0x83 /* undefined */ #define INS_84 0x84 /* undefined */ #define SCANCTRL 0x85 /* scan conversion control */ #define SDPVTL_para 0x86 /* set dual projection vector parallel to line */ #define SDPVTL_perp 0x87 /* set dual projection vector perpendicular to line */ #define GETINFO 0x88 /* get information about font scaler and current glyph */ #define IDEF 0x89 /* define instruction */ #define ROLL 0x8A /* roll top three stack elements */ #define MAX 0x8B /* maximum */ #define MIN 0x8C /* minimum */ #define SCANTYPE 0x8D /* set scan conversion rules */ #define INSTCTRL 0x8E /* set instruction control state */ #define INS_8F 0x8F /* undefined */ #define INS_90 0x90 /* undefined */ #define INS_91 0x91 #define INS_92 0x92 #define INS_93 0x93 #define INS_94 0x94 #define INS_95 0x95 #define INS_96 0x96 #define INS_97 0x97 #define INS_98 0x98 #define INS_99 0x99 #define INS_9A 0x9A #define INS_9B 0x9B #define INS_9C 0x9C #define INS_9D 0x9D #define INS_9E 0x9E #define INS_9F 0x9F #define INS_A0 0xA0 /* undefined */ #define INS_A1 0xA1 #define INS_A2 0xA2 #define INS_A3 0xA3 #define INS_A4 0xA4 #define INS_A5 0xA5 #define INS_A6 0xA6 #define INS_A7 0xA7 #define INS_A8 0xA8 #define INS_9A 0x9A #define INS_AA 0xAA #define INS_AB 0xAB #define INS_AC 0xAC #define INS_AD 0xAD #define INS_AE 0xAE #define INS_AF 0xAF #define PUSHB_1 0xB0 /* push 1 byte */ #define PUSHB_2 0xB1 /* push 2 bytes */ #define PUSHB_3 0xB2 /* push 3 bytes */ #define PUSHB_4 0xB3 /* push 4 bytes */ #define PUSHB_5 0xB4 /* push 5 bytes */ #define PUSHB_6 0xB5 /* push 6 bytes */ #define PUSHB_7 0xB6 /* push 7 bytes */ #define PUSHB_8 0xB7 /* push 8 bytes */ #define PUSHW_1 0xB8 /* push 1 word */ #define PUSHW_2 0xB9 /* push 2 words */ #define PUSHW_3 0xBA /* push 3 words */ #define PUSHW_4 0xBB /* push 4 words */ #define PUSHW_5 0xBC /* push 5 words */ #define PUSHW_6 0xBD /* push 6 words */ #define PUSHW_7 0xBE /* push 7 words */ #define PUSHW_8 0xBF /* push 8 words */ #define MDRP_norp0_nokeep_noround_gray 0xC0 /* move direct relative point */ #define MDRP_norp0_nokeep_noround_black 0xC1 #define MDRP_norp0_nokeep_noround_white 0xC2 #define MDRP_norp0_nokeep_noround_3 0xC3 /* undefined */ #define MDRP_norp0_nokeep_round_gray 0xC4 #define MDRP_norp0_nokeep_round_black 0xC5 #define MDRP_norp0_nokeep_round_white 0xC6 #define MDRP_norp0_nokeep_round_3 0xC7 #define MDRP_norp0_keep_noround_gray 0xC8 #define MDRP_norp0_keep_noround_black 0xC9 #define MDRP_norp0_keep_noround_white 0xCA #define MDRP_norp0_keep_noround_3 0xCB #define MDRP_norp0_keep_round_gray 0xCC #define MDRP_norp0_keep_round_black 0xCD #define MDRP_norp0_keep_round_white 0xCE #define MDRP_norp0_keep_round_3 0xCF #define MDRP_rp0_nokeep_noround_gray 0xD0 #define MDRP_rp0_nokeep_noround_black 0xD1 #define MDRP_rp0_nokeep_noround_white 0xD2 #define MDRP_rp0_nokeep_noround_3 0xD3 #define MDRP_rp0_nokeep_round_gray 0xD4 #define MDRP_rp0_nokeep_round_black 0xD5 #define MDRP_rp0_nokeep_round_white 0xD6 #define MDRP_rp0_nokeep_round_3 0xD7 #define MDRP_rp0_keep_noround_gray 0xD8 #define MDRP_rp0_keep_noround_black 0xD9 #define MDRP_rp0_keep_noround_white 0xDA #define MDRP_rp0_keep_noround_3 0xDB #define MDRP_rp0_keep_round_gray 0xDC #define MDRP_rp0_keep_round_black 0xDD #define MDRP_rp0_keep_round_white 0xDE #define MDRP_rp0_keep_round_3 0xDF #define MIRP_norp0_nokeep_noround_gray 0xE0 /* move indirect relative point */ #define MIRP_norp0_nokeep_noround_black 0xE1 #define MIRP_norp0_nokeep_noround_white 0xE2 #define MIRP_norp0_nokeep_noround_3 0xE3 /* undefined */ #define MIRP_norp0_nokeep_round_gray 0xE4 #define MIRP_norp0_nokeep_round_black 0xE5 #define MIRP_norp0_nokeep_round_white 0xE6 #define MIRP_norp0_nokeep_round_3 0xE7 #define MIRP_norp0_keep_noround_gray 0xE8 #define MIRP_norp0_keep_noround_black 0xE9 #define MIRP_norp0_keep_noround_white 0xEA #define MIRP_norp0_keep_noround_3 0xEB #define MIRP_norp0_keep_round_gray 0xEC #define MIRP_norp0_keep_round_black 0xED #define MIRP_norp0_keep_round_white 0xEE #define MIRP_norp0_keep_round_3 0xEF #define MIRP_rp0_nokeep_noround_gray 0xF0 #define MIRP_rp0_nokeep_noround_black 0xF1 #define MIRP_rp0_nokeep_noround_white 0xF2 #define MIRP_rp0_nokeep_noround_3 0xF3 #define MIRP_rp0_nokeep_round_gray 0xF4 #define MIRP_rp0_nokeep_round_black 0xF5 #define MIRP_rp0_nokeep_round_white 0xF6 #define MIRP_rp0_nokeep_round_3 0xF7 #define MIRP_rp0_keep_noround_gray 0xF8 #define MIRP_rp0_keep_noround_black 0xF9 #define MIRP_rp0_keep_noround_white 0xFA #define MIRP_rp0_keep_noround_3 0xFB #define MIRP_rp0_keep_round_gray 0xFC #define MIRP_rp0_keep_round_black 0xFD #define MIRP_rp0_keep_round_white 0xFE #define MIRP_rp0_keep_round_3 0xFF /* a simple macro to emit bytecode instructions */ #define BCI(code) *(bufp++) = (code) /* we increase the stack depth by this amount */ #define ADDITIONAL_STACK_ELEMENTS 20 /* symbolic names for storage area locations */ #define sal_i 0 #define sal_j sal_i + 1 #define sal_temp1 sal_j + 1 #define sal_temp2 sal_temp1 + 1 #define sal_temp3 sal_temp2 + 1 #define sal_best sal_temp3 + 1 #define sal_ref sal_best + 1 #define sal_func sal_ref + 1 #define sal_anchor sal_func + 1 #define sal_vwidth_data_offset sal_anchor + 1 #define sal_scale sal_vwidth_data_offset + 1 #define sal_point_min sal_scale + 1 #define sal_point_max sal_point_min + 1 #define sal_base sal_point_max + 1 #define sal_num_packed_segments sal_base + 1 #define sal_segment_offset sal_num_packed_segments + 1 /* must be last */ /* bytecode function numbers */ /* 0 */ #define bci_align_top 0 #define bci_round bci_align_top + 1 #define bci_smooth_stem_width bci_round + 1 #define bci_get_best_width bci_smooth_stem_width + 1 #define bci_strong_stem_width bci_get_best_width + 1 #define bci_loop_do bci_strong_stem_width + 1 #define bci_loop bci_loop_do + 1 #define bci_cvt_rescale bci_loop + 1 #define bci_cvt_rescale_range bci_cvt_rescale + 1 #define bci_vwidth_data_store bci_cvt_rescale_range + 1 #define bci_blue_round bci_vwidth_data_store + 1 #define bci_blue_round_range bci_blue_round + 1 #define bci_decrement_component_counter bci_blue_round_range + 1 #define bci_get_point_extrema bci_decrement_component_counter + 1 #define bci_nibbles bci_get_point_extrema + 1 #define bci_number_set_is_element bci_nibbles + 1 #define bci_number_set_is_element2 bci_number_set_is_element + 1 /* 17 */ #define bci_create_segment bci_number_set_is_element2 + 1 #define bci_create_segments bci_create_segment + 1 /* 19 */ /* the next ten entries must stay in this order */ #define bci_create_segments_0 bci_create_segments + 1 #define bci_create_segments_1 bci_create_segments_0 + 1 #define bci_create_segments_2 bci_create_segments_1 + 1 #define bci_create_segments_3 bci_create_segments_2 + 1 #define bci_create_segments_4 bci_create_segments_3 + 1 #define bci_create_segments_5 bci_create_segments_4 + 1 #define bci_create_segments_6 bci_create_segments_5 + 1 #define bci_create_segments_7 bci_create_segments_6 + 1 #define bci_create_segments_8 bci_create_segments_7 + 1 #define bci_create_segments_9 bci_create_segments_8 + 1 #define bci_create_segments_composite bci_create_segments_9 + 1 /* 30 */ /* the next ten entries must stay in this order */ #define bci_create_segments_composite_0 bci_create_segments_composite + 1 #define bci_create_segments_composite_1 bci_create_segments_composite_0 + 1 #define bci_create_segments_composite_2 bci_create_segments_composite_1 + 1 #define bci_create_segments_composite_3 bci_create_segments_composite_2 + 1 #define bci_create_segments_composite_4 bci_create_segments_composite_3 + 1 #define bci_create_segments_composite_5 bci_create_segments_composite_4 + 1 #define bci_create_segments_composite_6 bci_create_segments_composite_5 + 1 #define bci_create_segments_composite_7 bci_create_segments_composite_6 + 1 #define bci_create_segments_composite_8 bci_create_segments_composite_7 + 1 #define bci_create_segments_composite_9 bci_create_segments_composite_8 + 1 /* 40 */ #define bci_align_point bci_create_segments_composite_9 + 1 #define bci_align_segment bci_align_point + 1 #define bci_align_segments bci_align_segment + 1 /* 43 */ #define bci_scale_contour bci_align_segments + 1 #define bci_scale_glyph bci_scale_contour + 1 #define bci_scale_composite_glyph bci_scale_glyph + 1 #define bci_shift_contour bci_scale_composite_glyph + 1 #define bci_shift_subglyph bci_shift_contour + 1 /* 48 */ #define bci_ip_outer_align_point bci_shift_subglyph + 1 #define bci_ip_on_align_points bci_ip_outer_align_point + 1 #define bci_ip_between_align_point bci_ip_on_align_points + 1 #define bci_ip_between_align_points bci_ip_between_align_point + 1 /* 52 */ #define bci_adjust_common bci_ip_between_align_points + 1 #define bci_stem_common bci_adjust_common + 1 #define bci_serif_common bci_stem_common + 1 #define bci_serif_anchor_common bci_serif_common + 1 #define bci_serif_link1_common bci_serif_anchor_common + 1 #define bci_serif_link2_common bci_serif_link1_common + 1 /* 58 */ #define bci_lower_bound bci_serif_link2_common + 1 #define bci_upper_bound bci_lower_bound + 1 #define bci_upper_lower_bound bci_upper_bound + 1 /* 61 */ #define bci_adjust_bound bci_upper_lower_bound + 1 #define bci_stem_bound bci_adjust_bound + 1 #define bci_link bci_stem_bound + 1 #define bci_anchor bci_link + 1 #define bci_adjust bci_anchor + 1 #define bci_stem bci_adjust + 1 /* the order of the `bci_action_*' entries must correspond */ /* to the order of the TA_Action enumeration entries (in `tahints.h') */ /* 67 */ #define bci_action_ip_before bci_stem + 1 #define bci_action_ip_after bci_action_ip_before + 1 #define bci_action_ip_on bci_action_ip_after + 1 #define bci_action_ip_between bci_action_ip_on + 1 /* 71 */ #define bci_action_blue bci_action_ip_between + 1 #define bci_action_blue_anchor bci_action_blue + 1 /* 73 */ #define bci_action_anchor bci_action_blue_anchor + 1 #define bci_action_anchor_serif bci_action_anchor + 1 #define bci_action_anchor_round bci_action_anchor_serif + 1 #define bci_action_anchor_round_serif bci_action_anchor_round + 1 /* 77 */ #define bci_action_adjust bci_action_anchor_round_serif + 1 #define bci_action_adjust_serif bci_action_adjust + 1 #define bci_action_adjust_round bci_action_adjust_serif + 1 #define bci_action_adjust_round_serif bci_action_adjust_round + 1 #define bci_action_adjust_bound bci_action_adjust_round_serif + 1 #define bci_action_adjust_bound_serif bci_action_adjust_bound + 1 #define bci_action_adjust_bound_round bci_action_adjust_bound_serif + 1 #define bci_action_adjust_bound_round_serif bci_action_adjust_bound_round + 1 /* 85 */ #define bci_action_link bci_action_adjust_bound_round_serif + 1 #define bci_action_link_serif bci_action_link + 1 #define bci_action_link_round bci_action_link_serif + 1 #define bci_action_link_round_serif bci_action_link_round + 1 /* 89 */ #define bci_action_stem bci_action_link_round_serif + 1 #define bci_action_stem_serif bci_action_stem + 1 #define bci_action_stem_round bci_action_stem_serif + 1 #define bci_action_stem_round_serif bci_action_stem_round + 1 #define bci_action_stem_bound bci_action_stem_round_serif + 1 #define bci_action_stem_bound_serif bci_action_stem_bound + 1 #define bci_action_stem_bound_round bci_action_stem_bound_serif + 1 #define bci_action_stem_bound_round_serif bci_action_stem_bound_round + 1 /* 97 */ #define bci_action_serif bci_action_stem_bound_round_serif + 1 #define bci_action_serif_lower_bound bci_action_serif + 1 #define bci_action_serif_upper_bound bci_action_serif_lower_bound + 1 #define bci_action_serif_upper_lower_bound bci_action_serif_upper_bound + 1 /* 101 */ #define bci_action_serif_anchor bci_action_serif_upper_lower_bound + 1 #define bci_action_serif_anchor_lower_bound bci_action_serif_anchor + 1 #define bci_action_serif_anchor_upper_bound bci_action_serif_anchor_lower_bound + 1 #define bci_action_serif_anchor_upper_lower_bound bci_action_serif_anchor_upper_bound + 1 /* 105 */ #define bci_action_serif_link1 bci_action_serif_anchor_upper_lower_bound + 1 #define bci_action_serif_link1_lower_bound bci_action_serif_link1 + 1 #define bci_action_serif_link1_upper_bound bci_action_serif_link1_lower_bound + 1 #define bci_action_serif_link1_upper_lower_bound bci_action_serif_link1_upper_bound + 1 /* 109 */ #define bci_action_serif_link2 bci_action_serif_link1_upper_lower_bound + 1 #define bci_action_serif_link2_lower_bound bci_action_serif_link2 + 1 #define bci_action_serif_link2_upper_bound bci_action_serif_link2_lower_bound + 1 #define bci_action_serif_link2_upper_lower_bound bci_action_serif_link2_upper_bound + 1 /* 113 */ #define bci_hint_glyph bci_action_serif_link2_upper_lower_bound + 1 #define NUM_FDEFS bci_hint_glyph + 1 /* must be last */ /* the first action handler */ #define ACTION_OFFSET bci_action_ip_before /* symbolic names for run-time CVT locations */ /* (assigned in `prep' or `fpgm') */ #define cvtl_temp 0 /* used for creating twilight points */ #define cvtl_0x10000 cvtl_temp + 1 #define cvtl_funits_to_pixels cvtl_0x10000 + 1 #define cvtl_is_subglyph cvtl_funits_to_pixels + 1 #define cvtl_num_used_scripts cvtl_is_subglyph + 1 #define cvtl_stem_width_function cvtl_num_used_scripts + 1 #define cvtl_is_element cvtl_stem_width_function + 1 #define cvtl_max_runtime cvtl_is_element + 1 /* must be last */ /* symbolic names for build-time CVT locations */ /* (assigned in `cvt') */ /* note that each script has its own set of CVT data, */ /* to be accessed using the offsets in the `cvt_offsets' array */ /* first script index is 0 */ /* the following macros access the variables `font' and `sfnt' */ #define CVT_DATA ((glyf_Data*)(font->tables[sfnt->glyf_idx].data)) /* * we have the following layout in the CVT table: * * . values initialized at runtime (`cvtl_max_runtime' elements) * . scaling values for each script ID (`num_used_script' elements) (*) * . offset to the vertical stem widths array for each script ID (*) * (`num_used_script' elements) * . size of the vertical stem widths array for each script ID (*) * (`num_used_script' elements) * * script ID 0: * . horizontal standard width (1 element) * . horizontal stem widths (`cvt_horz_width_sizes[id_to_idx(0)]' * elements) * . vertical standard width (1 element) * . vertical stem widths (`cvt_vert_width_sizes[id_to_idx(0)]' * elements) * . flat blue zones (`cvt_blue_zone_sizes[id_to_idx(0)]' elements) * . round blue zones (`cvt_blue_zone_sizes[id_to_idx(0)]' elements) * script ID 1: * ... * * (*) see function `bci_create_segments' how these three arrays get * accessed * * note that the `id_to_idx' function is hypothetic since the code works * exactly the opposite way: the `cvt_*' arrays are indexed by the script * index, and the `script_ids' array maps script indices to script IDs */ /* scaling value index of script ID id */ #define CVT_SCALING_VALUE_OFFSET(id) \ cvtl_max_runtime + (id) /* vwidth offset data of script ID id */ #define CVT_VWIDTH_OFFSET_DATA(id) \ CVT_SCALING_VALUE_OFFSET(id) \ + CVT_DATA->num_used_scripts \ /* vwidth size data of script ID id */ #define CVT_VWIDTH_SIZE_DATA(id) \ CVT_VWIDTH_OFFSET_DATA(id) \ + CVT_DATA->num_used_scripts /* horizontal standard width indices of script i */ #define CVT_HORZ_STANDARD_WIDTH_OFFSET(i) \ cvtl_max_runtime \ + 3 * CVT_DATA->num_used_scripts \ + CVT_DATA->cvt_offsets[i] /* start and size of horizontal stem widths array of script i */ #define CVT_HORZ_WIDTHS_OFFSET(i) \ CVT_HORZ_STANDARD_WIDTH_OFFSET(i) + 1 #define CVT_HORZ_WIDTHS_SIZE(i) \ CVT_DATA->cvt_horz_width_sizes[i] /* vertical standard width indices of script i */ #define CVT_VERT_STANDARD_WIDTH_OFFSET(i) \ CVT_HORZ_WIDTHS_OFFSET(i) + CVT_HORZ_WIDTHS_SIZE(i) /* start and size of vertical stem widths array of script i */ #define CVT_VERT_WIDTHS_OFFSET(i) \ CVT_VERT_STANDARD_WIDTH_OFFSET(i) + 1 #define CVT_VERT_WIDTHS_SIZE(i) \ CVT_DATA->cvt_vert_width_sizes[i] /* number of blue zones (including artificial ones) of script i */ #define CVT_BLUES_SIZE(i) \ CVT_DATA->cvt_blue_zone_sizes[i] /* start of blue zone arrays for flat and round edges of script i */ #define CVT_BLUE_REFS_OFFSET(i) \ CVT_VERT_WIDTHS_OFFSET(i) + CVT_VERT_WIDTHS_SIZE(i) #define CVT_BLUE_SHOOTS_OFFSET(i) \ CVT_BLUE_REFS_OFFSET(i) + CVT_BLUES_SIZE(i) /* x height blue zone (shoot) index of script i (valid if < 0xFFFF) */ #define CVT_X_HEIGHT_BLUE_OFFSET(i) \ CVT_BLUE_SHOOTS_OFFSET(i) \ + CVT_DATA->cvt_blue_adjustment_offsets[i] extern FT_Byte ttfautohint_glyph_bytecode[7]; #endif /* __TABYTECODE_H__ */ /* end of tabytecode.h */ ttfautohint-0.97/lib/taglyf.c0000644000175000001440000007673312235400265013156 00000000000000/* taglyf.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" static FT_Error TA_sfnt_build_glyf_hints(SFNT* sfnt, FONT* font) { FT_Face face = sfnt->face; FT_Long idx; FT_Error error; /* this loop doesn't include the artificial `.ttfautohint' glyph */ for (idx = 0; idx < face->num_glyphs; idx++) { error = TA_sfnt_build_glyph_instructions(sfnt, font, idx); if (error) return error; if (font->progress) { FT_Int ret; ret = font->progress(idx, face->num_glyphs, sfnt - font->sfnts, font->num_sfnts, font->progress_data); if (ret) return TA_Err_Canceled; } } return FT_Err_Ok; } static FT_Error TA_glyph_get_components(GLYPH* glyph, FT_Byte* buf, FT_ULong len) { FT_UShort flags; FT_UShort component; FT_UShort* components_new; FT_Byte* p; FT_Byte* endp; p = buf; endp = buf + len; /* skip header */ p += 10; /* walk over component records */ do { if (p + 4 > endp) return FT_Err_Invalid_Table; flags = *(p++) << 8; flags += *(p++); /* add component to list */ component = *(p++) << 8; component += *(p++); glyph->num_components++; components_new = (FT_UShort*)realloc(glyph->components, glyph->num_components * sizeof (FT_UShort)); if (!components_new) { glyph->num_components--; return FT_Err_Out_Of_Memory; } else glyph->components = components_new; glyph->components[glyph->num_components - 1] = component; /* skip scaling and offset arguments */ if (flags & ARGS_ARE_WORDS) p += 4; else p += 2; if (flags & WE_HAVE_A_SCALE) p += 2; else if (flags & WE_HAVE_AN_XY_SCALE) p += 4; else if (flags & WE_HAVE_A_2X2) p += 8; } while (flags & MORE_COMPONENTS); return TA_Err_Ok; } static FT_Error TA_glyph_parse_composite(GLYPH* glyph, FT_Byte* buf, FT_ULong len, FT_UShort num_glyphs, FT_Bool hint_composites) { FT_ULong flags_offset; /* after the loop, this is the offset */ /* to the last element in the flags array */ FT_UShort flags; FT_Byte* p; FT_Byte* q; /* we allocate too large a buffer */ /* (including space for the new component */ /* and possible argument size changes for shifted point indices) */ /* and reallocate it later to its real size */ glyph->buf = (FT_Byte*)malloc(len + 8 + glyph->num_components * 2); if (!glyph->buf) return FT_Err_Out_Of_Memory; p = buf; q = glyph->buf; /* copy header */ memcpy(q, p, 10); p += 10; q += 10; /* if the composite glyph contains one or more contours, */ /* we prepend a composite glyph component to call some bytecode */ /* which eventually becomes the last glyph in the `glyf' table; */ /* for convenience, however, it is not added to the `components' array */ /* (doing so simplifies the conversion of point indices later on) */ if (glyph->num_composite_contours && hint_composites) { FT_Short x_min; FT_Short x_max; FT_Short y_min; FT_Short y_max; FT_Short x_offset; FT_Short y_offset; /* the composite glyph's bounding box */ x_min = (FT_Short)((buf[2] << 8) + buf[3]); y_min = (FT_Short)((buf[4] << 8) + buf[5]); x_max = (FT_Short)((buf[6] << 8) + buf[7]); y_max = (FT_Short)((buf[8] << 8) + buf[9]); /* use ARGS_ARE_WORDS only if necessary; */ /* note that the offset value of the component doesn't matter */ /* as long as it stays within the bounding box */ if (x_min <= 0 && x_max >= 0) x_offset = 0; else if (x_max < 0) x_offset = x_max; else x_offset = x_min; if (y_min <= 0 && y_max >= 0) y_offset = 0; else if (y_max < 0) y_offset = y_max; else y_offset = y_min; if (x_offset >= -128 && x_offset <= 127 && y_offset >= -128 && y_offset <= 127) { *(q++) = 0x00; *(q++) = ARGS_ARE_XY_VALUES | MORE_COMPONENTS; *(q++) = HIGH(num_glyphs - 1); *(q++) = LOW(num_glyphs - 1); *(q++) = x_offset; *(q++) = y_offset; } else { *(q++) = 0x00; *(q++) = ARGS_ARE_WORDS | ARGS_ARE_XY_VALUES | MORE_COMPONENTS; *(q++) = HIGH(num_glyphs - 1); *(q++) = LOW(num_glyphs - 1); *(q++) = HIGH(x_offset); *(q++) = LOW(x_offset); *(q++) = HIGH(y_offset); *(q++) = LOW(y_offset); } } /* walk over component records */ do { flags_offset = q - glyph->buf; *(q++) = *p; flags = *(p++) << 8; *(q++) = *p; flags += *(p++); /* copy component */ *(q++) = *(p++); *(q++) = *(p++); if (flags & ARGS_ARE_XY_VALUES) { /* copy offsets */ *(q++) = *(p++); *(q++) = *(p++); if (flags & ARGS_ARE_WORDS) { *(q++) = *(p++); *(q++) = *(p++); } } else { /* handle point numbers */ FT_UShort arg1; FT_UShort arg2; FT_UShort i; if (flags & ARGS_ARE_WORDS) { arg1 = *(p++) >> 8; arg1 += *(p++); arg2 = *(p++) >> 8; arg2 += *(p++); } else { arg1 = *(p++); arg2 = *(p++); } /* adjust point numbers */ /* (see `TA_adjust_point_index' in `tabytecode.c' for more) */ for (i = 0; i < glyph->num_pointsums; i++) if (arg1 < glyph->pointsums[i]) break; arg1 += i; for (i = 0; i < glyph->num_pointsums; i++) if (arg2 < glyph->pointsums[i]) break; arg2 += i; if (arg1 <= 0xFF && arg2 <= 0xFF) { glyph->buf[flags_offset + 1] &= ~ARGS_ARE_WORDS; *(q++) = arg1; *(q++) = arg2; } else { glyph->buf[flags_offset + 1] |= ARGS_ARE_WORDS; *(q++) = HIGH(arg1); *(q++) = LOW(arg1); *(q++) = HIGH(arg2); *(q++) = LOW(arg2); } } /* copy scaling arguments */ if (flags & (WE_HAVE_A_SCALE | WE_HAVE_AN_XY_SCALE | WE_HAVE_A_2X2)) { *(q++) = *(p++); *(q++) = *(p++); } if (flags & (WE_HAVE_AN_XY_SCALE | WE_HAVE_A_2X2)) { *(q++) = *(p++); *(q++) = *(p++); } if (flags & WE_HAVE_A_2X2) { *(q++) = *(p++); *(q++) = *(p++); *(q++) = *(p++); *(q++) = *(p++); } } while (flags & MORE_COMPONENTS); glyph->len1 = q - glyph->buf; /* glyph->len2 = 0; */ glyph->flags_offset = flags_offset; glyph->buf = (FT_Byte*)realloc(glyph->buf, glyph->len1); /* we discard instructions (if any) */ glyph->buf[glyph->flags_offset] &= ~(WE_HAVE_INSTR >> 8); return TA_Err_Ok; } static FT_Error TA_glyph_parse_simple(GLYPH* glyph, FT_Byte* buf, FT_ULong len) { FT_ULong ins_offset; FT_Byte* flags_start; FT_UShort num_ins; FT_ULong flags_size; /* size of the flags array */ FT_ULong xy_size; /* size of x and y coordinate arrays together */ FT_Byte* p; FT_Byte* endp; FT_UShort i; p = buf; endp = buf + len; ins_offset = 10 + glyph->num_contours * 2; p += ins_offset; if (p + 2 > endp) return FT_Err_Invalid_Table; /* get number of instructions */ num_ins = *(p++) << 8; num_ins += *(p++); /* assure that we don't process a font */ /* which already contains a `.ttfautohint' glyph */ /* (a font with a `post' table version 3.0 doesn't contain glyph names, */ /* so we have to check it this way) */ if (glyph->num_points == 1 && num_ins >= sizeof (ttfautohint_glyph_bytecode)) { if (!strncmp((char*)p, (char*)ttfautohint_glyph_bytecode, sizeof (ttfautohint_glyph_bytecode))) return TA_Err_Already_Processed; } p += num_ins; if (p > endp) return FT_Err_Invalid_Table; flags_start = p; xy_size = 0; i = 0; while (i < glyph->num_points) { FT_Byte flags; FT_Byte x_short; FT_Byte y_short; FT_Byte have_x; FT_Byte have_y; FT_UInt count; if (p + 1 > endp) return FT_Err_Invalid_Table; flags = *(p++); x_short = (flags & X_SHORT_VECTOR) ? 1 : 2; y_short = (flags & Y_SHORT_VECTOR) ? 1 : 2; have_x = ((flags & SAME_X) && !(flags & X_SHORT_VECTOR)) ? 0 : 1; have_y = ((flags & SAME_Y) && !(flags & Y_SHORT_VECTOR)) ? 0 : 1; count = 1; if (flags & REPEAT) { if (p + 1 > endp) return FT_Err_Invalid_Table; count += *(p++); if (i + count > glyph->num_points) return FT_Err_Invalid_Table; } xy_size += count * x_short * have_x; xy_size += count * y_short * have_y; i += count; } if (p + xy_size > endp) return FT_Err_Invalid_Table; flags_size = p - flags_start; /* store the data before and after the bytecode instructions */ /* in the same array */ glyph->len1 = ins_offset; glyph->len2 = flags_size + xy_size; glyph->buf = (FT_Byte*)malloc(glyph->len1 + glyph->len2); if (!glyph->buf) return FT_Err_Out_Of_Memory; /* now copy everything but the instructions */ memcpy(glyph->buf, buf, glyph->len1); memcpy(glyph->buf + glyph->len1, flags_start, glyph->len2); return TA_Err_Ok; } static FT_Error TA_iterate_composite_glyph(glyf_Data* data, FT_UShort* components, FT_UShort num_components, FT_UShort** pointsums, FT_UShort* num_pointsums, FT_UShort* num_composite_contours, FT_UShort* num_composite_points) { FT_UShort* pointsums_new; FT_UShort i; /* save current state */ if (*num_pointsums == 0xFFFF) return FT_Err_Invalid_Table; (*num_pointsums)++; pointsums_new = (FT_UShort*)realloc(*pointsums, *num_pointsums * sizeof (FT_UShort)); if (!pointsums_new) { (*num_pointsums)--; return FT_Err_Out_Of_Memory; } else *pointsums = pointsums_new; (*pointsums)[*num_pointsums - 1] = *num_composite_points; for (i = 0; i < num_components; i++) { GLYPH* glyph; FT_UShort component = components[i]; FT_Error error; if (component >= data->num_glyphs) return FT_Err_Invalid_Table; glyph = &data->glyphs[component]; if (glyph->num_components) { error = TA_iterate_composite_glyph(data, glyph->components, glyph->num_components, pointsums, num_pointsums, num_composite_contours, num_composite_points); if (error) return error; } else { /* no need for checking overflow of the number of contours */ /* since the number of points is always larger or equal */ if (*num_composite_points > 0xFFFF - glyph->num_points) return FT_Err_Invalid_Table; *num_composite_contours += glyph->num_contours; *num_composite_points += glyph->num_points; } } return TA_Err_Ok; } static FT_Error TA_sfnt_compute_composite_pointsums(SFNT* sfnt, FONT* font) { SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_UShort i; for (i = 0; i < data->num_glyphs; i++) { GLYPH* glyph = &data->glyphs[i]; if (glyph->num_components) { FT_Error error; FT_UShort num_composite_contours = 0; FT_UShort num_composite_points = 0; error = TA_iterate_composite_glyph(data, glyph->components, glyph->num_components, &glyph->pointsums, &glyph->num_pointsums, &num_composite_contours, &num_composite_points); if (error) return error; glyph->num_composite_contours = num_composite_contours; if (font->hint_composites) { /* update maximum values, */ /* including the subglyphs not in `components' array */ /* (each of them has a single point in a single contour) */ if (num_composite_points + glyph->num_pointsums > sfnt->max_composite_points) sfnt->max_composite_points = num_composite_points + glyph->num_pointsums; if (num_composite_contours + glyph->num_pointsums > sfnt->max_composite_contours) sfnt->max_composite_contours = num_composite_contours + glyph->num_pointsums; } } } return TA_Err_Ok; } FT_Error TA_sfnt_split_glyf_table(SFNT* sfnt, FONT* font) { SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; SFNT_Table* loca_table = &font->tables[sfnt->loca_idx]; SFNT_Table* head_table = &font->tables[sfnt->head_idx]; glyf_Data* data; FT_Byte loca_format; FT_ULong offset; FT_ULong offset_next; FT_Byte* p; FT_UShort i; FT_UShort loop_count; FT_Error error; /* in case of success, all allocated arrays are */ /* linked and eventually freed in `TA_font_unload' */ /* nothing to do if table has already been split */ if (glyf_table->data) return TA_Err_Ok; data = (glyf_Data*)calloc(1, sizeof (glyf_Data)); if (!data) return FT_Err_Out_Of_Memory; glyf_table->data = data; loca_format = head_table->buf[LOCA_FORMAT_OFFSET]; data->num_glyphs = loca_format ? loca_table->len / 4 : loca_table->len / 2; loop_count = data->num_glyphs - 1; /* allocate one more glyph slot if we have composite glyphs */ if (!sfnt->max_components || !font->hint_composites) data->num_glyphs -= 1; data->glyphs = (GLYPH*)calloc(1, data->num_glyphs * sizeof (GLYPH)); if (!data->glyphs) return FT_Err_Out_Of_Memory; data->master_globals = NULL; data->cvt_idx = MISSING; data->fpgm_idx = MISSING; data->prep_idx = MISSING; /* first loop over `loca' and `glyf' data */ p = loca_table->buf; if (loca_format) { offset_next = *(p++) << 24; offset_next += *(p++) << 16; offset_next += *(p++) << 8; offset_next += *(p++); } else { offset_next = *(p++) << 8; offset_next += *(p++); offset_next <<= 1; } for (i = 0; i < loop_count; i++) { GLYPH* glyph = &data->glyphs[i]; FT_ULong len; offset = offset_next; if (loca_format) { offset_next = *(p++) << 24; offset_next += *(p++) << 16; offset_next += *(p++) << 8; offset_next += *(p++); } else { offset_next = *(p++) << 8; offset_next += *(p++); offset_next <<= 1; } if (offset_next < offset || offset_next > glyf_table->len) return FT_Err_Invalid_Table; len = offset_next - offset; if (!len) continue; /* empty glyph */ else { FT_Byte* buf; /* check header size */ if (len < 10) return FT_Err_Invalid_Table; /* we need the number of contours and points for */ /* `TA_sfnt_compute_composite_pointsums' */ buf = glyf_table->buf + offset; glyph->num_contours = (FT_Short)((buf[0] << 8) + buf[1]); if (glyph->num_contours < 0) { error = TA_glyph_get_components(glyph, buf, len); if (error) return error; } else { FT_ULong off; /* use the last contour's end point to compute number of points */ off = 10 + (glyph->num_contours - 1) * 2; if (off >= len - 1) return FT_Err_Invalid_Table; glyph->num_points = buf[off] << 8; glyph->num_points += buf[off + 1] + 1; } } } if (sfnt->max_components && font->hint_composites) { error = TA_sfnt_compute_composite_pointsums(sfnt, font); if (error) return error; } /* second loop over `loca' and `glyf' data */ p = loca_table->buf; if (loca_format) { offset_next = *(p++) << 24; offset_next += *(p++) << 16; offset_next += *(p++) << 8; offset_next += *(p++); } else { offset_next = *(p++) << 8; offset_next += *(p++); offset_next <<= 1; } for (i = 0; i < loop_count; i++) { GLYPH* glyph = &data->glyphs[i]; FT_ULong len; offset = offset_next; if (loca_format) { offset_next = *(p++) << 24; offset_next += *(p++) << 16; offset_next += *(p++) << 8; offset_next += *(p++); } else { offset_next = *(p++) << 8; offset_next += *(p++); offset_next <<= 1; } len = offset_next - offset; if (!len) continue; /* empty glyph */ else { FT_Byte* buf; buf = glyf_table->buf + offset; /* We must parse the rest of the glyph record to get the exact */ /* record length. Since the `loca' table rounds record lengths */ /* up to multiples of 4 (or 2 for older fonts), and we must round */ /* up again after stripping off the instructions, it would be */ /* possible otherwise to have more than 4 bytes of padding which */ /* is more or less invalid. */ if (glyph->num_contours < 0) error = TA_glyph_parse_composite(glyph, buf, len, data->num_glyphs, font->hint_composites); else error = TA_glyph_parse_simple(glyph, buf, len); if (error) return error; } } if (sfnt->max_components && font->hint_composites) { /* construct and append our special glyph used as a composite element */ GLYPH* glyph = &data->glyphs[data->num_glyphs - 1]; FT_Byte* buf; glyph->len1 = 12; glyph->len2 = 1; glyph->buf = (FT_Byte*)malloc(glyph->len1 + glyph->len2); if (!glyph->buf) return FT_Err_Out_Of_Memory; buf = glyph->buf; buf[0] = 0x00; /* one contour */ buf[1] = 0x01; buf[2] = 0x00; /* no dimensions */ buf[3] = 0x00; buf[4] = 0x00; buf[5] = 0x00; buf[6] = 0x00; buf[7] = 0x00; buf[8] = 0x00; buf[9] = 0x00; buf[10] = 0x00; /* one contour end point */ buf[11] = 0x00; buf[12] = ON_CURVE | SAME_X | SAME_Y; /* the flags for a point at 0,0 */ /* add bytecode also; */ /* this works because the loop in `TA_sfnt_build_glyf_hints' */ /* doesn't include the newly appended glyph */ glyph->ins_len = sizeof (ttfautohint_glyph_bytecode); glyph->ins_buf = (FT_Byte*)malloc(glyph->ins_len); if (!glyph->ins_buf) return FT_Err_Out_Of_Memory; memcpy(glyph->ins_buf, ttfautohint_glyph_bytecode, glyph->ins_len); sfnt->max_components += 1; } return TA_Err_Ok; } FT_Error TA_sfnt_build_glyf_table(SFNT* sfnt, FONT* font) { FT_Error error; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; GLYPH* glyph; FT_ULong len; FT_Byte* buf_new; FT_Byte* p; FT_UShort i; if (glyf_table->processed) return TA_Err_Ok; if (!font->dehint) { error = TA_sfnt_build_glyf_hints(sfnt, font); if (error) return error; } /* get table size */ len = 0; glyph = data->glyphs; for (i = 0; i < data->num_glyphs; i++, glyph++) { /* glyph records should have offsets which are multiples of 4 */ len = (len + 3) & ~3; len += glyph->len1 + glyph->len2 + glyph->ins_len; /* add two bytes for the instructionLength field */ if (glyph->len2 || glyph->ins_len) len += 2; } /* to make the short format of the `loca' table always work, */ /* assure an even length of the `glyf' table */ glyf_table->len = (len + 1) & ~1; buf_new = (FT_Byte*)realloc(glyf_table->buf, (len + 3) & ~3); if (!buf_new) return FT_Err_Out_Of_Memory; else glyf_table->buf = buf_new; p = glyf_table->buf; glyph = data->glyphs; for (i = 0; i < data->num_glyphs; i++, glyph++) { len = glyph->len1 + glyph->len2 + glyph->ins_len; if (glyph->len2 || glyph->ins_len) len += 2; if (len) { /* copy glyph data and insert new instructions */ memcpy(p, glyph->buf, glyph->len1); if (glyph->len2) { /* simple glyph */ p += glyph->len1; *(p++) = HIGH(glyph->ins_len); *(p++) = LOW(glyph->ins_len); memcpy(p, glyph->ins_buf, glyph->ins_len); p += glyph->ins_len; memcpy(p, glyph->buf + glyph->len1, glyph->len2); p += glyph->len2; } else { /* composite glyph */ if (glyph->ins_len) { *(p + glyph->flags_offset) |= (WE_HAVE_INSTR >> 8); p += glyph->len1; *(p++) = HIGH(glyph->ins_len); *(p++) = LOW(glyph->ins_len); memcpy(p, glyph->ins_buf, glyph->ins_len); p += glyph->ins_len; } else p += glyph->len1; } /* pad with zero bytes to have an offset which is a multiple of 4; */ /* this works even for the last glyph record since the `glyf' */ /* table length is a multiple of 4 also */ switch (len % 4) { case 1: *(p++) = 0; case 2: *(p++) = 0; case 3: *(p++) = 0; default: break; } } } glyf_table->checksum = TA_table_compute_checksum(glyf_table->buf, glyf_table->len); glyf_table->processed = 1; return TA_Err_Ok; } static FT_Error TA_create_glyph_data(FT_Outline* outline, GLYPH* glyph) { FT_Error error = TA_Err_Ok; FT_Pos xmin, ymin; FT_Pos xmax, ymax; FT_Byte header[10]; FT_Byte* flags = NULL; FT_Byte* flagsp; FT_Byte oldf, f; FT_Byte* x = NULL; FT_Byte* xp; FT_Byte* y = NULL; FT_Byte* yp; FT_Pos lastx, lasty; FT_Short i; FT_Byte* p; if (!outline->n_contours) return TA_Err_Ok; /* empty glyph */ /* in case of success, all non-local allocated arrays are */ /* linked and eventually freed in `TA_font_unload' */ glyph->buf = NULL; /* we use `calloc' since we rely on the array */ /* being initialized to zero; */ /* additionally, we need one more byte for a test after the loop */ flags = (FT_Byte*)calloc(1, outline->n_points + 1); if (!flags) { error = FT_Err_Out_Of_Memory; goto Exit; } /* we have either one-byte or two-byte elements */ x = (FT_Byte*)malloc(2 * outline->n_points); if (!x) { error = FT_Err_Out_Of_Memory; goto Exit; } y = (FT_Byte*)malloc(2 * outline->n_points); if (!y) { error = FT_Err_Out_Of_Memory; goto Exit; } flagsp = flags; xp = x; yp = y; xmin = xmax = (outline->points[0].x + 32) >> 6; ymin = ymax = (outline->points[0].y + 32) >> 6; lastx = 0; lasty = 0; oldf = 0x80; /* start with an impossible value */ /* convert the FreeType representation of the glyph's outline */ /* into the representation format of the `glyf' table */ for (i = 0; i < outline->n_points; i++) { FT_Pos xcur = (outline->points[i].x + 32) >> 6; FT_Pos ycur = (outline->points[i].y + 32) >> 6; FT_Pos xdelta = xcur - lastx; FT_Pos ydelta = ycur - lasty; /* we are only interested in bit 0 of the `tags' array */ f = outline->tags[i] & ON_CURVE; /* x value */ if (xdelta == 0) f |= SAME_X; else { if (xdelta < 256 && xdelta > -256) { f |= X_SHORT_VECTOR; if (xdelta < 0) xdelta = -xdelta; else f |= SAME_X; *(xp++) = (FT_Byte)xdelta; } else { *(xp++) = HIGH(xdelta); *(xp++) = LOW(xdelta); } } /* y value */ if (ydelta == 0) f |= SAME_Y; else { if (ydelta < 256 && ydelta > -256) { f |= Y_SHORT_VECTOR; if (ydelta < 0) ydelta = -ydelta; else f |= SAME_Y; *(yp++) = (FT_Byte)ydelta; } else { *(yp++) = HIGH(ydelta); *(yp++) = LOW(ydelta); } } if (f == oldf) { /* set repeat flag */ *(flagsp - 1) |= REPEAT; if (*flagsp == 255) { /* we can only handle 256 repetitions at once, */ /* so use a new counter */ flagsp++; *(flagsp++) = f; } else *flagsp += 1; /* increase repetition counter */ } else { if (*flagsp) flagsp++; /* skip repetition counter */ *(flagsp++) = f; oldf = f; } if (xcur > xmax) xmax = xcur; if (ycur > ymax) ymax = ycur; if (xcur < xmin) xmin = xcur; if (ycur < ymin) ymin = ycur; lastx = xcur; lasty = ycur; } /* if the last byte was a repetition counter, */ /* we must increase by one to get the correct array size */ if (*flagsp) flagsp++; header[0] = HIGH(outline->n_contours); header[1] = LOW(outline->n_contours); header[2] = HIGH(xmin); header[3] = LOW(xmin); header[4] = HIGH(ymin); header[5] = LOW(ymin); header[6] = HIGH(xmax); header[7] = LOW(xmax); header[8] = HIGH(ymax); header[9] = LOW(ymax); /* concatenate all arrays and fill needed GLYPH structure elements */ glyph->len1 = 10 + 2 * outline->n_contours; glyph->len2 = (flagsp - flags) + (xp - x) + (yp - y); glyph->buf = (FT_Byte*)malloc(glyph->len1 + glyph->len2); if (!glyph->buf) { error = FT_Err_Out_Of_Memory; goto Exit; } p = glyph->buf; memcpy(p, header, 10); p += 10; glyph->ins_len = 0; glyph->ins_buf = NULL; for (i = 0; i < outline->n_contours; i++) { *(p++) = HIGH(outline->contours[i]); *(p++) = LOW(outline->contours[i]); } memcpy(p, flags, flagsp - flags); p += flagsp - flags; memcpy(p, x, xp - x); p += xp - x; memcpy(p, y, yp - y); Exit: free(flags); free(x); free(y); return error; } /* We hint each glyph at EM size and construct a new `glyf' table. */ /* Some fonts need this; in particular, */ /* there are CJK fonts which use hints to scale and position subglyphs. */ /* As a consequence, there are no longer composite glyphs. */ FT_Error TA_sfnt_create_glyf_data(SFNT* sfnt, FONT* font) { SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; FT_Face face = sfnt->face; FT_Error error; glyf_Data* data; FT_UShort i; /* in case of success, all allocated arrays are */ /* linked and eventually freed in `TA_font_unload' */ /* nothing to do if table has already been created */ if (glyf_table->data) return TA_Err_Ok; data = (glyf_Data*)calloc(1, sizeof (glyf_Data)); if (!data) return FT_Err_Out_Of_Memory; glyf_table->data = data; data->num_glyphs = face->num_glyphs; data->glyphs = (GLYPH*)calloc(1, data->num_glyphs * sizeof (GLYPH)); if (!data->glyphs) return FT_Err_Out_Of_Memory; /* XXX: Make size configurable */ /* we use the EM size */ /* so that the resulting coordinates can be used without transformation */ error = FT_Set_Char_Size(face, face->units_per_EM * 64, 0, 72, 0); if (error) return error; /* loop over all glyphs in font face */ for (i = 0; i < data->num_glyphs; i++) { GLYPH* glyph = &data->glyphs[i]; error = FT_Load_Glyph(face, i, FT_LOAD_NO_BITMAP | FT_LOAD_NO_AUTOHINT); if (error) return error; error = TA_create_glyph_data(&face->glyph->outline, glyph); if (error) return error; } return TA_Err_Ok; } /* While the auto-hinter is glyph oriented (this is, using `glyf' data), */ /* it relies on the `cmap' table to get script coverage data. */ /* In TTCs, subfonts normally share the same `glyf' table */ /* but use different `cmap's. Covering the most common situation, */ /* namely a single `glyf' table and multiple `cmap's, */ /* ttfautohint merges coverage data for the first subfont's `glyf' table */ /* with all other subfonts that also use this very `glyf' table. */ FT_Error TA_sfnt_handle_coverage(SFNT* sfnt, FONT* font) { FT_Error error; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Face face = sfnt->face; TA_FaceGlobals curr_globals; TA_Script saved_fallback_script = font->fallback_script; /* using TA_SCRIPT_NONE as the fallback script ensures */ /* that uncovered glyphs stay as-is */ /* (we handle the fallback script later on) */ font->fallback_script = TA_SCRIPT_NONE; /* trigger computation of coverage */ error = ta_loader_init(font); if (error) goto Exit; error = ta_loader_reset(font, face); if (error) goto Exit; ta_loader_done(font); font->fallback_script = saved_fallback_script; curr_globals = (TA_FaceGlobals)face->autohint.data; if (!data->master_globals) { /* initialize */ data->master_globals = curr_globals; goto Exit; } /* we have the same `glyf' table for another subfont; */ /* merge the current coverage info into the `master' coverage info */ { TA_FaceGlobals master_globals = data->master_globals; FT_Long count = master_globals->glyph_count; FT_Byte* master = master_globals->glyph_scripts; FT_Byte* curr = curr_globals->glyph_scripts; FT_Byte* limit = master + count; /* we simply copy the data, */ /* assuming that a given glyph always has the same properties -- */ /* as soon as we make the script selection more fine-grained, */ /* it is possible that this assumption doesn't hold: */ /* for example, glyph `A' can be used for both Cyrillic and Latin */ while (master < limit) { if ((*curr & ~TA_DIGIT) != TA_SCRIPT_NONE) *master = *curr; master++; curr++; } } Exit: return error; } FT_Bool TA_sfnt_adjust_master_coverage(SFNT* sfnt, FONT* font) { SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Face face = sfnt->face; TA_FaceGlobals master_globals = data->master_globals; TA_FaceGlobals curr_globals = (TA_FaceGlobals)face->autohint.data; /* use fallback script for uncovered glyphs */ if (master_globals == curr_globals) { FT_Long nn; FT_Byte* gscripts = master_globals->glyph_scripts; for (nn = 0; nn < master_globals->glyph_count; nn++) { if ((gscripts[nn] & ~TA_DIGIT) == TA_SCRIPT_NONE) { gscripts[nn] &= ~TA_SCRIPT_NONE; gscripts[nn] |= master_globals->font->fallback_script; } } return 1; /* master coverage adjusted */ } else return 0; } #if 0 void TA_sfnt_copy_master_coverage(SFNT* sfnt, FONT* font) { SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Face face = sfnt->face; TA_FaceGlobals master_globals = data->master_globals; TA_FaceGlobals curr_globals = (TA_FaceGlobals)face->autohint.data; if (master_globals != curr_globals) { FT_Long count = master_globals->glyph_count; FT_Byte* master = master_globals->glyph_scripts; FT_Byte* curr = curr_globals->glyph_scripts; memcpy(curr, master, count); } } #endif /* 0 */ /* end of taglyf.c */ ttfautohint-0.97/lib/afblue.pl0000644000175000001440000003053412227174255013314 00000000000000#! /usr/bin/perl -w # -*- Perl -*- # # afblue.pl # # Process a blue zone character data file. # # Copyright 2013 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, # modified, and distributed under the terms of the FreeType project # license, LICENSE.TXT. By continuing to use, modify, or distribute # this file you indicate that you have read the license and # understand and accept it fully. use strict; use warnings; use English '-no_match_vars'; use open ':std', ':locale'; my $prog = $PROGRAM_NAME; $prog =~ s| .* / ||x; # Remove path. die "usage: $prog datafile < infile > outfile\n" if $#ARGV != 0; my $datafile = $ARGV[0]; my %diversions; # The extracted and massaged data from `datafile'. my @else_stack; # Booleans to track else-clauses. my @name_stack; # Stack of integers used for names of aux. variables. my $curr_enum; # Name of the current enumeration. my $curr_array; # Name of the current array. my $curr_max; # Name of the current maximum value. my $curr_enum_element; # Name of the current enumeration element. my $curr_offset; # The offset relative to current aux. variable. my $curr_elem_size; # The size of the current string or block. my $have_sections = 0; # Boolean; set if start of a section has been seen. my $have_strings; # Boolean; set if current section contains strings. my $have_blocks; # Boolean; set if current section contains blocks. my $have_enum_element; # Boolean; set if we have an enumeration element. my $in_string; # Boolean; set if a string has been parsed. my $num_sections = 0; # Number of sections seen so far. my $last_aux; # Name of last auxiliary variable. # Regular expressions. # [] [] ':' [] '\n' my $section_re = qr/ ^ \s* (\S+) \s+ (\S+) \s+ (\S+) \s* : \s* $ /x; # [] [] '\n' my $enum_element_re = qr/ ^ \s* ( [A-Za-z0-9_]+ ) \s* $ /x; # '#' '\n' my $preprocessor_re = qr/ ^ \# /x; # '/' '/' '\n' my $comment_re = qr| ^ // |x; # empty line my $whitespace_only_re = qr/ ^ \s* $ /x; # [] '"' '"' [] '\n' ( doesn't contain newlines) my $string_re = qr/ ^ \s* " ( (?: [^"\\]++ | \\. )*+ ) " \s* $ /x; # [] '{' '}' [] '\n' ( can contain newlines) my $block_start_re = qr/ ^ \s* \{ /x; # We need the capturing group for `split' to make it return the separator # tokens (i.e., the opening and closing brace) also. my $brace_re = qr/ ( [{}] ) /x; sub Warn { my $message = shift; warn "$datafile:$INPUT_LINE_NUMBER: warning: $message\n"; } sub Die { my $message = shift; die "$datafile:$INPUT_LINE_NUMBER: error: $message\n"; } my $warned_before = 0; sub warn_before { Warn("data before first section gets ignored") unless $warned_before; $warned_before = 1; } sub strip_newline { chomp; s/ \x0D $ //x; } sub end_curr_string { # Append final null byte to string. if ($have_strings) { push @{$diversions{$curr_array}}, " '\\0',\n" if $in_string; $curr_offset++; $in_string = 0; } } sub update_max_elem_size { if ($curr_elem_size) { my $max = pop @{$diversions{$curr_max}}; $max = $curr_elem_size if $curr_elem_size > $max; push @{$diversions{$curr_max}}, $max; } } sub convert_non_ascii_char { # A UTF-8 character outside of the printable ASCII range, with possibly a # leading backslash character. my $s = shift; # Here we count characters, not bytes. $curr_elem_size += length $s; utf8::encode($s); $s = uc unpack 'H*', $s; $curr_offset += $s =~ s/\G(..)/'\\x$1', /sg; return $s; } sub convert_ascii_chars { # A series of ASCII characters in the printable range. my $s = shift; my $count = $s =~ s/\G(.)/'$1', /g; $curr_offset += $count; $curr_elem_size += $count; return $s; } sub convert_literal { my $s = shift; my $orig = $s; # ASCII printables and space my $safe_re = '\x20-\x7E'; # ASCII printables and space, no backslash my $safe_no_backslash_re = '\x20-\x5B\x5D-\x7E'; $s =~ s{ (?: \\? ( [^$safe_re] ) | ( (?: [$safe_no_backslash_re] | \\ [$safe_re] )+ ) ) } { defined($1) ? convert_non_ascii_char($1) : convert_ascii_chars($2) }egx; # We assume that `$orig' doesn't contain `*/' return $s . " /* $orig */"; } sub aux_name { return "af_blue_" . $num_sections. "_" . join('_', reverse @name_stack); } sub aux_name_next { $name_stack[$#name_stack]++; my $name = aux_name(); $name_stack[$#name_stack]--; return $name; } sub enum_val_string { # Build string which holds code to save the current offset in an # enumeration element. my $aux = shift; my $add = ($last_aux eq "af_blue_" . $num_sections . "_0" ) ? "" : "$last_aux + "; return " $aux = $add$curr_offset,\n"; } # Process data file. open(DATA, $datafile) || die "$prog: can't open \`$datafile': $OS_ERROR\n"; while () { strip_newline(); next if /$comment_re/; next if /$whitespace_only_re/; if (/$section_re/) { Warn("previous section is empty") if ($have_sections && !$have_strings && !$have_blocks); end_curr_string(); update_max_elem_size(); # Save captured groups from `section_re'. $curr_enum = $1; $curr_array = $2; $curr_max = $3; $curr_enum_element = ""; $curr_offset = 0; Warn("overwriting already defined enumeration \`$curr_enum'") if exists($diversions{$curr_enum}); Warn("overwriting already defined array \`$curr_array'") if exists($diversions{$curr_array}); Warn("overwriting already defined maximum value \`$curr_max'") if exists($diversions{$curr_max}); $diversions{$curr_enum} = []; $diversions{$curr_array} = []; $diversions{$curr_max} = []; push @{$diversions{$curr_max}}, 0; @name_stack = (); push @name_stack, 0; $have_sections = 1; $have_strings = 0; $have_blocks = 0; $have_enum_element = 0; $in_string = 0; $num_sections++; $curr_elem_size = 0; $last_aux = aux_name(); next; } if (/$preprocessor_re/) { if ($have_sections) { # Having preprocessor conditionals complicates the computation of # correct offset values. We have to introduce auxiliary enumeration # elements with the name `af_blue____...' which store # offsets to be used in conditional clauses. `' is the number of # sections seen so far, `' is the number of `#if' and `#endif' # conditionals seen so far in the topmost level, `' the number of # `#if' and `#endif' conditionals seen so far one level deeper, etc. # As a consequence, uneven values are used within a clause, and even # values after a clause, since the C standard doesn't allow the # redefinition of an enumeration value. For example, the name # `af_blue_5_1_6' is used to construct enumeration values in the fifth # section after the third (second-level) if-clause within the first # (top-level) if-clause. After the first top-level clause has # finished, `af_blue_5_2' is used. The current offset is then # relative to the value stored in the current auxiliary element. if (/ ^ \# \s* if /x) { push @else_stack, 0; $name_stack[$#name_stack]++; push @{$diversions{$curr_enum}}, enum_val_string(aux_name()); $last_aux = aux_name(); push @name_stack, 0; $curr_offset = 0; } elsif (/ ^ \# \s* elif /x) { Die("unbalanced #elif") unless @else_stack; pop @name_stack; push @{$diversions{$curr_enum}}, enum_val_string(aux_name_next()); $last_aux = aux_name(); push @name_stack, 0; $curr_offset = 0; } elsif (/ ^ \# \s* else /x) { my $prev_else = pop @else_stack; Die("unbalanced #else") unless defined($prev_else); Die("#else already seen") if $prev_else; push @else_stack, 1; pop @name_stack; push @{$diversions{$curr_enum}}, enum_val_string(aux_name_next()); $last_aux = aux_name(); push @name_stack, 0; $curr_offset = 0; } elsif (/ ^ \# \s* endif /x) { my $prev_else = pop @else_stack; Die("unbalanced #endif") unless defined($prev_else); pop @name_stack; $name_stack[$#name_stack]++; # If there is no else-clause for an if-clause, we add one. This is # necessary to have correct offsets. if (!$prev_else) { push @{$diversions{$curr_enum}}, enum_val_string(aux_name()) . "#else\n"; $curr_offset = 0; } push @{$diversions{$curr_enum}}, enum_val_string(aux_name()); $last_aux = aux_name(); $curr_offset = 0; } # Handle (probably continued) preprocessor lines. CONTINUED_LOOP: { do { strip_newline(); push @{$diversions{$curr_enum}}, $ARG . "\n"; push @{$diversions{$curr_array}}, $ARG . "\n"; last CONTINUED_LOOP unless / \\ $ /x; } while (); } } else { warn_before(); } next; } if (/$enum_element_re/) { end_curr_string(); update_max_elem_size(); $curr_enum_element = $1; $have_enum_element = 1; $curr_elem_size = 0; next; } if (/$string_re/) { if ($have_sections) { Die("strings and blocks can't be mixed in a section") if $have_blocks; # Save captured group from `string_re'. my $string = $1; if ($have_enum_element) { push @{$diversions{$curr_enum}}, enum_val_string($curr_enum_element); $have_enum_element = 0; } $string = convert_literal($string); push @{$diversions{$curr_array}}, " $string\n"; $have_strings = 1; $in_string = 1; } else { warn_before(); } next; } if (/$block_start_re/) { if ($have_sections) { Die("strings and blocks can't be mixed in a section") if $have_strings; my $depth = 0; my $block = ""; my $block_end = 0; # Count braces while getting the block. BRACE_LOOP: { do { strip_newline(); foreach my $substring (split(/$brace_re/)) { if ($block_end) { Die("invalid data after last matching closing brace") if $substring !~ /$whitespace_only_re/; } $block .= $substring; if ($substring eq '{') { $depth++; } elsif ($substring eq '}') { $depth--; $block_end = 1 if $depth == 0; } } # If we are here, we have run out of substrings, so get next line # or exit. last BRACE_LOOP if $block_end; $block .= "\n"; } while (); } if ($have_enum_element) { push @{$diversions{$curr_enum}}, enum_val_string($curr_enum_element); $have_enum_element = 0; } push @{$diversions{$curr_array}}, $block . ",\n"; $curr_offset++; $curr_elem_size++; $have_blocks = 1; } else { warn_before(); } next; } # Garbage. We weren't able to parse the data. Die("syntax error"); } # Finalize data. end_curr_string(); update_max_elem_size(); # Filter stdin to stdout, replacing `@...@' templates. sub emit_diversion { my $diversion_name = shift; return (exists($diversions{$1})) ? "@{$diversions{$1}}" : "@" . $diversion_name . "@"; } $LIST_SEPARATOR = ''; my $s1 = "This file has been generated by the Perl script \`$prog',"; my $s1len = length $s1; my $s2 = "using data from file \`$datafile'."; my $s2len = length $s2; my $slen = ($s1len > $s2len) ? $s1len : $s2len; print "/* " . $s1 . " " x ($slen - $s1len) . " */\n" . "/* " . $s2 . " " x ($slen - $s2len) . " */\n" . "\n"; while () { s/ @ ( [A-Za-z0-9_]+? ) @ / emit_diversion($1) /egx; print; } # EOF ttfautohint-0.97/lib/tablue.dat0000644000175000001440000001503612230560701013454 00000000000000// tablue.dat // // Auto-fitter data for blue strings. // // Copyright (C) 2011-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. // originally file `afblue.dat' (2013-Sep-22) from FreeType */ // This file contains data specific to blue zones. It gets processed by // a script to simulate `jagged arrays', with enumeration values holding // offsets into the arrays. // // The format of the file is rather simple: A section starts with three // labels separated by whitespace and followed by a colon (everything in a // single line); the first label gives the name of the enumeration template, // the second the name of the array template, and the third the name of the // `maximum' template, holding the size of the largest array element. The // script then fills the corresponding templates (indicated by `@' // characters around the name). // // A section contains one or more data records. Each data record consists // of two or more lines. The first line holds the enumeration name, and the // remaining lines the corresponding array data. // // There are two possible representations for array data. // // - A string of characters in UTF-8 encoding enclosed in double quotes, // using C syntax. There can be only one string per line, thus the // starting and ending double quote must be the first and last character // in the line, respectively, ignoring whitespace before and after the // string. If there are multiple strings (in multiple lines), they are // concatenated to a single string. In the output, a string gets // represented as a series of singles bytes, followed by a zero byte. The // enumeration values simply hold byte offsets to the start of the // corresponding strings. // // - Data blocks enclosed in balanced braces, which get copied verbatim and // which can span multiple lines. The opening brace of a block must be // the first character of a line (ignoring whitespace), and the closing // brace the last (ignoring whitespace also). The script appends a comma // character after each block and counts the number of blocks to set the // enumeration values. // // A section can contain either strings only or data blocks only. // // A comment line starts with `//'; it gets removed. A preprocessor // directive line (using the standard syntax of `cpp') starts with `#' and // gets copied verbatim to both the enumeration and the array. Whitespace // outside of a string is insignificant. // // Preprocessor directives are ignored while the script computes maximum // values; this essentially means that the maximum values can easily be too // large. Given that the purpose of those values is to create local // fixed-size arrays at compile time for further processing of the blue zone // data, this isn't a problem. Note the the final zero byte of a string is // not counted. Note also that the count holds the number of UTF-8 encoded // characters, not bytes. TA_BLUE_STRING_ENUM TA_BLUE_STRINGS_ARRAY TA_BLUE_STRING_MAX_LEN: TA_BLUE_STRING_LATIN_CAPITAL_TOP "THEZOCQS" TA_BLUE_STRING_LATIN_CAPITAL_BOTTOM "HEZLOCUS" TA_BLUE_STRING_LATIN_SMALL_F_TOP "fijkdbh" TA_BLUE_STRING_LATIN_SMALL "xzroesc" TA_BLUE_STRING_LATIN_SMALL_DESCENDER "pqgjy" TA_BLUE_STRING_GREEK_CAPITAL_TOP "ΓΒΕΖΘΟΩ" TA_BLUE_STRING_GREEK_CAPITAL_BOTTOM "ΒΔΖΞΘΟ" TA_BLUE_STRING_GREEK_SMALL_BETA_TOP "βθδζλξ" TA_BLUE_STRING_GREEK_SMALL "αειοπστω" TA_BLUE_STRING_GREEK_SMALL_DESCENDER "βγημÏφχψ" TA_BLUE_STRING_CYRILLIC_CAPITAL_TOP "БВЕПЗОСЭ" TA_BLUE_STRING_CYRILLIC_CAPITAL_BOTTOM "БВЕШЗОСЭ" TA_BLUE_STRING_CYRILLIC_SMALL "хпншезоÑ" TA_BLUE_STRING_CYRILLIC_SMALL_DESCENDER "руф" TA_BLUE_STRING_HEBREW_TOP "בדהחךכ×ס" TA_BLUE_STRING_HEBREW_BOTTOM "בטכ×סצ" TA_BLUE_STRING_HEBREW_DESCENDER "קךןףץ" TA_BLUE_STRINGSET_ENUM TA_BLUE_STRINGSETS_ARRAY TA_BLUE_STRINGSET_MAX_LEN: TA_BLUE_STRINGSET_LATN { TA_BLUE_STRING_LATIN_CAPITAL_TOP, TA_BLUE_PROPERTY_LATIN_TOP } { TA_BLUE_STRING_LATIN_CAPITAL_BOTTOM, 0 } { TA_BLUE_STRING_LATIN_SMALL_F_TOP, TA_BLUE_PROPERTY_LATIN_TOP } { TA_BLUE_STRING_LATIN_SMALL, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_X_HEIGHT } { TA_BLUE_STRING_LATIN_SMALL, 0 } { TA_BLUE_STRING_LATIN_SMALL_DESCENDER, 0 } { TA_BLUE_STRING_MAX, 0 } TA_BLUE_STRINGSET_GREK { TA_BLUE_STRING_GREEK_CAPITAL_TOP, TA_BLUE_PROPERTY_LATIN_TOP } { TA_BLUE_STRING_GREEK_CAPITAL_BOTTOM, 0 } { TA_BLUE_STRING_GREEK_SMALL_BETA_TOP, TA_BLUE_PROPERTY_LATIN_TOP } { TA_BLUE_STRING_GREEK_SMALL, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_X_HEIGHT } { TA_BLUE_STRING_GREEK_SMALL, 0 } { TA_BLUE_STRING_GREEK_SMALL_DESCENDER, 0 } { TA_BLUE_STRING_MAX, 0 } TA_BLUE_STRINGSET_CYRL { TA_BLUE_STRING_CYRILLIC_CAPITAL_TOP, TA_BLUE_PROPERTY_LATIN_TOP } { TA_BLUE_STRING_CYRILLIC_CAPITAL_BOTTOM, 0 } { TA_BLUE_STRING_CYRILLIC_SMALL, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_X_HEIGHT } { TA_BLUE_STRING_CYRILLIC_SMALL, 0 } { TA_BLUE_STRING_CYRILLIC_SMALL_DESCENDER, 0 } { TA_BLUE_STRING_MAX, 0 } TA_BLUE_STRINGSET_HEBR { TA_BLUE_STRING_HEBREW_TOP, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_LONG } { TA_BLUE_STRING_HEBREW_BOTTOM, 0 } { TA_BLUE_STRING_HEBREW_DESCENDER, 0 } { TA_BLUE_STRING_MAX, 0 } // END ttfautohint-0.97/lib/taprep.c0000644000175000001440000005263712235144757013173 00000000000000/* taprep.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" #define PREP(snippet_name) prep_ ## snippet_name unsigned char PREP(hinting_limit_a) [] = { /* first of all, check whether we do hinting at all */ MPPEM, PUSHW_1, }; /* %d, hinting size limit */ unsigned char PREP(hinting_limit_b) [] = { GT, IF, PUSHB_2, 1, /* switch off hinting */ 1, INSTCTRL, EIF, }; /* we often need 0x10000 which can't be pushed directly onto the stack, */ /* thus we provide it in the CVT as `cvtl_0x10000'; */ /* at the same time, we store it in CVT index `cvtl_funits_to_pixels' also */ /* as a scaled value to have a conversion factor from FUnits to pixels */ unsigned char PREP(store_0x10000) [] = { PUSHW_2, 0x08, /* 0x800 */ 0x00, 0x08, /* 0x800 */ 0x00, MUL, /* 0x10000 */ DUP, PUSHB_1, cvtl_0x10000, SWAP, WCVTP, PUSHB_1, cvtl_funits_to_pixels, SWAP, WCVTF, /* store value 1 in 16.16 format, scaled */ }; /* store number of scripts (needed in `fpgm' table) */ unsigned char PREP(store_num_used_scripts_a) [] = { PUSHB_2, cvtl_num_used_scripts, }; /* %c, number of used scripts */ unsigned char PREP(store_num_used_scripts_b) [] = { WCVTP, }; /* if the current ppem value is an exception, don't apply scaling */ unsigned char PREP(test_exception_a) [] = { PUSHB_1, cvtl_is_element, RCVT, NOT, IF, }; /* provide scaling factors for all scripts */ unsigned char PREP(align_top_a) [] = { PUSHB_2, sal_i, CVT_SCALING_VALUE_OFFSET(0), WS, }; /* PUSH (num_used_scripts + 2) */ /* ... */ /* %c, script 1's x height blue zone idx */ /* %c, script 0's x height blue zone idx */ /* %c, num_used_scripts */ unsigned char PREP(align_top_b) [] = { bci_align_top, LOOPCALL, }; unsigned char PREP(loop_cvt_a) [] = { /* loop over (almost all) vertical CVT entries of all scripts, part 1 */ PUSHB_2, sal_i, CVT_SCALING_VALUE_OFFSET(0), WS, }; /* PUSH (2*num_used_scripts + 2) */ /* ... */ /* %c, script 1's first vertical index */ /* %c, script 1's number of vertical indices */ /* (std. width, widths, flat blues zones without artifical ones) */ /* %c, script 0's first vertical index */ /* %c, script 0's number of vertical indices */ /* (std. width, widths, flat blues zones without artifical ones) */ /* %c, num_used_scripts */ unsigned char PREP(loop_cvt_b) [] = { bci_cvt_rescale_range, LOOPCALL, /* loop over (almost all) vertical CVT entries of all scripts, part 2 */ PUSHB_2, sal_i, CVT_SCALING_VALUE_OFFSET(0), WS, }; /* PUSH (2*num_used_scripts + 2) */ /* ... */ /* %c, script 1's first round blue zone index */ /* %c, script 1's number of round blue zones (without artificial ones) */ /* %c, script 0's first round blue zone index */ /* %c, script 0's number of round blue zones (without artificial ones) */ /* %c, num_used_scripts */ unsigned char PREP(loop_cvt_c) [] = { bci_cvt_rescale_range, LOOPCALL, }; unsigned char PREP(test_exception_b) [] = { EIF, }; unsigned char PREP(store_vwidth_data_a) [] = { PUSHB_2, sal_i, }; /* %c, offset to vertical width offset data in CVT */ unsigned char PREP(store_vwidth_data_b) [] = { WS, }; /*PUSH (num_used_scripts + 2) */ /* ... */ /* %c, script 1's first vertical width index */ /* %c, script 0's first vertical width index */ /* %c, num_used_scripts */ unsigned char PREP(store_vwidth_data_c) [] = { bci_vwidth_data_store, LOOPCALL, PUSHB_2, sal_i, }; /* %c, offset to vertical width size data in CVT */ unsigned char PREP(store_vwidth_data_d) [] = { WS, }; /*PUSH (num_used_scripts + 2) */ /* ... */ /* %c, script 1's number of vertical widths */ /* %c, script 0's number of vertical widths */ /* %c, num_used_scripts */ unsigned char PREP(store_vwidth_data_e) [] = { bci_vwidth_data_store, LOOPCALL, }; /*PUSH (2*num_used_scripts + 2) */ /* ... */ /* %c, script 1's first blue ref index */ /* %c, script 1's number of blue ref indices */ /* %c, script 0's first blue ref index */ /* %c, script 0's number of blue ref indices */ /* %c, num_used_scripts */ unsigned char PREP(round_blues) [] = { bci_blue_round_range, LOOPCALL, }; unsigned char PREP(set_stem_width_handling_a) [] = { /* * There are two ClearType flavours available on Windows: The older GDI * ClearType, introduced in 2000, and the recent DW ClearType, introduced * in 2008. The main difference is that the older incarnation behaves * like a B/W renderer along the y axis, while the newer version does * vertical smoothing also. * * The only possibility to differentiate between GDI and DW ClearType is * testing bit 10 in the GETINFO instruction (with return value in bit 17; * this works for TrueType version >= 38), checking whether sub-pixel * positioning is available. * * If GDI ClearType is active, we use a different stem width function * which snaps to integer pixels as much as possible. */ /* set default positioning */ PUSHB_2, cvtl_stem_width_function, }; /* %d, either bci_smooth_stem_width or bci_strong_stem_width */ unsigned char PREP(set_stem_width_handling_b) [] = { WCVTP, /* get rasterizer version (bit 0) */ PUSHB_2, 36, 0x01, GETINFO, /* `GDI ClearType': */ /* version >= 36 and version < 38, ClearType enabled */ LTEQ, IF, /* check whether ClearType is enabled (bit 6) */ PUSHB_1, 0x40, GETINFO, IF, PUSHB_2, cvtl_stem_width_function, }; /* %d, either bci_smooth_stem_width or bci_strong_stem_width */ unsigned char PREP(set_stem_width_handling_c) [] = { WCVTP, /* get rasterizer version (bit 0) */ PUSHB_2, 38, 0x01, GETINFO, /* `DW ClearType': */ /* version >= 38, sub-pixel positioning is enabled */ LTEQ, IF, /* check whether sub-pixel positioning is enabled (bit 10) -- */ /* due to a bug in FreeType 2.5.0 and earlier, */ /* bit 6 must be set also to get the correct information, */ /* so we test that both return values (in bits 13 and 17) are set */ PUSHW_3, 0x08, /* bits 13 and 17 shifted by 6 bits */ 0x80, 0x00, /* we do `MUL' with value 1, */ 0x01, /* which is essentially a division by 64 */ 0x04, /* bits 6 and 10 */ 0x40, GETINFO, MUL, EQ, IF, PUSHB_2, cvtl_stem_width_function, }; /* %d, either bci_smooth_stem_width or bci_strong_stem_width */ unsigned char PREP(set_stem_width_handling_d) [] = { WCVTP, EIF, EIF, EIF, EIF, }; unsigned char PREP(set_dropout_mode) [] = { PUSHW_1, 0x01, /* 0x01FF, activate dropout handling unconditionally */ 0xFF, SCANCTRL, PUSHB_1, 4, /* smart dropout include stubs */ SCANTYPE, }; unsigned char PREP(reset_component_counter) [] = { /* In case an application tries to render `.ttfautohint' */ /* (which it should never do), */ /* hinting of all glyphs rendered afterwards is disabled */ /* because the `cvtl_is_subglyph' counter gets incremented, */ /* but there is no counterpart to decrement it. */ /* Font inspection tools like the FreeType demo programs */ /* are an exception to that rule, however, */ /* since they can directly access a font by glyph indices. */ /* The following guard alleviates the problem a bit: */ /* Any change of the graphics state */ /* (for example, rendering at a different size or with a different mode) */ /* resets the counter to zero. */ PUSHB_2, cvtl_is_subglyph, 0, WCVTP, }; /* this function allocates `buf', parsing `number_set' to create bytecode */ /* which eventually sets CVT index `cvtl_is_element' */ /* (in functions `bci_number_set_is_element' and */ /* `bci_number_set_is_element2') */ static FT_Byte* TA_sfnt_build_number_set(SFNT* sfnt, FT_Byte** buf, number_range* number_set) { FT_Byte* bufp = NULL; number_range* nr; FT_UInt num_singles2 = 0; FT_UInt* single2_args; FT_UInt* single2_arg; FT_UInt num_singles = 0; FT_UInt* single_args; FT_UInt* single_arg; FT_UInt num_ranges2 = 0; FT_UInt* range2_args; FT_UInt* range2_arg; FT_UInt num_ranges = 0; FT_UInt* range_args; FT_UInt* range_arg; FT_UInt have_single = 0; FT_UInt have_range = 0; FT_UShort num_stack_elements; /* build up four stacks to stay as compact as possible */ nr = number_set; while (nr) { if (nr->start == nr->end) { if (nr->start < 256) num_singles++; else num_singles2++; } else { if (nr->start < 256 && nr->end < 256) num_ranges++; else num_ranges2++; } nr = nr->next; } /* collect all arguments temporarily in arrays (in reverse order) */ /* so that we can easily split into chunks of 255 args */ /* as needed by NPUSHB and friends; */ /* for simplicity, always allocate an extra slot */ single2_args = (FT_UInt*)malloc((num_singles2 + 1) * sizeof (FT_UInt)); single_args = (FT_UInt*)malloc((num_singles + 1) * sizeof (FT_UInt)); range2_args = (FT_UInt*)malloc((2 * num_ranges2 + 1) * sizeof (FT_UInt)); range_args = (FT_UInt*)malloc((2 * num_ranges + 1) * sizeof (FT_UInt)); if (!single2_args || !single_args || !range2_args || !range_args) goto Fail; /* check whether we need the extra slot for the argument to CALL */ if (num_singles || num_singles2) have_single = 1; if (num_ranges || num_ranges2) have_range = 1; /* set function indices outside of argument loop (using the extra slot) */ if (have_single) single_args[num_singles] = bci_number_set_is_element; if (have_range) range_args[2 * num_ranges] = bci_number_set_is_element2; single2_arg = single2_args + num_singles2 - 1; single_arg = single_args + num_singles - 1; range2_arg = range2_args + 2 * num_ranges2 - 1; range_arg = range_args + 2 * num_ranges - 1; nr = number_set; while (nr) { if (nr->start == nr->end) { if (nr->start < 256) *(single_arg--) = nr->start; else *(single2_arg--) = nr->start; } else { if (nr->start < 256 && nr->end < 256) { *(range_arg--) = nr->start; *(range_arg--) = nr->end; } else { *(range2_arg--) = nr->start; *(range2_arg--) = nr->end; } } nr = nr->next; } /* this rough estimate of the buffer size gets adjusted later on */ *buf = (FT_Byte*)malloc((2 + 1) * num_singles2 + (1 + 1) * num_singles + (4 + 1) * num_ranges2 + (2 + 1) * num_ranges + 10); if (!*buf) goto Fail; bufp = *buf; BCI(PUSHB_2); BCI(cvtl_is_element); BCI(0); BCI(WCVTP); bufp = TA_build_push(bufp, single2_args, num_singles2, 1, 1); bufp = TA_build_push(bufp, single_args, num_singles + have_single, 0, 1); if (have_single) BCI(CALL); bufp = TA_build_push(bufp, range2_args, 2 * num_ranges2, 1, 1); bufp = TA_build_push(bufp, range_args, 2 * num_ranges + have_range, 0, 1); if (have_range) BCI(CALL); num_stack_elements = num_singles + num_singles2; if (num_stack_elements > num_ranges + num_ranges2) num_stack_elements = num_ranges + num_ranges2; num_stack_elements += ADDITIONAL_STACK_ELEMENTS; if (num_stack_elements > sfnt->max_stack_elements) sfnt->max_stack_elements = num_stack_elements; Fail: free(single2_args); free(single_args); free(range2_args); free(range_args); return bufp; } #define COPY_PREP(snippet_name) \ do \ { \ memcpy(bufp, prep_ ## snippet_name, \ sizeof (prep_ ## snippet_name)); \ bufp += sizeof (prep_ ## snippet_name); \ } while (0) static FT_Error TA_table_build_prep(FT_Byte** prep, FT_ULong* prep_len, SFNT* sfnt, FONT* font) { SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Int i; FT_Byte* buf = NULL; FT_Byte* buf_new; FT_UInt buf_len; FT_UInt buf_new_len; FT_UInt len; FT_Byte* bufp = NULL; if (font->x_height_snapping_exceptions) { bufp = TA_sfnt_build_number_set(sfnt, &buf, font->x_height_snapping_exceptions); if (!bufp) return FT_Err_Out_Of_Memory; } buf_len = bufp - buf; buf_new_len = buf_len; if (font->hinting_limit) buf_new_len += sizeof (PREP(hinting_limit_a)) + 2 + sizeof (PREP(hinting_limit_b)); buf_new_len += sizeof (PREP(store_0x10000)); buf_new_len += sizeof (PREP(store_num_used_scripts_a)) + 1 + sizeof (PREP(store_num_used_scripts_b)); if (font->x_height_snapping_exceptions) buf_new_len += sizeof (PREP(test_exception_a)); buf_new_len += sizeof (PREP(align_top_a)) + (data->num_used_scripts > 6 ? data->num_used_scripts + 3 : data->num_used_scripts + 2) + sizeof (PREP(align_top_b)); buf_new_len += sizeof (PREP(loop_cvt_a)) + (data->num_used_scripts > 3 ? 2 * data->num_used_scripts + 3 : 2 * data->num_used_scripts + 2) + sizeof (PREP(loop_cvt_b)) + (data->num_used_scripts > 3 ? 2 * data->num_used_scripts + 3 : 2 * data->num_used_scripts + 2) + sizeof (PREP(loop_cvt_c)); if (font->x_height_snapping_exceptions) buf_new_len += sizeof (PREP(test_exception_b)); buf_new_len += sizeof (PREP(store_vwidth_data_a)) + 1 + sizeof (PREP(store_vwidth_data_b)) + (data->num_used_scripts > 6 ? data->num_used_scripts + 3 : data->num_used_scripts + 2) + sizeof (PREP(store_vwidth_data_c)) + 1 + sizeof (PREP(store_vwidth_data_d)) + (data->num_used_scripts > 6 ? data->num_used_scripts + 3 : data->num_used_scripts + 2) + sizeof (PREP(store_vwidth_data_e)); buf_new_len += (data->num_used_scripts > 3 ? 2 * data->num_used_scripts + 3 : 2 * data->num_used_scripts + 2) + sizeof (PREP(round_blues)); buf_new_len += sizeof (PREP(set_stem_width_handling_a)) + 1 + sizeof (PREP(set_stem_width_handling_b)) + 1 + sizeof (PREP(set_stem_width_handling_c)) + 1 + sizeof (PREP(set_stem_width_handling_d)); buf_new_len += sizeof (PREP(set_dropout_mode)); buf_new_len += sizeof (PREP(reset_component_counter)); /* buffer length must be a multiple of four */ len = (buf_new_len + 3) & ~3; buf_new = (FT_Byte*)realloc(buf, len); if (!buf_new) { free(buf); return FT_Err_Out_Of_Memory; } buf = buf_new; /* pad end of buffer with zeros */ buf[len - 1] = 0x00; buf[len - 2] = 0x00; buf[len - 3] = 0x00; /* copy remaining cvt program into buffer */ /* and fill in the missing variables */ bufp = buf + buf_len; if (font->hinting_limit) { COPY_PREP(hinting_limit_a); *(bufp++) = HIGH(font->hinting_limit); *(bufp++) = LOW(font->hinting_limit); COPY_PREP(hinting_limit_b); } COPY_PREP(store_0x10000); COPY_PREP(store_num_used_scripts_a); *(bufp++) = (unsigned char)data->num_used_scripts; COPY_PREP(store_num_used_scripts_b); if (font->x_height_snapping_exceptions) COPY_PREP(test_exception_a); COPY_PREP(align_top_a); if (data->num_used_scripts > 6) { BCI(NPUSHB); BCI(data->num_used_scripts + 2); } else BCI(PUSHB_1 - 1 + data->num_used_scripts + 2); /* XXX: make this work for offsets > 255 */ for (i = TA_SCRIPT_MAX - 1; i >= 0; i--) { if (data->script_ids[i] == 0xFFFFU) continue; *(bufp++) = CVT_X_HEIGHT_BLUE_OFFSET(i) >= 0xFFFFU ? 0 : (unsigned char)CVT_X_HEIGHT_BLUE_OFFSET(i); } *(bufp++) = data->num_used_scripts; COPY_PREP(align_top_b); COPY_PREP(loop_cvt_a); if (data->num_used_scripts > 3) { BCI(NPUSHB); BCI(2 * data->num_used_scripts + 2); } else BCI(PUSHB_1 - 1 + 2 * data->num_used_scripts + 2); /* XXX: make this work for offsets > 255 */ for (i = TA_SCRIPT_MAX - 1; i >= 0; i--) { if (data->script_ids[i] == 0xFFFFU) continue; /* don't loop over artificial blue zones */ *(bufp++) = (unsigned char)CVT_VERT_STANDARD_WIDTH_OFFSET(i); *(bufp++) = (unsigned char)(1 + CVT_VERT_WIDTHS_SIZE(i) + CVT_BLUES_SIZE(i) - 2); } *(bufp++) = data->num_used_scripts; COPY_PREP(loop_cvt_b); if (data->num_used_scripts > 3) { BCI(NPUSHB); BCI(2 * data->num_used_scripts + 2); } else BCI(PUSHB_1 - 1 + 2 * data->num_used_scripts + 2); /* XXX: make this work for offsets > 255 */ for (i = TA_SCRIPT_MAX - 1; i >= 0; i--) { if (data->script_ids[i] == 0xFFFFU) continue; /* don't loop over artificial blue zones */ *(bufp++) = (unsigned char)CVT_BLUE_SHOOTS_OFFSET(i); *(bufp++) = (unsigned char)(CVT_BLUES_SIZE(i) - 2); } *(bufp++) = data->num_used_scripts; COPY_PREP(loop_cvt_c); if (font->x_height_snapping_exceptions) COPY_PREP(test_exception_b); COPY_PREP(store_vwidth_data_a); *(bufp++) = (unsigned char)CVT_VWIDTH_OFFSET_DATA(0); COPY_PREP(store_vwidth_data_b); if (data->num_used_scripts > 6) { BCI(NPUSHB); BCI(data->num_used_scripts + 2); } else BCI(PUSHB_1 - 1 + data->num_used_scripts + 2); /* XXX: make this work for offsets > 255 */ for (i = TA_SCRIPT_MAX - 1; i >= 0; i--) { if (data->script_ids[i] == 0xFFFFU) continue; *(bufp++) = (unsigned char)CVT_VERT_WIDTHS_OFFSET(i); } *(bufp++) = data->num_used_scripts; COPY_PREP(store_vwidth_data_c); *(bufp++) = (unsigned char)CVT_VWIDTH_SIZE_DATA(0); COPY_PREP(store_vwidth_data_d); if (data->num_used_scripts > 6) { BCI(NPUSHB); BCI(data->num_used_scripts + 2); } else BCI(PUSHB_1 - 1 + data->num_used_scripts + 2); /* XXX: make this work for values > 255 */ for (i = TA_SCRIPT_MAX - 1; i >= 0; i--) { if (data->script_ids[i] == 0xFFFFU) continue; *(bufp++) = (unsigned char)CVT_VERT_WIDTHS_SIZE(i); } *(bufp++) = data->num_used_scripts; COPY_PREP(store_vwidth_data_e); if (data->num_used_scripts > 3) { BCI(NPUSHB); BCI(2 * data->num_used_scripts + 2); } else BCI(PUSHB_1 - 1 + 2 * data->num_used_scripts + 2); /* XXX: make this work for offsets > 255 */ for (i = TA_SCRIPT_MAX - 1; i >= 0; i--) { if (data->script_ids[i] == 0xFFFFU) continue; *(bufp++) = (unsigned char)CVT_BLUE_REFS_OFFSET(i); *(bufp++) = (unsigned char)CVT_BLUES_SIZE(i); } *(bufp++) = data->num_used_scripts; COPY_PREP(round_blues); COPY_PREP(set_stem_width_handling_a); *(bufp++) = font->gray_strong_stem_width ? bci_strong_stem_width : bci_smooth_stem_width; COPY_PREP(set_stem_width_handling_b); *(bufp++) = font->gdi_cleartype_strong_stem_width ? bci_strong_stem_width : bci_smooth_stem_width; COPY_PREP(set_stem_width_handling_c); *(bufp++) = font->dw_cleartype_strong_stem_width ? bci_strong_stem_width : bci_smooth_stem_width; COPY_PREP(set_stem_width_handling_d); COPY_PREP(set_dropout_mode); COPY_PREP(reset_component_counter); *prep = buf; *prep_len = buf_new_len; return FT_Err_Ok; } FT_Error TA_sfnt_build_prep_table(SFNT* sfnt, FONT* font) { FT_Error error; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Byte* prep_buf; FT_ULong prep_len; error = TA_sfnt_add_table_info(sfnt); if (error) goto Exit; /* `glyf', `cvt', `fpgm', and `prep' are always used in parallel */ if (glyf_table->processed) { sfnt->table_infos[sfnt->num_table_infos - 1] = data->prep_idx; goto Exit; } error = TA_table_build_prep(&prep_buf, &prep_len, sfnt, font); if (error) goto Exit; #if 0 /* ttfautohint's bytecode in `fpgm' is larger */ /* than the bytecode in `prep'; */ /* this commented out code here is just for completeness */ if (prep_len > sfnt->max_instructions) sfnt->max_instructions = prep_len; #endif /* in case of success, `prep_buf' gets linked */ /* and is eventually freed in `TA_font_unload' */ error = TA_font_add_table(font, &sfnt->table_infos[sfnt->num_table_infos - 1], TTAG_prep, prep_len, prep_buf); if (error) free(prep_buf); else data->prep_idx = sfnt->table_infos[sfnt->num_table_infos - 1]; Exit: return error; } /* end of taprep.c */ ttfautohint-0.97/lib/ttfautohint.c0000644000175000001440000003527712235375157014252 00000000000000/* ttfautohint.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* This file needs FreeType 2.4.5 or newer. */ #include #include #include #include #include "ta.h" #define COMPARE(str) \ (len == (sizeof (str) - 1) \ && !strncmp(start, str, sizeof (str) - 1)) #define DUMPVAL(str, arg) \ fprintf(stderr, "%33s = %ld\n", \ (str), \ (FT_Long)(arg)) #define DUMPSTR(str, arg) \ fprintf(stderr, "%33s = %s\n", \ (str), \ (arg)) void TA_sfnt_set_properties(SFNT* sfnt, FONT* font) { TA_FaceGlobals globals = (TA_FaceGlobals)sfnt->face->autohint.data; globals->increase_x_height = font->increase_x_height; } TA_Error TTF_autohint(const char* options, ...) { va_list ap; FONT* font; FT_Error error; FT_Long i; FILE* in_file = NULL; FILE* out_file = NULL; const char* in_buf = NULL; size_t in_len = 0; char** out_bufp = NULL; size_t* out_lenp = NULL; const unsigned char** error_stringp = NULL; FT_Long hinting_range_min = -1; FT_Long hinting_range_max = -1; FT_Long hinting_limit = -1; FT_Long increase_x_height = -1; const char* x_height_snapping_exceptions_string = NULL; number_range* x_height_snapping_exceptions = NULL; FT_Bool gray_strong_stem_width = 0; FT_Bool gdi_cleartype_strong_stem_width = 1; FT_Bool dw_cleartype_strong_stem_width = 0; TA_Progress_Func progress; void* progress_data; TA_Info_Func info; void* info_data; FT_Bool windows_compatibility = 0; FT_Bool ignore_restrictions = 0; FT_Bool pre_hinting = 0; FT_Bool hint_composites = 0; FT_Bool symbol = 0; const char* fallback_script_string = NULL; TA_Script fallback_script = TA_SCRIPT_DFLT; FT_Bool dehint = 0; FT_Bool debug = 0; const char* op; #undef SCRIPT #define SCRIPT(s, S, d) #s, const char* script_names[] = { #include }; if (!options || !*options) { error = FT_Err_Invalid_Argument; goto Err1; } /* XXX */ va_start(ap, options); op = options; for(;;) { const char* start; size_t len; start = op; /* search comma */ while (*op && *op != ',') op++; /* remove leading whitespace */ while (isspace(*start)) start++; /* check for empty option */ if (start == op) goto End; len = op - start; /* the `COMPARE' macro uses `len' and `start' */ /* handle options -- don't forget to update parameter dump below! */ if (COMPARE("debug")) debug = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("dehint")) dehint = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("dw-cleartype-strong-stem-width")) dw_cleartype_strong_stem_width = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("error-string")) error_stringp = va_arg(ap, const unsigned char**); else if (COMPARE("fallback-script")) fallback_script_string = va_arg(ap, const char*); else if (COMPARE("gdi-cleartype-strong-stem-width")) gdi_cleartype_strong_stem_width = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("gray-strong-stem-width")) gray_strong_stem_width = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("hinting-limit")) hinting_limit = (FT_Long)va_arg(ap, FT_UInt); else if (COMPARE("hinting-range-max")) hinting_range_max = (FT_Long)va_arg(ap, FT_UInt); else if (COMPARE("hinting-range-min")) hinting_range_min = (FT_Long)va_arg(ap, FT_UInt); else if (COMPARE("hint-composites")) hint_composites = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("ignore-restrictions")) ignore_restrictions = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("in-buffer")) { in_file = NULL; in_buf = va_arg(ap, const char*); } else if (COMPARE("in-buffer-len")) { in_file = NULL; in_len = va_arg(ap, size_t); } else if (COMPARE("in-file")) { in_file = va_arg(ap, FILE*); in_buf = NULL; in_len = 0; } else if (COMPARE("increase-x-height")) increase_x_height = (FT_Long)va_arg(ap, FT_UInt); else if (COMPARE("info-callback")) info = va_arg(ap, TA_Info_Func); else if (COMPARE("info-callback-data")) info_data = va_arg(ap, void*); else if (COMPARE("out-buffer")) { out_file = NULL; out_bufp = va_arg(ap, char**); } else if (COMPARE("out-buffer-len")) { out_file = NULL; out_lenp = va_arg(ap, size_t*); } else if (COMPARE("out-file")) { out_file = va_arg(ap, FILE*); out_bufp = NULL; out_lenp = NULL; } else if (COMPARE("pre-hinting")) pre_hinting = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("progress-callback")) progress = va_arg(ap, TA_Progress_Func); else if (COMPARE("progress-callback-data")) progress_data = va_arg(ap, void*); else if (COMPARE("symbol")) symbol = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("windows-compatibility")) windows_compatibility = (FT_Bool)va_arg(ap, FT_Int); else if (COMPARE("x-height-snapping-exceptions")) x_height_snapping_exceptions_string = va_arg(ap, const char*); else { error = TA_Err_Unknown_Argument; goto Err1; } End: if (!*op) break; op++; } va_end(ap); /* check options */ if (!(in_file || (in_buf && in_len))) { error = FT_Err_Invalid_Argument; goto Err1; } if (!(out_file || (out_bufp && out_lenp))) { error = FT_Err_Invalid_Argument; goto Err1; } font = (FONT*)calloc(1, sizeof (FONT)); if (!font) { error = FT_Err_Out_Of_Memory; goto Err1; } if (dehint) goto No_check; if (hinting_range_min >= 0 && hinting_range_min < 2) { error = FT_Err_Invalid_Argument; goto Err1; } if (hinting_range_min < 0) hinting_range_min = TA_HINTING_RANGE_MIN; if (hinting_range_max >= 0 && hinting_range_max < hinting_range_min) { error = FT_Err_Invalid_Argument; goto Err1; } if (hinting_range_max < 0) hinting_range_max = TA_HINTING_RANGE_MAX; /* value 0 is valid */ if (hinting_limit > 0 && hinting_limit < hinting_range_max) { error = FT_Err_Invalid_Argument; goto Err1; } if (hinting_limit < 0) hinting_limit = TA_HINTING_LIMIT; if (increase_x_height > 0 && increase_x_height < TA_PROP_INCREASE_X_HEIGHT_MIN) { error = FT_Err_Invalid_Argument; goto Err1; } if (increase_x_height < 0) increase_x_height = TA_INCREASE_X_HEIGHT; if (fallback_script_string) { int i; for (i = 0; i < TA_SCRIPT_MAX; i++) if (!strcmp(script_names[i], fallback_script_string)) break; if (i == TA_SCRIPT_MAX) { error = FT_Err_Invalid_Argument; goto Err1; } fallback_script = i; } if (x_height_snapping_exceptions_string) { const char* s = number_set_parse(x_height_snapping_exceptions_string, &x_height_snapping_exceptions, TA_PROP_INCREASE_X_HEIGHT_MIN, 0x7FFF); if (*s) { error = FT_Err_Invalid_Argument; goto Err1; } } font->hinting_range_min = (FT_UInt)hinting_range_min; font->hinting_range_max = (FT_UInt)hinting_range_max; font->hinting_limit = (FT_UInt)hinting_limit; font->increase_x_height = increase_x_height; font->x_height_snapping_exceptions = x_height_snapping_exceptions; font->gray_strong_stem_width = gray_strong_stem_width; font->gdi_cleartype_strong_stem_width = gdi_cleartype_strong_stem_width; font->dw_cleartype_strong_stem_width = dw_cleartype_strong_stem_width; font->windows_compatibility = windows_compatibility; font->ignore_restrictions = ignore_restrictions; font->pre_hinting = pre_hinting; font->hint_composites = hint_composites; font->fallback_script = fallback_script; font->symbol = symbol; No_check: font->progress = progress; font->progress_data = progress_data; font->info = info; font->info_data = info_data; font->debug = debug; font->dehint = dehint; font->gasp_idx = MISSING; /* dump parameters */ if (debug) { fprintf(stderr, "TTF_autohint parameters\n" "=======================\n" "\n"); if (dehint) DUMPVAL("dehint", font->dehint); else { char *s; DUMPVAL("dw-cleartype-strong-stem-width", font->dw_cleartype_strong_stem_width); DUMPSTR("fallback-script", script_names[font->fallback_script]); DUMPVAL("gdi-cleartype-strong-stem-width", font->gdi_cleartype_strong_stem_width); DUMPVAL("gray-strong-stem-width", font->gray_strong_stem_width); DUMPVAL("hinting-limit", font->hinting_limit); DUMPVAL("hinting-range-max", font->hinting_range_max); DUMPVAL("hinting-range-min", font->hinting_range_min); DUMPVAL("hint-composites", font->hint_composites); DUMPVAL("ignore-restrictions", font->ignore_restrictions); DUMPVAL("increase-x-height", font->increase_x_height); DUMPVAL("pre-hinting", font->pre_hinting); DUMPVAL("symbol", font->symbol); DUMPVAL("windows-compatibility", font->windows_compatibility); s = number_set_show(font->x_height_snapping_exceptions, TA_PROP_INCREASE_X_HEIGHT_MIN, 0x7FFF); DUMPSTR("x-height-snapping-exceptions", s); free(s); } fprintf(stderr, "\n"); } /* now start with processing the data */ if (in_file) { error = TA_font_file_read(font, in_file); if (error) goto Err; } else { /* a valid TTF can never be that small */ if (in_len < 100) { error = TA_Err_Invalid_Font_Type; goto Err1; } font->in_buf = (FT_Byte*)in_buf; font->in_len = in_len; } error = TA_font_init(font); if (error) goto Err; if (font->debug) { _ta_debug = 1; _ta_debug_global = 1; } /* we do some loops over all subfonts */ for (i = 0; i < font->num_sfnts; i++) { SFNT* sfnt = &font->sfnts[i]; FT_UInt idx; error = FT_New_Memory_Face(font->lib, font->in_buf, font->in_len, i, &sfnt->face); /* assure that the font hasn't been already processed by ttfautohint; */ /* another, more thorough check is done in TA_glyph_parse_simple */ idx = FT_Get_Name_Index(sfnt->face, TTFAUTOHINT_GLYPH); if (idx) { error = TA_Err_Already_Processed; goto Err; } if (error) goto Err; error = TA_sfnt_split_into_SFNT_tables(sfnt, font); if (error) goto Err; /* check permission */ if (sfnt->OS2_idx != MISSING) { SFNT_Table* OS2_table = &font->tables[sfnt->OS2_idx]; /* check lower byte of the `fsType' field */ if (OS2_table->buf[OS2_FSTYPE_OFFSET + 1] == 0x02 && !font->ignore_restrictions) { error = TA_Err_Missing_Legal_Permission; goto Err; } } if (font->dehint) { error = TA_sfnt_split_glyf_table(sfnt, font); if (error) goto Err; } else { if (font->pre_hinting) error = TA_sfnt_create_glyf_data(sfnt, font); else error = TA_sfnt_split_glyf_table(sfnt, font); if (error) goto Err; /* this call creates a `globals' object... */ error = TA_sfnt_handle_coverage(sfnt, font); if (error) goto Err; /* ... so that we now can initialize its properties */ TA_sfnt_set_properties(sfnt, font); } } if (!font->dehint) { for (i = 0; i < font->num_sfnts; i++) { SFNT* sfnt = &font->sfnts[i]; if (TA_sfnt_adjust_master_coverage(sfnt, font)) break; } } #if 0 /* this code is here for completeness -- */ /* right now, `glyf' tables get hinted only once, */ /* and referring subfonts simply reuse it, */ /* but this might change in the future */ if (!font->dehint) { for (i = 0; i < font->num_sfnts; i++) { SFNT* sfnt = &font->sfnts[i]; TA_sfnt_copy_master_coverage(sfnt, font); } } #endif /* loop again over subfonts */ for (i = 0; i < font->num_sfnts; i++) { SFNT* sfnt = &font->sfnts[i]; error = ta_loader_init(font); if (error) goto Err; error = TA_sfnt_build_gasp_table(sfnt, font); if (error) goto Err; if (!font->dehint) { error = TA_sfnt_build_cvt_table(sfnt, font); if (error) goto Err; error = TA_sfnt_build_fpgm_table(sfnt, font); if (error) goto Err; error = TA_sfnt_build_prep_table(sfnt, font); if (error) goto Err; } error = TA_sfnt_build_glyf_table(sfnt, font); if (error) goto Err; error = TA_sfnt_build_loca_table(sfnt, font); if (error) goto Err; if (font->loader) ta_loader_done(font); } for (i = 0; i < font->num_sfnts; i++) { SFNT* sfnt = &font->sfnts[i]; error = TA_sfnt_update_maxp_table(sfnt, font); if (error) goto Err; if (!font->dehint) { /* we add one glyph for composites */ if (sfnt->max_components && !font->pre_hinting && font->hint_composites) { error = TA_sfnt_update_hmtx_table(sfnt, font); if (error) goto Err; error = TA_sfnt_update_post_table(sfnt, font); if (error) goto Err; error = TA_sfnt_update_GPOS_table(sfnt, font); if (error) goto Err; } } if (font->info) { /* add info about ttfautohint to the version string */ error = TA_sfnt_update_name_table(sfnt, font); if (error) goto Err; } } if (font->num_sfnts == 1) error = TA_font_build_TTF(font); else error = TA_font_build_TTC(font); if (error) goto Err; if (out_file) { error = TA_font_file_write(font, out_file); if (error) goto Err; } else { *out_bufp = (char*)font->out_buf; *out_lenp = font->out_len; } error = TA_Err_Ok; Err: TA_font_unload(font, in_buf, out_bufp); Err1: if (error_stringp) *error_stringp = (const unsigned char*)TA_get_error_message(error); return error; } /* end of ttfautohint.c */ ttfautohint-0.97/lib/ttfautohint-scripts.h0000644000175000001440000000176212230015525015715 00000000000000/* ttfautohint-scripts.h */ /* * Copyright (C) 2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afscript.h' (2013-Aug-05) from FreeType */ /* The following part can be included multiple times. */ /* Define `SCRIPT' as needed. */ /* Add new scripts here. */ SCRIPT(cyrl, CYRL, "Cyrillic") SCRIPT(dflt, DFLT, "no script") SCRIPT(grek, GREK, "Greek") SCRIPT(hebr, HEBR, "Hebrew") SCRIPT(latn, LATN, "Latin") #if 0 SCRIPT(deva, DEVA, "Indic scripts") SCRIPT(hani, HANI, "CJKV ideographs") #endif #ifdef FT_OPTION_AUTOFIT2 SCRIPT(ltn2, LTN2, "Latin 2") #endif /* end of ttfautohint-scripts.h */ ttfautohint-0.97/lib/Makefile.am0000644000175000001440000000340312230020254013527 00000000000000## Makefile.am # Copyright (C) 2011-2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. AM_CPPFLAGS = $(FREETYPE_CPPFLAGS) noinst_LTLIBRARIES = \ libttfautohint.la \ libnumberset.la libnumberset_la_SOURCES = \ numberset.c numberset.h libttfautohint_la_SOURCES = \ ta.h \ tablue.c tablue.h \ tabytecode.c tabytecode.h \ tacvt.c \ tadsig.c \ tadummy.c tadummy.h \ taerror.c \ tafile.c \ tafont.c \ tafpgm.c \ tagasp.c \ tagloadr.c tagloadr.h \ taglobal.c taglobal.h \ taglyf.c \ tagpos.c \ tahints.c tahints.h \ tahmtx.c \ talatin.c talatin.h \ taloader.c taloader.h \ taloca.c \ tamaxp.c \ taname.c \ tapost.c \ taprep.c \ tasfnt.c \ tasort.c tasort.h \ tatables.c tatables.h \ tatime.c \ tattc.c \ tattf.c \ tatypes.h \ tawrtsys.h \ ttfautohint.c \ ttfautohint.h ttfautohint-errors.h ttfautohint-scripts.h libttfautohint_la_LIBADD = \ libnumberset.la BUILT_SOURCES = \ tablue.c tablue.h EXTRA_DIST = \ afblue.pl \ tablue.cin tablue.hin \ tablue.dat tablue.c: tablue.dat tablue.cin $(AM_V_GEN)rm -f $@-t $@ \ && perl afblue.pl $(srcdir)/tablue.dat \ < $(srcdir)/tablue.cin \ > $@-t \ && mv $@-t $@ tablue.h: tablue.dat tablue.hin $(AM_V_GEN)rm -f $@-t $@ \ && perl afblue.pl $(srcdir)/tablue.dat \ < $(srcdir)/tablue.hin \ > $@-t \ && mv $@-t $@ ## end of Makefile.am ttfautohint-0.97/lib/tatime.c0000644000175000001440000000240712076552172013146 00000000000000/* tatime.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include #include "ta.h" /* we need an unsigned 64bit data type */ /* make `stdint.h' define `uintXX_t' for C++ */ #undef __STDC_LIMIT_MACROS #define __STDC_LIMIT_MACROS #if HAVE_STDINT_H # include #endif #if defined UINT64_MAX || defined uint64_t typedef uint64_t TA_ULongLong; #else # error "No unsigned 64bit wide data type found." #endif void TA_get_current_time(FT_ULong* high, FT_ULong* low) { /* there have been 24107 days between January 1st, 1904 (the epoch of */ /* OpenType), and January 1st, 1970 (the epoch of the `time' function) */ TA_ULongLong seconds_to_1970 = 24107 * 24 * 60 * 60; TA_ULongLong seconds_to_today = seconds_to_1970 + time(NULL); *high = (FT_ULong)(seconds_to_today >> 32); *low = (FT_ULong)seconds_to_today; } /* end of tatime.c */ ttfautohint-0.97/lib/tahmtx.c0000644000175000001440000000321712076552172013170 00000000000000/* tahmtx.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" FT_Error TA_sfnt_update_hmtx_table(SFNT* sfnt, FONT* font) { SFNT_Table* hmtx_table; FT_Byte* buf_new; FT_ULong buf_len; FT_ULong i; if (sfnt->hmtx_idx == MISSING) return TA_Err_Ok; hmtx_table = &font->tables[sfnt->hmtx_idx]; if (hmtx_table->processed) return TA_Err_Ok; /* the metrics of the added composite element doesn't matter; */ /* for this reason, we simply append two zero bytes, */ /* indicating a zero value in the `leftSideBearing' array */ /* (this works because we don't increase the `numberOfHMetrics' field) */ hmtx_table->len += 2; /* make the allocated buffer length a multiple of 4 */ buf_len = (hmtx_table->len + 3) & ~3; buf_new = (FT_Byte*)realloc(hmtx_table->buf, buf_len); if (!buf_new) { hmtx_table->len -= 2; return FT_Err_Out_Of_Memory; } /* pad end of buffer with zeros */ for (i = hmtx_table->len - 2; i < buf_len; i++) buf_new[i] = 0x00; hmtx_table->buf = buf_new; hmtx_table->checksum = TA_table_compute_checksum(hmtx_table->buf, hmtx_table->len); hmtx_table->processed = 1; return TA_Err_Ok; } /* end of tahmtx.c */ ttfautohint-0.97/lib/tafile.c0000644000175000001440000000301012076552172013116 00000000000000/* tafile.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" #define BUF_SIZE 0x10000 FT_Error TA_font_file_read(FONT* font, FILE* in_file) { FT_Byte buf[BUF_SIZE]; size_t in_len = 0; size_t read_bytes; font->in_buf = (FT_Byte*)malloc(BUF_SIZE); if (!font->in_buf) return FT_Err_Out_Of_Memory; while ((read_bytes = fread(buf, 1, BUF_SIZE, in_file)) > 0) { FT_Byte* in_buf_new; in_buf_new = (FT_Byte*)realloc(font->in_buf, in_len + read_bytes); if (!in_buf_new) return FT_Err_Out_Of_Memory; else font->in_buf = in_buf_new; memcpy(font->in_buf + in_len, buf, read_bytes); in_len += read_bytes; } if (ferror(in_file)) return FT_Err_Invalid_Stream_Read; /* a valid TTF can never be that small */ if (in_len < 100) return TA_Err_Invalid_Font_Type; font->in_len = in_len; return TA_Err_Ok; } FT_Error TA_font_file_write(FONT* font, FILE* out_file) { if (fwrite(font->out_buf, 1, font->out_len, out_file) != font->out_len) return TA_Err_Invalid_Stream_Write; return TA_Err_Ok; } /* end of tafile.c */ ttfautohint-0.97/lib/tahints.c0000644000175000001440000007322712177704117013345 00000000000000/* tahints.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afhints.c' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #include #include #include "tahints.h" /* get new segment for given axis */ FT_Error ta_axis_hints_new_segment(TA_AxisHints axis, TA_Segment* asegment) { FT_Error error = FT_Err_Ok; TA_Segment segment = NULL; if (axis->num_segments >= axis->max_segments) { TA_Segment segments_new; FT_Int old_max = axis->max_segments; FT_Int new_max = old_max; FT_Int big_max = (FT_Int)(FT_INT_MAX / sizeof (*segment)); if (old_max >= big_max) { error = FT_Err_Out_Of_Memory; goto Exit; } new_max += (new_max >> 2) + 4; if (new_max < old_max || new_max > big_max) new_max = big_max; segments_new = (TA_Segment)realloc(axis->segments, new_max * sizeof (TA_SegmentRec)); if (!segments_new) return FT_Err_Out_Of_Memory; axis->segments = segments_new; axis->max_segments = new_max; } segment = axis->segments + axis->num_segments++; Exit: *asegment = segment; return error; } /* get new edge for given axis, direction, and position */ FT_Error ta_axis_hints_new_edge(TA_AxisHints axis, FT_Int fpos, TA_Direction dir, TA_Edge* anedge) { FT_Error error = FT_Err_Ok; TA_Edge edge = NULL; TA_Edge edges; if (axis->num_edges >= axis->max_edges) { TA_Edge edges_new; FT_Int old_max = axis->max_edges; FT_Int new_max = old_max; FT_Int big_max = (FT_Int)(FT_INT_MAX / sizeof (*edge)); if (old_max >= big_max) { error = FT_Err_Out_Of_Memory; goto Exit; } new_max += (new_max >> 2) + 4; if (new_max < old_max || new_max > big_max) new_max = big_max; edges_new = (TA_Edge)realloc(axis->edges, new_max * sizeof (TA_EdgeRec)); if (!edges_new) return FT_Err_Out_Of_Memory; axis->edges = edges_new; axis->max_edges = new_max; } edges = axis->edges; edge = edges + axis->num_edges; while (edge > edges) { if (edge[-1].fpos < fpos) break; /* we want the edge with same position and minor direction */ /* to appear before those in the major one in the list */ if (edge[-1].fpos == fpos && dir == axis->major_dir) break; edge[0] = edge[-1]; edge--; } axis->num_edges++; memset(edge, 0, sizeof (TA_EdgeRec)); edge->fpos = (FT_Short)fpos; edge->dir = (FT_Char)dir; Exit: *anedge = edge; return error; } #ifdef TA_DEBUG #include #include #include void _ta_message(const char* format, ...) { va_list ap; va_start(ap, format); vfprintf(stderr, format, ap); va_end(ap); } static const char* ta_dir_str(TA_Direction dir) { const char* result; switch (dir) { case TA_DIR_UP: result = "up"; break; case TA_DIR_DOWN: result = "down"; break; case TA_DIR_LEFT: result = "left"; break; case TA_DIR_RIGHT: result = "right"; break; default: result = "none"; } return result; } #define TA_INDEX_NUM(ptr, base) \ ((ptr) ? ((ptr) - (base)) \ : -1) void ta_glyph_hints_dump_points(TA_GlyphHints hints) { TA_Point points = hints->points; TA_Point limit = points + hints->num_points; TA_Point point; TA_LOG(("Table of points:\n" " [ index | xorg | yorg | xscale | yscale" " | xfit | yfit | flags ]\n")); for (point = points; point < limit; point++) TA_LOG((" [ %5d | %5d | %5d | %6.2f | %6.2f" " | %5.2f | %5.2f | %c%c%c%c%c%c ]\n", point - points, point->fx, point->fy, point->ox / 64.0, point->oy / 64.0, point->x / 64.0, point->y / 64.0, (point->flags & TA_FLAG_WEAK_INTERPOLATION) ? 'w' : ' ', (point->flags & TA_FLAG_INFLECTION) ? 'i' : ' ', (point->flags & TA_FLAG_EXTREMA_X) ? '<' : ' ', (point->flags & TA_FLAG_EXTREMA_Y) ? 'v' : ' ', (point->flags & TA_FLAG_ROUND_X) ? '(' : ' ', (point->flags & TA_FLAG_ROUND_Y) ? 'u' : ' ')); TA_LOG(("\n")); } static const char* ta_edge_flags_to_string(FT_Byte flags) { static char temp[32]; int pos = 0; if (flags & TA_EDGE_ROUND) { memcpy(temp + pos, "round", 5); pos += 5; } if (flags & TA_EDGE_SERIF) { if (pos > 0) temp[pos++] = ' '; memcpy(temp + pos, "serif", 5); pos += 5; } if (pos == 0) return "normal"; temp[pos] = '\0'; return temp; } /* dump the array of linked segments */ void ta_glyph_hints_dump_segments(TA_GlyphHints hints) { FT_Int dimension; for (dimension = TA_DEBUG_STARTDIM; dimension >= TA_DEBUG_ENDDIM; dimension--) { TA_AxisHints axis = &hints->axis[dimension]; TA_Point points = hints->points; TA_Edge edges = axis->edges; TA_Segment segments = axis->segments; TA_Segment limit = segments + axis->num_segments; TA_Segment seg; TA_LOG(("Table of %s segments:\n", dimension == TA_DIMENSION_HORZ ? "vertical" : "horizontal")); if (axis->num_segments) TA_LOG((" [ index | pos | dir | from" " | to | link | serif | edge" " | height | extra | flags ]\n")); else TA_LOG((" (none)\n")); for (seg = segments; seg < limit; seg++) TA_LOG((" [ %5d | %5.2g | %5s | %4d" " | %4d | %4d | %5d | %4d" " | %6d | %5d | %11s ]\n", seg - segments, dimension == TA_DIMENSION_HORZ ? (int)seg->first->ox / 64.0 : (int)seg->first->oy / 64.0, ta_dir_str((TA_Direction)seg->dir), TA_INDEX_NUM(seg->first, points), TA_INDEX_NUM(seg->last, points), TA_INDEX_NUM(seg->link, segments), TA_INDEX_NUM(seg->serif, segments), TA_INDEX_NUM(seg->edge, edges), seg->height, seg->height - (seg->max_coord - seg->min_coord), ta_edge_flags_to_string(seg->flags))); TA_LOG(("\n")); } } /* dump the array of linked edges */ void ta_glyph_hints_dump_edges(TA_GlyphHints hints) { FT_Int dimension; for (dimension = TA_DEBUG_STARTDIM; dimension >= TA_DEBUG_ENDDIM; dimension--) { TA_AxisHints axis = &hints->axis[dimension]; TA_Edge edges = axis->edges; TA_Edge limit = edges + axis->num_edges; TA_Edge edge; /* note that TA_DIMENSION_HORZ corresponds to _vertical_ edges */ /* since they have a constant X coordinate */ TA_LOG(("Table of %s edges:\n", dimension == TA_DIMENSION_HORZ ? "vertical" : "horizontal")); if (axis->num_edges) TA_LOG((" [ index | pos | dir | link" " | serif | blue | opos | pos | flags ]\n")); else TA_LOG((" (none)\n")); for (edge = edges; edge < limit; edge++) TA_LOG((" [ %5d | %5.2g | %5s | %4d" " | %5d | %c | %5.2f | %5.2f | %11s ]\n", edge - edges, (int)edge->opos / 64.0, ta_dir_str((TA_Direction)edge->dir), TA_INDEX_NUM(edge->link, edges), TA_INDEX_NUM(edge->serif, edges), edge->blue_edge ? 'y' : 'n', edge->opos / 64.0, edge->pos / 64.0, ta_edge_flags_to_string(edge->flags))); TA_LOG(("\n")); } } #endif /* TA_DEBUG */ /* compute the direction value of a given vector */ TA_Direction ta_direction_compute(FT_Pos dx, FT_Pos dy) { FT_Pos ll, ss; /* long and short arm lengths */ TA_Direction dir; /* candidate direction */ if (dy >= dx) { if (dy >= -dx) { dir = TA_DIR_UP; ll = dy; ss = dx; } else { dir = TA_DIR_LEFT; ll = -dx; ss = dy; } } else /* dy < dx */ { if (dy >= -dx) { dir = TA_DIR_RIGHT; ll = dx; ss = dy; } else { dir = TA_DIR_DOWN; ll = dy; ss = dx; } } /* return no direction if arm lengths differ too much */ /* (value 14 is heuristic, corresponding to approx. 4.1 degrees) */ ss *= 14; if (TA_ABS(ll) <= TA_ABS(ss)) dir = TA_DIR_NONE; return dir; } void ta_glyph_hints_init(TA_GlyphHints hints) { memset(hints, 0, sizeof (TA_GlyphHintsRec)); } void ta_glyph_hints_done(TA_GlyphHints hints) { int dim; if (!hints) return; /* we don't need to free the segment and edge buffers */ /* since they are really within the hints->points array */ for (dim = 0; dim < TA_DIMENSION_MAX; dim++) { TA_AxisHints axis = &hints->axis[dim]; axis->num_segments = 0; axis->max_segments = 0; free(axis->segments); axis->segments = NULL; axis->num_edges = 0; axis->max_edges = 0; free(axis->edges); axis->edges = NULL; } free(hints->contours); hints->contours = NULL; hints->max_contours = 0; hints->num_contours = 0; free(hints->points); hints->points = NULL; hints->num_points = 0; hints->max_points = 0; } /* reset metrics */ void ta_glyph_hints_rescale(TA_GlyphHints hints, TA_ScriptMetrics metrics) { hints->metrics = metrics; hints->scaler_flags = metrics->scaler.flags; } /* from FreeType's ftcalc.c */ static FT_Int ta_corner_is_flat(FT_Pos in_x, FT_Pos in_y, FT_Pos out_x, FT_Pos out_y) { FT_Pos ax = in_x; FT_Pos ay = in_y; FT_Pos d_in, d_out, d_corner; if (ax < 0) ax = -ax; if (ay < 0) ay = -ay; d_in = ax + ay; ax = out_x; if (ax < 0) ax = -ax; ay = out_y; if (ay < 0) ay = -ay; d_out = ax + ay; ax = out_x + in_x; if (ax < 0) ax = -ax; ay = out_y + in_y; if (ay < 0) ay = -ay; d_corner = ax + ay; return (d_in + d_out - d_corner) < (d_corner >> 4); } /* recompute all TA_Point in TA_GlyphHints */ /* from the definitions in a source outline */ FT_Error ta_glyph_hints_reload(TA_GlyphHints hints, FT_Outline* outline) { FT_Error error = FT_Err_Ok; TA_Point points; FT_UInt old_max, new_max; FT_Fixed x_scale = hints->x_scale; FT_Fixed y_scale = hints->y_scale; FT_Pos x_delta = hints->x_delta; FT_Pos y_delta = hints->y_delta; hints->num_points = 0; hints->num_contours = 0; hints->axis[0].num_segments = 0; hints->axis[0].num_edges = 0; hints->axis[1].num_segments = 0; hints->axis[1].num_edges = 0; /* first of all, reallocate the contours array if necessary */ new_max = (FT_UInt)outline->n_contours; old_max = hints->max_contours; if (new_max > old_max) { TA_Point* contours_new; new_max = (new_max + 3) & ~3; /* round up to a multiple of 4 */ contours_new = (TA_Point*)realloc(hints->contours, new_max * sizeof (TA_Point)); if (!contours_new) return FT_Err_Out_Of_Memory; hints->contours = contours_new; hints->max_contours = new_max; } /* reallocate the points arrays if necessary -- we reserve */ /* two additional point positions, used to hint metrics appropriately */ new_max = (FT_UInt)(outline->n_points + 2); old_max = hints->max_points; if (new_max > old_max) { TA_Point points_new; new_max = (new_max + 2 + 7) & ~7; /* round up to a multiple of 8 */ points_new = (TA_Point)realloc(hints->points, new_max * sizeof (TA_PointRec)); if (!points_new) return FT_Err_Out_Of_Memory; hints->points = points_new; hints->max_points = new_max; } hints->num_points = outline->n_points; hints->num_contours = outline->n_contours; /* we can't rely on the value of `FT_Outline.flags' to know the fill */ /* direction used for a glyph, given that some fonts are broken */ /* (e.g. the Arphic ones); we thus recompute it each time we need to */ hints->axis[TA_DIMENSION_HORZ].major_dir = TA_DIR_UP; hints->axis[TA_DIMENSION_VERT].major_dir = TA_DIR_LEFT; if (FT_Outline_Get_Orientation(outline) == FT_ORIENTATION_POSTSCRIPT) { hints->axis[TA_DIMENSION_HORZ].major_dir = TA_DIR_DOWN; hints->axis[TA_DIMENSION_VERT].major_dir = TA_DIR_RIGHT; } hints->x_scale = x_scale; hints->y_scale = y_scale; hints->x_delta = x_delta; hints->y_delta = y_delta; hints->xmin_delta = 0; hints->xmax_delta = 0; points = hints->points; if (hints->num_points == 0) goto Exit; { TA_Point point; TA_Point point_limit = points + hints->num_points; /* compute coordinates & Bezier flags, next and prev */ { FT_Vector* vec = outline->points; char* tag = outline->tags; TA_Point end = points + outline->contours[0]; TA_Point prev = end; FT_Int contour_index = 0; for (point = points; point < point_limit; point++, vec++, tag++) { point->fx = (FT_Short)vec->x; point->fy = (FT_Short)vec->y; point->ox = point->x = FT_MulFix(vec->x, x_scale) + x_delta; point->oy = point->y = FT_MulFix(vec->y, y_scale) + y_delta; switch (FT_CURVE_TAG(*tag)) { case FT_CURVE_TAG_CONIC: point->flags = TA_FLAG_CONIC; break; case FT_CURVE_TAG_CUBIC: point->flags = TA_FLAG_CUBIC; break; default: point->flags = TA_FLAG_NONE; } point->prev = prev; prev->next = point; prev = point; if (point == end) { if (++contour_index < outline->n_contours) { end = points + outline->contours[contour_index]; prev = end; } } } } /* set up the contours array */ { TA_Point* contour = hints->contours; TA_Point* contour_limit = contour + hints->num_contours; short* end = outline->contours; short idx = 0; for (; contour < contour_limit; contour++, end++) { contour[0] = points + idx; idx = (short)(end[0] + 1); } } /* compute directions of in & out vectors */ { TA_Point first = points; TA_Point prev = NULL; FT_Pos in_x = 0; FT_Pos in_y = 0; TA_Direction in_dir = TA_DIR_NONE; FT_Pos last_good_in_x = 0; FT_Pos last_good_in_y = 0; FT_UInt units_per_em = hints->metrics->scaler.face->units_per_EM; FT_Int near_limit = 20 * units_per_em / 2048; for (point = points; point < point_limit; point++) { TA_Point next; FT_Pos out_x, out_y; if (point == first) { prev = first->prev; in_x = first->fx - prev->fx; in_y = first->fy - prev->fy; last_good_in_x = in_x; last_good_in_y = in_y; if (TA_ABS(in_x) + TA_ABS(in_y) < near_limit) { /* search first non-near point to get a good `in_dir' value */ TA_Point point_ = prev; while (point_ != first) { TA_Point prev_ = point_->prev; FT_Pos in_x_ = point_->fx - prev_->fx; FT_Pos in_y_ = point_->fy - prev_->fy; if (TA_ABS(in_x_) + TA_ABS(in_y_) >= near_limit) { last_good_in_x = in_x_; last_good_in_y = in_y_; break; } point_ = prev_; } } in_dir = ta_direction_compute(in_x, in_y); first = prev + 1; } point->in_dir = (FT_Char)in_dir; /* check whether the current point is near to the previous one */ /* (value 20 in `near_limit' is heuristic; we use Taxicab */ /* metrics for the test) */ if (TA_ABS(in_x) + TA_ABS(in_y) < near_limit) point->flags |= TA_FLAG_NEAR; else { last_good_in_x = in_x; last_good_in_y = in_y; } next = point->next; out_x = next->fx - point->fx; out_y = next->fy - point->fy; in_dir = ta_direction_compute(out_x, out_y); point->out_dir = (FT_Char)in_dir; /* Check for weak points. The remaining points not collected */ /* in edges are then implicitly classified as strong points. */ if (point->flags & TA_FLAG_CONTROL) { /* control points are always weak */ Is_Weak_Point: point->flags |= TA_FLAG_WEAK_INTERPOLATION; } else if (point->out_dir == point->in_dir) { if (point->out_dir != TA_DIR_NONE) { /* current point lies on a horizontal or */ /* vertical segment (but doesn't start or end it) */ goto Is_Weak_Point; } /* test whether `in' and `out' direction is approximately */ /* the same (and use the last good `in' vector in case */ /* the current point is near to the previous one) */ if (ta_corner_is_flat(point->flags & TA_FLAG_NEAR ? last_good_in_x : in_x, point->flags & TA_FLAG_NEAR ? last_good_in_y : in_y, out_x, out_y)) { /* current point lies on a straight, diagonal line */ /* (more or less) */ goto Is_Weak_Point; } } else if (point->in_dir == -point->out_dir) { /* current point forms a spike */ goto Is_Weak_Point; } in_x = out_x; in_y = out_y; prev = point; } } } Exit: return error; } /* store the hinted outline in an FT_Outline structure */ void ta_glyph_hints_save(TA_GlyphHints hints, FT_Outline* outline) { TA_Point point = hints->points; TA_Point limit = point + hints->num_points; FT_Vector* vec = outline->points; char* tag = outline->tags; for (; point < limit; point++, vec++, tag++) { vec->x = point->x; vec->y = point->y; if (point->flags & TA_FLAG_CONIC) tag[0] = FT_CURVE_TAG_CONIC; else if (point->flags & TA_FLAG_CUBIC) tag[0] = FT_CURVE_TAG_CUBIC; else tag[0] = FT_CURVE_TAG_ON; } } /**************************************************************** * * EDGE POINT GRID-FITTING * ****************************************************************/ /* align all points of an edge to the same coordinate value, */ /* either horizontally or vertically */ void ta_glyph_hints_align_edge_points(TA_GlyphHints hints, TA_Dimension dim) { TA_AxisHints axis = &hints->axis[dim]; TA_Segment segments = axis->segments; TA_Segment segment_limit = segments + axis->num_segments; TA_Segment seg; if (dim == TA_DIMENSION_HORZ) { for (seg = segments; seg < segment_limit; seg++) { TA_Edge edge = seg->edge; TA_Point point, first, last; if (edge == NULL) continue; first = seg->first; last = seg->last; point = first; for (;;) { point->x = edge->pos; point->flags |= TA_FLAG_TOUCH_X; if (point == last) break; point = point->next; } } } else { for (seg = segments; seg < segment_limit; seg++) { TA_Edge edge = seg->edge; TA_Point point, first, last; if (edge == NULL) continue; first = seg->first; last = seg->last; point = first; for (;;) { point->y = edge->pos; point->flags |= TA_FLAG_TOUCH_Y; if (point == last) break; point = point->next; } } } } /**************************************************************** * * STRONG POINT INTERPOLATION * ****************************************************************/ /* hint the strong points -- */ /* this is equivalent to the TrueType `IP' hinting instruction */ void ta_glyph_hints_align_strong_points(TA_GlyphHints hints, TA_Dimension dim) { TA_Point points = hints->points; TA_Point point_limit = points + hints->num_points; TA_AxisHints axis = &hints->axis[dim]; TA_Edge edges = axis->edges; TA_Edge edge_limit = edges + axis->num_edges; FT_UShort touch_flag; if (dim == TA_DIMENSION_HORZ) touch_flag = TA_FLAG_TOUCH_X; else touch_flag = TA_FLAG_TOUCH_Y; if (edges < edge_limit) { TA_Point point; TA_Edge edge; for (point = points; point < point_limit; point++) { FT_Pos u, ou, fu; /* point position */ FT_Pos delta; if (point->flags & touch_flag) continue; /* if this point is candidate to weak interpolation, we */ /* interpolate it after all strong points have been processed */ if ((point->flags & TA_FLAG_WEAK_INTERPOLATION) && !(point->flags & TA_FLAG_INFLECTION)) continue; if (dim == TA_DIMENSION_VERT) { u = point->fy; ou = point->oy; } else { u = point->fx; ou = point->ox; } fu = u; /* is the point before the first edge? */ edge = edges; delta = edge->fpos - u; if (delta >= 0) { u = edge->pos - (edge->opos - ou); if (hints->recorder) hints->recorder(ta_ip_before, hints, dim, point, NULL, NULL, NULL, NULL); goto Store_Point; } /* is the point after the last edge? */ edge = edge_limit - 1; delta = u - edge->fpos; if (delta >= 0) { u = edge->pos + (ou - edge->opos); if (hints->recorder) hints->recorder(ta_ip_after, hints, dim, point, NULL, NULL, NULL, NULL); goto Store_Point; } { FT_PtrDist min, max, mid; FT_Pos fpos; /* find enclosing edges */ min = 0; max = edge_limit - edges; /* for a small number of edges, a linear search is better */ if (max <= 8) { FT_PtrDist nn; for (nn = 0; nn < max; nn++) if (edges[nn].fpos >= u) break; if (edges[nn].fpos == u) { u = edges[nn].pos; if (hints->recorder) hints->recorder(ta_ip_on, hints, dim, point, &edges[nn], NULL, NULL, NULL); goto Store_Point; } min = nn; } else while (min < max) { mid = (max + min) >> 1; edge = edges + mid; fpos = edge->fpos; if (u < fpos) max = mid; else if (u > fpos) min = mid + 1; else { /* we are on the edge */ u = edge->pos; if (hints->recorder) hints->recorder(ta_ip_on, hints, dim, point, edge, NULL, NULL, NULL); goto Store_Point; } } /* point is not on an edge */ { TA_Edge before = edges + min - 1; TA_Edge after = edges + min + 0; /* assert(before && after && before != after) */ if (before->scale == 0) before->scale = FT_DivFix(after->pos - before->pos, after->fpos - before->fpos); u = before->pos + FT_MulFix(fu - before->fpos, before->scale); if (hints->recorder) hints->recorder(ta_ip_between, hints, dim, point, before, after, NULL, NULL); } } Store_Point: /* save the point position */ if (dim == TA_DIMENSION_HORZ) point->x = u; else point->y = u; point->flags |= touch_flag; } } } /**************************************************************** * * WEAK POINT INTERPOLATION * ****************************************************************/ /* shift the original coordinates of all points between `p1' and */ /* `p2' to get hinted coordinates, using the same difference as */ /* given by `ref' */ static void ta_iup_shift(TA_Point p1, TA_Point p2, TA_Point ref) { TA_Point p; FT_Pos delta = ref->u - ref->v; if (delta == 0) return; for (p = p1; p < ref; p++) p->u = p->v + delta; for (p = ref + 1; p <= p2; p++) p->u = p->v + delta; } /* interpolate the original coordinates of all points between `p1' and */ /* `p2' to get hinted coordinates, using `ref1' and `ref2' as the */ /* reference points; the `u' and `v' members are the current and */ /* original coordinate values, respectively. */ /* details can be found in the TrueType bytecode specification */ static void ta_iup_interp(TA_Point p1, TA_Point p2, TA_Point ref1, TA_Point ref2) { TA_Point p; FT_Pos u; FT_Pos v1 = ref1->v; FT_Pos v2 = ref2->v; FT_Pos d1 = ref1->u - v1; FT_Pos d2 = ref2->u - v2; if (p1 > p2) return; if (v1 == v2) { for (p = p1; p <= p2; p++) { u = p->v; if (u <= v1) u += d1; else u += d2; p->u = u; } return; } if (v1 < v2) { for (p = p1; p <= p2; p++) { u = p->v; if (u <= v1) u += d1; else if (u >= v2) u += d2; else u = ref1->u + FT_MulDiv(u - v1, ref2->u - ref1->u, v2 - v1); p->u = u; } } else { for (p = p1; p <= p2; p++) { u = p->v; if (u <= v2) u += d2; else if (u >= v1) u += d1; else u = ref1->u + FT_MulDiv(u - v1, ref2->u - ref1->u, v2 - v1); p->u = u; } } } /* hint the weak points -- */ /* this is equivalent to the TrueType `IUP' hinting instruction */ void ta_glyph_hints_align_weak_points(TA_GlyphHints hints, TA_Dimension dim) { TA_Point points = hints->points; TA_Point point_limit = points + hints->num_points; TA_Point* contour = hints->contours; TA_Point* contour_limit = contour + hints->num_contours; FT_UShort touch_flag; TA_Point point; TA_Point end_point; TA_Point first_point; /* pass 1: move segment points to edge positions */ if (dim == TA_DIMENSION_HORZ) { touch_flag = TA_FLAG_TOUCH_X; for (point = points; point < point_limit; point++) { point->u = point->x; point->v = point->ox; } } else { touch_flag = TA_FLAG_TOUCH_Y; for (point = points; point < point_limit; point++) { point->u = point->y; point->v = point->oy; } } point = points; for (; contour < contour_limit; contour++) { TA_Point first_touched, last_touched; point = *contour; end_point = point->prev; first_point = point; /* find first touched point */ for (;;) { if (point > end_point) /* no touched point in contour */ goto NextContour; if (point->flags & touch_flag) break; point++; } first_touched = point; last_touched = point; for (;;) { /* skip any touched neighbours */ while (point < end_point && (point[1].flags & touch_flag) != 0) point++; last_touched = point; /* find the next touched point, if any */ point++; for (;;) { if (point > end_point) goto EndContour; if ((point->flags & touch_flag) != 0) break; point++; } /* interpolate between last_touched and point */ ta_iup_interp(last_touched + 1, point - 1, last_touched, point); } EndContour: /* special case: only one point was touched */ if (last_touched == first_touched) ta_iup_shift(first_point, end_point, first_touched); else /* interpolate the last part */ { if (last_touched < end_point) ta_iup_interp(last_touched + 1, end_point, last_touched, first_touched); if (first_touched > points) ta_iup_interp(first_point, first_touched - 1, last_touched, first_touched); } NextContour: ; } /* now save the interpolated values back to x/y */ if (dim == TA_DIMENSION_HORZ) { for (point = points; point < point_limit; point++) point->x = point->u; } else { for (point = points; point < point_limit; point++) point->y = point->u; } } #ifdef TA_CONFIG_OPTION_USE_WARPER /* apply (small) warp scale and warp delta for given dimension */ static void ta_glyph_hints_scale_dim(TA_GlyphHints hints, TA_Dimension dim, FT_Fixed scale, FT_Pos delta) { TA_Point points = hints->points; TA_Point points_limit = points + hints->num_points; TA_Point point; if (dim == TA_DIMENSION_HORZ) { for (point = points; point < points_limit; point++) point->x = FT_MulFix(point->fx, scale) + delta; } else { for (point = points; point < points_limit; point++) point->y = FT_MulFix(point->fy, scale) + delta; } } #endif /* TA_CONFIG_OPTION_USE_WARPER */ /* end of tahints.c */ ttfautohint-0.97/lib/ttfautohint.h0000644000175000001440000003367212236412201014233 00000000000000/* ttfautohint.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #ifndef __TTFAUTOHINT_H__ #define __TTFAUTOHINT_H__ #include #ifdef __cplusplus extern "C" { #endif /* * This file gets processed with a simple sed script to extract the * documentation (written in pandoc's markdown format); code between the * `pandoc' markers are retained, everything else is discarded. C comments * are uncommented so that column 4 becomes column 1; empty lines outside of * comments are removed. */ /* pandoc-start */ /* * The ttfautohint API * =================== * * This section documents the single function of the ttfautohint library, * `TTF_autohint`, together with its callback functions, `TA_Progress_Func` * and `TA_Info_Func`. All information has been directly extracted from the * `ttfautohint.h` header file. * */ /* * Preprocessor Macros and Typedefs * -------------------------------- * * Some default values. * * ```C */ #define TA_HINTING_RANGE_MIN 8 #define TA_HINTING_RANGE_MAX 50 #define TA_HINTING_LIMIT 200 #define TA_INCREASE_X_HEIGHT 14 /* *``` * * An error type. * * ```C */ typedef int TA_Error; /* * ``` * */ /* * Callback: `TA_Progress_Func` * ---------------------------- * * A callback function to get progress information. *curr_idx* gives the * currently processed glyph index; if it is negative, an error has * occurred. *num_glyphs* holds the total number of glyphs in the font * (this value can't be larger than 65535). * * *curr_sfnt* gives the current subfont within a TrueType Collection (TTC), * and *num_sfnts* the total number of subfonts. * * If the return value is non-zero, `TTF_autohint` aborts with * `TA_Err_Canceled`. Use this for a 'Cancel' button or similar features in * interactive use. * * *progress_data* is a void pointer to user-supplied data. * * ```C */ typedef int (*TA_Progress_Func)(long curr_idx, long num_glyphs, long curr_sfnt, long num_sfnts, void* progress_data); /* * ``` * */ /* * Callback: `TA_Info_Func` * ------------------------ * * A callback function to manipulate strings in the `name` table. * *platform_id*, *encoding_id*, *language_id*, and *name_id* are the * identifiers of a `name` table entry pointed to by *str* with a length * pointed to by *str_len* (in bytes; the string has no trailing NULL byte). * Please refer to the [OpenType specification] for a detailed description * of the various parameters, in particular which encoding is used for a * given platform and encoding ID. * * [OpenType specification]: http://www.microsoft.com/typography/otspec/name.htm * * The string *str* is allocated with `malloc`; the application should * reallocate the data if necessary, ensuring that the string length doesn't * exceed 0xFFFF. * * *info_data* is a void pointer to user-supplied data. * * If an error occurs, return a non-zero value and don't modify *str* and * *str_len* (such errors are handled as non-fatal). * * ```C */ typedef int (*TA_Info_Func)(unsigned short platform_id, unsigned short encoding_id, unsigned short language_id, unsigned short name_id, unsigned short* str_len, unsigned char** str, void* info_data); /* * ``` * */ /* pandoc-end */ /* * Error values in addition to the FT_Err_XXX constants from FreeType. * * All error values specific to ttfautohint start with `TA_Err_'. */ #include /* pandoc-start */ /* * Function: `TTF_autohint` * ------------------------ * * * Read a TrueType font, remove existing bytecode (in the SFNT tables * `prep`, `fpgm`, `cvt `, and `glyf`), and write a new TrueType font with * new bytecode based on the autohinting of the FreeType library. * * It expects a format string *options* and a variable number of arguments, * depending on the fields in *options*. The fields are comma separated; * whitespace within the format string is not significant, a trailing comma * is ignored. Fields are parsed from left to right; if a field occurs * multiple times, the last field's argument wins. The same is true for * fields that are mutually exclusive. Depending on the field, zero or one * argument is expected. * * Note that fields marked as 'not implemented yet' are subject to change. * * * ### I/O * * `in-file` * : A pointer of type `FILE*` to the data stream of the input font, * opened for binary reading. Mutually exclusive with `in-buffer`. * * `in-buffer` * : A pointer of type `const char*` to a buffer that contains the input * font. Needs `in-buffer-len`. Mutually exclusive with `in-file`. * * `in-buffer-len` * : A value of type `size_t`, giving the length of the input buffer. * Needs `in-buffer`. * * `out-file` * : A pointer of type `FILE*` to the data stream of the output font, * opened for binary writing. Mutually exclusive with `out-buffer`. * * `out-buffer` * : A pointer of type `char**` to a buffer that contains the output * font. Needs `out-buffer-len`. Mutually exclusive with `out-file`. * Deallocate the memory with `free`. * * `out-buffer-len` * : A pointer of type `size_t*` to a value giving the length of the * output buffer. Needs `out-buffer`. * * * ### Messages and Callbacks * * `progress-callback` * : A pointer of type [`TA_Progress_Func`](#callback-ta_progress_func), * specifying a callback function for progress reports. This function * gets called after a single glyph has been processed. If this field * is not set or set to NULL, no progress callback function is used. * * `progress-callback-data` * : A pointer of type `void*` to user data that is passed to the * progress callback function. * * `error-string` * : A pointer of type `unsigned char**` to a string (in UTF-8 encoding) * that verbally describes the error code. You must not change the * returned value. * * `info-callback` * : A pointer of type [`TA_Info_Func`](#callback-ta_info_func), * specifying a callback function for manipulating the `name` table. * This function gets called for each `name` table entry. If not set or * set to NULL, the table data stays unmodified. * * `info-callback-data` * : A pointer of type `void*` to user data that is passed to the info * callback function. * * `debug` * : If this integer is set to\ 1, lots of debugging information is print * to stderr. The default value is\ 0. * * * ### General Hinting Options * * `hinting-range-min` * : An integer (which must be larger than or equal to\ 2) giving the * lowest PPEM value used for autohinting. If this field is not set, it * defaults to `TA_HINTING_RANGE_MIN`. * * `hinting-range-max` * : An integer (which must be larger than or equal to the value of * `hinting-range-min`) giving the highest PPEM value used for * autohinting. If this field is not set, it defaults to * `TA_HINTING_RANGE_MAX`. * * `hinting-limit` * : An integer (which must be larger than or equal to the value of * `hinting-range-max`) that gives the largest PPEM value at which * hinting is applied. For larger values, hinting is switched off. If * this field is not set, it defaults to `TA_HINTING_LIMIT`. If it is * set to\ 0, no hinting limit is added to the bytecode. * * `hint-composites` * : If this integer is set to\ 1, composite glyphs get separate hints. * This implies adding a special glyph to the font called * ['.ttfautohint'](#the-.ttfautohint-glyph). Setting it to\ 0 (which * is the default), the hints of the composite glyphs' components are * used. Adding hints for composite glyphs increases the size of the * resulting bytecode a lot, but it might deliver better hinting * results. However, this depends on the processed font and must be * checked by inspection. * * `pre-hinting` * : An integer (1\ for 'on' and 0\ for 'off', which is the default) to * specify whether native TrueType hinting shall be applied to all * glyphs before passing them to the (internal) autohinter. The used * resolution is the em-size in font units; for most fonts this is * 2048ppem. Use this if the hints move or scale subglyphs * independently of the output resolution. * * * ### Hinting Algorithms * * `gray-strong-stem-width` * : An integer (1\ for 'on' and 0\ for 'off', which is the default) that * specifies whether horizontal stems should be snapped and positioned * to integer pixel values for normal grayscale rendering. * * `gdi-cleartype-strong-stem-width` * : An integer (1\ for 'on', which is the default, and 0\ for 'off') that * specifies whether horizontal stems should be snapped and positioned * to integer pixel values for GDI ClearType rendering, this is, the * rasterizer version (as returned by the GETINFO bytecode instruction) * is in the range 36\ <= version <\ 38 and ClearType is enabled. * * `dw-cleartype-strong-stem-width` * : An integer (1\ for 'on' and 0\ for 'off', which is the default) that * specifies whether horizontal stems should be snapped and positioned * to integer pixel values for DW ClearType rendering, this is, the * rasterizer version (as returned by the GETINFO bytecode instruction) * is >=\ 38, ClearType is enabled, and subpixel positioning is enabled * also. * * `increase-x-height` * : An integer. For PPEM values in the range 6\ <= PPEM * <=\ `increase-x-height`, round up the font's x\ height much more often * than normally. If it is set to\ 0, this feature is switched off. If * this field is not set, it defaults to `TA_INCREASE_X_HEIGHT`. Use * this flag to improve the legibility of small font sizes if necessary. * * `x-height-snapping-exceptions` * : A pointer of type `const char*` to a null-terminated string that * gives a list of comma separated PPEM values or value ranges at which * no x-height snapping shall be applied. A value range has the form * *value1*`-`*value2*, meaning *value1* <= PPEM <= *value2*. *value1* * or *value2* (or both) can be missing; a missing value is replaced by * the beginning or end of the whole interval of valid PPEM values, * respectively. Whitespace is not significant; superfluous commas are * ignored, and ranges must be specified in increasing order. For * example, the string `"3, 5-7, 9-"` means the values 3, 5, 6, 7, 9, * 10, 11, 12, etc. Consequently, if the supplied argument is `"-"`, no * x-height snapping takes place at all. The default is the empty * string (`""`), meaning no snapping exceptions. * * `windows-compatibility` * : If this integer is set to\ 1, two artificial blue zones are used, * positioned at the `usWinAscent` and `usWinDescent` values (from the * font's `OS/2` table). The idea is to help ttfautohint so that the * hinted glyphs stay within this horizontal stripe since Windows clips * everything falling outside. The default is\ 0. * * * ### Scripts * * `fallback-script` * : A string consisting of four lowercase characters that specifies the * default script for glyphs which can't be mapped to a script * automatically. If set to `"dflt"` (which is the default), no script * is used. Valid values can be found in the header file * `ttfautohint-scripts.h`. * * `symbol` * : Set this integer to\ 1 if you want to process a font that lacks the * characters of a supported script, for example, a symbol font. * ttfautohint then uses default values for the standard stem width and * height instead of deriving these values from a script's key character * (for the latin script, it is character 'o'). The default value * is\ 0. * * * ### Miscellaneous * * `ignore-restrictions` * : If the font has set bit\ 1 in the 'fsType' field of the `OS/2` table, * the ttfautohint library refuses to process the font since a * permission to do that is required from the font's legal owner. In * case you have such a permission you might set the integer argument to * value\ 1 to make ttfautohint handle the font. The default value * is\ 0. * * `dehint` * : If set to\ 1, remove all hints from the font. All other hinting * options are ignored. * * * ### Remarks * * * Obviously, it is necessary to have an input and an output data * stream. All other options are optional. * * * `hinting-range-min` and `hinting-range-max` specify the range for * which the autohinter generates optimized hinting code. If a PPEM * value is smaller than the value of `hinting-range-min`, hinting still * takes place but the configuration created for `hinting-range-min` is * used. The analogous action is taken for `hinting-range-max`, only * limited by the value given with `hinting-limit`. The font's `gasp` * table is set up to always use grayscale rendering with grid-fitting * for standard hinting, and symmetric grid-fitting and symmetric * smoothing for horizontal subpixel hinting (ClearType). * * * ttfautohint can process its own output a second time only if option * `hint-composites` is not set (or if the font doesn't contain * composite glyphs at all). This limitation might change in the * future. * * ```C */ TA_Error TTF_autohint(const char* options, ...); /* * ``` * */ /* pandoc-end */ #ifdef __cplusplus } /* extern "C" */ #endif #endif /* __TTFAUTOHINT_H__ */ /* end of ttfautohint.h */ ttfautohint-0.97/lib/tafpgm.c0000644000175000001440000030561412227174256013150 00000000000000/* tafpgm.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" /* we need the following macro */ /* so that `func_name' doesn't get replaced with its #defined value */ /* (as defined in `tabytecode.h') */ #define FPGM(func_name) fpgm_ ## func_name /* * Due to a bug in FreeType up to and including version 2.4.7, * it is not possible to use MD_orig with twilight points. * We circumvent this by using GC_orig. */ #define MD_orig_fixed \ GC_orig, \ SWAP, \ GC_orig, \ SWAP, \ SUB #define MD_orig_ZP2_0 \ MD_orig_fixed #define MD_orig_ZP2_1 \ PUSHB_1, \ 0, \ SZP2, \ MD_orig_fixed, \ PUSHB_1, \ 1, \ SZP2 /* * Older versions of Monotype's `iType' bytecode interpreter have a serious * bug: The DIV instruction rounds the result, while the correct operation * is truncation. (Note, however, that MUL always rounds the result.) * Since many printers contain this rasterizer without any possibility to * update to a non-buggy version, we have to work around the problem. * * DIV and MUL work on 26.6 numbers which means that the numerator gets * multiplied by 64 before the division, and the product gets divided by 64 * after the multiplication, respectively. For example, to divide 2 by 3, * you have to write * * PUSHB_1, * 2, * 3*64, * DIV * * The correct formula to divide two values in 26.6 format with truncation * is * * a*64 / b , * * while older `iType' versions incorrectly apply rounding by using * * (a*64 + b/2) / b . * * Doing our 2/3 division, we have a=2 and b=3*64, so we get * * (2*64 + (3*64)/2) / (3*64) = 1 * * instead of the correct result 0. * * The solution to the rounding issue is to use a 26.6 value as an * intermediate result so that we can truncate to the nearest integer (in * 26.6 format) with the FLOOR operator before converting back to a plain * integer (in 32.0 format). * * For the common divisions by 2 and 2^10 we define macros. */ #define DIV_POS_BY_2 \ PUSHB_1, \ 2, \ DIV, /* multiply by 64, then divide by 2 */ \ FLOOR, \ PUSHB_1, \ 1, \ MUL /* multiply by 1, then divide by 64 */ #define DIV_BY_2 \ PUSHB_1, \ 2, \ DIV, \ DUP, \ PUSHB_1, \ 0, \ LT, \ IF, \ PUSHB_1, \ 64, \ ADD, /* add 1 if value is negative */ \ EIF, \ FLOOR, \ PUSHB_1, \ 1, \ MUL #define DIV_BY_1024 \ PUSHW_1, \ 0x04, /* 2^10 */ \ 0x00, \ DIV, \ DUP, \ PUSHB_1, \ 0, \ LT, \ IF, \ PUSHB_1, \ 64, \ ADD, \ EIF, \ FLOOR, \ PUSHB_1, \ 1, \ MUL /* a convenience shorthand for scaling; see `bci_cvt_rescale' for details */ #define DO_SCALE \ DUP, /* s: a a */ \ PUSHB_1, \ sal_scale, \ RS, \ MUL, /* delta * 2^10 */ \ DIV_BY_1024, /* delta */ \ ADD /* a + delta */ /* in the comments below, the top of the stack (`s:') */ /* is the rightmost element; the stack is shown */ /* after the instruction on the same line has been executed */ /* * bci_align_top * * Optimize the alignment of the top of small letters to the pixel grid. * * This function gets used in the `prep' table. * * in: blue_idx (CVT index for the script's top of small letters blue zone) * * sal: sal_i (CVT index of the script's scaling value; * gets incremented by 1 after execution) */ unsigned char FPGM(bci_align_top_a) [] = { PUSHB_1, bci_align_top, FDEF, /* only get CVT value for non-zero index */ DUP, PUSHB_1, 0, NEQ, IF, RCVT, EIF, DUP, DUP, /* s: blue blue blue */ }; /* if (font->increase_x_height) */ /* { */ unsigned char FPGM(bci_align_top_b1a) [] = { /* apply much `stronger' rounding up of x height for */ /* 6 <= PPEM <= increase_x_height */ MPPEM, PUSHW_1, }; /* %d, x height increase limit */ unsigned char FPGM(bci_align_top_b1b) [] = { LTEQ, MPPEM, PUSHB_1, 6, GTEQ, AND, IF, PUSHB_1, 52, /* threshold = 52 */ ELSE, PUSHB_1, 40, /* threshold = 40 */ EIF, ADD, FLOOR, /* fitted = FLOOR(blue + threshold) */ }; /* } */ /* if (!font->increase_x_height) */ /* { */ unsigned char FPGM(bci_align_top_b2) [] = { PUSHB_1, 40, ADD, FLOOR, /* fitted = FLOOR(blue + 40) */ }; /* } */ unsigned char FPGM(bci_align_top_c) [] = { DUP, /* s: blue blue fitted fitted */ ROLL, NEQ, IF, /* s: blue fitted */ PUSHB_1, 2, CINDEX, SUB, /* s: blue (fitted-blue) */ PUSHB_1, cvtl_0x10000, RCVT, MUL, /* (fitted-blue) in 16.16 format */ SWAP, DIV, /* factor = ((fitted-blue) / blue) in 16.16 format */ ELSE, POP, POP, PUSHB_1, 0, /* factor = 0 */ EIF, PUSHB_1, sal_i, RS, /* s: factor idx */ SWAP, WCVTP, PUSHB_3, sal_i, 1, sal_i, RS, ADD, /* sal_i = sal_i + 1 */ WS, ENDF, }; /* * bci_round * * Round a 26.6 number. Contrary to the ROUND bytecode instruction, no * engine specific corrections are applied. * * in: val * * out: ROUND(val) */ unsigned char FPGM(bci_round) [] = { PUSHB_1, bci_round, FDEF, PUSHB_1, 32, ADD, FLOOR, ENDF, }; /* * bci_smooth_stem_width * * This is the equivalent to the following code from function * `ta_latin_compute_stem_width': * * dist = ABS(width) * * if (stem_is_serif * && dist < 3*64) * || std_width < 40: * return width * else if base_is_round: * if dist < 80 * dist = 64 * else if dist < 56: * dist = 56 * * delta = ABS(dist - std_width) * * if delta < 40: * dist = std_width * if dist < 48 * dist = 48 * goto End * * if dist < 3*64: * delta = dist * dist = FLOOR(dist) * delta = delta - dist * * if delta < 10: * dist = dist + delta * else if delta < 32: * dist = dist + 10 * else if delta < 54: * dist = dist + 54 * else * dist = dist + delta * else * dist = ROUND(dist) * * End: * if width < 0: * dist = -dist * return dist * * in: width * stem_is_serif * base_is_round * * out: new_width * * sal: sal_vwidth_data_offset * * CVT: std_width * * uses: bci_round */ unsigned char FPGM(bci_smooth_stem_width) [] = { PUSHB_1, bci_smooth_stem_width, FDEF, DUP, ABS, /* s: base_is_round stem_is_serif width dist */ DUP, PUSHB_1, 3*64, LT, /* dist < 3*64 */ PUSHB_1, 4, MINDEX, /* s: base_is_round width dist (dist<3*64) stem_is_serif */ AND, /* stem_is_serif && dist < 3*64 */ PUSHB_2, 40, sal_vwidth_data_offset, RS, RCVT, /* double indirection */ RCVT, GT, /* standard_width < 40 */ OR, /* (stem_is_serif && dist < 3*64) || standard_width < 40 */ IF, /* s: base_is_round width dist */ POP, SWAP, POP, /* s: width */ ELSE, ROLL, /* s: width dist base_is_round */ IF, /* s: width dist */ DUP, PUSHB_1, 80, LT, /* dist < 80 */ IF, /* s: width dist */ POP, PUSHB_1, 64, /* dist = 64 */ EIF, ELSE, DUP, PUSHB_1, 56, LT, /* dist < 56 */ IF, /* s: width dist */ POP, PUSHB_1, 56, /* dist = 56 */ EIF, EIF, DUP, /* s: width dist dist */ PUSHB_1, sal_vwidth_data_offset, RS, RCVT, /* double indirection */ RCVT, SUB, ABS, /* s: width dist delta */ PUSHB_1, 40, LT, /* delta < 40 */ IF, /* s: width dist */ POP, PUSHB_1, sal_vwidth_data_offset, RS, RCVT, /* double indirection */ RCVT, /* dist = std_width */ DUP, PUSHB_1, 48, LT, /* dist < 48 */ IF, POP, PUSHB_1, 48, /* dist = 48 */ EIF, ELSE, DUP, /* s: width dist dist */ PUSHB_1, 3*64, LT, /* dist < 3*64 */ IF, DUP, /* s: width delta dist */ FLOOR, /* dist = FLOOR(dist) */ DUP, /* s: width delta dist dist */ ROLL, ROLL, /* s: width dist delta dist */ SUB, /* delta = delta - dist */ DUP, /* s: width dist delta delta */ PUSHB_1, 10, LT, /* delta < 10 */ IF, /* s: width dist delta */ ADD, /* dist = dist + delta */ ELSE, DUP, PUSHB_1, 32, LT, /* delta < 32 */ IF, POP, PUSHB_1, 10, ADD, /* dist = dist + 10 */ ELSE, DUP, PUSHB_1, 54, LT, /* delta < 54 */ IF, POP, PUSHB_1, 54, ADD, /* dist = dist + 54 */ ELSE, ADD, /* dist = dist + delta */ EIF, EIF, EIF, ELSE, PUSHB_1, bci_round, CALL, /* dist = round(dist) */ EIF, EIF, SWAP, /* s: dist width */ PUSHB_1, 0, LT, /* width < 0 */ IF, NEG, /* dist = -dist */ EIF, EIF, ENDF, }; /* * bci_get_best_width * * An auxiliary function for `bci_strong_stem_width'. * * in: n (initialized with CVT index for first vertical width) * dist * * out: n+1 * dist * * sal: sal_best * sal_ref * * CVT: widths[] */ unsigned char FPGM(bci_get_best_width) [] = { PUSHB_1, bci_get_best_width, FDEF, DUP, RCVT, /* s: dist n w */ DUP, PUSHB_1, 4, CINDEX, /* s: dist n w w dist */ SUB, ABS, /* s: dist n w d */ DUP, PUSHB_1, sal_best, RS, /* s: dist n w d d best */ LT, /* d < best */ IF, PUSHB_1, sal_best, SWAP, WS, /* best = d */ PUSHB_1, sal_ref, SWAP, WS, /* reference = w */ ELSE, POP, POP, EIF, PUSHB_1, 1, ADD, /* n = n + 1 */ ENDF, }; /* * bci_strong_stem_width * * This is the equivalent to the following code (function * `ta_latin_snap_width' and some lines from * `ta_latin_compute_stem_width'): * * best = 64 + 32 + 2; * reference = width * dist = ABS(width) * * for n in 0 .. num_widths: * w = widths[n] * d = ABS(dist - w) * * if d < best: * best = d * reference = w; * * if dist >= reference: * if dist < ROUND(reference) + 48: * dist = reference * else * if dist > ROUND(reference) - 48: * dist = reference * * if dist >= 64: * dist = ROUND(dist) * else * dist = 64 * * if width < 0: * dist = -dist * return dist * * in: width * stem_is_serif (unused) * base_is_round (unused) * * out: new_width * * sal: sal_best * sal_ref * sal_vwidth_data_offset * * CVT: widths[] * * uses: bci_get_best_width * bci_round */ unsigned char FPGM(bci_strong_stem_width) [] = { PUSHB_1, bci_strong_stem_width, FDEF, SWAP, POP, SWAP, POP, DUP, ABS, /* s: width dist */ PUSHB_2, sal_best, 64 + 32 + 2, WS, /* sal_best = 98 */ DUP, PUSHB_1, sal_ref, SWAP, WS, /* sal_ref = width */ PUSHB_1, sal_vwidth_data_offset, RS, RCVT, /* first index of vertical widths */ PUSHB_1, sal_vwidth_data_offset, RS, PUSHB_1, cvtl_num_used_scripts, RCVT, ADD, RCVT, /* number of vertical widths */ PUSHB_1, bci_get_best_width, LOOPCALL, POP, /* s: width dist */ DUP, PUSHB_1, sal_ref, RS, /* s: width dist dist reference */ DUP, ROLL, DUP, ROLL, PUSHB_1, bci_round, CALL, /* s: width dist reference dist dist ROUND(reference) */ PUSHB_2, 48, 5, CINDEX, ROLL, /* s: width dist reference dist ROUND(reference) 48 reference dist */ LTEQ, /* dist >= reference */ IF, /* s: width dist reference dist ROUND(reference) 48 */ ADD, LT, /* dist < ROUND(reference) + 48 */ ELSE, SUB, GT, /* dist > ROUND(reference) - 48 */ EIF, IF, SWAP, /* s: width reference dist */ EIF, POP, DUP, PUSHB_1, 64, GTEQ, /* dist >= 64 */ IF, PUSHB_1, bci_round, CALL, /* dist = ROUND(dist) */ ELSE, POP, PUSHB_1, 64, /* dist = 64 */ EIF, SWAP, /* s: dist width */ PUSHB_1, 0, LT, /* width < 0 */ IF, NEG, /* dist = -dist */ EIF, ENDF, }; /* * bci_do_loop * * An auxiliary function for `bci_loop'. * * sal: sal_i (gets incremented by 2 after execution) * sal_func * * uses: func[sal_func] */ unsigned char FPGM(bci_loop_do) [] = { PUSHB_1, bci_loop_do, FDEF, PUSHB_1, sal_func, RS, CALL, PUSHB_3, sal_i, 2, sal_i, RS, ADD, /* sal_i = sal_i + 2 */ WS, ENDF, }; /* * bci_loop * * Take a range `start'..`end' and a function number and apply the * associated function to the range elements `start', `start+2', * `start+4', ... * * in: func_num * end * start * * sal: sal_i (counter initialized with `start') * sal_func (`func_num') * * uses: bci_loop_do */ unsigned char FPGM(bci_loop) [] = { PUSHB_1, bci_loop, FDEF, PUSHB_1, sal_func, SWAP, WS, /* sal_func = func_num */ SWAP, DUP, PUSHB_1, sal_i, SWAP, WS, /* sal_i = start */ SUB, DIV_POS_BY_2, PUSHB_1, 1, ADD, /* number of loops ((end - start) / 2 + 1) */ PUSHB_1, bci_loop_do, LOOPCALL, ENDF, }; /* * bci_cvt_rescale * * Rescale CVT value by `sal_scale' (in 16.16 format). * * The scaling factor `sal_scale' isn't stored as `b/c' but as `(b-c)/c'; * consequently, the calculation `a * b/c' is done as `a + delta' with * `delta = a * (b-c)/c'. This avoids overflow. * * in: cvt_idx * * out: cvt_idx+1 * * sal: sal_scale */ unsigned char FPGM(bci_cvt_rescale) [] = { PUSHB_1, bci_cvt_rescale, FDEF, DUP, DUP, RCVT, DO_SCALE, WCVTP, PUSHB_1, 1, ADD, ENDF, }; /* * bci_cvt_rescale_range * * Rescale a range of CVT values with `bci_cvt_rescale', using a custom * scaling value. * * This function gets used in the `prep' table. * * in: num_cvt * cvt_start_idx * * sal: sal_i (CVT index of the script's scaling value; * gets incremented by 1 after execution) * sal_scale * * uses: bci_cvt_rescale */ unsigned char FPGM(bci_cvt_rescale_range) [] = { PUSHB_1, bci_cvt_rescale_range, FDEF, /* store scaling value in `sal_scale' */ PUSHB_3, bci_cvt_rescale, sal_scale, sal_i, RS, RCVT, WS, /* s: cvt_start_idx num_cvt bci_cvt_rescale */ LOOPCALL, POP, PUSHB_3, sal_i, 1, sal_i, RS, ADD, /* sal_i = sal_i + 1 */ WS, ENDF, }; /* * bci_vwidth_data_store * * Store a vertical width array value. * * This function gets used in the `prep' table. * * in: value * * sal: sal_i (CVT index of the script's vwidth data; * gets incremented by 1 after execution) */ unsigned char FPGM(bci_vwidth_data_store) [] = { PUSHB_1, bci_vwidth_data_store, FDEF, PUSHB_1, sal_i, RS, SWAP, WCVTP, PUSHB_3, sal_i, 1, sal_i, RS, ADD, /* sal_i = sal_i + 1 */ WS, ENDF, }; /* * bci_blue_round * * Round a blue ref value and adjust its corresponding shoot value. * * This is the equivalent to the following code (function * `ta_latin_metrics_scale_dim': * * delta = dist; * if (dist < 0) * delta = -delta; * * if (delta < 32) * delta = 0; * else if (delta < 48) * delta = 32; * else * delta = 64; * * if (dist < 0) * delta = -delta; * * in: ref_idx * * sal: sal_i (number of blue zones) * * out: ref_idx+1 * * uses: bci_round */ unsigned char FPGM(bci_blue_round) [] = { PUSHB_1, bci_blue_round, FDEF, DUP, DUP, RCVT, /* s: ref_idx ref_idx ref */ DUP, PUSHB_1, bci_round, CALL, SWAP, /* s: ref_idx ref_idx round(ref) ref */ PUSHB_1, sal_i, RS, PUSHB_1, 4, CINDEX, ADD, /* s: ref_idx ref_idx round(ref) ref shoot_idx */ DUP, RCVT, /* s: ref_idx ref_idx round(ref) ref shoot_idx shoot */ ROLL, /* s: ref_idx ref_idx round(ref) shoot_idx shoot ref */ SWAP, SUB, /* s: ref_idx ref_idx round(ref) shoot_idx dist */ DUP, ABS, /* s: ref_idx ref_idx round(ref) shoot_idx dist delta */ DUP, PUSHB_1, 32, LT, /* delta < 32 */ IF, POP, PUSHB_1, 0, /* delta = 0 */ ELSE, PUSHB_1, 48, LT, /* delta < 48 */ IF, PUSHB_1, 32, /* delta = 32 */ ELSE, PUSHB_1, 64, /* delta = 64 */ EIF, EIF, SWAP, /* s: ref_idx ref_idx round(ref) shoot_idx delta dist */ PUSHB_1, 0, LT, /* dist < 0 */ IF, NEG, /* delta = -delta */ EIF, PUSHB_1, 3, CINDEX, SWAP, SUB, /* s: ref_idx ref_idx round(ref) shoot_idx (round(ref) - delta) */ WCVTP, WCVTP, PUSHB_1, 1, ADD, /* s: (ref_idx + 1) */ ENDF, }; /* * bci_blue_round_range * * Round a range of blue zones (both reference and shoot values). * * This function gets used in the `prep' table. * * in: num_blue_zones * blue_ref_idx * * sal: sal_i (holds a copy of `num_blue_zones' for `bci_blue_round') * * uses: bci_blue_round */ unsigned char FPGM(bci_blue_round_range) [] = { PUSHB_1, bci_blue_round_range, FDEF, DUP, PUSHB_1, sal_i, SWAP, WS, PUSHB_1, bci_blue_round, LOOPCALL, POP, ENDF, }; /* * bci_decrement_component_counter * * An auxiliary function for composite glyphs. * * CVT: cvtl_is_subglyph */ unsigned char FPGM(bci_decrement_component_counter) [] = { PUSHB_1, bci_decrement_component_counter, FDEF, /* decrement `cvtl_is_subglyph' counter */ PUSHB_2, cvtl_is_subglyph, cvtl_is_subglyph, RCVT, PUSHB_1, 1, SUB, WCVTP, ENDF, }; /* * bci_get_point_extrema * * An auxiliary function for `bci_create_segment'. * * in: point-1 * * out: point * * sal: sal_point_min * sal_point_max */ unsigned char FPGM(bci_get_point_extrema) [] = { PUSHB_1, bci_get_point_extrema, FDEF, PUSHB_1, 1, ADD, /* s: point */ DUP, DUP, /* check whether `point' is a new minimum */ PUSHB_1, sal_point_min, RS, /* s: point point point point_min */ MD_orig, /* if distance is negative, we have a new minimum */ PUSHB_1, 0, LT, IF, /* s: point point */ DUP, PUSHB_1, sal_point_min, SWAP, WS, EIF, /* check whether `point' is a new maximum */ PUSHB_1, sal_point_max, RS, /* s: point point point_max */ MD_orig, /* if distance is positive, we have a new maximum */ PUSHB_1, 0, GT, IF, /* s: point */ DUP, PUSHB_1, sal_point_max, SWAP, WS, EIF, /* s: point */ ENDF, }; /* * bci_nibbles * * Pop a byte with two delta arguments in its nibbles and push the * expanded arguments separately as two bytes. * * in: 16 * (end - start) + (start - base) * * out: start * end * * sal: sal_base (set to `end' at return) */ unsigned char FPGM(bci_nibbles) [] = { PUSHB_1, bci_nibbles, FDEF, DUP, PUSHB_1, /* cf. DIV_POS_BY_2 macro */ 16, DIV, FLOOR, PUSHB_1, 1, MUL, /* s: in hnibble */ DUP, PUSHW_1, 0x04, /* 16*64 */ 0x00, MUL, /* s: in hnibble (hnibble * 16) */ ROLL, SWAP, SUB, /* s: hnibble lnibble */ PUSHB_1, sal_base, RS, ADD, /* s: hnibble start */ DUP, ROLL, ADD, /* s: start end */ DUP, PUSHB_1, sal_base, SWAP, WS, /* sal_base = end */ SWAP, ENDF, }; /* * bci_number_set_is_element * * Pop values from stack until it is empty. If one of them is equal to * the current PPEM value, set `cvtl_is_element' to 1 (and to 0 * otherwise). * * in: ppem_value_1 * ppem_value_2 * ... * * CVT: cvtl_is_element */ unsigned char FPGM(bci_number_set_is_element) [] = { PUSHB_1, bci_number_set_is_element, FDEF, /* start_loop: */ MPPEM, EQ, IF, PUSHB_2, cvtl_is_element, 1, WCVTP, EIF, DEPTH, PUSHB_1, 13, NEG, SWAP, JROT, /* goto start_loop if stack depth != 0 */ ENDF, }; /* * bci_number_set_is_element2 * * Pop value ranges from stack until it is empty. If one of them contains * the current PPEM value, set `cvtl_is_element' to 1 (and to 0 * otherwise). * * in: ppem_range_1_start * ppem_range_1_end * ppem_range_2_start * ppem_range_2_end * ... * * CVT: cvtl_is_element */ unsigned char FPGM(bci_number_set_is_element2) [] = { PUSHB_1, bci_number_set_is_element2, FDEF, /* start_loop: */ MPPEM, LTEQ, IF, MPPEM, GTEQ, IF, PUSHB_2, cvtl_is_element, 1, WCVTP, EIF, ELSE, POP, EIF, DEPTH, PUSHB_1, 19, NEG, SWAP, JROT, /* goto start_loop if stack depth != 0 */ ENDF, }; /* * bci_create_segment * * Store start and end point of a segment in the storage area, * then construct a point in the twilight zone to represent it. * * This function is used by `bci_create_segments'. * * in: start * end * [last (if wrap-around segment)] * [first (if wrap-around segment)] * * sal: sal_i (start of current segment) * sal_j (current twilight point) * sal_point_min * sal_point_max * sal_base * sal_num_packed_segments * sal_scale * * CVT: cvtl_temp * * uses: bci_get_point_extrema * bci_nibbles * * If `sal_num_packed_segments' is > 0, the start/end pair is stored as * delta values in nibbles (without a wrap-around segment). */ unsigned char FPGM(bci_create_segment) [] = { PUSHB_1, bci_create_segment, FDEF, PUSHB_2, 0, sal_num_packed_segments, RS, NEQ, IF, PUSHB_2, sal_num_packed_segments, sal_num_packed_segments, RS, PUSHB_1, 1, SUB, WS, /* sal_num_packed_segments = sal_num_packed_segments - 1 */ PUSHB_1, bci_nibbles, CALL, EIF, PUSHB_1, sal_i, RS, PUSHB_1, 2, CINDEX, WS, /* sal[sal_i] = start */ /* initialize inner loop(s) */ PUSHB_2, sal_point_min, 2, CINDEX, WS, /* sal_point_min = start */ PUSHB_2, sal_point_max, 2, CINDEX, WS, /* sal_point_max = start */ PUSHB_1, 1, SZPS, /* set zp0, zp1, and zp2 to normal zone 1 */ SWAP, DUP, PUSHB_1, 3, CINDEX, /* s: start end end start */ LT, /* start > end */ IF, /* we have a wrap-around segment with two more arguments */ /* to give the last and first point of the contour, respectively; */ /* our job is to store a segment `start'-`last', */ /* and to get extrema for the two segments */ /* `start'-`last' and `first'-`end' */ /* s: first last start end */ PUSHB_2, 1, sal_i, RS, ADD, PUSHB_1, 4, CINDEX, WS, /* sal[sal_i + 1] = last */ ROLL, ROLL, /* s: first end last start */ DUP, ROLL, SWAP, /* s: first end start last start */ SUB, /* s: first end start loop_count */ PUSHB_1, bci_get_point_extrema, LOOPCALL, /* clean up stack */ POP, SWAP, /* s: end first */ PUSHB_1, 1, SUB, DUP, ROLL, /* s: (first - 1) (first - 1) end */ SWAP, SUB, /* s: (first - 1) loop_count */ PUSHB_1, bci_get_point_extrema, LOOPCALL, /* clean up stack */ POP, ELSE, /* s: start end */ PUSHB_2, 1, sal_i, RS, ADD, PUSHB_1, 2, CINDEX, WS, /* sal[sal_i + 1] = end */ PUSHB_1, 2, CINDEX, SUB, /* s: start loop_count */ PUSHB_1, bci_get_point_extrema, LOOPCALL, /* clean up stack */ POP, EIF, /* the twilight point representing a segment */ /* is in the middle between the minimum and maximum */ PUSHB_1, sal_point_min, RS, GC_orig, PUSHB_1, sal_point_max, RS, GC_orig, ADD, DIV_BY_2, /* s: middle_pos */ DO_SCALE, /* middle_pos = middle_pos * scale */ /* write it to temporary CVT location */ PUSHB_2, cvtl_temp, 0, SZP0, /* set zp0 to twilight zone 0 */ SWAP, WCVTP, /* create twilight point with index `sal_j' */ PUSHB_1, sal_j, RS, PUSHB_1, cvtl_temp, MIAP_noround, PUSHB_3, sal_j, 1, sal_j, RS, ADD, /* twilight_point = twilight_point + 1 */ WS, ENDF, }; /* * bci_create_segments * * This is the top-level entry function. * * It pops point ranges from the stack to define segments, computes * twilight points to represent segments, and finally calls * `bci_hint_glyph' to handle the rest. * * The second argument (`data_offset') addresses three CVT arrays in * parallel: * * CVT(data_offset): * the current script's scaling value (stored in `sal_scale') * * data_offset + CVT(cvtl_num_used_scripts): * offset to the current script's vwidth index array (this value gets * stored in `sal_vwidth_data_offset') * * data_offset + 2*CVT(cvtl_num_used_scripts): * offset to the current script's vwidth size * * This addressing scheme ensures that (a) we only need a single argument, * and (b) this argument supports up to (256-cvtl_max_runtime) scripts, * which should be sufficient for a long time. * * in: num_packed_segments * data_offset * num_segments (N) * segment_start_0 * segment_end_0 * [contour_last 0 (if wrap-around segment)] * [contour_first 0 (if wrap-around segment)] * segment_start_1 * segment_end_1 * [contour_last 0 (if wrap-around segment)] * [contour_first 0 (if wrap-around segment)] * ... * segment_start_(N-1) * segment_end_(N-1) * [contour_last (N-1) (if wrap-around segment)] * [contour_first (N-1) (if wrap-around segment)] * ... stuff for bci_hint_glyph ... * * sal: sal_i (start of current segment) * sal_j (current twilight point) * sal_num_packed_segments * sal_base (the base for delta values in nibbles) * sal_vwidth_data_offset * sal_scale * * CVT: cvtl_is_subglyph * * uses: bci_create_segment * bci_loop * bci_hint_glyph * * If `num_packed_segments' is set to p, the first p start/end pairs are * stored as delta values in nibbles, with the `start' delta in the lower * nibble (and there are no wrap-around segments). For example, if the * first three pairs are 1/3, 5/8, and 12/13, the topmost three bytes on the * stack are 0x21, 0x32, and 0x14. * */ unsigned char FPGM(bci_create_segments) [] = { PUSHB_1, bci_create_segments, FDEF, /* only do something if we are not a subglyph */ PUSHB_2, 0, cvtl_is_subglyph, RCVT, EQ, IF, /* all our measurements are taken along the y axis */ SVTCA_y, PUSHB_1, sal_num_packed_segments, SWAP, WS, DUP, RCVT, PUSHB_1, sal_scale, /* sal_scale = CVT(data_offset) */ SWAP, WS, PUSHB_1, sal_vwidth_data_offset, SWAP, PUSHB_1, cvtl_num_used_scripts, RCVT, ADD, WS, /* sal_vwidth_data_offset = data_offset + num_used_scripts */ DUP, ADD, PUSHB_1, 1, SUB, /* delta = (2*num_segments - 1) */ PUSHB_6, sal_segment_offset, sal_segment_offset, sal_j, 0, sal_base, 0, WS, /* sal_base = 0 */ WS, /* sal_j = 0 (point offset) */ ROLL, ADD, /* s: ... sal_segment_offset (sal_segment_offset + delta) */ PUSHB_2, bci_create_segment, bci_loop, CALL, PUSHB_1, bci_hint_glyph, CALL, ELSE, CLEAR, EIF, ENDF, }; /* * bci_create_segments_X * * Top-level routines for calling `bci_create_segments'. */ unsigned char FPGM(bci_create_segments_0) [] = { PUSHB_1, bci_create_segments_0, FDEF, PUSHB_2, 0, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_1) [] = { PUSHB_1, bci_create_segments_1, FDEF, PUSHB_2, 1, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_2) [] = { PUSHB_1, bci_create_segments_2, FDEF, PUSHB_2, 2, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_3) [] = { PUSHB_1, bci_create_segments_3, FDEF, PUSHB_2, 3, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_4) [] = { PUSHB_1, bci_create_segments_4, FDEF, PUSHB_2, 4, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_5) [] = { PUSHB_1, bci_create_segments_5, FDEF, PUSHB_2, 5, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_6) [] = { PUSHB_1, bci_create_segments_6, FDEF, PUSHB_2, 6, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_7) [] = { PUSHB_1, bci_create_segments_7, FDEF, PUSHB_2, 7, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_8) [] = { PUSHB_1, bci_create_segments_8, FDEF, PUSHB_2, 8, bci_create_segments, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_9) [] = { PUSHB_1, bci_create_segments_9, FDEF, PUSHB_2, 9, bci_create_segments, CALL, ENDF, }; /* * bci_create_segments_composite * * The same as `bci_create_segments'. * It also decrements the composite component counter. * * sal: sal_num_packed_segments * sal_segment_offset * sal_vwidth_data_offset * * CVT: cvtl_is_subglyph * * uses: bci_decrement_component_counter * bci_create_segment * bci_loop * bci_hint_glyph */ unsigned char FPGM(bci_create_segments_composite) [] = { PUSHB_1, bci_create_segments_composite, FDEF, PUSHB_1, bci_decrement_component_counter, CALL, /* only do something if we are not a subglyph */ PUSHB_2, 0, cvtl_is_subglyph, RCVT, EQ, IF, /* all our measurements are taken along the y axis */ SVTCA_y, PUSHB_1, sal_num_packed_segments, SWAP, WS, DUP, RCVT, PUSHB_1, sal_scale, /* sal_scale = CVT(data_offset) */ SWAP, WS, PUSHB_1, sal_vwidth_data_offset, SWAP, PUSHB_1, cvtl_num_used_scripts, RCVT, ADD, WS, /* sal_vwidth_data_offset = data_offset + num_used_scripts */ DUP, ADD, PUSHB_1, 1, SUB, /* delta = (2*num_segments - 1) */ PUSHB_6, sal_segment_offset, sal_segment_offset, sal_j, 0, sal_base, 0, WS, /* sal_base = 0 */ WS, /* sal_j = 0 (point offset) */ ROLL, ADD, /* s: ... sal_segment_offset (sal_segment_offset + delta) */ PUSHB_2, bci_create_segment, bci_loop, CALL, PUSHB_1, bci_hint_glyph, CALL, ELSE, CLEAR, EIF, ENDF, }; /* * bci_create_segments_composite_X * * Top-level routines for calling `bci_create_segments_composite'. */ unsigned char FPGM(bci_create_segments_composite_0) [] = { PUSHB_1, bci_create_segments_composite_0, FDEF, PUSHB_2, 0, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_1) [] = { PUSHB_1, bci_create_segments_composite_1, FDEF, PUSHB_2, 1, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_2) [] = { PUSHB_1, bci_create_segments_composite_2, FDEF, PUSHB_2, 2, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_3) [] = { PUSHB_1, bci_create_segments_composite_3, FDEF, PUSHB_2, 3, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_4) [] = { PUSHB_1, bci_create_segments_composite_4, FDEF, PUSHB_2, 4, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_5) [] = { PUSHB_1, bci_create_segments_composite_5, FDEF, PUSHB_2, 5, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_6) [] = { PUSHB_1, bci_create_segments_composite_6, FDEF, PUSHB_2, 6, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_7) [] = { PUSHB_1, bci_create_segments_composite_7, FDEF, PUSHB_2, 7, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_8) [] = { PUSHB_1, bci_create_segments_composite_8, FDEF, PUSHB_2, 8, bci_create_segments_composite, CALL, ENDF, }; unsigned char FPGM(bci_create_segments_composite_9) [] = { PUSHB_1, bci_create_segments_composite_9, FDEF, PUSHB_2, 9, bci_create_segments_composite, CALL, ENDF, }; /* * bci_align_point * * An auxiliary function for `bci_align_segment'. * * in: point * * out: point+1 */ unsigned char FPGM(bci_align_point) [] = { PUSHB_1, bci_align_point, FDEF, DUP, ALIGNRP, /* align point with rp0 */ PUSHB_1, 1, ADD, ENDF, }; /* * bci_align_segment * * Align all points in a segment to the twilight point in rp0. * zp0 and zp1 must be set to 0 (twilight) and 1 (normal), respectively. * * in: segment_index * * sal: sal_segment_offset * * uses: bci_align_point */ unsigned char FPGM(bci_align_segment) [] = { PUSHB_1, bci_align_segment, FDEF, /* we need the values of `sal_segment_offset + 2*segment_index' */ /* and `sal_segment_offset + 2*segment_index + 1' */ DUP, ADD, PUSHB_1, sal_segment_offset, ADD, DUP, RS, SWAP, PUSHB_1, 1, ADD, RS, /* s: first last */ PUSHB_1, 2, CINDEX, /* s: first last first */ SUB, PUSHB_1, 1, ADD, /* s: first loop_count */ PUSHB_1, bci_align_point, LOOPCALL, /* clean up stack */ POP, ENDF, }; /* * bci_align_segments * * Align segments to the twilight point in rp0. * zp0 and zp1 must be set to 0 (twilight) and 1 (normal), respectively. * * in: first_segment * loop_counter (N) * segment_1 * segment_2 * ... * segment_N * * uses: bci_align_segment */ unsigned char FPGM(bci_align_segments) [] = { PUSHB_1, bci_align_segments, FDEF, PUSHB_1, bci_align_segment, CALL, PUSHB_1, bci_align_segment, LOOPCALL, ENDF, }; /* * bci_scale_contour * * Scale a contour using two points giving the maximum and minimum * coordinates. * * It expects that no point on the contour is touched. * * in: min_point * max_point * * sal: sal_scale */ unsigned char FPGM(bci_scale_contour) [] = { PUSHB_1, bci_scale_contour, FDEF, DUP, DUP, GC_orig, DUP, DO_SCALE, /* min_pos_new = min_pos * scale */ SWAP, SUB, SHPIX, /* don't scale a single-point contour twice */ SWAP, DUP, ROLL, NEQ, IF, DUP, GC_orig, DUP, DO_SCALE, /* max_pos_new = max_pos * scale */ SWAP, SUB, SHPIX, ELSE, POP, EIF, ENDF, }; /* * bci_scale_glyph * * Scale a glyph using a list of points (two points per contour, giving * the maximum and mininum coordinates). * * It expects that no point in the glyph is touched. * * Note that the point numbers are sorted in ascending order; * `min_point_X' and `max_point_X' thus refer to the two extrema of a * contour without specifying which one is the minimum and maximum. * * in: num_contours (N) * min_point_1 * max_point_1 * min_point_2 * max_point_2 * ... * min_point_N * max_point_N * * CVT: cvtl_is_subglyph * * uses: bci_scale_contour */ unsigned char FPGM(bci_scale_glyph) [] = { PUSHB_1, bci_scale_glyph, FDEF, /* only do something if we are not a subglyph */ PUSHB_2, 0, cvtl_is_subglyph, RCVT, EQ, IF, /* all our measurements are taken along the y axis */ SVTCA_y, PUSHB_1, 1, SZPS, /* set zp0, zp1, and zp2 to normal zone 1 */ PUSHB_1, bci_scale_contour, LOOPCALL, PUSHB_1, 1, SZP2, /* set zp2 to normal zone 1 */ IUP_y, ELSE, CLEAR, EIF, ENDF, }; /* * bci_scale_composite_glyph * * The same as `bci_scale_glyph'. * It also decrements the composite component counter. * * CVT: cvtl_is_subglyph * * uses: bci_decrement_component_counter * bci_scale_contour */ unsigned char FPGM(bci_scale_composite_glyph) [] = { PUSHB_1, bci_scale_composite_glyph, FDEF, PUSHB_1, bci_decrement_component_counter, CALL, /* only do something if we are not a subglyph */ PUSHB_2, 0, cvtl_is_subglyph, RCVT, EQ, IF, /* all our measurements are taken along the y axis */ SVTCA_y, PUSHB_1, 1, SZPS, /* set zp0, zp1, and zp2 to normal zone 1 */ PUSHB_1, bci_scale_contour, LOOPCALL, PUSHB_1, 1, SZP2, /* set zp2 to normal zone 1 */ IUP_y, ELSE, CLEAR, EIF, ENDF, }; /* * bci_shift_contour * * Shift a contour by a given amount. * * It expects that rp1 (pointed to by zp0) is set up properly; zp2 must * point to the normal zone 1. * * in: contour * * out: contour+1 */ unsigned char FPGM(bci_shift_contour) [] = { PUSHB_1, bci_shift_contour, FDEF, DUP, SHC_rp1, /* shift `contour' by (rp1_pos - rp1_orig_pos) */ PUSHB_1, 1, ADD, ENDF, }; /* * bci_shift_subglyph * * Shift a subglyph. To be more specific, it corrects the already applied * subglyph offset (if any) from the `glyf' table which needs to be scaled * also. * * If this function is called, a point `x' in the subglyph has been scaled * already (during the hinting of the subglyph itself), and `offset' has * been applied also: * * x -> x * scale + offset (1) * * However, the offset should be applied first, then the scaling: * * x -> (x + offset) * scale (2) * * Our job is now to transform (1) to (2); a simple calculation shows that * we have to shift all points of the subglyph by * * offset * scale - offset = offset * (scale - 1) * * Note that `sal_scale' is equal to the above `scale - 1'. * * in: offset (in FUnits) * num_contours * first_contour * * CVT: cvtl_funits_to_pixels * * sal: sal_scale * * uses: bci_round * bci_shift_contour */ unsigned char FPGM(bci_shift_subglyph) [] = { PUSHB_1, bci_shift_subglyph, FDEF, SVTCA_y, PUSHB_1, cvtl_funits_to_pixels, RCVT, /* scaling factor FUnits -> pixels */ MUL, DIV_BY_1024, /* the autohinter always rounds offsets */ PUSHB_1, bci_round, CALL, /* offset = round(offset) */ PUSHB_1, sal_scale, RS, MUL, DIV_BY_1024, /* delta = offset * (scale - 1) */ /* and round again */ PUSHB_1, bci_round, CALL, /* offset = round(offset) */ PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ /* we create twilight point 0 as a reference point, */ /* setting the original position to zero (using `cvtl_temp') */ PUSHB_5, 0, 0, cvtl_temp, cvtl_temp, 0, WCVTP, MIAP_noround, /* rp0 and rp1 now point to twilight point 0 */ SWAP, /* s: first_contour num_contours 0 delta */ SHPIX, /* rp1_pos - rp1_orig_pos = delta */ PUSHB_2, bci_shift_contour, 1, SZP2, /* set zp2 to normal zone 1 */ LOOPCALL, ENDF, }; /* * bci_ip_outer_align_point * * Auxiliary function for `bci_action_ip_before' and * `bci_action_ip_after'. * * It expects rp0 to contain the edge for alignment, zp0 set to twilight * zone, and both zp1 and zp2 set to normal zone. * * in: point * * sal: sal_i (edge_orig_pos) * sal_scale */ unsigned char FPGM(bci_ip_outer_align_point) [] = { PUSHB_1, bci_ip_outer_align_point, FDEF, DUP, ALIGNRP, /* align `point' with `edge' */ DUP, GC_orig, DO_SCALE, /* point_orig_pos = point_orig_pos * scale */ PUSHB_1, sal_i, RS, SUB, /* s: point (point_orig_pos - edge_orig_pos) */ SHPIX, ENDF, }; /* * bci_ip_on_align_points * * Auxiliary function for `bci_action_ip_on'. * * in: edge (in twilight zone) * loop_counter (N) * point_1 * point_2 * ... * point_N */ unsigned char FPGM(bci_ip_on_align_points) [] = { PUSHB_1, bci_ip_on_align_points, FDEF, MDAP_noround, /* set rp0 and rp1 to `edge' */ SLOOP, ALIGNRP, ENDF, }; /* * bci_ip_between_align_point * * Auxiliary function for `bci_ip_between_align_points'. * * It expects rp0 to contain the edge for alignment, zp0 set to twilight * zone, and both zp1 and zp2 set to normal zone. * * in: point * * sal: sal_i (edge_orig_pos) * sal_j (stretch_factor) * sal_scale */ unsigned char FPGM(bci_ip_between_align_point) [] = { PUSHB_1, bci_ip_between_align_point, FDEF, DUP, ALIGNRP, /* align `point' with `edge' */ DUP, GC_orig, DO_SCALE, /* point_orig_pos = point_orig_pos * scale */ PUSHB_1, sal_i, RS, SUB, /* s: point (point_orig_pos - edge_orig_pos) */ PUSHB_1, sal_j, RS, MUL, /* s: point delta */ SHPIX, ENDF, }; /* * bci_ip_between_align_points * * Auxiliary function for `bci_action_ip_between'. * * in: after_edge (in twilight zone) * before_edge (in twilight zone) * loop_counter (N) * point_1 * point_2 * ... * point_N * * sal: sal_i (before_orig_pos) * sal_j (stretch_factor) * * uses: bci_ip_between_align_point */ unsigned char FPGM(bci_ip_between_align_points) [] = { PUSHB_1, bci_ip_between_align_points, FDEF, PUSHB_2, 2, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ CINDEX, DUP, /* s: ... before after before before */ MDAP_noround, /* set rp0 and rp1 to `before' */ DUP, GC_orig, /* s: ... before after before before_orig_pos */ PUSHB_1, sal_i, SWAP, WS, /* sal_i = before_orig_pos */ PUSHB_1, 2, CINDEX, /* s: ... before after before after */ MD_cur, /* a = after_pos - before_pos */ ROLL, ROLL, MD_orig_ZP2_0, /* b = after_orig_pos - before_orig_pos */ DUP, IF, /* b != 0 ? */ DIV, /* s: a/b */ ELSE, POP, /* avoid division by zero */ EIF, PUSHB_1, sal_j, SWAP, WS, /* sal_j = stretch_factor */ PUSHB_3, bci_ip_between_align_point, 1, 1, SZP2, /* set zp2 to normal zone 1 */ SZP1, /* set zp1 to normal zone 1 */ LOOPCALL, ENDF, }; /* * bci_action_ip_before * * Handle `ip_before' data to align points located before the first edge. * * in: first_edge (in twilight zone) * loop_counter (N) * point_1 * point_2 * ... * point_N * * sal: sal_i (first_edge_orig_pos) * * uses: bci_ip_outer_align_point */ unsigned char FPGM(bci_action_ip_before) [] = { PUSHB_1, bci_action_ip_before, FDEF, PUSHB_1, 0, SZP2, /* set zp2 to twilight zone 0 */ DUP, GC_orig, PUSHB_1, sal_i, SWAP, WS, /* sal_i = first_edge_orig_pos */ PUSHB_3, 0, 1, 1, SZP2, /* set zp2 to normal zone 1 */ SZP1, /* set zp1 to normal zone 1 */ SZP0, /* set zp0 to twilight zone 0 */ MDAP_noround, /* set rp0 and rp1 to `first_edge' */ PUSHB_1, bci_ip_outer_align_point, LOOPCALL, ENDF, }; /* * bci_action_ip_after * * Handle `ip_after' data to align points located after the last edge. * * in: last_edge (in twilight zone) * loop_counter (N) * point_1 * point_2 * ... * point_N * * sal: sal_i (last_edge_orig_pos) * * uses: bci_ip_outer_align_point */ unsigned char FPGM(bci_action_ip_after) [] = { PUSHB_1, bci_action_ip_after, FDEF, PUSHB_1, 0, SZP2, /* set zp2 to twilight zone 0 */ DUP, GC_orig, PUSHB_1, sal_i, SWAP, WS, /* sal_i = last_edge_orig_pos */ PUSHB_3, 0, 1, 1, SZP2, /* set zp2 to normal zone 1 */ SZP1, /* set zp1 to normal zone 1 */ SZP0, /* set zp0 to twilight zone 0 */ MDAP_noround, /* set rp0 and rp1 to `last_edge' */ PUSHB_1, bci_ip_outer_align_point, LOOPCALL, ENDF, }; /* * bci_action_ip_on * * Handle `ip_on' data to align points located on an edge coordinate (but * not part of an edge). * * in: loop_counter (M) * edge_1 (in twilight zone) * loop_counter (N_1) * point_1 * point_2 * ... * point_N_1 * edge_2 (in twilight zone) * loop_counter (N_2) * point_1 * point_2 * ... * point_N_2 * ... * edge_M (in twilight zone) * loop_counter (N_M) * point_1 * point_2 * ... * point_N_M * * uses: bci_ip_on_align_points */ unsigned char FPGM(bci_action_ip_on) [] = { PUSHB_1, bci_action_ip_on, FDEF, PUSHB_2, 0, 1, SZP1, /* set zp1 to normal zone 1 */ SZP0, /* set zp0 to twilight zone 0 */ PUSHB_1, bci_ip_on_align_points, LOOPCALL, ENDF, }; /* * bci_action_ip_between * * Handle `ip_between' data to align points located between two edges. * * in: loop_counter (M) * before_edge_1 (in twilight zone) * after_edge_1 (in twilight zone) * loop_counter (N_1) * point_1 * point_2 * ... * point_N_1 * before_edge_2 (in twilight zone) * after_edge_2 (in twilight zone) * loop_counter (N_2) * point_1 * point_2 * ... * point_N_2 * ... * before_edge_M (in twilight zone) * after_edge_M (in twilight zone) * loop_counter (N_M) * point_1 * point_2 * ... * point_N_M * * uses: bci_ip_between_align_points */ unsigned char FPGM(bci_action_ip_between) [] = { PUSHB_1, bci_action_ip_between, FDEF, PUSHB_1, bci_ip_between_align_points, LOOPCALL, ENDF, }; /* * bci_adjust_common * * Common code for bci_action_adjust routines. * * uses: func[cvtl_stem_width_function] */ unsigned char FPGM(bci_adjust_common) [] = { PUSHB_1, bci_adjust_common, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ PUSHB_1, 4, CINDEX, /* s: [...] edge2 edge is_round is_serif edge2 */ PUSHB_1, 4, CINDEX, /* s: [...] edge2 edge is_round is_serif edge2 edge */ MD_orig_ZP2_0, /* s: [...] edge2 edge is_round is_serif org_len */ PUSHB_1, cvtl_stem_width_function, RCVT, CALL, NEG, /* s: [...] edge2 edge -cur_len */ ROLL, /* s: [...] edge -cur_len edge2 */ MDAP_noround, /* set rp0 and rp1 to `edge2' */ SWAP, DUP, DUP, /* s: [...] -cur_len edge edge edge */ ALIGNRP, /* align `edge' with `edge2' */ ROLL, SHPIX, /* shift `edge' by -cur_len */ ENDF, }; /* * bci_adjust_bound * * Handle the ADJUST_BOUND action to align an edge of a stem if the other * edge of the stem has already been moved, then moving it again if * necessary to stay bound. * * in: edge2_is_serif * edge_is_round * edge_point (in twilight zone) * edge2_point (in twilight zone) * edge[-1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_adjust_common * bci_align_segments */ unsigned char FPGM(bci_adjust_bound) [] = { PUSHB_1, bci_adjust_bound, FDEF, PUSHB_1, bci_adjust_common, CALL, SWAP, /* s: edge edge[-1] */ DUP, MDAP_noround, /* set rp0 and rp1 to `edge[-1]' */ GC_cur, PUSHB_1, 2, CINDEX, GC_cur, /* s: edge edge[-1]_pos edge_pos */ GT, /* edge_pos < edge[-1]_pos */ IF, DUP, ALIGNRP, /* align `edge' to `edge[-1]' */ EIF, MDAP_noround, /* set rp0 and rp1 to `edge' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_adjust_bound * bci_action_adjust_bound_serif * bci_action_adjust_bound_round * bci_action_adjust_bound_round_serif * * Higher-level routines for calling `bci_adjust_bound'. */ unsigned char FPGM(bci_action_adjust_bound) [] = { PUSHB_1, bci_action_adjust_bound, FDEF, PUSHB_3, 0, 0, bci_adjust_bound, CALL, ENDF, }; unsigned char FPGM(bci_action_adjust_bound_serif) [] = { PUSHB_1, bci_action_adjust_bound_serif, FDEF, PUSHB_3, 0, 1, bci_adjust_bound, CALL, ENDF, }; unsigned char FPGM(bci_action_adjust_bound_round) [] = { PUSHB_1, bci_action_adjust_bound_round, FDEF, PUSHB_3, 1, 0, bci_adjust_bound, CALL, ENDF, }; unsigned char FPGM(bci_action_adjust_bound_round_serif) [] = { PUSHB_1, bci_action_adjust_bound_round_serif, FDEF, PUSHB_3, 1, 1, bci_adjust_bound, CALL, ENDF, }; /* * bci_adjust * * Handle the ADJUST action to align an edge of a stem if the other edge * of the stem has already been moved. * * in: edge2_is_serif * edge_is_round * edge_point (in twilight zone) * edge2_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_adjust_common * bci_align_segments */ unsigned char FPGM(bci_adjust) [] = { PUSHB_1, bci_adjust, FDEF, PUSHB_1, bci_adjust_common, CALL, MDAP_noround, /* set rp0 and rp1 to `edge' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_adjust * bci_action_adjust_serif * bci_action_adjust_round * bci_action_adjust_round_serif * * Higher-level routines for calling `bci_adjust'. */ unsigned char FPGM(bci_action_adjust) [] = { PUSHB_1, bci_action_adjust, FDEF, PUSHB_3, 0, 0, bci_adjust, CALL, ENDF, }; unsigned char FPGM(bci_action_adjust_serif) [] = { PUSHB_1, bci_action_adjust_serif, FDEF, PUSHB_3, 0, 1, bci_adjust, CALL, ENDF, }; unsigned char FPGM(bci_action_adjust_round) [] = { PUSHB_1, bci_action_adjust_round, FDEF, PUSHB_3, 1, 0, bci_adjust, CALL, ENDF, }; unsigned char FPGM(bci_action_adjust_round_serif) [] = { PUSHB_1, bci_action_adjust_round_serif, FDEF, PUSHB_3, 1, 1, bci_adjust, CALL, ENDF, }; /* * bci_stem_common * * Common code for bci_action_stem routines. * * sal: sal_anchor * sal_temp1 * sal_temp2 * sal_temp3 * * uses: func[cvtl_stem_width_function] * bci_round */ #undef sal_u_off #define sal_u_off sal_temp1 #undef sal_d_off #define sal_d_off sal_temp2 #undef sal_org_len #define sal_org_len sal_temp3 #undef sal_edge2 #define sal_edge2 sal_temp3 unsigned char FPGM(bci_stem_common) [] = { PUSHB_1, bci_stem_common, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ PUSHB_1, 4, CINDEX, PUSHB_1, 4, CINDEX, DUP, /* s: [...] edge2 edge is_round is_serif edge2 edge edge */ MDAP_noround, /* set rp0 and rp1 to `edge_point' (for ALIGNRP below) */ MD_orig_ZP2_0, /* s: [...] edge2 edge is_round is_serif org_len */ DUP, PUSHB_1, sal_org_len, SWAP, WS, PUSHB_1, cvtl_stem_width_function, RCVT, CALL, /* s: [...] edge2 edge cur_len */ DUP, PUSHB_1, 96, LT, /* cur_len < 96 */ IF, DUP, PUSHB_1, 64, LTEQ, /* cur_len <= 64 */ IF, PUSHB_4, sal_u_off, 32, sal_d_off, 32, ELSE, PUSHB_4, sal_u_off, 38, sal_d_off, 26, EIF, WS, WS, SWAP, /* s: [...] edge2 cur_len edge */ DUP, PUSHB_1, sal_anchor, RS, DUP, /* s: [...] edge2 cur_len edge edge anchor anchor */ ROLL, SWAP, MD_orig_ZP2_0, SWAP, GC_cur, ADD, /* s: [...] edge2 cur_len edge org_pos */ PUSHB_1, sal_org_len, RS, DIV_BY_2, ADD, /* s: [...] edge2 cur_len edge org_center */ DUP, PUSHB_1, bci_round, CALL, /* s: [...] edge2 cur_len edge org_center cur_pos1 */ DUP, ROLL, ROLL, SUB, /* s: ... cur_len edge cur_pos1 (org_center - cur_pos1) */ DUP, PUSHB_1, sal_u_off, RS, ADD, ABS, /* s: ... cur_len edge cur_pos1 (org_center - cur_pos1) delta1 */ SWAP, PUSHB_1, sal_d_off, RS, SUB, ABS, /* s: [...] edge2 cur_len edge cur_pos1 delta1 delta2 */ LT, /* delta1 < delta2 */ IF, PUSHB_1, sal_u_off, RS, SUB, /* cur_pos1 = cur_pos1 - u_off */ ELSE, PUSHB_1, sal_d_off, RS, ADD, /* cur_pos1 = cur_pos1 + d_off */ EIF, /* s: [...] edge2 cur_len edge cur_pos1 */ PUSHB_1, 3, CINDEX, DIV_BY_2, SUB, /* arg = cur_pos1 - cur_len/2 */ SWAP, /* s: [...] edge2 cur_len arg edge */ DUP, DUP, PUSHB_1, 4, MINDEX, SWAP, /* s: [...] edge2 cur_len edge edge arg edge */ GC_cur, SUB, SHPIX, /* edge = cur_pos1 - cur_len/2 */ ELSE, SWAP, /* s: [...] edge2 cur_len edge */ PUSHB_1, sal_anchor, RS, GC_cur, /* s: [...] edge2 cur_len edge anchor_pos */ PUSHB_1, 2, CINDEX, PUSHB_1, sal_anchor, RS, MD_orig_ZP2_0, ADD, /* s: [...] edge2 cur_len edge org_pos */ DUP, PUSHB_1, sal_org_len, RS, DIV_BY_2, ADD, /* s: [...] edge2 cur_len edge org_pos org_center */ SWAP, DUP, PUSHB_1, bci_round, CALL, /* cur_pos1 = ROUND(org_pos) */ SWAP, PUSHB_1, sal_org_len, RS, ADD, PUSHB_1, bci_round, CALL, PUSHB_1, 5, CINDEX, SUB, /* s: [...] edge2 cur_len edge org_center cur_pos1 cur_pos2 */ PUSHB_1, 5, CINDEX, DIV_BY_2, PUSHB_1, 4, MINDEX, SUB, /* s: ... cur_len edge cur_pos1 cur_pos2 (cur_len/2 - org_center) */ DUP, PUSHB_1, 4, CINDEX, ADD, ABS, /* delta1 = ABS(cur_pos1 + cur_len / 2 - org_center) */ SWAP, PUSHB_1, 3, CINDEX, ADD, ABS, /* s: ... edge2 cur_len edge cur_pos1 cur_pos2 delta1 delta2 */ LT, /* delta1 < delta2 */ IF, POP, /* arg = cur_pos1 */ ELSE, SWAP, POP, /* arg = cur_pos2 */ EIF, /* s: [...] edge2 cur_len edge arg */ SWAP, DUP, DUP, PUSHB_1, 4, MINDEX, SWAP, /* s: [...] edge2 cur_len edge edge arg edge */ GC_cur, SUB, SHPIX, /* edge = arg */ EIF, /* s: [...] edge2 cur_len edge */ ENDF, }; /* * bci_stem_bound * * Handle the STEM action to align two edges of a stem, then moving one * edge again if necessary to stay bound. * * The code after computing `cur_len' to shift `edge' and `edge2' * is equivalent to the snippet below (part of `ta_latin_hint_edges'): * * if cur_len < 96: * if cur_len < = 64: * u_off = 32 * d_off = 32 * else: * u_off = 38 * d_off = 26 * * org_pos = anchor + (edge_orig - anchor_orig); * org_center = org_pos + org_len / 2; * * cur_pos1 = ROUND(org_center) * delta1 = ABS(org_center - (cur_pos1 - u_off)) * delta2 = ABS(org_center - (cur_pos1 + d_off)) * if (delta1 < delta2): * cur_pos1 = cur_pos1 - u_off * else: * cur_pos1 = cur_pos1 + d_off * * edge = cur_pos1 - cur_len / 2 * * else: * org_pos = anchor + (edge_orig - anchor_orig) * org_center = org_pos + org_len / 2; * * cur_pos1 = ROUND(org_pos) * delta1 = ABS(cur_pos1 + cur_len / 2 - org_center) * cur_pos2 = ROUND(org_pos + org_len) - cur_len * delta2 = ABS(cur_pos2 + cur_len / 2 - org_center) * * if (delta1 < delta2): * edge = cur_pos1 * else: * edge = cur_pos2 * * edge2 = edge + cur_len * * in: edge2_is_serif * edge_is_round * edge_point (in twilight zone) * edge2_point (in twilight zone) * edge[-1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * ... stuff for bci_align_segments (edge2)... * * sal: sal_anchor * sal_temp1 * sal_temp2 * sal_temp3 * * uses: bci_stem_common * bci_align_segments */ unsigned char FPGM(bci_stem_bound) [] = { PUSHB_1, bci_stem_bound, FDEF, PUSHB_1, bci_stem_common, CALL, ROLL, /* s: edge[-1] cur_len edge edge2 */ DUP, DUP, ALIGNRP, /* align `edge2' with rp0 (still `edge') */ PUSHB_1, sal_edge2, SWAP, WS, /* s: edge[-1] cur_len edge edge2 */ ROLL, SHPIX, /* edge2 = edge + cur_len */ SWAP, /* s: edge edge[-1] */ DUP, MDAP_noround, /* set rp0 and rp1 to `edge[-1]' */ GC_cur, PUSHB_1, 2, CINDEX, GC_cur, /* s: edge edge[-1]_pos edge_pos */ GT, /* edge_pos < edge[-1]_pos */ IF, DUP, ALIGNRP, /* align `edge' to `edge[-1]' */ EIF, MDAP_noround, /* set rp0 and rp1 to `edge' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, PUSHB_1, sal_edge2, RS, MDAP_noround, /* set rp0 and rp1 to `edge2' */ PUSHB_1, bci_align_segments, CALL, ENDF, }; /* * bci_action_stem_bound * bci_action_stem_bound_serif * bci_action_stem_bound_round * bci_action_stem_bound_round_serif * * Higher-level routines for calling `bci_stem_bound'. */ unsigned char FPGM(bci_action_stem_bound) [] = { PUSHB_1, bci_action_stem_bound, FDEF, PUSHB_3, 0, 0, bci_stem_bound, CALL, ENDF, }; unsigned char FPGM(bci_action_stem_bound_serif) [] = { PUSHB_1, bci_action_stem_bound_serif, FDEF, PUSHB_3, 0, 1, bci_stem_bound, CALL, ENDF, }; unsigned char FPGM(bci_action_stem_bound_round) [] = { PUSHB_1, bci_action_stem_bound_round, FDEF, PUSHB_3, 1, 0, bci_stem_bound, CALL, ENDF, }; unsigned char FPGM(bci_action_stem_bound_round_serif) [] = { PUSHB_1, bci_action_stem_bound_round_serif, FDEF, PUSHB_3, 1, 1, bci_stem_bound, CALL, ENDF, }; /* * bci_stem * * Handle the STEM action to align two edges of a stem. * * See `bci_stem_bound' for more details. * * in: edge2_is_serif * edge_is_round * edge_point (in twilight zone) * edge2_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * ... stuff for bci_align_segments (edge2)... * * sal: sal_anchor * sal_temp1 * sal_temp2 * sal_temp3 * * uses: bci_stem_common * bci_align_segments */ unsigned char FPGM(bci_stem) [] = { PUSHB_1, bci_stem, FDEF, PUSHB_1, bci_stem_common, CALL, POP, SWAP, /* s: cur_len edge2 */ DUP, DUP, ALIGNRP, /* align `edge2' with rp0 (still `edge') */ PUSHB_1, sal_edge2, SWAP, WS, /* s: cur_len edge2 */ SWAP, SHPIX, /* edge2 = edge + cur_len */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, PUSHB_1, sal_edge2, RS, MDAP_noround, /* set rp0 and rp1 to `edge2' */ PUSHB_1, bci_align_segments, CALL, ENDF, }; /* * bci_action_stem * bci_action_stem_serif * bci_action_stem_round * bci_action_stem_round_serif * * Higher-level routines for calling `bci_stem'. */ unsigned char FPGM(bci_action_stem) [] = { PUSHB_1, bci_action_stem, FDEF, PUSHB_3, 0, 0, bci_stem, CALL, ENDF, }; unsigned char FPGM(bci_action_stem_serif) [] = { PUSHB_1, bci_action_stem_serif, FDEF, PUSHB_3, 0, 1, bci_stem, CALL, ENDF, }; unsigned char FPGM(bci_action_stem_round) [] = { PUSHB_1, bci_action_stem_round, FDEF, PUSHB_3, 1, 0, bci_stem, CALL, ENDF, }; unsigned char FPGM(bci_action_stem_round_serif) [] = { PUSHB_1, bci_action_stem_round_serif, FDEF, PUSHB_3, 1, 1, bci_stem, CALL, ENDF, }; /* * bci_link * * Handle the LINK action to link an edge to another one. * * in: stem_is_serif * base_is_round * base_point (in twilight zone) * stem_point (in twilight zone) * ... stuff for bci_align_segments (base) ... * * uses: func[cvtl_stem_width_function] * bci_align_segments */ unsigned char FPGM(bci_link) [] = { PUSHB_1, bci_link, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ PUSHB_1, 4, CINDEX, PUSHB_1, 4, MINDEX, DUP, /* s: stem is_round is_serif stem base base */ MDAP_noround, /* set rp0 and rp1 to `base_point' (for ALIGNRP below) */ MD_orig_ZP2_0, /* s: stem is_round is_serif dist_orig */ PUSHB_1, cvtl_stem_width_function, RCVT, CALL, /* s: stem new_dist */ SWAP, DUP, ALIGNRP, /* align `stem_point' with `base_point' */ DUP, MDAP_noround, /* set rp0 and rp1 to `stem_point' */ SWAP, SHPIX, /* stem_point = base_point + new_dist */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_link * bci_action_link_serif * bci_action_link_round * bci_action_link_round_serif * * Higher-level routines for calling `bci_link'. */ unsigned char FPGM(bci_action_link) [] = { PUSHB_1, bci_action_link, FDEF, PUSHB_3, 0, 0, bci_link, CALL, ENDF, }; unsigned char FPGM(bci_action_link_serif) [] = { PUSHB_1, bci_action_link_serif, FDEF, PUSHB_3, 0, 1, bci_link, CALL, ENDF, }; unsigned char FPGM(bci_action_link_round) [] = { PUSHB_1, bci_action_link_round, FDEF, PUSHB_3, 1, 0, bci_link, CALL, ENDF, }; unsigned char FPGM(bci_action_link_round_serif) [] = { PUSHB_1, bci_action_link_round_serif, FDEF, PUSHB_3, 1, 1, bci_link, CALL, ENDF, }; /* * bci_anchor * * Handle the ANCHOR action to align two edges * and to set the edge anchor. * * The code after computing `cur_len' to shift `edge' and `edge2' * is equivalent to the snippet below (part of `ta_latin_hint_edges'): * * if cur_len < 96: * if cur_len < = 64: * u_off = 32 * d_off = 32 * else: * u_off = 38 * d_off = 26 * * org_center = edge_orig + org_len / 2 * cur_pos1 = ROUND(org_center) * * error1 = ABS(org_center - (cur_pos1 - u_off)) * error2 = ABS(org_center - (cur_pos1 + d_off)) * if (error1 < error2): * cur_pos1 = cur_pos1 - u_off * else: * cur_pos1 = cur_pos1 + d_off * * edge = cur_pos1 - cur_len / 2 * edge2 = edge + cur_len * * else: * edge = ROUND(edge_orig) * * in: edge2_is_serif * edge_is_round * edge_point (in twilight zone) * edge2_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * sal: sal_anchor * sal_temp1 * sal_temp2 * sal_temp3 * * uses: func[cvtl_stem_width_function] * bci_round * bci_align_segments */ #undef sal_u_off #define sal_u_off sal_temp1 #undef sal_d_off #define sal_d_off sal_temp2 #undef sal_org_len #define sal_org_len sal_temp3 unsigned char FPGM(bci_anchor) [] = { PUSHB_1, bci_anchor, FDEF, /* store anchor point number in `sal_anchor' */ PUSHB_2, sal_anchor, 4, CINDEX, WS, /* sal_anchor = edge_point */ PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ PUSHB_1, 4, CINDEX, PUSHB_1, 4, CINDEX, DUP, /* s: edge2 edge is_round is_serif edge2 edge edge */ MDAP_noround, /* set rp0 and rp1 to `edge_point' (for ALIGNRP below) */ MD_orig_ZP2_0, /* s: edge2 edge is_round is_serif org_len */ DUP, PUSHB_1, sal_org_len, SWAP, WS, PUSHB_1, cvtl_stem_width_function, RCVT, CALL, /* s: edge2 edge cur_len */ DUP, PUSHB_1, 96, LT, /* cur_len < 96 */ IF, DUP, PUSHB_1, 64, LTEQ, /* cur_len <= 64 */ IF, PUSHB_4, sal_u_off, 32, sal_d_off, 32, ELSE, PUSHB_4, sal_u_off, 38, sal_d_off, 26, EIF, WS, WS, SWAP, /* s: edge2 cur_len edge */ DUP, /* s: edge2 cur_len edge edge */ GC_orig, PUSHB_1, sal_org_len, RS, DIV_BY_2, ADD, /* s: edge2 cur_len edge org_center */ DUP, PUSHB_1, bci_round, CALL, /* s: edge2 cur_len edge org_center cur_pos1 */ DUP, ROLL, ROLL, SUB, /* s: edge2 cur_len edge cur_pos1 (org_center - cur_pos1) */ DUP, PUSHB_1, sal_u_off, RS, ADD, ABS, /* s: edge2 cur_len edge cur_pos1 (org_center - cur_pos1) error1 */ SWAP, PUSHB_1, sal_d_off, RS, SUB, ABS, /* s: edge2 cur_len edge cur_pos1 error1 error2 */ LT, /* error1 < error2 */ IF, PUSHB_1, sal_u_off, RS, SUB, /* cur_pos1 = cur_pos1 - u_off */ ELSE, PUSHB_1, sal_d_off, RS, ADD, /* cur_pos1 = cur_pos1 + d_off */ EIF, /* s: edge2 cur_len edge cur_pos1 */ PUSHB_1, 3, CINDEX, DIV_BY_2, SUB, /* s: edge2 cur_len edge (cur_pos1 - cur_len/2) */ PUSHB_1, 2, CINDEX, /* s: edge2 cur_len edge (cur_pos1 - cur_len/2) edge */ GC_cur, SUB, SHPIX, /* edge = cur_pos1 - cur_len/2 */ SWAP, /* s: cur_len edge2 */ DUP, ALIGNRP, /* align `edge2' with rp0 (still `edge') */ SWAP, SHPIX, /* edge2 = edge1 + cur_len */ ELSE, POP, /* s: edge2 edge */ DUP, DUP, GC_cur, SWAP, GC_orig, PUSHB_1, bci_round, CALL, /* s: edge2 edge edge_pos round(edge_orig_pos) */ SWAP, SUB, SHPIX, /* edge = round(edge_orig) */ /* clean up stack */ POP, EIF, PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_anchor * bci_action_anchor_serif * bci_action_anchor_round * bci_action_anchor_round_serif * * Higher-level routines for calling `bci_anchor'. */ unsigned char FPGM(bci_action_anchor) [] = { PUSHB_1, bci_action_anchor, FDEF, PUSHB_3, 0, 0, bci_anchor, CALL, ENDF, }; unsigned char FPGM(bci_action_anchor_serif) [] = { PUSHB_1, bci_action_anchor_serif, FDEF, PUSHB_3, 0, 1, bci_anchor, CALL, ENDF, }; unsigned char FPGM(bci_action_anchor_round) [] = { PUSHB_1, bci_action_anchor_round, FDEF, PUSHB_3, 1, 0, bci_anchor, CALL, ENDF, }; unsigned char FPGM(bci_action_anchor_round_serif) [] = { PUSHB_1, bci_action_anchor_round_serif, FDEF, PUSHB_3, 1, 1, bci_anchor, CALL, ENDF, }; /* * bci_action_blue_anchor * * Handle the BLUE_ANCHOR action to align an edge with a blue zone * and to set the edge anchor. * * in: anchor_point (in twilight zone) * blue_cvt_idx * edge_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * sal: sal_anchor * * uses: bci_action_blue */ unsigned char FPGM(bci_action_blue_anchor) [] = { PUSHB_1, bci_action_blue_anchor, FDEF, /* store anchor point number in `sal_anchor' */ PUSHB_1, sal_anchor, SWAP, WS, PUSHB_1, bci_action_blue, CALL, ENDF, }; /* * bci_action_blue * * Handle the BLUE action to align an edge with a blue zone. * * in: blue_cvt_idx * edge_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_align_segments */ unsigned char FPGM(bci_action_blue) [] = { PUSHB_1, bci_action_blue, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ /* move `edge_point' to `blue_cvt_idx' position; */ /* note that we can't use MIAP since this would modify */ /* the twilight point's original coordinates also */ RCVT, SWAP, DUP, MDAP_noround, /* set rp0 and rp1 to `edge' */ DUP, GC_cur, /* s: new_pos edge edge_pos */ ROLL, SWAP, SUB, /* s: edge (new_pos - edge_pos) */ SHPIX, PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_serif_common * * Common code for bci_action_serif routines. */ unsigned char FPGM(bci_serif_common) [] = { PUSHB_1, bci_serif_common, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ DUP, DUP, DUP, PUSHB_1, 5, MINDEX, /* s: [...] serif serif serif serif base */ DUP, MDAP_noround, /* set rp0 and rp1 to `base_point' */ MD_orig_ZP2_0, SWAP, ALIGNRP, /* align `serif_point' with `base_point' */ SHPIX, /* serif = base + (serif_orig_pos - base_orig_pos) */ ENDF, }; /* * bci_lower_bound * * Move an edge if necessary to stay within a lower bound. * * in: edge * bound * * uses: bci_align_segments */ unsigned char FPGM(bci_lower_bound) [] = { PUSHB_1, bci_lower_bound, FDEF, SWAP, /* s: edge bound */ DUP, MDAP_noround, /* set rp0 and rp1 to `bound' */ GC_cur, PUSHB_1, 2, CINDEX, GC_cur, /* s: edge bound_pos edge_pos */ GT, /* edge_pos < bound_pos */ IF, DUP, ALIGNRP, /* align `edge' to `bound' */ EIF, MDAP_noround, /* set rp0 and rp1 to `edge_point' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_upper_bound * * Move an edge if necessary to stay within an upper bound. * * in: edge * bound * * uses: bci_align_segments */ unsigned char FPGM(bci_upper_bound) [] = { PUSHB_1, bci_upper_bound, FDEF, SWAP, /* s: edge bound */ DUP, MDAP_noround, /* set rp0 and rp1 to `bound' */ GC_cur, PUSHB_1, 2, CINDEX, GC_cur, /* s: edge bound_pos edge_pos */ LT, /* edge_pos > bound_pos */ IF, DUP, ALIGNRP, /* align `edge' to `bound' */ EIF, MDAP_noround, /* set rp0 and rp1 to `edge_point' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_upper_lower_bound * * Move an edge if necessary to stay within a lower and lower bound. * * in: edge * lower * upper * * uses: bci_align_segments */ unsigned char FPGM(bci_upper_lower_bound) [] = { PUSHB_1, bci_upper_lower_bound, FDEF, SWAP, /* s: upper serif lower */ DUP, MDAP_noround, /* set rp0 and rp1 to `lower' */ GC_cur, PUSHB_1, 2, CINDEX, GC_cur, /* s: upper serif lower_pos serif_pos */ GT, /* serif_pos < lower_pos */ IF, DUP, ALIGNRP, /* align `serif' to `lower' */ EIF, SWAP, /* s: serif upper */ DUP, MDAP_noround, /* set rp0 and rp1 to `upper' */ GC_cur, PUSHB_1, 2, CINDEX, GC_cur, /* s: serif upper_pos serif_pos */ LT, /* serif_pos > upper_pos */ IF, DUP, ALIGNRP, /* align `serif' to `upper' */ EIF, MDAP_noround, /* set rp0 and rp1 to `serif_point' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_serif * * Handle the SERIF action to align a serif with its base. * * in: serif_point (in twilight zone) * base_point (in twilight zone) * ... stuff for bci_align_segments (serif) ... * * uses: bci_serif_common * bci_align_segments */ unsigned char FPGM(bci_action_serif) [] = { PUSHB_1, bci_action_serif, FDEF, PUSHB_1, bci_serif_common, CALL, MDAP_noround, /* set rp0 and rp1 to `serif_point' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_serif_lower_bound * * Handle the SERIF action to align a serif with its base, then moving it * again if necessary to stay within a lower bound. * * in: serif_point (in twilight zone) * base_point (in twilight zone) * edge[-1] (in twilight zone) * ... stuff for bci_align_segments (serif) ... * * uses: bci_serif_common * bci_lower_bound */ unsigned char FPGM(bci_action_serif_lower_bound) [] = { PUSHB_1, bci_action_serif_lower_bound, FDEF, PUSHB_1, bci_serif_common, CALL, PUSHB_1, bci_lower_bound, CALL, ENDF, }; /* * bci_action_serif_upper_bound * * Handle the SERIF action to align a serif with its base, then moving it * again if necessary to stay within an upper bound. * * in: serif_point (in twilight zone) * base_point (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (serif) ... * * uses: bci_serif_common * bci_upper_bound */ unsigned char FPGM(bci_action_serif_upper_bound) [] = { PUSHB_1, bci_action_serif_upper_bound, FDEF, PUSHB_1, bci_serif_common, CALL, PUSHB_1, bci_upper_bound, CALL, ENDF, }; /* * bci_action_serif_upper_lower_bound * * Handle the SERIF action to align a serif with its base, then moving it * again if necessary to stay within a lower and upper bound. * * in: serif_point (in twilight zone) * base_point (in twilight zone) * edge[-1] (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (serif) ... * * uses: bci_serif_common * bci_upper_lower_bound */ unsigned char FPGM(bci_action_serif_upper_lower_bound) [] = { PUSHB_1, bci_action_serif_upper_lower_bound, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ PUSHB_1, bci_serif_common, CALL, PUSHB_1, bci_upper_lower_bound, CALL, ENDF, }; /* * bci_serif_anchor_common * * Common code for bci_action_serif_anchor routines. * * sal: sal_anchor * * uses: bci_round */ unsigned char FPGM(bci_serif_anchor_common) [] = { PUSHB_1, bci_serif_anchor_common, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ DUP, PUSHB_1, sal_anchor, SWAP, WS, /* sal_anchor = edge_point */ DUP, DUP, DUP, GC_cur, SWAP, GC_orig, PUSHB_1, bci_round, CALL, /* s: [...] edge edge edge_pos round(edge_orig_pos) */ SWAP, SUB, SHPIX, /* edge = round(edge_orig) */ ENDF, }; /* * bci_action_serif_anchor * * Handle the SERIF_ANCHOR action to align a serif and to set the edge * anchor. * * in: edge_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_anchor_common * bci_align_segments */ unsigned char FPGM(bci_action_serif_anchor) [] = { PUSHB_1, bci_action_serif_anchor, FDEF, PUSHB_1, bci_serif_anchor_common, CALL, MDAP_noround, /* set rp0 and rp1 to `edge' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_serif_anchor_lower_bound * * Handle the SERIF_ANCHOR action to align a serif and to set the edge * anchor, then moving it again if necessary to stay within a lower * bound. * * in: edge_point (in twilight zone) * edge[-1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_anchor_common * bci_lower_bound */ unsigned char FPGM(bci_action_serif_anchor_lower_bound) [] = { PUSHB_1, bci_action_serif_anchor_lower_bound, FDEF, PUSHB_1, bci_serif_anchor_common, CALL, PUSHB_1, bci_lower_bound, CALL, ENDF, }; /* * bci_action_serif_anchor_upper_bound * * Handle the SERIF_ANCHOR action to align a serif and to set the edge * anchor, then moving it again if necessary to stay within an upper * bound. * * in: edge_point (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_anchor_common * bci_upper_bound */ unsigned char FPGM(bci_action_serif_anchor_upper_bound) [] = { PUSHB_1, bci_action_serif_anchor_upper_bound, FDEF, PUSHB_1, bci_serif_anchor_common, CALL, PUSHB_1, bci_upper_bound, CALL, ENDF, }; /* * bci_action_serif_anchor_upper_lower_bound * * Handle the SERIF_ANCHOR action to align a serif and to set the edge * anchor, then moving it again if necessary to stay within a lower and * upper bound. * * in: edge_point (in twilight zone) * edge[-1] (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_anchor_common * bci_upper_lower_bound */ unsigned char FPGM(bci_action_serif_anchor_upper_lower_bound) [] = { PUSHB_1, bci_action_serif_anchor_upper_lower_bound, FDEF, PUSHB_1, bci_serif_anchor_common, CALL, PUSHB_1, bci_upper_lower_bound, CALL, ENDF, }; /* * bci_serif_link1_common * * Common code for bci_action_serif_link1 routines. * * CVT: cvtl_0x10000 */ unsigned char FPGM(bci_serif_link1_common) [] = { PUSHB_1, bci_serif_link1_common, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ PUSHB_1, 3, CINDEX, /* s: [...] after edge before after */ PUSHB_1, 2, CINDEX, /* s: [...] after edge before after before */ MD_orig_ZP2_0, PUSHB_1, 0, EQ, /* after_orig_pos == before_orig_pos */ IF, /* s: [...] after edge before */ MDAP_noround, /* set rp0 and rp1 to `before' */ DUP, ALIGNRP, /* align `edge' with `before' */ SWAP, POP, ELSE, /* we have to execute `a*b/c', with b/c very near to 1: */ /* to avoid overflow while retaining precision, */ /* we transform this to `a + a * (b-c)/c' */ PUSHB_1, 2, CINDEX, /* s: [...] after edge before edge */ PUSHB_1, 2, CINDEX, /* s: [...] after edge before edge before */ MD_orig_ZP2_0, /* a = edge_orig_pos - before_orig_pos */ DUP, PUSHB_1, 5, CINDEX, /* s: [...] after edge before a a after */ PUSHB_1, 4, CINDEX, /* s: [...] after edge before a a after before */ MD_orig_ZP2_0, /* c = after_orig_pos - before_orig_pos */ PUSHB_1, 6, CINDEX, /* s: [...] after edge before a a c after */ PUSHB_1, 5, CINDEX, /* s: [...] after edge before a a c after before */ MD_cur, /* b = after_pos - before_pos */ PUSHB_1, 2, CINDEX, /* s: [...] after edge before a a c b c */ SUB, /* b-c */ PUSHB_1, cvtl_0x10000, RCVT, MUL, /* (b-c) in 16.16 format */ SWAP, DUP, IF, /* c != 0 ? */ DIV, /* s: [...] after edge before a a (b-c)/c */ ELSE, POP, /* avoid division by zero */ EIF, MUL, /* a * (b-c)/c * 2^10 */ DIV_BY_1024, /* a * (b-c)/c */ ADD, /* a*b/c */ SWAP, MDAP_noround, /* set rp0 and rp1 to `before' */ SWAP, /* s: [...] after a*b/c edge */ DUP, DUP, ALIGNRP, /* align `edge' with `before' */ ROLL, SHPIX, /* shift `edge' by `a*b/c' */ SWAP, /* s: [...] edge after */ POP, EIF, ENDF, }; /* * bci_action_serif_link1 * * Handle the SERIF_LINK1 action to align a serif, depending on edges * before and after. * * in: before_point (in twilight zone) * edge_point (in twilight zone) * after_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link1_common * bci_align_segments */ unsigned char FPGM(bci_action_serif_link1) [] = { PUSHB_1, bci_action_serif_link1, FDEF, PUSHB_1, bci_serif_link1_common, CALL, MDAP_noround, /* set rp0 and rp1 to `edge' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_serif_link1_lower_bound * * Handle the SERIF_LINK1 action to align a serif, depending on edges * before and after. Additionally, move the serif again if necessary to * stay within a lower bound. * * in: before_point (in twilight zone) * edge_point (in twilight zone) * after_point (in twilight zone) * edge[-1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link1_common * bci_lower_bound */ unsigned char FPGM(bci_action_serif_link1_lower_bound) [] = { PUSHB_1, bci_action_serif_link1_lower_bound, FDEF, PUSHB_1, bci_serif_link1_common, CALL, PUSHB_1, bci_lower_bound, CALL, ENDF, }; /* * bci_action_serif_link1_upper_bound * * Handle the SERIF_LINK1 action to align a serif, depending on edges * before and after. Additionally, move the serif again if necessary to * stay within an upper bound. * * in: before_point (in twilight zone) * edge_point (in twilight zone) * after_point (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link1_common * bci_upper_bound */ unsigned char FPGM(bci_action_serif_link1_upper_bound) [] = { PUSHB_1, bci_action_serif_link1_upper_bound, FDEF, PUSHB_1, bci_serif_link1_common, CALL, PUSHB_1, bci_upper_bound, CALL, ENDF, }; /* * bci_action_serif_link1_upper_lower_bound * * Handle the SERIF_LINK1 action to align a serif, depending on edges * before and after. Additionally, move the serif again if necessary to * stay within a lower and upper bound. * * in: before_point (in twilight zone) * edge_point (in twilight zone) * after_point (in twilight zone) * edge[-1] (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link1_common * bci_upper_lower_bound */ unsigned char FPGM(bci_action_serif_link1_upper_lower_bound) [] = { PUSHB_1, bci_action_serif_link1_upper_lower_bound, FDEF, PUSHB_1, bci_serif_link1_common, CALL, PUSHB_1, bci_upper_lower_bound, CALL, ENDF, }; /* * bci_serif_link2_common * * Common code for bci_action_serif_link2 routines. * * sal: sal_anchor */ unsigned char FPGM(bci_serif_link2_common) [] = { PUSHB_1, bci_serif_link2_common, FDEF, PUSHB_1, 0, SZPS, /* set zp0, zp1, and zp2 to twilight zone 0 */ DUP, /* s: [...] edge edge */ PUSHB_1, sal_anchor, RS, DUP, /* s: [...] edge edge anchor anchor */ MDAP_noround, /* set rp0 and rp1 to `sal_anchor' */ MD_orig_ZP2_0, DUP, ADD, PUSHB_1, 32, ADD, FLOOR, DIV_BY_2, /* delta = (edge_orig_pos - anchor_orig_pos + 16) & ~31 */ SWAP, DUP, DUP, ALIGNRP, /* align `edge' with `sal_anchor' */ ROLL, SHPIX, /* shift `edge' by `delta' */ ENDF, }; /* * bci_action_serif_link2 * * Handle the SERIF_LINK2 action to align a serif relative to the anchor. * * in: edge_point (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link2_common * bci_align_segments */ unsigned char FPGM(bci_action_serif_link2) [] = { PUSHB_1, bci_action_serif_link2, FDEF, PUSHB_1, bci_serif_link2_common, CALL, MDAP_noround, /* set rp0 and rp1 to `edge' */ PUSHB_2, bci_align_segments, 1, SZP1, /* set zp1 to normal zone 1 */ CALL, ENDF, }; /* * bci_action_serif_link2_lower_bound * * Handle the SERIF_LINK2 action to align a serif relative to the anchor. * Additionally, move the serif again if necessary to stay within a lower * bound. * * in: edge_point (in twilight zone) * edge[-1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link2_common * bci_lower_bound */ unsigned char FPGM(bci_action_serif_link2_lower_bound) [] = { PUSHB_1, bci_action_serif_link2_lower_bound, FDEF, PUSHB_1, bci_serif_link2_common, CALL, PUSHB_1, bci_lower_bound, CALL, ENDF, }; /* * bci_action_serif_link2_upper_bound * * Handle the SERIF_LINK2 action to align a serif relative to the anchor. * Additionally, move the serif again if necessary to stay within an upper * bound. * * in: edge_point (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link2_common * bci_upper_bound */ unsigned char FPGM(bci_action_serif_link2_upper_bound) [] = { PUSHB_1, bci_action_serif_link2_upper_bound, FDEF, PUSHB_1, bci_serif_link2_common, CALL, PUSHB_1, bci_upper_bound, CALL, ENDF, }; /* * bci_action_serif_link2_upper_lower_bound * * Handle the SERIF_LINK2 action to align a serif relative to the anchor. * Additionally, move the serif again if necessary to stay within a lower * and upper bound. * * in: edge_point (in twilight zone) * edge[-1] (in twilight zone) * edge[1] (in twilight zone) * ... stuff for bci_align_segments (edge) ... * * uses: bci_serif_link2_common * bci_upper_lower_bound */ unsigned char FPGM(bci_action_serif_link2_upper_lower_bound) [] = { PUSHB_1, bci_action_serif_link2_upper_lower_bound, FDEF, PUSHB_1, bci_serif_link2_common, CALL, PUSHB_1, bci_upper_lower_bound, CALL, ENDF, }; /* * bci_hint_glyph * * This is the top-level glyph hinting function which parses the arguments * on the stack and calls subroutines. * * in: action_0_func_idx * ... data ... * action_1_func_idx * ... data ... * ... * * CVT: cvtl_is_subglyph * * uses: bci_action_ip_before * bci_action_ip_after * bci_action_ip_on * bci_action_ip_between * * bci_action_adjust_bound * bci_action_adjust_bound_serif * bci_action_adjust_bound_round * bci_action_adjust_bound_round_serif * * bci_action_stem_bound * bci_action_stem_bound_serif * bci_action_stem_bound_round * bci_action_stem_bound_round_serif * * bci_action_link * bci_action_link_serif * bci_action_link_round * bci_action_link_round_serif * * bci_action_anchor * bci_action_anchor_serif * bci_action_anchor_round * bci_action_anchor_round_serif * * bci_action_blue_anchor * * bci_action_adjust * bci_action_adjust_serif * bci_action_adjust_round * bci_action_adjust_round_serif * * bci_action_stem * bci_action_stem_serif * bci_action_stem_round * bci_action_stem_round_serif * * bci_action_blue * * bci_action_serif * bci_action_serif_lower_bound * bci_action_serif_upper_bound * bci_action_serif_upper_lower_bound * * bci_action_serif_anchor * bci_action_serif_anchor_lower_bound * bci_action_serif_anchor_upper_bound * bci_action_serif_anchor_upper_lower_bound * * bci_action_serif_link1 * bci_action_serif_link1_lower_bound * bci_action_serif_link1_upper_bound * bci_action_serif_link1_upper_lower_bound * * bci_action_serif_link2 * bci_action_serif_link2_lower_bound * bci_action_serif_link2_upper_bound * bci_action_serif_link2_upper_lower_bound */ unsigned char FPGM(bci_hint_glyph) [] = { PUSHB_1, bci_hint_glyph, FDEF, /* start_loop: */ /* loop until all data on stack is used */ CALL, PUSHB_1, 8, NEG, PUSHB_1, 3, DEPTH, LT, JROT, /* goto start_loop */ PUSHB_1, 1, SZP2, /* set zp2 to normal zone 1 */ IUP_y, ENDF, }; #define COPY_FPGM(func_name) \ do \ { \ memcpy(bufp, fpgm_ ## func_name, \ sizeof (fpgm_ ## func_name)); \ bufp += sizeof (fpgm_ ## func_name); \ } while (0) static FT_Error TA_table_build_fpgm(FT_Byte** fpgm, FT_ULong* fpgm_len, SFNT* sfnt, FONT* font) { FT_UInt buf_len; FT_UInt len; FT_Byte* buf; FT_Byte* bufp; /* for compatibility with dumb bytecode interpreters or analyzers, */ /* FDEFs are stored in ascending index order, without holes -- */ /* note that some FDEFs are not always needed */ /* (depending on options of `TTFautohint'), */ /* but implementing dynamic FDEF indices would be a lot of work */ buf_len = sizeof (FPGM(bci_align_top_a)) + (font->increase_x_height ? (sizeof (FPGM(bci_align_top_b1a)) + 2 + sizeof (FPGM(bci_align_top_b1b))) : sizeof (FPGM(bci_align_top_b2))) + sizeof (FPGM(bci_align_top_c)) + sizeof (FPGM(bci_round)) + sizeof (FPGM(bci_smooth_stem_width)) + sizeof (FPGM(bci_get_best_width)) + sizeof (FPGM(bci_strong_stem_width)) + sizeof (FPGM(bci_loop_do)) + sizeof (FPGM(bci_loop)) + sizeof (FPGM(bci_cvt_rescale)) + sizeof (FPGM(bci_cvt_rescale_range)) + sizeof (FPGM(bci_vwidth_data_store)) + sizeof (FPGM(bci_blue_round)) + sizeof (FPGM(bci_blue_round_range)) + sizeof (FPGM(bci_decrement_component_counter)) + sizeof (FPGM(bci_get_point_extrema)) + sizeof (FPGM(bci_nibbles)) + sizeof (FPGM(bci_number_set_is_element)) + sizeof (FPGM(bci_number_set_is_element2)) + sizeof (FPGM(bci_create_segment)) + sizeof (FPGM(bci_create_segments)) + sizeof (FPGM(bci_create_segments_0)) + sizeof (FPGM(bci_create_segments_1)) + sizeof (FPGM(bci_create_segments_2)) + sizeof (FPGM(bci_create_segments_3)) + sizeof (FPGM(bci_create_segments_4)) + sizeof (FPGM(bci_create_segments_5)) + sizeof (FPGM(bci_create_segments_6)) + sizeof (FPGM(bci_create_segments_7)) + sizeof (FPGM(bci_create_segments_8)) + sizeof (FPGM(bci_create_segments_9)) + sizeof (FPGM(bci_create_segments_composite)) + sizeof (FPGM(bci_create_segments_composite_0)) + sizeof (FPGM(bci_create_segments_composite_1)) + sizeof (FPGM(bci_create_segments_composite_2)) + sizeof (FPGM(bci_create_segments_composite_3)) + sizeof (FPGM(bci_create_segments_composite_4)) + sizeof (FPGM(bci_create_segments_composite_5)) + sizeof (FPGM(bci_create_segments_composite_6)) + sizeof (FPGM(bci_create_segments_composite_7)) + sizeof (FPGM(bci_create_segments_composite_8)) + sizeof (FPGM(bci_create_segments_composite_9)) + sizeof (FPGM(bci_align_point)) + sizeof (FPGM(bci_align_segment)) + sizeof (FPGM(bci_align_segments)) + sizeof (FPGM(bci_scale_contour)) + sizeof (FPGM(bci_scale_glyph)) + sizeof (FPGM(bci_scale_composite_glyph)) + sizeof (FPGM(bci_shift_contour)) + sizeof (FPGM(bci_shift_subglyph)) + sizeof (FPGM(bci_ip_outer_align_point)) + sizeof (FPGM(bci_ip_on_align_points)) + sizeof (FPGM(bci_ip_between_align_point)) + sizeof (FPGM(bci_ip_between_align_points)) + sizeof (FPGM(bci_adjust_common)) + sizeof (FPGM(bci_stem_common)) + sizeof (FPGM(bci_serif_common)) + sizeof (FPGM(bci_serif_anchor_common)) + sizeof (FPGM(bci_serif_link1_common)) + sizeof (FPGM(bci_serif_link2_common)) + sizeof (FPGM(bci_lower_bound)) + sizeof (FPGM(bci_upper_bound)) + sizeof (FPGM(bci_upper_lower_bound)) + sizeof (FPGM(bci_adjust_bound)) + sizeof (FPGM(bci_stem_bound)) + sizeof (FPGM(bci_link)) + sizeof (FPGM(bci_anchor)) + sizeof (FPGM(bci_adjust)) + sizeof (FPGM(bci_stem)) + sizeof (FPGM(bci_action_ip_before)) + sizeof (FPGM(bci_action_ip_after)) + sizeof (FPGM(bci_action_ip_on)) + sizeof (FPGM(bci_action_ip_between)) + sizeof (FPGM(bci_action_blue)) + sizeof (FPGM(bci_action_blue_anchor)) + sizeof (FPGM(bci_action_anchor)) + sizeof (FPGM(bci_action_anchor_serif)) + sizeof (FPGM(bci_action_anchor_round)) + sizeof (FPGM(bci_action_anchor_round_serif)) + sizeof (FPGM(bci_action_adjust)) + sizeof (FPGM(bci_action_adjust_serif)) + sizeof (FPGM(bci_action_adjust_round)) + sizeof (FPGM(bci_action_adjust_round_serif)) + sizeof (FPGM(bci_action_adjust_bound)) + sizeof (FPGM(bci_action_adjust_bound_serif)) + sizeof (FPGM(bci_action_adjust_bound_round)) + sizeof (FPGM(bci_action_adjust_bound_round_serif)) + sizeof (FPGM(bci_action_link)) + sizeof (FPGM(bci_action_link_serif)) + sizeof (FPGM(bci_action_link_round)) + sizeof (FPGM(bci_action_link_round_serif)) + sizeof (FPGM(bci_action_stem)) + sizeof (FPGM(bci_action_stem_serif)) + sizeof (FPGM(bci_action_stem_round)) + sizeof (FPGM(bci_action_stem_round_serif)) + sizeof (FPGM(bci_action_stem_bound)) + sizeof (FPGM(bci_action_stem_bound_serif)) + sizeof (FPGM(bci_action_stem_bound_round)) + sizeof (FPGM(bci_action_stem_bound_round_serif)) + sizeof (FPGM(bci_action_serif)) + sizeof (FPGM(bci_action_serif_lower_bound)) + sizeof (FPGM(bci_action_serif_upper_bound)) + sizeof (FPGM(bci_action_serif_upper_lower_bound)) + sizeof (FPGM(bci_action_serif_anchor)) + sizeof (FPGM(bci_action_serif_anchor_lower_bound)) + sizeof (FPGM(bci_action_serif_anchor_upper_bound)) + sizeof (FPGM(bci_action_serif_anchor_upper_lower_bound)) + sizeof (FPGM(bci_action_serif_link1)) + sizeof (FPGM(bci_action_serif_link1_lower_bound)) + sizeof (FPGM(bci_action_serif_link1_upper_bound)) + sizeof (FPGM(bci_action_serif_link1_upper_lower_bound)) + sizeof (FPGM(bci_action_serif_link2)) + sizeof (FPGM(bci_action_serif_link2_lower_bound)) + sizeof (FPGM(bci_action_serif_link2_upper_bound)) + sizeof (FPGM(bci_action_serif_link2_upper_lower_bound)) + sizeof (FPGM(bci_hint_glyph)); /* buffer length must be a multiple of four */ len = (buf_len + 3) & ~3; buf = (FT_Byte*)malloc(len); if (!buf) return FT_Err_Out_Of_Memory; /* pad end of buffer with zeros */ buf[len - 1] = 0x00; buf[len - 2] = 0x00; buf[len - 3] = 0x00; /* copy font program into buffer and fill in the missing variables */ bufp = buf; COPY_FPGM(bci_align_top_a); if (font->increase_x_height) { COPY_FPGM(bci_align_top_b1a); *(bufp++) = HIGH(font->increase_x_height); *(bufp++) = LOW(font->increase_x_height); COPY_FPGM(bci_align_top_b1b); } else COPY_FPGM(bci_align_top_b2); COPY_FPGM(bci_align_top_c); COPY_FPGM(bci_round); COPY_FPGM(bci_smooth_stem_width); COPY_FPGM(bci_get_best_width); COPY_FPGM(bci_strong_stem_width); COPY_FPGM(bci_loop_do); COPY_FPGM(bci_loop); COPY_FPGM(bci_cvt_rescale); COPY_FPGM(bci_cvt_rescale_range); COPY_FPGM(bci_vwidth_data_store); COPY_FPGM(bci_blue_round); COPY_FPGM(bci_blue_round_range); COPY_FPGM(bci_decrement_component_counter); COPY_FPGM(bci_get_point_extrema); COPY_FPGM(bci_nibbles); COPY_FPGM(bci_number_set_is_element); COPY_FPGM(bci_number_set_is_element2); COPY_FPGM(bci_create_segment); COPY_FPGM(bci_create_segments); COPY_FPGM(bci_create_segments_0); COPY_FPGM(bci_create_segments_1); COPY_FPGM(bci_create_segments_2); COPY_FPGM(bci_create_segments_3); COPY_FPGM(bci_create_segments_4); COPY_FPGM(bci_create_segments_5); COPY_FPGM(bci_create_segments_6); COPY_FPGM(bci_create_segments_7); COPY_FPGM(bci_create_segments_8); COPY_FPGM(bci_create_segments_9); COPY_FPGM(bci_create_segments_composite); COPY_FPGM(bci_create_segments_composite_0); COPY_FPGM(bci_create_segments_composite_1); COPY_FPGM(bci_create_segments_composite_2); COPY_FPGM(bci_create_segments_composite_3); COPY_FPGM(bci_create_segments_composite_4); COPY_FPGM(bci_create_segments_composite_5); COPY_FPGM(bci_create_segments_composite_6); COPY_FPGM(bci_create_segments_composite_7); COPY_FPGM(bci_create_segments_composite_8); COPY_FPGM(bci_create_segments_composite_9); COPY_FPGM(bci_align_point); COPY_FPGM(bci_align_segment); COPY_FPGM(bci_align_segments); COPY_FPGM(bci_scale_contour); COPY_FPGM(bci_scale_glyph); COPY_FPGM(bci_scale_composite_glyph); COPY_FPGM(bci_shift_contour); COPY_FPGM(bci_shift_subglyph); COPY_FPGM(bci_ip_outer_align_point); COPY_FPGM(bci_ip_on_align_points); COPY_FPGM(bci_ip_between_align_point); COPY_FPGM(bci_ip_between_align_points); COPY_FPGM(bci_adjust_common); COPY_FPGM(bci_stem_common); COPY_FPGM(bci_serif_common); COPY_FPGM(bci_serif_anchor_common); COPY_FPGM(bci_serif_link1_common); COPY_FPGM(bci_serif_link2_common); COPY_FPGM(bci_lower_bound); COPY_FPGM(bci_upper_bound); COPY_FPGM(bci_upper_lower_bound); COPY_FPGM(bci_adjust_bound); COPY_FPGM(bci_stem_bound); COPY_FPGM(bci_link); COPY_FPGM(bci_anchor); COPY_FPGM(bci_adjust); COPY_FPGM(bci_stem); COPY_FPGM(bci_action_ip_before); COPY_FPGM(bci_action_ip_after); COPY_FPGM(bci_action_ip_on); COPY_FPGM(bci_action_ip_between); COPY_FPGM(bci_action_blue); COPY_FPGM(bci_action_blue_anchor); COPY_FPGM(bci_action_anchor); COPY_FPGM(bci_action_anchor_serif); COPY_FPGM(bci_action_anchor_round); COPY_FPGM(bci_action_anchor_round_serif); COPY_FPGM(bci_action_adjust); COPY_FPGM(bci_action_adjust_serif); COPY_FPGM(bci_action_adjust_round); COPY_FPGM(bci_action_adjust_round_serif); COPY_FPGM(bci_action_adjust_bound); COPY_FPGM(bci_action_adjust_bound_serif); COPY_FPGM(bci_action_adjust_bound_round); COPY_FPGM(bci_action_adjust_bound_round_serif); COPY_FPGM(bci_action_link); COPY_FPGM(bci_action_link_serif); COPY_FPGM(bci_action_link_round); COPY_FPGM(bci_action_link_round_serif); COPY_FPGM(bci_action_stem); COPY_FPGM(bci_action_stem_serif); COPY_FPGM(bci_action_stem_round); COPY_FPGM(bci_action_stem_round_serif); COPY_FPGM(bci_action_stem_bound); COPY_FPGM(bci_action_stem_bound_serif); COPY_FPGM(bci_action_stem_bound_round); COPY_FPGM(bci_action_stem_bound_round_serif); COPY_FPGM(bci_action_serif); COPY_FPGM(bci_action_serif_lower_bound); COPY_FPGM(bci_action_serif_upper_bound); COPY_FPGM(bci_action_serif_upper_lower_bound); COPY_FPGM(bci_action_serif_anchor); COPY_FPGM(bci_action_serif_anchor_lower_bound); COPY_FPGM(bci_action_serif_anchor_upper_bound); COPY_FPGM(bci_action_serif_anchor_upper_lower_bound); COPY_FPGM(bci_action_serif_link1); COPY_FPGM(bci_action_serif_link1_lower_bound); COPY_FPGM(bci_action_serif_link1_upper_bound); COPY_FPGM(bci_action_serif_link1_upper_lower_bound); COPY_FPGM(bci_action_serif_link2); COPY_FPGM(bci_action_serif_link2_lower_bound); COPY_FPGM(bci_action_serif_link2_upper_bound); COPY_FPGM(bci_action_serif_link2_upper_lower_bound); COPY_FPGM(bci_hint_glyph); *fpgm = buf; *fpgm_len = buf_len; return FT_Err_Ok; } FT_Error TA_sfnt_build_fpgm_table(SFNT* sfnt, FONT* font) { FT_Error error; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Byte* fpgm_buf; FT_ULong fpgm_len; error = TA_sfnt_add_table_info(sfnt); if (error) goto Exit; /* `glyf', `cvt', `fpgm', and `prep' are always used in parallel */ if (glyf_table->processed) { sfnt->table_infos[sfnt->num_table_infos - 1] = data->fpgm_idx; goto Exit; } error = TA_table_build_fpgm(&fpgm_buf, &fpgm_len, sfnt, font); if (error) goto Exit; if (fpgm_len > sfnt->max_instructions) sfnt->max_instructions = fpgm_len; /* in case of success, `fpgm_buf' gets linked */ /* and is eventually freed in `TA_font_unload' */ error = TA_font_add_table(font, &sfnt->table_infos[sfnt->num_table_infos - 1], TTAG_fpgm, fpgm_len, fpgm_buf); if (error) free(fpgm_buf); else data->fpgm_idx = sfnt->table_infos[sfnt->num_table_infos - 1]; Exit: return error; } /* end of tafpgm.c */ ttfautohint-0.97/lib/talatin.h0000644000175000001440000001100412230561114013301 00000000000000/* talatin.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `aflatin.h' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TALATIN_H__ #define __TALATIN_H__ #include "tatypes.h" #include "tahints.h" /* the `latin' writing system */ extern const TA_WritingSystemClassRec ta_latin_writing_system_class; /* the latin-specific script classes */ extern const TA_ScriptClassRec ta_cyrl_script_class; extern const TA_ScriptClassRec ta_grek_script_class; extern const TA_ScriptClassRec ta_hebr_script_class; extern const TA_ScriptClassRec ta_latn_script_class; #if 0 extern const TA_ScriptClassRec ta_armn_script_class; #endif /* constants are given with units_per_em == 2048 in mind */ #define TA_LATIN_CONSTANT(metrics, c) \ (((c) * (FT_Long)((TA_LatinMetrics)(metrics))->units_per_em) / 2048) /* Latin (global) metrics management */ #define TA_LATIN_IS_TOP_BLUE(b) \ ((b)->properties & TA_BLUE_PROPERTY_LATIN_TOP) #define TA_LATIN_IS_X_HEIGHT_BLUE(b) \ ((b)->properties & TA_BLUE_PROPERTY_LATIN_X_HEIGHT) #define TA_LATIN_IS_LONG_BLUE(b) \ ((b)->properties &TA_BLUE_PROPERTY_LATIN_LONG) #define TA_LATIN_MAX_WIDTHS 16 #define TA_LATIN_BLUE_ACTIVE (1 << 0) /* set if zone height is <= 3/4px */ #define TA_LATIN_BLUE_TOP (1 << 1) /* result of TA_LATIN_IS_TOP_BLUE */ #define TA_LATIN_BLUE_ADJUSTMENT (1 << 2) /* used for scale adjustment */ /* optimization */ typedef struct TA_LatinBlueRec_ { TA_WidthRec ref; TA_WidthRec shoot; FT_UInt flags; } TA_LatinBlueRec, *TA_LatinBlue; typedef struct TA_LatinAxisRec_ { FT_Fixed scale; FT_Pos delta; FT_UInt width_count; /* number of used widths */ TA_WidthRec widths[TA_LATIN_MAX_WIDTHS]; /* widths array */ FT_Pos edge_distance_threshold; /* used for creating edges */ FT_Pos standard_width; /* the default stem thickness */ FT_Bool extra_light; /* is standard width very light? */ /* ignored for horizontal metrics */ FT_UInt blue_count; /* we add two blue zones for usWinAscent and usWinDescent */ TA_LatinBlueRec blues[TA_BLUE_STRINGSET_MAX + 2]; FT_Fixed org_scale; FT_Pos org_delta; } TA_LatinAxisRec, *TA_LatinAxis; typedef struct TA_LatinMetricsRec_ { TA_ScriptMetricsRec root; FT_UInt units_per_em; TA_LatinAxisRec axis[TA_DIMENSION_MAX]; } TA_LatinMetricsRec, *TA_LatinMetrics; FT_Error ta_latin_metrics_init(TA_LatinMetrics metrics, FT_Face face); void ta_latin_metrics_scale(TA_LatinMetrics metrics, TA_Scaler scaler); void ta_latin_metrics_init_widths(TA_LatinMetrics metrics, FT_Face face); void ta_latin_metrics_check_digits(TA_LatinMetrics metrics, FT_Face face); #define TA_LATIN_HINTS_HORZ_SNAP (1 << 0) /* enable stem width snapping */ #define TA_LATIN_HINTS_VERT_SNAP (1 << 1) /* enable stem height snapping */ #define TA_LATIN_HINTS_STEM_ADJUST (1 << 2) /* enable stem width/height */ /* adjustment */ #define TA_LATIN_HINTS_MONO (1 << 3) /* indicate monochrome rendering */ #define TA_LATIN_HINTS_DO_HORZ_SNAP(h) \ TA_HINTS_TEST_OTHER(h, TA_LATIN_HINTS_HORZ_SNAP) #define TA_LATIN_HINTS_DO_VERT_SNAP(h) \ TA_HINTS_TEST_OTHER(h, TA_LATIN_HINTS_VERT_SNAP) #define TA_LATIN_HINTS_DO_STEM_ADJUST(h) \ TA_HINTS_TEST_OTHER(h, TA_LATIN_HINTS_STEM_ADJUST) #define TA_LATIN_HINTS_DO_MONO(h) \ TA_HINTS_TEST_OTHER(h, TA_LATIN_HINTS_MONO) /* the next functions shouldn't normally be exported; */ /* however, other scripts might like to use these functions as-is */ FT_Error ta_latin_hints_compute_segments(TA_GlyphHints hints, TA_Dimension dim); void ta_latin_hints_link_segments(TA_GlyphHints hints, TA_Dimension dim); FT_Error ta_latin_hints_compute_edges(TA_GlyphHints hints, TA_Dimension dim); FT_Error ta_latin_hints_detect_features(TA_GlyphHints hints, TA_Dimension dim); #endif /* __TALATIN_H__ */ /* end of talatin.h */ ttfautohint-0.97/lib/taloca.c0000644000175000001440000000653012076552172013127 00000000000000/* taloca.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" FT_Error TA_sfnt_build_loca_table(SFNT* sfnt, FONT* font) { SFNT_Table* loca_table = &font->tables[sfnt->loca_idx]; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; SFNT_Table* head_table = &font->tables[sfnt->head_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; GLYPH* glyph; FT_ULong offset; FT_Byte loca_format; FT_Byte* buf_new; FT_Byte* p; FT_UShort i; if (loca_table->processed) return TA_Err_Ok; /* get largest offset */ offset = 0; glyph = data->glyphs; for (i = 0; i < data->num_glyphs; i++, glyph++) { /* glyph records should have offsets which are multiples of 4 */ offset = (offset + 3) & ~3; offset += glyph->len1 + glyph->len2 + glyph->ins_len; /* add two bytes for the instructionLength field */ if (glyph->len2 || glyph->ins_len) offset += 2; } if (offset > 0xFFFF * 2) loca_format = 1; else loca_format = 0; /* fill table */ if (loca_format) { loca_table->len = (data->num_glyphs + 1) * 4; buf_new = (FT_Byte*)realloc(loca_table->buf, loca_table->len); if (!buf_new) return FT_Err_Out_Of_Memory; else loca_table->buf = buf_new; p = loca_table->buf; offset = 0; glyph = data->glyphs; for (i = 0; i < data->num_glyphs; i++, glyph++) { offset = (offset + 3) & ~3; *(p++) = BYTE1(offset); *(p++) = BYTE2(offset); *(p++) = BYTE3(offset); *(p++) = BYTE4(offset); offset += glyph->len1 + glyph->len2 + glyph->ins_len; if (glyph->len2 || glyph->ins_len) offset += 2; } /* last element holds the size of the `glyf' table */ *(p++) = BYTE1(offset); *(p++) = BYTE2(offset); *(p++) = BYTE3(offset); *(p++) = BYTE4(offset); } else { loca_table->len = (data->num_glyphs + 1) * 2; buf_new = (FT_Byte*)realloc(loca_table->buf, (loca_table->len + 3) & ~3); if (!buf_new) return FT_Err_Out_Of_Memory; else loca_table->buf = buf_new; p = loca_table->buf; offset = 0; glyph = data->glyphs; for (i = 0; i < data->num_glyphs; i++, glyph++) { offset = (offset + 1) & ~1; *(p++) = HIGH(offset); *(p++) = LOW(offset); offset += (glyph->len1 + glyph->len2 + glyph->ins_len + 1) >> 1; if (glyph->len2 || glyph->ins_len) offset += 1; } /* last element holds the size of the `glyf' table */ *(p++) = HIGH(offset); *(p++) = LOW(offset); /* pad `loca' table to make its length a multiple of 4 */ if (loca_table->len % 4 == 2) { *(p++) = 0; *(p++) = 0; } } loca_table->checksum = TA_table_compute_checksum(loca_table->buf, loca_table->len); loca_table->processed = 1; head_table->buf[LOCA_FORMAT_OFFSET] = loca_format; return TA_Err_Ok; } /* end of taloca.c */ ttfautohint-0.97/lib/tattc.c0000644000175000001440000001176612076552172013012 00000000000000/* tattc.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" static FT_Error TA_font_build_TTC_header(FONT* font, FT_Byte** header_buf, FT_ULong* header_len) { SFNT* sfnts = font->sfnts; FT_Long num_sfnts = font->num_sfnts; SFNT_Table* tables = font->tables; FT_ULong num_tables = font->num_tables; FT_ULong TTF_offset; FT_ULong DSIG_offset; FT_Byte* buf; FT_ULong len; FT_Long i; FT_Byte* p; len = (font->have_DSIG ? 24 : 12) + 4 * num_sfnts; buf = (FT_Byte*)malloc(len); if (!buf) return FT_Err_Out_Of_Memory; p = buf; /* TTC ID string */ *(p++) = 't'; *(p++) = 't'; *(p++) = 'c'; *(p++) = 'f'; /* TTC header version */ *(p++) = 0x00; *(p++) = font->have_DSIG ? 0x02 : 0x01; *(p++) = 0x00; *(p++) = 0x00; /* number of subfonts */ *(p++) = BYTE1(num_sfnts); *(p++) = BYTE2(num_sfnts); *(p++) = BYTE3(num_sfnts); *(p++) = BYTE4(num_sfnts); /* the first TTF subfont header immediately follows the TTC header */ TTF_offset = len; /* loop over all subfonts */ for (i = 0; i < num_sfnts; i++) { SFNT* sfnt = &sfnts[i]; FT_ULong l; TA_sfnt_sort_table_info(sfnt, font); /* only get header length */ (void)TA_sfnt_build_TTF_header(sfnt, font, NULL, &l, 0); *(p++) = BYTE1(TTF_offset); *(p++) = BYTE2(TTF_offset); *(p++) = BYTE3(TTF_offset); *(p++) = BYTE4(TTF_offset); TTF_offset += l; } /* the first SFNT table immediately follows the subfont TTF headers */ TA_font_compute_table_offsets(font, TTF_offset); if (font->have_DSIG) { /* DSIG tag */ *(p++) = 'D'; *(p++) = 'S'; *(p++) = 'I'; *(p++) = 'G'; /* DSIG length */ *(p++) = 0x00; *(p++) = 0x00; *(p++) = 0x00; *(p++) = 0x08; /* DSIG offset; in a TTC this is always the last SFNT table */ DSIG_offset = tables[num_tables - 1].offset; *(p++) = BYTE1(DSIG_offset); *(p++) = BYTE2(DSIG_offset); *(p++) = BYTE3(DSIG_offset); *(p++) = BYTE4(DSIG_offset); } *header_buf = buf; *header_len = len; return TA_Err_Ok; } FT_Error TA_font_build_TTC(FONT* font) { SFNT* sfnts = font->sfnts; FT_Long num_sfnts = font->num_sfnts; SFNT_Table* tables; FT_ULong num_tables; FT_Byte* DSIG_buf; SFNT_Table_Info dummy; FT_Byte* TTC_header_buf; FT_ULong TTC_header_len; FT_Byte** TTF_header_bufs = NULL; FT_ULong* TTF_header_lens = NULL; FT_ULong offset; FT_Long i; FT_ULong j; FT_Error error; /* replace an existing `DSIG' table with a dummy */ if (font->have_DSIG) { error = TA_table_build_DSIG(&DSIG_buf); if (error) return error; /* in case of success, `DSIG_buf' gets linked */ /* and is eventually freed in `TA_font_unload' */ error = TA_font_add_table(font, &dummy, TTAG_DSIG, DSIG_LEN, DSIG_buf); if (error) { free(DSIG_buf); return error; } } /* this also computes the SFNT table offsets */ error = TA_font_build_TTC_header(font, &TTC_header_buf, &TTC_header_len); if (error) return error; TTF_header_bufs = (FT_Byte**)calloc(1, num_sfnts * sizeof (FT_Byte*)); if (!TTF_header_bufs) goto Err; TTF_header_lens = (FT_ULong*)malloc(num_sfnts * sizeof (FT_ULong)); if (!TTF_header_lens) goto Err; for (i = 0; i < num_sfnts; i++) { error = TA_sfnt_build_TTF_header(&sfnts[i], font, &TTF_header_bufs[i], &TTF_header_lens[i], 1); if (error) goto Err; } /* build font */ tables = font->tables; num_tables = font->num_tables; /* get font length from last SFNT table array element */ font->out_len = tables[num_tables - 1].offset + ((tables[num_tables - 1].len + 3) & ~3); font->out_buf = (FT_Byte*)malloc(font->out_len); if (!font->out_buf) { error = FT_Err_Out_Of_Memory; goto Err; } memcpy(font->out_buf, TTC_header_buf, TTC_header_len); offset = TTC_header_len; for (i = 0; i < num_sfnts; i++) { memcpy(font->out_buf + offset, TTF_header_bufs[i], TTF_header_lens[i]); offset += TTF_header_lens[i]; } for (j = 0; j < num_tables; j++) { SFNT_Table* table = &tables[j]; /* buffer length is a multiple of 4 */ memcpy(font->out_buf + table->offset, table->buf, (table->len + 3) & ~3); } error = TA_Err_Ok; Err: free(TTC_header_buf); if (TTF_header_bufs) { for (i = 0; i < font->num_sfnts; i++) free(TTF_header_bufs[i]); free(TTF_header_bufs); } free(TTF_header_lens); return error; } /* end of tattc.c */ ttfautohint-0.97/lib/ttfautohint-errors.h0000644000175000001440000000475112076552172015557 00000000000000/* ttfautohint-errors.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #ifndef __TTFAUTOHINT_ERRORS_H__ #define __TTFAUTOHINT_ERRORS_H__ /* We duplicate FreeType's error handling macros for simplicity; */ /* however, we don't use module-specific error codes. */ #undef TA_ERR_XCAT #undef TA_ERR_CAT #define TA_ERR_XCAT(x, y) x ## y #define TA_ERR_CAT(x, y) TA_ERR_XCAT(x, y) #undef TA_ERR_PREFIX #define TA_ERR_PREFIX TA_Err_ #ifndef TA_ERRORDEF # define TA_ERRORDEF(e, v, s) e = v, # define TA_ERROR_START_LIST enum { # define TA_ERROR_END_LIST TA_ERR_CAT(TA_ERR_PREFIX, Max) }; #endif #define TA_ERRORDEF_(e, v, s) \ TA_ERRORDEF(TA_ERR_CAT(TA_ERR_PREFIX, e), v, s) #define TA_NOERRORDEF_ TA_ERRORDEF_ /* The error codes. */ #ifdef TA_ERROR_START_LIST TA_ERROR_START_LIST #endif TA_NOERRORDEF_(Ok, 0x00, \ "no error") TA_ERRORDEF_(Invalid_FreeType_Version, 0x0E, \ "invalid FreeType version (need 2.4.5 or higher)") TA_ERRORDEF_(Missing_Legal_Permission, 0x0F, \ "legal permission bit in `OS/2' font table is set") TA_ERRORDEF_(Invalid_Stream_Write, 0x5F, \ "invalid stream write") TA_ERRORDEF_(Hinter_Overflow, 0xF0, \ "hinter overflow") TA_ERRORDEF_(Missing_Glyph, 0xF1, \ "missing key character glyph") TA_ERRORDEF_(Missing_Unicode_CMap, 0xF2, \ "missing Unicode character map") TA_ERRORDEF_(Missing_Symbol_CMap, 0xF3, \ "missing symbol character map") TA_ERRORDEF_(Canceled, 0xF4, \ "execution canceled") TA_ERRORDEF_(Already_Processed, 0xF5, \ "font already processed by ttfautohint") TA_ERRORDEF_(Invalid_Font_Type, 0xF6, \ "not a font with TrueType outlines in SFNT format") TA_ERRORDEF_(Unknown_Argument, 0xF7, \ "unknown argument") #ifdef TA_ERROR_END_LIST TA_ERROR_END_LIST #endif #undef TA_ERROR_START_LIST #undef TA_ERROR_END_LIST #undef TA_ERRORDEF #undef TA_ERRORDEF_ #undef TA_NOERRORDEF_ #endif /* __TTFAUTOHINT_ERRORS_H__ */ /* end of ttfautohint-errors.h */ ttfautohint-0.97/lib/tasfnt.c0000644000175000001440000001051212076552172013156 00000000000000/* tasfnt.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" FT_Error TA_sfnt_split_into_SFNT_tables(SFNT* sfnt, FONT* font) { FT_Error error; FT_ULong i; /* basic check whether font is a TTF or TTC */ if (!FT_IS_SFNT(sfnt->face)) return TA_Err_Invalid_Font_Type; error = FT_Sfnt_Table_Info(sfnt->face, 0, NULL, &sfnt->num_table_infos); if (error) return error; sfnt->table_infos = (SFNT_Table_Info*)malloc(sfnt->num_table_infos * sizeof (SFNT_Table_Info)); if (!sfnt->table_infos) return FT_Err_Out_Of_Memory; /* collect SFNT tables and trace some of them */ sfnt->glyf_idx = MISSING; sfnt->loca_idx = MISSING; sfnt->head_idx = MISSING; sfnt->hmtx_idx = MISSING; sfnt->maxp_idx = MISSING; sfnt->name_idx = MISSING; sfnt->post_idx = MISSING; sfnt->OS2_idx = MISSING; sfnt->GPOS_idx = MISSING; for (i = 0; i < sfnt->num_table_infos; i++) { SFNT_Table_Info* table_info = &sfnt->table_infos[i]; FT_ULong tag; FT_ULong len; FT_Byte* buf; FT_ULong buf_len; FT_ULong j; *table_info = MISSING; error = FT_Sfnt_Table_Info(sfnt->face, i, &tag, &len); if (error) { if (error == FT_Err_Table_Missing) continue; else return error; } /* ignore zero-length tables */ else if (!len) continue; /* ignore tables which we are going to create by ourselves, */ /* or which would become invalid otherwise */ else if (tag == TTAG_fpgm || tag == TTAG_prep || tag == TTAG_cvt || tag == TTAG_hdmx || tag == TTAG_VDMX || tag == TTAG_LTSH || tag == TTAG_gasp) continue; else if (tag == TTAG_DSIG) { font->have_DSIG = 1; continue; } /* make the allocated buffer length a multiple of 4 */ buf_len = (len + 3) & ~3; buf = (FT_Byte*)malloc(buf_len); if (!buf) return FT_Err_Out_Of_Memory; /* pad end of buffer with zeros */ buf[buf_len - 1] = 0x00; buf[buf_len - 2] = 0x00; buf[buf_len - 3] = 0x00; /* load table */ error = FT_Load_Sfnt_Table(sfnt->face, tag, 0, buf, &len); if (error) goto Err; /* check whether we already have this table */ for (j = 0; j < font->num_tables; j++) { SFNT_Table* table = &font->tables[j]; if (table->tag == tag && table->len == len && !memcmp(table->buf, buf, len)) break; } if (tag == TTAG_head) sfnt->head_idx = j; else if (tag == TTAG_glyf) sfnt->glyf_idx = j; else if (tag == TTAG_hmtx) sfnt->hmtx_idx = j; else if (tag == TTAG_loca) sfnt->loca_idx = j; else if (tag == TTAG_maxp) { sfnt->maxp_idx = j; sfnt->max_components = buf[MAXP_MAX_COMPONENTS_OFFSET] << 8; sfnt->max_components += buf[MAXP_MAX_COMPONENTS_OFFSET + 1]; } else if (tag == TTAG_name) sfnt->name_idx = j; else if (tag == TTAG_post) sfnt->post_idx = j; else if (tag == TTAG_OS2) sfnt->OS2_idx = j; else if (tag == TTAG_GPOS) sfnt->GPOS_idx = j; if (j == font->num_tables) { /* add element to table array if it is missing or different; */ /* in case of success, `buf' gets linked and is eventually */ /* freed in `TA_font_unload' */ error = TA_font_add_table(font, table_info, tag, len, buf); if (error) goto Err; } else { /* reuse existing SFNT table */ free(buf); *table_info = j; } continue; Err: free(buf); return error; } /* no (non-empty) `glyf', `loca', `head', or `maxp' table; */ /* this can't be a valid TTF with outlines */ if (sfnt->glyf_idx == MISSING || sfnt->loca_idx == MISSING || sfnt->head_idx == MISSING || sfnt->maxp_idx == MISSING) return TA_Err_Invalid_Font_Type; return TA_Err_Ok; } /* end of tasfnt.c */ ttfautohint-0.97/lib/taglobal.c0000644000175000001440000001631612230016042013433 00000000000000/* taglobal.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afglobal.c' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #include #include "taglobal.h" /* get writing system specific header files */ #undef WRITING_SYSTEM #define WRITING_SYSTEM(ws, WS) /* empty */ #include "tawrtsys.h" #undef WRITING_SYSTEM #define WRITING_SYSTEM(ws, WS) \ &ta_ ## ws ## _writing_system_class, TA_WritingSystemClass const ta_writing_system_classes[] = { #include "tawrtsys.h" NULL /* do not remove */ }; #undef SCRIPT #define SCRIPT(s, S, d) \ &ta_ ## s ## _script_class, TA_ScriptClass const ta_script_classes[] = { #include NULL /* do not remove */ }; #ifdef TA_DEBUG #undef SCRIPT #define SCRIPT(s, S, d) #s, const char* ta_script_names[] = { #include }; #endif /* TA_DEBUG */ /* Compute the script index of each glyph within a given face. */ static FT_Error ta_face_globals_compute_script_coverage(TA_FaceGlobals globals) { FT_Error error; FT_Face face = globals->face; FT_CharMap old_charmap = face->charmap; FT_Byte* gscripts = globals->glyph_scripts; FT_UInt ss; FT_UInt i; /* the value TA_SCRIPT_NONE means `uncovered glyph' */ memset(globals->glyph_scripts, TA_SCRIPT_NONE, globals->glyph_count); error = FT_Select_Charmap(face, FT_ENCODING_UNICODE); if (error) { /* ignore this error; we simply use the fallback script */ /* XXX: Shouldn't we rather disable hinting? */ error = FT_Err_Ok; goto Exit; } /* scan each script in a Unicode charmap */ for (ss = 0; ta_script_classes[ss]; ss++) { TA_ScriptClass script_class = ta_script_classes[ss]; TA_Script_UniRange range; if (script_class->script_uni_ranges == NULL) continue; /* scan all Unicode points in the range and */ /* set the corresponding glyph script index */ for (range = script_class->script_uni_ranges; range->first != 0; range++) { FT_ULong charcode = range->first; FT_UInt gindex; gindex = FT_Get_Char_Index(face, charcode); if (gindex != 0 && gindex < (FT_ULong)globals->glyph_count && gscripts[gindex] == TA_SCRIPT_NONE) gscripts[gindex] = (FT_Byte)ss; for (;;) { charcode = FT_Get_Next_Char(face, charcode, &gindex); if (gindex == 0 || charcode > range->last) break; if (gindex < (FT_ULong)globals->glyph_count && gscripts[gindex] == TA_SCRIPT_NONE) gscripts[gindex] = (FT_Byte)ss; } } } /* mark ASCII digits */ for (i = 0x30; i <= 0x39; i++) { FT_UInt gindex = FT_Get_Char_Index(face, i); if (gindex != 0 && gindex < (FT_ULong)globals->glyph_count) gscripts[gindex] |= TA_DIGIT; } Exit: /* by default, all uncovered glyphs are set to the fallback script */ /* XXX: Shouldn't we disable hinting or do something similar? */ if (globals->font->fallback_script != TA_SCRIPT_NONE) { FT_Long nn; for (nn = 0; nn < globals->glyph_count; nn++) { if ((gscripts[nn] & ~TA_DIGIT) == TA_SCRIPT_NONE) { gscripts[nn] &= ~TA_SCRIPT_NONE; gscripts[nn] |= globals->font->fallback_script; } } } FT_Set_Charmap(face, old_charmap); return error; } FT_Error ta_face_globals_new(FT_Face face, TA_FaceGlobals *aglobals, FONT* font) { FT_Error error; TA_FaceGlobals globals; globals = (TA_FaceGlobals)calloc(1, sizeof (TA_FaceGlobalsRec) + face->num_glyphs * sizeof (FT_Byte)); if (!globals) { error = FT_Err_Out_Of_Memory; goto Err; } globals->face = face; globals->glyph_count = face->num_glyphs; globals->glyph_scripts = (FT_Byte*)(globals + 1); globals->font = font; error = ta_face_globals_compute_script_coverage(globals); if (error) { ta_face_globals_free(globals); globals = NULL; } globals->increase_x_height = TA_PROP_INCREASE_X_HEIGHT_MAX; Err: *aglobals = globals; return error; } void ta_face_globals_free(TA_FaceGlobals globals) { if (globals) { FT_UInt nn; for (nn = 0; nn < TA_SCRIPT_MAX; nn++) { if (globals->metrics[nn]) { TA_ScriptClass script_class = ta_script_classes[nn]; TA_WritingSystemClass writing_system_class = ta_writing_system_classes[script_class->writing_system]; if (writing_system_class->script_metrics_done) writing_system_class->script_metrics_done(globals->metrics[nn]); free(globals->metrics[nn]); globals->metrics[nn] = NULL; } } globals->glyph_count = 0; globals->glyph_scripts = NULL; /* no need to free this one! */ globals->face = NULL; free(globals); globals = NULL; } } FT_Error ta_face_globals_get_metrics(TA_FaceGlobals globals, FT_UInt gindex, FT_UInt options, TA_ScriptMetrics *ametrics) { TA_ScriptMetrics metrics = NULL; TA_Script script = (TA_Script)(options & 15); TA_ScriptClass script_class; TA_WritingSystemClass writing_system_class; FT_Error error = FT_Err_Ok; if (gindex >= (FT_ULong)globals->glyph_count) { error = FT_Err_Invalid_Argument; goto Exit; } /* if we have a forced script (via `options'), use it, */ /* otherwise look into `glyph_scripts' array */ if (script == TA_SCRIPT_DFLT || script + 1 >= TA_SCRIPT_MAX) script = (TA_Script)(globals->glyph_scripts[gindex] & TA_SCRIPT_NONE); script_class = ta_script_classes[script]; writing_system_class = ta_writing_system_classes[script_class->writing_system]; metrics = globals->metrics[script]; if (metrics == NULL) { /* create the global metrics object if necessary */ metrics = (TA_ScriptMetrics) calloc(1, writing_system_class->script_metrics_size); if (!metrics) { error = FT_Err_Out_Of_Memory; goto Exit; } metrics->script_class = script_class; metrics->globals = globals; if (writing_system_class->script_metrics_init) { error = writing_system_class->script_metrics_init(metrics, globals->face); if (error) { if (writing_system_class->script_metrics_done) writing_system_class->script_metrics_done(metrics); free(metrics); metrics = NULL; goto Exit; } } globals->metrics[script] = metrics; } Exit: *ametrics = metrics; return error; } FT_Bool ta_face_globals_is_digit(TA_FaceGlobals globals, FT_UInt gindex) { if (gindex < (FT_ULong)globals->glyph_count) return (FT_Bool)(globals->glyph_scripts[gindex] & TA_DIGIT); return (FT_Bool)0; } /* end of taglobal.c */ ttfautohint-0.97/lib/taloader.h0000644000175000001440000000313212076552172013457 00000000000000/* taloader.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afloader.h' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TALOADER_H__ #define __TALOADER_H__ #include "tahints.h" #include "tagloadr.h" typedef struct FONT_ FONT; typedef struct TA_LoaderRec_ { /* current face data */ FT_Face face; TA_FaceGlobals globals; /* current glyph data */ TA_GlyphLoader gloader; TA_GlyphHintsRec hints; TA_ScriptMetrics metrics; FT_Bool transformed; FT_Matrix trans_matrix; FT_Vector trans_delta; FT_Vector pp1; FT_Vector pp2; /* we don't handle vertical phantom points */ } TA_LoaderRec, *TA_Loader; FT_Error ta_loader_init(FONT* font); FT_Error ta_loader_reset(FONT* font, FT_Face face); void ta_loader_done(FONT* font); FT_Error ta_loader_load_glyph(FONT* font, FT_Face face, FT_UInt gindex, FT_Int32 load_flags); void ta_loader_register_hints_recorder(TA_Loader loader, TA_Hints_Recorder hints_recorder, void* user); #endif /* __TALOADER_H__ */ /* end of taloader.h */ ttfautohint-0.97/lib/tapost.c0000644000175000001440000000650012076552172013173 00000000000000/* tapost.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include #include "ta.h" FT_Error TA_sfnt_update_post_table(SFNT* sfnt, FONT* font) { SFNT_Table* post_table; FT_Byte* buf; FT_ULong buf_len; FT_Byte* buf_new; FT_ULong buf_new_len; FT_ULong version; if (sfnt->post_idx == MISSING) return TA_Err_Ok; post_table = &font->tables[sfnt->post_idx]; buf = post_table->buf; buf_len = post_table->len; if (post_table->processed) return TA_Err_Ok; version = buf[0] << 24; version += buf[1] << 16; version += buf[2] << 8; version += buf[3]; /* since we have to add a non-standard glyph name, */ /* we must convert `name' tables in formats 1.0 and 2.5 into format 2.0 */ if (version == 0x10000) { /* XXX */ } else if (version == 0x20000) { FT_UShort num_glyphs; FT_UShort max_name_idx; FT_ULong len; FT_UShort i; FT_Byte* p; FT_Byte* p_new; num_glyphs = buf[32] << 8; num_glyphs += buf[33]; p = buf + 34; max_name_idx = 0; /* get number of glyph names stored in `names' array */ for (i = 0; i < num_glyphs; i++) { FT_UShort idx; idx = *(p++) << 8; idx += *(p++); if (idx >= 258) { idx -= 257; if (idx > max_name_idx) max_name_idx = idx; } } /* we add one entry to the `glyphNameIndex' array, */ /* and append TTFAUTOHINT_GLYPH_LEN bytes to the `names' array */ buf_new_len = post_table->len + 2 + TTFAUTOHINT_GLYPH_LEN; /* make the allocated buffer length a multiple of 4 */ len = (buf_new_len + 3) & ~3; buf_new = (FT_Byte*)malloc(len); if (!buf_new) return FT_Err_Out_Of_Memory; /* pad end of buffer with zeros */ buf_new[len - 1] = 0x00; buf_new[len - 2] = 0x00; buf_new[len - 3] = 0x00; /* copy the table and insert the new data */ p = buf; p_new = buf_new; memcpy(p_new, p, 32); /* header */ p += 32; p_new += 32; *p_new = HIGH(num_glyphs + 1); *(p_new + 1) = LOW(num_glyphs + 1); p += 2; p_new += 2; memcpy(p_new, p, num_glyphs * 2); /* glyphNameIndex */ p += num_glyphs * 2; p_new += num_glyphs * 2; *p_new = HIGH(max_name_idx + 1 + 257); /* new entry */ *(p_new + 1) = LOW(max_name_idx + 1 + 257); p_new += 2; memcpy(p_new, p, buf + buf_len - p); /* names */ p_new += buf + buf_len - p; strncpy((char*)p_new, TTFAUTOHINT_GLYPH_FIRST_BYTE TTFAUTOHINT_GLYPH, TTFAUTOHINT_GLYPH_LEN); /* new entry */ free(buf); post_table->buf = buf_new; post_table->len = buf_new_len; } else if (version == 0x28000) { /* XXX */ } else goto Done; /* nothing to do for format 3.0 */ post_table->checksum = TA_table_compute_checksum(post_table->buf, post_table->len); Done: post_table->processed = 1; return TA_Err_Ok; } /* end of tapost.c */ ttfautohint-0.97/lib/tagloadr.h0000644000175000001440000000657412076552172013476 00000000000000/* tagloadr.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `ftgloadr.h' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TAGLOADR_H__ #define __TAGLOADR_H__ #include #include FT_FREETYPE_H typedef struct TA_SubGlyphRec_ { FT_Int index; FT_UShort flags; FT_Int arg1; FT_Int arg2; FT_Matrix transform; } TA_SubGlyphRec, *TA_SubGlyph; typedef struct TA_GlyphLoadRec_ { FT_Outline outline; /* outline */ FT_Vector* extra_points; /* extra points table */ FT_Vector* extra_points2; /* second extra points table */ FT_UInt num_subglyphs; /* number of subglyphs */ TA_SubGlyph subglyphs; /* subglyphs */ } TA_GlyphLoadRec, *TA_GlyphLoad; typedef struct TA_GlyphLoaderRec_ { FT_UInt max_points; FT_UInt max_contours; FT_UInt max_subglyphs; FT_Bool use_extra; TA_GlyphLoadRec base; TA_GlyphLoadRec current; } TA_GlyphLoaderRec, *TA_GlyphLoader; /* create new empty glyph loader */ FT_Error TA_GlyphLoader_New(TA_GlyphLoader *aloader); /* add an extra points table to a glyph loader */ FT_Error TA_GlyphLoader_CreateExtra(TA_GlyphLoader loader); /* destroy a glyph loader */ void TA_GlyphLoader_Done(TA_GlyphLoader loader); /* reset a glyph loader (frees everything int it) */ void TA_GlyphLoader_Reset(TA_GlyphLoader loader); /* rewind a glyph loader */ void TA_GlyphLoader_Rewind(TA_GlyphLoader loader); /* check that there is enough space to add */ /* `n_points' and `n_contours' to the glyph loader */ FT_Error TA_GlyphLoader_CheckPoints(TA_GlyphLoader loader, FT_UInt n_points, FT_UInt n_contours); #define TA_GLYPHLOADER_CHECK_P(_loader, _count) \ ((_count) == 0 || ((_loader)->base.outline.n_points \ + (_loader)->current.outline.n_points \ + (unsigned long)(_count)) <= (_loader)->max_points) #define TA_GLYPHLOADER_CHECK_C(_loader, _count) \ ((_count) == 0 || ((_loader)->base.outline.n_contours \ + (_loader)->current.outline.n_contours \ + (unsigned long)(_count)) <= (_loader)->max_contours) #define TA_GLYPHLOADER_CHECK_POINTS(_loader, _points, _contours) \ ((TA_GLYPHLOADER_CHECK_P(_loader, _points) \ && TA_GLYPHLOADER_CHECK_C(_loader, _contours)) \ ? 0 \ : TA_GlyphLoader_CheckPoints((_loader), (_points), (_contours))) /* check that there is enough space to add */ /* `n_subs' sub-glyphs to a glyph loader */ FT_Error TA_GlyphLoader_CheckSubGlyphs(TA_GlyphLoader loader, FT_UInt n_subs); /* prepare a glyph loader, i.e. empty the current glyph */ void TA_GlyphLoader_Prepare(TA_GlyphLoader loader); /* add the current glyph to the base glyph */ void TA_GlyphLoader_Add(TA_GlyphLoader loader); /* copy points from one glyph loader to another */ FT_Error TA_GlyphLoader_CopyPoints(TA_GlyphLoader target, TA_GlyphLoader source); #endif /* __TAGLOADR_H__ */ /* end of tagloadr.h */ ttfautohint-0.97/lib/numberset.c0000644000175000001440000001337112157120664013666 00000000000000/* numberset.c */ /* * Copyright (C) 2012-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include #include #include #include #include #include const char* number_set_parse(const char* s, number_range** number_set, int min, int max) { number_range* cur = NULL; number_range* new_range; number_range* tmp; const char* last_pos = s; int last_start = -1; int last_end = -1; int t; number_range* error_code = NULL; if (!s) return NULL; if (min < 0) min = 0; if (max < 0) max = INT_MAX; if (min > max) { t = min; min = max; max = t; } for (;;) { int digit; int n = -1; int m = -1; while (isspace(*s)) s++; if (*s == ',') { s++; continue; } else if (*s == '-') { last_pos = s; n = min; } else if (isdigit(*s)) { last_pos = s; n = 0; do { digit = *s - '0'; if (n > INT_MAX / 10 || (n == INT_MAX / 10 && digit > 5)) { error_code = NUMBERSET_OVERFLOW; break; } n = n * 10 + digit; s++; } while (isdigit(*s)); if (error_code) break; while (isspace(*s)) s++; } else if (*s == '\0') break; /* end of data */ else { error_code = NUMBERSET_INVALID_CHARACTER; break; } if (*s == '-') { s++; while (isspace(*s)) s++; if (isdigit(*s)) { m = 0; do { digit = *s - '0'; if (m > INT_MAX / 10 || (m == INT_MAX / 10 && digit > 5)) { error_code = NUMBERSET_OVERFLOW; break; } m = m * 10 + digit; s++; } while (isdigit(*s)); if (error_code) break; } } else m = n; if (m == -1) m = max; if (m < n) { t = n; n = m; m = t; } if (n < min || m > max) { error_code = NUMBERSET_INVALID_RANGE; break; } if (last_end >= n) { if (last_start >= m) error_code = NUMBERSET_NOT_ASCENDING; else error_code = NUMBERSET_OVERLAPPING_RANGES; break; } if (cur && last_end + 1 == n) { /* merge adjacent ranges */ cur->end = m; } else { if (number_set) { new_range = (number_range*)malloc(sizeof (number_range)); if (!new_range) { error_code = NUMBERSET_ALLOCATION_ERROR; break; } /* prepend new range to list */ new_range->start = n; new_range->end = m; new_range->next = cur; cur = new_range; } } last_start = n; last_end = m; } /* end of loop */ if (error_code) { /* deallocate data */ while (cur) { tmp = cur; cur = cur->next; free(tmp); } s = last_pos; if (number_set) *number_set = error_code; } else { /* success; now reverse list to have elements in ascending order */ number_range* list = NULL; while (cur) { tmp = cur; cur = cur->next; tmp->next = list; list = tmp; } if (number_set) *number_set = list; } return s; } void number_set_free(number_range* number_set) { number_range* nr = number_set; while (nr) { number_range* tmp; tmp = nr; nr = nr->next; free(tmp); } } char* number_set_show(number_range* number_set, int min, int max) { char* s; char* s_new; size_t s_len; size_t s_len_new; number_range* nr = number_set; char tmp[256]; int tmp_len; int t; const char *comma; if (min < 0) min = 0; if (max < 0) max = INT_MAX; if (min > max) { t = min; min = max; max = t; } /* we return an empty string for an empty number set */ /* (this is, number_set == NULL or unsuitable `min' and `max' values) */ s = (char*)malloc(1); if (!s) return NULL; *s = '\0'; s_len = 1; while (nr) { if (nr->start > max) return s; if (nr->end < min) goto Again; comma = (s_len == 1) ? "" : ", "; if (nr->start <= min && nr->end >= max) tmp_len = sprintf(tmp, "-"); else if (nr->start <= min) tmp_len = sprintf(tmp, "-%i", nr->end); else if (nr->end >= max) tmp_len = sprintf(tmp, "%s%i-", comma, nr->start); else { if (nr->start == nr->end) tmp_len = sprintf(tmp, "%s%i", comma, nr->start); else tmp_len = sprintf(tmp, "%s%i-%i", comma, nr->start, nr->end); } s_len_new = s_len + tmp_len; s_new = (char*)realloc(s, s_len_new); if (!s_new) { free(s); return NULL; } strcpy(s_new + s_len - 1, tmp); s_len = s_len_new; s = s_new; Again: nr = nr->next; } return s; } int number_set_is_element(number_range* number_set, int number) { number_range* nr = number_set; while (nr) { if (number < nr->start) return 0; if (nr->start <= number && number <= nr->end) return 1; nr = nr->next; } return 0; } /* end of numberset.c */ ttfautohint-0.97/lib/taerror.c0000644000175000001440000000235112076552172013337 00000000000000/* taerror.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" /* error message strings; */ /* we concatenate FreeType and ttfautohint messages into one structure */ typedef const struct TA_error_ { int err_code; const char* err_msg; } TA_error; TA_error TA_Errors[] = #undef __FTERRORS_H__ #define FT_ERRORDEF(e, v, s) { e, s }, #define FT_ERROR_START_LIST { #define FT_ERROR_END_LIST /* empty */ #include FT_ERRORS_H #undef __TTFAUTOHINT_ERRORS_H__ #define TA_ERRORDEF(e, v, s) { e, s }, #define TA_ERROR_START_LIST /* empty */ #define TA_ERROR_END_LIST { 0, NULL } }; #include const char* TA_get_error_message(FT_Error error) { TA_error* e = TA_Errors; while (e->err_code || e->err_msg) { if (e->err_code == error) return e->err_msg; e++; } return NULL; } /* end of taerror.c */ ttfautohint-0.97/lib/tadummy.c0000644000175000001440000000326612227174255013347 00000000000000/* tadummy.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afdummy.c' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #include "tadummy.h" #include "tahints.h" static FT_Error ta_dummy_hints_init(TA_GlyphHints hints, TA_ScriptMetrics metrics) { ta_glyph_hints_rescale(hints, metrics); hints->x_scale = metrics->scaler.x_scale; hints->y_scale = metrics->scaler.y_scale; hints->x_delta = metrics->scaler.x_delta; hints->y_delta = metrics->scaler.y_delta; return FT_Err_Ok; } static FT_Error ta_dummy_hints_apply(TA_GlyphHints hints, FT_Outline* outline) { FT_Error error; error = ta_glyph_hints_reload(hints, outline); if (!error) ta_glyph_hints_save(hints, outline); return error; } const TA_WritingSystemClassRec ta_dummy_writing_system_class = { TA_WRITING_SYSTEM_DUMMY, sizeof (TA_ScriptMetricsRec), (TA_Script_InitMetricsFunc)NULL, (TA_Script_ScaleMetricsFunc)NULL, (TA_Script_DoneMetricsFunc)NULL, (TA_Script_InitHintsFunc)ta_dummy_hints_init, (TA_Script_ApplyHintsFunc)ta_dummy_hints_apply }; const TA_ScriptClassRec ta_dflt_script_class = { TA_SCRIPT_DFLT, (TA_Blue_Stringset)0, TA_WRITING_SYSTEM_DUMMY, NULL, '\0' }; /* end of tadummy.c */ ttfautohint-0.97/lib/tawrtsys.h0000644000175000001440000000235612177677406013605 00000000000000/* tawrtsys.h */ /* * Copyright (C) 2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afwrtsys.h' (2013-Aug-05) from FreeType */ #ifndef __TAWRTSYS_H__ #define __TAWRTSYS_H__ /* Since preprocessor directives can't create other preprocessor */ /* directives, we have to include the header files manually. */ #include "tadummy.h" #include "talatin.h" #if 0 # include "tacjk.h" # include "taindic.h" #endif #ifdef FT_OPTION_AUTOFIT2 # include "talatin2.h" #endif #endif /* __TAWRTSYS_H__ */ /* The following part can be included multiple times. */ /* Define `WRITING_SYSTEM' as needed. */ /* Add new writing systems here. */ WRITING_SYSTEM(dummy, DUMMY) WRITING_SYSTEM(latin, LATIN) #if 0 WRITING_SYSTEM(cjk, CJK) WRITING_SYSTEM(indic, INDIC) #endif #ifdef FT_OPTION_AUTOFIT2 WRITING_SYSTEM(latin2, LATIN2) #endif /* end of tawrtsys.h */ ttfautohint-0.97/lib/taglobal.h0000644000175000001440000000460412227174255013456 00000000000000/* taglobal.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afglobal.h' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TAGLOBAL_H__ #define __TAGLOBAL_H__ #include "ta.h" #include "tatypes.h" extern TA_WritingSystemClass const ta_writing_system_classes[]; extern TA_ScriptClass const ta_script_classes[]; #ifdef TA_DEBUG extern const char* ta_script_names[]; #endif /* Default values and flags for both autofitter globals */ /* (originally found in AF_ModuleRec, we use FONT instead) */ /* and face globals (in TA_FaceGlobalsRec). */ /* index of fallback script in `ta_script_classes' */ #define TA_SCRIPT_FALLBACK TA_SCRIPT_DFLT /* a bit mask indicating an uncovered glyph */ #define TA_SCRIPT_NONE 0x7F /* if this flag is set, we have an ASCII digit */ #define TA_DIGIT 0x80 /* `increase-x-height' property */ #define TA_PROP_INCREASE_X_HEIGHT_MIN 6 #define TA_PROP_INCREASE_X_HEIGHT_MAX 0 /* note that glyph_scripts[] maps each glyph to an index into the */ /* `ta_script_classes' array. */ typedef struct TA_FaceGlobalsRec_ { FT_Face face; FT_Long glyph_count; /* same as face->num_glyphs */ FT_Byte* glyph_scripts; /* per-face auto-hinter properties */ FT_UInt increase_x_height; TA_ScriptMetrics metrics[TA_SCRIPT_MAX]; FONT* font; /* to access global properties */ } TA_FaceGlobalsRec; /* this models the global hints data for a given face, */ /* decomposed into script-specific items */ FT_Error ta_face_globals_new(FT_Face face, TA_FaceGlobals *aglobals, FONT* font); FT_Error ta_face_globals_get_metrics(TA_FaceGlobals globals, FT_UInt gindex, FT_UInt options, TA_ScriptMetrics *ametrics); void ta_face_globals_free(TA_FaceGlobals globals); FT_Bool ta_face_globals_is_digit(TA_FaceGlobals globals, FT_UInt gindex); #endif /* __TAGLOBAL_H__ */ /* end of taglobal.h */ ttfautohint-0.97/lib/tasort.h0000644000175000001440000000161312076552172013202 00000000000000/* tasort.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally part of file `aftypes.h' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TASORT_H__ #define __TASORT_H__ #include "tatypes.h" void ta_sort_pos(FT_UInt count, FT_Pos* table); void ta_sort_and_quantize_widths(FT_UInt* count, TA_Width widths, FT_Pos threshold); #endif /* __TASORT_H__ */ /* end of tasort.h */ ttfautohint-0.97/lib/tablue.h0000644000175000001440000000741312237364553013151 00000000000000/* This file has been generated by the Perl script `afblue.pl', */ /* using data from file `./tablue.dat'. */ /* tablue.h */ /* * Copyright (C) 2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afblue.h' (2013-Sep-11) from FreeType */ #ifndef __TABLUE_H__ #define __TABLUE_H__ /* an auxiliary macro to decode a UTF-8 character -- since we only use */ /* hard-coded, self-converted data, no error checking is performed */ #define GET_UTF8_CHAR(ch, p) \ ch = (unsigned char)*p++; \ if (ch >= 0x80) \ { \ FT_UInt len; \ \ \ if (ch < 0xE0) \ { \ len = 1; \ ch &= 0x1F; \ } \ else if (ch < 0xF0) \ { \ len = 2; \ ch &= 0x0F; \ } \ else \ { \ len = 3;\ ch &= 0x07; \ } \ \ for (; len > 0; len--) \ ch = (ch << 6) | (*p++ & 0x3F); \ } /**************************************************************** * * BLUE STRINGS * ****************************************************************/ /* At the bottommost level, we define strings for finding blue zones. */ #define TA_BLUE_STRING_MAX_LEN 8 /* The TA_Blue_String enumeration values are offsets into the */ /* `ta_blue_strings' array. */ typedef enum TA_Blue_String_ { TA_BLUE_STRING_LATIN_CAPITAL_TOP = 0, TA_BLUE_STRING_LATIN_CAPITAL_BOTTOM = 9, TA_BLUE_STRING_LATIN_SMALL_F_TOP = 18, TA_BLUE_STRING_LATIN_SMALL = 26, TA_BLUE_STRING_LATIN_SMALL_DESCENDER = 34, TA_BLUE_STRING_GREEK_CAPITAL_TOP = 40, TA_BLUE_STRING_GREEK_CAPITAL_BOTTOM = 55, TA_BLUE_STRING_GREEK_SMALL_BETA_TOP = 68, TA_BLUE_STRING_GREEK_SMALL = 81, TA_BLUE_STRING_GREEK_SMALL_DESCENDER = 98, TA_BLUE_STRING_CYRILLIC_CAPITAL_TOP = 115, TA_BLUE_STRING_CYRILLIC_CAPITAL_BOTTOM = 132, TA_BLUE_STRING_CYRILLIC_SMALL = 149, TA_BLUE_STRING_CYRILLIC_SMALL_DESCENDER = 166, TA_BLUE_STRING_HEBREW_TOP = 173, TA_BLUE_STRING_HEBREW_BOTTOM = 190, TA_BLUE_STRING_HEBREW_DESCENDER = 203, TA_BLUE_STRING_MAX /* do not remove */ } TA_Blue_String; extern const char ta_blue_strings[]; /**************************************************************** * * BLUE STRINGSETS * ****************************************************************/ /* The next level is to group blue strings into script-specific sets. */ /* Properties are specific to a writing system. We assume that a given */ /* blue string can't be used in more than a single writing system, which */ /* is a safe bet. */ #define TA_BLUE_PROPERTY_LATIN_TOP (1 << 0) #define TA_BLUE_PROPERTY_LATIN_X_HEIGHT (1 << 1) #define TA_BLUE_PROPERTY_LATIN_LONG (1 << 2) #define TA_BLUE_PROPERTY_CJK_HORIZ (1 << 0) #define TA_BLUE_PROPERTY_CJK_TOP (1 << 1) #define TA_BLUE_PROPERTY_CJK_FILL (1 << 2) #define TA_BLUE_PROPERTY_CJK_RIGHT TA_BLUE_PROPERTY_CJK_TOP #define TA_BLUE_STRINGSET_MAX_LEN 7 /* The TA_Blue_Stringset enumeration values are offsets into the */ /* `ta_blue_stringsets' array. */ typedef enum TA_Blue_Stringset_ { TA_BLUE_STRINGSET_LATN = 0, TA_BLUE_STRINGSET_GREK = 7, TA_BLUE_STRINGSET_CYRL = 14, TA_BLUE_STRINGSET_HEBR = 20, TA_BLUE_STRINGSET_MAX /* do not remove */ } TA_Blue_Stringset; typedef struct TA_Blue_StringRec_ { TA_Blue_String string; FT_UShort properties; } TA_Blue_StringRec; extern const TA_Blue_StringRec ta_blue_stringsets[]; #endif /* __TABLUE_H__ */ /* end of tablue.h */ ttfautohint-0.97/lib/tatables.c0000644000175000001440000000740312076552172013463 00000000000000/* tatables.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include #include "ta.h" FT_Error TA_sfnt_add_table_info(SFNT* sfnt) { SFNT_Table_Info* table_infos_new; sfnt->num_table_infos++; table_infos_new = (SFNT_Table_Info*)realloc(sfnt->table_infos, sfnt->num_table_infos * sizeof (SFNT_Table_Info)); if (!table_infos_new) { sfnt->num_table_infos--; return FT_Err_Out_Of_Memory; } else sfnt->table_infos = table_infos_new; sfnt->table_infos[sfnt->num_table_infos - 1] = MISSING; return TA_Err_Ok; } FT_ULong TA_table_compute_checksum(FT_Byte* buf, FT_ULong len) { FT_Byte* end_buf = buf + len; FT_ULong checksum = 0; /* we expect that the length of `buf' is a multiple of 4 */ while (buf < end_buf) { checksum += *(buf++) << 24; checksum += *(buf++) << 16; checksum += *(buf++) << 8; checksum += *(buf++); } return checksum; } FT_Error TA_font_add_table(FONT* font, SFNT_Table_Info* table_info, FT_ULong tag, FT_ULong len, FT_Byte* buf) { SFNT_Table* tables_new; SFNT_Table* table_last; font->num_tables++; tables_new = (SFNT_Table*)realloc(font->tables, font->num_tables * sizeof (SFNT_Table)); if (!tables_new) { font->num_tables--; return FT_Err_Out_Of_Memory; } else font->tables = tables_new; table_last = &font->tables[font->num_tables - 1]; table_last->tag = tag; table_last->len = len; table_last->buf = buf; table_last->checksum = TA_table_compute_checksum(buf, len); table_last->offset = 0; /* set in `TA_font_compute_table_offsets' */ table_last->data = NULL; table_last->processed = 0; /* link table and table info */ *table_info = font->num_tables - 1; return TA_Err_Ok; } void TA_sfnt_sort_table_info(SFNT* sfnt, FONT* font) { /* Looking into an arbitrary TTF (with a `DSIG' table), tags */ /* starting with an uppercase letter are sorted before lowercase */ /* letters. In other words, the alphabetical ordering (as */ /* mandated by signing a font) is a simple numeric comparison of */ /* the 32bit tag values. */ SFNT_Table* tables = font->tables; SFNT_Table_Info* table_infos = sfnt->table_infos; FT_ULong num_table_infos = sfnt->num_table_infos; FT_ULong i; FT_ULong j; /* bubble sort */ for (i = 1; i < num_table_infos; i++) { for (j = i; j > 0; j--) { SFNT_Table_Info swap; FT_ULong tag1; FT_ULong tag2; tag1 = (table_infos[j] == MISSING) ? 0 : tables[table_infos[j]].tag; tag2 = (table_infos[j - 1] == MISSING) ? 0 : tables[table_infos[j - 1]].tag; if (tag1 > tag2) break; swap = table_infos[j]; table_infos[j] = table_infos[j - 1]; table_infos[j - 1] = swap; } } } void TA_font_compute_table_offsets(FONT* font, FT_ULong start) { FT_ULong i; FT_ULong offset = start; for (i = 0; i < font->num_tables; i++) { SFNT_Table* table = &font->tables[i]; table->offset = offset; /* table offsets must be multiples of 4; */ /* this also fits the actual buffer lengths */ offset += (table->len + 3) & ~3; } } /* end of tatables.c */ ttfautohint-0.97/lib/tatables.h0000644000175000001440000000206112076552172013463 00000000000000/* tatables.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #ifndef __TATABLES_H__ #define __TATABLES_H__ #include "ta.h" FT_Error TA_sfnt_add_table_info(SFNT* sfnt); FT_ULong TA_table_compute_checksum(FT_Byte* buf, FT_ULong len); FT_Error TA_font_add_table(FONT* font, SFNT_Table_Info* table_info, FT_ULong tag, FT_ULong len, FT_Byte* buf); void TA_sfnt_sort_table_info(SFNT* sfnt, FONT* font); void TA_font_compute_table_offsets(FONT* font, FT_ULong start); #endif /* __TATABLES_H__ */ /* end of tatables.h */ ttfautohint-0.97/lib/tagpos.c0000644000175000001440000003562312076552172013166 00000000000000/* tagpos.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" /* the code below contains many redundancies; */ /* it has been written for clarity */ #define VALUE(val, p) val = *(p++) << 8; \ val += *(p++) #define OFFSET(val, base, p) val = base; \ val += *(p++) << 8; \ val += *(p++) /* this simple `Coverage_table' structure wastes memory... */ typedef struct Coverage_table_ { FT_UShort num_glyph_idxs; FT_UShort* glyph_idxs; } Coverage_table; static FT_Error TA_read_coverage_table(FT_Byte* p, Coverage_table* cov, SFNT* sfnt, FONT* font) { SFNT_Table* GPOS_table = &font->tables[sfnt->GPOS_idx]; FT_UShort* glyph_idxs; FT_UShort CoverageFormat; FT_UShort i; cov->num_glyph_idxs = 0; cov->glyph_idxs = NULL; VALUE(CoverageFormat, p); if (CoverageFormat == 1) { FT_UShort GlyphCount; VALUE(GlyphCount, p); /* rough sanity checks */ if (GlyphCount * 2 > GPOS_table->len) return FT_Err_Invalid_Table; if (p - GPOS_table->buf > (ptrdiff_t)(GPOS_table->len - GlyphCount * 2)) return FT_Err_Invalid_Table; glyph_idxs = (FT_UShort*)malloc(GlyphCount * sizeof (FT_UShort)); if (!glyph_idxs) return FT_Err_Out_Of_Memory; /* loop over p */ for (i = 0; i < GlyphCount; i++) { FT_UShort idx; VALUE(idx, p); glyph_idxs[i] = idx; } cov->num_glyph_idxs = GlyphCount; } else if (CoverageFormat == 2) { FT_UShort RangeCount; FT_UShort start; FT_UShort end; FT_UShort count; FT_Byte* p_start; VALUE(RangeCount, p); /* rough sanity checks */ if (RangeCount * 6 > GPOS_table->len) return FT_Err_Invalid_Table; if (p - GPOS_table->buf > (ptrdiff_t)(GPOS_table->len - RangeCount * 6)) return FT_Err_Invalid_Table; p_start = p; count = 0; /* loop over p */ for (i = 0; i < RangeCount; i++) { /* collect number of glyphs */ VALUE(start, p); VALUE(end, p); if (end < start) return FT_Err_Invalid_Table; p += 2; /* skip StartCoverageIndex */ count += end - start + 1; } glyph_idxs = (FT_UShort*)malloc(count * sizeof (FT_UShort)); if (!glyph_idxs) return FT_Err_Out_Of_Memory; p = p_start; count = 0; /* loop again over p */ for (i = 0; i < RangeCount; i++) { FT_UShort j; VALUE(start, p); VALUE(end, p); p += 2; /* skip StartCoverageIndex */ for (j = start; j <= end; j++) glyph_idxs[count++] = j; } cov->num_glyph_idxs = count; } else return FT_Err_Invalid_Table; cov->glyph_idxs = glyph_idxs; return TA_Err_Ok; } /* We add a subglyph for each composite glyph. */ /* Since subglyphs must contain at least one point, */ /* we have to adjust all AnchorPoints in GPOS AnchorTables accordingly. */ /* Using the `pointsums' array of the `GLYPH' structure */ /* it is straightforward to do that: */ /* Assuming that anchor point x is in the interval */ /* pointsums[n] <= x < pointsums[n + 1], */ /* the new point index is x + n. */ static FT_Error TA_update_anchor(FT_Byte* p, FT_UShort glyph_idx, SFNT* sfnt, FONT* font) { SFNT_Table* GPOS_table = &font->tables[sfnt->GPOS_idx]; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; GLYPH* glyph = &data->glyphs[glyph_idx]; FT_UShort AnchorFormat; /* nothing to do for simple glyphs */ if (!glyph->num_components) return TA_Err_Ok; VALUE(AnchorFormat, p); if (AnchorFormat == 2) { FT_UShort AnchorPoint; FT_UShort i; p += 4; /* skip XCoordinate and YCoordinate */ VALUE(AnchorPoint, p); /* sanity check */ if (p > GPOS_table->buf + GPOS_table->len) return FT_Err_Invalid_Table; /* search point offset */ for (i = 0; i < glyph->num_pointsums; i++) if (AnchorPoint < glyph->pointsums[i]) break; *(p - 2) = HIGH(AnchorPoint + i); *(p - 1) = LOW(AnchorPoint + i); } return TA_Err_Ok; } static FT_Error TA_handle_cursive_lookup(FT_Byte* Lookup, FT_Byte* p, SFNT* sfnt, FONT* font) { FT_UShort SubTableCount; Coverage_table cov; FT_Error error; p += 2; /* skip LookupFlag */ VALUE(SubTableCount, p); /* loop over p */ for (; SubTableCount > 0; SubTableCount--) { FT_Byte* CursivePosFormat1; FT_Byte* Coverage; FT_UShort EntryExitCount; FT_Byte* q; FT_UShort i; OFFSET(CursivePosFormat1, Lookup, p); q = CursivePosFormat1; q += 2; /* skip PosFormat */ OFFSET(Coverage, CursivePosFormat1, q); VALUE(EntryExitCount, q); error = TA_read_coverage_table(Coverage, &cov, sfnt, font); if (error) return error; /* sanity check */ if (cov.num_glyph_idxs != EntryExitCount) { error = FT_Err_Invalid_Table; goto Fail; } /* loop over q */ for (i = 0; i < EntryExitCount; i++) { FT_UShort glyph_idx = cov.glyph_idxs[i]; FT_Byte* EntryAnchor; FT_Byte* ExitAnchor; FT_Error error; OFFSET(EntryAnchor, CursivePosFormat1, q); error = TA_update_anchor(EntryAnchor, glyph_idx, sfnt, font); if (error) goto Fail; OFFSET(ExitAnchor, CursivePosFormat1, q); error = TA_update_anchor(ExitAnchor, glyph_idx, sfnt, font); if (error) goto Fail; } free(cov.glyph_idxs); cov.glyph_idxs = NULL; } return TA_Err_Ok; Fail: free(cov.glyph_idxs); return error; } static FT_Error TA_handle_markbase_lookup(FT_Byte* Lookup, FT_Byte* p, SFNT* sfnt, FONT* font) { FT_UShort SubTableCount; Coverage_table cov; FT_Error error; p += 2; /* skip LookupFlag */ VALUE(SubTableCount, p); /* loop over p */ for (; SubTableCount > 0; SubTableCount--) { FT_Byte* MarkBasePosFormat1; FT_Byte* MarkCoverage; FT_Byte* BaseCoverage; FT_UShort ClassCount; FT_UShort MarkCount; FT_Byte* MarkArray; FT_UShort BaseCount; FT_Byte* BaseArray; FT_Byte* q; FT_UShort i; OFFSET(MarkBasePosFormat1, Lookup, p); q = MarkBasePosFormat1; q += 2; /* skip PosFormat */ OFFSET(MarkCoverage, MarkBasePosFormat1, q); OFFSET(BaseCoverage, MarkBasePosFormat1, q); VALUE(ClassCount, q); OFFSET(MarkArray, MarkBasePosFormat1, q); OFFSET(BaseArray, MarkBasePosFormat1, q); error = TA_read_coverage_table(MarkCoverage, &cov, sfnt, font); if (error) return error; q = MarkArray; VALUE(MarkCount, q); /* sanity check */ if (cov.num_glyph_idxs != MarkCount) { error = FT_Err_Invalid_Table; goto Fail; } /* loop over q */ for (i = 0; i < MarkCount; i++) { FT_UShort glyph_idx = cov.glyph_idxs[i]; FT_Byte* MarkAnchor; FT_Error error; q += 2; /* skip Class */ OFFSET(MarkAnchor, MarkArray, q); error = TA_update_anchor(MarkAnchor, glyph_idx, sfnt, font); if (error) return error; } free(cov.glyph_idxs); error = TA_read_coverage_table(BaseCoverage, &cov, sfnt, font); if (error) return error; q = BaseArray; VALUE(BaseCount, q); /* sanity check */ if (cov.num_glyph_idxs != BaseCount) { error = FT_Err_Invalid_Table; goto Fail; } /* loop over q */ for (i = 0; i < BaseCount; i++) { FT_UShort glyph_idx = cov.glyph_idxs[i]; FT_UShort cc = ClassCount; for (; cc > 0; cc--) { FT_Byte* BaseAnchor; FT_Error error; OFFSET(BaseAnchor, BaseArray, q); error = TA_update_anchor(BaseAnchor, glyph_idx, sfnt, font); if (error) return error; } } free(cov.glyph_idxs); cov.glyph_idxs = NULL; } return TA_Err_Ok; Fail: free(cov.glyph_idxs); return error; } static FT_Error TA_handle_marklig_lookup(FT_Byte* Lookup, FT_Byte* p, SFNT* sfnt, FONT* font) { FT_UShort SubTableCount; Coverage_table cov; FT_Error error; p += 2; /* skip LookupFlag */ VALUE(SubTableCount, p); /* loop over p */ for (; SubTableCount > 0; SubTableCount--) { FT_Byte* MarkLigPosFormat1; FT_Byte* MarkCoverage; FT_Byte* LigatureCoverage; FT_UShort ClassCount; FT_UShort MarkCount; FT_Byte* MarkArray; FT_UShort LigatureCount; FT_Byte* LigatureArray; FT_Byte* q; FT_UShort i; OFFSET(MarkLigPosFormat1, Lookup, p); q = MarkLigPosFormat1; q += 2; /* skip PosFormat */ OFFSET(MarkCoverage, MarkLigPosFormat1, q); OFFSET(LigatureCoverage, MarkLigPosFormat1, q); VALUE(ClassCount, q); OFFSET(MarkArray, MarkLigPosFormat1, q); OFFSET(LigatureArray, MarkLigPosFormat1, q); error = TA_read_coverage_table(MarkCoverage, &cov, sfnt, font); if (error) return error; q = MarkArray; VALUE(MarkCount, q); /* sanity check */ if (cov.num_glyph_idxs != MarkCount) { error = FT_Err_Invalid_Table; goto Fail; } /* loop over q */ for (i = 0; i < MarkCount; i++) { FT_UShort glyph_idx = cov.glyph_idxs[i]; FT_Byte* MarkAnchor; FT_Error error; q += 2; /* skip Class */ OFFSET(MarkAnchor, MarkArray, q); error = TA_update_anchor(MarkAnchor, glyph_idx, sfnt, font); if (error) return error; } free(cov.glyph_idxs); error = TA_read_coverage_table(LigatureCoverage, &cov, sfnt, font); if (error) return error; q = LigatureArray; VALUE(LigatureCount, q); /* sanity check */ if (cov.num_glyph_idxs != LigatureCount) { error = FT_Err_Invalid_Table; goto Fail; } /* loop over q */ for (i = 0; i < LigatureCount; i++) { FT_UShort glyph_idx = cov.glyph_idxs[i]; FT_Byte* LigatureAttach; FT_UShort ComponentCount; FT_Byte* r; OFFSET(LigatureAttach, LigatureArray, q); r = LigatureAttach; VALUE(ComponentCount, r); /* loop over r */ for (; ComponentCount > 0; ComponentCount--) { FT_UShort cc = ClassCount; for (; cc > 0; cc--) { FT_Byte* LigatureAnchor; FT_Error error; OFFSET(LigatureAnchor, LigatureAttach, r); error = TA_update_anchor(LigatureAnchor, glyph_idx, sfnt, font); if (error) return error; } } } free(cov.glyph_idxs); cov.glyph_idxs = NULL; } return TA_Err_Ok; Fail: free(cov.glyph_idxs); return error; } static FT_Error TA_handle_markmark_lookup(FT_Byte* Lookup, FT_Byte* p, SFNT* sfnt, FONT* font) { FT_UShort SubTableCount; Coverage_table cov; FT_Error error; p += 2; /* skip LookupFlag */ VALUE(SubTableCount, p); /* loop over p */ for (; SubTableCount > 0; SubTableCount--) { FT_Byte* MarkMarkPosFormat1; FT_Byte* Mark1Coverage; FT_Byte* Mark2Coverage; FT_UShort ClassCount; FT_UShort Mark1Count; FT_Byte* Mark1Array; FT_UShort Mark2Count; FT_Byte* Mark2Array; FT_Byte* q; FT_UShort i; OFFSET(MarkMarkPosFormat1, Lookup, p); q = MarkMarkPosFormat1; q += 2; /* skip PosFormat */ OFFSET(Mark1Coverage, MarkMarkPosFormat1, q); OFFSET(Mark2Coverage, MarkMarkPosFormat1, q); VALUE(ClassCount, q); OFFSET(Mark1Array, MarkMarkPosFormat1, q); OFFSET(Mark2Array, MarkMarkPosFormat1, q); error = TA_read_coverage_table(Mark1Coverage, &cov, sfnt, font); if (error) return error; q = Mark1Array; VALUE(Mark1Count, q); /* sanity check */ if (cov.num_glyph_idxs != Mark1Count) { error = FT_Err_Invalid_Table; goto Fail; } /* loop over q */ for (i = 0; i < Mark1Count; i++) { FT_UShort glyph_idx = cov.glyph_idxs[i]; FT_Byte* Mark1Anchor; FT_Error error; q += 2; /* skip Class */ OFFSET(Mark1Anchor, Mark1Array, q); error = TA_update_anchor(Mark1Anchor, glyph_idx, sfnt, font); if (error) return error; } free(cov.glyph_idxs); error = TA_read_coverage_table(Mark2Coverage, &cov, sfnt, font); if (error) return error; q = Mark2Array; VALUE(Mark2Count, q); /* sanity check */ if (cov.num_glyph_idxs != Mark2Count) { error = FT_Err_Invalid_Table; goto Fail; } /* loop over q */ for (i = 0; i < Mark2Count; i++) { FT_UShort glyph_idx = cov.glyph_idxs[i]; FT_UShort cc = ClassCount; for (; cc > 0; cc--) { FT_Byte* Mark2Anchor; FT_Error error; OFFSET(Mark2Anchor, Mark2Array, q); error = TA_update_anchor(Mark2Anchor, glyph_idx, sfnt, font); if (error) return error; } } free(cov.glyph_idxs); cov.glyph_idxs = NULL; } return TA_Err_Ok; Fail: free(cov.glyph_idxs); return error; } #define Cursive 3 #define MarkBase 4 #define MarkLig 5 #define MarkMark 6 FT_Error TA_sfnt_update_GPOS_table(SFNT* sfnt, FONT* font) { SFNT_Table* GPOS_table; FT_Byte* buf; FT_Byte* LookupList; FT_UShort LookupCount; FT_Byte* p; if (sfnt->GPOS_idx == MISSING) return TA_Err_Ok; GPOS_table = &font->tables[sfnt->GPOS_idx]; buf = GPOS_table->buf; p = buf; if (GPOS_table->processed) return TA_Err_Ok; p += 8; /* skip Version, ScriptList, and FeatureList */ OFFSET(LookupList, buf, p); p = LookupList; VALUE(LookupCount, p); /* loop over p */ for (; LookupCount > 0; LookupCount--) { FT_Byte* Lookup; FT_UShort LookupType; FT_Byte* q; FT_Error error = TA_Err_Ok; OFFSET(Lookup, LookupList, p); q = Lookup; VALUE(LookupType, q); if (LookupType == Cursive) error = TA_handle_cursive_lookup(Lookup, q, sfnt, font); else if (LookupType == MarkBase) error = TA_handle_markbase_lookup(Lookup, q, sfnt, font); else if (LookupType == MarkLig) error = TA_handle_marklig_lookup(Lookup, q, sfnt, font); else if (LookupType == MarkMark) error = TA_handle_markmark_lookup(Lookup, q, sfnt, font); if (error) return error; } GPOS_table->checksum = TA_table_compute_checksum(GPOS_table->buf, GPOS_table->len); GPOS_table->processed = 1; return TA_Err_Ok; } /* end of tagpos.c */ ttfautohint-0.97/lib/tablue.cin0000644000175000001440000000135112227174255013463 00000000000000/* tablue.c */ /* * Copyright (C) 2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afblue.c' (2013-Aug-28) from FreeType */ #include "tatypes.h" const char ta_blue_strings[] = { @TA_BLUE_STRINGS_ARRAY@ }; /* stringsets are specific to scripts */ const TA_Blue_StringRec ta_blue_stringsets[] = { @TA_BLUE_STRINGSETS_ARRAY@ }; /* end of tablue.c */ ttfautohint-0.97/lib/taloader.c0000644000175000001440000004124512177664234013466 00000000000000/* taloader.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afloader.c' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #include #include #include FT_GLYPH_H #include "ta.h" #include "tahints.h" #include "taglobal.h" /* from file `ftobjs.h' (2011-Mar-28) from FreeType */ typedef struct FT_Slot_InternalRec_ { TA_GlyphLoader loader; FT_UInt flags; FT_Bool glyph_transformed; FT_Matrix glyph_matrix; FT_Vector glyph_delta; void* glyph_hints; } FT_GlyphSlot_InternalRec; /* initialize glyph loader */ FT_Error ta_loader_init(FONT* font) { TA_Loader loader = font->loader; memset(loader, 0, sizeof (TA_LoaderRec)); ta_glyph_hints_init(&loader->hints); #ifdef TA_DEBUG _ta_debug_hints = &loader->hints; #endif return TA_GlyphLoader_New(&loader->gloader); } /* reset glyph loader and compute globals if necessary */ FT_Error ta_loader_reset(FONT* font, FT_Face face) { FT_Error error = FT_Err_Ok; TA_Loader loader = font->loader; loader->face = face; loader->globals = (TA_FaceGlobals)face->autohint.data; TA_GlyphLoader_Rewind(loader->gloader); if (loader->globals == NULL) { error = ta_face_globals_new(face, &loader->globals, font); if (!error) { face->autohint.data = (FT_Pointer)loader->globals; face->autohint.finalizer = (FT_Generic_Finalizer)ta_face_globals_free; } } return error; } /* finalize glyph loader */ void ta_loader_done(FONT* font) { TA_Loader loader = font->loader; ta_glyph_hints_done(&loader->hints); loader->face = NULL; loader->globals = NULL; #ifdef TA_DEBUG _ta_debug_hints = NULL; #endif TA_GlyphLoader_Done(loader->gloader); loader->gloader = NULL; } /* load a single glyph component; this routine calls itself recursively, */ /* if necessary, and does the main work of `ta_loader_load_glyph' */ static FT_Error ta_loader_load_g(TA_Loader loader, TA_Scaler scaler, FT_UInt glyph_index, FT_Int32 load_flags, FT_UInt depth) { FT_Error error; FT_Face face = loader->face; TA_GlyphLoader gloader = loader->gloader; TA_ScriptMetrics metrics = loader->metrics; TA_GlyphHints hints = &loader->hints; FT_GlyphSlot slot = face->glyph; #if 0 FT_Slot_Internal internal = slot->internal; #endif FT_Int32 flags; flags = load_flags | FT_LOAD_LINEAR_DESIGN; error = FT_Load_Glyph(face, glyph_index, flags); if (error) goto Exit; #if 0 loader->transformed = internal->glyph_transformed; if (loader->transformed) { FT_Matrix inverse; loader->trans_matrix = internal->glyph_matrix; loader->trans_delta = internal->glyph_delta; inverse = loader->trans_matrix; FT_Matrix_Invert(&inverse); FT_Vector_Transform(&loader->trans_delta, &inverse); } #endif switch (slot->format) { case FT_GLYPH_FORMAT_OUTLINE: /* translate the loaded glyph when an internal transform is needed */ if (loader->transformed) FT_Outline_Translate(&slot->outline, loader->trans_delta.x, loader->trans_delta.y); /* copy the outline points in the loader's current extra points */ /* which are used to keep original glyph coordinates */ error = TA_GLYPHLOADER_CHECK_POINTS(gloader, slot->outline.n_points + 4, slot->outline.n_contours); if (error) goto Exit; memcpy(gloader->current.outline.points, slot->outline.points, slot->outline.n_points * sizeof (FT_Vector)); memcpy(gloader->current.outline.contours, slot->outline.contours, slot->outline.n_contours * sizeof (short)); memcpy(gloader->current.outline.tags, slot->outline.tags, slot->outline.n_points * sizeof (char)); gloader->current.outline.n_points = slot->outline.n_points; gloader->current.outline.n_contours = slot->outline.n_contours; /* compute original horizontal phantom points */ /* (and ignore vertical ones) */ loader->pp1.x = hints->x_delta; loader->pp1.y = hints->y_delta; loader->pp2.x = FT_MulFix(slot->metrics.horiAdvance, hints->x_scale) + hints->x_delta; loader->pp2.y = hints->y_delta; /* be sure to check for spacing glyphs */ if (slot->outline.n_points == 0) goto Hint_Metrics; /* now load the slot image into the auto-outline */ /* and run the automatic hinting process */ { TA_WritingSystemClass writing_system_class = ta_writing_system_classes [metrics->script_class->writing_system]; if (writing_system_class->script_hints_apply) writing_system_class->script_hints_apply(hints, &gloader->current.outline, metrics); } /* we now need to adjust the metrics according to the change in */ /* width/positioning that occurred during the hinting process */ if (scaler->render_mode != FT_RENDER_MODE_LIGHT) { FT_Pos old_rsb, old_lsb, new_lsb; FT_Pos pp1x_uh, pp2x_uh; TA_AxisHints axis = &hints->axis[TA_DIMENSION_HORZ]; TA_Edge edge1 = axis->edges; /* leftmost edge */ TA_Edge edge2 = edge1 + axis->num_edges - 1; /* rightmost edge */ if (axis->num_edges > 1 && TA_HINTS_DO_ADVANCE(hints)) { old_rsb = loader->pp2.x - edge2->opos; old_lsb = edge1->opos; new_lsb = edge1->pos; /* remember unhinted values to later account */ /* for rounding errors */ pp1x_uh = new_lsb - old_lsb; pp2x_uh = edge2->pos + old_rsb; /* prefer too much space over too little space */ /* for very small sizes */ if (old_lsb < 24) pp1x_uh -= 8; if (old_rsb < 24) pp2x_uh += 8; loader->pp1.x = TA_PIX_ROUND(pp1x_uh); loader->pp2.x = TA_PIX_ROUND(pp2x_uh); if (loader->pp1.x >= new_lsb && old_lsb > 0) loader->pp1.x -= 64; if (loader->pp2.x <= edge2->pos && old_rsb > 0) loader->pp2.x += 64; slot->lsb_delta = loader->pp1.x - pp1x_uh; slot->rsb_delta = loader->pp2.x - pp2x_uh; } else { FT_Pos pp1x = loader->pp1.x; FT_Pos pp2x = loader->pp2.x; loader->pp1.x = TA_PIX_ROUND(pp1x); loader->pp2.x = TA_PIX_ROUND(pp2x); slot->lsb_delta = loader->pp1.x - pp1x; slot->rsb_delta = loader->pp2.x - pp2x; } } else { FT_Pos pp1x = loader->pp1.x; FT_Pos pp2x = loader->pp2.x; loader->pp1.x = TA_PIX_ROUND(pp1x + hints->xmin_delta); loader->pp2.x = TA_PIX_ROUND(pp2x + hints->xmax_delta); slot->lsb_delta = loader->pp1.x - pp1x; slot->rsb_delta = loader->pp2.x - pp2x; } /* good, we simply add the glyph to our loader's base */ TA_GlyphLoader_Add(gloader); break; case FT_GLYPH_FORMAT_COMPOSITE: { FT_UInt nn, num_subglyphs = slot->num_subglyphs; FT_UInt num_base_subgs, start_point; TA_SubGlyph subglyph; start_point = gloader->base.outline.n_points; /* first of all, copy the subglyph descriptors in the glyph loader */ error = TA_GlyphLoader_CheckSubGlyphs(gloader, num_subglyphs); if (error) goto Exit; memcpy(gloader->current.subglyphs, slot->subglyphs, num_subglyphs * sizeof (TA_SubGlyphRec)); gloader->current.num_subglyphs = num_subglyphs; num_base_subgs = gloader->base.num_subglyphs; /* now read each subglyph independently */ for (nn = 0; nn < num_subglyphs; nn++) { FT_Vector pp1, pp2; FT_Pos x, y; FT_UInt num_points, num_new_points, num_base_points; /* gloader.current.subglyphs can change during glyph loading due */ /* to re-allocation -- we must recompute the current subglyph on */ /* each iteration */ subglyph = gloader->base.subglyphs + num_base_subgs + nn; pp1 = loader->pp1; pp2 = loader->pp2; num_base_points = gloader->base.outline.n_points; error = ta_loader_load_g(loader, scaler, subglyph->index, load_flags, depth + 1); if (error) goto Exit; /* recompute subglyph pointer */ subglyph = gloader->base.subglyphs + num_base_subgs + nn; if (subglyph->flags & FT_SUBGLYPH_FLAG_USE_MY_METRICS) { pp1 = loader->pp1; pp2 = loader->pp2; } else { loader->pp1 = pp1; loader->pp2 = pp2; } num_points = gloader->base.outline.n_points; num_new_points = num_points - num_base_points; /* now perform the transformation required for this subglyph */ if (subglyph->flags & (FT_SUBGLYPH_FLAG_SCALE | FT_SUBGLYPH_FLAG_XY_SCALE | FT_SUBGLYPH_FLAG_2X2)) { FT_Vector* cur = gloader->base.outline.points + num_base_points; FT_Vector* limit = cur + num_new_points; for (; cur < limit; cur++) FT_Vector_Transform(cur, &subglyph->transform); } /* apply offset */ if (!(subglyph->flags & FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES)) { FT_Int k = subglyph->arg1; FT_UInt l = subglyph->arg2; FT_Vector* p1; FT_Vector* p2; if (start_point + k >= num_base_points || l >= (FT_UInt)num_new_points) { error = FT_Err_Invalid_Composite; goto Exit; } l += num_base_points; /* for now, only use the current point coordinates; */ /* we eventually may consider another approach */ p1 = gloader->base.outline.points + start_point + k; p2 = gloader->base.outline.points + start_point + l; x = p1->x - p2->x; y = p1->y - p2->y; } else { x = FT_MulFix(subglyph->arg1, hints->x_scale) + hints->x_delta; y = FT_MulFix(subglyph->arg2, hints->y_scale) + hints->y_delta; x = TA_PIX_ROUND(x); y = TA_PIX_ROUND(y); } { FT_Outline dummy = gloader->base.outline; dummy.points += num_base_points; dummy.n_points = (short)num_new_points; FT_Outline_Translate(&dummy, x, y); } } } break; default: /* we don't support other formats (yet?) */ error = FT_Err_Unimplemented_Feature; } Hint_Metrics: if (depth == 0) { FT_BBox bbox; FT_Vector vvector; vvector.x = slot->metrics.vertBearingX - slot->metrics.horiBearingX; vvector.y = slot->metrics.vertBearingY - slot->metrics.horiBearingY; vvector.x = FT_MulFix(vvector.x, metrics->scaler.x_scale); vvector.y = FT_MulFix(vvector.y, metrics->scaler.y_scale); /* transform the hinted outline if needed */ if (loader->transformed) { FT_Outline_Transform(&gloader->base.outline, &loader->trans_matrix); FT_Vector_Transform(&vvector, &loader->trans_matrix); } #if 1 /* we must translate our final outline by -pp1.x */ /* and compute the new metrics */ if (loader->pp1.x) FT_Outline_Translate(&gloader->base.outline, -loader->pp1.x, 0); #endif FT_Outline_Get_CBox(&gloader->base.outline, &bbox); bbox.xMin = TA_PIX_FLOOR(bbox.xMin); bbox.yMin = TA_PIX_FLOOR(bbox.yMin); bbox.xMax = TA_PIX_CEIL(bbox.xMax); bbox.yMax = TA_PIX_CEIL(bbox.yMax); slot->metrics.width = bbox.xMax - bbox.xMin; slot->metrics.height = bbox.yMax - bbox.yMin; slot->metrics.horiBearingX = bbox.xMin; slot->metrics.horiBearingY = bbox.yMax; slot->metrics.vertBearingX = TA_PIX_FLOOR(bbox.xMin + vvector.x); slot->metrics.vertBearingY = TA_PIX_FLOOR(bbox.yMax + vvector.y); /* for mono-width fonts (like Andale, Courier, etc.) we need */ /* to keep the original rounded advance width; ditto for */ /* digits if all have the same advance width */ if (scaler->render_mode != FT_RENDER_MODE_LIGHT && (FT_IS_FIXED_WIDTH(slot->face) || (ta_face_globals_is_digit(loader->globals, glyph_index) && metrics->digits_have_same_width))) { slot->metrics.horiAdvance = FT_MulFix(slot->metrics.horiAdvance, metrics->scaler.x_scale); /* set delta values to 0, otherwise code that uses them */ /* is going to ruin the fixed advance width */ slot->lsb_delta = 0; slot->rsb_delta = 0; } else { /* non-spacing glyphs must stay as-is */ if (slot->metrics.horiAdvance) slot->metrics.horiAdvance = loader->pp2.x - loader->pp1.x; } slot->metrics.vertAdvance = FT_MulFix(slot->metrics.vertAdvance, metrics->scaler.y_scale); slot->metrics.horiAdvance = TA_PIX_ROUND(slot->metrics.horiAdvance); slot->metrics.vertAdvance = TA_PIX_ROUND(slot->metrics.vertAdvance); #if 0 /* now copy outline into glyph slot */ TA_GlyphLoader_Rewind(internal->loader); error = TA_GlyphLoader_CopyPoints(internal->loader, gloader); if (error) goto Exit; /* reassign all outline fields except flags to protect them */ slot->outline.n_contours = internal->loader->base.outline.n_contours; slot->outline.n_points = internal->loader->base.outline.n_points; slot->outline.points = internal->loader->base.outline.points; slot->outline.tags = internal->loader->base.outline.tags; slot->outline.contours = internal->loader->base.outline.contours; slot->format = FT_GLYPH_FORMAT_OUTLINE; #endif } Exit: return error; } /* load a glyph */ FT_Error ta_loader_load_glyph(FONT* font, FT_Face face, FT_UInt gindex, FT_Int32 load_flags) { FT_Error error; FT_Size size = face->size; TA_Loader loader = font->loader; TA_ScalerRec scaler; if (!size) return FT_Err_Invalid_Argument; memset(&scaler, 0, sizeof (TA_ScalerRec)); scaler.face = face; scaler.x_scale = size->metrics.x_scale; scaler.x_delta = 0; /* XXX: TODO: add support for sub-pixel hinting */ scaler.y_scale = size->metrics.y_scale; scaler.y_delta = 0; /* XXX: TODO: add support for sub-pixel hinting */ scaler.render_mode = FT_LOAD_TARGET_MODE(load_flags); scaler.flags = 0; /* XXX: fix this */ /* XXX this is an ugly hack of ttfautohint: */ /* bit 29 triggers vertical hinting only */ if (load_flags & (1 << 29)) scaler.flags |= TA_SCALER_FLAG_NO_HORIZONTAL; /* note that the fallback script can't be changed anymore */ /* after the first call of `ta_loader_load_glyph' */ error = ta_loader_reset(font, face); if (!error) { TA_ScriptMetrics metrics; FT_UInt options = TA_SCRIPT_DFLT; #ifdef FT_OPTION_AUTOFIT2 /* XXX: undocumented hook to activate the latin2 hinter */ if (load_flags & (1UL << 20)) options = TA_SCRIPT_LTN2; #endif error = ta_face_globals_get_metrics(loader->globals, gindex, options, &metrics); if (!error) { TA_WritingSystemClass writing_system_class = ta_writing_system_classes [metrics->script_class->writing_system]; loader->metrics = metrics; if (writing_system_class->script_metrics_scale) writing_system_class->script_metrics_scale(metrics, &scaler); else metrics->scaler = scaler; load_flags |= FT_LOAD_NO_SCALE | FT_LOAD_IGNORE_TRANSFORM; load_flags &= ~FT_LOAD_RENDER; if (writing_system_class->script_hints_init) { error = writing_system_class->script_hints_init(&loader->hints, metrics); if (error) goto Exit; } error = ta_loader_load_g(loader, &scaler, gindex, load_flags, 0); } } Exit: return error; } void ta_loader_register_hints_recorder(TA_Loader loader, TA_Hints_Recorder hints_recorder, void* user) { loader->hints.recorder = hints_recorder; loader->hints.user = user; } /* end of taloader.c */ ttfautohint-0.97/lib/tagasp.c0000644000175000001440000000343512157111510013127 00000000000000/* tagasp.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" static FT_Error TA_table_build_gasp(FT_Byte** gasp) { FT_Byte* buf; buf = (FT_Byte*)malloc(GASP_LEN); if (!buf) return FT_Err_Out_Of_Memory; /* version */ buf[0] = 0x00; buf[1] = 0x01; /* one range */ buf[2] = 0x00; buf[3] = 0x01; /* entry valid for all sizes */ buf[4] = 0xFF; buf[5] = 0xFF; buf[6] = 0x00; buf[7] = 0x0F; /* always use grayscale rendering with grid-fitting, */ /* symmetric grid-fitting and symmetric smoothing */ *gasp = buf; return TA_Err_Ok; } FT_Error TA_sfnt_build_gasp_table(SFNT* sfnt, FONT* font) { FT_Error error; FT_Byte* gasp_buf; error = TA_sfnt_add_table_info(sfnt); if (error) goto Exit; if (font->gasp_idx != MISSING) { sfnt->table_infos[sfnt->num_table_infos - 1] = font->gasp_idx; goto Exit; } error = TA_table_build_gasp(&gasp_buf); if (error) goto Exit; /* in case of success, `gasp_buf' gets linked */ /* and is eventually freed in `TA_font_unload' */ error = TA_font_add_table(font, &sfnt->table_infos[sfnt->num_table_infos - 1], TTAG_gasp, GASP_LEN, gasp_buf); if (error) free(gasp_buf); else font->gasp_idx = sfnt->table_infos[sfnt->num_table_infos - 1]; Exit: return error; } /* end of tagasp.c */ ttfautohint-0.97/lib/taname.c0000644000175000001440000002641312177664234013140 00000000000000/* taname.c */ /* * Copyright (C) 2012-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include #include "ta.h" typedef struct Lang_Tag_Record_ { FT_UShort len; FT_Byte* str; } Lang_Tag_Record; typedef struct Name_Record_ { FT_UShort platform_id; FT_UShort encoding_id; FT_UShort language_id; FT_UShort name_id; FT_UShort len; FT_Byte* str; } Name_Record; typedef struct Naming_Table_ { FT_UShort format; FT_UShort string_offset; FT_UShort name_count; Name_Record* name_records; FT_UShort lang_tag_count; Lang_Tag_Record* lang_tag_records; } Naming_Table; static FT_Error parse_name_header(FT_Byte** curp, Naming_Table* n, FT_ULong buf_len, FT_Byte** start, FT_Byte** end) { FT_Byte* buf = *curp; FT_Byte* p; FT_Byte* startp; FT_Byte* endp; p = *curp; n->format = *(p++) << 8; n->format += *(p++); n->name_count = *(p++) << 8; n->name_count += *(p++); n->string_offset = *(p++) << 8; n->string_offset += *(p++); n->name_records = NULL; n->lang_tag_records = NULL; /* all name strings must be between `startp' and `endp' */ startp = buf + 6 + 12 * n->name_count; endp = buf + buf_len; /* format 1 also has language tag records */ if (n->format == 1) { FT_Byte* q; q = startp; if (q + 2 > endp) return FT_Err_Invalid_Table; n->lang_tag_count = *(q++) << 8; n->lang_tag_count += *q; startp += 2 + 4 * n->lang_tag_count; } else n->lang_tag_count = 0; if (startp > endp) return FT_Err_Invalid_Table; *start = startp; *end = endp; *curp = p; return TA_Err_Ok; } static FT_Error parse_name_records(FT_Byte** curp, Naming_Table* n, FT_Byte* buf, FT_Byte* startp, FT_Byte* endp, FONT* font) { FT_UShort i, count; FT_Byte* p; p = *curp; if (!n->name_count) return TA_Err_Ok; /* allocate name records array */ n->name_records = (Name_Record*)calloc(1, n->name_count * sizeof (Name_Record)); if (!n->name_records) return FT_Err_Out_Of_Memory; /* walk over all name records */ count = 0; for (i = 0; i < n->name_count; i++) { Name_Record* r = &n->name_records[count]; FT_UShort offset; FT_Byte* s; FT_UShort l; r->platform_id = *(p++) << 8; r->platform_id += *(p++); r->encoding_id = *(p++) << 8; r->encoding_id += *(p++); r->language_id = *(p++) << 8; r->language_id += *(p++); r->name_id = *(p++) << 8; r->name_id += *(p++); r->len = *(p++) << 8; r->len += *(p++); offset = *(p++) << 8; offset += *(p++); s = buf + n->string_offset + offset; /* ignore invalid entries */ if (s < startp || s + r->len > endp) continue; /* mac encoding or non-Unicode Windows encoding? */ if (r->platform_id == 1 || (r->platform_id == 3 && !(r->encoding_id == 1 || r->encoding_id == 10))) { /* one-byte or multi-byte encodings */ /* skip everything after a NULL byte (if any) */ for (l = 0; l < r->len; l++) if (!s[l]) break; /* ignore zero-length entries */ if (!l) continue; r->len = l; } else { /* (two-byte) UTF-16BE for everything else */ /* we need an even number of bytes */ r->len &= ~1; /* ignore entries which contain only NULL bytes */ for (l = 0; l < r->len; l++) if (s[l]) break; if (l == r->len) continue; } r->str = (FT_Byte*)malloc(r->len); if (!r->str) return FT_Err_Out_Of_Memory; memcpy(r->str, s, r->len); if (font->info) { if (font->info(r->platform_id, r->encoding_id, r->language_id, r->name_id, &r->len, &r->str, font->info_data)) continue; } count++; } /* shrink name record array if necessary */ n->name_records = (Name_Record*)realloc(n->name_records, count * sizeof (Name_Record)); n->name_count = count; return TA_Err_Ok; } FT_Error parse_lang_tag_records(FT_Byte** curp, Naming_Table* n, FT_Byte* buf, FT_Byte* startp, FT_Byte* endp) { FT_UShort i; FT_Byte* p; p = *curp; if (!n->lang_tag_count) return TA_Err_Ok; /* allocate language tags array */ n->lang_tag_records = (Lang_Tag_Record*)calloc( 1, n->lang_tag_count * sizeof (Lang_Tag_Record)); if (!n->lang_tag_records) return FT_Err_Out_Of_Memory; /* walk over all language tag records (if any) */ for (i = 0; i < n->lang_tag_count; i++) { Lang_Tag_Record* r = &n->lang_tag_records[i]; FT_UShort offset; FT_Byte* s; r->len = *(p++) << 8; r->len += *(p++); offset = *(p++) << 8; offset += *(p++); s = buf + n->string_offset + offset; /* ignore an invalid entry -- */ /* contrary to name records, we can't simply remove it */ /* because references to it should still work */ /* (we don't apply more fixes */ /* since ttfautohint is not a TrueType sanitizing tool) */ if (s < startp || s + r->len > endp) continue; /* we don't massage the data since we only make a copy */ r->str = (FT_Byte*)malloc(r->len); if (!r->str) return FT_Err_Out_Of_Memory; memcpy(r->str, s, r->len); } return TA_Err_Ok; } /* we build a non-optimized `name' table, this is, */ /* we don't fold strings `foo' and `foobar' into one string */ static FT_Error build_name_table(Naming_Table* n, SFNT_Table* name_table) { FT_Byte* buf_new; FT_Byte* buf_new_resized; FT_ULong buf_new_len; FT_ULong len; FT_Byte* p; FT_Byte* q; FT_Byte* base; FT_UShort i; FT_UShort string_offset; FT_ULong data_offset; FT_ULong data_len; /* we reallocate the array to its real size later on */ buf_new_len= 6 + 12 * n->name_count; if (n->format == 1) buf_new_len += 2 + 4 * n->lang_tag_count; buf_new = (FT_Byte*)malloc(buf_new_len); if (!buf_new) return FT_Err_Out_Of_Memory; /* note that the OpenType specification says that `string_offset' is the */ /* `offset to the start of string storage (from start of table)', */ /* but this isn't enforced by the major rendering engines */ /* as long as the final string offsets are valid */ string_offset = (buf_new_len <= 0xFFFF) ? buf_new_len : 0xFFFF; p = buf_new; *(p++) = HIGH(n->format); *(p++) = LOW(n->format); *(p++) = HIGH(n->name_count); *(p++) = LOW(n->name_count); *(p++) = HIGH(string_offset); *(p++) = LOW(string_offset); /* first pass */ data_len = 0; for (i = 0; i < n->name_count; i++) { Name_Record* r = &n->name_records[i]; *(p++) = HIGH(r->platform_id); *(p++) = LOW(r->platform_id); *(p++) = HIGH(r->encoding_id); *(p++) = LOW(r->encoding_id); *(p++) = HIGH(r->language_id); *(p++) = LOW(r->language_id); *(p++) = HIGH(r->name_id); *(p++) = LOW(r->name_id); *(p++) = HIGH(r->len); *(p++) = LOW(r->len); /* the offset field gets filled in later */ p += 2; data_len += r->len; } if (n->format == 1) { *(p++) = HIGH(n->lang_tag_count); *(p++) = LOW(n->lang_tag_count); for (i = 0; i < n->lang_tag_count; i++) { Lang_Tag_Record* r = &n->lang_tag_records[i]; *(p++) = HIGH(r->len); *(p++) = LOW(r->len); /* the offset field gets filled in later */ p += 2; data_len += r->len; } } if (buf_new_len + data_len > 2 * 0xFFFF) { /* the table would become too large, so we do nothing */ free(buf_new); return TA_Err_Ok; } data_offset = buf_new_len; /* reallocate the buffer to fit its real size */ buf_new_len += data_len; /* make the allocated buffer length a multiple of 4 */ len = (buf_new_len + 3) & ~3; buf_new_resized = (FT_Byte*)realloc(buf_new, len); if (!buf_new_resized) { free(buf_new); return FT_Err_Out_Of_Memory; } buf_new = buf_new_resized; base = buf_new + string_offset; p = buf_new + data_offset; /* second pass */ /* the first name record offset */ q = &buf_new[6 + 10]; for (i = 0; i < n->name_count; i++) { Name_Record* r = &n->name_records[i]; /* fill in offset */ *q = HIGH(p - base); *(q + 1) = LOW(p - base); /* copy string */ memcpy(p, r->str, r->len); p += r->len; q += 12; } if (n->format == 1) { /* the first language tag record offset */ q = &buf_new[6 + 12 * n->name_count + 2 + 2]; for (i = 0; i < n->lang_tag_count; i++) { Lang_Tag_Record* r = &n->lang_tag_records[i]; /* fill in offset */ *q = HIGH(p - base); *(q + 1) = LOW(p - base); /* copy string */ memcpy(p, r->str, r->len); p += r->len; q += 4; } } /* pad end of buffer with zeros */ switch (buf_new_len % 4) { case 1: *(p++) = 0x00; case 2: *(p++) = 0x00; case 3: *(p++) = 0x00; default: break; } /* we are done; replace the old buffer with the new one */ free(name_table->buf); name_table->buf = buf_new; name_table->len = buf_new_len; return TA_Err_Ok; } /* we handle the `name' table as optional; */ /* if there are problems not related to allocation, */ /* simply return (or continue, if possible) without signaling an error, */ /* and the original `name' table is not modified */ FT_Error TA_sfnt_update_name_table(SFNT* sfnt, FONT* font) { FT_Error error; SFNT_Table* name_table; FT_Byte* buf; FT_ULong buf_len; Naming_Table n; FT_Byte* p; FT_Byte* startp; FT_Byte* endp; FT_UShort i; if (sfnt->name_idx == MISSING) return TA_Err_Ok; name_table = &font->tables[sfnt->name_idx]; buf = name_table->buf; buf_len = name_table->len; if (name_table->processed) return TA_Err_Ok; p = buf; error = parse_name_header(&p, &n, buf_len, &startp, &endp); if (error) return TA_Err_Ok; /* due to the structure of the `name' table, */ /* we must parse it completely, apply our changes, */ /* and rebuild it from scratch */ error = parse_name_records(&p, &n, buf, startp, endp, font); if (error) goto Exit; error = parse_lang_tag_records(&p, &n, buf, startp, endp); if (error) goto Exit; error = build_name_table(&n, name_table); if (error) goto Exit; name_table->checksum = TA_table_compute_checksum(name_table->buf, name_table->len); Exit: for (i = 0; i < n.name_count; i++) free(n.name_records[i].str); for (i = 0; i < n.lang_tag_count; i++) free(n.lang_tag_records[i].str); free(n.name_records); free(n.lang_tag_records); name_table->processed = 1; return error; } /* end of taname.c */ ttfautohint-0.97/lib/tadsig.c0000644000175000001440000000164312076552172013137 00000000000000/* tadsig.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" /* we build a dummy `DSIG' table only */ FT_Error TA_table_build_DSIG(FT_Byte** DSIG) { FT_Byte* buf; buf = (FT_Byte*)malloc(DSIG_LEN); if (!buf) return FT_Err_Out_Of_Memory; /* version */ buf[0] = 0x00; buf[1] = 0x00; buf[2] = 0x00; buf[3] = 0x01; /* zero signatures */ buf[4] = 0x00; buf[5] = 0x00; /* permission flags */ buf[6] = 0x00; buf[7] = 0x00; *DSIG = buf; return TA_Err_Ok; } /* end of tadsig.c */ ttfautohint-0.97/lib/numberset.h0000644000175000001440000001072512076552172013676 00000000000000/* numberset.h */ /* * Copyright (C) 2012-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #ifndef __NUMBERSET_H__ #define __NUMBERSET_H__ #ifdef __cplusplus extern "C" { #endif /* * A structure defining an integer range, to be used as a linked list. It * gets allocated by a successful call to `parse_number_set'. Use * `number_set_free' to deallocate it. */ typedef struct number_range_ { int start; int end; struct number_range_* next; } number_range; /* * Parse a description in string `s' for a set of non-negative integers * within the limits given by the input parameters `min' and `max', and * which consists of the following ranges, separated by commas (`n' and `m' * are non-negative integers): * * -n min <= x <= n * n x = n; this is a shorthand for `n-n' * n-m n <= x <= m (or m <= x <= n if m < n) * m- m <= x <= max * - min <= x <= max * * Superfluous commas are ignored, as is whitespace around numbers, dashes, * and commas. The ranges must be ordered, without overlaps. As a * consequence, `-n' and `m-' can occur at most once and must be then the * first and last range, respectively; similarly, `-' cannot be paired with * any other range. * * In the following examples, `min' is 4 and `max' is 12: * * - -> 4, 5, 6, 7, 8, 9, 10, 11, 12 * -3, 5- -> invalid first range * 4, 6-8, 10- -> 4, 6, 7, 8, 10, 11, 12 * 4-8, 6-10 -> invalid overlapping ranges * * In case of success (this is, the number set description in `s' is valid) * the return value is a pointer to the final zero byte in string `s'. In * case of an error, the return value is a pointer to the beginning position * of the offending range in string `s'. * * If s is NULL, the function exits immediately with NULL as the return * value. * * If the user provides a non-NULL `number_set' value, `number_set_parse' * stores a linked list of ordered number ranges in `*number_set', allocated * with `malloc'. If there is no range at all (for example, an empty string * or whitespace and commas only) no data gets allocated, and `*number_set' * is set to NULL. In case of error, `*number_set' returns an error code; * you should use the following macros to compare with. * * NUMBERSET_INVALID_CHARACTER invalid character in description string * NUMBERSET_OVERFLOW numerical overflow * NUMBERSET_INVALID_RANGE invalid range, exceeding `min' or `max' * NUMBERSET_OVERLAPPING_RANGES overlapping ranges * NUMBERSET_NOT_ASCENDING not ascending ranges or values * NUMBERSET_ALLOCATION_ERROR allocation error * * Note that a negative value for `min' is replaced with zero, and a * negative value for `max' with the largest representable integer, INT_MAX. */ #define NUMBERSET_INVALID_CHARACTER (number_range*)-1 #define NUMBERSET_OVERFLOW (number_range*)-2 #define NUMBERSET_INVALID_RANGE (number_range*)-3 #define NUMBERSET_OVERLAPPING_RANGES (number_range*)-4 #define NUMBERSET_NOT_ASCENDING (number_range*)-5 #define NUMBERSET_ALLOCATION_ERROR (number_range*)-6 const char* number_set_parse(const char* s, number_range** number_set, int min, int max); /* * Free the allocated data in `number_set'. */ void number_set_free(number_range* number_set); /* * Return a string representation of `number_set', viewed through a * `window', so to say, spanned up by the parameters `min' and `max'. After * use, the string should be deallocated with a call to `free'. In case of * an allocation error, the return value is NULL. * * Note that a negative value for `min' is replaced with zero, and a * negative value for `max' with the largest representable integer, INT_MAX. */ char* number_set_show(number_range* number_set, int min, int max); /* * Return value 1 if `number' is element of `number_set', zero otherwise. */ int number_set_is_element(number_range* number_set, int number); #ifdef __cplusplus } /* extern "C" */ #endif #endif /* __NUMBERSET_H__ */ /* end of numberset.h */ ttfautohint-0.97/lib/tabytecode.c0000644000175000001440000014470012227174256014012 00000000000000/* tabytecode.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" #include #undef MISSING #define MISSING (FT_UShort)~0 #define DEBUGGING #ifdef TA_DEBUG int _ta_debug = 0; int _ta_debug_global = 0; int _ta_debug_disable_horz_hints; int _ta_debug_disable_vert_hints; int _ta_debug_disable_blue_hints; void* _ta_debug_hints; #endif typedef struct Hints_Record_ { FT_UInt size; FT_UInt num_actions; FT_Byte* buf; FT_UInt buf_len; } Hints_Record; typedef struct Recorder_ { SFNT* sfnt; FONT* font; GLYPH* glyph; /* the current glyph */ Hints_Record hints_record; /* some segments can `wrap around' */ /* a contour's start point like 24-25-26-0-1-2 */ /* (there can be at most one such segment per contour); */ /* later on we append additional records */ /* to split them into 24-26 and 0-2 */ FT_UShort* wrap_around_segments; FT_UShort num_wrap_around_segments; FT_UShort num_stack_elements; /* the necessary stack depth so far */ /* data necessary for strong point interpolation */ FT_UShort* ip_before_points; FT_UShort* ip_after_points; FT_UShort* ip_on_point_array; FT_UShort* ip_between_point_array; FT_UShort num_strong_points; FT_UShort num_segments; } Recorder; /* this is the bytecode of the `.ttfautohint' glyph */ FT_Byte ttfautohint_glyph_bytecode[7] = { /* increment `cvtl_is_subglyph' counter */ PUSHB_3, cvtl_is_subglyph, 1, cvtl_is_subglyph, RCVT, ADD, WCVTP, }; /* * convert array `args' into a sequence of NPUSHB, NPUSHW, PUSHB_X, and * PUSHW_X instructions to be stored in `bufp' (the latter two instructions * only if `optimize' is not set); if `need_words' is set, NPUSHW and * PUSHW_X gets used */ FT_Byte* TA_build_push(FT_Byte* bufp, FT_UInt* args, FT_UInt num_args, FT_Bool need_words, FT_Bool optimize) { FT_UInt* arg = args; FT_UInt i, j, nargs; if (need_words) { for (i = 0; i < num_args; i += 255) { nargs = (num_args - i > 255) ? 255 : num_args - i; if (optimize && nargs <= 8) BCI(PUSHW_1 - 1 + nargs); else { BCI(NPUSHW); BCI(nargs); } for (j = 0; j < nargs; j++) { BCI(HIGH(*arg)); BCI(LOW(*arg)); arg++; } } } else { for (i = 0; i < num_args; i += 255) { nargs = (num_args - i > 255) ? 255 : num_args - i; if (optimize && nargs <= 8) BCI(PUSHB_1 - 1 + nargs); else { BCI(NPUSHB); BCI(nargs); } for (j = 0; j < nargs; j++) { BCI(*arg); arg++; } } } return bufp; } /* We add a subglyph for each composite glyph. */ /* Since subglyphs must contain at least one point, */ /* we have to adjust all point indices accordingly. */ /* Using the `pointsums' array of the `GLYPH' structure */ /* it is straightforward to do that: */ /* Assuming that point with index x is in the interval */ /* pointsums[n] <= x < pointsums[n + 1], */ /* the new point index is x + n. */ static FT_UInt TA_adjust_point_index(Recorder* recorder, FT_UInt idx) { FONT* font = recorder->font; GLYPH* glyph = recorder->glyph; FT_UShort i; if (!glyph->num_components || !font->hint_composites) return idx; /* not a composite glyph */ for (i = 0; i < glyph->num_pointsums; i++) if (idx < glyph->pointsums[i]) break; return idx + i; } /* we store the segments in the storage area; */ /* each segment record consists of the first and last point */ static FT_Byte* TA_sfnt_build_glyph_segments(SFNT* sfnt, Recorder* recorder, FT_Byte* bufp, FT_Bool optimize) { FONT* font = recorder->font; TA_GlyphHints hints = &font->loader->hints; TA_AxisHints axis = &hints->axis[TA_DIMENSION_VERT]; TA_Point points = hints->points; TA_Segment segments = axis->segments; TA_Segment seg; TA_Segment seg_limit; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_UInt script_id = data->script_ids [font->loader->metrics->script_class->script]; FT_Outline outline = font->loader->gloader->base.outline; FT_UInt* args; FT_UInt* arg; FT_UInt num_args; FT_UShort num_segments; FT_Bool need_words = 0; FT_Int n; FT_UInt base; FT_UShort num_packed_segments; FT_UShort num_storage; FT_UShort num_stack_elements; FT_UShort num_twilight_points; seg_limit = segments + axis->num_segments; num_segments = axis->num_segments; /* to pack the data in the bytecode more tightly, */ /* we store up to the first nine segments in nibbles if possible, */ /* using delta values */ base = 0; num_packed_segments = 0; for (seg = segments; seg < seg_limit; seg++) { FT_UInt first = seg->first - points; FT_UInt last = seg->last - points; first = TA_adjust_point_index(recorder, first); last = TA_adjust_point_index(recorder, last); if (first - base >= 16) break; if (first > last || last - first >= 16) break; if (num_packed_segments == 9) break; num_packed_segments++; base = last; } /* also handle wrap-around segments */ num_segments += recorder->num_wrap_around_segments; /* wrap-around segments are pushed with four arguments; */ /* a segment stored in nibbles needs only one byte instead of two */ num_args = num_packed_segments + 2 * (num_segments - num_packed_segments) + 2 * recorder->num_wrap_around_segments + 3; /* collect all arguments temporarily in an array (in reverse order) */ /* so that we can easily split into chunks of 255 args */ /* as needed by NPUSHB and NPUSHW, respectively */ args = (FT_UInt*)malloc(num_args * sizeof (FT_UInt)); if (!args) return NULL; arg = args + num_args - 1; if (num_segments > 0xFF) need_words = 1; /* the number of packed segments is indicated by the function number */ if (recorder->glyph->num_components && font->hint_composites) *(arg--) = bci_create_segments_composite_0 + num_packed_segments; else *(arg--) = bci_create_segments_0 + num_packed_segments; *(arg--) = CVT_SCALING_VALUE_OFFSET(script_id); *(arg--) = num_segments; base = 0; for (seg = segments; seg < segments + num_packed_segments; seg++) { FT_UInt first = seg->first - points; FT_UInt last = seg->last - points; FT_UInt low_nibble; FT_UInt high_nibble; first = TA_adjust_point_index(recorder, first); last = TA_adjust_point_index(recorder, last); low_nibble = first - base; high_nibble = last - first; *(arg--) = 16 * high_nibble + low_nibble; base = last; } for (seg = segments + num_packed_segments; seg < seg_limit; seg++) { FT_UInt first = seg->first - points; FT_UInt last = seg->last - points; *(arg--) = TA_adjust_point_index(recorder, first); *(arg--) = TA_adjust_point_index(recorder, last); /* we push the last and first contour point */ /* as a third and fourth argument in wrap-around segments */ if (first > last) { for (n = 0; n < outline.n_contours; n++) { FT_UInt end = (FT_UInt)outline.contours[n]; if (first <= end) { *(arg--) = TA_adjust_point_index(recorder, end); if (end > 0xFF) need_words = 1; if (n == 0) *(arg--) = TA_adjust_point_index(recorder, 0); else *(arg--) = TA_adjust_point_index(recorder, (FT_UInt)outline.contours[n - 1] + 1); break; } } } if (last > 0xFF) need_words = 1; } /* emit the second part of wrap-around segments as separate segments */ /* so that edges can easily link to them */ for (seg = segments; seg < seg_limit; seg++) { FT_UInt first = seg->first - points; FT_UInt last = seg->last - points; if (first > last) { for (n = 0; n < outline.n_contours; n++) { if (first <= (FT_UInt)outline.contours[n]) { if (n == 0) *(arg--) = TA_adjust_point_index(recorder, 0); else *(arg--) = TA_adjust_point_index(recorder, (FT_UInt)outline.contours[n - 1] + 1); break; } } *(arg--) = TA_adjust_point_index(recorder, last); } } /* with most fonts it is very rare */ /* that any of the pushed arguments is larger than 0xFF, */ /* thus we refrain from further optimizing this case */ bufp = TA_build_push(bufp, args, num_args, need_words, optimize); BCI(CALL); num_storage = sal_segment_offset + num_segments * 2; if (num_storage > sfnt->max_storage) sfnt->max_storage = num_storage; num_twilight_points = num_segments * 2; if (num_twilight_points > sfnt->max_twilight_points) sfnt->max_twilight_points = num_twilight_points; /* both this function and `TA_emit_hints_record' */ /* push data onto the stack */ num_stack_elements = ADDITIONAL_STACK_ELEMENTS + recorder->num_stack_elements + num_args; if (num_stack_elements > sfnt->max_stack_elements) sfnt->max_stack_elements = num_stack_elements; free(args); return bufp; } static FT_Byte* TA_sfnt_build_glyph_scaler(SFNT* sfnt, Recorder* recorder, FT_Byte* bufp) { FONT* font = recorder->font; FT_GlyphSlot glyph = sfnt->face->glyph; FT_Vector* points = glyph->outline.points; FT_Int num_contours = glyph->outline.n_contours; FT_UInt* args; FT_UInt* arg; FT_UInt num_args; FT_Bool need_words = 0; FT_Int p, q; FT_Int start, end; FT_UShort num_stack_elements; num_args = 2 * num_contours + 2; /* collect all arguments temporarily in an array (in reverse order) */ /* so that we can easily split into chunks of 255 args */ /* as needed by NPUSHB and NPUSHW, respectively */ args = (FT_UInt*)malloc(num_args * sizeof (FT_UInt)); if (!args) return NULL; arg = args + num_args - 1; if (num_args > 0xFF) need_words = 1; if (recorder->glyph->num_components && font->hint_composites) *(arg--) = bci_scale_composite_glyph; else *(arg--) = bci_scale_glyph; *(arg--) = num_contours; start = 0; end = 0; for (p = 0; p < num_contours; p++) { FT_Int max = start; FT_Int min = start; end = glyph->outline.contours[p]; for (q = start; q <= end; q++) { if (points[q].y < points[min].y) min = q; if (points[q].y > points[max].y) max = q; } if (min > max) { *(arg--) = TA_adjust_point_index(recorder, max); *(arg--) = TA_adjust_point_index(recorder, min); } else { *(arg--) = TA_adjust_point_index(recorder, min); *(arg--) = TA_adjust_point_index(recorder, max); } start = end + 1; } if (end > 0xFF) need_words = 1; /* with most fonts it is very rare */ /* that any of the pushed arguments is larger than 0xFF, */ /* thus we refrain from further optimizing this case */ bufp = TA_build_push(bufp, args, num_args, need_words, 1); BCI(CALL); num_stack_elements = ADDITIONAL_STACK_ELEMENTS + num_args; if (num_stack_elements > sfnt->max_stack_elements) sfnt->max_stack_elements = num_stack_elements; free(args); return bufp; } static FT_Byte* TA_font_build_subglyph_shifter(FONT* font, FT_Byte* bufp) { FT_Face face = font->loader->face; FT_GlyphSlot glyph = face->glyph; TA_GlyphLoader gloader = font->loader->gloader; TA_SubGlyph subglyphs = gloader->base.subglyphs; TA_SubGlyph subglyph_limit = subglyphs + gloader->base.num_subglyphs; TA_SubGlyph subglyph; FT_Int curr_contour = 0; for (subglyph = subglyphs; subglyph < subglyph_limit; subglyph++) { FT_Error error; FT_UShort flags = subglyph->flags; FT_Pos y_offset = subglyph->arg2; FT_Int num_contours; /* load subglyph to get the number of contours */ error = FT_Load_Glyph(face, subglyph->index, FT_LOAD_NO_SCALE); if (error) return NULL; num_contours = glyph->outline.n_contours; /* nothing to do if there is a point-to-point alignment */ if (!(flags & FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES)) goto End; /* nothing to do if y offset is zero */ if (!y_offset) goto End; /* nothing to do if there are no contours */ if (!num_contours) goto End; /* note that calling `FT_Load_Glyph' without FT_LOAD_NO_RECURSE */ /* ensures that composite subglyphs are represented as simple glyphs */ if (num_contours > 0xFF || curr_contour > 0xFF) { BCI(PUSHW_2); BCI(HIGH(curr_contour)); BCI(LOW(curr_contour)); BCI(HIGH(num_contours)); BCI(LOW(num_contours)); } else { BCI(PUSHB_2); BCI(curr_contour); BCI(num_contours); } /* there are high chances that this value needs PUSHW, */ /* thus we handle it separately */ if (y_offset > 0xFF || y_offset < 0) { BCI(PUSHW_1); BCI(HIGH(y_offset)); BCI(LOW(y_offset)); } else { BCI(PUSHB_1); BCI(y_offset); } BCI(PUSHB_1); BCI(bci_shift_subglyph); BCI(CALL); End: curr_contour += num_contours; } return bufp; } /* * The four `ta_ip_*' actions in the `TA_hints_recorder' callback store its * data in four arrays (which are simple but waste a lot of memory). The * function below converts them into bytecode. * * For `ta_ip_before' and `ta_ip_after', the collected points are emitted * together with the edge they correspond to. * * For both `ta_ip_on' and `ta_ip_between', an outer loop is constructed to * loop over the edge or edge pairs, respectively, and each edge or edge * pair contains an inner loop to emit the correponding points. */ static void TA_build_point_hints(Recorder* recorder, TA_GlyphHints hints) { TA_AxisHints axis = &hints->axis[TA_DIMENSION_VERT]; TA_Segment segments = axis->segments; TA_Edge edges = axis->edges; TA_Edge edge; FT_Byte* p = recorder->hints_record.buf; FT_UShort num_edges = axis->num_edges; FT_UShort num_strong_points = recorder->num_strong_points; FT_UShort i; FT_UShort j; FT_UShort k; FT_UShort* ip; FT_UShort* iq; FT_UShort* ir; FT_UShort* ip_limit; FT_UShort* iq_limit; FT_UShort* ir_limit; /* we store everything as 16bit numbers; */ /* the function numbers (`ta_ip_before', etc.) */ /* reflect the order in the TA_Action enumeration */ /* ip_before_points */ i = 0; ip = recorder->ip_before_points; ip_limit = ip + num_strong_points; for (; ip < ip_limit; ip++) { if (*ip != MISSING) i++; else break; } if (i) { recorder->hints_record.num_actions++; edge = edges; *(p++) = 0; *(p++) = (FT_Byte)ta_ip_before + ACTION_OFFSET; *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); *(p++) = HIGH(i); *(p++) = LOW(i); ip = recorder->ip_before_points; ip_limit = ip + i; for (; ip < ip_limit; ip++) { FT_UInt point = TA_adjust_point_index(recorder, *ip); *(p++) = HIGH(point); *(p++) = LOW(point); } } /* ip_after_points */ i = 0; ip = recorder->ip_after_points; ip_limit = ip + num_strong_points; for (; ip < ip_limit; ip++) { if (*ip != MISSING) i++; else break; } if (i) { recorder->hints_record.num_actions++; edge = edges + axis->num_edges - 1; *(p++) = 0; *(p++) = (FT_Byte)ta_ip_after + ACTION_OFFSET; *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); *(p++) = HIGH(i); *(p++) = LOW(i); ip = recorder->ip_after_points; ip_limit = ip + i; for (; ip < ip_limit; ip++) { FT_UInt point = TA_adjust_point_index(recorder, *ip); *(p++) = HIGH(point); *(p++) = LOW(point); } } /* ip_on_point_array */ i = 0; ip = recorder->ip_on_point_array; ip_limit = ip + num_edges * num_strong_points; for (; ip < ip_limit; ip += num_strong_points) if (*ip != MISSING) i++; if (i) { recorder->hints_record.num_actions++; *(p++) = 0; *(p++) = (FT_Byte)ta_ip_on + ACTION_OFFSET; *(p++) = HIGH(i); *(p++) = LOW(i); i = 0; ip = recorder->ip_on_point_array; ip_limit = ip + num_edges * num_strong_points; for (; ip < ip_limit; ip += num_strong_points, i++) { if (*ip == MISSING) continue; edge = edges + i; *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); j = 0; iq = ip; iq_limit = iq + num_strong_points; for (; iq < iq_limit; iq++) { if (*iq != MISSING) j++; else break; } *(p++) = HIGH(j); *(p++) = LOW(j); iq = ip; iq_limit = iq + j; for (; iq < iq_limit; iq++) { FT_UInt point = TA_adjust_point_index(recorder, *iq); *(p++) = HIGH(point); *(p++) = LOW(point); } } } /* ip_between_point_array */ i = 0; ip = recorder->ip_between_point_array; ip_limit = ip + num_edges * num_edges * num_strong_points; for (; ip < ip_limit; ip += num_strong_points) if (*ip != MISSING) i++; if (i) { recorder->hints_record.num_actions++; *(p++) = 0; *(p++) = (FT_Byte)ta_ip_between + ACTION_OFFSET; *(p++) = HIGH(i); *(p++) = LOW(i); i = 0; ip = recorder->ip_between_point_array; ip_limit = ip + num_edges * num_edges * num_strong_points; for (; ip < ip_limit; ip += num_edges * num_strong_points, i++) { TA_Edge before; TA_Edge after; before = edges + i; j = 0; iq = ip; iq_limit = iq + num_edges * num_strong_points; for (; iq < iq_limit; iq += num_strong_points, j++) { if (*iq == MISSING) continue; after = edges + j; *(p++) = HIGH(after->first - segments); *(p++) = LOW(after->first - segments); *(p++) = HIGH(before->first - segments); *(p++) = LOW(before->first - segments); k = 0; ir = iq; ir_limit = ir + num_strong_points; for (; ir < ir_limit; ir++) { if (*ir != MISSING) k++; else break; } *(p++) = HIGH(k); *(p++) = LOW(k); ir = iq; ir_limit = ir + k; for (; ir < ir_limit; ir++) { FT_UInt point = TA_adjust_point_index(recorder, *ir); *(p++) = HIGH(point); *(p++) = LOW(point); } } } } recorder->hints_record.buf = p; } static FT_Bool TA_hints_record_is_different(Hints_Record* hints_records, FT_UInt num_hints_records, FT_Byte* start, FT_Byte* end) { Hints_Record last_hints_record; if (!hints_records) return 1; /* we only need to compare with the last hints record */ last_hints_record = hints_records[num_hints_records - 1]; if ((FT_UInt)(end - start) != last_hints_record.buf_len) return 1; if (memcmp(start, last_hints_record.buf, last_hints_record.buf_len)) return 1; return 0; } static FT_Error TA_add_hints_record(Hints_Record** hints_records, FT_UInt* num_hints_records, FT_Byte* start, Hints_Record hints_record) { Hints_Record* hints_records_new; FT_UInt buf_len; /* at this point, `hints_record.buf' still points into `ins_buf' */ FT_Byte* end = hints_record.buf; buf_len = (FT_UInt)(end - start); /* now fill the structure completely */ hints_record.buf_len = buf_len; hints_record.buf = (FT_Byte*)malloc(buf_len); if (!hints_record.buf) return FT_Err_Out_Of_Memory; memcpy(hints_record.buf, start, buf_len); (*num_hints_records)++; hints_records_new = (Hints_Record*)realloc(*hints_records, *num_hints_records * sizeof (Hints_Record)); if (!hints_records_new) { free(hints_record.buf); (*num_hints_records)--; return FT_Err_Out_Of_Memory; } else *hints_records = hints_records_new; (*hints_records)[*num_hints_records - 1] = hints_record; return FT_Err_Ok; } static FT_Byte* TA_emit_hints_record(Recorder* recorder, Hints_Record* hints_record, FT_Byte* bufp, FT_Bool optimize) { FT_Byte* p; FT_Byte* endp; FT_Bool need_words = 0; FT_UInt i, j; FT_UInt num_arguments; FT_UInt num_args; /* check whether any argument is larger than 0xFF */ endp = hints_record->buf + hints_record->buf_len; for (p = hints_record->buf; p < endp; p += 2) if (*p) { need_words = 1; break; } /* with most fonts it is very rare */ /* that any of the pushed arguments is larger than 0xFF, */ /* thus we refrain from further optimizing this case */ num_arguments = hints_record->buf_len / 2; p = endp - 2; if (need_words) { for (i = 0; i < num_arguments; i += 255) { num_args = (num_arguments - i > 255) ? 255 : (num_arguments - i); if (optimize && num_args <= 8) BCI(PUSHW_1 - 1 + num_args); else { BCI(NPUSHW); BCI(num_args); } for (j = 0; j < num_args; j++) { BCI(*p); BCI(*(p + 1)); p -= 2; } } } else { /* we only need the lower bytes */ p++; for (i = 0; i < num_arguments; i += 255) { num_args = (num_arguments - i > 255) ? 255 : (num_arguments - i); if (optimize && num_args <= 8) BCI(PUSHB_1 - 1 + num_args); else { BCI(NPUSHB); BCI(num_args); } for (j = 0; j < num_args; j++) { BCI(*p); p -= 2; } } } /* collect stack depth data */ if (num_arguments > recorder->num_stack_elements) recorder->num_stack_elements = num_arguments; return bufp; } static FT_Byte* TA_emit_hints_records(Recorder* recorder, Hints_Record* hints_records, FT_UInt num_hints_records, FT_Byte* bufp, FT_Bool optimize) { FT_UInt i; Hints_Record* hints_record; hints_record = hints_records; /* emit hints records in `if' clauses, */ /* with the ppem size as the condition */ for (i = 0; i < num_hints_records - 1; i++) { BCI(MPPEM); if (hints_record->size > 0xFF) { BCI(PUSHW_1); BCI(HIGH((hints_record + 1)->size)); BCI(LOW((hints_record + 1)->size)); } else { BCI(PUSHB_1); BCI((hints_record + 1)->size); } BCI(LT); BCI(IF); bufp = TA_emit_hints_record(recorder, hints_record, bufp, optimize); BCI(ELSE); hints_record++; } bufp = TA_emit_hints_record(recorder, hints_record, bufp, optimize); for (i = 0; i < num_hints_records - 1; i++) BCI(EIF); return bufp; } static void TA_free_hints_records(Hints_Record* hints_records, FT_UInt num_hints_records) { FT_UInt i; for (i = 0; i < num_hints_records; i++) free(hints_records[i].buf); free(hints_records); } static FT_Byte* TA_hints_recorder_handle_segments(FT_Byte* bufp, TA_AxisHints axis, TA_Edge edge, FT_UShort* wraps) { TA_Segment segments = axis->segments; TA_Segment seg; FT_UShort seg_idx; FT_UShort num_segs = 0; FT_UShort* wrap; seg_idx = edge->first - segments; /* we store everything as 16bit numbers */ *(bufp++) = HIGH(seg_idx); *(bufp++) = LOW(seg_idx); /* wrap-around segments are stored as two segments */ if (edge->first->first > edge->first->last) num_segs++; seg = edge->first->edge_next; while (seg != edge->first) { num_segs++; if (seg->first > seg->last) num_segs++; seg = seg->edge_next; } *(bufp++) = HIGH(num_segs); *(bufp++) = LOW(num_segs); if (edge->first->first > edge->first->last) { /* emit second part of wrap-around segment; */ /* the bytecode positions such segments after `normal' ones */ wrap = wraps; for (;;) { if (seg_idx == *wrap) break; wrap++; } *(bufp++) = HIGH(axis->num_segments + (wrap - wraps)); *(bufp++) = LOW(axis->num_segments + (wrap - wraps)); } seg = edge->first->edge_next; while (seg != edge->first) { seg_idx = seg - segments; *(bufp++) = HIGH(seg_idx); *(bufp++) = LOW(seg_idx); if (seg->first > seg->last) { wrap = wraps; for (;;) { if (seg_idx == *wrap) break; wrap++; } *(bufp++) = HIGH(axis->num_segments + (wrap - wraps)); *(bufp++) = LOW(axis->num_segments + (wrap - wraps)); } seg = seg->edge_next; } return bufp; } static void TA_hints_recorder(TA_Action action, TA_GlyphHints hints, TA_Dimension dim, void* arg1, TA_Edge arg2, TA_Edge arg3, TA_Edge lower_bound, TA_Edge upper_bound) { TA_AxisHints axis = &hints->axis[dim]; TA_Edge edges = axis->edges; TA_Segment segments = axis->segments; TA_Point points = hints->points; Recorder* recorder = (Recorder*)hints->user; SFNT* sfnt = recorder->sfnt; FONT* font = recorder->font; FT_UShort* wraps = recorder->wrap_around_segments; FT_Byte* p = recorder->hints_record.buf; FT_UInt script = font->loader->metrics->script_class->script; FT_UShort* ip; FT_UShort* limit; if (dim == TA_DIMENSION_HORZ) return; /* we collect point hints for later processing */ switch (action) { case ta_ip_before: { TA_Point point = (TA_Point)arg1; ip = recorder->ip_before_points; limit = ip + recorder->num_strong_points; for (; ip < limit; ip++) { if (*ip == MISSING) { *ip = point - points; break; } } } return; case ta_ip_after: { TA_Point point = (TA_Point)arg1; ip = recorder->ip_after_points; limit = ip + recorder->num_strong_points; for (; ip < limit; ip++) { if (*ip == MISSING) { *ip = point - points; break; } } } return; case ta_ip_on: { TA_Point point = (TA_Point)arg1; TA_Edge edge = arg2; ip = recorder->ip_on_point_array + recorder->num_strong_points * (edge - edges); limit = ip + recorder->num_strong_points; for (; ip < limit; ip++) { if (*ip == MISSING) { *ip = point - points; break; } } } return; case ta_ip_between: { TA_Point point = (TA_Point)arg1; TA_Edge before = arg2; TA_Edge after = arg3; /* note that `recorder->num_segments' has been used for allocation, */ /* but `axis->num_edges' is used for accessing this array */ ip = recorder->ip_between_point_array + recorder->num_strong_points * axis->num_edges * (before - edges) + recorder->num_strong_points * (after - edges); limit = ip + recorder->num_strong_points; for (; ip < limit; ip++) { if (*ip == MISSING) { *ip = point - points; break; } } } return; case ta_bound: /* we ignore the BOUND action since we signal this information */ /* with the proper function number */ return; default: break; } /* some enum values correspond to four or eight bytecode functions; */ /* if the value is n, the function numbers are n, ..., n+7, */ /* to be differentiated with flags */ switch (action) { case ta_link: { TA_Edge base_edge = (TA_Edge)arg1; TA_Edge stem_edge = arg2; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET + ((stem_edge->flags & TA_EDGE_SERIF) != 0) + 2 * ((base_edge->flags & TA_EDGE_ROUND) != 0); *(p++) = HIGH(base_edge->first - segments); *(p++) = LOW(base_edge->first - segments); *(p++) = HIGH(stem_edge->first - segments); *(p++) = LOW(stem_edge->first - segments); p = TA_hints_recorder_handle_segments(p, axis, stem_edge, wraps); } break; case ta_anchor: { TA_Edge edge = (TA_Edge)arg1; TA_Edge edge2 = arg2; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET + ((edge2->flags & TA_EDGE_SERIF) != 0) + 2 * ((edge->flags & TA_EDGE_ROUND) != 0); *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); *(p++) = HIGH(edge2->first - segments); *(p++) = LOW(edge2->first - segments); p = TA_hints_recorder_handle_segments(p, axis, edge, wraps); } break; case ta_adjust: { TA_Edge edge = (TA_Edge)arg1; TA_Edge edge2 = arg2; TA_Edge edge_minus_one = lower_bound; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET + ((edge2->flags & TA_EDGE_SERIF) != 0) + 2 * ((edge->flags & TA_EDGE_ROUND) != 0) + 4 * (edge_minus_one != NULL); *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); *(p++) = HIGH(edge2->first - segments); *(p++) = LOW(edge2->first - segments); if (edge_minus_one) { *(p++) = HIGH(edge_minus_one->first - segments); *(p++) = LOW(edge_minus_one->first - segments); } p = TA_hints_recorder_handle_segments(p, axis, edge, wraps); } break; case ta_blue_anchor: { TA_Edge edge = (TA_Edge)arg1; TA_Edge blue = arg2; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET; *(p++) = HIGH(blue->first - segments); *(p++) = LOW(blue->first - segments); if (edge->best_blue_is_shoot) { *(p++) = HIGH(CVT_BLUE_SHOOTS_OFFSET(script) + edge->best_blue_idx); *(p++) = LOW(CVT_BLUE_SHOOTS_OFFSET(script) + edge->best_blue_idx); } else { *(p++) = HIGH(CVT_BLUE_REFS_OFFSET(script) + edge->best_blue_idx); *(p++) = LOW(CVT_BLUE_REFS_OFFSET(script) + edge->best_blue_idx); } *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); p = TA_hints_recorder_handle_segments(p, axis, edge, wraps); } break; case ta_stem: { TA_Edge edge = (TA_Edge)arg1; TA_Edge edge2 = arg2; TA_Edge edge_minus_one = lower_bound; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET + ((edge2->flags & TA_EDGE_SERIF) != 0) + 2 * ((edge->flags & TA_EDGE_ROUND) != 0) + 4 * (edge_minus_one != NULL); *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); *(p++) = HIGH(edge2->first - segments); *(p++) = LOW(edge2->first - segments); if (edge_minus_one) { *(p++) = HIGH(edge_minus_one->first - segments); *(p++) = LOW(edge_minus_one->first - segments); } p = TA_hints_recorder_handle_segments(p, axis, edge, wraps); p = TA_hints_recorder_handle_segments(p, axis, edge2, wraps); } break; case ta_blue: { TA_Edge edge = (TA_Edge)arg1; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET; if (edge->best_blue_is_shoot) { *(p++) = HIGH(CVT_BLUE_SHOOTS_OFFSET(script) + edge->best_blue_idx); *(p++) = LOW(CVT_BLUE_SHOOTS_OFFSET(script) + edge->best_blue_idx); } else { *(p++) = HIGH(CVT_BLUE_REFS_OFFSET(script) + edge->best_blue_idx); *(p++) = LOW(CVT_BLUE_REFS_OFFSET(script) + edge->best_blue_idx); } *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); p = TA_hints_recorder_handle_segments(p, axis, edge, wraps); } break; case ta_serif: { TA_Edge serif = (TA_Edge)arg1; TA_Edge base = serif->serif; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET + (lower_bound != NULL) + 2 * (upper_bound != NULL); *(p++) = HIGH(serif->first - segments); *(p++) = LOW(serif->first - segments); *(p++) = HIGH(base->first - segments); *(p++) = LOW(base->first - segments); if (lower_bound) { *(p++) = HIGH(lower_bound->first - segments); *(p++) = LOW(lower_bound->first - segments); } if (upper_bound) { *(p++) = HIGH(upper_bound->first - segments); *(p++) = LOW(upper_bound->first - segments); } p = TA_hints_recorder_handle_segments(p, axis, serif, wraps); } break; case ta_serif_anchor: case ta_serif_link2: { TA_Edge edge = (TA_Edge)arg1; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET + (lower_bound != NULL) + 2 * (upper_bound != NULL); *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); if (lower_bound) { *(p++) = HIGH(lower_bound->first - segments); *(p++) = LOW(lower_bound->first - segments); } if (upper_bound) { *(p++) = HIGH(upper_bound->first - segments); *(p++) = LOW(upper_bound->first - segments); } p = TA_hints_recorder_handle_segments(p, axis, edge, wraps); } break; case ta_serif_link1: { TA_Edge edge = (TA_Edge)arg1; TA_Edge before = arg2; TA_Edge after = arg3; *(p++) = 0; *(p++) = (FT_Byte)action + ACTION_OFFSET + (lower_bound != NULL) + 2 * (upper_bound != NULL); *(p++) = HIGH(before->first - segments); *(p++) = LOW(before->first - segments); *(p++) = HIGH(edge->first - segments); *(p++) = LOW(edge->first - segments); *(p++) = HIGH(after->first - segments); *(p++) = LOW(after->first - segments); if (lower_bound) { *(p++) = HIGH(lower_bound->first - segments); *(p++) = LOW(lower_bound->first - segments); } if (upper_bound) { *(p++) = HIGH(upper_bound->first - segments); *(p++) = LOW(upper_bound->first - segments); } p = TA_hints_recorder_handle_segments(p, axis, edge, wraps); } break; default: /* there are more cases in the enumeration */ /* which are handled with flags */ break; } recorder->hints_record.num_actions++; recorder->hints_record.buf = p; } static FT_Error TA_init_recorder(Recorder* recorder, SFNT* sfnt, FONT* font, GLYPH* glyph, TA_GlyphHints hints) { TA_AxisHints axis = &hints->axis[TA_DIMENSION_VERT]; TA_Point points = hints->points; TA_Point point_limit = points + hints->num_points; TA_Point point; TA_Segment segments = axis->segments; TA_Segment seg_limit = segments + axis->num_segments; TA_Segment seg; FT_UShort num_strong_points = 0; FT_UShort* wrap_around_segment; recorder->sfnt = sfnt; recorder->font = font; recorder->glyph = glyph; recorder->num_segments = axis->num_segments; recorder->ip_before_points = NULL; recorder->ip_after_points = NULL; recorder->ip_on_point_array = NULL; recorder->ip_between_point_array = NULL; recorder->num_stack_elements = 0; /* no need to clean up allocated arrays in case of error; */ /* this is handled later by `TA_free_recorder' */ recorder->num_wrap_around_segments = 0; for (seg = segments; seg < seg_limit; seg++) if (seg->first > seg->last) recorder->num_wrap_around_segments++; recorder->wrap_around_segments = (FT_UShort*)malloc(recorder->num_wrap_around_segments * sizeof (FT_UShort)); if (!recorder->wrap_around_segments) return FT_Err_Out_Of_Memory; wrap_around_segment = recorder->wrap_around_segments; for (seg = segments; seg < seg_limit; seg++) if (seg->first > seg->last) *(wrap_around_segment++) = seg - segments; /* get number of strong points */ for (point = points; point < point_limit; point++) { /* actually, we need to test `TA_FLAG_TOUCH_Y' also; */ /* however, this value isn't known yet */ /* (or rather, it can vary between different pixel sizes) */ if (point->flags & TA_FLAG_WEAK_INTERPOLATION) continue; num_strong_points++; } recorder->num_strong_points = num_strong_points; recorder->ip_before_points = (FT_UShort*)malloc(num_strong_points * sizeof (FT_UShort)); if (!recorder->ip_before_points) return FT_Err_Out_Of_Memory; recorder->ip_after_points = (FT_UShort*)malloc(num_strong_points * sizeof (FT_UShort)); if (!recorder->ip_after_points) return FT_Err_Out_Of_Memory; /* actually, we need `hints->num_edges' for the array sizes; */ /* however, this value isn't known yet */ /* (or rather, it can vary between different pixel sizes) */ recorder->ip_on_point_array = (FT_UShort*)malloc(axis->num_segments * num_strong_points * sizeof (FT_UShort)); if (!recorder->ip_on_point_array) return FT_Err_Out_Of_Memory; recorder->ip_between_point_array = (FT_UShort*)malloc(axis->num_segments * axis->num_segments * num_strong_points * sizeof (FT_UShort)); if (!recorder->ip_between_point_array) return FT_Err_Out_Of_Memory; return FT_Err_Ok; } static void TA_reset_recorder(Recorder* recorder, FT_Byte* bufp) { recorder->hints_record.buf = bufp; recorder->hints_record.num_actions = 0; } static void TA_rewind_recorder(Recorder* recorder, FT_Byte* bufp, FT_UInt size) { TA_reset_recorder(recorder, bufp); recorder->hints_record.size = size; /* We later check with MISSING (which expands to 0xFF bytes) */ memset(recorder->ip_before_points, 0xFF, recorder->num_strong_points * sizeof (FT_UShort)); memset(recorder->ip_after_points, 0xFF, recorder->num_strong_points * sizeof (FT_UShort)); memset(recorder->ip_on_point_array, 0xFF, recorder->num_segments * recorder->num_strong_points * sizeof (FT_UShort)); memset(recorder->ip_between_point_array, 0xFF, recorder->num_segments * recorder->num_segments * recorder->num_strong_points * sizeof (FT_UShort)); } static void TA_free_recorder(Recorder* recorder) { free(recorder->wrap_around_segments); free(recorder->ip_before_points); free(recorder->ip_after_points); free(recorder->ip_on_point_array); free(recorder->ip_between_point_array); } FT_Error TA_sfnt_build_glyph_instructions(SFNT* sfnt, FONT* font, FT_Long idx) { FT_Face face = sfnt->face; FT_Error error; FT_Byte* ins_buf; FT_UInt ins_len; FT_Byte* bufp; FT_Byte* p; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; /* `idx' is never negative */ GLYPH* glyph = &data->glyphs[idx]; TA_GlyphHints hints; FT_UInt num_action_hints_records = 0; FT_UInt num_point_hints_records = 0; Hints_Record* action_hints_records = NULL; Hints_Record* point_hints_records = NULL; Recorder recorder; FT_UShort num_stack_elements; FT_Bool optimize = 0; FT_Int32 load_flags; FT_UInt size; FT_Byte* pos[3]; #ifdef TA_DEBUG int _ta_debug_save; #endif /* XXX: right now, we abuse this flag to control */ /* the global behaviour of the auto-hinter */ load_flags = 1 << 29; /* vertical hinting only */ if (!font->pre_hinting) { if (font->hint_composites) load_flags |= FT_LOAD_NO_SCALE; else load_flags |= FT_LOAD_NO_RECURSE; } /* computing the segments is resolution independent, */ /* thus the pixel size in this call is arbitrary -- */ /* however, we avoid unnecessary debugging output */ /* if we use the lowest value of the hinting range */ error = FT_Set_Pixel_Sizes(face, font->hinting_range_min, font->hinting_range_min); if (error) return error; #ifdef TA_DEBUG /* temporarily disable some debugging output */ /* to avoid getting the information twice */ _ta_debug_save = _ta_debug; _ta_debug = 0; #endif ta_loader_register_hints_recorder(font->loader, NULL, NULL); error = ta_loader_load_glyph(font, face, (FT_UInt)idx, load_flags); #ifdef TA_DEBUG _ta_debug = _ta_debug_save; #endif if (error) return error; /* do nothing if we have an empty glyph */ if (!face->glyph->outline.n_contours) return FT_Err_Ok; hints = &font->loader->hints; /* do nothing if the setup delivered the `dflt' script only */ if (!hints->num_points) return FT_Err_Ok; /* we allocate a buffer which is certainly large enough */ /* to hold all of the created bytecode instructions; */ /* later on it gets reallocated to its real size */ ins_len = hints->num_points * 1000; ins_buf = (FT_Byte*)malloc(ins_len); if (!ins_buf) return FT_Err_Out_Of_Memory; /* initialize array with an invalid bytecode */ /* so that we can easily find the array length at reallocation time */ memset(ins_buf, INS_A0, ins_len); /* handle composite glyph */ if (font->loader->gloader->base.num_subglyphs) { bufp = TA_font_build_subglyph_shifter(font, ins_buf); if (!bufp) { error = FT_Err_Out_Of_Memory; goto Err; } goto Done1; } /* only scale the glyph if the `dflt' script has been used */ if (font->loader->metrics->script_class == &ta_dflt_script_class) { /* since `TA_init_recorder' hasn't been called yet, */ /* we manually initialize the `sfnt', `font', and `glyph' fields */ recorder.sfnt = sfnt; recorder.font = font; recorder.glyph = glyph; bufp = TA_sfnt_build_glyph_scaler(sfnt, &recorder, ins_buf); if (!bufp) { error = FT_Err_Out_Of_Memory; goto Err; } goto Done1; } error = TA_init_recorder(&recorder, sfnt, font, glyph, hints); if (error) goto Err; /* loop over a large range of pixel sizes */ /* to find hints records which get pushed onto the bytecode stack */ #ifdef DEBUGGING if (font->debug) { int num_chars, i; char buf[256]; (void)FT_Get_Glyph_Name(face, idx, buf, 256); num_chars = fprintf(stderr, "glyph %ld", idx); if (*buf) num_chars += fprintf(stderr, " (%s)", buf); fprintf(stderr, "\n"); for (i = 0; i < num_chars; i++) putc('=', stderr); fprintf(stderr, "\n\n"); } #endif /* we temporarily use `ins_buf' to record the current glyph hints */ ta_loader_register_hints_recorder(font->loader, TA_hints_recorder, (void*)&recorder); for (size = font->hinting_range_min; size <= font->hinting_range_max; size++) { #ifdef DEBUGGING int have_dumps = 0; #endif TA_rewind_recorder(&recorder, ins_buf, size); error = FT_Set_Pixel_Sizes(face, size, size); if (error) goto Err; #ifdef DEBUGGING if (font->debug) { int num_chars, i; num_chars = fprintf(stderr, "size %d\n", size); for (i = 0; i < num_chars - 1; i++) putc('-', stderr); fprintf(stderr, "\n\n"); } #endif /* calling `ta_loader_load_glyph' uses the */ /* `TA_hints_recorder' function as a callback, */ /* modifying `hints_record' */ error = ta_loader_load_glyph(font, face, idx, load_flags); if (error) goto Err; if (TA_hints_record_is_different(action_hints_records, num_action_hints_records, ins_buf, recorder.hints_record.buf)) { #ifdef DEBUGGING if (font->debug) { have_dumps = 1; ta_glyph_hints_dump_edges(_ta_debug_hints); ta_glyph_hints_dump_segments(_ta_debug_hints); ta_glyph_hints_dump_points(_ta_debug_hints); fprintf(stderr, "action hints record:\n"); if (ins_buf == recorder.hints_record.buf) fprintf(stderr, " (none)"); else { fprintf(stderr, " "); for (p = ins_buf; p < recorder.hints_record.buf; p += 2) fprintf(stderr, " %2d", *p * 256 + *(p + 1)); } fprintf(stderr, "\n"); } #endif error = TA_add_hints_record(&action_hints_records, &num_action_hints_records, ins_buf, recorder.hints_record); if (error) goto Err; } /* now handle point records */ TA_reset_recorder(&recorder, ins_buf); /* use the point hints data collected in `TA_hints_recorder' */ TA_build_point_hints(&recorder, hints); if (TA_hints_record_is_different(point_hints_records, num_point_hints_records, ins_buf, recorder.hints_record.buf)) { #ifdef DEBUGGING if (font->debug) { if (!have_dumps) { int num_chars, i; num_chars = fprintf(stderr, "size %d\n", size); for (i = 0; i < num_chars - 1; i++) putc('-', stderr); fprintf(stderr, "\n\n"); ta_glyph_hints_dump_edges(_ta_debug_hints); ta_glyph_hints_dump_segments(_ta_debug_hints); ta_glyph_hints_dump_points(_ta_debug_hints); } fprintf(stderr, "point hints record:\n"); if (ins_buf == recorder.hints_record.buf) fprintf(stderr, " (none)"); else { fprintf(stderr, " "); for (p = ins_buf; p < recorder.hints_record.buf; p += 2) fprintf(stderr, " %2d", *p * 256 + *(p + 1)); } fprintf(stderr, "\n\n"); } #endif error = TA_add_hints_record(&point_hints_records, &num_point_hints_records, ins_buf, recorder.hints_record); if (error) goto Err; } } if (num_action_hints_records == 1 && !action_hints_records[0].num_actions) { /* since we only have a single empty record we just scale the glyph */ bufp = TA_sfnt_build_glyph_scaler(sfnt, &recorder, ins_buf); if (!bufp) { error = FT_Err_Out_Of_Memory; goto Err; } /* clear the rest of the temporarily used part of `ins_buf' */ p = bufp; while (*p != INS_A0) *(p++) = INS_A0; goto Done; } /* if there is only a single record, */ /* we do a global optimization later on */ if (num_action_hints_records > 1) optimize = 1; /* store the hints records and handle stack depth */ pos[0] = ins_buf; bufp = TA_emit_hints_records(&recorder, point_hints_records, num_point_hints_records, ins_buf, optimize); num_stack_elements = recorder.num_stack_elements; recorder.num_stack_elements = 0; pos[1] = bufp; bufp = TA_emit_hints_records(&recorder, action_hints_records, num_action_hints_records, bufp, optimize); recorder.num_stack_elements += num_stack_elements; pos[2] = bufp; bufp = TA_sfnt_build_glyph_segments(sfnt, &recorder, bufp, optimize); if (!bufp) { error = FT_Err_Out_Of_Memory; goto Err; } /* XXX improve handling of NPUSHW */ if (num_action_hints_records == 1 && *(pos[0]) != NPUSHW && *(pos[1]) != NPUSHW && *(pos[2]) != NPUSHW) { /* * we optimize two common cases, replacing * * NPUSHB A ... NPUSHB B [... NPUSHB C] ... CALL * * with * * NPUSHB (A+B[+C]) ... CALL * * if possible */ FT_Byte sizes[3]; FT_Byte new_size1; FT_Byte new_size2; FT_UInt sum; FT_UInt i; FT_UInt pos_idx; /* the point hints records block can be missing */ if (pos[0] == pos[1]) { pos[1] = pos[2]; pos[2] = NULL; } /* there are at least two NPUSHB instructions */ /* (one of them directly at the start) */ sizes[0] = *(pos[0] + 1); sizes[1] = *(pos[1] + 1); sizes[2] = pos[2] ? *(pos[2] + 1) : 0; sum = sizes[0] + sizes[1] + sizes[2]; if (sum > 2 * 0xFF) goto Done2; /* nothing to do since we need three NPUSHB */ else if (!sizes[2] && (sum > 0xFF)) goto Done2; /* nothing to do since we need two NPUSHB */ if (sum > 0xFF) { /* reduce three NPUSHB to two */ new_size1 = 0xFF; new_size2 = sum - 0xFF; } else { /* reduce two or three NPUSHB to one */ new_size1 = sum; new_size2 = 0; } /* pack data */ p = ins_buf; bufp = ins_buf; pos_idx = 0; if (new_size1 <= 8) BCI(PUSHB_1 - 1 + new_size1); else { BCI(NPUSHB); BCI(new_size1); } for (i = 0; i < new_size1; i++) { if (p == pos[pos_idx]) { pos_idx++; p += 2; /* skip old NPUSHB */ } *(bufp++) = *(p++); } if (new_size2) { if (new_size2 <= 8) BCI(PUSHB_1 - 1 + new_size2); else { BCI(NPUSHB); BCI(new_size2); } for (i = 0; i < new_size2; i++) { if (p == pos[pos_idx]) { pos_idx++; p += 2; } *(bufp++) = *(p++); } } BCI(CALL); } Done2: /* clear the rest of the temporarily used part of `ins_buf' */ p = bufp; while (*p != INS_A0) *(p++) = INS_A0; Done: TA_free_hints_records(action_hints_records, num_action_hints_records); TA_free_hints_records(point_hints_records, num_point_hints_records); TA_free_recorder(&recorder); /* we are done, so reallocate the instruction array to its real size */ if (*bufp == INS_A0) { /* search backwards */ while (*bufp == INS_A0) bufp--; bufp++; } else { /* search forwards */ while (*bufp != INS_A0) bufp++; } Done1: ins_len = bufp - ins_buf; if (ins_len > sfnt->max_instructions) sfnt->max_instructions = ins_len; glyph->ins_buf = (FT_Byte*)realloc(ins_buf, ins_len); glyph->ins_len = ins_len; return FT_Err_Ok; Err: TA_free_hints_records(action_hints_records, num_action_hints_records); TA_free_hints_records(point_hints_records, num_point_hints_records); TA_free_recorder(&recorder); free(ins_buf); return error; } /* end of tabytecode.c */ ttfautohint-0.97/lib/tablue.c0000644000175000001440000001176112237364553013145 00000000000000/* This file has been generated by the Perl script `afblue.pl', */ /* using data from file `./tablue.dat'. */ /* tablue.c */ /* * Copyright (C) 2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afblue.c' (2013-Aug-28) from FreeType */ #include "tatypes.h" const char ta_blue_strings[] = { 'T', 'H', 'E', 'Z', 'O', 'C', 'Q', 'S', /* THEZOCQS */ '\0', 'H', 'E', 'Z', 'L', 'O', 'C', 'U', 'S', /* HEZLOCUS */ '\0', 'f', 'i', 'j', 'k', 'd', 'b', 'h', /* fijkdbh */ '\0', 'x', 'z', 'r', 'o', 'e', 's', 'c', /* xzroesc */ '\0', 'p', 'q', 'g', 'j', 'y', /* pqgjy */ '\0', '\xCE', '\x93', '\xCE', '\x92', '\xCE', '\x95', '\xCE', '\x96', '\xCE', '\x98', '\xCE', '\x9F', '\xCE', '\xA9', /* ΓΒΕΖΘΟΩ */ '\0', '\xCE', '\x92', '\xCE', '\x94', '\xCE', '\x96', '\xCE', '\x9E', '\xCE', '\x98', '\xCE', '\x9F', /* ΒΔΖΞΘΟ */ '\0', '\xCE', '\xB2', '\xCE', '\xB8', '\xCE', '\xB4', '\xCE', '\xB6', '\xCE', '\xBB', '\xCE', '\xBE', /* βθδζλξ */ '\0', '\xCE', '\xB1', '\xCE', '\xB5', '\xCE', '\xB9', '\xCE', '\xBF', '\xCF', '\x80', '\xCF', '\x83', '\xCF', '\x84', '\xCF', '\x89', /* αειοπστω */ '\0', '\xCE', '\xB2', '\xCE', '\xB3', '\xCE', '\xB7', '\xCE', '\xBC', '\xCF', '\x81', '\xCF', '\x86', '\xCF', '\x87', '\xCF', '\x88', /* βγημÏφχψ */ '\0', '\xD0', '\x91', '\xD0', '\x92', '\xD0', '\x95', '\xD0', '\x9F', '\xD0', '\x97', '\xD0', '\x9E', '\xD0', '\xA1', '\xD0', '\xAD', /* БВЕПЗОСЭ */ '\0', '\xD0', '\x91', '\xD0', '\x92', '\xD0', '\x95', '\xD0', '\xA8', '\xD0', '\x97', '\xD0', '\x9E', '\xD0', '\xA1', '\xD0', '\xAD', /* БВЕШЗОСЭ */ '\0', '\xD1', '\x85', '\xD0', '\xBF', '\xD0', '\xBD', '\xD1', '\x88', '\xD0', '\xB5', '\xD0', '\xB7', '\xD0', '\xBE', '\xD1', '\x81', /* Ñ…Ð¿Ð½ÑˆÐµÐ·Ð¾Ñ */ '\0', '\xD1', '\x80', '\xD1', '\x83', '\xD1', '\x84', /* руф */ '\0', '\xD7', '\x91', '\xD7', '\x93', '\xD7', '\x94', '\xD7', '\x97', '\xD7', '\x9A', '\xD7', '\x9B', '\xD7', '\x9D', '\xD7', '\xA1', /* בדהחךכ×ס */ '\0', '\xD7', '\x91', '\xD7', '\x98', '\xD7', '\x9B', '\xD7', '\x9D', '\xD7', '\xA1', '\xD7', '\xA6', /* בטכ×סצ */ '\0', '\xD7', '\xA7', '\xD7', '\x9A', '\xD7', '\x9F', '\xD7', '\xA3', '\xD7', '\xA5', /* קךןףץ */ '\0', }; /* stringsets are specific to scripts */ const TA_Blue_StringRec ta_blue_stringsets[] = { { TA_BLUE_STRING_LATIN_CAPITAL_TOP, TA_BLUE_PROPERTY_LATIN_TOP }, { TA_BLUE_STRING_LATIN_CAPITAL_BOTTOM, 0 }, { TA_BLUE_STRING_LATIN_SMALL_F_TOP, TA_BLUE_PROPERTY_LATIN_TOP }, { TA_BLUE_STRING_LATIN_SMALL, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_X_HEIGHT }, { TA_BLUE_STRING_LATIN_SMALL, 0 }, { TA_BLUE_STRING_LATIN_SMALL_DESCENDER, 0 }, { TA_BLUE_STRING_MAX, 0 }, { TA_BLUE_STRING_GREEK_CAPITAL_TOP, TA_BLUE_PROPERTY_LATIN_TOP }, { TA_BLUE_STRING_GREEK_CAPITAL_BOTTOM, 0 }, { TA_BLUE_STRING_GREEK_SMALL_BETA_TOP, TA_BLUE_PROPERTY_LATIN_TOP }, { TA_BLUE_STRING_GREEK_SMALL, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_X_HEIGHT }, { TA_BLUE_STRING_GREEK_SMALL, 0 }, { TA_BLUE_STRING_GREEK_SMALL_DESCENDER, 0 }, { TA_BLUE_STRING_MAX, 0 }, { TA_BLUE_STRING_CYRILLIC_CAPITAL_TOP, TA_BLUE_PROPERTY_LATIN_TOP }, { TA_BLUE_STRING_CYRILLIC_CAPITAL_BOTTOM, 0 }, { TA_BLUE_STRING_CYRILLIC_SMALL, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_X_HEIGHT }, { TA_BLUE_STRING_CYRILLIC_SMALL, 0 }, { TA_BLUE_STRING_CYRILLIC_SMALL_DESCENDER, 0 }, { TA_BLUE_STRING_MAX, 0 }, { TA_BLUE_STRING_HEBREW_TOP, TA_BLUE_PROPERTY_LATIN_TOP | TA_BLUE_PROPERTY_LATIN_LONG }, { TA_BLUE_STRING_HEBREW_BOTTOM, 0 }, { TA_BLUE_STRING_HEBREW_DESCENDER, 0 }, { TA_BLUE_STRING_MAX, 0 }, }; /* end of tablue.c */ ttfautohint-0.97/lib/tacvt.c0000644000175000001440000002064512235402147013001 00000000000000/* tacvt.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" static FT_Error TA_sfnt_compute_global_hints(SFNT* sfnt, FONT* font, FT_UInt script_idx) { FT_Error error; FT_Face face = sfnt->face; FT_UInt idx; FT_Int32 load_flags; error = FT_Select_Charmap(face, FT_ENCODING_UNICODE); if (error) { if (font->symbol) { error = FT_Select_Charmap(face, FT_ENCODING_MS_SYMBOL); if (error) return TA_Err_Missing_Symbol_CMap; } else return TA_Err_Missing_Unicode_CMap; } if (font->symbol) idx = 0; else { /* load standard character to trigger script initializations */ /* XXX make this configurable to use a different letter */ idx = FT_Get_Char_Index(face, ta_script_classes[script_idx]->standard_char); if (!idx) return TA_Err_Missing_Glyph; } load_flags = 1 << 29; /* vertical hinting only */ error = ta_loader_load_glyph(font, face, idx, load_flags); return error; } static FT_Error TA_table_build_cvt(FT_Byte** cvt, FT_ULong* cvt_len, SFNT* sfnt, FONT* font) { SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; TA_LatinAxis haxis; TA_LatinAxis vaxis; FT_UInt hwidth_count; FT_UInt vwidth_count; FT_UInt blue_count; FT_UInt i, j, i_max; FT_UInt buf_len; FT_UInt len; FT_Byte* buf; FT_Byte* bufp; FT_UInt cvt_offset; FT_Error error; /* checking multiple scripts doesn't make sense for symbol fonts */ i_max = font->symbol ? 1 : TA_SCRIPT_MAX; /* loop over all scripts and collect the relevant CVT data */ /* to compute the necessary array sizes and meta-information */ hwidth_count = 0; vwidth_count = 0; blue_count = 0; data->num_used_scripts = 0; for (i = 0; i < i_max; i++) { error = TA_sfnt_compute_global_hints(sfnt, font, i); if (error == TA_Err_Missing_Glyph) { TA_FaceGlobals globals = (TA_FaceGlobals)sfnt->face->autohint.data; FT_Byte* gscripts = globals->glyph_scripts; FT_Int nn; data->script_ids[i] = 0xFFFFU; /* remove all references to this script; */ /* otherwise blue zones are computed later on, which we don't want */ for (nn = 0; nn < globals->glyph_count; nn++) { if ((gscripts[nn] & ~TA_DIGIT) == i) { gscripts[nn] &= ~TA_SCRIPT_NONE; gscripts[nn] |= globals->font->fallback_script; } } continue; } if (error) return error; data->script_ids[i] = data->num_used_scripts++; if (font->loader->hints.metrics->script_class->script == TA_SCRIPT_DFLT) continue; else { /* XXX: generalize this to handle other metrics also */ haxis = &((TA_LatinMetrics)font->loader->hints.metrics)->axis[0]; vaxis = &((TA_LatinMetrics)font->loader->hints.metrics)->axis[1]; hwidth_count += haxis->width_count; vwidth_count += vaxis->width_count; /* there are two artificial blue zones at the end of the array */ /* that are not part of `vaxis->blue_count' */ blue_count += vaxis->blue_count + 2; } } /* exit if the font doesn't contain a single supported script */ if (!data->num_used_scripts) return TA_Err_Missing_Glyph; buf_len = cvtl_max_runtime /* runtime values 1 */ + data->num_used_scripts /* runtime values 2 (for scaling) */ + 2 * data->num_used_scripts /* runtime values 3 (blue data) */ + 2 * data->num_used_scripts /* vert. and horiz. std. widths */ + hwidth_count + vwidth_count + 2 * blue_count; /* round and flat blue zones */ buf_len <<= 1; /* we have 16bit values */ /* buffer length must be a multiple of four */ len = (buf_len + 3) & ~3; buf = (FT_Byte*)malloc(len); if (!buf) return FT_Err_Out_Of_Memory; /* pad end of buffer with zeros */ buf[len - 1] = 0x00; buf[len - 2] = 0x00; buf[len - 3] = 0x00; bufp = buf; /* * some CVT values are initialized (and modified) at runtime: * * (1) the `cvtl_xxx' values (see `tabytecode.h') * (2) a scaling value for each script * (3) offset and size of the vertical widths array * (needed by `bci_{smooth,strong}_stem_width') for each script */ for (i = 0; i < (cvtl_max_runtime + data->num_used_scripts + 2 * data->num_used_scripts) * 2; i++) *(bufp++) = 0; cvt_offset = bufp - buf; /* loop again over all scripts and copy CVT data */ for (i = 0; i < i_max; i++) { /* collect offsets */ data->cvt_offsets[i] = ((FT_UInt)(bufp - buf) - cvt_offset) >> 1; error = TA_sfnt_compute_global_hints(sfnt, font, i); if (error == TA_Err_Missing_Glyph) continue; if (error) return error; if (font->loader->hints.metrics->script_class->script == TA_SCRIPT_DFLT) { haxis = NULL; vaxis = NULL; hwidth_count = 0; vwidth_count = 0; blue_count = 0; } else { haxis = &((TA_LatinMetrics)font->loader->hints.metrics)->axis[0]; vaxis = &((TA_LatinMetrics)font->loader->hints.metrics)->axis[1]; hwidth_count = haxis->width_count; vwidth_count = vaxis->width_count; blue_count = vaxis->blue_count + 2; /* with artificial blue zones */ } /* horizontal standard width */ if (hwidth_count > 0) { *(bufp++) = HIGH(haxis->widths[0].org); *(bufp++) = LOW(haxis->widths[0].org); } else { *(bufp++) = 0; *(bufp++) = 50; } for (j = 0; j < hwidth_count; j++) { if (haxis->widths[j].org > 0xFFFF) goto Err; *(bufp++) = HIGH(haxis->widths[j].org); *(bufp++) = LOW(haxis->widths[j].org); } /* vertical standard width */ if (vwidth_count > 0) { *(bufp++) = HIGH(vaxis->widths[0].org); *(bufp++) = LOW(vaxis->widths[0].org); } else { *(bufp++) = 0; *(bufp++) = 50; } for (j = 0; j < vwidth_count; j++) { if (vaxis->widths[j].org > 0xFFFF) goto Err; *(bufp++) = HIGH(vaxis->widths[j].org); *(bufp++) = LOW(vaxis->widths[j].org); } data->cvt_blue_adjustment_offsets[i] = 0xFFFFU; for (j = 0; j < blue_count; j++) { if (vaxis->blues[j].ref.org > 0xFFFF) goto Err; *(bufp++) = HIGH(vaxis->blues[j].ref.org); *(bufp++) = LOW(vaxis->blues[j].ref.org); } for (j = 0; j < blue_count; j++) { if (vaxis->blues[j].shoot.org > 0xFFFF) goto Err; *(bufp++) = HIGH(vaxis->blues[j].shoot.org); *(bufp++) = LOW(vaxis->blues[j].shoot.org); if (vaxis->blues[j].flags & TA_LATIN_BLUE_ADJUSTMENT) data->cvt_blue_adjustment_offsets[i] = j; } data->cvt_horz_width_sizes[i] = hwidth_count; data->cvt_vert_width_sizes[i] = vwidth_count; data->cvt_blue_zone_sizes[i] = blue_count; } *cvt = buf; *cvt_len = buf_len; return FT_Err_Ok; Err: free(buf); return TA_Err_Hinter_Overflow; } FT_Error TA_sfnt_build_cvt_table(SFNT* sfnt, FONT* font) { FT_Error error; SFNT_Table* glyf_table = &font->tables[sfnt->glyf_idx]; glyf_Data* data = (glyf_Data*)glyf_table->data; FT_Byte* cvt_buf; FT_ULong cvt_len; error = TA_sfnt_add_table_info(sfnt); if (error) goto Exit; /* `glyf', `cvt', `fpgm', and `prep' are always used in parallel */ if (glyf_table->processed) { sfnt->table_infos[sfnt->num_table_infos - 1] = data->cvt_idx; goto Exit; } error = TA_table_build_cvt(&cvt_buf, &cvt_len, sfnt, font); if (error) goto Exit; /* in case of success, `cvt_buf' gets linked */ /* and is eventually freed in `TA_font_unload' */ error = TA_font_add_table(font, &sfnt->table_infos[sfnt->num_table_infos - 1], TTAG_cvt, cvt_len, cvt_buf); if (error) free(cvt_buf); else data->cvt_idx = sfnt->table_infos[sfnt->num_table_infos - 1]; Exit: return error; } /* end of tacvt.c */ ttfautohint-0.97/lib/ta.h0000644000175000001440000002200312235376142012264 00000000000000/* ta.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #ifndef __TA_H__ #define __TA_H__ #include #include #include FT_FREETYPE_H #include FT_TRUETYPE_TABLES_H #include FT_TRUETYPE_TAGS_H #include "taloader.h" #include "taglobal.h" #include "tadummy.h" #include "talatin.h" #include #include #define TTFAUTOHINT_GLYPH ".ttfautohint" #define TTFAUTOHINT_GLYPH_FIRST_BYTE "\x0C" /* first byte is string length */ #define TTFAUTOHINT_GLYPH_LEN 13 /* these macros convert 16bit and 32bit numbers into single bytes */ /* using the byte order needed within SFNT files */ #define HIGH(x) (FT_Byte)(((x) & 0xFF00) >> 8) #define LOW(x) ((x) & 0x00FF) #define BYTE1(x) (FT_Byte)(((x) & 0xFF000000UL) >> 24); #define BYTE2(x) (FT_Byte)(((x) & 0x00FF0000UL) >> 16); #define BYTE3(x) (FT_Byte)(((x) & 0x0000FF00UL) >> 8); #define BYTE4(x) ((x) & 0x000000FFUL); /* the length of a dummy `DSIG' table */ #define DSIG_LEN 8 /* the length of our `gasp' table */ #define GASP_LEN 8 /* an empty slot in the table info array */ #define MISSING (FT_ULong)~0 /* the offset to the loca table format in the `head' table */ #define LOCA_FORMAT_OFFSET 51 /* various offsets within the `maxp' table */ #define MAXP_NUM_GLYPHS 4 #define MAXP_MAX_COMPOSITE_POINTS 10 #define MAXP_MAX_COMPOSITE_CONTOURS 12 #define MAXP_MAX_ZONES_OFFSET 14 #define MAXP_MAX_TWILIGHT_POINTS_OFFSET 16 #define MAXP_MAX_STORAGE_OFFSET 18 #define MAXP_MAX_FUNCTION_DEFS_OFFSET 20 #define MAXP_MAX_INSTRUCTION_DEFS_OFFSET 22 #define MAXP_MAX_STACK_ELEMENTS_OFFSET 24 #define MAXP_MAX_INSTRUCTIONS_OFFSET 26 #define MAXP_MAX_COMPONENTS_OFFSET 28 #define MAXP_LEN 32 /* the offset of the type flags field in the `OS/2' table */ #define OS2_FSTYPE_OFFSET 8 /* flags in composite glyph records */ #define ARGS_ARE_WORDS 0x0001 #define ARGS_ARE_XY_VALUES 0x0002 #define WE_HAVE_A_SCALE 0x0008 #define MORE_COMPONENTS 0x0020 #define WE_HAVE_AN_XY_SCALE 0x0040 #define WE_HAVE_A_2X2 0x0080 #define WE_HAVE_INSTR 0x0100 /* flags in simple glyph records */ #define ON_CURVE 0x01 #define X_SHORT_VECTOR 0x02 #define Y_SHORT_VECTOR 0x04 #define REPEAT 0x08 #define SAME_X 0x10 #define SAME_Y 0x20 /* a single glyph */ typedef struct GLYPH_ { FT_ULong len1; /* number of bytes before instruction related data */ FT_ULong len2; /* number of bytes after instruction related data; */ /* if zero, this indicates a composite glyph */ FT_Byte* buf; /* extracted glyph data (without instruction related data) */ FT_ULong flags_offset; /* offset to last flag in a composite glyph */ FT_ULong ins_len; /* number of new instructions */ FT_Byte* ins_buf; /* new instruction data */ FT_Short num_contours; /* >= 0 for simple glyphs */ FT_UShort num_points; /* number of points in a simple glyph */ FT_UShort num_components; FT_UShort* components; /* the subglyph indices of a composite glyph */ FT_UShort num_pointsums; FT_UShort* pointsums; /* the pointsums of all composite elements */ /* (after walking recursively over all subglyphs) */ FT_UShort num_composite_contours; /* after recursion */ } GLYPH; /* a representation of the data in the `glyf' table */ typedef struct glyf_Data_ { FT_UShort num_glyphs; GLYPH* glyphs; /* this index gives the `master' globals for a `glyf' table; */ /* see function `TA_sfnt_handle_coverage' */ TA_FaceGlobals master_globals; /* if a `glyf' table gets used in more than one subfont, */ /* so do `cvt', `fpgm', and `prep' tables: */ /* these four tables are always handled in parallel */ FT_ULong cvt_idx; FT_ULong fpgm_idx; FT_ULong prep_idx; /* scripts present in a font get a running number */ FT_UInt script_ids[TA_SCRIPT_MAX]; FT_UInt num_used_scripts; /* we have separate CVT data for each script */ FT_UInt cvt_offsets[TA_SCRIPT_MAX]; FT_UInt cvt_horz_width_sizes[TA_SCRIPT_MAX]; FT_UInt cvt_vert_width_sizes[TA_SCRIPT_MAX]; FT_UInt cvt_blue_zone_sizes[TA_SCRIPT_MAX]; FT_UInt cvt_blue_adjustment_offsets[TA_SCRIPT_MAX]; } glyf_Data; /* an SFNT table */ typedef struct SFNT_Table_ { FT_ULong tag; FT_ULong len; FT_Byte* buf; /* the table data */ FT_ULong offset; /* from beginning of file */ FT_ULong checksum; void* data; /* used e.g. for `glyf' table data */ FT_Bool processed; } SFNT_Table; /* we use indices into the SFNT table array to */ /* represent table info records of the TTF header */ typedef FT_ULong SFNT_Table_Info; /* this structure is used to model a TTF or a subfont within a TTC */ typedef struct SFNT_ { FT_Face face; SFNT_Table_Info* table_infos; FT_ULong num_table_infos; /* various SFNT table indices */ FT_ULong glyf_idx; FT_ULong loca_idx; FT_ULong head_idx; FT_ULong hmtx_idx; FT_ULong maxp_idx; FT_ULong name_idx; FT_ULong post_idx; FT_ULong OS2_idx; FT_ULong GPOS_idx; /* values necessary to update the `maxp' table */ FT_UShort max_composite_points; FT_UShort max_composite_contours; FT_UShort max_storage; FT_UShort max_stack_elements; FT_UShort max_twilight_points; FT_UShort max_instructions; FT_UShort max_components; } SFNT; /* our font object */ struct FONT_ { FT_Library lib; FT_Byte* in_buf; size_t in_len; FT_Byte* out_buf; size_t out_len; SFNT* sfnts; FT_Long num_sfnts; SFNT_Table* tables; FT_ULong num_tables; FT_Bool have_DSIG; /* we have a single `gasp' table for all subfonts */ FT_ULong gasp_idx; TA_LoaderRec loader[1]; /* the interface to the autohinter */ /* configuration options */ TA_Progress_Func progress; void* progress_data; TA_Info_Func info; void* info_data; FT_UInt hinting_range_min; FT_UInt hinting_range_max; FT_UInt hinting_limit; FT_UInt increase_x_height; number_range* x_height_snapping_exceptions; FT_Bool gray_strong_stem_width; FT_Bool gdi_cleartype_strong_stem_width; FT_Bool dw_cleartype_strong_stem_width; FT_Bool windows_compatibility; FT_Bool pre_hinting; FT_Bool hint_composites; FT_Bool ignore_restrictions; TA_Script fallback_script; FT_Bool symbol; FT_Bool dehint; FT_Bool debug; }; #include "tatables.h" #include "tabytecode.h" const char* TA_get_error_message(FT_Error error); void TA_get_current_time(FT_ULong* high, FT_ULong* low); FT_Byte* TA_build_push(FT_Byte* bufp, FT_UInt* args, FT_UInt num_args, FT_Bool need_words, FT_Bool optimize); FT_Error TA_font_init(FONT* font); void TA_font_unload(FONT* font, const char* in_buf, char** out_bufp); FT_Error TA_font_file_read(FONT* font, FILE* in_file); FT_Error TA_font_file_write(FONT* font, FILE* out_file); FT_Error TA_sfnt_build_glyph_instructions(SFNT* sfnt, FONT* font, FT_Long idx); FT_Error TA_sfnt_split_into_SFNT_tables(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_build_cvt_table(SFNT* sfnt, FONT* font); FT_Error TA_table_build_DSIG(FT_Byte** DSIG); FT_Error TA_sfnt_build_fpgm_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_build_gasp_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_split_glyf_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_build_glyf_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_create_glyf_data(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_handle_coverage(SFNT* sfnt, FONT* font); FT_Bool TA_sfnt_adjust_master_coverage(SFNT* sfnt, FONT* font); #if 0 void TA_sfnt_copy_master_coverage(SFNT* sfnt, FONT* font); #endif FT_Error TA_sfnt_update_GPOS_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_update_hmtx_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_build_loca_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_update_maxp_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_update_post_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_update_name_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_build_prep_table(SFNT* sfnt, FONT* font); FT_Error TA_sfnt_build_TTF_header(SFNT* sfnt, FONT* font, FT_Byte** header_buf, FT_ULong* header_len, FT_Int do_complete); FT_Error TA_font_build_TTF(FONT* font); FT_Error TA_font_build_TTC(FONT* font); #endif /* __TA_H__ */ /* end of ta.h */ ttfautohint-0.97/lib/tattf.c0000644000175000001440000001466612076552172013017 00000000000000/* tattf.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ #include "ta.h" /* If `do_complete' is 0, only return `header_len'. */ FT_Error TA_sfnt_build_TTF_header(SFNT* sfnt, FONT* font, FT_Byte** header_buf, FT_ULong* header_len, FT_Int do_complete) { SFNT_Table* tables = font->tables; SFNT_Table_Info* table_infos = sfnt->table_infos; FT_ULong num_table_infos = sfnt->num_table_infos; FT_Byte* buf; FT_ULong len; FT_Byte* table_record; FT_Byte* head_buf = NULL; /* pointer to `head' table */ FT_ULong head_checksum; /* checksum in `head' table */ FT_ULong num_tables_in_header; FT_ULong i; num_tables_in_header = 0; for (i = 0; i < num_table_infos; i++) { /* ignore empty tables */ if (table_infos[i] != MISSING) num_tables_in_header++; } len = 12 + 16 * num_tables_in_header; if (!do_complete) { *header_len = len; return TA_Err_Ok; } buf = (FT_Byte*)malloc(len); if (!buf) return FT_Err_Out_Of_Memory; /* SFNT version */ buf[0] = 0x00; buf[1] = 0x01; buf[2] = 0x00; buf[3] = 0x00; /* number of tables */ buf[4] = HIGH(num_tables_in_header); buf[5] = LOW(num_tables_in_header); /* auxiliary data */ { FT_ULong search_range, entry_selector, range_shift; FT_ULong i, j; for (i = 1, j = 2; j <= num_tables_in_header; i++, j <<= 1) ; entry_selector = i - 1; search_range = 0x10 << entry_selector; range_shift = (num_tables_in_header << 4) - search_range; buf[6] = HIGH(search_range); buf[7] = LOW(search_range); buf[8] = HIGH(entry_selector); buf[9] = LOW(entry_selector); buf[10] = HIGH(range_shift); buf[11] = LOW(range_shift); } /* location of the first table info record */ table_record = &buf[12]; head_checksum = 0; /* loop over all tables */ for (i = 0; i < num_table_infos; i++) { SFNT_Table_Info table_info = table_infos[i]; SFNT_Table* table; /* ignore empty slots */ if (table_info == MISSING) continue; table = &tables[table_info]; if (table->tag == TTAG_head) { FT_ULong date_high; FT_ULong date_low; /* we always reach this IF clause since FreeType would */ /* have aborted already if the `head' table were missing */ head_buf = table->buf; /* reset checksum in `head' table for recalculation */ head_buf[8] = 0x00; head_buf[9] = 0x00; head_buf[10] = 0x00; head_buf[11] = 0x00; /* update modification time */ TA_get_current_time(&date_high, &date_low); head_buf[28] = BYTE1(date_high); head_buf[29] = BYTE2(date_high); head_buf[30] = BYTE3(date_high); head_buf[31] = BYTE4(date_high); head_buf[32] = BYTE1(date_low); head_buf[33] = BYTE2(date_low); head_buf[34] = BYTE3(date_low); head_buf[35] = BYTE4(date_low); table->checksum = TA_table_compute_checksum(table->buf, table->len); } head_checksum += table->checksum; table_record[0] = BYTE1(table->tag); table_record[1] = BYTE2(table->tag); table_record[2] = BYTE3(table->tag); table_record[3] = BYTE4(table->tag); table_record[4] = BYTE1(table->checksum); table_record[5] = BYTE2(table->checksum); table_record[6] = BYTE3(table->checksum); table_record[7] = BYTE4(table->checksum); table_record[8] = BYTE1(table->offset); table_record[9] = BYTE2(table->offset); table_record[10] = BYTE3(table->offset); table_record[11] = BYTE4(table->offset); table_record[12] = BYTE1(table->len); table_record[13] = BYTE2(table->len); table_record[14] = BYTE3(table->len); table_record[15] = BYTE4(table->len); table_record += 16; } /* the font header is complete; compute `head' checksum */ head_checksum += TA_table_compute_checksum(buf, len); head_checksum = 0xB1B0AFBAUL - head_checksum; /* store checksum in `head' table; */ head_buf[8] = BYTE1(head_checksum); head_buf[9] = BYTE2(head_checksum); head_buf[10] = BYTE3(head_checksum); head_buf[11] = BYTE4(head_checksum); *header_buf = buf; *header_len = len; return TA_Err_Ok; } FT_Error TA_font_build_TTF(FONT* font) { SFNT* sfnt = &font->sfnts[0]; SFNT_Table* tables; FT_ULong num_tables; FT_ULong SFNT_offset; FT_Byte* DSIG_buf; FT_Byte* header_buf; FT_ULong header_len; FT_ULong i; FT_Error error; /* replace an existing `DSIG' table with a dummy */ if (font->have_DSIG) { error = TA_sfnt_add_table_info(sfnt); if (error) return error; error = TA_table_build_DSIG(&DSIG_buf); if (error) return error; /* in case of success, `DSIG_buf' gets linked */ /* and is eventually freed in `TA_font_unload' */ error = TA_font_add_table(font, &sfnt->table_infos[sfnt->num_table_infos - 1], TTAG_DSIG, DSIG_LEN, DSIG_buf); if (error) { free(DSIG_buf); return error; } } TA_sfnt_sort_table_info(sfnt, font); /* the first SFNT table immediately follows the header */ (void)TA_sfnt_build_TTF_header(sfnt, font, NULL, &SFNT_offset, 0); TA_font_compute_table_offsets(font, SFNT_offset); error = TA_sfnt_build_TTF_header(sfnt, font, &header_buf, &header_len, 1); if (error) return error; /* build font */ tables = font->tables; num_tables = font->num_tables; /* get font length from last SFNT table array element */ font->out_len = tables[num_tables - 1].offset + ((tables[num_tables - 1].len + 3) & ~3); font->out_buf = (FT_Byte*)malloc(font->out_len); if (!font->out_buf) { error = FT_Err_Out_Of_Memory; goto Err; } memcpy(font->out_buf, header_buf, header_len); for (i = 0; i < num_tables; i++) { SFNT_Table* table = &tables[i]; /* buffer length is a multiple of 4 */ memcpy(font->out_buf + table->offset, table->buf, (table->len + 3) & ~3); } error = TA_Err_Ok; Err: free(header_buf); return error; } /* end of tattf.c */ ttfautohint-0.97/lib/tahints.h0000644000175000001440000003622312177703740013346 00000000000000/* tahints.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afhints.h' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TAHINTS_H__ #define __TAHINTS_H__ #include "tatypes.h" #define xxTA_SORT_SEGMENTS /* the definition of outline glyph hints; these are shared */ /* by all script analysis routines (until now) */ typedef enum TA_Dimension_ { TA_DIMENSION_HORZ = 0, /* x coordinates, i.e. vert. segments & edges */ TA_DIMENSION_VERT = 1, /* y coordinates, i.e. horz. segments & edges */ TA_DIMENSION_MAX /* do not remove */ } TA_Dimension; /* hint directions -- the values are computed so that two vectors */ /* are in opposite directions iff `dir1 + dir2 == 0' */ typedef enum TA_Direction_ { TA_DIR_NONE = 4, TA_DIR_RIGHT = 1, TA_DIR_LEFT= -1, TA_DIR_UP = 2, TA_DIR_DOWN = -2 } TA_Direction; /* * The following explanations are mostly taken from the article * * Real-Time Grid Fitting of Typographic Outlines * * by David Turner and Werner Lemberg * * http://www.tug.org/TUGboat/Articles/tb24-3/lemberg.pdf * * with appropriate updates. * * * Segments * * `ta_{cjk,latin,...}_hints_compute_segments' are the functions to * find segments in an outline. * * A segment is a series of consecutive points that are approximately * aligned along a coordinate axis. The analysis to do so is specific * to a writing system. * * A segment must have at least two points, except in the case of * `fake' segments that are generated to hint metrics appropriately, * and which consist of a single point. * * * Edges * * `ta_{cjk,latin,...}_hints_compute_edges' are the functions to find * edges. * * As soon as segments are defined, the auto-hinter groups them into * edges. An edge corresponds to a single position on the main * dimension that collects one or more segments (allowing for a small * threshold). * * As an example, the `latin' writing system first tries to grid-fit * edges, then to align segments on the edges unless it detects that * they form a serif. * * * A H * | | * | | * | | * | | * C | | F * +------<-----+ +-----<------+ * | B G | * | | * | | * +--------------->------------------+ * D E * * * Stems * * Stems are detected by `ta_{cjk,latin,...}_hint_edges'. * * Segments need to be `linked' to other ones in order to detect stems. * A stem is made of two segments that face each other in opposite * directions and that are sufficiently close to each other. Using * vocabulary from the TrueType specification, stem segments form a * `black distance'. * * In the above ASCII drawing, the horizontal segments are BC, DE, and * FG; the vertical segments are AB, CD, EF, and GH. * * Each segment has at most one `best' candidate to form a black * distance, or no candidate at all. Notice that two distinct segments * can have the same candidate, which frequently means a serif. * * A stem is recognized by the following condition: * * best segment_1 = segment_2 && best segment_2 = segment_1 * * The best candidate is stored in field `link' in structure * `TA_Segment'. * * In the above ASCII drawing, the best candidate for both AB and CD is * GH, while the best candidate for GH is AB. Similarly, the best * candidate for EF and GH is AB, while the best candidate for AB is * GH. * * The detection and handling of stems is dependent on the writing * system. * * * Serifs * * Serifs are detected by `ta_{cjk,latin,...}_hint_edges'. * * In comparison to a stem, a serif (as handled by the auto-hinter * module which takes care of the `latin' writing system) has * * best segment_1 = segment_2 && best segment_2 != segment_1 * * where segment_1 corresponds to the serif segment (CD and EF in the * above ASCII drawing). * * The best candidate is stored in field `serif' in structure * `TA_Segment' (and `link' is set to NULL). * * * Touched points * * A point is called `touched' if it has been processed somehow by the * auto-hinter. It basically means that it shouldn't be moved again * (or moved only under certain constraints to preserve the already * applied processing). * * * Flat and round segments * * Segments are `round' or `flat', depending on the series of points * that define them. A segment is round if the next and previous point * of an extremum (which can be either a single point or sequence of * points) are both conic or cubic control points. Otherwise, a * segment with an extremum is flat. * * * Strong Points * * Experience has shown that points which are not part of an edge need * to be interpolated linearly between their two closest edges, even if * these are not part of the contour of those particular points. * Typical candidates for this are * * - angle points (i.e., points where the `in' and `out' direction * differ greatly) * * - inflection points (i.e., where the `in' and `out' angles are the * same, but the curvature changes sign) [currently, such points * aren't handled in the auto-hinter] * * `ta_glyph_hints_align_strong_points' is the function which takes * care of such situations; it is equivalent to the TrueType `IP' * hinting instruction. * * * Weak Points * * Other points in the outline must be interpolated using the * coordinates of their previous and next unfitted contour neighbours. * These are called `weak points' and are touched by the function * `ta_glyph_hints_align_weak_points', equivalent to the TrueType `IUP' * hinting instruction. Typical candidates are control points and * points on the contour without a major direction. * * The major effect is to reduce possible distortion caused by * alignment of edges and strong points, thus weak points are processed * after strong points. */ /* point hint flags */ #define TA_FLAG_NONE 0 /* point type flags */ #define TA_FLAG_CONIC (1 << 0) #define TA_FLAG_CUBIC (1 << 1) #define TA_FLAG_CONTROL (TA_FLAG_CONIC | TA_FLAG_CUBIC) /* point extremum flags */ #define TA_FLAG_EXTREMA_X (1 << 2) #define TA_FLAG_EXTREMA_Y (1 << 3) /* point roundness flags */ #define TA_FLAG_ROUND_X (1 << 4) #define TA_FLAG_ROUND_Y (1 << 5) /* point touch flags */ #define TA_FLAG_TOUCH_X (1 << 6) #define TA_FLAG_TOUCH_Y (1 << 7) /* candidates for weak interpolation have this flag set */ #define TA_FLAG_WEAK_INTERPOLATION (1 << 8) /* all inflection points in the outline have this flag set */ #define TA_FLAG_INFLECTION (1 << 9) /* the current point is very near to another one */ #define TA_FLAG_NEAR (1 << 10) /* edge hint flags */ #define TA_EDGE_NORMAL 0 #define TA_EDGE_ROUND (1 << 0) #define TA_EDGE_SERIF (1 << 1) #define TA_EDGE_DONE (1 << 2) typedef struct TA_PointRec_* TA_Point; typedef struct TA_SegmentRec_* TA_Segment; typedef struct TA_EdgeRec_* TA_Edge; typedef struct TA_PointRec_ { FT_UShort flags; /* point flags used by hinter */ FT_Char in_dir; /* direction of inwards vector */ FT_Char out_dir; /* direction of outwards vector */ FT_Pos ox, oy; /* original, scaled position */ FT_Short fx, fy; /* original, unscaled position (in font units) */ FT_Pos x, y; /* current position */ FT_Pos u, v; /* current (x,y) or (y,x) depending on context */ TA_Point next; /* next point in contour */ TA_Point prev; /* previous point in contour */ } TA_PointRec; typedef struct TA_SegmentRec_ { FT_Byte flags; /* edge/segment flags for this segment */ FT_Char dir; /* segment direction */ FT_Short pos; /* position of segment */ FT_Short min_coord; /* minimum coordinate of segment */ FT_Short max_coord; /* maximum coordinate of segment */ FT_Short height; /* the hinted segment height */ TA_Edge edge; /* the segment's parent edge */ TA_Segment edge_next; /* link to next segment in parent edge */ TA_Segment link; /* (stem) link segment */ TA_Segment serif; /* primary segment for serifs */ FT_Pos num_linked; /* number of linked segments */ FT_Pos score; /* used during stem matching */ FT_Pos len; /* used during stem matching */ TA_Point first; /* first point in edge segment */ TA_Point last; /* last point in edge segment */ } TA_SegmentRec; typedef struct TA_EdgeRec_ { FT_Short fpos; /* original, unscaled position (in font units) */ FT_Pos opos; /* original, scaled position */ FT_Pos pos; /* current position */ FT_Byte flags; /* edge flags */ FT_Char dir; /* edge direction */ FT_Fixed scale; /* used to speed up interpolation between edges */ TA_Width blue_edge; /* non-NULL if this is a blue edge */ FT_UInt best_blue_idx; /* for the hinting recorder callback */ FT_Bool best_blue_is_shoot; /* for the hinting recorder callback */ TA_Edge link; /* link edge */ TA_Edge serif; /* primary edge for serifs */ FT_Short num_linked; /* number of linked edges */ FT_Int score; /* used during stem matching */ TA_Segment first; /* first segment in edge */ TA_Segment last; /* last segment in edge */ } TA_EdgeRec; typedef struct TA_AxisHintsRec_ { FT_Int num_segments; /* number of used segments */ FT_Int max_segments; /* number of allocated segments */ TA_Segment segments; /* segments array */ #ifdef TA_SORT_SEGMENTS FT_Int mid_segments; #endif FT_Int num_edges; /* number of used edges */ FT_Int max_edges; /* number of allocated edges */ TA_Edge edges; /* edges array */ TA_Direction major_dir; /* either vertical or horizontal */ } TA_AxisHintsRec, *TA_AxisHints; typedef enum TA_Action_ { /* point actions */ ta_ip_before, ta_ip_after, ta_ip_on, ta_ip_between, /* edge actions */ ta_blue, ta_blue_anchor, ta_anchor, ta_anchor_serif, ta_anchor_round, ta_anchor_round_serif, ta_adjust, ta_adjust_serif, ta_adjust_round, ta_adjust_round_serif, ta_adjust_bound, ta_adjust_bound_serif, ta_adjust_bound_round, ta_adjust_bound_round_serif, ta_link, ta_link_serif, ta_link_round, ta_link_round_serif, ta_stem, ta_stem_serif, ta_stem_round, ta_stem_round_serif, ta_stem_bound, ta_stem_bound_serif, ta_stem_bound_round, ta_stem_bound_round_serif, ta_serif, ta_serif_lower_bound, ta_serif_upper_bound, ta_serif_upper_lower_bound, ta_serif_anchor, ta_serif_anchor_lower_bound, ta_serif_anchor_upper_bound, ta_serif_anchor_upper_lower_bound, ta_serif_link1, ta_serif_link1_lower_bound, ta_serif_link1_upper_bound, ta_serif_link1_upper_lower_bound, ta_serif_link2, ta_serif_link2_lower_bound, ta_serif_link2_upper_bound, ta_serif_link2_upper_lower_bound, ta_bound } TA_Action; typedef void (*TA_Hints_Recorder)(TA_Action action, TA_GlyphHints hints, TA_Dimension dim, void* arg1, /* TA_Point or TA_Edge */ TA_Edge arg2, TA_Edge arg3, TA_Edge lower_bound, TA_Edge upper_bound); typedef struct TA_GlyphHintsRec_ { FT_Fixed x_scale; FT_Pos x_delta; FT_Fixed y_scale; FT_Pos y_delta; FT_Int max_points; /* number of allocated points */ FT_Int num_points; /* number of used points */ TA_Point points; /* points array */ FT_Int max_contours; /* number of allocated contours */ FT_Int num_contours; /* number of used contours */ TA_Point* contours; /* contours array */ TA_AxisHintsRec axis[TA_DIMENSION_MAX]; FT_UInt32 scaler_flags; /* copy of scaler flags */ FT_UInt32 other_flags; /* free for script-specific implementations */ TA_ScriptMetrics metrics; FT_Pos xmin_delta; /* used for warping */ FT_Pos xmax_delta; TA_Hints_Recorder recorder; void* user; } TA_GlyphHintsRec; #define TA_HINTS_TEST_SCALER(h, f) \ ((h)->scaler_flags & (f)) #define TA_HINTS_TEST_OTHER(h, f) \ ((h)->other_flags & (f)) #ifdef TA_DEBUG #define TA_HINTS_DO_HORIZONTAL(h) \ (!_ta_debug_disable_horz_hints \ && !TA_HINTS_TEST_SCALER(h, TA_SCALER_FLAG_NO_HORIZONTAL)) #define TA_HINTS_DO_VERTICAL(h) \ (!_ta_debug_disable_vert_hints \ && !TA_HINTS_TEST_SCALER(h, TA_SCALER_FLAG_NO_VERTICAL)) #define TA_HINTS_DO_ADVANCE(h) \ !TA_HINTS_TEST_SCALER(h, TA_SCALER_FLAG_NO_ADVANCE) #define TA_HINTS_DO_BLUES(h) \ (!_ta_debug_disable_blue_hints) #else /* !TA_DEBUG */ #define TA_HINTS_DO_HORIZONTAL(h) \ !TA_HINTS_TEST_SCALER(h, TA_SCALER_FLAG_NO_HORIZONTAL) #define TA_HINTS_DO_VERTICAL(h) \ !TA_HINTS_TEST_SCALER(h, TA_SCALER_FLAG_NO_VERTICAL) #define TA_HINTS_DO_ADVANCE(h) \ !TA_HINTS_TEST_SCALER(h, TA_SCALER_FLAG_NO_ADVANCE) #define TA_HINTS_DO_BLUES(h) \ 1 #endif /* !TA_DEBUG */ TA_Direction ta_direction_compute(FT_Pos dx, FT_Pos dy); FT_Error ta_axis_hints_new_segment(TA_AxisHints axis, TA_Segment* asegment); FT_Error ta_axis_hints_new_edge(TA_AxisHints axis, FT_Int fpos, TA_Direction dir, TA_Edge* edge); #ifdef TA_DEBUG void ta_glyph_hints_dump_points(TA_GlyphHints hints); void ta_glyph_hints_dump_segments(TA_GlyphHints hints); void ta_glyph_hints_dump_edges(TA_GlyphHints hints); #endif void ta_glyph_hints_init(TA_GlyphHints hints); void ta_glyph_hints_rescale(TA_GlyphHints hints, TA_ScriptMetrics metrics); FT_Error ta_glyph_hints_reload(TA_GlyphHints hints, FT_Outline* outline); void ta_glyph_hints_save(TA_GlyphHints hints, FT_Outline* outline); void ta_glyph_hints_align_edge_points(TA_GlyphHints hints, TA_Dimension dim); void ta_glyph_hints_align_strong_points(TA_GlyphHints hints, TA_Dimension dim); void ta_glyph_hints_align_weak_points(TA_GlyphHints hints, TA_Dimension dim); #ifdef TA_CONFIG_OPTION_USE_WARPER void ta_glyph_hints_scale_dim(TA_GlyphHints hints, TA_Dimension dim, FT_Fixed scale, FT_Pos delta); #endif void ta_glyph_hints_done(TA_GlyphHints hints); #define TA_SEGMENT_LEN(seg) \ ((seg)->max_coord - (seg)->min_coord) #define TA_SEGMENT_DIST(seg1, seg2) \ (((seg1)->pos > (seg2)->pos) ? (seg1)->pos - (seg2)->pos \ : (seg2)->pos - (seg1)->pos) #endif /* __TAHINTS_H__ */ /* end of tahints.h */ ttfautohint-0.97/lib/tablue.hin0000644000175000001440000000557212230560735013475 00000000000000/* tablue.h */ /* * Copyright (C) 2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afblue.h' (2013-Sep-11) from FreeType */ #ifndef __TABLUE_H__ #define __TABLUE_H__ /* an auxiliary macro to decode a UTF-8 character -- since we only use */ /* hard-coded, self-converted data, no error checking is performed */ #define GET_UTF8_CHAR(ch, p) \ ch = (unsigned char)*p++; \ if (ch >= 0x80) \ { \ FT_UInt len; \ \ \ if (ch < 0xE0) \ { \ len = 1; \ ch &= 0x1F; \ } \ else if (ch < 0xF0) \ { \ len = 2; \ ch &= 0x0F; \ } \ else \ { \ len = 3;\ ch &= 0x07; \ } \ \ for (; len > 0; len--) \ ch = (ch << 6) | (*p++ & 0x3F); \ } /**************************************************************** * * BLUE STRINGS * ****************************************************************/ /* At the bottommost level, we define strings for finding blue zones. */ #define TA_BLUE_STRING_MAX_LEN @TA_BLUE_STRING_MAX_LEN@ /* The TA_Blue_String enumeration values are offsets into the */ /* `ta_blue_strings' array. */ typedef enum TA_Blue_String_ { @TA_BLUE_STRING_ENUM@ TA_BLUE_STRING_MAX /* do not remove */ } TA_Blue_String; extern const char ta_blue_strings[]; /**************************************************************** * * BLUE STRINGSETS * ****************************************************************/ /* The next level is to group blue strings into script-specific sets. */ /* Properties are specific to a writing system. We assume that a given */ /* blue string can't be used in more than a single writing system, which */ /* is a safe bet. */ #define TA_BLUE_PROPERTY_LATIN_TOP (1 << 0) #define TA_BLUE_PROPERTY_LATIN_X_HEIGHT (1 << 1) #define TA_BLUE_PROPERTY_LATIN_LONG (1 << 2) #define TA_BLUE_PROPERTY_CJK_HORIZ (1 << 0) #define TA_BLUE_PROPERTY_CJK_TOP (1 << 1) #define TA_BLUE_PROPERTY_CJK_FILL (1 << 2) #define TA_BLUE_PROPERTY_CJK_RIGHT TA_BLUE_PROPERTY_CJK_TOP #define TA_BLUE_STRINGSET_MAX_LEN @TA_BLUE_STRINGSET_MAX_LEN@ /* The TA_Blue_Stringset enumeration values are offsets into the */ /* `ta_blue_stringsets' array. */ typedef enum TA_Blue_Stringset_ { @TA_BLUE_STRINGSET_ENUM@ TA_BLUE_STRINGSET_MAX /* do not remove */ } TA_Blue_Stringset; typedef struct TA_Blue_StringRec_ { TA_Blue_String string; FT_UShort properties; } TA_Blue_StringRec; extern const TA_Blue_StringRec ta_blue_stringsets[]; #endif /* __TABLUE_H__ */ /* end of tablue.h */ ttfautohint-0.97/lib/tatypes.h0000644000175000001440000001762312230016061013347 00000000000000/* tatypes.h */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `aftypes.h' (2011-Mar-30) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #ifndef __TATYPES_H__ #define __TATYPES_H__ #include #include FT_FREETYPE_H #include FT_OUTLINE_H #include "tablue.h" /* enable one of the following three definitions for debugging */ /* #define TA_DEBUG */ /* #define TA_DEBUG_HORZ */ #define TA_DEBUG_VERT #if defined TA_DEBUG_HORZ # define TA_DEBUG_STARTDIM TA_DIMENSION_HORZ # define TA_DEBUG_ENDDIM TA_DIMENSION_HORZ # define TA_DEBUG #elif defined TA_DEBUG_VERT # define TA_DEBUG_STARTDIM TA_DIMENSION_VERT # define TA_DEBUG_ENDDIM TA_DIMENSION_VERT # define TA_DEBUG #elif defined TA_DEBUG # define TA_DEBUG_STARTDIM TA_DIMENSION_VERT # define TA_DEBUG_ENDDIM TA_DIMENSION_HORZ #endif #ifdef TA_DEBUG #define TA_LOG(x) \ do \ { \ if (_ta_debug) \ _ta_message x; \ } while (0) #define TA_LOG_GLOBAL(x) \ do \ { \ if (_ta_debug_global) \ _ta_message x; \ } while (0) void _ta_message(const char* format, ...); extern int _ta_debug; extern int _ta_debug_global; extern int _ta_debug_disable_horz_hints; extern int _ta_debug_disable_vert_hints; extern int _ta_debug_disable_blue_hints; extern void* _ta_debug_hints; #else /* !TA_DEBUG */ #define TA_LOG(x) \ do { } while (0) /* nothing */ #define TA_LOG_GLOBAL(x) \ do { } while (0) /* nothing */ #endif /* !TA_DEBUG */ #define TA_ABS(a) ((a) < 0 ? -(a) : (a)) /* from file `ftobjs.h' from FreeType */ #define TA_PAD_FLOOR(x, n) ((x) & ~((n) - 1)) #define TA_PAD_ROUND(x, n) TA_PAD_FLOOR((x) + ((n) / 2), n) #define TA_PAD_CEIL(x, n) TA_PAD_FLOOR((x) + ((n) - 1), n) #define TA_PIX_FLOOR(x) ((x) & ~63) #define TA_PIX_ROUND(x) TA_PIX_FLOOR((x) + 32) #define TA_PIX_CEIL(x) TA_PIX_FLOOR((x) + 63) typedef struct TA_WidthRec_ { FT_Pos org; /* original position/width in font units */ FT_Pos cur; /* current/scaled position/width in device sub-pixels */ FT_Pos fit; /* current/fitted position/width in device sub-pixels */ } TA_WidthRec, *TA_Width; /* the auto-hinter doesn't need a very high angular accuracy */ typedef FT_Int TA_Angle; #define TA_ANGLE_PI 256 #define TA_ANGLE_2PI (TA_ANGLE_PI * 2) #define TA_ANGLE_PI2 (TA_ANGLE_PI / 2) #define TA_ANGLE_PI4 (TA_ANGLE_PI / 4) #define TA_ANGLE_DIFF(result, angle1, angle2) \ do \ { \ TA_Angle _delta = (angle2) - (angle1); \ \ \ _delta %= TA_ANGLE_2PI; \ if (_delta < 0) \ _delta += TA_ANGLE_2PI; \ \ if (_delta > TA_ANGLE_PI) \ _delta -= TA_ANGLE_2PI; \ \ result = _delta; \ } while (0) /* opaque handle to glyph-specific hints -- */ /* see `tahints.h' for more details */ typedef struct TA_GlyphHintsRec_* TA_GlyphHints; /* a scaler models the target pixel device that will receive */ /* the auto-hinted glyph image */ #define TA_SCALER_FLAG_NO_HORIZONTAL 0x01 /* disable horizontal hinting */ #define TA_SCALER_FLAG_NO_VERTICAL 0x02 /* disable vertical hinting */ #define TA_SCALER_FLAG_NO_ADVANCE 0x04 /* disable advance hinting */ typedef struct TA_ScalerRec_ { FT_Face face; /* source font face */ FT_Fixed x_scale; /* from font units to 1/64th device pixels */ FT_Fixed y_scale; /* from font units to 1/64th device pixels */ FT_Pos x_delta; /* in 1/64th device pixels */ FT_Pos y_delta; /* in 1/64th device pixels */ FT_Render_Mode render_mode; /* monochrome, anti-aliased, LCD, etc.*/ FT_UInt32 flags; /* additional control flags, see above */ } TA_ScalerRec, *TA_Scaler; #define TA_SCALER_EQUAL_SCALES(a, b) \ ((a)->x_scale == (b)->x_scale \ && (a)->y_scale == (b)->y_scale \ && (a)->x_delta == (b)->x_delta \ && (a)->y_delta == (b)->y_delta) /* This is the main structure which combines writing systems and script */ /* data (for a given face object, see below). */ typedef struct TA_WritingSystemClassRec_ const* TA_WritingSystemClass; typedef struct TA_ScriptClassRec_ const* TA_ScriptClass; typedef struct TA_FaceGlobalsRec_* TA_FaceGlobals; typedef struct TA_ScriptMetricsRec_ { TA_ScriptClass script_class; TA_ScalerRec scaler; FT_Bool digits_have_same_width; TA_FaceGlobals globals; /* to access properties */ } TA_ScriptMetricsRec, *TA_ScriptMetrics; /* this function parses an FT_Face to compute global metrics */ /* for a specific script */ typedef FT_Error (*TA_Script_InitMetricsFunc)(TA_ScriptMetrics metrics, FT_Face face); typedef void (*TA_Script_ScaleMetricsFunc)(TA_ScriptMetrics metrics, TA_Scaler scaler); typedef void (*TA_Script_DoneMetricsFunc)(TA_ScriptMetrics metrics); typedef FT_Error (*TA_Script_InitHintsFunc)(TA_GlyphHints hints, TA_ScriptMetrics metrics); typedef void (*TA_Script_ApplyHintsFunc)(TA_GlyphHints hints, FT_Outline* outline, TA_ScriptMetrics metrics); /* * In FreeType, a writing system consists of multiple scripts which can * be handled similarly *in a typographical way*; the relationship is not * based on history. For example, both the Greek and the unrelated * Armenian scripts share the same features like ascender, descender, * x-height, etc. Essentially, a writing system is covered by a * submodule of the auto-fitter; it contains * * - a specific global analyzer which computes global metrics specific to * the script (based on script-specific characters to identify ascender * height, x-height, etc.), * * - a specific glyph analyzer that computes segments and edges for each * glyph covered by the script, * * - a specific grid-fitting algorithm that distorts the scaled glyph * outline according to the results of the glyph analyzer. */ #define __TAWRTSYS_H__ /* don't load header files */ #undef WRITING_SYSTEM #define WRITING_SYSTEM(ws, WS) \ TA_WRITING_SYSTEM_ ## WS, /* The list of known writing systems. */ typedef enum TA_WritingSystem_ { #include "tawrtsys.h" TA_WRITING_SYSTEM_MAX /* do not remove */ } TA_WritingSystem; #undef __TAWRTSYS_H__ typedef struct TA_WritingSystemClassRec_ { TA_WritingSystem writing_system; FT_Offset script_metrics_size; TA_Script_InitMetricsFunc script_metrics_init; TA_Script_ScaleMetricsFunc script_metrics_scale; TA_Script_DoneMetricsFunc script_metrics_done; TA_Script_InitHintsFunc script_hints_init; TA_Script_ApplyHintsFunc script_hints_apply; } TA_WritingSystemClassRec; /* * Each script is associated with a set of Unicode ranges which gets used * to test whether the font face supports the script. It also references * the writing system it belongs to. * * We use four-letter script tags from the OpenType specification. */ #undef SCRIPT #define SCRIPT(s, S, d) \ TA_SCRIPT_ ## S, /* The list of known scripts. */ typedef enum TA_Script_ { #include TA_SCRIPT_MAX /* do not remove */ } TA_Script; typedef struct TA_Script_UniRangeRec_ { FT_UInt32 first; FT_UInt32 last; } TA_Script_UniRangeRec; #define TA_UNIRANGE_REC(a, b) \ { (FT_UInt32)(a), (FT_UInt32)(b) } typedef const TA_Script_UniRangeRec* TA_Script_UniRange; typedef struct TA_ScriptClassRec_ { TA_Script script; TA_Blue_Stringset blue_stringset; TA_WritingSystem writing_system; TA_Script_UniRange script_uni_ranges; /* last must be { 0, 0 } */ FT_UInt32 standard_char; /* for default width and height */ } TA_ScriptClassRec; #endif /* __TATYPES_H__ */ /* end of tatypes.h */ ttfautohint-0.97/lib/tasort.c0000644000175000001440000000471512076552172013203 00000000000000/* tasort.c */ /* * Copyright (C) 2011-2013 by Werner Lemberg. * * This file is part of the ttfautohint library, and may only be used, * modified, and distributed under the terms given in `COPYING'. By * continuing to use, modify, or distribute this file you indicate that you * have read `COPYING' and understand and accept it fully. * * The file `COPYING' mentioned in the previous paragraph is distributed * with the ttfautohint library. */ /* originally file `afangles.c' (2011-Mar-28) from FreeType */ /* heavily modified 2011 by Werner Lemberg */ #include "tatypes.h" #include "tasort.h" /* two bubble sort routines */ void ta_sort_pos(FT_UInt count, FT_Pos* table) { FT_UInt i; FT_UInt j; FT_Pos swap; for (i = 1; i < count; i++) { for (j = i; j > 0; j--) { if (table[j] >= table[j - 1]) break; swap = table[j]; table[j] = table[j - 1]; table[j - 1] = swap; } } } void ta_sort_and_quantize_widths(FT_UInt* count, TA_Width table, FT_Pos threshold) { FT_UInt i; FT_UInt j; FT_UInt cur_idx; FT_Pos cur_val; FT_Pos sum; TA_WidthRec swap; if (*count == 1) return; /* sort */ for (i = 1; i < *count; i++) { for (j = i; j > 0; j--) { if (table[j].org >= table[j - 1].org) break; swap = table[j]; table[j] = table[j - 1]; table[j - 1] = swap; } } cur_idx = 0; cur_val = table[cur_idx].org; /* compute and use mean values for clusters not larger than `threshold'; */ /* this is very primitive and might not yield the best result, */ /* but normally, using reference character `o', `*count' is 2, */ /* so the code below is fully sufficient */ for (i = 1; i < *count; i++) { if (table[i].org - cur_val > threshold || i == *count - 1) { sum = 0; /* fix loop for end of array */ if (table[i].org - cur_val <= threshold && i == *count - 1) i++; for (j = cur_idx; j < i; j++) { sum += table[j].org; table[j].org = 0; } table[cur_idx].org = sum / j; if (i < *count - 1) { cur_idx = i + 1; cur_val = table[cur_idx].org; } } } cur_idx = 1; /* compress array to remove zero values */ for (i = 1; i < *count; i++) { if (table[i].org) table[cur_idx++] = table[i]; } *count = cur_idx; } /* end of tasort.c */ ttfautohint-0.97/Makefile.in0000644000175000001440000011330712237364312013014 00000000000000# Makefile.in generated by automake 1.14 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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 = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' 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@ subdir = . DIST_COMMON = INSTALL NEWS README AUTHORS ChangeLog THANKS \ $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/configure $(am__configure_deps) \ $(srcdir)/config.h.in COPYING TODO gnulib/ar-lib \ gnulib/compile gnulib/config.guess gnulib/config.rpath \ gnulib/config.sub gnulib/install-sh gnulib/missing \ gnulib/ltmain.sh $(top_srcdir)/gnulib/ar-lib \ $(top_srcdir)/gnulib/compile $(top_srcdir)/gnulib/config.guess \ $(top_srcdir)/gnulib/config.rpath \ $(top_srcdir)/gnulib/config.sub \ $(top_srcdir)/gnulib/install-sh $(top_srcdir)/gnulib/ltmain.sh \ $(top_srcdir)/gnulib/missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/autotroll.m4 \ $(top_srcdir)/m4/ltlize_lang.m4 \ $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/errno_h.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/fcntl-o.m4 \ $(top_srcdir)/gnulib/m4/fcntl_h.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/isatty.m4 \ $(top_srcdir)/gnulib/m4/lib-ld.m4 \ $(top_srcdir)/gnulib/m4/lib-link.m4 \ $(top_srcdir)/gnulib/m4/lib-prefix.m4 \ $(top_srcdir)/gnulib/m4/libtool.m4 \ $(top_srcdir)/gnulib/m4/lock.m4 \ $(top_srcdir)/gnulib/m4/longlong.m4 \ $(top_srcdir)/gnulib/m4/ltoptions.m4 \ $(top_srcdir)/gnulib/m4/ltsugar.m4 \ $(top_srcdir)/gnulib/m4/ltversion.m4 \ $(top_srcdir)/gnulib/m4/lt~obsolete.m4 \ $(top_srcdir)/gnulib/m4/memchr.m4 \ $(top_srcdir)/gnulib/m4/memmem.m4 \ $(top_srcdir)/gnulib/m4/mmap-anon.m4 \ $(top_srcdir)/gnulib/m4/msvc-inval.m4 \ $(top_srcdir)/gnulib/m4/msvc-nothrow.m4 \ $(top_srcdir)/gnulib/m4/multiarch.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdint.m4 \ $(top_srcdir)/gnulib/m4/strerror.m4 \ $(top_srcdir)/gnulib/m4/strerror_r.m4 \ $(top_srcdir)/gnulib/m4/string_h.m4 \ $(top_srcdir)/gnulib/m4/sys_socket_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/threadlib.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) 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 = 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 = 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 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 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) 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 distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@ AR = @AR@ ARFLAGS = @ARFLAGS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@ BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@ BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@ BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@ BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ 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@ EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@ EMULTIHOP_VALUE = @EMULTIHOP_VALUE@ ENOLINK_HIDDEN = @ENOLINK_HIDDEN@ ENOLINK_VALUE = @ENOLINK_VALUE@ EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@ EOVERFLOW_VALUE = @EOVERFLOW_VALUE@ ERRNO_H = @ERRNO_H@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CPPFLAGS = @FREETYPE_CPPFLAGS@ FREETYPE_LIBS = @FREETYPE_LIBS@ GETOPT_H = @GETOPT_H@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FCNTL = @GNULIB_FCNTL@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FFSL = @GNULIB_FFSL@ GNULIB_FFSLL = @GNULIB_FFSLL@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@ GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@ GNULIB_MBSCHR = @GNULIB_MBSCHR@ GNULIB_MBSCSPN = @GNULIB_MBSCSPN@ GNULIB_MBSLEN = @GNULIB_MBSLEN@ GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@ GNULIB_MBSNLEN = @GNULIB_MBSNLEN@ GNULIB_MBSPBRK = @GNULIB_MBSPBRK@ GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@ GNULIB_MBSRCHR = @GNULIB_MBSRCHR@ GNULIB_MBSSEP = @GNULIB_MBSSEP@ GNULIB_MBSSPN = @GNULIB_MBSSPN@ GNULIB_MBSSTR = @GNULIB_MBSSTR@ GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@ GNULIB_MEMCHR = @GNULIB_MEMCHR@ GNULIB_MEMMEM = @GNULIB_MEMMEM@ GNULIB_MEMPCPY = @GNULIB_MEMPCPY@ GNULIB_MEMRCHR = @GNULIB_MEMRCHR@ GNULIB_NONBLOCKING = @GNULIB_NONBLOCKING@ GNULIB_OPEN = @GNULIB_OPEN@ GNULIB_OPENAT = @GNULIB_OPENAT@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STPCPY = @GNULIB_STPCPY@ GNULIB_STPNCPY = @GNULIB_STPNCPY@ GNULIB_STRCASESTR = @GNULIB_STRCASESTR@ GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@ GNULIB_STRDUP = @GNULIB_STRDUP@ GNULIB_STRERROR = @GNULIB_STRERROR@ GNULIB_STRERROR_R = @GNULIB_STRERROR_R@ GNULIB_STRNCAT = @GNULIB_STRNCAT@ GNULIB_STRNDUP = @GNULIB_STRNDUP@ GNULIB_STRNLEN = @GNULIB_STRNLEN@ GNULIB_STRPBRK = @GNULIB_STRPBRK@ GNULIB_STRSEP = @GNULIB_STRSEP@ GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@ GNULIB_STRSTR = @GNULIB_STRSTR@ GNULIB_STRTOK_R = @GNULIB_STRTOK_R@ GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WRITE = @GNULIB_WRITE@ GREP = @GREP@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@ HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@ HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@ HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@ HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@ HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@ HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FCNTL = @HAVE_FCNTL@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FFSL = @HAVE_FFSL@ HAVE_FFSLL = @HAVE_FFSLL@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_INTTYPES_H = @HAVE_INTTYPES_H@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@ HAVE_MBSLEN = @HAVE_MBSLEN@ HAVE_MEMCHR = @HAVE_MEMCHR@ HAVE_MEMPCPY = @HAVE_MEMPCPY@ HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@ HAVE_OPENAT = @HAVE_OPENAT@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@ HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@ HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STDINT_H = @HAVE_STDINT_H@ HAVE_STPCPY = @HAVE_STPCPY@ HAVE_STPNCPY = @HAVE_STPNCPY@ HAVE_STRCASESTR = @HAVE_STRCASESTR@ HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ HAVE_STRPBRK = @HAVE_STRPBRK@ HAVE_STRSEP = @HAVE_STRSEP@ HAVE_STRVERSCMP = @HAVE_STRVERSCMP@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@ HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_H = @HAVE_WCHAR_H@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@ HELP2MAN = @HELP2MAN@ IMPORT = @IMPORT@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INKSCAPE = @INKSCAPE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MOC = @MOC@ NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@ NEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@ NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_ERRNO_H = @NEXT_ERRNO_H@ NEXT_FCNTL_H = @NEXT_FCNTL_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDINT_H = @NEXT_STDINT_H@ NEXT_STRING_H = @NEXT_STRING_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ 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@ PANDOC = @PANDOC@ PATH_SEPARATOR = @PATH_SEPARATOR@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@ QMAKE = @QMAKE@ QT_CFLAGS = @QT_CFLAGS@ QT_CPPFLAGS = @QT_CPPFLAGS@ QT_CXXFLAGS = @QT_CXXFLAGS@ QT_DEFINES = @QT_DEFINES@ QT_INCPATH = @QT_INCPATH@ QT_LDFLAGS = @QT_LDFLAGS@ QT_LFLAGS = @QT_LFLAGS@ QT_LIBS = @QT_LIBS@ QT_PATH = @QT_PATH@ QT_VERSION = @QT_VERSION@ QT_VERSION_MAJOR = @QT_VERSION_MAJOR@ RANLIB = @RANLIB@ RCC = @RCC@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FCNTL = @REPLACE_FCNTL@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MEMCHR = @REPLACE_MEMCHR@ REPLACE_MEMMEM = @REPLACE_MEMMEM@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_OPEN = @REPLACE_OPEN@ REPLACE_OPENAT = @REPLACE_OPENAT@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STPNCPY = @REPLACE_STPNCPY@ REPLACE_STRCASESTR = @REPLACE_STRCASESTR@ REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@ REPLACE_STRDUP = @REPLACE_STRDUP@ REPLACE_STRERROR = @REPLACE_STRERROR@ REPLACE_STRERROR_R = @REPLACE_STRERROR_R@ REPLACE_STRNCAT = @REPLACE_STRNCAT@ REPLACE_STRNDUP = @REPLACE_STRNDUP@ REPLACE_STRNLEN = @REPLACE_STRNLEN@ REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@ REPLACE_STRSTR = @REPLACE_STRSTR@ REPLACE_STRTOK_R = @REPLACE_STRTOK_R@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@ SIZE_T_SUFFIX = @SIZE_T_SUFFIX@ STDDEF_H = @STDDEF_H@ STDINT_H = @STDINT_H@ STRIP = @STRIP@ UIC = @UIC@ UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ 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@ ft_config = @ft_config@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ 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@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ # due to a limitation of `autoreconf', # all -I directives currently must be set on a single line ACLOCAL_AMFLAGS = -I gnulib/m4 -I m4 SUBDIRS = gnulib/src \ lib \ frontend \ doc EXTRA_DIST = bootstrap \ bootstrap.conf \ FTL.TXT \ gnulib/m4/gnulib-cache.m4 \ GPLv2.TXT \ README \ TODO \ .version BUILT_SOURCES = .version all: $(BUILT_SOURCES) config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: 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) --gnits'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnits \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnits Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnits Makefile .PRECIOUS: 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__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ 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 mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt # 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: $(DISTFILES) @case `sed 15q $(srcdir)/NEWS` in \ *"$(VERSION)"*) : ;; \ *) \ echo "NEWS not updated; not releasing" 1>&2; \ exit 1;; \ esac $(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 $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -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) | GZIP=$(GZIP_ENV) gzip -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-tarZ: distdir @echo WARNING: "Support for shar distribution archives 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 distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | GZIP=$(GZIP_ENV) gzip -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*) \ GZIP=$(GZIP_ENV) gzip -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*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(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 \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(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: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile config.h installdirs: installdirs-recursive installdirs-am: install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am 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-dvi: install-dvi-recursive install-dvi-am: install-exec-am: 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 Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) all check install install-am \ install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar \ dist-tarZ dist-xz dist-zip distcheck distclean \ distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck 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 installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-am uninstall uninstall-am .version: echo $(VERSION) > $@-t && mv $@-t $@ dist-hook: echo $(VERSION) > $(distdir)/VERSION # 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: ttfautohint-0.97/TODO0000644000175000001440000000767112101321657011440 00000000000000 important improvements ---------------------- add features to the GUI -> direct control over `actions' -> preview similar to ftgrid -> autocompletion of file names with tab key handle OT features -> use HarfBuzz as soon it provides the necessary APIs control `gasp' table; Adam Twardoch suggest the following: 1. Calculate "gaspstem", i.e. the most common thickness of horizontal stems (y direction distances) for lowercase Latin letters. 2. If gaspstem <= 0.03 * upm, apply gasp symmetric smoothing across the entire range (rangeMaxPPEM 0xFFFF, value 15) 3. Else, calculate gaspthreshold as follows: ceil(1.33 * upm / gaspstem) - 1 4. Apply no symmetric smoothing up to the gaspthreshold ppem (rangeMaxPPEM gaspthreshold, value 7), and apply symmetric smoothing above. In addition, ttfautohint should provide a commandline parameter that allows the user to override the automatic logic. If that parameter = 0, then gasp value 15 should be applied across the entire range. If the parameter > 0, then up to that parameter value the gasp value 7 should be applied, and gasp value 15 should be applied above. create a separate blue zone class for `i' and `j': . if the values differ more than a given threshold, handle them separately . otherwise, unify them with `f' and friends. control the characters used for blue zones -> non-latin scripts user-defined blue zones? -> old-style digits control the width of blue zones add control over character ranges which define a script; in particular, add support for the PUA handle normal and bold fonts differently; cf. Infinality patches; this should help avoid filling of bowls (like in `e') for bold shapes. help font families harmonize well so that e.g. x height and stem width change synchronously control the minimum stem width try to `embolden' fonts at small sizes to avoid drop-outs; cf. Infinality patches make switching between smooth and strong hinting dependent on user-defined ranges improve `pre-hinting' by making the used PPEM value configurable allow hinting of single glyphs, using a config file which holds the global settings better handling of `incomplete' fonts (this is, fonts which lack the minimum set of glyphs necessary to determine the blue zones) minor improvements ------------------ reject fonts which are `hopeless' (for example, `Lipstick') correctly set `lowestRecPPEM' field in `head' control dropout mode apply hinting in x direction also? -> warper: shifting with and without scaling -> `standard' autofit hinting add a config and/or command file for batch handling warn against overwrite of output file in TTY mode? reduce output size of option -p: 1. compare outline rendered at EM value with unhinted outline 2. pre-hint only if 1. differs more than given threshold (default 0.5%?) make it possible to hint fonts which aren't alphabetic at all, for example, icons; to do so, provide means to skip the global feature analysis better control -i output allow processing of multiple files by using globs as in the Midnight Commander? allow composite fonts already processed by ttfautohint to be processed again (due to option `hint-with-components' this isn't urgent) make ttfautohint remember options: 1. collect md5 checksums in a `~/.ttfautohint_history' file so that fonts can be re-processed easily, using the same parameters 2. if fonts already processed by ttfautohint can be re-processed (which isn't possible yet), parse the `version' string for parameters implement (sort of) the opposite of -x, this is, decrease the x height later enhancements ------------------ add CJK autohinting module add Hebrew autohinting module instead of emitting bytecode, write the hints as a VTT or FontLab script Windows/Mac installer various ------- testing with Windows and Apple font checkers man page for ttfautohint library install library add help2man script so that parallel builds always work EOF ttfautohint-0.97/FTL.TXT0000644000175000001440000001512511601026513011764 00000000000000 The FreeType Project LICENSE ---------------------------- 2006-Jan-27 Copyright 1996-2002, 2006 by David Turner, Robert Wilhelm, and Werner Lemberg Introduction ============ The FreeType Project is distributed in several archive packages; some of them may contain, in addition to the FreeType font engine, various tools and contributions which rely on, or relate to, the FreeType Project. This license applies to all files found in such packages, and which do not fall under their own explicit license. The license affects thus the FreeType font engine, the test programs, documentation and makefiles, at the very least. This license was inspired by the BSD, Artistic, and IJG (Independent JPEG Group) licenses, which all encourage inclusion and use of free software in commercial and freeware products alike. As a consequence, its main points are that: o We don't promise that this software works. However, we will be interested in any kind of bug reports. (`as is' distribution) o You can use this software for whatever you want, in parts or full form, without having to pay us. (`royalty-free' usage) o You may not pretend that you wrote this software. If you use it, or only parts of it, in a program, you must acknowledge somewhere in your documentation that you have used the FreeType code. (`credits') We specifically permit and encourage the inclusion of this software, with or without modifications, in commercial products. We disclaim all warranties covering The FreeType Project and assume no liability related to The FreeType Project. Finally, many people asked us for a preferred form for a credit/disclaimer to use in compliance with this license. We thus encourage you to use the following text: """ Portions of this software are copyright © The FreeType Project (www.freetype.org). All rights reserved. """ Please replace with the value from the FreeType version you actually use. Legal Terms =========== 0. Definitions -------------- Throughout this license, the terms `package', `FreeType Project', and `FreeType archive' refer to the set of files originally distributed by the authors (David Turner, Robert Wilhelm, and Werner Lemberg) as the `FreeType Project', be they named as alpha, beta or final release. `You' refers to the licensee, or person using the project, where `using' is a generic term including compiling the project's source code as well as linking it to form a `program' or `executable'. This program is referred to as `a program using the FreeType engine'. This license applies to all files distributed in the original FreeType Project, including all source code, binaries and documentation, unless otherwise stated in the file in its original, unmodified form as distributed in the original archive. If you are unsure whether or not a particular file is covered by this license, you must contact us to verify this. The FreeType Project is copyright (C) 1996-2000 by David Turner, Robert Wilhelm, and Werner Lemberg. All rights reserved except as specified below. 1. No Warranty -------------- THE FREETYPE PROJECT IS PROVIDED `AS IS' WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT WILL ANY OF THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY DAMAGES CAUSED BY THE USE OR THE INABILITY TO USE, OF THE FREETYPE PROJECT. 2. Redistribution ----------------- This license grants a worldwide, royalty-free, perpetual and irrevocable right and license to use, execute, perform, compile, display, copy, create derivative works of, distribute and sublicense the FreeType Project (in both source and object code forms) and derivative works thereof for any purpose; and to authorize others to exercise some or all of the rights granted herein, subject to the following conditions: o Redistribution of source code must retain this license file (`FTL.TXT') unaltered; any additions, deletions or changes to the original files must be clearly indicated in accompanying documentation. The copyright notices of the unaltered, original files must be preserved in all copies of source files. o Redistribution in binary form must provide a disclaimer that states that the software is based in part of the work of the FreeType Team, in the distribution documentation. We also encourage you to put an URL to the FreeType web page in your documentation, though this isn't mandatory. These conditions apply to any software derived from or based on the FreeType Project, not just the unmodified files. If you use our work, you must acknowledge us. However, no fee need be paid to us. 3. Advertising -------------- Neither the FreeType authors and contributors nor you shall use the name of the other for commercial, advertising, or promotional purposes without specific prior written permission. We suggest, but do not require, that you use one or more of the following phrases to refer to this software in your documentation or advertising materials: `FreeType Project', `FreeType Engine', `FreeType library', or `FreeType Distribution'. As you have not signed this license, you are not required to accept it. However, as the FreeType Project is copyrighted material, only this license, or another one contracted with the authors, grants you the right to use, distribute, and modify it. Therefore, by using, distributing, or modifying the FreeType Project, you indicate that you understand and accept all the terms of this license. 4. Contacts ----------- There are two mailing lists related to FreeType: o freetype@nongnu.org Discusses general use and applications of FreeType, as well as future and wanted additions to the library and distribution. If you are looking for support, start in this list if you haven't found anything to help you in the documentation. o freetype-devel@nongnu.org Discusses bugs, as well as engine internals, design issues, specific licenses, porting, etc. Our home page can be found at http://www.freetype.org --- end of FTL.TXT --- ttfautohint-0.97/m4/0000755000175000001440000000000012237367736011357 500000000000000ttfautohint-0.97/m4/autotroll.m40000644000175000001440000005622412076535433013567 00000000000000# Build Qt apps with the autotools (Autoconf/Automake). # M4 macros. # # This file is part of AutoTroll. # # Copyright (C) 2006 Benoit Sigoure # modified 2012-2013 by Werner Lemberg # # AutoTroll 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. # # 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, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # # In addition, as a special exception, the copyright holders of # AutoTroll give you unlimited permission to copy, distribute and # modify the configure scripts that are the output of Autoconf when # processing the macros of AutoTroll. You need not follow the terms # of the GNU General Public License when using or distributing such # scripts, even though portions of the text of AutoTroll appear in # them. The GNU General Public License (GPL) does govern all other # use of the material that constitutes AutoTroll. # # This special exception to the GPL applies to versions of AutoTroll # released by the copyright holders of AutoTroll. Note that people # who make modified versions of AutoTroll are not obligated to grant # this special exception for their modified versions; it is their # choice whether to do so. The GNU General Public License gives # permission to release a modified version without this exception; # this exception also makes it possible to release a modified version # which carries forward this exception. # ------------- # # DOCUMENTATION # # ------------- # # Disclaimer: Tested with Qt 4.2 and 4.8 only. Feedback welcome. # Simply invoke AT_WITH_QT in your configure.ac. AT_WITH_QT can take # arguments which are documented in depth below. The default # arguments are equivalent to the default .pro file generated by # qmake. # # Invoking AT_WITH_QT will do the following: # # - Add option `--with-qt[=ARG]' to your configure script. Possible # values for ARG are `yes' (which is the default) and `no' to # enable and disable Qt support, respectively, or a path to the # directory which contains the Qt binaries in case you have a # non-stardard location. # - Add option `--without-qt', which is equivalent to `--with-qt=no'. # - If Qt support is enabled, define C preprocessor macro HAVE_QT. # - Find the programs `qmake', `moc', `uic', and `rcc' and save them # in the make variables $(QMAKE), $(MOC), $(UIC), and $(RCC). # - Save the path to Qt binaries in $(QT_PATH). # - Find the flags necessary to compile and link Qt, that is: # * $(QT_DEFINES): -D's defined by qmake. # * $(QT_CFLAGS): CFLAGS as defined by qmake (C?!) # * $(QT_CXXFLAGS): CXXFLAGS as defined by qmake. # * $(QT_INCPATH): -I's defined by qmake. # * $(QT_CPPFLAGS): Same as $(QT_DEFINES) + $(QT_INCPATH). # * $(QT_LFLAGS): LFLAGS defined by qmake. # * $(QT_LDFLAGS): Same thing as $(QT_LFLAGS). # * $(QT_LIBS): LIBS defined by qmake. # # You *MUST* invoke $(MOC) and/or $(UIC) by yourself where necessary. # AutoTroll provides you with Makerules to ease this; here is a sample # Makefile.am to use with AutoTroll which builds the code given in # chapter 7 of the Qt Tutorial # (http://doc.trolltech.com/4.2/tutorial-t7.html). # # ------------------------------------------------------------------------- # include $(top_srcdir)/build-aux/autotroll.mk # # ACLOCAL_AMFLAGS = -I build-aux # # bin_PROGRAMS = lcdrange # lcdrange_SOURCES = $(BUILT_SOURCES) lcdrange.cpp lcdrange.h main.cpp # lcdrange_CXXFLAGS = $(QT_CXXFLAGS) $(AM_CXXFLAGS) # lcdrange_CPPFLAGS = $(QT_CPPFLAGS) $(AM_CPPFLAGS) # lcdrange_LDFLAGS = $(QT_LDFLAGS) $(LDFLAGS) # lcdrange_LDADD = $(QT_LIBS) $(LDADD) # # BUILT_SOURCES = lcdrange.moc.cpp # ------------------------------------------------------------------------- # # Note that your MOC, UIC, and RRC files *MUST* be listed explicitly # in BUILT_SOURCES. If you name them properly (e.g. `.moc.cc', # `.qrc.cc', `.ui.cc' -- of course you can use `.cpp' or `.cxx' or # `.C' rather than `.cc') AutoTroll will build them automagically for # you, using implicit rules defined in `autotroll.mk'. m4_define([_AUTOTROLL_SERIAL], [m4_translit([ # serial 8 ], [# ], [])]) m4_ifdef([AX_INSTEAD_IF], [], [AC_DEFUN([AX_INSTEAD_IF], [m4_ifval([$1], [AC_MSG_WARN([$2]) [$1]], [AC_MSG_ERROR([$2])])])]) # AX_PATH_TOOLS(VARIABLE, PROGS-TO-CHECK-FOR, [VALUE-IF-NOT-FOUND], [PATH]) # ------------------------------------------------------------------------- AC_DEFUN([AX_PATH_TOOLS], [for ax_tool in $2; do AC_PATH_TOOL([$1], [$ax_tool], , [$4]) test -n "$$1" && break done m4_ifval([$3], [test -n "$$1" || $1="$3"]) ]) m4_pattern_forbid([^AT_]) m4_pattern_forbid([^_AT_]) # AT_WITH_QT([QT_modules], [QT_config], [QT_misc], [RUN-IF-FAILED], [RUN-IF-OK]) # ------------------------------------------------------------------------------ # Enable Qt support and add an option --with-qt to the configure # script. # # The QT_modules argument is optional and defines extra modules to # enable or disable (it's equivalent to the QT variable in .pro # files). Modules can be specified as follows: # # AT_WITH_QT => No argument -> No QT value. # Qmake sets it to "core gui" by # default. # AT_WITH_QT([xml]) => QT += xml # AT_WITH_QT([+xml]) => QT += xml # AT_WITH_QT([-gui]) => QT -= gui # AT_WITH_QT([xml -gui +sql svg]) => QT += xml sql svg # QT -= gui # # The QT_config argument is also optional and follows the same # convention as QT_modules. Instead of changing the QT variable, it # changes the CONFIG variable, which is used to tweak configuration # and compiler options. # # The last argument, QT_misc (also optional) will be copied as-is the # .pro file used to guess how to compile Qt apps. You may use it to # further tweak the build process of Qt apps if tweaking the QT or # CONFIG variables isn't enough for you. # # RUN-IF-FAILED is arbitrary code to execute if Qt cannot be found or # if any problem happens. If this argument is omitted, then # AC_MSG_ERROR will be called. RUN-IF-OK is arbitrary code to execute # if Qt was successfully found. AC_DEFUN([AT_WITH_QT], [AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_CANONICAL_BUILD]) AC_REQUIRE([AC_PROG_CXX]) echo "$as_me: this is autotroll.m4[]_AUTOTROLL_SERIAL" \ >& AS_MESSAGE_LOG_FD # This is a hack to get decent flow control with `break'. for _qt_ignored in once; do AC_ARG_WITH([qt], AS_HELP_STRING([--with-qt@<:@=ARG@:>@], [Qt support. ARG can be `yes' (the default), `no', or a path to Qt binaries; if `yes' or empty, use PATH and some default directories to find Qt binaries])) if test x"$with_qt" = x"no"; then break else AC_DEFINE([HAVE_QT],[1], [Define if the Qt framework is available.]) fi if test x"$with_qt" = x"yes"; then QT_PATH= else QT_PATH=$with_qt fi # Find Qt. AC_ARG_VAR([QT_PATH], [path to Qt binaries]) if test -d /usr/local/Trolltech; then # Try to find the latest version. tmp_qt_paths=`echo /usr/local/Trolltech/*/bin \ | tr ' ' '\n' \ | sort -nr \ | xargs \ | sed 's/ */:/g'` fi # Path to which recent MacPorts (~v1.7) install Qt4. test -d /opt/local/libexec/qt4-mac/bin \ && tmp_qt_paths="$tmp_qt_paths:/opt/local/libexec/qt4-mac/bin" # Find qmake. AC_ARG_VAR([QMAKE], [Qt Makefile generator command]) AX_PATH_TOOLS([QMAKE], [qmake qmake-qt4 qmake-qt3], [missing], [$QT_DIR:$QT_PATH:$PATH:$tmp_qt_paths]) if test x"$QMAKE" = xmissing; then AX_INSTEAD_IF([$4], [Cannot find qmake. Try --with-qt=PATH.]) break fi # Find moc (Meta Object Compiler). AC_ARG_VAR([MOC], [Qt Meta Object Compiler command]) AX_PATH_TOOLS([MOC], [moc moc-qt4 moc-qt3], [missing], [$QT_PATH:$PATH:$tmp_qt_paths]) if test x"$MOC" = xmissing; then AX_INSTEAD_IF([$4], [Cannot find moc (Meta Object Compiler). Try --with-qt=PATH.]) break fi # Find uic (User Interface Compiler). AC_ARG_VAR([UIC], [Qt User Interface Compiler command]) AX_PATH_TOOLS([UIC], [uic uic-qt4 uic-qt3 uic3], [missing], [$QT_PATH:$PATH:$tmp_qt_paths]) if test x"$UIC" = xmissing; then AX_INSTEAD_IF([$4], [Cannot find uic (User Interface Compiler). Try --with-qt=PATH.]) break fi # Find rcc (Qt Resource Compiler). AC_ARG_VAR([RCC], [Qt Resource Compiler command]) AX_PATH_TOOLS([RCC], [rcc], [missing], [$QT_PATH:$PATH:$tmp_qt_paths]) if test x"$RCC" = xmissing; then AC_MSG_WARN( [Cannot find rcc (Qt Resource Compiler). Try --with-qt=PATH.]) fi AC_MSG_CHECKING([whether host operating system is Darwin]) at_darwin=no at_qmake_args= case $host_os in darwin*) at_darwin=yes at_qmake_args='-spec macx-g++' ;; esac AC_MSG_RESULT([$at_darwin]) # If we don't know the path to Qt, guess it from the path to # qmake. if test x"$QT_PATH" = x; then QT_PATH=`dirname "$QMAKE"` fi if test x"$QT_PATH" = x; then AX_INSTEAD_IF([$4], [Cannot find your Qt installation. Try --with-qt=PATH.]) break fi AC_SUBST([QT_PATH]) # Get ready to build a test-app with Qt. if mkdir conftest.dir \ && cd conftest.dir; then : else AX_INSTEAD_IF([$4], [Cannot mkdir conftest.dir or cd to that directory.]) break fi cat >conftest.h <<_ASEOF #include class Foo: public QObject { Q_OBJECT; public: Foo(); ~Foo() {} public Q_SLOTS: void setValue(int value); Q_SIGNALS: void valueChanged(int newValue); private: int value_; }; _ASEOF cat >conftest.cpp <<_ASEOF #include "conftest.h" Foo::Foo() : value_ (42) { connect(this, SIGNAL(valueChanged(int)), this, SLOT(setValue(int))); } void Foo::setValue(int value) { value_ = value; } int main() { Foo f; } _ASEOF if $QMAKE -project; then : else AX_INSTEAD_IF([$4], [Calling $QMAKE -project failed.]) break fi # Find the .pro file generated by qmake. pro_file=conftest.dir.pro test -f $pro_file || pro_file=`echo *.pro` if test -f "$pro_file"; then : else AX_INSTEAD_IF([$4], [Can't find the .pro file generated by Qmake.]) break fi dnl Tweak the value of QT in the .pro if have been the 1st arg. m4_ifval([$1], [_AT_TWEAK_PRO_FILE([QT], [$1])]) dnl Tweak the value of CONFIG in the .pro if have been given a dnl 2nd arg. m4_ifval([$2], [_AT_TWEAK_PRO_FILE([CONFIG], [$2])]) m4_ifval([$3], [ # Add the extra-settings the user wants to set in the .pro. echo "$3" >>"$pro_file" ]) echo "$as_me:$LINENO: Invoking $QMAKE on $pro_file" \ >& AS_MESSAGE_LOG_FD sed 's/^/| /' "$pro_file" >& AS_MESSAGE_LOG_FD if $QMAKE $at_qmake_args; then : else AX_INSTEAD_IF([$4], [Calling $QMAKE $at_qmake_args failed.]) break fi # QMake has a very annoying misfeature: Sometimes it generates # Makefiles where all the references to the files from the Qt # installation are relative. We can't use them as-is because if # we take, say, a -I../../usr/include/Qt from that Makefile, the # flag is invalid as soon as we use it in another (sub) # directory. So what this perl pass does is that it rewrites all # relative paths to absolute paths. Another problem when # building on Cygwin is that QMake mixes paths with backslashes # and forward slashes and paths must be handled with extra care # because of the stupid Windows drive letters. echo "$as_me:$LINENO: fixing the Makefiles:" Makefile* \ >& AS_MESSAGE_LOG_FD cat >fixmk.pl <<\EOF [ use strict; use Cwd qw(cwd abs_path); # This variable is useful on Cygwin for the following reason: Say # that you are in `/' (that is, in fact you are in C:/cygwin, or # something like that). If you `cd ..' then obviously you remain in # `/' (that is in C:/cygwin). QMake generates paths that are # relative to C:/ (or another drive letter, whatever) so the trick to # get the `..' resolved properly is to prepend the absolute path of # the current working directory in a Windows-style. C:/cygwin/../ # will properly become C:/. my $d = ""; my $r2a = 0; my $b2f = 0; my $cygwin = 0; if ($^O eq "cygwin") { $cygwin = 1; $d = cwd(); $d = `cygpath --mixed '$d'`; chomp($d); $d .= "/"; } sub rel2abs($) { my $p = $d . shift; # print "r2a p=$p"; -e $p || return $p; if ($cygwin) { $p = `cygpath --mixed '$p'`; chomp($p); } else { # Do not use abs_path on Cygwin: it incorrectly resolves the paths # that are relative to C:/ rather than `/'. $p = abs_path($p); } # print " -> $p\n"; ++$r2a; return $p; } # Only useful on Cygwin. sub back2forward($) { my $p = shift; # print "b2f p=$p"; -e $p || return $p; $p = `cygpath --mixed '$p'`; chomp($p); # print " -> $p\n"; ++$b2f; return $p; } foreach my $mk (@ARGV) { next if $mk =~ /~$/; open(MK, $mk) or die("open $mk: $!"); # print "mk=$mk\n"; my $file = join("", ); close(MK) or die("close $mk: $!"); rename $mk, $mk . "~" or die("rename $mk: $!"); $file =~ s{(?:\.\.[\\/])+(?:[^"'\s:]+)}{rel2abs($&)}gse; $file =~ s{(?:[a-zA-Z]:[\\/])?(?:[^"\s]+\\[^"\s:]+)+} {back2forward($&)}gse if $cygwin; open(MK, ">", $mk) or die("open >$mk: $!"); print MK $file; close(MK) or die("close >$mk: $!"); print "$mk: updated $r2a relative paths and $b2f backslash-style paths\n"; $r2a = 0; $b2f = 0; } ] EOF perl >& AS_MESSAGE_LOG_FD -w fixmk.pl Makefile* \ || AC_MSG_WARN([failed to fix the Makefiles generated by $QMAKE]) rm -f fixmk.pl # Try to compile a simple Qt app. AC_CACHE_CHECK([whether we can build a simple Qt application], [at_cv_qt_build], [at_cv_qt_build=ko : ${MAKE=make} if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then at_cv_qt_build='ok, looks like Qt 4' else echo "$as_me:$LINENO: Build failed, trying to #include instead" \ >& AS_MESSAGE_LOG_FD sed 's///' conftest.h > tmp.h \ && mv tmp.h conftest.h if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then at_cv_qt_build='ok, looks like Qt 3' else # Sometimes (such as on Debian) build will fail because Qt # hasn't been installed in debug mode and qmake tries (by # default) to build apps in debug mode => Try again in # release mode. echo "$as_me:$LINENO: Build failed, trying to enforce release mode" \ >& AS_MESSAGE_LOG_FD _AT_TWEAK_PRO_FILE([CONFIG], [+release]) sed 's///' conftest.h > tmp.h \ && mv tmp.h conftest.h if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then at_cv_qt_build='ok, looks like Qt 4, release mode forced' else echo "$as_me:$LINENO: Build failed, trying to #include instead" \ >& AS_MESSAGE_LOG_FD sed 's///' conftest.h > tmp.h \ && mv tmp.h conftest.h if $MAKE >& AS_MESSAGE_LOG_FD 2>&1; then at_cv_qt_build='ok, looks like Qt 3, release mode forced' else at_cv_qt_build=ko echo "$as_me:$LINENO: failed program was:" \ >& AS_MESSAGE_LOG_FD sed 's/^/| /' conftest.h >& AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: failed program was:" \ >& AS_MESSAGE_LOG_FD sed 's/^/| /' conftest.cpp >& AS_MESSAGE_LOG_FD fi # if make with Qt3-style #include and release mode forced. fi # if make with Qt4-style #include and release mode forced. fi # if make with Qt3-style #include. fi # if make with Qt4-style #include. ])dnl end: AC_CACHE_CHECK(at_cv_qt_build) if test x"$at_cv_qt_build" = xko; then AX_INSTEAD_IF([$4], [Cannot build a test Qt program]) cd .. break fi QT_VERSION_MAJOR=`echo "$at_cv_qt_build" | sed 's/[[^0-9]]*//g'` AC_SUBST([QT_VERSION_MAJOR]) # This sed filter is applied after an expression of the form: # /^FOO.*=/!d; it starts by removing the beginning of the line, # removing references to SUBLIBS, removing unnecessary # whitespaces at the beginning, and prefixes all variable uses by # QT_. qt_sed_filter='s///; s/$(SUBLIBS)//g; s/^ *//; s/\$(\(@<:@A-Z_@:>@@<:@A-Z_@:>@*\))/$(QT_\1)/g' # Find the Makefile (qmake happens to generate a fake Makefile # which invokes a Makefile.Debug or Makefile.Release). If we # have both, we'll pick the Makefile.Release. The reason is that # that release uses -Os and debug -g. We can override -Os by # passing another -O but we usually don't override -g. if test -f Makefile.Release; then at_mfile='Makefile.Release' else at_mfile='Makefile' fi if test -f $at_mfile; then : else AX_INSTEAD_IF([$4], [Cannot find the Makefile generated by qmake.]) cd .. break fi # Find the DEFINES of Qt (should have been named CPPFLAGS). AC_CACHE_CHECK([for the DEFINES to use with Qt], [at_cv_env_QT_DEFINES], [at_cv_env_QT_DEFINES=`sed "/^DEFINES@<:@^A-Z=@:>@*=/!d; $qt_sed_filter" $at_mfile`]) AC_SUBST([QT_DEFINES], [$at_cv_env_QT_DEFINES]) # Find the CFLAGS of Qt. (We can use Qt in C?!) AC_CACHE_CHECK([for the CFLAGS to use with Qt], [at_cv_env_QT_CFLAGS], [at_cv_env_QT_CFLAGS=`sed "/^CFLAGS@<:@^A-Z=@:>@*=/!d; $qt_sed_filter" $at_mfile`]) AC_SUBST([QT_CFLAGS], [$at_cv_env_QT_CFLAGS]) # Find the CXXFLAGS of Qt. AC_CACHE_CHECK([for the CXXFLAGS to use with Qt], [at_cv_env_QT_CXXFLAGS], [at_cv_env_QT_CXXFLAGS=`sed "/^CXXFLAGS@<:@^A-Z=@:>@*=/!d; $qt_sed_filter" $at_mfile`]) AC_SUBST([QT_CXXFLAGS], [$at_cv_env_QT_CXXFLAGS]) # Find the INCPATH of Qt. AC_CACHE_CHECK([for the INCPATH to use with Qt], [at_cv_env_QT_INCPATH], [at_cv_env_QT_INCPATH=`sed "/^INCPATH@<:@^A-Z=@:>@*=/!d; $qt_sed_filter" $at_mfile`]) AC_SUBST([QT_INCPATH], [$at_cv_env_QT_INCPATH]) AC_SUBST([QT_CPPFLAGS], ["$at_cv_env_QT_DEFINES $at_cv_env_QT_INCPATH"]) # Find the LFLAGS of Qt (Should have been named LDFLAGS). AC_CACHE_CHECK([for the LDFLAGS to use with Qt], [at_cv_env_QT_LDFLAGS], [at_cv_env_QT_LDFLAGS=`sed "/^LFLAGS@<:@^A-Z=@:>@*=/!d; $qt_sed_filter" $at_mfile`]) AC_SUBST([QT_LFLAGS], [$at_cv_env_QT_LDFLAGS]) AC_SUBST([QT_LDFLAGS], [$at_cv_env_QT_LDFLAGS]) # Find the LIBS of Qt. AC_CACHE_CHECK([for the LIBS to use with Qt], [at_cv_env_QT_LIBS], [at_cv_env_QT_LIBS=`sed "/^LIBS@<:@^A-Z@:>@*=/!d; $qt_sed_filter" $at_mfile` if test x$at_darwin = xyes; then # Fix QT_LIBS: as of today Libtool (GNU Libtool 1.5.23a) # doesn't handle -F properly. The "bug" has been fixed on 22 # October 2006 by Peter O'Gorman but we provide backward # compatibility here. at_cv_env_QT_LIBS=`echo "$at_cv_env_QT_LIBS" \ | sed 's/^-F/-Wl,-F/; s/ -F/ -Wl,-F/g'` fi]) AC_SUBST([QT_LIBS], [$at_cv_env_QT_LIBS]) cd .. && rm -rf conftest.dir # Run the user code $5 done # end hack (useless FOR to be able to use break) ]) # AT_REQUIRE_QT_VERSION(QT_version, [RUN-IF-FAILED], [RUN-IF-OK]) # --------------------------------------------------------------- # Check (using qmake) that Qt's version "matches" QT_version. Must be # run *after* AT_WITH_QT. Requires autoconf 2.60. # # This macro is ignored if Qt support has been disabled (using # `--with-qt=no' or `--without-qt'). # # RUN-IF-FAILED is arbitrary code to execute if Qt cannot be found or # if any problem happens. If this argument is omitted, then # AC_MSG_ERROR will be called. RUN-IF-OK is arbitrary code to execute # if Qt was successfully found. AC_DEFUN([AT_REQUIRE_QT_VERSION], [AC_PREREQ([2.60]) # this is a hack to get decent flow control with `break' for _qt_ignored in once; do if test x"$with_qt" = x"no"; then break fi if test x"$QMAKE" = x; then AX_INSTEAD_IF([$2], [\$QMAKE is empty. Did you invoke AT@&t@_WITH_QT before AT@&t@_REQUIRE_QT_VERSION?]) break fi AC_CACHE_CHECK([for Qt's version], [at_cv_QT_VERSION], [echo "$as_me:$LINENO: Running $QMAKE --version:" \ >& AS_MESSAGE_LOG_FD $QMAKE --version >& AS_MESSAGE_LOG_FD 2>&1 qmake_version_sed=['/^.*\([0-9]\.[0-9]\.[0-9]\).*$/!d;s//\1/'] at_cv_QT_VERSION=`$QMAKE --version 2>&1 \ | sed "$qmake_version_sed"`]) if test x"$at_cv_QT_VERSION" = x; then AX_INSTEAD_IF([$2], [Cannot detect Qt's version.]) break fi AC_SUBST([QT_VERSION], [$at_cv_QT_VERSION]) AS_VERSION_COMPARE([$QT_VERSION], [$1], [AX_INSTEAD_IF([$2], [This package requires Qt $1 or above.]) break]) # Run the user code $3 done # end hack (useless for to be able to use break) ]) # _AT_TWEAK_PRO_FILE(QT_VAR, VALUE) # --------------------------------- # @internal. Tweak the variable QT_VAR in the .pro file. VALUE is an # IFS-separated list of value, and each value is rewritten as follows: # # +value => QT_VAR += value # -value => QT_VAR -= value # value => QT_VAR += value AC_DEFUN([_AT_TWEAK_PRO_FILE], [ # Tweak the value of $1 in the .pro file for $2. qt_conf='' for at_mod in $2; do at_mod=`echo "$at_mod" | sed 's/^-//; tough s/^+//; beef :ough s/^/$1 -= /;n :eef s/^/$1 += /'` qt_conf="\ $qt_conf $at_mod" done echo "$qt_conf" | sed 1d >>"$pro_file" ]) ttfautohint-0.97/m4/ltlize_lang.m40000644000175000001440000000223211660772556014043 00000000000000# Copyright 2011 Nicolai Stange # # 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 . AC_DEFUN([LT_LTLIZE_LANG], [AC_REQUIRE([LT_OUTPUT])] [AC_LANG_DEFINE([LTLIZED $1], [lt_[]_AC_LANG_DISPATCH([_AC_LANG_ABBREV], [$1])], [LT_[]_AC_LANG_DISPATCH([_AC_LANG_PREFIX], [$1])], [_AC_LANG_DISPATCH([_AC_CC], [$1])], [$1], [_AC_LANG_DISPATCH([AC_LANG], [$1])])] [m4_append([AC_LANG(LTLIZED $1)], [ac_link="$ac_compile; ./libtool --mode=link `echo $ac_link | sed 's/\$ac_ext/\$ac_objext/'`"])] [m4_ifdef([AC_LANG_COMPILER($1)], [m4_copy([AC_LANG_COMPILER($1)], [AC_LANG_COMPILER(LTLIZED $1)])])] )dnl ttfautohint-0.97/configure0000755000175000001440000317726112237364305012674 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for ttfautohint 0.97. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2012 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 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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. 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 # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # 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 test -z "$as_dir" && as_dir=. 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 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # 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'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 as_fn_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="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 " 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 exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || 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 \$(( 1 + 1 )) = 2 || 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" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else 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 test -z "$as_dir" && as_dir=. 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_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS 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'. $as_echo "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: freetype-devel@nongnu.org about your system, including $0: any error possibly output before this message. Then $0: install a modern shell, or manually run the script $0: 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_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=`$as_echo "$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 || $as_echo 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_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_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # 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 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$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 || $as_echo 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" || { $as_echo "$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 } 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 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'" as_awk_strverscmp=' # Use only awk features that work with 7th edition Unix awk (1978). # My, what an old awk you have, Mr. Solaris! END { while (length(v1) && length(v2)) { # Set d1 to be the next thing to compare from v1, and likewise for d2. # Normally this is a single character, but if v1 and v2 contain digits, # compare them as integers and fractions as strverscmp does. if (v1 ~ /^[0-9]/ && v2 ~ /^[0-9]/) { # Split v1 and v2 into their leading digit string components d1 and d2, # and advance v1 and v2 past the leading digit strings. for (len1 = 1; substr(v1, len1 + 1) ~ /^[0-9]/; len1++) continue for (len2 = 1; substr(v2, len2 + 1) ~ /^[0-9]/; len2++) continue d1 = substr(v1, 1, len1); v1 = substr(v1, len1 + 1) d2 = substr(v2, 1, len2); v2 = substr(v2, len2 + 1) if (d1 ~ /^0/) { if (d2 ~ /^0/) { # Compare two fractions. while (d1 ~ /^0/ && d2 ~ /^0/) { d1 = substr(d1, 2); len1-- d2 = substr(d2, 2); len2-- } if (len1 != len2 && ! (len1 && len2 && substr(d1, 1, 1) == substr(d2, 1, 1))) { # The two components differ in length, and the common prefix # contains only leading zeros. Consider the longer to be less. d1 = -len1 d2 = -len2 } else { # Otherwise, compare as strings. d1 = "x" d1 d2 = "x" d2 } } else { # A fraction is less than an integer. exit 1 } } else { if (d2 ~ /^0/) { # An integer is greater than a fraction. exit 2 } else { # Compare two integers. d1 += 0 d2 += 0 } } } else { # The normal case, without worrying about digits. d1 = substr(v1, 1, 1); v1 = substr(v1, 2) d2 = substr(v2, 1, 1); v2 = substr(v2, 2) } if (d1 < d2) exit 1 if (d1 > d2) exit 2 } # Beware Solaris /usr/xgp4/bin/awk (at least through Solaris 10), # which mishandles some comparisons of empty strings to integers. if (length(v2)) exit 1 if (length(v1)) exit 2 } ' 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='ttfautohint' PACKAGE_TARNAME='ttfautohint' PACKAGE_VERSION='0.97' PACKAGE_STRING='ttfautohint 0.97' PACKAGE_BUGREPORT='freetype-devel@nongnu.org' PACKAGE_URL='' # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" gl_use_threads_default= gl_header_list= gl_func_list= gl_getopt_required=POSIX gl_getopt_required=POSIX ac_subst_vars='gltests_LTLIBOBJS gltests_LIBOBJS gl_LTLIBOBJS gl_LIBOBJS am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS WITH_DOC_FALSE WITH_DOC_TRUE LATEX PANDOC INKSCAPE IMPORT HELP2MAN FREETYPE_LIBS FREETYPE_CPPFLAGS ft_config CXXCPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL DLLTOOL OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED LIBTOOL USE_QT_FALSE USE_QT_TRUE QT_VERSION QT_LIBS QT_LDFLAGS QT_LFLAGS QT_CPPFLAGS QT_INCPATH QT_CXXFLAGS QT_CFLAGS QT_DEFINES QT_VERSION_MAJOR RCC UIC MOC QMAKE QT_PATH gltests_WITNESS HAVE_UNISTD_H NEXT_AS_FIRST_DIRECTIVE_UNISTD_H NEXT_UNISTD_H WINDOWS_64_BIT_OFF_T NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H NEXT_SYS_TYPES_H NEXT_AS_FIRST_DIRECTIVE_STRING_H NEXT_STRING_H HAVE_WINSOCK2_H GL_GENERATE_STDINT_H_FALSE GL_GENERATE_STDINT_H_TRUE STDINT_H WINT_T_SUFFIX WCHAR_T_SUFFIX SIG_ATOMIC_T_SUFFIX SIZE_T_SUFFIX PTRDIFF_T_SUFFIX HAVE_SIGNED_WINT_T HAVE_SIGNED_WCHAR_T HAVE_SIGNED_SIG_ATOMIC_T BITSIZEOF_WINT_T BITSIZEOF_WCHAR_T BITSIZEOF_SIG_ATOMIC_T BITSIZEOF_SIZE_T BITSIZEOF_PTRDIFF_T HAVE_SYS_BITYPES_H HAVE_SYS_INTTYPES_H HAVE_STDINT_H NEXT_AS_FIRST_DIRECTIVE_STDINT_H NEXT_STDINT_H HAVE_SYS_TYPES_H HAVE_INTTYPES_H HAVE_WCHAR_H HAVE_UNSIGNED_LONG_LONG_INT HAVE_LONG_LONG_INT NEXT_AS_FIRST_DIRECTIVE_STDDEF_H NEXT_STDDEF_H GL_GENERATE_STDDEF_H_FALSE GL_GENERATE_STDDEF_H_TRUE STDDEF_H HAVE_WCHAR_T REPLACE_NULL APPLE_UNIVERSAL_BUILD HAVE_MSVC_INVALID_PARAMETER_HANDLER UNDEFINE_STRTOK_R REPLACE_STRTOK_R REPLACE_STRSIGNAL REPLACE_STRNLEN REPLACE_STRNDUP REPLACE_STRNCAT REPLACE_STRERROR_R REPLACE_STRERROR REPLACE_STRCHRNUL REPLACE_STRCASESTR REPLACE_STRSTR REPLACE_STRDUP REPLACE_STPNCPY REPLACE_MEMMEM REPLACE_MEMCHR HAVE_STRVERSCMP HAVE_DECL_STRSIGNAL HAVE_DECL_STRERROR_R HAVE_DECL_STRTOK_R HAVE_STRCASESTR HAVE_STRSEP HAVE_STRPBRK HAVE_DECL_STRNLEN HAVE_DECL_STRNDUP HAVE_DECL_STRDUP HAVE_STRCHRNUL HAVE_STPNCPY HAVE_STPCPY HAVE_RAWMEMCHR HAVE_DECL_MEMRCHR HAVE_MEMPCPY HAVE_DECL_MEMMEM HAVE_MEMCHR HAVE_FFSLL HAVE_FFSL HAVE_MBSLEN GNULIB_STRVERSCMP GNULIB_STRSIGNAL GNULIB_STRERROR_R GNULIB_STRERROR GNULIB_MBSTOK_R GNULIB_MBSSEP GNULIB_MBSSPN GNULIB_MBSPBRK GNULIB_MBSCSPN GNULIB_MBSCASESTR GNULIB_MBSPCASECMP GNULIB_MBSNCASECMP GNULIB_MBSCASECMP GNULIB_MBSSTR GNULIB_MBSRCHR GNULIB_MBSCHR GNULIB_MBSNLEN GNULIB_MBSLEN GNULIB_STRTOK_R GNULIB_STRCASESTR GNULIB_STRSTR GNULIB_STRSEP GNULIB_STRPBRK GNULIB_STRNLEN GNULIB_STRNDUP GNULIB_STRNCAT GNULIB_STRDUP GNULIB_STRCHRNUL GNULIB_STPNCPY GNULIB_STPCPY GNULIB_RAWMEMCHR GNULIB_MEMRCHR GNULIB_MEMPCPY GNULIB_MEMMEM GNULIB_MEMCHR GNULIB_FFSLL GNULIB_FFSL LTLIBMULTITHREAD LIBMULTITHREAD LTLIBTHREAD LIBTHREAD LIBPTH_PREFIX LTLIBPTH LIBPTH LTLIBINTL LIBINTL GNULIB_GL_UNISTD_H_GETOPT GETOPT_H HAVE_GETOPT_H NEXT_AS_FIRST_DIRECTIVE_GETOPT_H NEXT_GETOPT_H UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS UNISTD_H_HAVE_WINSOCK2_H REPLACE_WRITE REPLACE_USLEEP REPLACE_UNLINKAT REPLACE_UNLINK REPLACE_TTYNAME_R REPLACE_SYMLINK REPLACE_SLEEP REPLACE_RMDIR REPLACE_READLINK REPLACE_READ REPLACE_PWRITE REPLACE_PREAD REPLACE_LSEEK REPLACE_LINKAT REPLACE_LINK REPLACE_LCHOWN REPLACE_ISATTY REPLACE_GETPAGESIZE REPLACE_GETGROUPS REPLACE_GETLOGIN_R REPLACE_GETDTABLESIZE REPLACE_GETDOMAINNAME REPLACE_GETCWD REPLACE_FTRUNCATE REPLACE_FCHOWNAT REPLACE_DUP2 REPLACE_DUP REPLACE_CLOSE REPLACE_CHOWN HAVE_SYS_PARAM_H HAVE_OS_H HAVE_DECL_TTYNAME_R HAVE_DECL_SETHOSTNAME HAVE_DECL_GETUSERSHELL HAVE_DECL_GETPAGESIZE HAVE_DECL_GETLOGIN_R HAVE_DECL_GETDOMAINNAME HAVE_DECL_FDATASYNC HAVE_DECL_FCHDIR HAVE_DECL_ENVIRON HAVE_USLEEP HAVE_UNLINKAT HAVE_SYMLINKAT HAVE_SYMLINK HAVE_SLEEP HAVE_SETHOSTNAME HAVE_READLINKAT HAVE_READLINK HAVE_PWRITE HAVE_PREAD HAVE_PIPE2 HAVE_PIPE HAVE_LINKAT HAVE_LINK HAVE_LCHOWN HAVE_GROUP_MEMBER HAVE_GETPAGESIZE HAVE_GETLOGIN HAVE_GETHOSTNAME HAVE_GETGROUPS HAVE_GETDTABLESIZE HAVE_FTRUNCATE HAVE_FSYNC HAVE_FDATASYNC HAVE_FCHOWNAT HAVE_FCHDIR HAVE_FACCESSAT HAVE_EUIDACCESS HAVE_DUP3 HAVE_DUP2 HAVE_CHOWN GNULIB_WRITE GNULIB_USLEEP GNULIB_UNLINKAT GNULIB_UNLINK GNULIB_UNISTD_H_SIGPIPE GNULIB_UNISTD_H_NONBLOCKING GNULIB_TTYNAME_R GNULIB_SYMLINKAT GNULIB_SYMLINK GNULIB_SLEEP GNULIB_SETHOSTNAME GNULIB_RMDIR GNULIB_READLINKAT GNULIB_READLINK GNULIB_READ GNULIB_PWRITE GNULIB_PREAD GNULIB_PIPE2 GNULIB_PIPE GNULIB_LSEEK GNULIB_LINKAT GNULIB_LINK GNULIB_LCHOWN GNULIB_ISATTY GNULIB_GROUP_MEMBER GNULIB_GETUSERSHELL GNULIB_GETPAGESIZE GNULIB_GETLOGIN_R GNULIB_GETLOGIN GNULIB_GETHOSTNAME GNULIB_GETGROUPS GNULIB_GETDTABLESIZE GNULIB_GETDOMAINNAME GNULIB_GETCWD GNULIB_FTRUNCATE GNULIB_FSYNC GNULIB_FDATASYNC GNULIB_FCHOWNAT GNULIB_FCHDIR GNULIB_FACCESSAT GNULIB_EUIDACCESS GNULIB_ENVIRON GNULIB_DUP3 GNULIB_DUP2 GNULIB_DUP GNULIB_CLOSE GNULIB_CHOWN GNULIB_CHDIR NEXT_AS_FIRST_DIRECTIVE_FCNTL_H NEXT_FCNTL_H REPLACE_OPENAT REPLACE_OPEN REPLACE_FCNTL HAVE_OPENAT HAVE_FCNTL GNULIB_OPENAT GNULIB_OPEN GNULIB_NONBLOCKING GNULIB_FCNTL EOVERFLOW_VALUE EOVERFLOW_HIDDEN ENOLINK_VALUE ENOLINK_HIDDEN EMULTIHOP_VALUE EMULTIHOP_HIDDEN GL_GENERATE_ERRNO_H_FALSE GL_GENERATE_ERRNO_H_TRUE ERRNO_H NEXT_AS_FIRST_DIRECTIVE_ERRNO_H NEXT_ERRNO_H PRAGMA_COLUMNS PRAGMA_SYSTEM_HEADER INCLUDE_NEXT_AS_FIRST_DIRECTIVE INCLUDE_NEXT GL_COND_LIBTOOL_FALSE GL_COND_LIBTOOL_TRUE host_os host_vendor host_cpu host build_os build_vendor build_cpu build RANLIB ARFLAGS ac_ct_AR AR am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX EGREP GREP CPP am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC 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_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir 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' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking enable_threads with_gnu_ld enable_rpath with_libpth_prefix with_qt enable_shared enable_static with_pic enable_fast_install with_sysroot enable_libtool_lock with_doc with_freetype_config ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CPP CXX CXXFLAGS CCC QT_PATH QMAKE MOC UIC RCC 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' 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 # Accept the important Cygnus configure options, so we can diagnose typos. 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=`$as_echo "$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=`$as_echo "$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 ;; -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=`$as_echo "$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=`$as_echo "$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. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$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" ;; *) $as_echo "$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 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 || $as_echo 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 ttfautohint 0.97 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] --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/ttfautohint] --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] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of ttfautohint 0.97:";; 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-threads={posix|solaris|pth|windows} specify multithreading API --disable-threads build without multithread safety --disable-rpath do not hardcode runtime library paths --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-libpth-prefix[=DIR] search for libpth in DIR/include and DIR/lib --without-libpth-prefix don't search for libpth in includedir and libdir --with-qt[=ARG] Qt support. ARG can be `yes' (the default), `no', or a path to Qt binaries; if `yes' or empty, use PATH and some default directories to find Qt binaries --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --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-doc install documentation [default=yes] --with-freetype-config=PROG use FreeType configuration program PROG Some influential environment variables: CC C compiler command CFLAGS 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 CPP C preprocessor CXX C++ compiler command CXXFLAGS C++ compiler flags QT_PATH path to Qt binaries QMAKE Qt Makefile generator command MOC Qt Meta Object Compiler command UIC Qt User Interface Compiler command RCC Qt Resource Compiler command 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 . _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=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$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 guested configure. 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 $as_echo "$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 ttfautohint configure 0.97 generated by GNU Autoconf 2.69 Copyright (C) 2012 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_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 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\"" $as_echo "$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 $as_echo "$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_echo "$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_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_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\"" $as_echo "$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 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$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_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval \${$3+:} false; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ---------------------------------------- ## ## Report this to freetype-devel@nongnu.org ## ## ---------------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi 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_run # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else 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 eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # 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 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\"" $as_echo "$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 $as_echo "$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_echo "$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_compute_int LINENO EXPR VAR INCLUDES # -------------------------------------------- # Tries to find the compile-time value of EXPR in a program that includes # INCLUDES, setting VAR accordingly. Returns whether the value could be # computed ac_fn_c_compute_int () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=0 ac_mid=0 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid; break else as_fn_arith $ac_mid + 1 && ac_lo=$as_val if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) < 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=-1 ac_mid=-1 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) >= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_lo=$ac_mid; break else as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done else ac_lo= ac_hi= fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_hi=$ac_mid else as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext done case $ac_lo in #(( ?*) eval "$3=\$ac_lo"; ac_retval=0 ;; '') ac_retval=1 ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 static long int longval () { return $2; } static unsigned long int ulongval () { return $2; } #include #include int main () { FILE *f = fopen ("conftest.val", "w"); if (! f) return 1; if (($2) < 0) { long int i = longval (); if (i != ($2)) return 1; fprintf (f, "%ld", i); } else { unsigned long int i = ulongval (); if (i != ($2)) return 1; fprintf (f, "%lu", i); } /* Do not output a trailing newline, as this causes \r\n confusion on some platforms. */ return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : echo >>conftest.val; read $3 &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 $as_echo "$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_echo "$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_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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else 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. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #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 () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else eval "$3=yes" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type # ac_fn_c_check_decl LINENO SYMBOL VAR INCLUDES # --------------------------------------------- # Tests whether SYMBOL is declared in INCLUDES, setting cache variable VAR # accordingly. ac_fn_c_check_decl () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack as_decl_name=`echo $2|sed 's/ *(.*//'` as_decl_use=`echo $2|sed -e 's/(/((/' -e 's/)/) 0&/' -e 's/,/) 0& (/g'` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $as_decl_name is declared" >&5 $as_echo_n "checking whether $as_decl_name is declared... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main () { #ifndef $as_decl_name #ifdef __cplusplus (void) $as_decl_use; #else (void) $as_decl_name; #endif #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_decl # ac_fn_c_find_uintX_t LINENO BITS VAR # ------------------------------------ # Finds an unsigned integer type with width BITS, setting cache variable VAR # accordingly. ac_fn_c_find_uintX_t () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for uint$2_t" >&5 $as_echo_n "checking for uint$2_t... " >&6; } if eval \${$3+:} false; then : $as_echo_n "(cached) " >&6 else eval "$3=no" # Order is important - never check a type that is potentially smaller # than half of the expected target width. for ac_type in uint$2_t 'unsigned int' 'unsigned long int' \ 'unsigned long long int' 'unsigned short int' 'unsigned char'; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main () { static int test_array [1 - 2 * !((($ac_type) -1 >> ($2 / 2 - 1)) >> ($2 / 2 - 1) == 3)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : case $ac_type in #( uint$2_t) : eval "$3=yes" ;; #( *) : eval "$3=\$ac_type" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if eval test \"x\$"$3"\" = x"no"; then : else break fi done fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_find_uintX_t # 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\"" $as_echo "$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 $as_echo "$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_echo "$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$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\"" $as_echo "$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 $as_echo "$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_echo "$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_lt_c_try_run LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_lt_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack 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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi 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_lt_c_try_run 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 ttfautohint $as_me 0.97, which was generated by GNU Autoconf 2.69. Invocation command line was $ $0 $@ _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 test -z "$as_dir" && as_dir=. $as_echo "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=`$as_echo "$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=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## 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_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$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 $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$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 $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi gl_header_list="$gl_header_list unistd.h" gl_func_list="$gl_func_list symlink" gl_getopt_required=GNU gl_header_list="$gl_header_list getopt.h" gl_header_list="$gl_header_list sys/mman.h" gl_func_list="$gl_func_list mprotect" gl_func_list="$gl_func_list _set_invalid_parameter_handler" gl_header_list="$gl_header_list wchar.h" gl_header_list="$gl_header_list stdint.h" gl_header_list="$gl_header_list sys/socket.h" gl_func_list="$gl_func_list strerror_r" gl_func_list="$gl_func_list __xpg_strerror_r" gl_func_list="$gl_func_list catgets" gl_func_list="$gl_func_list snprintf" # 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,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$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=`$as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`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 ac_aux_dir= for ac_dir in gnulib "$srcdir"/gnulib; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in gnulib \"$srcdir\"/gnulib" "$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. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. am__api_version='1.14' # 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if ${ac_cv_path_install+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. 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+set}" = set; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$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' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "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=`$as_echo "$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 case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if ${ac_cv_path_mkdir+:} false; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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 (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ '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+set}" = set; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AWK+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval \${ac_cv_prog_make_${ac_make}_set+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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+set}" = set; 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} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else 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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$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='ttfautohint' VERSION='0.97' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # 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. 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 # Check whether --enable-silent-rules was given. if test "${enable_silent_rules+set}" = set; then : enableval=$enable_silent_rules; fi case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; *) AM_DEFAULT_VERBOSITY=0;; esac am_make=${MAKE-make} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 $as_echo_n "checking whether $am_make supports nested variables... " >&6; } if ${am_cv_make_support_nested_variables+:} false; then : $as_echo_n "(cached) " >&6 else 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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 $as_echo "$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='\' DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; 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 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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. $as_echo "$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\"" $as_echo "$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 $as_echo "$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 () { ; 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$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+set}" = set && 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 ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$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_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$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 () { 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$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 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if ${ac_cv_objext+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$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_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else 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 () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*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 don't provoke an error unfortunately, instead are silently treated as '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's necessary to write '\x00'==0 to get something that's 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 **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _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 test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi 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 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$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=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 depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$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 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # 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. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # 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_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # 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_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # 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. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # 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_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # 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_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if ${ac_cv_path_GREP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if ${ac_cv_path_EGREP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if ${ac_cv_header_stdc+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_fn_c_check_header_mongrel "$LINENO" "minix/config.h" "ac_cv_header_minix_config_h" "$ac_includes_default" if test "x$ac_cv_header_minix_config_h" = xyes; then : MINIX=yes else MINIX= fi if test "$MINIX" = yes; then $as_echo "#define _POSIX_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_1_SOURCE 2" >>confdefs.h $as_echo "#define _MINIX 1" >>confdefs.h $as_echo "#define _NETBSD_SOURCE 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 $as_echo_n "checking whether it is safe to define __EXTENSIONS__... " >&6; } if ${ac_cv_safe_to_define___extensions__+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_safe_to_define___extensions__=yes else ac_cv_safe_to_define___extensions__=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 $as_echo "$ac_cv_safe_to_define___extensions__" >&6; } test $ac_cv_safe_to_define___extensions__ = yes && $as_echo "#define __EXTENSIONS__ 1" >>confdefs.h $as_echo "#define _ALL_SOURCE 1" >>confdefs.h $as_echo "#define _DARWIN_C_SOURCE 1" >>confdefs.h $as_echo "#define _GNU_SOURCE 1" >>confdefs.h $as_echo "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h $as_echo "#define _TANDEM_SOURCE 1" >>confdefs.h { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5 $as_echo_n "checking whether _XOPEN_SOURCE should be defined... " >&6; } if ${ac_cv_should_define__xopen_source+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_should_define__xopen_source=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include mbstate_t x; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _XOPEN_SOURCE 500 #include mbstate_t x; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_should_define__xopen_source=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5 $as_echo "$ac_cv_should_define__xopen_source" >&6; } test $ac_cv_should_define__xopen_source = yes && $as_echo "#define _XOPEN_SOURCE 500" >>confdefs.h 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if ${ac_cv_prog_CPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # 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. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # 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_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # 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_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # 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. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # 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_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # 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_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5; } fi 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 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CC+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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. $as_echo "$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\"" $as_echo "$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 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if ${ac_cv_c_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if ${ac_cv_prog_cc_g+:} false; then : $as_echo_n "(cached) " >&6 else 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 () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if ${ac_cv_prog_cc_c89+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*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 don't provoke an error unfortunately, instead are silently treated as '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's necessary to write '\x00'==0 to get something that's 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 **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _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 test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi 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 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 $as_echo_n "checking whether $CC understands -c and -o together... " >&6; } if ${am_cv_prog_cc_c_o+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 $as_echo "$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=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 depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CC_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$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 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 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_CXX+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_CXX+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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. $as_echo "$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\"" $as_echo "$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 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if ${ac_cv_cxx_compiler_gnu+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if ${ac_cv_prog_cxx_g+:} false; then : $as_echo_n "(cached) " >&6 else 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 () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; 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_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 depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if ${am_cv_CXX_dependencies_compiler_type+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$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 # AM_PROG_AR is new in automake 1.11.2; # however, MinGW doesn't have it yet (May 2012) if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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} { $as_echo "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 $as_echo_n "checking the archiver ($AR) interface... " >&6; } if ${am_cv_ar_interface+:} false; then : $as_echo_n "(cached) " >&6 else 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 am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 $as_echo "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # 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__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Minix Amsterdam compiler" >&5 $as_echo_n "checking for Minix Amsterdam compiler... " >&6; } if ${gl_cv_c_amsterdam_compiler+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __ACK__ Amsterdam #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Amsterdam" >/dev/null 2>&1; then : gl_cv_c_amsterdam_compiler=yes else gl_cv_c_amsterdam_compiler=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_c_amsterdam_compiler" >&5 $as_echo "$gl_cv_c_amsterdam_compiler" >&6; } if test -z "$AR"; then if test $gl_cv_c_amsterdam_compiler = yes; then AR='cc -c.a' if test -z "$ARFLAGS"; then ARFLAGS='-o' fi else if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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}ar" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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="ar" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_AR" = x; then AR="ar" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi else AR="$ac_cv_prog_AR" fi if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi else if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi if test -z "$RANLIB"; then if test $gl_cv_c_amsterdam_compiler = yes; then RANLIB=':' else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 fi fi # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if ${ac_cv_build+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if ${ac_cv_host+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$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 # Check whether --enable-threads was given. if test "${enable_threads+set}" = set; then : enableval=$enable_threads; gl_use_threads=$enableval else if test -n "$gl_use_threads_default"; then gl_use_threads="$gl_use_threads_default" else case "$host_os" in osf*) gl_use_threads=no ;; cygwin*) case `uname -r` in 1.[0-5].*) gl_use_threads=no ;; *) gl_use_threads=yes ;; esac ;; *) gl_use_threads=yes ;; esac fi fi if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # For using : case "$host_os" in osf*) # On OSF/1, the compiler needs the flag -D_REENTRANT so that it # groks . cc also understands the flag -pthread, but # we don't use it because 1. gcc-2.95 doesn't understand -pthread, # 2. putting a flag into CPPFLAGS that has an effect on the linker # causes the AC_LINK_IFELSE test below to succeed unexpectedly, # leading to wrong values of LIBTHREAD and LTLIBTHREAD. CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac # Some systems optimize for single-threaded programs by default, and # need special flags to disable these optimizations. For example, the # definition of 'errno' in . case "$host_os" in aix* | freebsd*) CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" ;; solaris*) CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac fi # Code from module errno: # Code from module extensions: # Code from module extern-inline: # Code from module fcntl-h: # Code from module getopt-gnu: # Code from module getopt-posix: # Code from module gettext-h: # Code from module git-version-gen: # Code from module havelib: # Code from module include_next: # Code from module isatty: # Code from module lock: # Code from module memchr: # Code from module memmem-simple: # Code from module msvc-inval: # Code from module msvc-nothrow: # Code from module multiarch: # Code from module nocrash: # Code from module snippet/arg-nonnull: # Code from module snippet/c++defs: # Code from module snippet/warn-on-use: # Code from module ssize_t: # Code from module stddef: # Code from module stdint: # Code from module strerror-override: # Code from module strerror_r-posix: # Code from module string: # Code from module sys_types: # Code from module threadlib: # Code from module unistd: LIBC_FATAL_STDERR_=1 export LIBC_FATAL_STDERR_ { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the preprocessor supports include_next" >&5 $as_echo_n "checking whether the preprocessor supports include_next... " >&6; } if ${gl_cv_have_include_next+:} false; then : $as_echo_n "(cached) " >&6 else rm -rf conftestd1a conftestd1b conftestd2 mkdir conftestd1a conftestd1b conftestd2 cat < conftestd1a/conftest.h #define DEFINED_IN_CONFTESTD1 #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd1b/conftest.h #define DEFINED_IN_CONFTESTD1 #include #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd2/conftest.h #ifndef DEFINED_IN_CONFTESTD1 #error "include_next test doesn't work" #endif #define DEFINED_IN_CONFTESTD2 EOF gl_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_have_include_next=yes else CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_have_include_next=buggy else gl_cv_have_include_next=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CPPFLAGS="$gl_save_CPPFLAGS" rm -rf conftestd1a conftestd1b conftestd2 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_have_include_next" >&5 $as_echo "$gl_cv_have_include_next" >&6; } PRAGMA_SYSTEM_HEADER= if test $gl_cv_have_include_next = yes; then INCLUDE_NEXT=include_next INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next if test -n "$GCC"; then PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' fi else if test $gl_cv_have_include_next = buggy; then INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next else INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether system header files limit the line length" >&5 $as_echo_n "checking whether system header files limit the line length... " >&6; } if ${gl_cv_pragma_columns+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __TANDEM choke me #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "choke me" >/dev/null 2>&1; then : gl_cv_pragma_columns=yes else gl_cv_pragma_columns=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_pragma_columns" >&5 $as_echo "$gl_cv_pragma_columns" >&6; } if test $gl_cv_pragma_columns = yes; then PRAGMA_COLUMNS="#pragma COLUMNS 10000" else PRAGMA_COLUMNS= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for complete errno.h" >&5 $as_echo_n "checking for complete errno.h... " >&6; } if ${gl_cv_header_errno_h_complete+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if !defined ETXTBSY booboo #endif #if !defined ENOMSG booboo #endif #if !defined EIDRM booboo #endif #if !defined ENOLINK booboo #endif #if !defined EPROTO booboo #endif #if !defined EMULTIHOP booboo #endif #if !defined EBADMSG booboo #endif #if !defined EOVERFLOW booboo #endif #if !defined ENOTSUP booboo #endif #if !defined ENETRESET booboo #endif #if !defined ECONNABORTED booboo #endif #if !defined ESTALE booboo #endif #if !defined EDQUOT booboo #endif #if !defined ECANCELED booboo #endif #if !defined EOWNERDEAD booboo #endif #if !defined ENOTRECOVERABLE booboo #endif #if !defined EILSEQ booboo #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "booboo" >/dev/null 2>&1; then : gl_cv_header_errno_h_complete=no else gl_cv_header_errno_h_complete=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_complete" >&5 $as_echo "$gl_cv_header_errno_h_complete" >&6; } if test $gl_cv_header_errno_h_complete = yes; then ERRNO_H='' else if test $gl_cv_have_include_next = yes; then gl_cv_next_errno_h='<'errno.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_errno_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'errno.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_errno_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_errno_h" >&5 $as_echo "$gl_cv_next_errno_h" >&6; } fi NEXT_ERRNO_H=$gl_cv_next_errno_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'errno.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_errno_h fi NEXT_AS_FIRST_DIRECTIVE_ERRNO_H=$gl_next_as_first_directive ERRNO_H='errno.h' fi if test -n "$ERRNO_H"; then GL_GENERATE_ERRNO_H_TRUE= GL_GENERATE_ERRNO_H_FALSE='#' else GL_GENERATE_ERRNO_H_TRUE='#' GL_GENERATE_ERRNO_H_FALSE= fi if test -n "$ERRNO_H"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EMULTIHOP value" >&5 $as_echo_n "checking for EMULTIHOP value... " >&6; } if ${gl_cv_header_errno_h_EMULTIHOP+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef EMULTIHOP yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then : gl_cv_header_errno_h_EMULTIHOP=yes else gl_cv_header_errno_h_EMULTIHOP=no fi rm -f conftest* if test $gl_cv_header_errno_h_EMULTIHOP = no; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _XOPEN_SOURCE_EXTENDED 1 #include #ifdef EMULTIHOP yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then : gl_cv_header_errno_h_EMULTIHOP=hidden fi rm -f conftest* if test $gl_cv_header_errno_h_EMULTIHOP = hidden; then if ac_fn_c_compute_int "$LINENO" "EMULTIHOP" "gl_cv_header_errno_h_EMULTIHOP" " #define _XOPEN_SOURCE_EXTENDED 1 #include /* The following two lines are a workaround against an autoconf-2.52 bug. */ #include #include "; then : fi fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_EMULTIHOP" >&5 $as_echo "$gl_cv_header_errno_h_EMULTIHOP" >&6; } case $gl_cv_header_errno_h_EMULTIHOP in yes | no) EMULTIHOP_HIDDEN=0; EMULTIHOP_VALUE= ;; *) EMULTIHOP_HIDDEN=1; EMULTIHOP_VALUE="$gl_cv_header_errno_h_EMULTIHOP" ;; esac fi if test -n "$ERRNO_H"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ENOLINK value" >&5 $as_echo_n "checking for ENOLINK value... " >&6; } if ${gl_cv_header_errno_h_ENOLINK+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef ENOLINK yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then : gl_cv_header_errno_h_ENOLINK=yes else gl_cv_header_errno_h_ENOLINK=no fi rm -f conftest* if test $gl_cv_header_errno_h_ENOLINK = no; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _XOPEN_SOURCE_EXTENDED 1 #include #ifdef ENOLINK yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then : gl_cv_header_errno_h_ENOLINK=hidden fi rm -f conftest* if test $gl_cv_header_errno_h_ENOLINK = hidden; then if ac_fn_c_compute_int "$LINENO" "ENOLINK" "gl_cv_header_errno_h_ENOLINK" " #define _XOPEN_SOURCE_EXTENDED 1 #include /* The following two lines are a workaround against an autoconf-2.52 bug. */ #include #include "; then : fi fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_ENOLINK" >&5 $as_echo "$gl_cv_header_errno_h_ENOLINK" >&6; } case $gl_cv_header_errno_h_ENOLINK in yes | no) ENOLINK_HIDDEN=0; ENOLINK_VALUE= ;; *) ENOLINK_HIDDEN=1; ENOLINK_VALUE="$gl_cv_header_errno_h_ENOLINK" ;; esac fi if test -n "$ERRNO_H"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for EOVERFLOW value" >&5 $as_echo_n "checking for EOVERFLOW value... " >&6; } if ${gl_cv_header_errno_h_EOVERFLOW+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef EOVERFLOW yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then : gl_cv_header_errno_h_EOVERFLOW=yes else gl_cv_header_errno_h_EOVERFLOW=no fi rm -f conftest* if test $gl_cv_header_errno_h_EOVERFLOW = no; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _XOPEN_SOURCE_EXTENDED 1 #include #ifdef EOVERFLOW yes #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "yes" >/dev/null 2>&1; then : gl_cv_header_errno_h_EOVERFLOW=hidden fi rm -f conftest* if test $gl_cv_header_errno_h_EOVERFLOW = hidden; then if ac_fn_c_compute_int "$LINENO" "EOVERFLOW" "gl_cv_header_errno_h_EOVERFLOW" " #define _XOPEN_SOURCE_EXTENDED 1 #include /* The following two lines are a workaround against an autoconf-2.52 bug. */ #include #include "; then : fi fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_errno_h_EOVERFLOW" >&5 $as_echo "$gl_cv_header_errno_h_EOVERFLOW" >&6; } case $gl_cv_header_errno_h_EOVERFLOW in yes | no) EOVERFLOW_HIDDEN=0; EOVERFLOW_VALUE= ;; *) EOVERFLOW_HIDDEN=1; EOVERFLOW_VALUE="$gl_cv_header_errno_h_EOVERFLOW" ;; esac fi GNULIB_FCNTL=0; GNULIB_NONBLOCKING=0; GNULIB_OPEN=0; GNULIB_OPENAT=0; HAVE_FCNTL=1; HAVE_OPENAT=1; REPLACE_FCNTL=0; REPLACE_OPEN=0; REPLACE_OPENAT=0; for ac_header in $gl_header_list do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_func in $gl_func_list do : as_ac_var=`$as_echo "ac_cv_func_$ac_func" | $as_tr_sh` ac_fn_c_check_func "$LINENO" "$ac_func" "$as_ac_var" if eval test \"x\$"$as_ac_var"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_func" | $as_tr_cpp` 1 _ACEOF fi done : : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working fcntl.h" >&5 $as_echo_n "checking for working fcntl.h... " >&6; } if ${gl_cv_header_working_fcntl_h+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : gl_cv_header_working_fcntl_h=cross-compiling else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if HAVE_UNISTD_H # include #else /* on Windows with MSVC */ # include # include # defined sleep(n) _sleep ((n) * 1000) #endif #include #ifndef O_NOATIME #define O_NOATIME 0 #endif #ifndef O_NOFOLLOW #define O_NOFOLLOW 0 #endif static int const constants[] = { O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND, O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY }; int main () { int result = !constants; #if HAVE_SYMLINK { static char const sym[] = "conftest.sym"; if (symlink ("/dev/null", sym) != 0) result |= 2; else { int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0); if (fd >= 0) { close (fd); result |= 4; } } if (unlink (sym) != 0 || symlink (".", sym) != 0) result |= 2; else { int fd = open (sym, O_RDONLY | O_NOFOLLOW); if (fd >= 0) { close (fd); result |= 4; } } unlink (sym); } #endif { static char const file[] = "confdefs.h"; int fd = open (file, O_RDONLY | O_NOATIME); if (fd < 0) result |= 8; else { struct stat st0; if (fstat (fd, &st0) != 0) result |= 16; else { char c; sleep (1); if (read (fd, &c, 1) != 1) result |= 24; else { if (close (fd) != 0) result |= 32; else { struct stat st1; if (stat (file, &st1) != 0) result |= 40; else if (st0.st_atime != st1.st_atime) result |= 64; } } } } } return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_header_working_fcntl_h=yes else case $? in #( 4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #( 64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #( 68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #( *) gl_cv_header_working_fcntl_h='no';; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_working_fcntl_h" >&5 $as_echo "$gl_cv_header_working_fcntl_h" >&6; } case $gl_cv_header_working_fcntl_h in #( *O_NOATIME* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac cat >>confdefs.h <<_ACEOF #define HAVE_WORKING_O_NOATIME $ac_val _ACEOF case $gl_cv_header_working_fcntl_h in #( *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac cat >>confdefs.h <<_ACEOF #define HAVE_WORKING_O_NOFOLLOW $ac_val _ACEOF ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default" if test "x$ac_cv_type_pid_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define pid_t int _ACEOF fi ac_fn_c_check_type "$LINENO" "mode_t" "ac_cv_type_mode_t" "$ac_includes_default" if test "x$ac_cv_type_mode_t" = xyes; then : else cat >>confdefs.h <<_ACEOF #define mode_t int _ACEOF fi GNULIB_CHDIR=0; GNULIB_CHOWN=0; GNULIB_CLOSE=0; GNULIB_DUP=0; GNULIB_DUP2=0; GNULIB_DUP3=0; GNULIB_ENVIRON=0; GNULIB_EUIDACCESS=0; GNULIB_FACCESSAT=0; GNULIB_FCHDIR=0; GNULIB_FCHOWNAT=0; GNULIB_FDATASYNC=0; GNULIB_FSYNC=0; GNULIB_FTRUNCATE=0; GNULIB_GETCWD=0; GNULIB_GETDOMAINNAME=0; GNULIB_GETDTABLESIZE=0; GNULIB_GETGROUPS=0; GNULIB_GETHOSTNAME=0; GNULIB_GETLOGIN=0; GNULIB_GETLOGIN_R=0; GNULIB_GETPAGESIZE=0; GNULIB_GETUSERSHELL=0; GNULIB_GROUP_MEMBER=0; GNULIB_ISATTY=0; GNULIB_LCHOWN=0; GNULIB_LINK=0; GNULIB_LINKAT=0; GNULIB_LSEEK=0; GNULIB_PIPE=0; GNULIB_PIPE2=0; GNULIB_PREAD=0; GNULIB_PWRITE=0; GNULIB_READ=0; GNULIB_READLINK=0; GNULIB_READLINKAT=0; GNULIB_RMDIR=0; GNULIB_SETHOSTNAME=0; GNULIB_SLEEP=0; GNULIB_SYMLINK=0; GNULIB_SYMLINKAT=0; GNULIB_TTYNAME_R=0; GNULIB_UNISTD_H_NONBLOCKING=0; GNULIB_UNISTD_H_SIGPIPE=0; GNULIB_UNLINK=0; GNULIB_UNLINKAT=0; GNULIB_USLEEP=0; GNULIB_WRITE=0; HAVE_CHOWN=1; HAVE_DUP2=1; HAVE_DUP3=1; HAVE_EUIDACCESS=1; HAVE_FACCESSAT=1; HAVE_FCHDIR=1; HAVE_FCHOWNAT=1; HAVE_FDATASYNC=1; HAVE_FSYNC=1; HAVE_FTRUNCATE=1; HAVE_GETDTABLESIZE=1; HAVE_GETGROUPS=1; HAVE_GETHOSTNAME=1; HAVE_GETLOGIN=1; HAVE_GETPAGESIZE=1; HAVE_GROUP_MEMBER=1; HAVE_LCHOWN=1; HAVE_LINK=1; HAVE_LINKAT=1; HAVE_PIPE=1; HAVE_PIPE2=1; HAVE_PREAD=1; HAVE_PWRITE=1; HAVE_READLINK=1; HAVE_READLINKAT=1; HAVE_SETHOSTNAME=1; HAVE_SLEEP=1; HAVE_SYMLINK=1; HAVE_SYMLINKAT=1; HAVE_UNLINKAT=1; HAVE_USLEEP=1; HAVE_DECL_ENVIRON=1; HAVE_DECL_FCHDIR=1; HAVE_DECL_FDATASYNC=1; HAVE_DECL_GETDOMAINNAME=1; HAVE_DECL_GETLOGIN_R=1; HAVE_DECL_GETPAGESIZE=1; HAVE_DECL_GETUSERSHELL=1; HAVE_DECL_SETHOSTNAME=1; HAVE_DECL_TTYNAME_R=1; HAVE_OS_H=0; HAVE_SYS_PARAM_H=0; REPLACE_CHOWN=0; REPLACE_CLOSE=0; REPLACE_DUP=0; REPLACE_DUP2=0; REPLACE_FCHOWNAT=0; REPLACE_FTRUNCATE=0; REPLACE_GETCWD=0; REPLACE_GETDOMAINNAME=0; REPLACE_GETDTABLESIZE=0; REPLACE_GETLOGIN_R=0; REPLACE_GETGROUPS=0; REPLACE_GETPAGESIZE=0; REPLACE_ISATTY=0; REPLACE_LCHOWN=0; REPLACE_LINK=0; REPLACE_LINKAT=0; REPLACE_LSEEK=0; REPLACE_PREAD=0; REPLACE_PWRITE=0; REPLACE_READ=0; REPLACE_READLINK=0; REPLACE_RMDIR=0; REPLACE_SLEEP=0; REPLACE_SYMLINK=0; REPLACE_TTYNAME_R=0; REPLACE_UNLINK=0; REPLACE_UNLINKAT=0; REPLACE_USLEEP=0; REPLACE_WRITE=0; UNISTD_H_HAVE_WINSOCK2_H=0; UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0; : if test $gl_cv_have_include_next = yes; then gl_cv_next_getopt_h='<'getopt.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_getopt_h+:} false; then : $as_echo_n "(cached) " >&6 else if test $ac_cv_header_getopt_h = yes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'getopt.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_getopt_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' else gl_cv_next_getopt_h='<'getopt.h'>' fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_getopt_h" >&5 $as_echo "$gl_cv_next_getopt_h" >&6; } fi NEXT_GETOPT_H=$gl_cv_next_getopt_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'getopt.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_getopt_h fi NEXT_AS_FIRST_DIRECTIVE_GETOPT_H=$gl_next_as_first_directive if test $ac_cv_header_getopt_h = yes; then HAVE_GETOPT_H=1 else HAVE_GETOPT_H=0 fi gl_replace_getopt= if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then for ac_header in getopt.h do : ac_fn_c_check_header_mongrel "$LINENO" "getopt.h" "ac_cv_header_getopt_h" "$ac_includes_default" if test "x$ac_cv_header_getopt_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETOPT_H 1 _ACEOF else gl_replace_getopt=yes fi done fi if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then for ac_func in getopt_long_only do : ac_fn_c_check_func "$LINENO" "getopt_long_only" "ac_cv_func_getopt_long_only" if test "x$ac_cv_func_getopt_long_only" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_GETOPT_LONG_ONLY 1 _ACEOF else gl_replace_getopt=yes fi done fi if test -z "$gl_replace_getopt"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether getopt is POSIX compatible" >&5 $as_echo_n "checking whether getopt is POSIX compatible... " >&6; } if ${gl_cv_func_getopt_posix+:} false; then : $as_echo_n "(cached) " >&6 else if test $cross_compiling = no; then if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static char program[] = "program"; static char a[] = "-a"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, a, foo, bar, NULL }; int c; c = getopt (4, argv, "ab"); if (!(c == 'a')) return 1; c = getopt (4, argv, "ab"); if (!(c == -1)) return 2; if (!(optind == 2)) return 3; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_posix=maybe else gl_cv_func_getopt_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test $gl_cv_func_getopt_posix = maybe; then if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static char program[] = "program"; static char donald[] = "donald"; static char p[] = "-p"; static char billy[] = "billy"; static char duck[] = "duck"; static char a[] = "-a"; static char bar[] = "bar"; char *argv[] = { program, donald, p, billy, duck, a, bar, NULL }; int c; c = getopt (7, argv, "+abp:q:"); if (!(c == -1)) return 4; if (!(strcmp (argv[0], "program") == 0)) return 5; if (!(strcmp (argv[1], "donald") == 0)) return 6; if (!(strcmp (argv[2], "-p") == 0)) return 7; if (!(strcmp (argv[3], "billy") == 0)) return 8; if (!(strcmp (argv[4], "duck") == 0)) return 9; if (!(strcmp (argv[5], "-a") == 0)) return 10; if (!(strcmp (argv[6], "bar") == 0)) return 11; if (!(optind == 1)) return 12; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_posix=maybe else gl_cv_func_getopt_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi if test $gl_cv_func_getopt_posix = maybe; then if test "$cross_compiling" = yes; then : { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run test program while cross compiling See \`config.log' for more details" "$LINENO" 5; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static char program[] = "program"; static char ab[] = "-ab"; char *argv[3] = { program, ab, NULL }; if (getopt (2, argv, "ab:") != 'a') return 13; if (getopt (2, argv, "ab:") != '?') return 14; if (optopt != 'b') return 15; if (optind != 2) return 16; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_posix=yes else gl_cv_func_getopt_posix=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi else case "$host_os" in darwin* | aix* | mingw*) gl_cv_func_getopt_posix="guessing no";; *) gl_cv_func_getopt_posix="guessing yes";; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_getopt_posix" >&5 $as_echo "$gl_cv_func_getopt_posix" >&6; } case "$gl_cv_func_getopt_posix" in *no) gl_replace_getopt=yes ;; esac fi if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt function" >&5 $as_echo_n "checking for working GNU getopt function... " >&6; } if ${gl_cv_func_getopt_gnu+:} false; then : $as_echo_n "(cached) " >&6 else # Even with POSIXLY_CORRECT, the GNU extension of leading '-' in the # optstring is necessary for programs like m4 that have POSIX-mandated # semantics for supporting options interspersed with files. # Also, since getopt_long is a GNU extension, we require optind=0. # Bash ties 'set -o posix' to a non-exported POSIXLY_CORRECT; # so take care to revert to the correct (non-)export state. gl_awk_probe='BEGIN { if ("POSIXLY_CORRECT" in ENVIRON) print "x" }' case ${POSIXLY_CORRECT+x}`$AWK "$gl_awk_probe" conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include #if defined __MACH__ && defined __APPLE__ /* Avoid a crash on Mac OS X. */ #include #include #include #include #include #include /* The exception port on which our thread listens. */ static mach_port_t our_exception_port; /* The main function of the thread listening for exceptions of type EXC_BAD_ACCESS. */ static void * mach_exception_thread (void *arg) { /* Buffer for a message to be received. */ struct { mach_msg_header_t head; mach_msg_body_t msgh_body; char data[1024]; } msg; mach_msg_return_t retval; /* Wait for a message on the exception port. */ retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg), our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL); if (retval != MACH_MSG_SUCCESS) abort (); exit (1); } static void nocrash_init (void) { mach_port_t self = mach_task_self (); /* Allocate a port on which the thread shall listen for exceptions. */ if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port) == KERN_SUCCESS) { /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html. */ if (mach_port_insert_right (self, our_exception_port, our_exception_port, MACH_MSG_TYPE_MAKE_SEND) == KERN_SUCCESS) { /* The exceptions we want to catch. Only EXC_BAD_ACCESS is interesting for us. */ exception_mask_t mask = EXC_MASK_BAD_ACCESS; /* Create the thread listening on the exception port. */ pthread_attr_t attr; pthread_t thread; if (pthread_attr_init (&attr) == 0 && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0 && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) { pthread_attr_destroy (&attr); /* Replace the exception port info for these exceptions with our own. Note that we replace the exception port for the entire task, not only for a particular thread. This has the effect that when our exception port gets the message, the thread specific exception port has already been asked, and we don't need to bother about it. See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html. */ task_set_exception_ports (self, mask, our_exception_port, EXCEPTION_DEFAULT, MACHINE_THREAD_STATE); } } } } #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* Avoid a crash on native Windows. */ #define WIN32_LEAN_AND_MEAN #include #include static LONG WINAPI exception_filter (EXCEPTION_POINTERS *ExceptionInfo) { switch (ExceptionInfo->ExceptionRecord->ExceptionCode) { case EXCEPTION_ACCESS_VIOLATION: case EXCEPTION_IN_PAGE_ERROR: case EXCEPTION_STACK_OVERFLOW: case EXCEPTION_GUARD_PAGE: case EXCEPTION_PRIV_INSTRUCTION: case EXCEPTION_ILLEGAL_INSTRUCTION: case EXCEPTION_DATATYPE_MISALIGNMENT: case EXCEPTION_ARRAY_BOUNDS_EXCEEDED: case EXCEPTION_NONCONTINUABLE_EXCEPTION: exit (1); } return EXCEPTION_CONTINUE_SEARCH; } static void nocrash_init (void) { SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter); } #else /* Avoid a crash on POSIX systems. */ #include /* A POSIX signal handler. */ static void exception_handler (int sig) { exit (1); } static void nocrash_init (void) { #ifdef SIGSEGV signal (SIGSEGV, exception_handler); #endif #ifdef SIGBUS signal (SIGBUS, exception_handler); #endif } #endif int main () { int result = 0; nocrash_init(); /* This code succeeds on glibc 2.8, OpenBSD 4.0, Cygwin, mingw, and fails on Mac OS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10. */ { static char conftest[] = "conftest"; static char plus[] = "-+"; char *argv[3] = { conftest, plus, NULL }; opterr = 0; if (getopt (2, argv, "+a") != '?') result |= 1; } /* This code succeeds on glibc 2.8, mingw, and fails on Mac OS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x. */ { static char program[] = "program"; static char p[] = "-p"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, p, foo, bar, NULL }; optind = 1; if (getopt (4, argv, "p::") != 'p') result |= 2; else if (optarg != NULL) result |= 4; else if (getopt (4, argv, "p::") != -1) result |= 6; else if (optind != 2) result |= 8; } /* This code succeeds on glibc 2.8 and fails on Cygwin 1.7.0. */ { static char program[] = "program"; static char foo[] = "foo"; static char p[] = "-p"; char *argv[] = { program, foo, p, NULL }; optind = 0; if (getopt (3, argv, "-p") != 1) result |= 16; else if (getopt (3, argv, "-p") != 'p') result |= 16; } /* This code fails on glibc 2.11. */ { static char program[] = "program"; static char b[] = "-b"; static char a[] = "-a"; char *argv[] = { program, b, a, NULL }; optind = opterr = 0; if (getopt (3, argv, "+:a:b") != 'b') result |= 32; else if (getopt (3, argv, "+:a:b") != ':') result |= 32; } /* This code dumps core on glibc 2.14. */ { static char program[] = "program"; static char w[] = "-W"; static char dummy[] = "dummy"; char *argv[] = { program, w, dummy, NULL }; optind = opterr = 1; if (getopt (3, argv, "W;") != 'W') result |= 64; } return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_gnu=yes else gl_cv_func_getopt_gnu=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi case $gl_had_POSIXLY_CORRECT in exported) ;; yes) { POSIXLY_CORRECT=; unset POSIXLY_CORRECT;}; POSIXLY_CORRECT=1 ;; *) { POSIXLY_CORRECT=; unset POSIXLY_CORRECT;} ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_getopt_gnu" >&5 $as_echo "$gl_cv_func_getopt_gnu" >&6; } if test "$gl_cv_func_getopt_gnu" != yes; then gl_replace_getopt=yes else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for working GNU getopt_long function" >&5 $as_echo_n "checking for working GNU getopt_long function... " >&6; } if ${gl_cv_func_getopt_long_gnu+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in openbsd*) gl_cv_func_getopt_long_gnu="guessing no";; *) gl_cv_func_getopt_long_gnu="guessing yes";; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include int main () { static const struct option long_options[] = { { "xtremely-",no_argument, NULL, 1003 }, { "xtra", no_argument, NULL, 1001 }, { "xtreme", no_argument, NULL, 1002 }, { "xtremely", no_argument, NULL, 1003 }, { NULL, 0, NULL, 0 } }; /* This code fails on OpenBSD 5.0. */ { static char program[] = "program"; static char xtremel[] = "--xtremel"; char *argv[] = { program, xtremel, NULL }; int option_index; optind = 1; opterr = 0; if (getopt_long (2, argv, "", long_options, &option_index) != 1003) return 1; } return 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_getopt_long_gnu=yes else gl_cv_func_getopt_long_gnu=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_getopt_long_gnu" >&5 $as_echo "$gl_cv_func_getopt_long_gnu" >&6; } case "$gl_cv_func_getopt_long_gnu" in *yes) ;; *) gl_replace_getopt=yes ;; esac fi fi REPLACE_GETOPT=0 if test -n "$gl_replace_getopt"; then REPLACE_GETOPT=1 fi if test $REPLACE_GETOPT = 1; then GETOPT_H=getopt.h $as_echo "#define __GETOPT_PREFIX rpl_" >>confdefs.h fi ac_fn_c_check_decl "$LINENO" "getenv" "ac_cv_have_decl_getenv" "$ac_includes_default" if test "x$ac_cv_have_decl_getenv" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_GETENV $ac_have_decl _ACEOF if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi # Prepare PATH_SEPARATOR. # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then # Determine PATH_SEPARATOR by trying to find /bin/sh in a PATH which # contains only /bin. Note that ksh looks also at the FPATH variable, # so we have to set that as well for the test. 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 ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "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 "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${acl_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_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 `"$acl_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${acl_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$acl_cv_prog_gnu_ld" >&6; } with_gnu_ld=$acl_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shared library run path origin" >&5 $as_echo_n "checking for shared library run path origin... " >&6; } if ${acl_cv_rpath+:} false; then : $as_echo_n "(cached) " >&6 else CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $acl_cv_rpath" >&5 $as_echo "$acl_cv_rpath" >&6; } wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" # Check whether --enable-rpath was given. if test "${enable_rpath+set}" = set; then : enableval=$enable_rpath; : else enable_rpath=yes fi acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 64-bit host" >&5 $as_echo_n "checking for 64-bit host... " >&6; } if ${gl_cv_solaris_64bit+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef _LP64 sixtyfour bits #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "sixtyfour bits" >/dev/null 2>&1; then : gl_cv_solaris_64bit=yes else gl_cv_solaris_64bit=no fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_solaris_64bit" >&5 $as_echo "$gl_cv_solaris_64bit" >&6; } if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" gl_threads_api=none LIBTHREAD= LTLIBTHREAD= LIBMULTITHREAD= LTLIBMULTITHREAD= if test "$gl_use_threads" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether imported symbols can be declared weak" >&5 $as_echo_n "checking whether imported symbols can be declared weak... " >&6; } if ${gl_cv_have_weak+:} false; then : $as_echo_n "(cached) " >&6 else gl_cv_have_weak=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ extern void xyzzy (); #pragma weak xyzzy int main () { xyzzy(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_cv_have_weak=maybe fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test $gl_cv_have_weak = maybe; then if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __ELF__ Extensible Linking Format #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Extensible Linking Format" >/dev/null 2>&1; then : gl_cv_have_weak="guessing yes" else gl_cv_have_weak="guessing no" fi rm -f conftest* else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #pragma weak fputs int main () { return (fputs == NULL); } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_have_weak=yes else gl_cv_have_weak=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_have_weak" >&5 $as_echo "$gl_cv_have_weak" >&6; } if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # On OSF/1, the compiler needs the flag -pthread or -D_REENTRANT so that # it groks . It's added above, in gl_THREADLIB_EARLY_BODY. ac_fn_c_check_header_mongrel "$LINENO" "pthread.h" "ac_cv_header_pthread_h" "$ac_includes_default" if test "x$ac_cv_header_pthread_h" = xyes; then : gl_have_pthread_h=yes else gl_have_pthread_h=no fi if test "$gl_have_pthread_h" = yes; then # Other possible tests: # -lpthreads (FSU threads, PCthreads) # -lgthreads gl_have_pthread= # Test whether both pthread_mutex_lock and pthread_mutexattr_init exist # in libc. IRIX 6.5 has the first one in both libc and libpthread, but # the second one only in libpthread, and lock.c needs it. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { pthread_mutex_lock((pthread_mutex_t*)0); pthread_mutexattr_init((pthread_mutexattr_t*)0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_have_pthread=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext # Test for libpthread by looking for pthread_kill. (Not pthread_self, # since it is defined as a macro on OSF/1.) if test -n "$gl_have_pthread"; then # The program links fine without libpthread. But it may actually # need to link with libpthread in order to create multiple threads. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; } if ${ac_cv_lib_pthread_pthread_kill+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $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. */ #ifdef __cplusplus extern "C" #endif char pthread_kill (); int main () { return pthread_kill (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_pthread_pthread_kill=yes else ac_cv_lib_pthread_pthread_kill=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; } if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then : LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread # On Solaris and HP-UX, most pthread functions exist also in libc. # Therefore pthread_in_use() needs to actually try to create a # thread: pthread_create from libc will fail, whereas # pthread_create will actually create a thread. case "$host_os" in solaris* | hpux*) $as_echo "#define PTHREAD_IN_USE_DETECTION_HARD 1" >>confdefs.h esac fi else # Some library is needed. Try libpthread and libc_r. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lpthread" >&5 $as_echo_n "checking for pthread_kill in -lpthread... " >&6; } if ${ac_cv_lib_pthread_pthread_kill+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $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. */ #ifdef __cplusplus extern "C" #endif char pthread_kill (); int main () { return pthread_kill (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_pthread_pthread_kill=yes else ac_cv_lib_pthread_pthread_kill=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_pthread_kill" >&5 $as_echo "$ac_cv_lib_pthread_pthread_kill" >&6; } if test "x$ac_cv_lib_pthread_pthread_kill" = xyes; then : gl_have_pthread=yes LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread fi if test -z "$gl_have_pthread"; then # For FreeBSD 4. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_kill in -lc_r" >&5 $as_echo_n "checking for pthread_kill in -lc_r... " >&6; } if ${ac_cv_lib_c_r_pthread_kill+:} false; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lc_r $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. */ #ifdef __cplusplus extern "C" #endif char pthread_kill (); int main () { return pthread_kill (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_c_r_pthread_kill=yes else ac_cv_lib_c_r_pthread_kill=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_c_r_pthread_kill" >&5 $as_echo "$ac_cv_lib_c_r_pthread_kill" >&6; } if test "x$ac_cv_lib_c_r_pthread_kill" = xyes; then : gl_have_pthread=yes LIBTHREAD=-lc_r LTLIBTHREAD=-lc_r LIBMULTITHREAD=-lc_r LTLIBMULTITHREAD=-lc_r fi fi fi if test -n "$gl_have_pthread"; then gl_threads_api=posix $as_echo "#define USE_POSIX_THREADS 1" >>confdefs.h if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then $as_echo "#define USE_POSIX_THREADS_WEAK 1" >>confdefs.h LIBTHREAD= LTLIBTHREAD= fi fi fi fi fi if test -z "$gl_have_pthread"; then if test "$gl_use_threads" = yes || test "$gl_use_threads" = solaris; then gl_have_solaristhread= gl_save_LIBS="$LIBS" LIBS="$LIBS -lthread" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { thr_self(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_have_solaristhread=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gl_save_LIBS" if test -n "$gl_have_solaristhread"; then gl_threads_api=solaris LIBTHREAD=-lthread LTLIBTHREAD=-lthread LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" $as_echo "#define USE_SOLARIS_THREADS 1" >>confdefs.h if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then $as_echo "#define USE_SOLARIS_THREADS_WEAK 1" >>confdefs.h LIBTHREAD= LTLIBTHREAD= fi fi fi fi if test "$gl_use_threads" = pth; then gl_save_CPPFLAGS="$CPPFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to link with libpth" >&5 $as_echo_n "checking how to link with libpth... " >&6; } if ${ac_cv_libpth_libs+:} false; then : $as_echo_n "(cached) " >&6 else use_additional=yes acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" # Check whether --with-libpth-prefix was given. if test "${with_libpth_prefix+set}" = set; then : withval=$with_libpth_prefix; if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi fi LIBPTH= LTLIBPTH= INCPTH= LIBPTH_PREFIX= HAVE_LIBPTH= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='pth ' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIBPTH="${LIBPTH}${LIBPTH:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }$value" else : fi else found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" else haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi if test "$acl_hardcode_direct" = yes; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else haveit= for x in $LDFLAGS $LIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIBPTH="${LIBPTH}${LIBPTH:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_so" else LIBPTH="${LIBPTH}${LIBPTH:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then LIBPTH="${LIBPTH}${LIBPTH:+ }$found_a" else LIBPTH="${LIBPTH}${LIBPTH:+ }-L$found_dir -l$name" fi fi additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = 'pth'; then LIBPTH_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = 'pth'; then LIBPTH_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INCPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then INCPTH="${INCPTH}${INCPTH:+ }-I$additional_includedir" fi fi fi fi fi if test -n "$found_la"; then save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LIBPTH="${LIBPTH}${LIBPTH:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIBPTH; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) LIBPTH="${LIBPTH}${LIBPTH:+ }$dep" LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }$dep" ;; esac done fi else LIBPTH="${LIBPTH}${LIBPTH:+ }-l$name" LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBPTH="${LIBPTH}${LIBPTH:+ }$flag" else for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIBPTH="${LIBPTH}${LIBPTH:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then for found_dir in $ltrpathdirs; do LTLIBPTH="${LTLIBPTH}${LTLIBPTH:+ }-R$found_dir" done fi ac_cv_libpth_libs="$LIBPTH" ac_cv_libpth_ltlibs="$LTLIBPTH" ac_cv_libpth_cppflags="$INCPTH" ac_cv_libpth_prefix="$LIBPTH_PREFIX" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_libpth_libs" >&5 $as_echo "$ac_cv_libpth_libs" >&6; } LIBPTH="$ac_cv_libpth_libs" LTLIBPTH="$ac_cv_libpth_ltlibs" INCPTH="$ac_cv_libpth_cppflags" LIBPTH_PREFIX="$ac_cv_libpth_prefix" for element in $INCPTH; do haveit= for x in $CPPFLAGS; do acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" eval x=\"$x\" exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }$element" fi done HAVE_LIBPTH=yes gl_have_pth= gl_save_LIBS="$LIBS" LIBS="$LIBS $LIBPTH" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { pth_self(); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : gl_have_pth=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$gl_save_LIBS" if test -n "$gl_have_pth"; then gl_threads_api=pth LIBTHREAD="$LIBPTH" LTLIBTHREAD="$LTLIBPTH" LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" $as_echo "#define USE_PTH_THREADS 1" >>confdefs.h if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then $as_echo "#define USE_PTH_THREADS_WEAK 1" >>confdefs.h LIBTHREAD= LTLIBTHREAD= fi fi else CPPFLAGS="$gl_save_CPPFLAGS" fi fi if test -z "$gl_have_pthread"; then case "$gl_use_threads" in yes | windows | win32) # The 'win32' is for backward compatibility. if { case "$host_os" in mingw*) true;; *) false;; esac }; then gl_threads_api=windows $as_echo "#define USE_WINDOWS_THREADS 1" >>confdefs.h fi ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for multithread API to use" >&5 $as_echo_n "checking for multithread API to use... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_threads_api" >&5 $as_echo "$gl_threads_api" >&6; } GNULIB_FFSL=0; GNULIB_FFSLL=0; GNULIB_MEMCHR=0; GNULIB_MEMMEM=0; GNULIB_MEMPCPY=0; GNULIB_MEMRCHR=0; GNULIB_RAWMEMCHR=0; GNULIB_STPCPY=0; GNULIB_STPNCPY=0; GNULIB_STRCHRNUL=0; GNULIB_STRDUP=0; GNULIB_STRNCAT=0; GNULIB_STRNDUP=0; GNULIB_STRNLEN=0; GNULIB_STRPBRK=0; GNULIB_STRSEP=0; GNULIB_STRSTR=0; GNULIB_STRCASESTR=0; GNULIB_STRTOK_R=0; GNULIB_MBSLEN=0; GNULIB_MBSNLEN=0; GNULIB_MBSCHR=0; GNULIB_MBSRCHR=0; GNULIB_MBSSTR=0; GNULIB_MBSCASECMP=0; GNULIB_MBSNCASECMP=0; GNULIB_MBSPCASECMP=0; GNULIB_MBSCASESTR=0; GNULIB_MBSCSPN=0; GNULIB_MBSPBRK=0; GNULIB_MBSSPN=0; GNULIB_MBSSEP=0; GNULIB_MBSTOK_R=0; GNULIB_STRERROR=0; GNULIB_STRERROR_R=0; GNULIB_STRSIGNAL=0; GNULIB_STRVERSCMP=0; HAVE_MBSLEN=0; HAVE_FFSL=1; HAVE_FFSLL=1; HAVE_MEMCHR=1; HAVE_DECL_MEMMEM=1; HAVE_MEMPCPY=1; HAVE_DECL_MEMRCHR=1; HAVE_RAWMEMCHR=1; HAVE_STPCPY=1; HAVE_STPNCPY=1; HAVE_STRCHRNUL=1; HAVE_DECL_STRDUP=1; HAVE_DECL_STRNDUP=1; HAVE_DECL_STRNLEN=1; HAVE_STRPBRK=1; HAVE_STRSEP=1; HAVE_STRCASESTR=1; HAVE_DECL_STRTOK_R=1; HAVE_DECL_STRERROR_R=1; HAVE_DECL_STRSIGNAL=1; HAVE_STRVERSCMP=1; REPLACE_MEMCHR=0; REPLACE_MEMMEM=0; REPLACE_STPNCPY=0; REPLACE_STRDUP=0; REPLACE_STRSTR=0; REPLACE_STRCASESTR=0; REPLACE_STRCHRNUL=0; REPLACE_STRERROR=0; REPLACE_STRERROR_R=0; REPLACE_STRNCAT=0; REPLACE_STRNDUP=0; REPLACE_STRNLEN=0; REPLACE_STRSIGNAL=0; REPLACE_STRTOK_R=0; UNDEFINE_STRTOK_R=0; # Check for mmap(). Don't use AC_FUNC_MMAP, because it checks too much: it # fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is # irrelevant for anonymous mappings. ac_fn_c_check_func "$LINENO" "mmap" "ac_cv_func_mmap" if test "x$ac_cv_func_mmap" = xyes; then : gl_have_mmap=yes else gl_have_mmap=no fi # Try to allow MAP_ANONYMOUS. gl_have_mmap_anonymous=no if test $gl_have_mmap = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for MAP_ANONYMOUS" >&5 $as_echo_n "checking for MAP_ANONYMOUS... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef MAP_ANONYMOUS I cannot identify this map #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "I cannot identify this map" >/dev/null 2>&1; then : gl_have_mmap_anonymous=yes fi rm -f conftest* if test $gl_have_mmap_anonymous != yes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifdef MAP_ANON I cannot identify this map #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "I cannot identify this map" >/dev/null 2>&1; then : $as_echo "#define MAP_ANONYMOUS MAP_ANON" >>confdefs.h gl_have_mmap_anonymous=yes fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_have_mmap_anonymous" >&5 $as_echo "$gl_have_mmap_anonymous" >&6; } if test $gl_have_mmap_anonymous = yes; then $as_echo "#define HAVE_MAP_ANONYMOUS 1" >>confdefs.h fi fi : : if test $HAVE_MEMCHR = 1; then # Detect platform-specific bugs in some versions of glibc: # memchr should not dereference anything with length 0 # http://bugzilla.redhat.com/499689 # memchr should not dereference overestimated length after a match # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521737 # http://sourceware.org/bugzilla/show_bug.cgi?id=10162 # Assume that memchr works on platforms that lack mprotect. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memchr works" >&5 $as_echo_n "checking whether memchr works... " >&6; } if ${gl_cv_func_memchr_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : gl_cv_func_memchr_works="guessing no" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #if HAVE_SYS_MMAN_H # include # include # include # include # ifndef MAP_FILE # define MAP_FILE 0 # endif #endif int main () { int result = 0; char *fence = NULL; #if HAVE_SYS_MMAN_H && HAVE_MPROTECT # if HAVE_MAP_ANONYMOUS const int flags = MAP_ANONYMOUS | MAP_PRIVATE; const int fd = -1; # else /* !HAVE_MAP_ANONYMOUS */ const int flags = MAP_FILE | MAP_PRIVATE; int fd = open ("/dev/zero", O_RDONLY, 0666); if (fd >= 0) # endif { int pagesize = getpagesize (); char *two_pages = (char *) mmap (NULL, 2 * pagesize, PROT_READ | PROT_WRITE, flags, fd, 0); if (two_pages != (char *)(-1) && mprotect (two_pages + pagesize, pagesize, PROT_NONE) == 0) fence = two_pages + pagesize; } #endif if (fence) { if (memchr (fence, 0, 0)) result |= 1; strcpy (fence - 9, "12345678"); if (memchr (fence - 9, 0, 79) != fence - 1) result |= 2; if (memchr (fence - 1, 0, 3) != fence - 1) result |= 4; } return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_memchr_works=yes else gl_cv_func_memchr_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_memchr_works" >&5 $as_echo "$gl_cv_func_memchr_works" >&6; } if test "$gl_cv_func_memchr_works" != yes; then REPLACE_MEMCHR=1 fi fi ac_fn_c_check_decl "$LINENO" "memmem" "ac_cv_have_decl_memmem" "$ac_includes_default" if test "x$ac_cv_have_decl_memmem" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_MEMMEM $ac_have_decl _ACEOF gl_cv_c_multiarch=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __APPLE_CC__ not a universal capable compiler #endif typedef int dummy; _ACEOF if ac_fn_c_try_compile "$LINENO"; then : arch= prev= for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do if test -n "$prev"; then case $word in i?86 | x86_64 | ppc | ppc64) if test -z "$arch" || test "$arch" = "$word"; then arch="$word" else gl_cv_c_multiarch=yes fi ;; esac prev= else if test "x$word" = "x-arch"; then prev=arch fi fi done fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $gl_cv_c_multiarch = yes; then APPLE_UNIVERSAL_BUILD=1 else APPLE_UNIVERSAL_BUILD=0 fi REPLACE_NULL=0; HAVE_WCHAR_T=1; { $as_echo "$as_me:${as_lineno-$LINENO}: checking for wchar_t" >&5 $as_echo_n "checking for wchar_t... " >&6; } if ${gt_cv_c_wchar_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include wchar_t foo = (wchar_t)'\0'; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_c_wchar_t=yes else gt_cv_c_wchar_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_c_wchar_t" >&5 $as_echo "$gt_cv_c_wchar_t" >&6; } if test $gt_cv_c_wchar_t = yes; then $as_echo "#define HAVE_WCHAR_T 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for unsigned long long int" >&5 $as_echo_n "checking for unsigned long long int... " >&6; } if ${ac_cv_type_unsigned_long_long_int+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_type_unsigned_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* For now, do not test the preprocessor; as of 2007 there are too many implementations with broken preprocessors. Perhaps this can be revisited in 2012. In the meantime, code should not expect #if to work with literals wider than 32 bits. */ /* Test literals. */ long long int ll = 9223372036854775807ll; long long int nll = -9223372036854775807LL; unsigned long long int ull = 18446744073709551615ULL; /* Test constant expressions. */ typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll) ? 1 : -1)]; typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1 ? 1 : -1)]; int i = 63; int main () { /* Test availability of runtime routines for shift and division. */ long long int llmax = 9223372036854775807ll; unsigned long long int ullmax = 18446744073709551615ull; return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i) | (llmax / ll) | (llmax % ll) | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i) | (ullmax / ull) | (ullmax % ull)); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : else ac_cv_type_unsigned_long_long_int=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_unsigned_long_long_int" >&5 $as_echo "$ac_cv_type_unsigned_long_long_int" >&6; } if test $ac_cv_type_unsigned_long_long_int = yes; then $as_echo "#define HAVE_UNSIGNED_LONG_LONG_INT 1" >>confdefs.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for long long int" >&5 $as_echo_n "checking for long long int... " >&6; } if ${ac_cv_type_long_long_int+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_type_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int if test $ac_cv_type_long_long_int = yes; then if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #ifndef LLONG_MAX # define HALF \ (1LL << (sizeof (long long int) * CHAR_BIT - 2)) # define LLONG_MAX (HALF - 1 + HALF) #endif int main () { long long int n = 1; int i; for (i = 0; ; i++) { long long int m = n << i; if (m >> i != n) return 1; if (LLONG_MAX / 2 < m) break; } return 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_type_long_long_int=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_long_long_int" >&5 $as_echo "$ac_cv_type_long_long_int" >&6; } if test $ac_cv_type_long_long_int = yes; then $as_echo "#define HAVE_LONG_LONG_INT 1" >>confdefs.h fi if test $ac_cv_type_long_long_int = yes; then HAVE_LONG_LONG_INT=1 else HAVE_LONG_LONG_INT=0 fi if test $ac_cv_type_unsigned_long_long_int = yes; then HAVE_UNSIGNED_LONG_LONG_INT=1 else HAVE_UNSIGNED_LONG_LONG_INT=0 fi : if test $ac_cv_header_wchar_h = yes; then HAVE_WCHAR_H=1 else HAVE_WCHAR_H=0 fi if test $ac_cv_header_inttypes_h = yes; then HAVE_INTTYPES_H=1 else HAVE_INTTYPES_H=0 fi if test $ac_cv_header_sys_types_h = yes; then HAVE_SYS_TYPES_H=1 else HAVE_SYS_TYPES_H=0 fi : if test $gl_cv_have_include_next = yes; then gl_cv_next_stdint_h='<'stdint.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_stdint_h+:} false; then : $as_echo_n "(cached) " >&6 else if test $ac_cv_header_stdint_h = yes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'stdint.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_stdint_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' else gl_cv_next_stdint_h='<'stdint.h'>' fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stdint_h" >&5 $as_echo "$gl_cv_next_stdint_h" >&6; } fi NEXT_STDINT_H=$gl_cv_next_stdint_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'stdint.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_stdint_h fi NEXT_AS_FIRST_DIRECTIVE_STDINT_H=$gl_next_as_first_directive if test $ac_cv_header_stdint_h = yes; then HAVE_STDINT_H=1 else HAVE_STDINT_H=0 fi if test $ac_cv_header_stdint_h = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stdint.h conforms to C99" >&5 $as_echo_n "checking whether stdint.h conforms to C99... " >&6; } if ${gl_cv_header_working_stdint_h+:} false; then : $as_echo_n "(cached) " >&6 else gl_cv_header_working_stdint_h=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */ #include /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in . */ #if !(defined WCHAR_MIN && defined WCHAR_MAX) #error "WCHAR_MIN, WCHAR_MAX not defined in " #endif /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif #ifdef INT8_MAX int8_t a1 = INT8_MAX; int8_t a1min = INT8_MIN; #endif #ifdef INT16_MAX int16_t a2 = INT16_MAX; int16_t a2min = INT16_MIN; #endif #ifdef INT32_MAX int32_t a3 = INT32_MAX; int32_t a3min = INT32_MIN; #endif #ifdef INT64_MAX int64_t a4 = INT64_MAX; int64_t a4min = INT64_MIN; #endif #ifdef UINT8_MAX uint8_t b1 = UINT8_MAX; #else typedef int b1[(unsigned char) -1 != 255 ? 1 : -1]; #endif #ifdef UINT16_MAX uint16_t b2 = UINT16_MAX; #endif #ifdef UINT32_MAX uint32_t b3 = UINT32_MAX; #endif #ifdef UINT64_MAX uint64_t b4 = UINT64_MAX; #endif int_least8_t c1 = INT8_C (0x7f); int_least8_t c1max = INT_LEAST8_MAX; int_least8_t c1min = INT_LEAST8_MIN; int_least16_t c2 = INT16_C (0x7fff); int_least16_t c2max = INT_LEAST16_MAX; int_least16_t c2min = INT_LEAST16_MIN; int_least32_t c3 = INT32_C (0x7fffffff); int_least32_t c3max = INT_LEAST32_MAX; int_least32_t c3min = INT_LEAST32_MIN; int_least64_t c4 = INT64_C (0x7fffffffffffffff); int_least64_t c4max = INT_LEAST64_MAX; int_least64_t c4min = INT_LEAST64_MIN; uint_least8_t d1 = UINT8_C (0xff); uint_least8_t d1max = UINT_LEAST8_MAX; uint_least16_t d2 = UINT16_C (0xffff); uint_least16_t d2max = UINT_LEAST16_MAX; uint_least32_t d3 = UINT32_C (0xffffffff); uint_least32_t d3max = UINT_LEAST32_MAX; uint_least64_t d4 = UINT64_C (0xffffffffffffffff); uint_least64_t d4max = UINT_LEAST64_MAX; int_fast8_t e1 = INT_FAST8_MAX; int_fast8_t e1min = INT_FAST8_MIN; int_fast16_t e2 = INT_FAST16_MAX; int_fast16_t e2min = INT_FAST16_MIN; int_fast32_t e3 = INT_FAST32_MAX; int_fast32_t e3min = INT_FAST32_MIN; int_fast64_t e4 = INT_FAST64_MAX; int_fast64_t e4min = INT_FAST64_MIN; uint_fast8_t f1 = UINT_FAST8_MAX; uint_fast16_t f2 = UINT_FAST16_MAX; uint_fast32_t f3 = UINT_FAST32_MAX; uint_fast64_t f4 = UINT_FAST64_MAX; #ifdef INTPTR_MAX intptr_t g = INTPTR_MAX; intptr_t gmin = INTPTR_MIN; #endif #ifdef UINTPTR_MAX uintptr_t h = UINTPTR_MAX; #endif intmax_t i = INTMAX_MAX; uintmax_t j = UINTMAX_MAX; #include /* for CHAR_BIT */ #define TYPE_MINIMUM(t) \ ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM (t))) #define TYPE_MAXIMUM(t) \ ((t) ((t) 0 < (t) -1 \ ? (t) -1 \ : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1))) struct s { int check_PTRDIFF: PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t) && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t) ? 1 : -1; /* Detect bug in FreeBSD 6.0 / ia64. */ int check_SIG_ATOMIC: SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t) && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t) ? 1 : -1; int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1; int check_WCHAR: WCHAR_MIN == TYPE_MINIMUM (wchar_t) && WCHAR_MAX == TYPE_MAXIMUM (wchar_t) ? 1 : -1; /* Detect bug in mingw. */ int check_WINT: WINT_MIN == TYPE_MINIMUM (wint_t) && WINT_MAX == TYPE_MAXIMUM (wint_t) ? 1 : -1; /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others. */ int check_UINT8_C: (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1; int check_UINT16_C: (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1; /* Detect bugs in OpenBSD 3.9 stdint.h. */ #ifdef UINT8_MAX int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1; #endif #ifdef UINT16_MAX int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1; #endif #ifdef UINT32_MAX int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1; #endif #ifdef UINT64_MAX int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1; #endif int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1; int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1; int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1; int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1; int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1; int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1; int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1; int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1; int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1; int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1; int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1; }; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : if test "$cross_compiling" = yes; then : gl_cv_header_working_stdint_h=yes else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */ #include /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif #include #include #define MVAL(macro) MVAL1(macro) #define MVAL1(expression) #expression static const char *macro_values[] = { #ifdef INT8_MAX MVAL (INT8_MAX), #endif #ifdef INT16_MAX MVAL (INT16_MAX), #endif #ifdef INT32_MAX MVAL (INT32_MAX), #endif #ifdef INT64_MAX MVAL (INT64_MAX), #endif #ifdef UINT8_MAX MVAL (UINT8_MAX), #endif #ifdef UINT16_MAX MVAL (UINT16_MAX), #endif #ifdef UINT32_MAX MVAL (UINT32_MAX), #endif #ifdef UINT64_MAX MVAL (UINT64_MAX), #endif NULL }; int main () { const char **mv; for (mv = macro_values; *mv != NULL; mv++) { const char *value = *mv; /* Test whether it looks like a cast expression. */ if (strncmp (value, "((unsigned int)"/*)*/, 15) == 0 || strncmp (value, "((unsigned short)"/*)*/, 17) == 0 || strncmp (value, "((unsigned char)"/*)*/, 16) == 0 || strncmp (value, "((int)"/*)*/, 6) == 0 || strncmp (value, "((signed short)"/*)*/, 15) == 0 || strncmp (value, "((signed char)"/*)*/, 14) == 0) return mv - macro_values + 1; } return 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_header_working_stdint_h=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_header_working_stdint_h" >&5 $as_echo "$gl_cv_header_working_stdint_h" >&6; } fi if test "$gl_cv_header_working_stdint_h" = yes; then STDINT_H= else for ac_header in sys/inttypes.h sys/bitypes.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done if test $ac_cv_header_sys_inttypes_h = yes; then HAVE_SYS_INTTYPES_H=1 else HAVE_SYS_INTTYPES_H=0 fi if test $ac_cv_header_sys_bitypes_h = yes; then HAVE_SYS_BITYPES_H=1 else HAVE_SYS_BITYPES_H=0 fi if test $APPLE_UNIVERSAL_BUILD = 0; then for gltype in ptrdiff_t size_t ; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5 $as_echo_n "checking for bit size of $gltype... " >&6; } if eval \${gl_cv_bitsizeof_${gltype}+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" " /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif #include "; then : else result=unknown fi eval gl_cv_bitsizeof_${gltype}=\$result fi eval ac_res=\$gl_cv_bitsizeof_${gltype} { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval result=\$gl_cv_bitsizeof_${gltype} if test $result = unknown; then result=0 fi GLTYPE=`echo "$gltype" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` cat >>confdefs.h <<_ACEOF #define BITSIZEOF_${GLTYPE} $result _ACEOF eval BITSIZEOF_${GLTYPE}=\$result done fi for gltype in sig_atomic_t wchar_t wint_t ; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking for bit size of $gltype" >&5 $as_echo_n "checking for bit size of $gltype... " >&6; } if eval \${gl_cv_bitsizeof_${gltype}+:} false; then : $as_echo_n "(cached) " >&6 else if ac_fn_c_compute_int "$LINENO" "sizeof ($gltype) * CHAR_BIT" "result" " /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif #include "; then : else result=unknown fi eval gl_cv_bitsizeof_${gltype}=\$result fi eval ac_res=\$gl_cv_bitsizeof_${gltype} { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval result=\$gl_cv_bitsizeof_${gltype} if test $result = unknown; then result=0 fi GLTYPE=`echo "$gltype" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` cat >>confdefs.h <<_ACEOF #define BITSIZEOF_${GLTYPE} $result _ACEOF eval BITSIZEOF_${GLTYPE}=\$result done for gltype in sig_atomic_t wchar_t wint_t ; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gltype is signed" >&5 $as_echo_n "checking whether $gltype is signed... " >&6; } if eval \${gl_cv_type_${gltype}_signed+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif int verify[2 * (($gltype) -1 < ($gltype) 0) - 1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : result=yes else result=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext eval gl_cv_type_${gltype}_signed=\$result fi eval ac_res=\$gl_cv_type_${gltype}_signed { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval result=\$gl_cv_type_${gltype}_signed GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` if test "$result" = yes; then cat >>confdefs.h <<_ACEOF #define HAVE_SIGNED_${GLTYPE} 1 _ACEOF eval HAVE_SIGNED_${GLTYPE}=1 else eval HAVE_SIGNED_${GLTYPE}=0 fi done gl_cv_type_ptrdiff_t_signed=yes gl_cv_type_size_t_signed=no if test $APPLE_UNIVERSAL_BUILD = 0; then for gltype in ptrdiff_t size_t ; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5 $as_echo_n "checking for $gltype integer literal suffix... " >&6; } if eval \${gl_cv_type_${gltype}_suffix+:} false; then : $as_echo_n "(cached) " >&6 else eval gl_cv_type_${gltype}_suffix=no eval result=\$gl_cv_type_${gltype}_signed if test "$result" = yes; then glsufu= else glsufu=u fi for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do case $glsuf in '') gltype1='int';; l) gltype1='long int';; ll) gltype1='long long int';; i64) gltype1='__int64';; u) gltype1='unsigned int';; ul) gltype1='unsigned long int';; ull) gltype1='unsigned long long int';; ui64)gltype1='unsigned __int64';; esac cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif extern $gltype foo; extern $gltype1 foo; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval gl_cv_type_${gltype}_suffix=\$glsuf fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext eval result=\$gl_cv_type_${gltype}_suffix test "$result" != no && break done fi eval ac_res=\$gl_cv_type_${gltype}_suffix { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` eval result=\$gl_cv_type_${gltype}_suffix test "$result" = no && result= eval ${GLTYPE}_SUFFIX=\$result cat >>confdefs.h <<_ACEOF #define ${GLTYPE}_SUFFIX $result _ACEOF done fi for gltype in sig_atomic_t wchar_t wint_t ; do { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $gltype integer literal suffix" >&5 $as_echo_n "checking for $gltype integer literal suffix... " >&6; } if eval \${gl_cv_type_${gltype}_suffix+:} false; then : $as_echo_n "(cached) " >&6 else eval gl_cv_type_${gltype}_suffix=no eval result=\$gl_cv_type_${gltype}_signed if test "$result" = yes; then glsufu= else glsufu=u fi for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do case $glsuf in '') gltype1='int';; l) gltype1='long int';; ll) gltype1='long long int';; i64) gltype1='__int64';; u) gltype1='unsigned int';; ul) gltype1='unsigned long int';; ull) gltype1='unsigned long long int';; ui64)gltype1='unsigned __int64';; esac cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif extern $gltype foo; extern $gltype1 foo; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval gl_cv_type_${gltype}_suffix=\$glsuf fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext eval result=\$gl_cv_type_${gltype}_suffix test "$result" != no && break done fi eval ac_res=\$gl_cv_type_${gltype}_suffix { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` eval result=\$gl_cv_type_${gltype}_suffix test "$result" = no && result= eval ${GLTYPE}_SUFFIX=\$result cat >>confdefs.h <<_ACEOF #define ${GLTYPE}_SUFFIX $result _ACEOF done if test $BITSIZEOF_WINT_T -lt 32; then BITSIZEOF_WINT_T=32 fi STDINT_H=stdint.h fi if test -n "$STDINT_H"; then GL_GENERATE_STDINT_H_TRUE= GL_GENERATE_STDINT_H_FALSE='#' else GL_GENERATE_STDINT_H_TRUE='#' GL_GENERATE_STDINT_H_FALSE= fi REPLACE_STRERROR_0=0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strerror(0) succeeds" >&5 $as_echo_n "checking whether strerror(0) succeeds... " >&6; } if ${gl_cv_func_strerror_0_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in # Guess yes on glibc systems. *-gnu*) gl_cv_func_strerror_0_works="guessing yes" ;; # If we don't know, assume the worst. *) gl_cv_func_strerror_0_works="guessing no" ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { int result = 0; char *str; errno = 0; str = strerror (0); if (!*str) result |= 1; if (errno) result |= 2; if (strstr (str, "nknown") || strstr (str, "ndefined")) result |= 4; return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_strerror_0_works=yes else gl_cv_func_strerror_0_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_strerror_0_works" >&5 $as_echo "$gl_cv_func_strerror_0_works" >&6; } case "$gl_cv_func_strerror_0_works" in *yes) ;; *) REPLACE_STRERROR_0=1 $as_echo "#define REPLACE_STRERROR_0 1" >>confdefs.h ;; esac : if test $ac_cv_func_strerror_r = yes; then if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for strerror_r with POSIX signature" >&5 $as_echo_n "checking for strerror_r with POSIX signature... " >&6; } if ${gl_cv_func_strerror_r_posix_signature+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int strerror_r (int, char *, size_t); int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_func_strerror_r_posix_signature=yes else gl_cv_func_strerror_r_posix_signature=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_strerror_r_posix_signature" >&5 $as_echo "$gl_cv_func_strerror_r_posix_signature" >&6; } if test $gl_cv_func_strerror_r_posix_signature = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether strerror_r works" >&5 $as_echo_n "checking whether strerror_r works... " >&6; } if ${gl_cv_func_strerror_r_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : case "$host_os" in # Guess no on AIX. aix*) gl_cv_func_strerror_r_works="guessing no";; # Guess no on HP-UX. hpux*) gl_cv_func_strerror_r_works="guessing no";; # Guess no on BSD variants. *bsd*) gl_cv_func_strerror_r_works="guessing no";; # Guess yes otherwise. *) gl_cv_func_strerror_r_works="guessing yes";; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main () { int result = 0; char buf[79]; if (strerror_r (EACCES, buf, 0) < 0) result |= 1; errno = 0; if (strerror_r (EACCES, buf, sizeof buf) != 0) result |= 2; strcpy (buf, "Unknown"); if (strerror_r (0, buf, sizeof buf) != 0) result |= 4; if (errno) result |= 8; if (strstr (buf, "nknown") || strstr (buf, "ndefined")) result |= 0x10; errno = 0; *buf = 0; if (strerror_r (-3, buf, sizeof buf) < 0) result |= 0x20; if (errno) result |= 0x40; if (!*buf) result |= 0x80; return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_strerror_r_works=yes else gl_cv_func_strerror_r_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_strerror_r_works" >&5 $as_echo "$gl_cv_func_strerror_r_works" >&6; } else : if test $ac_cv_func___xpg_strerror_r = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether __xpg_strerror_r works" >&5 $as_echo_n "checking whether __xpg_strerror_r works... " >&6; } if ${gl_cv_func_strerror_r_works+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : gl_cv_func_strerror_r_works="guessing no" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include extern #ifdef __cplusplus "C" #endif int __xpg_strerror_r(int, char *, size_t); int main () { int result = 0; char buf[256] = "^"; char copy[256]; char *str = strerror (-1); strcpy (copy, str); if (__xpg_strerror_r (-2, buf, 1) == 0) result |= 1; if (*buf) result |= 2; __xpg_strerror_r (-2, buf, 256); if (strcmp (str, copy)) result |= 4; return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_strerror_r_works=yes else gl_cv_func_strerror_r_works=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_strerror_r_works" >&5 $as_echo "$gl_cv_func_strerror_r_works" >&6; } fi fi fi fi ac_fn_c_check_decl "$LINENO" "strerror_r" "ac_cv_have_decl_strerror_r" "$ac_includes_default" if test "x$ac_cv_have_decl_strerror_r" = xyes; then : ac_have_decl=1 else ac_have_decl=0 fi cat >>confdefs.h <<_ACEOF #define HAVE_DECL_STRERROR_R $ac_have_decl _ACEOF { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C/C++ restrict keyword" >&5 $as_echo_n "checking for C/C++ restrict keyword... " >&6; } if ${ac_cv_c_restrict+:} false; then : $as_echo_n "(cached) " >&6 else ac_cv_c_restrict=no # The order here caters to the fact that C++ does not require restrict. for ac_kw in __restrict __restrict__ _Restrict restrict; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ typedef int * int_ptr; int foo (int_ptr $ac_kw ip) { return ip[0]; } int main () { int s[1]; int * $ac_kw t = s; t[0] = 0; return foo(t) ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_c_restrict=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext test "$ac_cv_c_restrict" != no && break done fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_restrict" >&5 $as_echo "$ac_cv_c_restrict" >&6; } case $ac_cv_c_restrict in restrict) ;; no) $as_echo "#define restrict /**/" >>confdefs.h ;; *) cat >>confdefs.h <<_ACEOF #define restrict $ac_cv_c_restrict _ACEOF ;; esac if test $gl_cv_have_include_next = yes; then gl_cv_next_string_h='<'string.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_string_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'string.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_string_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_string_h" >&5 $as_echo "$gl_cv_next_string_h" >&6; } fi NEXT_STRING_H=$gl_cv_next_string_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'string.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_string_h fi NEXT_AS_FIRST_DIRECTIVE_STRING_H=$gl_next_as_first_directive for gl_func in ffsl ffsll memmem mempcpy memrchr rawmemchr stpcpy stpncpy strchrnul strdup strncat strndup strnlen strpbrk strsep strcasestr strtok_r strerror_r strsignal strverscmp; do as_gl_Symbol=`$as_echo "gl_cv_have_raw_decl_$gl_func" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro" >&5 $as_echo_n "checking whether $gl_func is declared without a macro... " >&6; } if eval \${$as_gl_Symbol+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #undef $gl_func (void) $gl_func; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$as_gl_Symbol=yes" else eval "$as_gl_Symbol=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$as_gl_Symbol { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test \"x\$"$as_gl_Symbol"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_RAW_DECL_$gl_func" | $as_tr_cpp` 1 _ACEOF eval ac_cv_have_decl_$gl_func=yes fi done WINDOWS_64_BIT_OFF_T=0 if test $gl_cv_have_include_next = yes; then gl_cv_next_sys_types_h='<'sys/types.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_sys_types_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'sys/types.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_sys_types_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_sys_types_h" >&5 $as_echo "$gl_cv_next_sys_types_h" >&6; } fi NEXT_SYS_TYPES_H=$gl_cv_next_sys_types_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'sys/types.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_sys_types_h fi NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H=$gl_next_as_first_directive if true; then GL_COND_LIBTOOL_TRUE= GL_COND_LIBTOOL_FALSE='#' else GL_COND_LIBTOOL_TRUE='#' GL_COND_LIBTOOL_FALSE= fi gl_cond_libtool=true gl_m4_base='gnulib/m4' gl_source_base='gnulib/src' if test $gl_cv_have_include_next = yes; then gl_cv_next_fcntl_h='<'fcntl.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_fcntl_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'fcntl.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_fcntl_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_fcntl_h" >&5 $as_echo "$gl_cv_next_fcntl_h" >&6; } fi NEXT_FCNTL_H=$gl_cv_next_fcntl_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'fcntl.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_fcntl_h fi NEXT_AS_FIRST_DIRECTIVE_FCNTL_H=$gl_next_as_first_directive for gl_func in fcntl openat; do as_gl_Symbol=`$as_echo "gl_cv_have_raw_decl_$gl_func" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro" >&5 $as_echo_n "checking whether $gl_func is declared without a macro... " >&6; } if eval \${$as_gl_Symbol+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #undef $gl_func (void) $gl_func; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$as_gl_Symbol=yes" else eval "$as_gl_Symbol=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$as_gl_Symbol { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test \"x\$"$as_gl_Symbol"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_RAW_DECL_$gl_func" | $as_tr_cpp` 1 _ACEOF eval ac_cv_have_decl_$gl_func=yes fi done if test $REPLACE_GETOPT = 1; then gl_LIBOBJS="$gl_LIBOBJS getopt.$ac_objext" gl_LIBOBJS="$gl_LIBOBJS getopt1.$ac_objext" : GNULIB_GL_UNISTD_H_GETOPT=1 fi $as_echo "#define GNULIB_TEST_GETOPT_GNU 1" >>confdefs.h REPLACE_GETOPT=0 if test -n "$gl_replace_getopt"; then REPLACE_GETOPT=1 fi if test $REPLACE_GETOPT = 1; then GETOPT_H=getopt.h $as_echo "#define __GETOPT_PREFIX rpl_" >>confdefs.h fi if test $REPLACE_GETOPT = 1; then gl_LIBOBJS="$gl_LIBOBJS getopt.$ac_objext" gl_LIBOBJS="$gl_LIBOBJS getopt1.$ac_objext" : GNULIB_GL_UNISTD_H_GETOPT=1 fi case $host_os in mingw*) REPLACE_ISATTY=1 ;; esac if test $REPLACE_ISATTY = 1; then gl_LIBOBJS="$gl_LIBOBJS isatty.$ac_objext" : fi GNULIB_ISATTY=1 $as_echo "#define GNULIB_TEST_ISATTY 1" >>confdefs.h if test "$gl_threads_api" = posix; then # OSF/1 4.0 and Mac OS X 10.1 lack the pthread_rwlock_t type and the # pthread_rwlock_* functions. ac_fn_c_check_type "$LINENO" "pthread_rwlock_t" "ac_cv_type_pthread_rwlock_t" "#include " if test "x$ac_cv_type_pthread_rwlock_t" = xyes; then : $as_echo "#define HAVE_PTHREAD_RWLOCK 1" >>confdefs.h fi # glibc defines PTHREAD_MUTEX_RECURSIVE as enum, not as a macro. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { #if __FreeBSD__ == 4 error "No, in FreeBSD 4.0 recursive mutexes actually don't work." #elif (defined __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ \ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070) error "No, in Mac OS X < 10.7 recursive mutexes actually don't work." #else int x = (int)PTHREAD_MUTEX_RECURSIVE; return !x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : $as_echo "#define HAVE_PTHREAD_MUTEX_RECURSIVE 1" >>confdefs.h fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi : cat >>confdefs.h <<_ACEOF #define GNULIB_LOCK 1 _ACEOF if test $HAVE_MEMCHR = 0 || test $REPLACE_MEMCHR = 1; then gl_LIBOBJS="$gl_LIBOBJS memchr.$ac_objext" for ac_header in bp-sym.h do : ac_fn_c_check_header_mongrel "$LINENO" "bp-sym.h" "ac_cv_header_bp_sym_h" "$ac_includes_default" if test "x$ac_cv_header_bp_sym_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_BP_SYM_H 1 _ACEOF fi done fi GNULIB_MEMCHR=1 $as_echo "#define GNULIB_TEST_MEMCHR 1" >>confdefs.h for ac_func in memmem do : ac_fn_c_check_func "$LINENO" "memmem" "ac_cv_func_memmem" if test "x$ac_cv_func_memmem" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_MEMMEM 1 _ACEOF fi done if test $ac_cv_func_memmem = yes; then HAVE_MEMMEM=1 else HAVE_MEMMEM=0 fi : if test $ac_cv_have_decl_memmem = no; then HAVE_DECL_MEMMEM=0 else { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether memmem works" >&5 $as_echo_n "checking whether memmem works... " >&6; } if ${gl_cv_func_memmem_works_always+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __GNU_LIBRARY__ #include #if ((__GLIBC__ == 2 && ((__GLIBC_MINOR > 0 && __GLIBC_MINOR__ < 9) \ || __GLIBC_MINOR__ > 12)) \ || (__GLIBC__ > 2)) \ || defined __UCLIBC__ Lucky user #endif #elif defined __CYGWIN__ #include #if CYGWIN_VERSION_DLL_COMBINED > CYGWIN_VERSION_DLL_MAKE_COMBINED (1007, 7) Lucky user #endif #else Lucky user #endif _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "Lucky user" >/dev/null 2>&1; then : gl_cv_func_memmem_works_always="guessing yes" else gl_cv_func_memmem_works_always="guessing no" fi rm -f conftest* else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include /* for memmem */ #define P "_EF_BF_BD" #define HAYSTACK "F_BD_CE_BD" P P P P "_C3_88_20" P P P "_C3_A7_20" P #define NEEDLE P P P P P int main () { int result = 0; if (memmem (HAYSTACK, strlen (HAYSTACK), NEEDLE, strlen (NEEDLE))) result |= 1; /* Check for empty needle behavior. */ { const char *haystack = "AAA"; if (memmem (haystack, 3, NULL, 0) != haystack) result |= 2; } return result; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : gl_cv_func_memmem_works_always=yes else gl_cv_func_memmem_works_always=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_func_memmem_works_always" >&5 $as_echo "$gl_cv_func_memmem_works_always" >&6; } case "$gl_cv_func_memmem_works_always" in *yes) ;; *) REPLACE_MEMMEM=1 ;; esac fi : if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then gl_LIBOBJS="$gl_LIBOBJS memmem.$ac_objext" fi GNULIB_MEMMEM=1 $as_echo "#define GNULIB_TEST_MEMMEM 1" >>confdefs.h : if test $ac_cv_func__set_invalid_parameter_handler = yes; then HAVE_MSVC_INVALID_PARAMETER_HANDLER=1 $as_echo "#define HAVE_MSVC_INVALID_PARAMETER_HANDLER 1" >>confdefs.h else HAVE_MSVC_INVALID_PARAMETER_HANDLER=0 fi if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then gl_LIBOBJS="$gl_LIBOBJS msvc-inval.$ac_objext" fi if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then gl_LIBOBJS="$gl_LIBOBJS msvc-nothrow.$ac_objext" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ssize_t" >&5 $as_echo_n "checking for ssize_t... " >&6; } if ${gt_cv_ssize_t+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { int x = sizeof (ssize_t *) + sizeof (ssize_t); return !x; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gt_cv_ssize_t=yes else gt_cv_ssize_t=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gt_cv_ssize_t" >&5 $as_echo "$gt_cv_ssize_t" >&6; } if test $gt_cv_ssize_t = no; then $as_echo "#define ssize_t int" >>confdefs.h fi STDDEF_H= if test $gt_cv_c_wchar_t = no; then HAVE_WCHAR_T=0 STDDEF_H=stddef.h fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether NULL can be used in arbitrary expressions" >&5 $as_echo_n "checking whether NULL can be used in arbitrary expressions... " >&6; } if ${gl_cv_decl_null_works+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int test[2 * (sizeof NULL == sizeof (void *)) -1]; int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : gl_cv_decl_null_works=yes else gl_cv_decl_null_works=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_decl_null_works" >&5 $as_echo "$gl_cv_decl_null_works" >&6; } if test $gl_cv_decl_null_works = no; then REPLACE_NULL=1 STDDEF_H=stddef.h fi if test -n "$STDDEF_H"; then GL_GENERATE_STDDEF_H_TRUE= GL_GENERATE_STDDEF_H_FALSE='#' else GL_GENERATE_STDDEF_H_TRUE='#' GL_GENERATE_STDDEF_H_FALSE= fi if test -n "$STDDEF_H"; then if test $gl_cv_have_include_next = yes; then gl_cv_next_stddef_h='<'stddef.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_stddef_h+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'stddef.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_stddef_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_stddef_h" >&5 $as_echo "$gl_cv_next_stddef_h" >&6; } fi NEXT_STDDEF_H=$gl_cv_next_stddef_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'stddef.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_stddef_h fi NEXT_AS_FIRST_DIRECTIVE_STDDEF_H=$gl_next_as_first_directive fi if test -n "$ERRNO_H" || test $REPLACE_STRERROR_0 = 1; then gl_LIBOBJS="$gl_LIBOBJS strerror-override.$ac_objext" : if test $ac_cv_header_sys_socket_h != yes; then for ac_header in winsock2.h do : ac_fn_c_check_header_mongrel "$LINENO" "winsock2.h" "ac_cv_header_winsock2_h" "$ac_includes_default" if test "x$ac_cv_header_winsock2_h" = xyes; then : cat >>confdefs.h <<_ACEOF #define HAVE_WINSOCK2_H 1 _ACEOF fi done fi if test "$ac_cv_header_winsock2_h" = yes; then HAVE_WINSOCK2_H=1 UNISTD_H_HAVE_WINSOCK2_H=1 SYS_IOCTL_H_HAVE_WINSOCK2_H=1 else HAVE_WINSOCK2_H=0 fi fi : if test $ac_cv_have_decl_strerror_r = no; then HAVE_DECL_STRERROR_R=0 fi if test $ac_cv_func_strerror_r = yes; then if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then if test $gl_cv_func_strerror_r_posix_signature = yes; then case "$gl_cv_func_strerror_r_works" in *no) REPLACE_STRERROR_R=1 ;; esac else REPLACE_STRERROR_R=1 fi else REPLACE_STRERROR_R=1 fi fi if test $HAVE_DECL_STRERROR_R = 0 || test $REPLACE_STRERROR_R = 1; then gl_LIBOBJS="$gl_LIBOBJS strerror_r.$ac_objext" : : : fi GNULIB_STRERROR_R=1 $as_echo "#define GNULIB_TEST_STRERROR_R 1" >>confdefs.h : if test $gl_cv_have_include_next = yes; then gl_cv_next_unistd_h='<'unistd.h'>' else { $as_echo "$as_me:${as_lineno-$LINENO}: checking absolute name of " >&5 $as_echo_n "checking absolute name of ... " >&6; } if ${gl_cv_next_unistd_h+:} false; then : $as_echo_n "(cached) " >&6 else if test $ac_cv_header_unistd_h = yes; then cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac case "$host_os" in mingw*) gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' gl_header_literal_regex=`echo 'unistd.h' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ s|^/[^/]|//&| p q }' gl_cv_next_unistd_h='"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&5 | sed -n "$gl_absolute_header_sed"`'"' else gl_cv_next_unistd_h='<'unistd.h'>' fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $gl_cv_next_unistd_h" >&5 $as_echo "$gl_cv_next_unistd_h" >&6; } fi NEXT_UNISTD_H=$gl_cv_next_unistd_h if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'unistd.h'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=$gl_cv_next_unistd_h fi NEXT_AS_FIRST_DIRECTIVE_UNISTD_H=$gl_next_as_first_directive if test $ac_cv_header_unistd_h = yes; then HAVE_UNISTD_H=1 else HAVE_UNISTD_H=0 fi for gl_func in chdir chown dup dup2 dup3 environ euidaccess faccessat fchdir fchownat fdatasync fsync ftruncate getcwd getdomainname getdtablesize getgroups gethostname getlogin getlogin_r getpagesize getusershell setusershell endusershell group_member isatty lchown link linkat lseek pipe pipe2 pread pwrite readlink readlinkat rmdir sethostname sleep symlink symlinkat ttyname_r unlink unlinkat usleep; do as_gl_Symbol=`$as_echo "gl_cv_have_raw_decl_$gl_func" | $as_tr_sh` { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $gl_func is declared without a macro" >&5 $as_echo_n "checking whether $gl_func is declared without a macro... " >&6; } if eval \${$as_gl_Symbol+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if HAVE_UNISTD_H # include #endif /* Some systems declare various items in the wrong headers. */ #if !(defined __GLIBC__ && !defined __UCLIBC__) # include # include # include # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ # include # endif #endif int main () { #undef $gl_func (void) $gl_func; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$as_gl_Symbol=yes" else eval "$as_gl_Symbol=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$as_gl_Symbol { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } if eval test \"x\$"$as_gl_Symbol"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_RAW_DECL_$gl_func" | $as_tr_cpp` 1 _ACEOF eval ac_cv_have_decl_$gl_func=yes fi done # End of code from modules gltests_libdeps= gltests_ltlibdeps= gl_source_base='tests' gltests_WITNESS=IN_`echo "${PACKAGE-$PACKAGE_TARNAME}" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'`_GNULIB_TESTS gl_module_indicator_condition=$gltests_WITNESS ac_fn_c_find_uintX_t "$LINENO" "64" "ac_cv_c_uint64_t" case $ac_cv_c_uint64_t in #( no|yes) ;; #( *) $as_echo "#define _UINT64_T 1" >>confdefs.h cat >>confdefs.h <<_ACEOF #define uint64_t $ac_cv_c_uint64_t _ACEOF ;; esac echo "$as_me: this is autotroll.m4 serial 8" \ >& 5 # This is a hack to get decent flow control with `break'. for _qt_ignored in once; do # Check whether --with-qt was given. if test "${with_qt+set}" = set; then : withval=$with_qt; fi if test x"$with_qt" = x"no"; then break else $as_echo "#define HAVE_QT 1" >>confdefs.h fi if test x"$with_qt" = x"yes"; then QT_PATH= else QT_PATH=$with_qt fi # Find Qt. if test -d /usr/local/Trolltech; then # Try to find the latest version. tmp_qt_paths=`echo /usr/local/Trolltech/*/bin \ | tr ' ' '\n' \ | sort -nr \ | xargs \ | sed 's/ */:/g'` fi # Path to which recent MacPorts (~v1.7) install Qt4. test -d /opt/local/libexec/qt4-mac/bin \ && tmp_qt_paths="$tmp_qt_paths:/opt/local/libexec/qt4-mac/bin" # Find qmake. for ax_tool in qmake qmake-qt4 qmake-qt3; do if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}$ax_tool", so it can be a program name with args. set dummy ${ac_tool_prefix}$ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_QMAKE+:} false; then : $as_echo_n "(cached) " >&6 else case $QMAKE in [\\/]* | ?:[\\/]*) ac_cv_path_QMAKE="$QMAKE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_DIR:$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_QMAKE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi QMAKE=$ac_cv_path_QMAKE if test -n "$QMAKE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $QMAKE" >&5 $as_echo "$QMAKE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_QMAKE"; then ac_pt_QMAKE=$QMAKE # Extract the first word of "$ax_tool", so it can be a program name with args. set dummy $ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_QMAKE+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_QMAKE in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_QMAKE="$ac_pt_QMAKE" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_DIR:$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_ac_pt_QMAKE="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_QMAKE=$ac_cv_path_ac_pt_QMAKE if test -n "$ac_pt_QMAKE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_QMAKE" >&5 $as_echo "$ac_pt_QMAKE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_QMAKE" = x; then QMAKE="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac QMAKE=$ac_pt_QMAKE fi else QMAKE="$ac_cv_path_QMAKE" fi test -n "$QMAKE" && break done test -n "$QMAKE" || QMAKE="missing" if test x"$QMAKE" = xmissing; then as_fn_error $? "Cannot find qmake. Try --with-qt=PATH." "$LINENO" 5 break fi # Find moc (Meta Object Compiler). for ax_tool in moc moc-qt4 moc-qt3; do if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}$ax_tool", so it can be a program name with args. set dummy ${ac_tool_prefix}$ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_MOC+:} false; then : $as_echo_n "(cached) " >&6 else case $MOC in [\\/]* | ?:[\\/]*) ac_cv_path_MOC="$MOC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_MOC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi MOC=$ac_cv_path_MOC if test -n "$MOC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MOC" >&5 $as_echo "$MOC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_MOC"; then ac_pt_MOC=$MOC # Extract the first word of "$ax_tool", so it can be a program name with args. set dummy $ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_MOC+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_MOC in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_MOC="$ac_pt_MOC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_ac_pt_MOC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_MOC=$ac_cv_path_ac_pt_MOC if test -n "$ac_pt_MOC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_MOC" >&5 $as_echo "$ac_pt_MOC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_MOC" = x; then MOC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MOC=$ac_pt_MOC fi else MOC="$ac_cv_path_MOC" fi test -n "$MOC" && break done test -n "$MOC" || MOC="missing" if test x"$MOC" = xmissing; then as_fn_error $? "Cannot find moc (Meta Object Compiler). Try --with-qt=PATH." "$LINENO" 5 break fi # Find uic (User Interface Compiler). for ax_tool in uic uic-qt4 uic-qt3 uic3; do if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}$ax_tool", so it can be a program name with args. set dummy ${ac_tool_prefix}$ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_UIC+:} false; then : $as_echo_n "(cached) " >&6 else case $UIC in [\\/]* | ?:[\\/]*) ac_cv_path_UIC="$UIC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_UIC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi UIC=$ac_cv_path_UIC if test -n "$UIC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $UIC" >&5 $as_echo "$UIC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_UIC"; then ac_pt_UIC=$UIC # Extract the first word of "$ax_tool", so it can be a program name with args. set dummy $ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_UIC+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_UIC in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_UIC="$ac_pt_UIC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_ac_pt_UIC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_UIC=$ac_cv_path_ac_pt_UIC if test -n "$ac_pt_UIC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_UIC" >&5 $as_echo "$ac_pt_UIC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_UIC" = x; then UIC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac UIC=$ac_pt_UIC fi else UIC="$ac_cv_path_UIC" fi test -n "$UIC" && break done test -n "$UIC" || UIC="missing" if test x"$UIC" = xmissing; then as_fn_error $? "Cannot find uic (User Interface Compiler). Try --with-qt=PATH." "$LINENO" 5 break fi # Find rcc (Qt Resource Compiler). for ax_tool in rcc; do if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}$ax_tool", so it can be a program name with args. set dummy ${ac_tool_prefix}$ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_RCC+:} false; then : $as_echo_n "(cached) " >&6 else case $RCC in [\\/]* | ?:[\\/]*) ac_cv_path_RCC="$RCC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_RCC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi RCC=$ac_cv_path_RCC if test -n "$RCC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RCC" >&5 $as_echo "$RCC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_RCC"; then ac_pt_RCC=$RCC # Extract the first word of "$ax_tool", so it can be a program name with args. set dummy $ax_tool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ac_pt_RCC+:} false; then : $as_echo_n "(cached) " >&6 else case $ac_pt_RCC in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_RCC="$ac_pt_RCC" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_dummy="$QT_PATH:$PATH:$tmp_qt_paths" for as_dir in $as_dummy do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_ac_pt_RCC="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_RCC=$ac_cv_path_ac_pt_RCC if test -n "$ac_pt_RCC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_RCC" >&5 $as_echo "$ac_pt_RCC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_RCC" = x; then RCC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RCC=$ac_pt_RCC fi else RCC="$ac_cv_path_RCC" fi test -n "$RCC" && break done test -n "$RCC" || RCC="missing" if test x"$RCC" = xmissing; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Cannot find rcc (Qt Resource Compiler). Try --with-qt=PATH." >&5 $as_echo "$as_me: WARNING: Cannot find rcc (Qt Resource Compiler). Try --with-qt=PATH." >&2;} fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether host operating system is Darwin" >&5 $as_echo_n "checking whether host operating system is Darwin... " >&6; } at_darwin=no at_qmake_args= case $host_os in darwin*) at_darwin=yes at_qmake_args='-spec macx-g++' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_darwin" >&5 $as_echo "$at_darwin" >&6; } # If we don't know the path to Qt, guess it from the path to # qmake. if test x"$QT_PATH" = x; then QT_PATH=`dirname "$QMAKE"` fi if test x"$QT_PATH" = x; then as_fn_error $? "Cannot find your Qt installation. Try --with-qt=PATH." "$LINENO" 5 break fi # Get ready to build a test-app with Qt. if mkdir conftest.dir \ && cd conftest.dir; then : else as_fn_error $? "Cannot mkdir conftest.dir or cd to that directory." "$LINENO" 5 break fi cat >conftest.h <<_ASEOF #include class Foo: public QObject { Q_OBJECT; public: Foo(); ~Foo() {} public Q_SLOTS: void setValue(int value); Q_SIGNALS: void valueChanged(int newValue); private: int value_; }; _ASEOF cat >conftest.cpp <<_ASEOF #include "conftest.h" Foo::Foo() : value_ (42) { connect(this, SIGNAL(valueChanged(int)), this, SLOT(setValue(int))); } void Foo::setValue(int value) { value_ = value; } int main() { Foo f; } _ASEOF if $QMAKE -project; then : else as_fn_error $? "Calling $QMAKE -project failed." "$LINENO" 5 break fi # Find the .pro file generated by qmake. pro_file=conftest.dir.pro test -f $pro_file || pro_file=`echo *.pro` if test -f "$pro_file"; then : else as_fn_error $? "Can't find the .pro file generated by Qmake." "$LINENO" 5 break fi echo "$as_me:$LINENO: Invoking $QMAKE on $pro_file" \ >& 5 sed 's/^/| /' "$pro_file" >& 5 if $QMAKE $at_qmake_args; then : else as_fn_error $? "Calling $QMAKE $at_qmake_args failed." "$LINENO" 5 break fi # QMake has a very annoying misfeature: Sometimes it generates # Makefiles where all the references to the files from the Qt # installation are relative. We can't use them as-is because if # we take, say, a -I../../usr/include/Qt from that Makefile, the # flag is invalid as soon as we use it in another (sub) # directory. So what this perl pass does is that it rewrites all # relative paths to absolute paths. Another problem when # building on Cygwin is that QMake mixes paths with backslashes # and forward slashes and paths must be handled with extra care # because of the stupid Windows drive letters. echo "$as_me:$LINENO: fixing the Makefiles:" Makefile* \ >& 5 cat >fixmk.pl <<\EOF use strict; use Cwd qw(cwd abs_path); # This variable is useful on Cygwin for the following reason: Say # that you are in `/' (that is, in fact you are in C:/cygwin, or # something like that). If you `cd ..' then obviously you remain in # `/' (that is in C:/cygwin). QMake generates paths that are # relative to C:/ (or another drive letter, whatever) so the trick to # get the `..' resolved properly is to prepend the absolute path of # the current working directory in a Windows-style. C:/cygwin/../ # will properly become C:/. my $d = ""; my $r2a = 0; my $b2f = 0; my $cygwin = 0; if ($^O eq "cygwin") { $cygwin = 1; $d = cwd(); $d = `cygpath --mixed '$d'`; chomp($d); $d .= "/"; } sub rel2abs($) { my $p = $d . shift; # print "r2a p=$p"; -e $p || return $p; if ($cygwin) { $p = `cygpath --mixed '$p'`; chomp($p); } else { # Do not use abs_path on Cygwin: it incorrectly resolves the paths # that are relative to C:/ rather than `/'. $p = abs_path($p); } # print " -> $p\n"; ++$r2a; return $p; } # Only useful on Cygwin. sub back2forward($) { my $p = shift; # print "b2f p=$p"; -e $p || return $p; $p = `cygpath --mixed '$p'`; chomp($p); # print " -> $p\n"; ++$b2f; return $p; } foreach my $mk (@ARGV) { next if $mk =~ /~$/; open(MK, $mk) or die("open $mk: $!"); # print "mk=$mk\n"; my $file = join("", ); close(MK) or die("close $mk: $!"); rename $mk, $mk . "~" or die("rename $mk: $!"); $file =~ s{(?:\.\.[\\/])+(?:[^"'\s:]+)}{rel2abs($&)}gse; $file =~ s{(?:[a-zA-Z]:[\\/])?(?:[^"\s]+\\[^"\s:]+)+} {back2forward($&)}gse if $cygwin; open(MK, ">", $mk) or die("open >$mk: $!"); print MK $file; close(MK) or die("close >$mk: $!"); print "$mk: updated $r2a relative paths and $b2f backslash-style paths\n"; $r2a = 0; $b2f = 0; } EOF perl >& 5 -w fixmk.pl Makefile* \ || { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: failed to fix the Makefiles generated by $QMAKE" >&5 $as_echo "$as_me: WARNING: failed to fix the Makefiles generated by $QMAKE" >&2;} rm -f fixmk.pl # Try to compile a simple Qt app. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we can build a simple Qt application" >&5 $as_echo_n "checking whether we can build a simple Qt application... " >&6; } if ${at_cv_qt_build+:} false; then : $as_echo_n "(cached) " >&6 else at_cv_qt_build=ko : ${MAKE=make} if $MAKE >& 5 2>&1; then at_cv_qt_build='ok, looks like Qt 4' else echo "$as_me:$LINENO: Build failed, trying to #include instead" \ >& 5 sed 's///' conftest.h > tmp.h \ && mv tmp.h conftest.h if $MAKE >& 5 2>&1; then at_cv_qt_build='ok, looks like Qt 3' else # Sometimes (such as on Debian) build will fail because Qt # hasn't been installed in debug mode and qmake tries (by # default) to build apps in debug mode => Try again in # release mode. echo "$as_me:$LINENO: Build failed, trying to enforce release mode" \ >& 5 # Tweak the value of CONFIG in the .pro file for +release. qt_conf='' for at_mod in +release; do at_mod=`echo "$at_mod" | sed 's/^-//; tough s/^+//; beef :ough s/^/CONFIG -= /;n :eef s/^/CONFIG += /'` qt_conf="\ $qt_conf $at_mod" done echo "$qt_conf" | sed 1d >>"$pro_file" sed 's///' conftest.h > tmp.h \ && mv tmp.h conftest.h if $MAKE >& 5 2>&1; then at_cv_qt_build='ok, looks like Qt 4, release mode forced' else echo "$as_me:$LINENO: Build failed, trying to #include instead" \ >& 5 sed 's///' conftest.h > tmp.h \ && mv tmp.h conftest.h if $MAKE >& 5 2>&1; then at_cv_qt_build='ok, looks like Qt 3, release mode forced' else at_cv_qt_build=ko echo "$as_me:$LINENO: failed program was:" \ >& 5 sed 's/^/| /' conftest.h >& 5 echo "$as_me:$LINENO: failed program was:" \ >& 5 sed 's/^/| /' conftest.cpp >& 5 fi # if make with Qt3-style #include and release mode forced. fi # if make with Qt4-style #include and release mode forced. fi # if make with Qt3-style #include. fi # if make with Qt4-style #include. fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_qt_build" >&5 $as_echo "$at_cv_qt_build" >&6; } if test x"$at_cv_qt_build" = xko; then as_fn_error $? "Cannot build a test Qt program" "$LINENO" 5 cd .. break fi QT_VERSION_MAJOR=`echo "$at_cv_qt_build" | sed 's/[^0-9]*//g'` # This sed filter is applied after an expression of the form: # /^FOO.*=/!d; it starts by removing the beginning of the line, # removing references to SUBLIBS, removing unnecessary # whitespaces at the beginning, and prefixes all variable uses by # QT_. qt_sed_filter='s///; s/$(SUBLIBS)//g; s/^ *//; s/\$(\([A-Z_][A-Z_]*\))/$(QT_\1)/g' # Find the Makefile (qmake happens to generate a fake Makefile # which invokes a Makefile.Debug or Makefile.Release). If we # have both, we'll pick the Makefile.Release. The reason is that # that release uses -Os and debug -g. We can override -Os by # passing another -O but we usually don't override -g. if test -f Makefile.Release; then at_mfile='Makefile.Release' else at_mfile='Makefile' fi if test -f $at_mfile; then : else as_fn_error $? "Cannot find the Makefile generated by qmake." "$LINENO" 5 cd .. break fi # Find the DEFINES of Qt (should have been named CPPFLAGS). { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the DEFINES to use with Qt" >&5 $as_echo_n "checking for the DEFINES to use with Qt... " >&6; } if ${at_cv_env_QT_DEFINES+:} false; then : $as_echo_n "(cached) " >&6 else at_cv_env_QT_DEFINES=`sed "/^DEFINES[^A-Z=]*=/!d; $qt_sed_filter" $at_mfile` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_env_QT_DEFINES" >&5 $as_echo "$at_cv_env_QT_DEFINES" >&6; } QT_DEFINES=$at_cv_env_QT_DEFINES # Find the CFLAGS of Qt. (We can use Qt in C?!) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the CFLAGS to use with Qt" >&5 $as_echo_n "checking for the CFLAGS to use with Qt... " >&6; } if ${at_cv_env_QT_CFLAGS+:} false; then : $as_echo_n "(cached) " >&6 else at_cv_env_QT_CFLAGS=`sed "/^CFLAGS[^A-Z=]*=/!d; $qt_sed_filter" $at_mfile` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_env_QT_CFLAGS" >&5 $as_echo "$at_cv_env_QT_CFLAGS" >&6; } QT_CFLAGS=$at_cv_env_QT_CFLAGS # Find the CXXFLAGS of Qt. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the CXXFLAGS to use with Qt" >&5 $as_echo_n "checking for the CXXFLAGS to use with Qt... " >&6; } if ${at_cv_env_QT_CXXFLAGS+:} false; then : $as_echo_n "(cached) " >&6 else at_cv_env_QT_CXXFLAGS=`sed "/^CXXFLAGS[^A-Z=]*=/!d; $qt_sed_filter" $at_mfile` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_env_QT_CXXFLAGS" >&5 $as_echo "$at_cv_env_QT_CXXFLAGS" >&6; } QT_CXXFLAGS=$at_cv_env_QT_CXXFLAGS # Find the INCPATH of Qt. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the INCPATH to use with Qt" >&5 $as_echo_n "checking for the INCPATH to use with Qt... " >&6; } if ${at_cv_env_QT_INCPATH+:} false; then : $as_echo_n "(cached) " >&6 else at_cv_env_QT_INCPATH=`sed "/^INCPATH[^A-Z=]*=/!d; $qt_sed_filter" $at_mfile` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_env_QT_INCPATH" >&5 $as_echo "$at_cv_env_QT_INCPATH" >&6; } QT_INCPATH=$at_cv_env_QT_INCPATH QT_CPPFLAGS="$at_cv_env_QT_DEFINES $at_cv_env_QT_INCPATH" # Find the LFLAGS of Qt (Should have been named LDFLAGS). { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the LDFLAGS to use with Qt" >&5 $as_echo_n "checking for the LDFLAGS to use with Qt... " >&6; } if ${at_cv_env_QT_LDFLAGS+:} false; then : $as_echo_n "(cached) " >&6 else at_cv_env_QT_LDFLAGS=`sed "/^LFLAGS[^A-Z=]*=/!d; $qt_sed_filter" $at_mfile` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_env_QT_LDFLAGS" >&5 $as_echo "$at_cv_env_QT_LDFLAGS" >&6; } QT_LFLAGS=$at_cv_env_QT_LDFLAGS QT_LDFLAGS=$at_cv_env_QT_LDFLAGS # Find the LIBS of Qt. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the LIBS to use with Qt" >&5 $as_echo_n "checking for the LIBS to use with Qt... " >&6; } if ${at_cv_env_QT_LIBS+:} false; then : $as_echo_n "(cached) " >&6 else at_cv_env_QT_LIBS=`sed "/^LIBS[^A-Z]*=/!d; $qt_sed_filter" $at_mfile` if test x$at_darwin = xyes; then # Fix QT_LIBS: as of today Libtool (GNU Libtool 1.5.23a) # doesn't handle -F properly. The "bug" has been fixed on 22 # October 2006 by Peter O'Gorman but we provide backward # compatibility here. at_cv_env_QT_LIBS=`echo "$at_cv_env_QT_LIBS" \ | sed 's/^-F/-Wl,-F/; s/ -F/ -Wl,-F/g'` fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_env_QT_LIBS" >&5 $as_echo "$at_cv_env_QT_LIBS" >&6; } QT_LIBS=$at_cv_env_QT_LIBS cd .. && rm -rf conftest.dir # Run the user code done # end hack (useless FOR to be able to use break) # this is a hack to get decent flow control with `break' for _qt_ignored in once; do if test x"$with_qt" = x"no"; then break fi if test x"$QMAKE" = x; then as_fn_error $? "\$QMAKE is empty. Did you invoke AT_WITH_QT before AT_REQUIRE_QT_VERSION?" "$LINENO" 5 break fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Qt's version" >&5 $as_echo_n "checking for Qt's version... " >&6; } if ${at_cv_QT_VERSION+:} false; then : $as_echo_n "(cached) " >&6 else echo "$as_me:$LINENO: Running $QMAKE --version:" \ >& 5 $QMAKE --version >& 5 2>&1 qmake_version_sed='/^.*\([0-9]\.[0-9]\.[0-9]\).*$/!d;s//\1/' at_cv_QT_VERSION=`$QMAKE --version 2>&1 \ | sed "$qmake_version_sed"` fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $at_cv_QT_VERSION" >&5 $as_echo "$at_cv_QT_VERSION" >&6; } if test x"$at_cv_QT_VERSION" = x; then as_fn_error $? "Cannot detect Qt's version." "$LINENO" 5 break fi QT_VERSION=$at_cv_QT_VERSION as_arg_v1=$QT_VERSION as_arg_v2=4.6 awk "$as_awk_strverscmp" v1="$as_arg_v1" v2="$as_arg_v2" /dev/null case $? in #( 1) : as_fn_error $? "This package requires Qt 4.6 or above." "$LINENO" 5 break ;; #( 0) : ;; #( 2) : ;; #( *) : ;; esac # Run the user code done # end hack (useless for to be able to use break) if test x"$with_qt" != x"no"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for QLocale::quoteString" >&5 $as_echo_n "checking for QLocale::quoteString... " >&6; } as_arg_v1=$QT_VERSION as_arg_v2=4.8 awk "$as_awk_strverscmp" v1="$as_arg_v1" v2="$as_arg_v2" /dev/null case $? in #( 1) : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; #( 0) : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; #( 2) : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } $as_echo "#define HAVE_QT_QUOTESTRING 1" >>confdefs.h ;; #( *) : ;; esac fi if test x"$with_qt" != x"no"; then USE_QT_TRUE= USE_QT_FALSE='#' else USE_QT_TRUE='#' USE_QT_FALSE= fi case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.4.2' macro_revision='1.3337' 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 $as_echo_n "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*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: printf" >&5 $as_echo "printf" >&6; } ;; print*) { $as_echo "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 $as_echo "print -r" >&6; } ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: cat" >&5 $as_echo "cat" >&6; } ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if ${ac_cv_path_SED+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if ${ac_cv_path_FGREP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$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+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "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 "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else 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 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if ${lt_cv_path_NM+:} false; then : $as_echo_n "(cached) " >&6 else 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 case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DUMPBIN+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) DUMPBIN=: ;; esac fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if ${lt_cv_nm_interface+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if ${lt_cv_sys_max_cmd_len+:} false; then : $as_echo_n "(cached) " >&6 else 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; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # 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"; 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 $i != 17 # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 $as_echo_n "checking how to convert $build file names to $host format... " >&6; } if ${lt_cv_to_host_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 $as_echo "$lt_cv_to_host_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 $as_echo_n "checking how to convert $build file names to toolchain format... " >&6; } if ${lt_cv_to_tool_file_cmd+:} false; then : $as_echo_n "(cached) " >&6 else #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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 $as_echo "$lt_cv_to_tool_file_cmd" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if ${lt_cv_ld_reload_flag+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$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 "$GCC" != yes; then reload_cmds=false fi ;; darwin*) if test "$GCC" = yes; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OBJDUMP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if ${lt_cv_deplibs_check_method+:} false; then : $as_echo_n "(cached) " >&6 else 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 # which 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. # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin. if ( test "$lt_cv_nm_interface" = "BSD nm" && 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 ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; 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) 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*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; 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 ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 $as_echo "$DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DLLTOOL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 $as_echo "$ac_ct_DLLTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 $as_echo_n "checking how to associate runtime and link libraries... " >&6; } if ${lt_cv_sharedlib_from_linklib_cmd+:} false; then : $as_echo_n "(cached) " >&6 else 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 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_AR+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_AR+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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} { $as_echo "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 $as_echo_n "checking for archiver @FILE support... " >&6; } if ${lt_cv_ar_at_file+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_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=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; 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=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 $as_echo "$lt_cv_ar_at_file" >&6; } if test "x$lt_cv_ar_at_file" = xno; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_STRIP+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_RANLIB+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if ${lt_cv_sys_global_symbol_pipe+:} false; then : $as_echo_n "(cached) " >&6 else # 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 "$host_cpu" = ia64; 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 # 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 -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$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 -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\)[ ]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/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 # and D for any global 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};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print 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=$? $as_echo "$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=$? $as_echo "$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 con'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* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$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=$? $as_echo "$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 "$pipe_works" = yes; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 $as_echo_n "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test "${with_sysroot+set}" = set; then : withval=$with_sysroot; else with_sysroot=no fi lt_sysroot= case ${with_sysroot} in #( yes) if test "$GCC" = yes; then lt_sysroot=`$CC --print-sysroot 2>/dev/null` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${with_sysroot}" >&5 $as_echo "${with_sysroot}" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 $as_echo "${lt_sysroot:-no}" >&6; } # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && 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 which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$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 which ABI we are using. 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=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; 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* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$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*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|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" ;; ppc*-*linux*|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" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if ${lt_cv_cc_needs_belf+:} false; then : $as_echo_n "(cached) " >&6 else 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 () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$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*) 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 $as_echo "$MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_MANIFEST_TOOL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 $as_echo "$ac_ct_MANIFEST_TOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 $as_echo_n "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if ${lt_cv_path_mainfest_tool+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_mainfest_tool" >&5 $as_echo "$lt_cv_path_mainfest_tool" >&6; } if test "x$lt_cv_path_mainfest_tool" != xyes; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_DSYMUTIL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_NMEDIT+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_LIPO+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_ac_ct_OTOOL64+:} false; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if ${lt_cv_apple_cc_single_mod+:} false; then : $as_echo_n "(cached) " >&6 else 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 $_lt_result -eq 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if ${lt_cv_ld_exported_symbols_list+:} false; then : $as_echo_n "(cached) " >&6 else 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 () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 $as_echo_n "checking for -force_load linker flag... " >&6; } if ${lt_cv_ld_force_load+:} false; then : $as_echo_n "(cached) " >&6 else 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 $_lt_result -eq 0 && $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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 $as_echo "$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*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; 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 "$lt_cv_ld_force_load" = "no"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac for ac_header in dlfcn.h do : 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 : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done 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+set}" = set; 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 enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; 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 enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; 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 pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; 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 enable_fast_install=yes fi # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if ${lt_cv_objdir+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF 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 "X${COLLECT_NAMES+set}" != Xset; 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 for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if ${lt_cv_path_MAGIC_CMD+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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* ## 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... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if ${lt_cv_prog_compiler_rtti_exceptions+:} false; then : $as_echo_n "(cached) " >&6 else 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" # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; 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 "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; 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' ;; 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 "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; 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' ;; 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) 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' ;; 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 which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic=$lt_prog_compiler_pic fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if ${lt_cv_prog_compiler_pic_works+:} false; then : $as_echo_n "(cached) " >&6 else 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" # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; 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\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "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 "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) 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 "$with_gnu_ld" = yes; 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 "$lt_use_gnu_ld_interface" = yes; 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 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 "$host_cpu" != ia64; 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 (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; 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 ;; 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 "$host_os" = linux-dietlibc; 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 "$tmp_diet" = no 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' ;; 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 "x$supports_anon_versioning" = xyes; 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 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 "x$supports_anon_versioning" = xyes; 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 can not *** 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 "$ld_shlibs" = no; 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 "$GCC" = yes && 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 "$host_cpu" = ia64; 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 AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". 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) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | 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 # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; 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,' if test "$GCC" = yes; 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 "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; 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 "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi 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_use_runtimelinking" = yes; 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 "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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$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 "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; 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 "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath_+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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$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 "$with_gnu_ld" = yes; 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 # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' 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~linknames=' archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $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 "$lt_cv_ld_force_load" = "yes"; 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*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; 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 "$GCC" = yes; 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 $output_objdir/$soname = $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 $output_objdir/$soname = $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 "$GCC" = yes && test "$with_gnu_ld" = no; 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 "$with_gnu_ld" = no; 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 "$GCC" = yes && test "$with_gnu_ld" = no; 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) { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 $as_echo_n "checking if $CC understands -b... " >&6; } if ${lt_cv_prog_compiler__b+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 $as_echo "$lt_cv_prog_compiler__b" >&6; } if test x"$lt_cv_prog_compiler__b" = xyes; 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 "$with_gnu_ld" = no; 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 "$GCC" = yes; 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 $as_echo_n "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if ${lt_cv_irix_exported_symbol+:} false; then : $as_echo_n "(cached) " >&6 else 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 lt_cv_irix_exported_symbol=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 $as_echo "$lt_cv_irix_exported_symbol" >&6; } if test "$lt_cv_irix_exported_symbol" = yes; 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 ;; 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*) 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__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; 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 case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; 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 "$GCC" = yes; 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 "$GCC" = yes; 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 "$GCC" = yes; 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 "x$host_vendor" = xsequent; 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 "$GCC" = yes; 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 can NOT 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 "$GCC" = yes; 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 x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && 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 "$enable_shared" = yes && test "$GCC" = yes; 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc+:} false; then : $as_echo_n "(cached) " >&6 else $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=$? $as_echo "$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=$? $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 $as_echo "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; 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` 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" else 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 /usr/local/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 "$host_cpu" = ia64; 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 # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # 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}' else # 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' fi 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%'\''`; test $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 /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/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 /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/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} $libname${shared_ext}' 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 ;; 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' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; 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=yes 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 "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; 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 "$lt_cv_prog_gnu_ld" = yes; 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} /usr/local/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 ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-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 ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else 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 () { ; 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$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 # Append ld.so.conf contents 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*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac 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 if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; 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 /usr/local/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 "$with_gnu_ld" = yes; 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=freebsd-elf 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 "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # 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 "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else 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. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$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 lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) 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_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if ${ac_cv_lib_dld_shl_load+:} false; then : $as_echo_n "(cached) " >&6 else 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. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$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 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_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if ${ac_cv_lib_dl_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else 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. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$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_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if ${ac_cv_lib_svld_dlopen+:} false; then : $as_echo_n "(cached) " >&6 else 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. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$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_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if ${ac_cv_lib_dld_dld_link+:} false; then : $as_echo_n "(cached) " >&6 else 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. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$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 "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && 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" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; 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 -fvisbility=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=$? $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if ${lt_cv_dlopen_self_static+:} false; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; 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 -fvisbility=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=$? $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$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= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "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" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "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" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && 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 "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi 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 CC="$lt_save_CC" if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if ${ac_cv_prog_CXXCPP+:} false; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/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. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # 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. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # 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 # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$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. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # 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. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # 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 # 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_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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=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 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 "$_lt_caught_CXX_error" != yes; 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 for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "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 "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if ${lt_cv_path_LD+:} false; then : $as_echo_n "(cached) " >&6 else 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 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if ${lt_cv_prog_gnu_ld+:} false; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$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 "$with_gnu_ld" = yes; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "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 "$host_cpu" = ia64; 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 # need to do runtime linking. 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 ;; 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,' if test "$GXX" = yes; 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 "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; 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 "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi 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_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty # executable. if test "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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$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 "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; 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 "${lt_cv_aix_libpath+set}" = set; then aix_libpath=$lt_cv_aix_libpath else if ${lt_cv_aix_libpath__CXX+:} false; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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$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 "$with_gnu_ld" = yes; 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 # This is similar to how AIX traditionally builds its shared # libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' 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~linknames=' archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $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 (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; 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 "$lt_cv_ld_force_load" = "yes"; 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*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; 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 "$lt_cv_apple_cc_single_mod" != "yes"; 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 ;; 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 ;; gnu*) ;; 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 $output_objdir/$soname = $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 "$GXX" = yes; 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 $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; 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 "$GXX" = yes; then if test $with_gnu_ld = no; 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 "$GXX" = yes; then if test "$with_gnu_ld" = no; 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) 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 "x$supports_anon_versioning" = xyes; 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 ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) 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__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; 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 "$GXX" = yes && test "$with_gnu_ld" = no; 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 "$GXX" = yes && test "$with_gnu_ld" = no; 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 $LDFLAGS $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 -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 $LDFLAGS $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 -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 can NOT 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && 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=$? $as_echo "$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 $p = "-L" || test $p = "-R"; 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 "$pre_test_object_deps_done" = no; 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 "$pre_test_object_deps_done" = no; 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= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; 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 "$GXX" = yes; 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 "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; 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' ;; 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 "$host_cpu" = ia64; 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 "$host_cpu" != ia64; 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) 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 which 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if ${lt_cv_prog_compiler_pic_CXX+:} false; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_CXX=$lt_prog_compiler_pic_CXX fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_CXX" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if ${lt_cv_prog_compiler_pic_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else 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" # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; 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\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if ${lt_cv_prog_compiler_static_works_CXX+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if ${lt_cv_prog_compiler_c_o_CXX+:} false; then : $as_echo_n "(cached) " >&6 else 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "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 AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". 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) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && 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 "$enable_shared" = yes && test "$GCC" = yes; 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } if ${lt_cv_archive_cmds_need_lc_CXX+:} false; then : $as_echo_n "(cached) " >&6 else $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=$? $as_echo "$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=$? $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc_CXX" >&5 $as_echo "$lt_cv_archive_cmds_need_lc_CXX" >&6; } archive_cmds_need_lc_CXX=$lt_cv_archive_cmds_need_lc_CXX ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "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 "$host_cpu" = ia64; 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 # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # 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}' else # 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' fi 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%'\''`; test $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 /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/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='/usr/local/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} $libname${shared_ext}' 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 ;; 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' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; 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=yes 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 "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; 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 "$lt_cv_prog_gnu_ld" = yes; 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} /usr/local/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 ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-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 ${lt_cv_shlibpath_overrides_runpath+:} false; then : $as_echo_n "(cached) " >&6 else 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 () { ; 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$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 # Append ld.so.conf contents 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*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac 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 if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; 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 /usr/local/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 "$with_gnu_ld" = yes; 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=freebsd-elf 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 "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "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 "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct_CXX" != no && # 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 "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } if test "$hardcode_action_CXX" = relink || test "$inherit_rpath_CXX" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; 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 "$_lt_caught_CXX_error" != yes 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 ac_config_commands="$ac_config_commands libtool" # Only expand once: : ${CONFIG_LT=./config.lt} { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_LT" >&5 $as_echo "$as_me: creating $CONFIG_LT" >&6;} as_write_fail=0 cat >"$CONFIG_LT" <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate a libtool stub with the current configuration. SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>"$CONFIG_LT" <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible 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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. 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 # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # 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 test -z "$as_dir" && as_dir=. 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 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # 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 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$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_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_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 || $as_echo 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 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 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=`$as_echo "$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 || $as_echo 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_LT" script. ## ## --------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x "$CONFIG_LT" cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX } >&5 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="\ ttfautohint config.lt 0.97 configured by $0, generated by GNU Autoconf 2.69. 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=: ;; -*) as_fn_error $? "unrecognized option: $1 Try \`$0 --help' for more information." "$LINENO" 5 ;; *) as_fn_error $? "unrecognized argument: $1 Try \`$0 --help' for more information." "$LINENO" 5 ;; esac shift done if $lt_cl_silent; then exec 6>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF # 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' 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"`' enable_static='`$ECHO "$enable_static" | $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"`' 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_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"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $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"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $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_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ 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\\"\\\`\\\\\\"" ;; *) 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 \ sys_lib_dlsearch_path_spec \ 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\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which 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' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ofile" >&5 $as_echo "$as_me: creating $ofile" >&6;} # See if we are running on zsh, and set the options which 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 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $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. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="CXX " # ### BEGIN LIBTOOL CONFIG # 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 # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # 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 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 # 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 in which our libraries should be installed. lt_sysroot=$lt_sysroot # 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 # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # 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 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 "X${COLLECT_NAMES+set}" != Xset; 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) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi 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 as_fn_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 "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec 5>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec 5>>config.log $lt_cl_success || as_fn_exit 1 # Check whether --with-doc was given. if test "${with_doc+set}" = set; then : withval=$with_doc; else with_doc=yes fi # Check whether --with-freetype-config was given. if test "${with_freetype_config+set}" = set; then : withval=$with_freetype_config; freetype_config=$withval else freetype_config=yes fi if test "$freetype_config" = "yes"; then # Extract the first word of "freetype-config", so it can be a program name with args. set dummy freetype-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_path_ft_config+:} false; then : $as_echo_n "(cached) " >&6 else case $ft_config in [\\/]* | ?:[\\/]*) ac_cv_path_ft_config="$ft_config" # 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 test -z "$as_dir" && as_dir=. 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_ft_config="$as_dir/$ac_word$ac_exec_ext" $as_echo "$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_ft_config" && ac_cv_path_ft_config="no" ;; esac fi ft_config=$ac_cv_path_ft_config if test -n "$ft_config"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ft_config" >&5 $as_echo "$ft_config" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "$ft_config" = "no"; then as_fn_error $? "FreeType library is missing; see http://www.freetype.org/" "$LINENO" 5 fi else ft_config="$freetype_config" fi FREETYPE_CPPFLAGS="`$ft_config --cflags`" FREETYPE_LIBS="`$ft_config --libtool`" # many platforms no longer install .la files for system libraries if test ! -f $FREETYPE_LIBS; then FREETYPE_LIBS="`$ft_config --libs`" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether FreeType header files are version 2.4.5 or higher" >&5 $as_echo_n "checking whether FreeType header files are version 2.4.5 or higher... " >&6; } old_CPPFLAGS="$CPPFLAGS" CPPFLAGS=$FREETYPE_CPPFLAGS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include FT_FREETYPE_H #if (FREETYPE_MAJOR*1000 + FREETYPE_MINOR)*1000 + FREETYPE_PATCH < 2004005 #error Freetype version too low. #endif _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } CPPFLAGS="$old_CPPFLAGS" else as_fn_error $? "Need FreeType version 2.4.5 or higher" "$LINENO" 5 fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether FreeType library is version 2.4.5 or higher" >&5 $as_echo_n "checking whether FreeType library is version 2.4.5 or higher... " >&6; } old_CPPFLAGS="$CPPFLAGS" CPPFLAGS=$FREETYPE_CPPFLAGS old_LIBS="$LIBS" LIBS=$FREETYPE_LIBS 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 ac_link="$ac_compile; ./libtool --mode=link `echo $ac_link | sed 's/\$ac_ext/\$ac_objext/'`" if test "$cross_compiling" = yes; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: skipped due to cross-compilation" >&5 $as_echo "skipped due to cross-compilation" >&6; } else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include FT_FREETYPE_H int main() { FT_Error error; FT_Library library; FT_Int major, minor, patch; error = FT_Init_FreeType(&library); if (error) { printf("(test program reports error code %d)... ", error); exit(EXIT_FAILURE); } FT_Library_Version(library, &major, &minor, &patch); printf("(found %d.%d.%d)... ", major, minor, patch); if (((major*1000 + minor)*1000 + patch) >= 2004005) exit(EXIT_SUCCESS); exit(EXIT_FAILURE); } _ACEOF if ac_fn_lt_c_try_run "$LINENO"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } CPPFLAGS="$old_CPPFLAGS" LIBS="$old_LIBS" else as_fn_error $? "Need FreeType version 2.4.5 or higher" "$LINENO" 5 fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi 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 $cross_compiling = no; then HELP2MAN=${HELP2MAN-"${am_missing_run}help2man"} else HELP2MAN=: fi # The documentation is part of the distributed bundle. In the following, # tests for the documentation building tools are made fatal in case those # files are missing (which can happen during bootstrap). image_file=$srcdir/doc/img/ttfautohintGUI.png html_file=$srcdir/doc/ttfautohint.html pdf_file=$srcdir/doc/ttfautohint.pdf if test x"$with_doc" != x"no"; then # snapshot image creation if test x"$DISPLAY" == x; then if test -f "$image_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Need X11 to create snapshot image of ttfautohintGUI" >&5 $as_echo "$as_me: WARNING: Need X11 to create snapshot image of ttfautohintGUI" >&2;} with_doc=no else as_fn_error $? "Need X11 to create snapshot image of ttfautohintGUI" "$LINENO" 5 fi else # Extract the first word of "import", so it can be a program name with args. set dummy import; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_IMPORT+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$IMPORT"; then ac_cv_prog_IMPORT="$IMPORT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_IMPORT="import" $as_echo "$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_IMPORT" && ac_cv_prog_IMPORT="no" fi fi IMPORT=$ac_cv_prog_IMPORT if test -n "$IMPORT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $IMPORT" >&5 $as_echo "$IMPORT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x"$IMPORT" == x"no"; then if test -f "$image_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Need ImageMagick to create snapshot image of ttfautohintGUI" >&5 $as_echo "$as_me: WARNING: Need ImageMagick to create snapshot image of ttfautohintGUI" >&2;} with_doc=no else as_fn_error $? "Need ImageMagick to create snapshot image of ttfautohintGUI" "$LINENO" 5 fi fi fi # conversion of SVG to PDF # Extract the first word of "inkscape", so it can be a program name with args. set dummy inkscape; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_INKSCAPE+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$INKSCAPE"; then ac_cv_prog_INKSCAPE="$INKSCAPE" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_INKSCAPE="inkscape" $as_echo "$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_INKSCAPE" && ac_cv_prog_INKSCAPE="no" fi fi INKSCAPE=$ac_cv_prog_INKSCAPE if test -n "$INKSCAPE"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INKSCAPE" >&5 $as_echo "$INKSCAPE" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x"$INKSCAPE" == x"no"; then if test -f "$pdf_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Need inkscape to convert SVG image files to PDF" >&5 $as_echo "$as_me: WARNING: Need inkscape to convert SVG image files to PDF" >&2;} with_doc=no else as_fn_error $? "Need inkscape to convert SVG image files to PDF" "$LINENO" 5 fi fi # documentation creation # Extract the first word of "pandoc", so it can be a program name with args. set dummy pandoc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_PANDOC+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$PANDOC"; then ac_cv_prog_PANDOC="$PANDOC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_PANDOC="pandoc" $as_echo "$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_PANDOC" && ac_cv_prog_PANDOC="no" fi fi PANDOC=$ac_cv_prog_PANDOC if test -n "$PANDOC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PANDOC" >&5 $as_echo "$PANDOC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x"$PANDOC" == x"no"; then if test -f "$html_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Need pandoc to create PDF and HTML documentation files" >&5 $as_echo "$as_me: WARNING: Need pandoc to create PDF and HTML documentation files" >&2;} with_doc=no else as_fn_error $? "Need pandoc to create PDF and HTML documentation files" "$LINENO" 5 fi fi # PDF documentation for ac_prog in lualatex xelatex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if ${ac_cv_prog_LATEX+:} false; then : $as_echo_n "(cached) " >&6 else if test -n "$LATEX"; then ac_cv_prog_LATEX="$LATEX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. 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_LATEX="$ac_prog" $as_echo "$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 LATEX=$ac_cv_prog_LATEX if test -n "$LATEX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LATEX" >&5 $as_echo "$LATEX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$LATEX" && break done test -n "$LATEX" || LATEX="no" if test x"$PDFLATEX" == x"no"; then if test -f "$pdf_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Need lualatex or xelatex to create documentation in PDF format" >&5 $as_echo "$as_me: WARNING: Need lualatex or xelatex to create documentation in PDF format" >&2;} with_doc=no else as_fn_error $? "Need lualatex or xelatex to create documentation in PDF format" "$LINENO" 5 fi fi fi if test x"$with_doc" != x"no"; then WITH_DOC_TRUE= WITH_DOC_FALSE='#' else WITH_DOC_TRUE='#' WITH_DOC_FALSE= fi ac_config_headers="$ac_config_headers config.h" ac_config_files="$ac_config_files Makefile gnulib/src/Makefile lib/Makefile frontend/Makefile doc/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_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$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+set}" = set || &/ 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 { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$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=`$as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 $as_echo_n "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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: done" >&5 $as_echo "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__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 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 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 "${GL_COND_LIBTOOL_TRUE}" && test -z "${GL_COND_LIBTOOL_FALSE}"; then as_fn_error $? "conditional \"GL_COND_LIBTOOL\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GL_GENERATE_ERRNO_H_TRUE}" && test -z "${GL_GENERATE_ERRNO_H_FALSE}"; then as_fn_error $? "conditional \"GL_GENERATE_ERRNO_H\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GL_GENERATE_STDDEF_H_TRUE}" && test -z "${GL_GENERATE_STDDEF_H_FALSE}"; then as_fn_error $? "conditional \"GL_GENERATE_STDDEF_H\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${GL_GENERATE_STDINT_H_TRUE}" && test -z "${GL_GENERATE_STDINT_H_FALSE}"; then as_fn_error $? "conditional \"GL_GENERATE_STDINT_H\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi gl_libobjs= gl_ltlibobjs= if test -n "$gl_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gl_libobjs="$gl_libobjs $i.$ac_objext" gl_ltlibobjs="$gl_ltlibobjs $i.lo" done fi gl_LIBOBJS=$gl_libobjs gl_LTLIBOBJS=$gl_ltlibobjs gltests_libobjs= gltests_ltlibobjs= if test -n "$gltests_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gltests_libobjs="$gltests_libobjs $i.$ac_objext" gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" done fi gltests_LIBOBJS=$gltests_libobjs gltests_LTLIBOBJS=$gltests_ltlibobjs if test -z "${USE_QT_TRUE}" && test -z "${USE_QT_FALSE}"; then as_fn_error $? "conditional \"USE_QT\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${WITH_DOC_TRUE}" && test -z "${WITH_DOC_FALSE}"; then as_fn_error $? "conditional \"WITH_DOC\" 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" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$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 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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. 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 # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # 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 test -z "$as_dir" && as_dir=. 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 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # 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 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$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_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_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 || $as_echo 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 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 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=`$as_echo "$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 || $as_echo 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 ttfautohint $as_me 0.97, which was generated by GNU Autoconf 2.69. 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 ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ ttfautohint config.status 0.97 configured by $0, generated by GNU Autoconf 2.69, with options \\"\$ac_cs_config\\" Copyright (C) 2012 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 ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$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=`$as_echo "$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 ) $as_echo "$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 \$as_echo "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 $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # 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' 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"`' enable_static='`$ECHO "$enable_static" | $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"`' 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_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"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $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"`' sys_lib_dlsearch_path_spec='`$ECHO "$sys_lib_dlsearch_path_spec" | $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_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ nm_file_list_spec \ 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\\"\\\`\\\\\\"" ;; *) 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 \ sys_lib_dlsearch_path_spec \ 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\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which 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' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' ac_aux_dir='$ac_aux_dir' _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 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "gnulib/src/Makefile") CONFIG_FILES="$CONFIG_FILES gnulib/src/Makefile" ;; "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;; "frontend/Makefile") CONFIG_FILES="$CONFIG_FILES frontend/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/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+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || 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=`$as_echo "$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 '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$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 || $as_echo 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=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$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@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$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"; } && { $as_echo "$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 $as_echo "$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 { $as_echo "/* $configure_input */" \ && 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 { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$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 $as_echo "/* $configure_input */" \ && 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 || $as_echo 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) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$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. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options which 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 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $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. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="CXX " # ### BEGIN LIBTOOL CONFIG # 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 # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # 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 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 # 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 in which our libraries should be installed. lt_sysroot=$lt_sysroot # 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 # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # 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 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 "X${COLLECT_NAMES+set}" != Xset; 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) if test x"$xsi_shell" = xyes; then sed -e '/^func_dirname ()$/,/^} # func_dirname /c\ func_dirname ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ } # Extended-shell func_dirname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_basename ()$/,/^} # func_basename /c\ func_basename ()\ {\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_dirname_and_basename ()$/,/^} # func_dirname_and_basename /c\ func_dirname_and_basename ()\ {\ \ case ${1} in\ \ */*) func_dirname_result="${1%/*}${2}" ;;\ \ * ) func_dirname_result="${3}" ;;\ \ esac\ \ func_basename_result="${1##*/}"\ } # Extended-shell func_dirname_and_basename implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_stripname ()$/,/^} # func_stripname /c\ func_stripname ()\ {\ \ # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are\ \ # positional parameters, so assign one to ordinary parameter first.\ \ func_stripname_result=${3}\ \ func_stripname_result=${func_stripname_result#"${1}"}\ \ func_stripname_result=${func_stripname_result%"${2}"}\ } # Extended-shell func_stripname implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_long_opt ()$/,/^} # func_split_long_opt /c\ func_split_long_opt ()\ {\ \ func_split_long_opt_name=${1%%=*}\ \ func_split_long_opt_arg=${1#*=}\ } # Extended-shell func_split_long_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_split_short_opt ()$/,/^} # func_split_short_opt /c\ func_split_short_opt ()\ {\ \ func_split_short_opt_arg=${1#??}\ \ func_split_short_opt_name=${1%"$func_split_short_opt_arg"}\ } # Extended-shell func_split_short_opt implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_lo2o ()$/,/^} # func_lo2o /c\ func_lo2o ()\ {\ \ case ${1} in\ \ *.lo) func_lo2o_result=${1%.lo}.${objext} ;;\ \ *) func_lo2o_result=${1} ;;\ \ esac\ } # Extended-shell func_lo2o implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_xform ()$/,/^} # func_xform /c\ func_xform ()\ {\ func_xform_result=${1%.*}.lo\ } # Extended-shell func_xform implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_arith ()$/,/^} # func_arith /c\ func_arith ()\ {\ func_arith_result=$(( $* ))\ } # Extended-shell func_arith implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_len ()$/,/^} # func_len /c\ func_len ()\ {\ func_len_result=${#1}\ } # Extended-shell func_len implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$lt_shell_append" = xyes; then sed -e '/^func_append ()$/,/^} # func_append /c\ func_append ()\ {\ eval "${1}+=\\${2}"\ } # Extended-shell func_append implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: sed -e '/^func_append_quoted ()$/,/^} # func_append_quoted /c\ func_append_quoted ()\ {\ \ func_quote_for_eval "${2}"\ \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"\ } # Extended-shell func_append_quoted implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([a-zA-Z_]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Unable to substitute extended shell functions in $ofile" >&5 $as_echo "$as_me: WARNING: Unable to substitute extended shell functions in $ofile" >&2;} fi 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 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi # end of configure.ac ttfautohint-0.97/doc/0000755000175000001440000000000012237367737011605 500000000000000ttfautohint-0.97/doc/ttfautohint.html0000644000175000001440000023025712237364637014771 00000000000000 ttfautohint

Introduction

ttfautohint is a library written in C that takes a TrueType font as the input, removes its bytecode instructions (if any), and returns a new font where all glyphs are bytecode hinted using the information given by FreeType’s autohinting module. The idea is to provide the excellent quality of the autohinter on platforms that don’t use FreeType.

The library has a single API function, TTF_autohint, which is described below.

Bundled with the library there are two front-end programs, ttfautohint and ttfautohintGUI, being a command line and an application with a Graphics User Interface (GUI), respectively.

What exactly are hints?

To cite Wikipedia:

Font hinting (also known as instructing) is the use of mathematical instructions to adjust the display of an outline font so that it lines up with a rasterized grid. At low screen resolutions, hinting is critical for producing a clear, legible text. It can be accompanied by antialiasing and (on liquid crystal displays) subpixel rendering for further clarity.

and Apple’s TrueType Reference Manual:

For optimal results, a font instructor should follow these guidelines:

  • At small sizes, chance effects should not be allowed to magnify small differences in the original outline design of a glyph.

  • At large sizes, the subtlety of the original design should emerge.

In general, there are three possible ways to hint a glyph.

  1. The font contains hints (in the original sense of this word) to guide the rasterizer, telling it which shapes of the glyphs need special consideration. The hinting logic is partly in the font and partly in the rasterizer. More sophisticated rasterizers are able to produce better rendering results.

    This is how Type 1 and CFF hints work.

  2. The font contains exact instructions (also called bytecode) on how to move the points of its outlines, depending on the resolution of the output device, and which intentionally distort the (outline) shape to produce a well-rasterized result. The hinting logic is in the font; ideally, all rasterizers simply process these instructions to get the same result on all platforms.

    This is how TrueType hints work.

  3. The font gets auto-hinted (at run-time). The hinting logic is completely in the rasterizer. No hints in the font are used or needed; instead, the rasterizer scans and analyzes the glyphs to apply corrections by itself.

    This is how FreeType’s auto-hinter works; see below for more.

What problems can arise with TrueType hinting?

While it is relatively easy to specify PostScript hints (either manually or by an auto-hinter that works at font creation time), creating TrueType hints is far more difficult. There are at least two reasons:

  • TrueType instructions form a programming language, operating at a very low level. They are comparable to assembler code, thus lacking all high-level concepts to make programming more comfortable.

    Here an example how such code looks like:

        SVTCA[0]
        PUSHB[ ]  /* 3 values pushed */
        18 1 0
        CALL[ ]
        PUSHB[ ]  /* 2 values pushed */
        15 4
        MIRP[01001]
        PUSHB[ ]  /* 3 values pushed */
        7 3 0
        CALL[ ]

    Another major obstacle is the fact that font designers usually aren’t programmers.

  • It is very time consuming to manually hint glyphs. Given that the number of specialists for TrueType hinting is very limited, hinting a large set of glyphs for a font or font family can become very expensive.

Why ttfautohint?

The ttfautohint library brings the excellent quality of FreeType rendering to platforms that don’t use FreeType, yet require hinting for text to look good – like Microsoft Windows. Roughly speaking, it converts the glyph analysis done by FreeType’s auto-hinting module to TrueType bytecode. Internally, the auto-hinter’s algorithm resembles PostScript hinting methods; it thus combines all three hinting methods discussed previously.

The simple interface of the front-ends (both on the command line and with the GUI) allows quick hinting of a whole font with a few mouse clicks or a single command on the prompt. As a result, you get better rendering results with web browsers, for example.

Across Windows rendering environments today, fonts processed with ttfautohint look best with ClearType enabled. This is the default for Windows 7. Good visual results are also seen in recent MacOS X versions and GNU/Linux systems that use FreeType for rendering.

The goal of the project is to generate a ‘first pass’ of hinting that font developers can refine further for ultimate quality.

ttfautohint and ttfautohintGUI

On all supported platforms (GNU/Linux, Windows, and Mac OS X), the GUI looks quite similar; the used toolkit is Qt, which in turn uses the platform’s native widgets.

ttfautohintGUI on GNU/Linux running KDE

ttfautohintGUI on GNU/Linux running KDE

Both the GUI and console version share the same features, to be discussed in the next subsection.

Warning: ttfautohint cannot always process a font a second time. If the font contains composite glyphs, and option -c is used, reprocessing with ttfautohint will fail. For this reason it is strongly recommended to not delete the original, unhinted font so that you can always rerun ttfautohint.

Calling ttfautohint

    ttfautohint [OPTION]... [IN-FILE [OUT-FILE]]

The TTY binary, ttfautohint, works like a Unix filter, this is, it reads data from standard input if no input file name is given, and it sends its output to standard output if no output file name is specified.

A typical call looks like the following.

    ttfautohint -v -f latn foo.ttf foo-autohinted.ttf

For demonstration purposes, here the same using a pipe and redirection. Note that Windows’s default command line interpreter, cmd.exe, doesn’t support piping with binary files, unfortunately.

    cat foo.ttf | ttfautohint -v -f latn > foo-autohinted.ttf

Calling ttfautohintGUI

    ttfautohintGUI [OPTION]...

ttfautohintGUI doesn’t send any output to a console; however, it accepts the same command line options as ttfautohint, setting default values for the GUI.

Options

Long options can be given with one or two dashes, and with and without an equal sign between option and argument. This means that the following forms are acceptable: -foo=bar, --foo=bar, -foo bar, and --foo bar.

Below, the section title refers to the command’s label in the GUI, then comes the name of the corresponding long command line option and its short equivalent, followed by a description.

Background and technical details on the meaning of the various options are given afterwards.

Hint Set Range Minimum, Hint Set Range Maximum

See ‘Hint Sets’ for a definition and explanation.

--hinting-range-min=n, -l n

The minimum PPEM value (in pixels) at which hint sets are created. The default value for n is 8.

--hinting-range-max=n, -r n

The maximum PPEM value (in pixels) at which hint sets are created. The default value for n is 50.

Fallback Script

--fallback-script=s, -f s
Set fallback script to tag s, which is a string consisting of four characters like latn or dflt. It gets used for for all glyphs that can’t be assigned to a script automatically. See below for more details.

Hinting Limit

--hinting-limit=n, -G n

The hinting limit is the PPEM value (in pixels) where hinting gets switched off (using the INSTCTRL bytecode instruction); it has zero impact on the file size. The default value for n is 200, which means that the font is not hinted for PPEM values larger than 200.

Note that hinting in the range ‘hinting-range-max’ up to ‘hinting-limit’ uses the hinting configuration for ‘hinting-range-max’.

To omit a hinting limit, use --hinting-limit=0 (or check the ‘No Hinting Limit’ box in the GUI). Since this will cause internal math overflow in the rasterizer for large pixel values (> 1500px approx.) it is strongly recommended to not use this except for testing purposes.

x Height Increase Limit

--increase-x-height=n, -x n

Normally, ttfautohint rounds the x height to the pixel grid, with a slight preference for rounding up. If this flag is set, values in the range 6 PPEM to n PPEM are much more often rounded up. The default value for n is 14. Use this flag to increase the legibility of small sizes if necessary; you might get weird rendering results otherwise for glyphs like ‘a’ or ‘e’, depending on the font design.

To switch off this feature, use --increase-x-height=0 (or check the ‘No x Height Increase’ box in the GUI). To switch off rounding the x height to the pixel grid in general, either partially or completely, see ‘x Height Snapping Exceptions’.

The following images again use the font ‘Mertz Bold’.

At 17px, without option -x and -w "", the hole in glyph e looks very grey in the FontForge snapshot, and the GDI ClearType rendering (which is the default on older Windows versions) fills it completely with black because it uses B/W rendering along the y axis. FreeType’s light autohint mode (which corresponds to ttfautohint’s smooth stem width algorithm) intentionally aligns horizontal lines to non-integer (but still discrete) values to avoid large glyph shape distortions.

At 17px, without option -x and ‘-w ""’, the hole in glyph ‘e’ looks very grey in the FontForge snapshot, and the GDI ClearType rendering (which is the default on older Windows versions) fills it completely with black because it uses B/W rendering along the y axis. FreeType’s ‘light’ autohint mode (which corresponds to ttfautohint’s ‘smooth’ stem width algorithm) intentionally aligns horizontal lines to non-integer (but still discrete) values to avoid large glyph shape distortions.

The same, this time with option -x 17 (and -w "").

The same, this time with option -x 17 (and ‘-w ""’).

x Height Snapping Exceptions

--x-height-snapping-exceptions=string, -X string

A list of comma separated PPEM values or value ranges at which no x-height snapping shall be applied. A value range has the form value1-value2, meaning value1 <= PPEM <= value2. value1 or value2 (or both) can be missing; a missing value is replaced by the beginning or end of the whole interval of valid PPEM values, respectively (6 to 32767). Whitespace is not significant; superfluous commas are ignored, and ranges must be specified in increasing order. For example, the string "7-9, 11, 13-" means the values 7, 8, 9, 11, 13, 14, 15, etc. Consequently, if the supplied argument is "-", no x-height snapping takes place at all. The default is the empty string (""), meaning no snapping exceptions.

Normally, x-height snapping means a slight increase in the overall vertical glyph size so that the height of lowercase glyphs gets aligned to the pixel grid (this is a global feature, affecting all glyphs of a font). However, having larger vertical glyph sizes is not always desired, especially if it is not possible to adjust the usWinAscent and usWinDescent values from the font’s OS/2 table so that they are not too tight. See ‘Windows Compatibility’ for more details.

Windows Compatibility

--windows-compatibility, -W

This option makes ttfautohint add two artificial blue zones, positioned at the usWinAscent and usWinDescent values (from the font’s OS/2 table). The idea is to help ttfautohint so that the hinted glyphs stay within this horizontal stripe since Windows clips everything falling outside.

There is a general problem with tight values for usWinAscent and usWinDescent; a good description is given in the Vertical Metrics How-To. Additionally, there is a special problem with tight values if used in combination with ttfautohint because the auto-hinter tends to slightly increase the vertical glyph dimensions at smaller sizes to improve legibility. This enlargement can make the heights and depths of glyphs exceed the range given by usWinAscent and usWinDescent.

If ttfautohint is part of the font creation tool chain, and the font designer can adjust those two values, a better solution instead of using option -W is to reserve some vertical space for ‘padding’: For the auto-hinter, the difference between a top or bottom outline point before and after hinting is less than 1px, thus a vertical padding of 2px is sufficient. Assuming a minimum hinting size of 6ppem, adding two pixels gives an increase factor of 8÷6 = 1.33. This is near to the default baseline-to-baseline distance used by TeX and other sophisticated text processing applications, namely 1.2×designsize, which gives satisfying results in most cases. It is also near to the factor 1.25 recommended in the abovementioned how-to. For example, if the vertical extension of the largest glyph is 2000 units (assuming that it approximately represents the designsize), the sum of usWinAscent and usWinDescent could be 1.25×2000 = 2500.

In case ttfautohint is used as an auto-hinting tool for fonts that can be no longer modified to change the metrics, option -W in combination with ‘-X "-"’ to suppress any vertical enlargement should prevent almost all clipping.

Pre-Hinting

--pre-hinting, -p
Pre-hinting means that a font’s original bytecode is applied to all glyphs before it is replaced with bytecode created by ttfautohint. This makes only sense if your font already has some hints in it that modify the shape even at EM size (normally 2048px); for example, some CJK fonts need this because the bytecode is used to scale and shift subglyphs. For most fonts, however, this is not the case.

Hint Composites

--composites, -c

By default, the components of a composite glyph get hinted separately. If this flag is set, the composite glyph itself gets hinted (and the hints of the components are ignored). Using this flag increases the bytecode size a lot, however, it might yield better hinting results.

If this option is used (and a font actually contains composite glyphs), ttfautohint currently cannot reprocess its own output for technical reasons, see below.

Symbol Font

--symbol, -s
Apply default values for standard (horizontal) stem width and height instead of deriving them from a script-specific, hard-coded default character (which usually resembles the shape of a lowercase ‘o’). Use this option (usually in combination with option --fallback-script) to hint symbol or dingbat fonts or math glyphs, for example, that lack a default character, at the expense of possibly poor hinting results at small sizes.

Dehint

--dehint, -d
Strip off all hints without generating new hints. Consequently, all other hinting options are ignored. This option is intended for testing purposes.

Add ttfautohint Info

--no-info, -n
Don’t add ttfautohint version and command line information to the version string or strings (with name ID 5) in the font’s name table. In the GUI it is similar: If you uncheck the ‘Add ttfautohint info’ box, information is not added to the name table. Except for testing and development purposes it is strongly recommended to not use this option.

Strong Stem Width and Positioning

--strong-stem-width=string, -w string

ttfautohint offers two different routines to handle (horizontal) stem widths and stem positions: ‘smooth’ and ‘strong’. The former uses discrete values that slightly increase the stem contrast with almost no distortion of the outlines, while the latter snaps both stem widths and stem positions to integer pixel values as much as possible, yielding a crisper appearance at the cost of much more distortion.

These two routines are mapped onto three possible rendering targets:

  • grayscale rendering, with or without optimization for subpixel positioning (e.g. Mac OS X)

  • ‘GDI ClearType’ rendering: the rasterizer version, as returned by the GETINFO bytecode instruction, is in the range 36 <= version < 38 and ClearType is enabled (e.g. Windows XP)

  • ‘DirectWrite ClearType’ rendering: the rasterizer version, as returned by the GETINFO bytecode instruction, is >= 38, ClearType is enabled, and subpixel positioning is enabled also (e.g. Internet Explorer 9 running on Windows 7)

GDI ClearType uses a mode similar to B/W rendering along the vertical axis, while DW ClearType applies grayscale rendering. Additionally, only DW ClearType provides subpixel positioning along the x axis. For what it’s worth, the rasterizers version 36 and version 38 in Microsoft Windows are two completely different rendering engines.

The command line option expects string to contain up to three letters with possible values ‘g’ for grayscale, ‘G’ for GDI ClearType, and ‘D’ for DW ClearType. If a letter is found in string, the strong stem width routine is used for the corresponding rendering target (and smooth stem width handling otherwise). The default value is ‘G’, which means that strong stem width handling is activated for GDI ClearType only. To use smooth stem width handling for all three rendering targets, use the empty string as an argument, usually connoted with ‘""’.

In the GUI, simply set the corresponding check box to select the strong width routine for a given rendering target. If you unset the check box, the smooth width routine gets used.

The following FontForge snapshot images use the font ‘Mertz Bold’ (still under development) from Vernon Adams.

The left part shows the glyph g unhinted at 26px, the right part with hints, using the smooth stem algorithm.

The left part shows the glyph ‘g’ unhinted at 26px, the right part with hints, using the ‘smooth’ stem algorithm.

The same, but this time using the strong algorithm. Note how the stems are aligned to the pixel grid.

The same, but this time using the ‘strong’ algorithm. Note how the stems are aligned to the pixel grid.

Font License Restrictions

--ignore-restrictions, -i

By default, fonts that have bit 1 set in the ‘fsType’ field of the OS/2 table are rejected. If you have a permission of the font’s legal owner to modify the font, specify this command line option.

If this option is not set, ttfautohintGUI shows a dialogue to handle such fonts if necessary.

Miscellaneous

--help, -h

On the console, print a brief documentation on standard output and exit. This doesn’t work with ttfautohintGUI on MS Windows.

--version, -v

On the console, print version information on standard output and exit. This doesn’t work with ttfautohintGUI on MS Windows.

--debug

Print a lot of debugging information on standard error while processing a font (you should redirect stderr to a file). This doesn’t work with ttfautohintGUI on MS Windows.

Background and Technical Details

Real-Time Grid Fitting of Typographic Outlines is a scholarly paper that describes FreeType’s auto-hinter in some detail. Regarding the described data structures it is slightly out of date, but the algorithm itself hasn’t changed.

The next few subsections are mainly based on this article, introducing some important concepts. Note that ttfautohint only does hinting along the vertical direction (this is, modifying y coordinates).

Segments and Edges

A glyph consists of one or more contours (this is, closed curves). For example, glyph ‘O’ consists of two contours, while glyph ‘I’ has only one.

The letter O has two contours, an inner and an outer one, while letter I has only an outer contour.

The letter ‘O’ has two contours, an inner and an outer one, while letter ‘I’ has only an outer contour.

A segment is a series of consecutive points of a contour (including its Bézier control points) that are approximately aligned along a coordinate axis.

A serif. Contour and control points are represented by squares and circles, respectively. The bottom line DE is approximately aligned along the horizontal axis, thus it forms a segment of 7 points. Together with the two other horizontal segments, BC and FG, they form two edges (BC+FG, DE).

A serif. Contour and control points are represented by squares and circles, respectively. The bottom ‘line’ DE is approximately aligned along the horizontal axis, thus it forms a segment of 7 points. Together with the two other horizontal segments, BC and FG, they form two edges (BC+FG, DE).

An edge corresponds to a single coordinate value on the main dimension that collects one or more segments (allowing for a small threshold). While finding segments is done on the unscaled outline, finding edges is bound to the device resolution. See below for an example.

The analysis to find segments and edges is specific to a script.

Feature Analysis

The auto-hinter analyzes a font in two steps. Right now, everything described below happens for the horizontal axis only, providing vertical hinting.

  • Global Analysis

    This affects the hinting of all glyphs, trying to give them a uniform appearance.

    • Compute standard stem widths and heights of the font. The values are normally taken from a glyph that resembles letter ‘o’.

    • Compute blue zones, see below.

    If stem widths and heights of single glyphs differ by a large value, or if ttfautohint fails to find proper blue zones, hinting becomes quite poor, leading even to severe shape distortions.

script-specific standard characters of the ‘latin’ module
script standard character
cyrl ‘о’, U+043E, CYRILLIC SMALL LETTER O
grek ‘ο’, U+03BF, GREEK SMALL LETTER OMICRON
hebr ‘×’, U+05DD, HEBREW LETTER FINAL MEM
latn ‘o’, U+006F, LATIN SMALL LETTER O
  • Glyph Analysis

    This is a per-glyph operation.

    • Find segments and edges.

    • Link edges together to find stems and serifs. The abovementioned paper gives more details on what exactly constitutes a stem or a serif and how the algorithm works.

Blue Zones

Two blue zones relevant to the glyph a. Vertical point coordinates of all glyphs within these zones are aligned, provided the blue zone is active (this is, its vertical size is smaller than 3/4 pixels).

Two blue zones relevant to the glyph ‘a’. Vertical point coordinates of all glyphs within these zones are aligned, provided the blue zone is active (this is, its vertical size is smaller than 3/4 pixels).

Outlines of certain characters are used to determine blue zones. This concept is the same as with Type 1 fonts: All glyph points that lie in certain small horizontal zones get aligned vertically.

Here a series of tables that show the blue zone characters of the latin module’s available scripts; the values are hard-coded in the source code.

latn blue zones
ID Blue zone Characters
1 top of capital letters THEZOCQS
2 bottom of capital letters HEZLOCUS
3 top of ‘small f’ like letters fijkdbh
4 top of small letters xzroesc
5 bottom of small letters xzroesc
6 bottom of descenders of small letters pqgjy

The ‘round’ characters (e.g. ‘OCQS’) from Zones 1, 2, and 5 are also used to control the overshoot handling; to improve rendering at small sizes, zone 4 gets adjusted to be on the pixel grid; cf. the --increase-x-height option.

grek blue zones
ID Blue zone Characters
1 top of capital letters ΓΒΕΖΘΟΩ
2 bottom of capital letters ΒΔΖΞΘΟ
3 top of ‘small beta’ like letters βθδζλξ
4 top of small letters αειοπστω
5 bottom of small letters αειοπστω
6 bottom of descenders of small letters βγημÏφχψ
cyrl blue zones
ID Blue zone Characters
1 top of capital letters БВЕПЗОСЭ
2 bottom of capital letters БВЕШЗОСЭ
3 top of small letters хпншезоÑ
4 bottom of small letters хпншезоÑ
5 bottom of descenders of small letters руф
hebr blue zones
ID Blue zone Characters
1 top of letters בדהחךכ×ס
2 bottom of letters בטכ×סצ
3 bottom of descenders of letters קךןףץ
This image shows the relevant glyph terms for vertical blue zone positions.

This image shows the relevant glyph terms for vertical blue zone positions.

Grid Fitting

Aligning outlines along the grid lines is called grid fitting. It doesn’t necessarily mean that the outlines are positioned exactly on the grid, however, especially if you want a smooth appearance at different sizes. This is the central routine of the auto-hinter; its actions are highly dependent on the used script. Currently, only support for scripts that work similarly to Latin (e.g. Greek or Cyrillic) is available.

  • Align edges linked to blue zones.

  • Fit edges to the pixel grid.

  • Align serif edges.

  • Handle remaining ‘strong’ points. Such points are not part of an edge but are still important for defining the shape. This roughly corresponds to the IP TrueType instruction.

  • Everything else (the ‘weak’ points) is handled with an IUP instruction.

The following images illustrate the hinting process, using glyph ‘a’ from the freely available font ‘Ubuntu Book’. The manual hints were added by Dalton Maag Ltd, the used application to create the hinting debug snapshots was FontForge.

Before hinting.

Before hinting.

After hinting, using manual hints.

After hinting, using manual hints.

After hinting, using ttfautohint. Note that the hinting process doesn’t change horizontal positions.

After hinting, using ttfautohint. Note that the hinting process doesn’t change horizontal positions.

Hint Sets

In ttfautohint terminology, a hint set is the optimal configuration for a given PPEM (pixel per EM) value.

In the range given by the --hinting-range-min and --hinting-range-max options, ttfautohint creates hint sets for every PPEM value. For each glyph, ttfautohint automatically determines if a new set should be emitted for a PPEM value if it finds that it differs from a previous one. For some glyphs it is possible that one set covers, say, the range 8px-1000px, while other glyphs need 10 or more such sets.

In the PPEM range below --hinting-range-min, ttfautohint always uses just one set, in the PPEM range between --hinting-range-max and --hinting-limit, it also uses just one set.

One of the hinting configuration parameters is the decision which segments form an edge. For example, let us assume that two segments get aligned on a single horizontal edge at 11px, while two edges are used at 12px. This change makes ttfautohint emit a new hint set to accomodate this situation.

The next images illustrate this, using a Cyrillic letter (glyph ‘afii10108’) from the ‘Ubuntu book’ font, processed with ttfautohint.

Before hinting, size 11px.

Before hinting, size 11px.

After hinting, size 11px. Segments 43-27-28 and 14-15 are aligned on a single edge, as are segments 26-0-1 and 20-21.

After hinting, size 11px. Segments 43-27-28 and 14-15 are aligned on a single edge, as are segments 26-0-1 and 20-21.

Before hinting, size 12px.

Before hinting, size 12px.

After hinting, size 12px. The segments are not aligned. While segments 43-27-28 and 20-21 now have almost the same horizontal position, they don’t form an edge because the outlines passing through the segments point into different directions.

After hinting, size 12px. The segments are not aligned. While segments 43-27-28 and 20-21 now have almost the same horizontal position, they don’t form an edge because the outlines passing through the segments point into different directions.

Obviously, the more hint sets get emitted, the larger the bytecode ttfautohint adds to the output font. To find a good value n for --hinting-range-max, some experimentation is necessary since n depends on the glyph shapes in the input font. If the value is too low, the hint set created for the PPEM value n (this hint set gets used for all larger PPEM values) might distort the outlines too much in the PPEM range given by n and the value set by --hinting-limit (at which hinting gets switched off). If the value is too high, the font size increases due to more hint sets without any noticeable hinting effects.

Similar arguments hold for --hinting-range-min except that there is no lower limit at which hinting is switched off.

An example. Let’s assume that we have a hinting range 10 <= ppem <= 100, and the hinting limit is set to 250. For a given glyph, ttfautohint finds out that four hint sets must be computed to exactly cover this hinting range: 10-15, 16-40, 41-80, and 81-100. For ppem values below 10ppem, the hint set covering 10-15ppem is used, for ppem values larger than 100 the hint set covering 81-100ppem is used. For ppem values larger than 250, no hinting gets applied.

The ‘.ttfautohint’ Glyph

If option --composites is used, ttfautohint doesn’t hint subglyphs of composite glyphs separately. Instead, it hints the whole glyph, this is, composites get recursively expanded internally so that they form simple glyphs, then hints are applied – this is the normal working mode of FreeType’s auto-hinter.

One problem, however, must be solved: Hinting for subglyphs (which usually are used as normal glyphs also) must be deactivated so that nothing but the final bytecode of the composite gets executed.

The trick used by ttfautohint is to prepend a composite element called ‘.ttfautohint’, a dummy glyph with a single point, and which has a single job: Its bytecode increases a variable (to be more precise, it is a CVT register called cvtl_is_subglyph in the source code), indicating that we are within a composite glyph. The final bytecode of the composite glyph eventually decrements this variable again.

As an example, let’s consider composite glyph ‘Agrave’ (‘À’), which has the subglyph ‘A’ as the base and ‘grave’ as its accent. After processing with ttfautohint it consists of three components: ‘.ttfautohint’, ‘A’, and ‘grave’ (in this order).

Bytecode of Action
.ttfautohint increase cvtl_is_subglyph (now: 1)
A do nothing because cvtl_is_subglyph > 0
grave do nothing because cvtl_is_subglyph > 0
Agrave decrease cvtl_is_subglyph (now: 0)
apply hints because cvtl_is_subglyph == 0

Some technical details (which you might skip): All glyph point indices get adjusted since each ‘.ttfautohint’ subglyph shifts all following indices by one. This must be done for both the bytecode and one subformat of OpenType’s GPOS anchor tables.

While this approach works fine on all tested platforms, there is one single drawback: Direct rendering of the ‘.ttfautohint’ subglyph (this is, rendering as a stand-alone glyph) disables proper hinting of all glyphs in the font! Under normal circumstances this never happens because ‘.ttfautohint’ doesn’t have an entry in the font’s cmap table. (However, some test and demo programs like FreeType’s ftview application or other glyph viewers that are able to bypass the cmap table might be affected.)

Scripts

ttfautohint checks which auto-hinting module should be used to hint a specific glyph. To do so, it checks a glyph’s Unicode character code whether it belongs to a given script. Currently, only FreeType’s ‘latin’ autohinting module is implemented, but more are expected to come. Note, however, that this module is capable to hint other scripts too.

Here is the hardcoded list of character ranges that are hinted by this ‘latin’ module. As you can see, this also covers some non-latin scripts (in the Unicode sense) that have similar typographical properties.

In ttfautohint, scripts are identified by four-character tags. The value dflt indicates ‘no script’, which gets hinted by ‘dummy’ auto-hinting module.

latn character ranges
Character range Description
0x0020 - 0x007F Basic Latin (no control characters)
0x00A0 - 0x00FF Latin-1 Supplement (no control characters)
0x0100 - 0x017F Latin Extended-A
0x0180 - 0x024F Latin Extended-B
0x0250 - 0x02AF IPA Extensions
0x02B0 - 0x02FF Spacing Modifier Letters
0x0300 - 0x036F Combining Diacritical Marks
0x1D00 - 0x1D7F Phonetic Extensions
0x1D80 - 0x1DBF Phonetic Extensions Supplement
0x1DC0 - 0x1DFF Combining Diacritical Marks Supplement
0x1E00 - 0x1EFF Latin Extended Additional
0x2000 - 0x206F General Punctuation
0x2070 - 0x209F Superscripts and Subscripts
0x20A0 - 0x20CF Currency Symbols
0x2150 - 0x218F Number Forms
0x2460 - 0x24FF Enclosed Alphanumerics
0x2C60 - 0x2C7F Latin Extended-C
0x2E00 - 0x2E7F Supplemental Punctuation
0xA720 - 0xA7FF Latin Extended-D
0xFB00 - 0xFB06 Alphabetical Presentation Forms (Latin Ligatures)
0x1D400 - 0x1D7FF Mathematical Alphanumeric Symbols
0x1F100 - 0x1F1FF Enclosed Alphanumeric Supplement
grek character ranges
Character range Description
0x0370 - 0x03FF Greek and Coptic
0x1F00 - 0x1FFF Greek Extended
cyrl character ranges
Character range Description
0x0400 - 0x04FF Cyrillic
0x0500 - 0x052F Cyrillic Supplement
0x2DE0 - 0x2DFF Cyrillic Extended-A
0xA640 - 0xA69F Cyrillic Extended-B
hebr character ranges
Character range Description
0x0590 - 0x05FF Hebrew
0xFB1D - 0xFB4F Alphabetic Presentation Forms (Hebrew)

If a glyph’s character code is not covered by a script range, it is not hinted (or rather, it gets hinted by the ‘dummy’ auto-hinting module that essentially does nothing). This can be changed by specifying a fallback script with option --fallback-script.

It is planned to extend ttfautohint so that the GSUB OpenType table gets analyzed, mapping character codes to all glyph indices that can be reached by switching on or off various OpenType features.

SFNT Tables

ttfautohint touches almost all SFNT tables within a TrueType or OpenType font. Note that only OpenType fonts with TrueType outlines are supported. OpenType fonts with a CFF table (this is, with PostScript outlines) won’t work.

  • glyf: All hints in the table are replaced with new ones. If option --composites is used, one glyph gets added (namely the ‘.ttfautohint’ glyph) and all composites get an additional component.

  • cvt, prep, and fpgm: These tables get replaced with data necessary for the new hinting bytecode.

  • gasp: Set up to always use grayscale rendering with grid-fitting for standard hinting, and symmetric grid-fitting and symmetric smoothing for horizontal subpixel hinting (ClearType).

  • DSIG: If it exists, it gets replaced with a dummy version. ttfautohint can’t digitally sign a font; you have to do that afterwards.

  • name: The ‘version’ entries are modified to add information about the parameters that have been used for calling ttfautohint. This can be controlled with the --no-info option.

  • GPOS, hmtx, loca, head, maxp, post: Updated to fit the additional ‘.ttfautohint’ glyph, the additional subglyphs in composites, and the new hinting bytecode.

  • LTSH, hdmx: Since ttfautohint doesn’t do any horizontal hinting, those tables are superfluous and thus removed.

  • VDMX: Removed, since it depends on the original bytecode, which ttfautohint removes. A font editor might recompute the necessary data later on.

Problems

Diagonals.

TODO

The ttfautohint API

This section documents the single function of the ttfautohint library, TTF_autohint, together with its callback functions, TA_Progress_Func and TA_Info_Func. All information has been directly extracted from the ttfautohint.h header file.

Preprocessor Macros and Typedefs

Some default values.

#define TA_HINTING_RANGE_MIN 8
#define TA_HINTING_RANGE_MAX 50
#define TA_HINTING_LIMIT 200
#define TA_INCREASE_X_HEIGHT 14

An error type.

typedef int TA_Error;

Callback: TA_Progress_Func

A callback function to get progress information. curr_idx gives the currently processed glyph index; if it is negative, an error has occurred. num_glyphs holds the total number of glyphs in the font (this value can’t be larger than 65535).

curr_sfnt gives the current subfont within a TrueType Collection (TTC), and num_sfnts the total number of subfonts.

If the return value is non-zero, TTF_autohint aborts with TA_Err_Canceled. Use this for a ‘Cancel’ button or similar features in interactive use.

progress_data is a void pointer to user-supplied data.

typedef int
(*TA_Progress_Func)(long curr_idx,
                    long num_glyphs,
                    long curr_sfnt,
                    long num_sfnts,
                    void* progress_data);

Callback: TA_Info_Func

A callback function to manipulate strings in the name table. platform_id, encoding_id, language_id, and name_id are the identifiers of a name table entry pointed to by str with a length pointed to by str_len (in bytes; the string has no trailing NULL byte). Please refer to the OpenType specification for a detailed description of the various parameters, in particular which encoding is used for a given platform and encoding ID.

The string str is allocated with malloc; the application should reallocate the data if necessary, ensuring that the string length doesn’t exceed 0xFFFF.

info_data is a void pointer to user-supplied data.

If an error occurs, return a non-zero value and don’t modify str and str_len (such errors are handled as non-fatal).

typedef int
(*TA_Info_Func)(unsigned short platform_id,
                unsigned short encoding_id,
                unsigned short language_id,
                unsigned short name_id,
                unsigned short* str_len,
                unsigned char** str,
                void* info_data);

Function: TTF_autohint

Read a TrueType font, remove existing bytecode (in the SFNT tables prep, fpgm, cvt, and glyf), and write a new TrueType font with new bytecode based on the autohinting of the FreeType library.

It expects a format string options and a variable number of arguments, depending on the fields in options. The fields are comma separated; whitespace within the format string is not significant, a trailing comma is ignored. Fields are parsed from left to right; if a field occurs multiple times, the last field’s argument wins. The same is true for fields that are mutually exclusive. Depending on the field, zero or one argument is expected.

Note that fields marked as ‘not implemented yet’ are subject to change.

I/O

in-file

A pointer of type FILE* to the data stream of the input font, opened for binary reading. Mutually exclusive with in-buffer.

in-buffer

A pointer of type const char* to a buffer that contains the input font. Needs in-buffer-len. Mutually exclusive with in-file.

in-buffer-len

A value of type size_t, giving the length of the input buffer. Needs in-buffer.

out-file

A pointer of type FILE* to the data stream of the output font, opened for binary writing. Mutually exclusive with out-buffer.

out-buffer

A pointer of type char** to a buffer that contains the output font. Needs out-buffer-len. Mutually exclusive with out-file. Deallocate the memory with free.

out-buffer-len

A pointer of type size_t* to a value giving the length of the output buffer. Needs out-buffer.

Messages and Callbacks

progress-callback

A pointer of type TA_Progress_Func, specifying a callback function for progress reports. This function gets called after a single glyph has been processed. If this field is not set or set to NULL, no progress callback function is used.

progress-callback-data

A pointer of type void* to user data that is passed to the progress callback function.

error-string

A pointer of type unsigned char** to a string (in UTF-8 encoding) that verbally describes the error code. You must not change the returned value.

info-callback

A pointer of type TA_Info_Func, specifying a callback function for manipulating the name table. This function gets called for each name table entry. If not set or set to NULL, the table data stays unmodified.

info-callback-data

A pointer of type void* to user data that is passed to the info callback function.

debug

If this integer is set to 1, lots of debugging information is print to stderr. The default value is 0.

General Hinting Options

hinting-range-min

An integer (which must be larger than or equal to 2) giving the lowest PPEM value used for autohinting. If this field is not set, it defaults to TA_HINTING_RANGE_MIN.

hinting-range-max

An integer (which must be larger than or equal to the value of hinting-range-min) giving the highest PPEM value used for autohinting. If this field is not set, it defaults to TA_HINTING_RANGE_MAX.

hinting-limit

An integer (which must be larger than or equal to the value of hinting-range-max) that gives the largest PPEM value at which hinting is applied. For larger values, hinting is switched off. If this field is not set, it defaults to TA_HINTING_LIMIT. If it is set to 0, no hinting limit is added to the bytecode.

hint-composites

If this integer is set to 1, composite glyphs get separate hints. This implies adding a special glyph to the font called ‘.ttfautohint’. Setting it to 0 (which is the default), the hints of the composite glyphs’ components are used. Adding hints for composite glyphs increases the size of the resulting bytecode a lot, but it might deliver better hinting results. However, this depends on the processed font and must be checked by inspection.

pre-hinting

An integer (1 for ‘on’ and 0 for ‘off’, which is the default) to specify whether native TrueType hinting shall be applied to all glyphs before passing them to the (internal) autohinter. The used resolution is the em-size in font units; for most fonts this is 2048ppem. Use this if the hints move or scale subglyphs independently of the output resolution.

Hinting Algorithms

gray-strong-stem-width

An integer (1 for ‘on’ and 0 for ‘off’, which is the default) that specifies whether horizontal stems should be snapped and positioned to integer pixel values for normal grayscale rendering.

gdi-cleartype-strong-stem-width

An integer (1 for ‘on’, which is the default, and 0 for ‘off’) that specifies whether horizontal stems should be snapped and positioned to integer pixel values for GDI ClearType rendering, this is, the rasterizer version (as returned by the GETINFO bytecode instruction) is in the range 36 <= version < 38 and ClearType is enabled.

dw-cleartype-strong-stem-width

An integer (1 for ‘on’ and 0 for ‘off’, which is the default) that specifies whether horizontal stems should be snapped and positioned to integer pixel values for DW ClearType rendering, this is, the rasterizer version (as returned by the GETINFO bytecode instruction) is >= 38, ClearType is enabled, and subpixel positioning is enabled also.

increase-x-height

An integer. For PPEM values in the range 6 <= PPEM <= increase-x-height, round up the font’s x height much more often than normally. If it is set to 0, this feature is switched off. If this field is not set, it defaults to TA_INCREASE_X_HEIGHT. Use this flag to improve the legibility of small font sizes if necessary.

x-height-snapping-exceptions

A pointer of type const char* to a null-terminated string that gives a list of comma separated PPEM values or value ranges at which no x-height snapping shall be applied. A value range has the form value1-value2, meaning value1 <= PPEM <= value2. value1 or value2 (or both) can be missing; a missing value is replaced by the beginning or end of the whole interval of valid PPEM values, respectively. Whitespace is not significant; superfluous commas are ignored, and ranges must be specified in increasing order. For example, the string "3, 5-7, 9-" means the values 3, 5, 6, 7, 9, 10, 11, 12, etc. Consequently, if the supplied argument is "-", no x-height snapping takes place at all. The default is the empty string (""), meaning no snapping exceptions.

windows-compatibility

If this integer is set to 1, two artificial blue zones are used, positioned at the usWinAscent and usWinDescent values (from the font’s OS/2 table). The idea is to help ttfautohint so that the hinted glyphs stay within this horizontal stripe since Windows clips everything falling outside. The default is 0.

Scripts

fallback-script

A string consisting of four lowercase characters that specifies the default script for glyphs which can’t be mapped to a script automatically. If set to "dflt" (which is the default), no script is used. Valid values can be found in the header file ttfautohint-scripts.h.

symbol

Set this integer to 1 if you want to process a font that lacks the characters of a supported script, for example, a symbol font. ttfautohint then uses default values for the standard stem width and height instead of deriving these values from a script’s key character (for the latin script, it is character ‘o’). The default value is 0.

Miscellaneous

ignore-restrictions

If the font has set bit 1 in the ‘fsType’ field of the OS/2 table, the ttfautohint library refuses to process the font since a permission to do that is required from the font’s legal owner. In case you have such a permission you might set the integer argument to value 1 to make ttfautohint handle the font. The default value is 0.

dehint

If set to 1, remove all hints from the font. All other hinting options are ignored.

Remarks

  • Obviously, it is necessary to have an input and an output data stream. All other options are optional.

  • hinting-range-min and hinting-range-max specify the range for which the autohinter generates optimized hinting code. If a PPEM value is smaller than the value of hinting-range-min, hinting still takes place but the configuration created for hinting-range-min is used. The analogous action is taken for hinting-range-max, only limited by the value given with hinting-limit. The font’s gasp table is set up to always use grayscale rendering with grid-fitting for standard hinting, and symmetric grid-fitting and symmetric smoothing for horizontal subpixel hinting (ClearType).

  • ttfautohint can process its own output a second time only if option hint-composites is not set (or if the font doesn’t contain composite glyphs at all). This limitation might change in the future.

TA_Error
TTF_autohint(const char* options,
             ...);

Compilation and Installation

Please read the files INSTALL and INSTALL.git (part of the source code bundle) for instructions how to compile the ttfautohint library together with its front-ends.

TODO

Unix Platforms

TODO

MS Windows

TODO

Mac OS X

TODO

Authors

Copyright © 2011-2013 by .
Copyright © 2011-2013 by .

This file is part of the ttfautohint library, and may only be used, modified, and distributed under the terms given in COPYING. By continuing to use, modify, or distribute this file you indicate that you have read COPYING and understand and accept it fully.

The file COPYING mentioned in the previous paragraph is distributed with the ttfautohint library.

ttfautohint-0.97/doc/Makefile.in0000644000175000001440000007676212237364312013576 00000000000000# Makefile.in generated by automake 1.14 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ # Makefile.am # Copyright (C) 2011-2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' 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@ subdir = doc DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(am__nobase_dist_doc_DATA_DIST) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/autotroll.m4 \ $(top_srcdir)/m4/ltlize_lang.m4 \ $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/errno_h.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/fcntl-o.m4 \ $(top_srcdir)/gnulib/m4/fcntl_h.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/isatty.m4 \ $(top_srcdir)/gnulib/m4/lib-ld.m4 \ $(top_srcdir)/gnulib/m4/lib-link.m4 \ $(top_srcdir)/gnulib/m4/lib-prefix.m4 \ $(top_srcdir)/gnulib/m4/libtool.m4 \ $(top_srcdir)/gnulib/m4/lock.m4 \ $(top_srcdir)/gnulib/m4/longlong.m4 \ $(top_srcdir)/gnulib/m4/ltoptions.m4 \ $(top_srcdir)/gnulib/m4/ltsugar.m4 \ $(top_srcdir)/gnulib/m4/ltversion.m4 \ $(top_srcdir)/gnulib/m4/lt~obsolete.m4 \ $(top_srcdir)/gnulib/m4/memchr.m4 \ $(top_srcdir)/gnulib/m4/memmem.m4 \ $(top_srcdir)/gnulib/m4/mmap-anon.m4 \ $(top_srcdir)/gnulib/m4/msvc-inval.m4 \ $(top_srcdir)/gnulib/m4/msvc-nothrow.m4 \ $(top_srcdir)/gnulib/m4/multiarch.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdint.m4 \ $(top_srcdir)/gnulib/m4/strerror.m4 \ $(top_srcdir)/gnulib/m4/strerror_r.m4 \ $(top_srcdir)/gnulib/m4/string_h.m4 \ $(top_srcdir)/gnulib/m4/sys_socket_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/threadlib.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) 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__nobase_dist_doc_DATA_DIST = ttfautohint.html ttfautohint.pdf \ ttfautohint.txt img/ttfautohintGUI.png \ img/a-before-hinting.png img/a-after-hinting.png \ img/a-after-autohinting.png \ img/afii10108-11px-after-hinting.png \ img/afii10108-11px-before-hinting.png \ img/afii10108-12px-after-hinting.png \ img/afii10108-12px-before-hinting.png img/e-17px-x14.png \ img/e-17px-x17.png img/ff-g-26px.png img/ff-g-26px-wD.png \ img/blue-zones.svg img/glyph-terms.svg img/o-and-i.svg \ img/segment-edge.svg img/blue-zones.pdf img/glyph-terms.pdf \ img/o-and-i.pdf img/segment-edge.pdf 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; }; \ } am__installdirs = "$(DESTDIR)$(docdir)" DATA = $(nobase_dist_doc_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@ AR = @AR@ ARFLAGS = @ARFLAGS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@ BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@ BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@ BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@ BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ 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@ EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@ EMULTIHOP_VALUE = @EMULTIHOP_VALUE@ ENOLINK_HIDDEN = @ENOLINK_HIDDEN@ ENOLINK_VALUE = @ENOLINK_VALUE@ EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@ EOVERFLOW_VALUE = @EOVERFLOW_VALUE@ ERRNO_H = @ERRNO_H@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CPPFLAGS = @FREETYPE_CPPFLAGS@ FREETYPE_LIBS = @FREETYPE_LIBS@ GETOPT_H = @GETOPT_H@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FCNTL = @GNULIB_FCNTL@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FFSL = @GNULIB_FFSL@ GNULIB_FFSLL = @GNULIB_FFSLL@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@ GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@ GNULIB_MBSCHR = @GNULIB_MBSCHR@ GNULIB_MBSCSPN = @GNULIB_MBSCSPN@ GNULIB_MBSLEN = @GNULIB_MBSLEN@ GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@ GNULIB_MBSNLEN = @GNULIB_MBSNLEN@ GNULIB_MBSPBRK = @GNULIB_MBSPBRK@ GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@ GNULIB_MBSRCHR = @GNULIB_MBSRCHR@ GNULIB_MBSSEP = @GNULIB_MBSSEP@ GNULIB_MBSSPN = @GNULIB_MBSSPN@ GNULIB_MBSSTR = @GNULIB_MBSSTR@ GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@ GNULIB_MEMCHR = @GNULIB_MEMCHR@ GNULIB_MEMMEM = @GNULIB_MEMMEM@ GNULIB_MEMPCPY = @GNULIB_MEMPCPY@ GNULIB_MEMRCHR = @GNULIB_MEMRCHR@ GNULIB_NONBLOCKING = @GNULIB_NONBLOCKING@ GNULIB_OPEN = @GNULIB_OPEN@ GNULIB_OPENAT = @GNULIB_OPENAT@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STPCPY = @GNULIB_STPCPY@ GNULIB_STPNCPY = @GNULIB_STPNCPY@ GNULIB_STRCASESTR = @GNULIB_STRCASESTR@ GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@ GNULIB_STRDUP = @GNULIB_STRDUP@ GNULIB_STRERROR = @GNULIB_STRERROR@ GNULIB_STRERROR_R = @GNULIB_STRERROR_R@ GNULIB_STRNCAT = @GNULIB_STRNCAT@ GNULIB_STRNDUP = @GNULIB_STRNDUP@ GNULIB_STRNLEN = @GNULIB_STRNLEN@ GNULIB_STRPBRK = @GNULIB_STRPBRK@ GNULIB_STRSEP = @GNULIB_STRSEP@ GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@ GNULIB_STRSTR = @GNULIB_STRSTR@ GNULIB_STRTOK_R = @GNULIB_STRTOK_R@ GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WRITE = @GNULIB_WRITE@ GREP = @GREP@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@ HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@ HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@ HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@ HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@ HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@ HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FCNTL = @HAVE_FCNTL@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FFSL = @HAVE_FFSL@ HAVE_FFSLL = @HAVE_FFSLL@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_INTTYPES_H = @HAVE_INTTYPES_H@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@ HAVE_MBSLEN = @HAVE_MBSLEN@ HAVE_MEMCHR = @HAVE_MEMCHR@ HAVE_MEMPCPY = @HAVE_MEMPCPY@ HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@ HAVE_OPENAT = @HAVE_OPENAT@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@ HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@ HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STDINT_H = @HAVE_STDINT_H@ HAVE_STPCPY = @HAVE_STPCPY@ HAVE_STPNCPY = @HAVE_STPNCPY@ HAVE_STRCASESTR = @HAVE_STRCASESTR@ HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ HAVE_STRPBRK = @HAVE_STRPBRK@ HAVE_STRSEP = @HAVE_STRSEP@ HAVE_STRVERSCMP = @HAVE_STRVERSCMP@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@ HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_H = @HAVE_WCHAR_H@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@ HELP2MAN = @HELP2MAN@ IMPORT = @IMPORT@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INKSCAPE = @INKSCAPE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MOC = @MOC@ NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@ NEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@ NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_ERRNO_H = @NEXT_ERRNO_H@ NEXT_FCNTL_H = @NEXT_FCNTL_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDINT_H = @NEXT_STDINT_H@ NEXT_STRING_H = @NEXT_STRING_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ 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@ PANDOC = @PANDOC@ PATH_SEPARATOR = @PATH_SEPARATOR@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@ QMAKE = @QMAKE@ QT_CFLAGS = @QT_CFLAGS@ QT_CPPFLAGS = @QT_CPPFLAGS@ QT_CXXFLAGS = @QT_CXXFLAGS@ QT_DEFINES = @QT_DEFINES@ QT_INCPATH = @QT_INCPATH@ QT_LDFLAGS = @QT_LDFLAGS@ QT_LFLAGS = @QT_LFLAGS@ QT_LIBS = @QT_LIBS@ QT_PATH = @QT_PATH@ QT_VERSION = @QT_VERSION@ QT_VERSION_MAJOR = @QT_VERSION_MAJOR@ RANLIB = @RANLIB@ RCC = @RCC@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FCNTL = @REPLACE_FCNTL@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MEMCHR = @REPLACE_MEMCHR@ REPLACE_MEMMEM = @REPLACE_MEMMEM@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_OPEN = @REPLACE_OPEN@ REPLACE_OPENAT = @REPLACE_OPENAT@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STPNCPY = @REPLACE_STPNCPY@ REPLACE_STRCASESTR = @REPLACE_STRCASESTR@ REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@ REPLACE_STRDUP = @REPLACE_STRDUP@ REPLACE_STRERROR = @REPLACE_STRERROR@ REPLACE_STRERROR_R = @REPLACE_STRERROR_R@ REPLACE_STRNCAT = @REPLACE_STRNCAT@ REPLACE_STRNDUP = @REPLACE_STRNDUP@ REPLACE_STRNLEN = @REPLACE_STRNLEN@ REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@ REPLACE_STRSTR = @REPLACE_STRSTR@ REPLACE_STRTOK_R = @REPLACE_STRTOK_R@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@ SIZE_T_SUFFIX = @SIZE_T_SUFFIX@ STDDEF_H = @STDDEF_H@ STDINT_H = @STDINT_H@ STRIP = @STRIP@ UIC = @UIC@ UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ 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@ ft_config = @ft_config@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ 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@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ DOCSRC = ttfautohint-1.pandoc \ ttfautohint-2.pandoc \ ttfautohint-3.pandoc DOCIMGSVG = img/blue-zones.svg \ img/glyph-terms.svg \ img/o-and-i.svg \ img/segment-edge.svg DOCIMGPDF = img/blue-zones.pdf \ img/glyph-terms.pdf \ img/o-and-i.pdf \ img/segment-edge.pdf DOCIMGPNG = img/ttfautohintGUI.png \ img/a-before-hinting.png \ img/a-after-hinting.png \ img/a-after-autohinting.png \ img/afii10108-11px-after-hinting.png \ img/afii10108-11px-before-hinting.png \ img/afii10108-12px-after-hinting.png \ img/afii10108-12px-before-hinting.png \ img/e-17px-x14.png \ img/e-17px-x17.png \ img/ff-g-26px.png \ img/ff-g-26px-wD.png DOC = ttfautohint.html \ ttfautohint.pdf \ ttfautohint.txt \ $(DOCIMGPNG) \ $(DOCIMGSVG) \ $(DOCIMGPDF) EXTRA_DIST = c2pandoc.sed \ make-snapshot.sh \ strip-comments.sh \ ttfautohint-1.pandoc \ ttfautohint-2.pandoc \ ttfautohint-3.pandoc \ template.html \ template.tex \ ttfautohint-css.html @WITH_DOC_TRUE@nobase_dist_doc_DATA = $(DOC) all: all-am .SUFFIXES: .SUFFIXES: .pdf .svg $(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) --gnits doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnits doc/Makefile .PRECIOUS: 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__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 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 install-nobase_dist_docDATA: $(nobase_dist_doc_DATA) @$(NORMAL_INSTALL) @list='$(nobase_dist_doc_DATA)'; test -n "$(docdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)" || exit 1; \ fi; \ $(am__nobase_list) | while read dir files; do \ xfiles=; for file in $$files; do \ if test -f "$$file"; then xfiles="$$xfiles $$file"; \ else xfiles="$$xfiles $(srcdir)/$$file"; fi; done; \ test -z "$$xfiles" || { \ test "x$$dir" = x. || { \ echo " $(MKDIR_P) '$(DESTDIR)$(docdir)/$$dir'"; \ $(MKDIR_P) "$(DESTDIR)$(docdir)/$$dir"; }; \ echo " $(INSTALL_DATA) $$xfiles '$(DESTDIR)$(docdir)/$$dir'"; \ $(INSTALL_DATA) $$xfiles "$(DESTDIR)$(docdir)/$$dir" || exit $$?; }; \ done uninstall-nobase_dist_docDATA: @$(NORMAL_UNINSTALL) @list='$(nobase_dist_doc_DATA)'; test -n "$(docdir)" || list=; \ $(am__nobase_strip_setup); files=`$(am__nobase_strip)`; \ dir='$(DESTDIR)$(docdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(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 $(DATA) installdirs: for dir in "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done 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-nobase_dist_docDATA 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: uninstall-nobase_dist_docDATA .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-nobase_dist_docDATA 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 uninstall-nobase_dist_docDATA ttfautohint-2.pandoc: $(top_srcdir)/lib/ttfautohint.h $(SED) -f $(srcdir)/c2pandoc.sed < $< > $@ ttfautohint.txt: $(DOCSRC) $(SHELL) $(srcdir)/strip-comments.sh $^ > $@ @WITH_DOC_TRUE@ # suffix rules must always start in column 0 @WITH_DOC_TRUE@.svg.pdf: @WITH_DOC_TRUE@ $(INKSCAPE) --export-pdf=$@ $< @WITH_DOC_TRUE@ # build snapshot image of ttfautohintGUI: @WITH_DOC_TRUE@ # this needs X11 and ImageMagick's `import' tool @WITH_DOC_TRUE@ # (in the `make-snaphshot.sh' script) @WITH_DOC_TRUE@ img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \ @WITH_DOC_TRUE@ $(top_srcdir)/configure.ac @WITH_DOC_TRUE@ cd $(top_builddir)/frontend \ @WITH_DOC_TRUE@ && $(MAKE) $(AM_MAKEFLAGS) ttfautohintGUI$(EXEEXT) @WITH_DOC_TRUE@ -mkdir img 2> /dev/null @WITH_DOC_TRUE@ $(SHELL) $(srcdir)/make-snapshot.sh \ @WITH_DOC_TRUE@ $(top_builddir)/frontend/ttfautohintGUI$(EXEEXT) $@ @WITH_DOC_TRUE@ ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \ @WITH_DOC_TRUE@ ttfautohint-css.html template.html $(top_srcdir)/.version @WITH_DOC_TRUE@ $(PANDOC) --smart \ @WITH_DOC_TRUE@ --template=$(srcdir)/template.html \ @WITH_DOC_TRUE@ --default-image-extension=".svg" \ @WITH_DOC_TRUE@ --variable="version:$(VERSION)" \ @WITH_DOC_TRUE@ --toc \ @WITH_DOC_TRUE@ --include-in-header=$(srcdir)/ttfautohint-css.html \ @WITH_DOC_TRUE@ --standalone \ @WITH_DOC_TRUE@ --output=$@ $< @WITH_DOC_TRUE@ ttfautohint.pdf: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \ @WITH_DOC_TRUE@ template.tex $(top_srcdir)/.version @WITH_DOC_TRUE@ TEXINPUTS="$(srcdir);" \ @WITH_DOC_TRUE@ $(PANDOC) --smart \ @WITH_DOC_TRUE@ --latex-engine=$(LATEX) \ @WITH_DOC_TRUE@ --template=$(srcdir)/template.tex \ @WITH_DOC_TRUE@ --default-image-extension=".pdf" \ @WITH_DOC_TRUE@ --variable="version:$(VERSION)" \ @WITH_DOC_TRUE@ --number-sections \ @WITH_DOC_TRUE@ --toc \ @WITH_DOC_TRUE@ --chapters \ @WITH_DOC_TRUE@ --standalone \ @WITH_DOC_TRUE@ --output=$@ $< @WITH_DOC_FALSE@.svg.pdf: @WITH_DOC_FALSE@ @echo 1>&2 "warning: can't generate \`$@'" @WITH_DOC_FALSE@ @echo 1>&2 " please install inkscape and reconfigure" @WITH_DOC_FALSE@ img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \ @WITH_DOC_FALSE@ $(top_srcdir)/configure.ac @WITH_DOC_FALSE@ @echo 1>&2 "warning: can't generate \`$@'" @WITH_DOC_FALSE@ @echo 1>&2 " please install ImageMagick's \`import' tool and reconfigure" @WITH_DOC_FALSE@ ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \ @WITH_DOC_FALSE@ ttfautohint-css.html template.html $(top_srcdir)/.version @WITH_DOC_FALSE@ @echo 1>&2 "warning: can't generate \`$@'" @WITH_DOC_FALSE@ @echo 1>&2 " pleasae install pandoc and reconfigure" @WITH_DOC_FALSE@ ttfautohint.pdf: $ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \ @WITH_DOC_FALSE@ template.tex $(top_srcdir)/.version @WITH_DOC_FALSE@ @echo 1>&2 "warning: can't generate \`$@'" @WITH_DOC_FALSE@ @echo 1>&2 " please install pdftex and pandoc, then reconfigure" # end of Makefile.am # 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: ttfautohint-0.97/doc/ttfautohint.pdf0000644000175000001440000241672012237364736014601 00000000000000%PDF-1.5 %ÐÔÅØ 201 0 obj <> stream xÚuP1Â0 Üû c;¶›J¨ˆ‰9b…‰ÿ¯8 T*ÃÅö]tç„à —ŽþÔSéö³*¡»˜@y‡BqŠº€'Csƒò‚ÛȬAû€DïŽbÇÀ\¹ñ^®ÕÝ€“úyFI`Yq Õ<å1ST­¦©µ~܉UEÎÑ),o®ç%sÍpÆÁb=tÖ~bÚ¶^^0ƒ˜cŒx…›ïïçM¥{‰±Fÿ endstream endobj 2 0 obj <> stream xÚ½YmoÛ6þî_Áok-æ»Ä¡È¾$+°nAâbÚSÕ1šØAlcé¿ßs| %ÊR’fBʤx÷ÜsÇ;RQB '´^„\¡ð¨$´PFè …²Â9t™pY.T.|† %|#­Eî3¡ÈC%EI‰b¤1Â`•r¹À£R¹ÆBVû¦‹<ØoXÇ7 g<X7ý?#LQ;¾þà0nfšj¯´DmÎïIKPþ뎘8åÝ ŸÄñ2kí©±Ì9ïþ ?ýxÿýgÃPpÒlbèᩇ‰€8Óñ×îiœÉnÒa«6ƒ\Ô‹¿Å¶Î‡(´-…w-ç”,mÆñù£.Ó¸úéþ î{=e »äf£ïXÏ”å?zûùt¹˜Ç¹wÉ5.ª–oxîšA1’s~ºŠKä·`Y ØqìÆŸbŽüA¹'eí’9©-+‡ðZªO¹B_3qK&n â0vo_€*ÙÒó–1öV£†¬vª>àù%º½s«åË>\:ÍeãTÜÞH§±Ë®ïÏÕ»à"}ªë8wEEc_ReÒ™™&¯NcuvX¤3ÞI­1_óλàŠÞNßâ£s¬®\5Ÿ%«Û$Õmœm^^'ªß,Ž‚MÚmÞœ0ž)À"f¨hmÑ·ñù ˆ3àªëh•: ÕGGh™¸/õ˜ñŽGf;ãè8j”qzߤïtq5«ï‚õ~Ø¡ºÃ§Wñíi«ëï80ûìjÇåQò­L;ÓÙ®]ËjÜSN´;à·Kõ„ƒ2¢åjöžˆ¸/í(vcUö.»Qfé Nž;{ ÎÓ¢*ÇüÎöG{µHÜòwh;Ý º’ê 'ÖÇÚyO³‰dÒ8?5>Lãb°â‰Ûôf/_ ͦüôe§¯ìÀqêôs DÅà™2)—Ïbšj6¶ïÆudÚ Ù<äæ éqðl:Ïoâ‹SêІ7áå[úþQŸ$l2†+ÃÇÕW‡žµ:}iø´hÅQ<Ô…«€&]ʸœÝ¦Ï¸€?þóŒMÆÈT0îYœN_J¯‡ qO.,±<ÿ¼§Ô†¶vY<‰«Jý‰ùëÎ"ãÒ9¥q/LjSžï ó÷ñÅaˆúâ!ÿ]p‰Ýü1>Oßµ.R 5_â(ºÞY1\W 8Mßó’_;º…›´ð: Dû/ÒùW—o}ú‚½‰wKM@Þ'ú’'b|8_†(ÌM¾Ý”ããbVŽß,ër±^ ú¯ÞŸ”«åævZÒˆ¬F>”óâõòîýt f^äVíåá3„Üb9Þõôîþþcc… endstream endobj 248 0 obj <> stream xÚíœÍŽã6 €ïóyÕJ©` ³3Y ÇbnE¯ÝS/}ÿC%K²%ú'qíf¦Â"k㘴ý‰")Jòðã ߟdÞ¾¼?}=#@ c€àðþ×A…odøß8aœ9X‰B>¼ÿ}øãYJ@)IJ‰ç° ;h¦}ÂãŸï¿=¥Ÿÿó#_ç÷ïI†’ÂËðoA†!#ÀC‘¡àøÅ;¥ª«ë£{ÎÂãŸQ0f%NE©¬@º»"…Âíy§gbh]]ZTבèAXÔ“ºAô9©­ÉpH» Œˆ ¿ÀpÍÑÆ;È_ŒÚ¿†íi< Æ[ ç—ƒ>Ýäô¤Ã³‘‹7 ñ]¢åJÊóñKøáU{èýÎ_ô½joA%HÍÞʈ`i–ENx¡<ÎÈÓÈ#Õ¶¨ïÛÐp h˜Ù<·<æ6†5”äòÑȰ/G5aøVç6j†c‘¢x¶:~±›p—}t«kíÍŸÇý^æ5Mœf'NŠ‚­ N8Ãi´Ož"6sa²9’ó·¸òæ”·B:䢻ú´1\.Ñv©Û'¯„ Ûr==\ïëÙø­Þ—ýÊøôÑIõ-쿦¿£ÉÓçl͆cùê+:Þ…µ–_>Ãèrl+§¬ÎàíÚ…¿Cë1áTÍs]Õ¸¸5ü1ºÝ²Vm§×1sk'‡Ïh©óñrùá M‘KØùꪲ| Bçê5Ó-ʃÙšß×k‘ÁÐ…¸§ú~œ¶îÓˆW˜'H*.òSz2†OØ^>COBÚÏø¬¼*™]ò&v­hæ3¡ž,¿pçá³sÈ@º–C VL›`Í8¬úum(ÚËÆw#9LÑ[uDW‘«c8x«¬ì)G•9º”¯ãY÷‘9‡ÒÈYŽC“$ÏŸÄÃ6’MØÛÜ h¸Ê‚žX°¬ïÔS¶ ¿5ï «ÌÀ`Í6R­Ýd=U-§PI/œW«Tኅi<²Ò²_§²JË4¿Ý1y4°;ÉBo„FX%‹F²È7½‹É•¼Õا”¡„dµr~=w&MZóZ)8eÊsM»Sö`â4ì…É%›±“Ù ÓÐýåÈoèúÔ¢I3ÙQ)Îõ.?¸`—pÕ{Xx? €½ü/×ù±#?ÚU ‰ñ4âçê1–qõ-ƒUŸ˜ý©’µ²ë§mÔj×q¸'@Ê÷ˆfÀ>탈H¿î» "ÕôPòmÓ}ZDC¢ðÚq™ÇŒÑq `aC«€ù á~k–Ò mü{ðŽNSµÇZ•™LÞcýJª·P_«7«T&³…i€ð›c>A–jƒ)ÿcëâ¡mÓÕÊíÈ<.dŒGr¯‡LÅ̹]ÏT†O°H~PJÕYkÅçN m‰_¿ƒóQQcœÜ‚šTý6j0¢GÏÉ•GÚW3Ë; ¶oÙæ! P\µÞ_þWT1$n J;+<ºMªt¡Jã¼ µÉ”RyÞx´Ä–ÄKr®Zðݪ¬Ã…øAKÚ™á·õ¿æk‹ þúo!È¢ÐÞo„£]jý(ž¸Äª,»Imãj&MN¿¸61•³Lßn¢~VŒ ØQ0\°2R8Ú¤ŠFªÞª*ßÂP,&ÆTáF0˜GiZñý•?`-×ðu©¦Sk˜Rõ8NåhÆ‘SR½êÉð>l¡W££Ñτå|Õ£e_£I,9 ÊßäÔê ¶üË/𛀪ØuoU¥®»Àùd‘ÒÖ\žÛ)5«#/ ž©ÛNÌ䈚)Ò-öã6K† ì¯ì×Ò ¨F> stream xÚí™Ínã Çïy ¿@é HQ¤´u*íq•Ûj¯»§^öý;`ð±›&jW›ÈŠ6†þ3L ùÝ@󺾆›?ñ&^|Ý<7² ‚ ¿æøKt½U@¡qÌ ]s|k~lÐÀ!Ö»”iÒÀ2I3‘\KÚK ]>í~¿‰³~ÐZå VŽØwňenÅʳÔ/R‚XFiÞ´”Ô–<”e.®Hk¯,Ôžà°{¹~Â…ð©öîäjünÊ«°ÈŠä5Ut)~2à”ÙžyÅH³Z±ÆS@s­TÃ6‚*P 9``vJÈV1smpàžp«`¹†78½È›xÙ"‘/K]IråKÛîA'ùL­QÌliÑ4H[*&ßÇöç4vnÚ0Ô\¥ì+8ª ˆ… 9ÒVYm9¢£ÌL¢$²Sxxé‰ Ý–{”í7õö¥‡ IÛf½9Ÿci:É•¥¯`©á–UpË,Ù¥³¤è¢<¾£$ѶϽãèv™ÃÊX®§³rñ€ˆLí/cŠƒW¤i‘)î™2”ÿBJÖ™JУ2ÎÖV¹QÖjP„Ä Yó¤¼ ±Äš›ÆTûOQÞKœT")AÓm³zñ²Z¡V.˜ÚùJÚÿÆWÇ5|9‘Í‹|ùAËLfªíxJšöüŽ–¥u¨¬‰„Û"¬Âã#„=ˆf“Lì{n˜Xyö½MѤà9ŸîRôÝv;eŠÀ²zM£ówNˆ%‚+é6=UÁÊÎüÚm· Wó¤”2éF̬ùÝT!£ ŽÖ> stream xÚ¥ZÉŽ#9½×Wø*Z µ`$U¶˜¹ ò6˜ëô¡1—ùÿCk£DR ÛYB–íˆÅ ©Ëuùý›jŸ?>¿ýö¸µyoœ¹|þ÷¢Ó•þ÷qÓ/AÁ¦½|þïòï«RÚ||wJ¥oæP J¹ôÓÙ˜.¥o òOŸ>¡Þ‚£]|üçóu;­¶]¥b;ýÅ{½¸]!ž©„ôg*år-SÜ+õÊRwœú¦LÛ@›°iä…?øønu–Lþ¶ço·FÝfñÚîö㻆ÌÖ¹ØnjwéðET$wà¯ü¬éÛ‘öFÔuZ®^Ÿ•Ί-ë>ê³¶©Ù—kP¨fQôÇwŸWø.H@à^•"Òß)?žsžé ¥«[ºkCÙý#\›°÷L¾üt¡x`ýhWlcÕ5 P(|/˵bËdÅ]:„ÍfºÂ# ž¹^Ý>9xZ¥Ðm^):«ê¬;uTYù]px…Hïš·èÛèf2ãìµ-öUC±SVi”#ÚìÂÉ^9X‹õJ5|]:m+ˆ¼V>>É«ީO¡`EpOA—ŽúS£†Ï4¹‹ÂîSšHÆÂö6ç!×mÛšás9КÆm Ñú˦‡ТÉ)9í“bÜßn¨L{}•|¤ÊŠ;×lñÌ[¡Ÿ·V9-ØômwT”EE¡qŠÉRõWe¢›AwùŠf%²¶T9³*Ü^½j“9f¿û FõÑyRR0m÷–«ËSjÕdHµÊß „n ™Q(¨U¥©EέWÁõ8¬ïwºw{¼Ò)^I0 G*ŸÂ‘´ª–^É¡Rm‚½ÉAœ@=+>îŠ:WW"N²zLaŸfw=%­²:ñ¾24 ?Ö 4%ÄZaƒZÖocÃfUr)ëŸM¤}²‡NµÍ'Vü^mgéü~RÄÛVù-iZnQSµ¢éóh>½wé¦%ô7h²ZTwR±ºÊ\W®Œ[-ç*’Ñ‹™+÷•ÕÿÿÑxþ×ïÝð`ö@&ö+£ÍZC¦¬]£\A[§R$3©ãè.—³¨H£.겨=l,±º^"}_uj×)åµÛò…¢@Ù³ªU’Fl)Ž•Ð‘÷0‘¨ûH`Dž$!kšxíáÖÚM9©ÁìÈùφ_snj#»Ç-D#· ä)ƒ Ã,ü:‡éw²žÏðS¿æ6éqó©CÛÆ_k·èöIR ê¾J·m–ö"`ì2`bÜ¢rù@{sœ³¢ÎókN ÄÜ%LdIœ§öù9ƒØgÕ„,Íz,:9§†ø:¢D¤:r¢íåŽjÒLzôbÀŠc2»ÆÝ2­¼’«¶—ΆØG™¬Ÿ´èTWðí‡ÛG%­=$l¼Y´.5z>’Ž5/¤«K$Ð ú>¤s®ïO­3 )ôNKz^˯ÖÅ ì©jîÝÿŒð¶'9t³nÜÖ5"^ðÛ?»‹ë\ ’$Ýæ"¥³<ºGk–£Sߥµ–Tõö4~¦ü–2ïn۳̶˜Á$;¡¤žàë–A6úºwú^¥ä2m”=T“>ʵÖÇ@.OE5rÅcPå?ºå¶óZ:câ ‰]ßiRßÌDØœ2“`GçaY Ë}†i!PØ^~±Žl >M>˜ŒJÚwýRÞ¹«êG /ü1¸lCÒ ¢y½YXàÝ&î ¢CDÍz[•9‰¯»w{%Å;.CŸ©±Ü1ê´y/ûësf؈¡§w©:¯ù!!Ž:ìu­l Fã× ®gË›E3„Z”S¬•7¢Xæ}å©ÖNÙ'„Øêiç­Ø7Wð—>\×ô¾±ó¯Oçš‹- Ý®÷еZÔÚ5¶Â»q åÑéŽhz{îÐ>Öµ’\í£¯D’ǘð&¹kÌR±ȱt‘>EÑtHÖKq_s6ЕT‚TºÁÂfÌNóóóEõ ÄÁ°°ƒD@·®zššó´m.ÛØöäÑ §ô”é 9™kÑ^»$JÞ Ñ²LZ6oHÈ=›¦ƒÖ[ÐvÑH9C›|øõnØ´ rŸcŒZ ©DŸ¶i3M’i™\¬=&RKØ’làArw[àl±1µï{”°eجüÒ$BîÒ %Fxëz œÛŒ©Ò¨7*®`¬uUX׊¡Ý´Ãíd°Á<”Ù¢/f–SI›4Þ½'iÛw±Þ'oEXéŸüiò GïÕl©X€ÒÞå¸Ü‘‘X­ˆTçAôžÜí\µÙ®ïs·RëŒ{ªe¸"´D>Ýœ§›ðÓ¢éàº/3` À­ÔÌèó·{ª––›x«Ø£bâ+­iÎKó{7”³)?ŒN]‘‰Ÿð(y ¿¦ùÒzÐõÚ‰PZ¼-ÁAÙ™gZ»yåÏFð>3ü-炉¢¾9³Ø•ohO?‘WýLAÓäì˳ޯjF A$â, :}²LÌ__2¿N˜ýy·¥Í¹Ï¨½ ¯x§=Gÿ|Y™ŒÙ€&³«Ê$†}|͈èâ’S$Õ«¯ “…³'ñÕ™fYu:b¶†ÎjnÓ‹Öåè—èÂ*؂٥ß=KÅ-’ãdÉý‰pÙQQµÄ)ÅFõ•ñgZv*æL°ßïhú©<|¾3HÊm'r-QF{<=1Q¶“gshÍDÇgýêÁX!ÓÃ`vÖVÿ–ê8±£NŸv “¨Æ³›÷ͯ B;’Ð#÷7¹óqƒwÆï£{‡êþ¤.”z›÷%à^‚8/óñ±ÜúGàéSÿÌwât8¿ÌP*†õÓaEøZ™_ÔDõG®™d3ü%G÷@4 oŒµ¾|®T-»ð ¥/y<€B±ÙÉarv^`(Z½u$î xho6#Τýòøâì÷ïà‹iä›$Ñ©ëIÞ²Ûî-â~Þ?¿ýCE”š endstream endobj 289 0 obj <> stream xÚÍZÉŽ$7½÷WätX µ‰²*3 ø8¨›1×ñi.óÿk#E*YY0Õ©(q—'©Ëuùõ‡šžïŸ?~ÙÁ]´Ú’Êÿ.Ÿÿ¹èüEåÿ£Ý”Õ—àý¦Ãåó¿—߯JiPJíoÿþümÐÚR‚>&¹-¹(Ç$·+þí§q:S€ ”ËD ·:G­±ô)-ù¨Õä_ؚǨGnKùï†ãåPú-•Þ4¦Vg­2®Ð©c G›YÝ*g?­uÇ5ÏsöwˆÔãÞ¹Šýëàᆙò z¿²ÝÆ!ßåYéÜøX؉×Wâ9O•Kj[™ó¿¹xEÞ ¿™Â…:ã-¯µhWoÊLJufóF£%àÚ¬öÓÚZˬg«êľÕ×ÚÕ]»ŠAª²u/rw$¹³>ÔW¾ëÜ»‰™bÂ)Ó—^êŽÂ ¯ ‡¦ÔJyoªî«í- ˜¯-Í(ÂZ”7ö×í«ì_Ôɬ‡qecªêœtiÓ¦‚!]Šº²¹|a˜<©³š³*_-š«BSw¨ËnÜƼ6—}÷7A\þJ•ͪ¡ˆ&ìß å§uíÙ„FßLVº¿ßå—¼LSz‘¯CdðÑx.¶×;€´T”ÖÛO]_p§Ïüd×Õ\k‘Óÿþèûׯ$»ì6ða^³ÀÄ´X²á´‰^ð[´n¦§†NÃØ…½åA-]î•§®äNà¢a³à &>n>ú‹i3ŽæÑ¦ ÌÏL=Ó,j‹ŒGòÔ4_5B;mÇåH ÅÁ|§á52ý¾ô·Ño>¸‹×f‹)u=û‡—¹—ì_¤¯ÓB#‘iÄ#« É< ïmT`&ü VƒoÝ-£¥‡‡ÙSµ¹ÇdNÉ^‡_BIÛ¶–o…¯šž)‡H³$le¥}U]eó驘™®m7ê×¢°Ç(Í—Œm?R´^O Ÿˆ_*·Â}ß»4?Ú²'Ÿ‡Ï_ö –ƒÖq‹>Kì²4º|æÅgù’?Ý ÙüÌï! 1«6£È?EøFÉféS(äÓ¸*å’†W¼¯)ZÿàoøVŠýÑìÇg.m&à ~-R,­>·Ú½}5;‘W…îz™:»O«,Ã-%òá„Ge7­ÉQ25††‰¿Õxˆ9Å÷æÿ•Ñûß,#ÈI® „hYö„5orUd4QÁÞØDã)´ÊßÏUq ÿtc‚œ+ZOÄÃbæÞ¢ö/[Ò)D˜½˜ ábKD#j˜«Uή¸ç~ŸKK¬ízÁØ#=›È!%*ƳJ8$qÇÂò$ÃÆ,X,ÛGÂf÷Ì©jQŽ,bïðÃim» Y4ï}K›ëëìˉ¥ì_M¡‚u60A[Ÿ$Rý«¨5°¦¬Øùc ã+ŠÕÆ}QÖõ^¢Ì Ö%ZÖr7_“J©"¦\dG¦g;aì!(ׄ³3v8°S±AKê ôK”Ь|6#’RzNRgøKÕä–X:魾ؒB`¥ÁªXk–6—Î} n;±á¦”¸ÚÃØ9ž¥ŒG¾o5é:GÆïLކ›Éã!¦~£hß•xGÀØèóA¸>A†_ì,äÙi'zQzµ_zBL€Âð« ë±í»fÄB?M‡P¨íüd8õ ÷ñœ{‚êa–*Å´Š)ÒÆMeµßS–Òì^Å‘alR”pív¬»èKä_ØÑgùêïSµ¶ôH Êä^¥ê’êrldü8†‘ŒX ±fä¶“ð£ä'—–qÏÌ`×H·»ö•›Ôï`Kéžì“äÐAš7eÃþqAÖÚÓ)°(ØÆ;YøÃyXíó…u¦£uËO§Hù"- DÆ»—²ÓÇÑÌ3D1-Ó†Á*;Z=‚‰ŽMÏ-%„.åÜ­Æ…¶COö?è `”Ð\¯!| Àg‚‘CY‘y3~ððÀžÜAœAo€ zù<$|éS¥Æž!v\ËxI˜o£W_ˆ3ŒÅ]¿_ŠæŽë$jóÆ!çŒ,Î=Œ [LtËä9Ó‘ÁS-ó­©Ìª¤Ã½)êˆÂí˳X£BM¦Å‹éáìl†&³,犣³fÚý’ÊT  UÜìñÖ Pš|[`…à®ËÍ!ªhF“8ä:@ 5+f;Qõ™ÆuUÁO O‚p &Ýq 9©›ø!o^0 ûƼõ¯©Ÿ_ /ØÄ ÒúæÓêYù†O“Ði–N4Läö|»”;V^j['Øâ¸Ž3ªEUŒFŽRÿ~Ÿa’ãE¬õ¡ø WÍÂmäEžÞ˜ðaG1¥iÅ­uZÒ– òfšŸ¯•}ÿN⩇|ÉÁ/dϹdr›Vú’ƒG²´c´_z|þøhâk endstream endobj 295 0 obj <> stream xÚuRËNÄ0 ¼÷+ü'DZUêÒ çÞW8ñÿ×uœÝЬ8îØ3¶‹ð¯¶ûºOÏÙX4 åÀþ Ö 8(ÇGÑ!0`ÿ†÷ &ʈž—'çÃE¼ˆH(·ÛzT#a¼äéÓ1‹¬Ø¼ èµ~äRЗ„Q~•—?"stsOÕÎüX wÖ^d¬@“º$ò±¿Mö´vr†m{×Rª¯7~;›° \CºŠÖ–µ­ %ùŽY©ðô'vj—ÈX´­I3wjþLºíÓ·g’t endstream endobj 302 0 obj <> stream xÚ¥WËŠÜ8Ý×WøJ}%]½ 0TÇå03«@íBV3‹¡ ùÿM®¤«§Ý=иm˺¯£sT°ü»Àòù|}^^vÄE°Vµ<ÿY$}úo½°Þ.PH¥—çÛòõ õúíù'YÙpj僰ÚÍV6äK;òð‰ž·ün$í¨èJcìýœ”ŒnÃì>™G7æãä”A¿‘½ßéNsP–DÍ"A ¿‰½´V ¥°DÓs]¯”Ë­ùÆ­Œ¤ËæèF®WÇÈÆ¡¡´yŒj% sË3“Å3\³ÀGôX|CXÝ”§+¦ c>‹€ŠîÇŸª…š•öí+šèµ1´Ï ·‰ÝRðˆzðhM#B Û[ t/>RA±ˆKe>'ªî5Ζ’¨ðà§¾P£r1åûF.äÁ÷œŽ‹_í$Hp€?`j‹NXW×Ú˜)É-'šÓŠ®áÆo˜ÜSõ¿¥<ýUCH⹞Bè´èlœ›º()<’Ê8¯^ª2âk }J™¤PʰL¨6Z)ÈÃ9øzÚmëíqïfF`Üêoƒ»ÂÄ8ÁsxÃ4Ü φ…¡¬!Qt_þ~»ü¸ãUþÞžÒt¹…i¾üñ&—íûå ýÁ$¢%Ƶ¹¶(Y`ÍD°Êb/FÒy´_d¡Q•åQŽëóô Û‡P’„’| ~Ùœ…RJ +çH¿«{gBš*Ÿ"è‰Så?”Ÿºàš{yç«È¯)1ze4*“HOM+­¦>ñu4óÓôqäõ¨Ipо4‚¥xö"Î…ß\(ËÓˆX E¨æ†8vr.~4ö] Sºk W/ãÐ)›êõ*aˆŠ¥?‘«d“F¾«'cÆ 5»& ½6–Ýõä;‰`€¹ûÓááåŽg‰H•U@ýjËâeë)–Z쪵.˜°€!o0§NF÷AÙ±#Å^h5ÐecE‹þîƒÊ´#Ÿ4¤öNÂGé{=G¹Ë]::¸zs°fÆhåO(\ËhâÚJ-J­Q`Ù³ï€ <â!ëWzAóÝk+£Å¾|!Æ]ó¼æcBÍÂ4ß¹ê0Ö•Á&žÙ¬¶8àËHßh{OŠÓ ¥ívFH ß<’6r[!ùS#:Œü`u½] endstream endobj 299 0 obj <> stream xÚì…{×Þ€ÿ‡bkÙ¸„IÜÛb5Ü -m±bÅ¥¸k°xˆ{²Éºk\Ipж÷ÞÞûU¾33+³c; Î<ï3Ïè™3gÎy÷·gfg›êš»BS}-aIKc=6&`[¦Z›¬€%„qkSc 7[Ç`Inl›hlknBÖ¢´Ùhoi²M7µ·4ƒq[‹ƒvgnµ6ƒmÚ[›´6ßBhAhsÐÑÖj_ØÑÞj§³½ Ö:–Üjë¼Õ~££E– ;n! ËmܺÓÙ@&iŒŽ»·;±åètǽ;`ŒÒéÄÎ{Vn¹‹pÿî<`92qï΃{wÁã¸óà>2ñðþ=Šñý{ÜÇÆîß{ôàþCtü[òðcüàþ/ØøáƒGèÂ_P‰G¡ö…Q~!ðè!à1Ê/ìxÌ‚.%euÎ>·ŽAOʱÐvâX! ‡TtŽ‚¥,vp]w¥° .¢ã‚â/1zÝ)êZOîÞé$V¡ÛŽ †«rXõCk#ZiíµÔQumõ«ÛX=·.·-q´”6[KÁµ¤e¡m i\¸¶fmh­Ä† š*Ú`š0¾u;šÄù€} {–Ø3@Ș5·¤!Ç·ørpR.M¬‹·.¹«MÐËÒ½„þ.{èkÿèÇÜk«~ÄÎý’û¨à6ÚØÑÿ@2°µyÚ,ã ¶ô×b`¼‘˜;"ì6{—¡ì¦ úyIÓõT€‹…™mürá1¡÷ØÞÍÅRÈä. k¯²­Îƒå˜x)ƒä»¶¾;J'Óv&³ÑrWÌL!‚Ÿ©M×ѹ/7ü,^qÌ® îè,|òA­ÓôÝ4²eô­s¬ûRÖe/±Ë—Ò½wÑOvrèk ‰q±fZrç{ý’ï¶ Ý/»0p ®á3öB¼´TöæBßzåÕD¾[ˆðSÔ4ë3>äöÛRV¶Ô¥|ìÇÛ#ª·eïµÙ¸^~nÛw«¸Îé.ž%wF¨Wà—Ù[iSع ÆôOü¹ñûª›ú”š)Ãcܸٱ×{L2]—…½ÙvkÃ'ÛƒäNÛý>:'“ãd\ßE§‹P™–™»—iüL¯h»¥¢&GÅÑ-$¯b†aG†…NØ5‹»}Fy²,}Ëκ¬ÄKèïÅwa9â^÷Zk«rNá­~:÷ý’;\ê×v¯Í©˜p?ÆÀø.|'°µ#‚d`ª©øÕ ü†=Ìéó]¹ÅÕ–4fè¦`°±““ëeV×:Ýų{ØEg…ÍÃM¯ã¿@1ßeáô”EÅíc|¯þA L¼Ž~9g'£ÈýÉô·ùh;1X™™…œÉоÙ]øUNÒÆ°ª'p;TéPCØŸ¦ý@Ô٠֬ô,dËZ¹8ëÞqi]â6ºþ^›~)Ü‹ëszìßó@ñ€P›Ó“„»oÌúÅ?ñJ0‹.–Æ{†½ñ_ù_¿‡A‚”Ô)¬6×Ònƒ¡E=¼»²Þ¶¤©®Æ>ÆhgG¶Özú u­ø1ðð`àá-âšz°¤Õ¦kKêá›ú6P˜õ¸qC[î¢ÓAÆ75´ƒkg£4¶5Qô*·;ÑÔÞŒ«-èDZµ Ô´ëG¹¬úu` rnîhÃ&¬¢îDê-²¤©áØ´í¹ d¢õ6´¡kÛnãDF)mwöÒ†ubܶõfØ]}½½‚}µcïÓÀ¾œÞí(š I×÷ÈÜ!à$“ûtÜÅcÕÁذïþ·ÐÊ=Öö%'K÷i‚Ë!.ÿ4çHéU¤’¤,ÕEÁ.þò¯lzÑmŽ%Ö […ÁB\G]B&p5­ /[|Íléĺ¶šŒVi´†c‰sýw´ r“±¶&\û¢¸§ƒµJ´…:5X²oA3G;¡ù;Ǻè¢Xбպ61ŠNkofëÒ‘~‰Í¥ud×ÈÓ¶|9wÑT'=;˜Gq¯àøe–lƒô0rÄ­åõÖ+bÈ[ޏ ÀXâaÌà à²>rŽ<¦lh@{ÌßGñƒ¦eèëÉÏ` 8uFQ?¥ŒïdÆnØ´ìÔ½Œ¿A|Ëñ…ÎÑŸ†ŽÌöîeÜrp£ëÇúš;Ú­ηqvvZ[¨í ý> ÓOüÚo;w*Úoë8u<’if€diúû†¯¦[Z¯ŠÓaQއuñÝø·‰9žsúñÚ-Ò…ëp¾²Ö/G¶Ko« ¤ÛÄm·H7‘íO`¢?¬pTBû³ öZJ¾¿f¿wÖŽ«öÎ]»Ä'{ñýº­¶öEýlÖg‹‡ê÷_ŽG|›@EÝÁK|Ê·èÁõ#¾M >|[ &ÚÏ3|i¾žÁÃúäqþÞ½WìéèoŒóçÆl)3b³u5„1Sß5êa‹,HIÚKÕÞ? ¦©ÈW›°û}`3CêxpÄ­•–}*êá*·2¿â'76Z/qMÞÌ0nïUÅ&ê®~믅ÜB0ÛÆh¡¸÷GédÛSÊNN¶·´i´~J©eûí?œ“±§ŒˆfvnÅíQ–-#ÞtVI/·¨~,Ào³Ä…0YÒõ<ŸOÀ`1®mß\:)À’­‹Ì:v<0I/é§ú­íÎ1€“{Iµ”ìÞ6Òo+(ï©a–&è—æ·VýbwÖþ ý²yà–¬¦wÇÃ]Œ‡-Š rìê¶(Wçòˆ ®²?³Š·±Þîá–ÆZÕ)š#æZñp}«ÄÑ74ößYׯˆæÏÌ10¼Ú/dü“­á±#HÆ;™2N&VuûÏFì0jÿܦml •m³S#u3;EÎNwÕm~&bGé.ÊYû+œúN}HŠcÙ®u¦ƒòÐt³ÎÓäO%GQЕ©HÛè¢\B§“ýwøX—p¹íÖµ=EÖŠŠ /^¬RQ½¶ Áö˜n×Ýë€iB_6ox K˜Y¿øY¼~4B5~wà×áẪ] |Áˆ#Õ Ö-•?Æò|G—[ºšr¯¨±÷KÔƒ+ˆô{M½fhÀ®¯±tu$?„Ã?â£|ÿÁÌ]rr{ ÅCËmÄ{ÍÌ=øväüÄ&…™É­•,gšÈÙÙÏΊÆ?tŠï‚&ÄÒxo0uPx¿„Ð%Beiì×:(í4K¸ÝI¡V§ßAЖM¶L½ ¤(—N¹øX×nÝvÒ¼„ÏqºÞ†vçgÌÚ¨奪ɬÜKl/8÷2ü°‚MçeôÛD£ßî¿7Õ*“Dð|‡­9W 6¨D—Ö$ ¹ýVÜ4Õ½Tj%gý(&ÔÃ_djјY™Žè7lÍùBQS}yí0pĕٖ†zûLÀ•Òg|äÖÓ+ì‹=Yr¼äÔÂßÑ»+hk‚SÜBœLì» ©Ã”¿%!kÙ-:1ð ÒÌ/'g‚ŸéBh»Lì4ùG‚TAuþ}GÄ÷(RÈœ¼ŠÈ­vÒ“!ÄmR£Lßy É8ýô¬Ó¹Ll4ň÷í«)—`]{e W|ÄË,^º{m„þ^BŸõ»%m·ÛÈ¡/]σ˾_–Ño·×ï+z`®¾²á³¡á>Ÿ°Ÿ¯¿¤´¼l¬Þ,2;u ;âa¬äÍÕWñGܤªE¯š#®k1d~ȉ˜µbvb˜—w@ÔèÅû²MõèE§}ÿ+'ÓÆÉ®Bef-:1÷ûp3~Lìa&5X:9“›?QÑø{‚Î7£h§Wjtà‚@|hMö6Þo„oîäµx^n†c9y•*ÿ¤—- XP¶2¼ÕÖJU´} íTW|•)+ƒ½ª8ý.˜ðx½x]½ÌõŸ½{)C_—·Þ}¿ï§~»,`ØÔàxÊñp·ß–òzÚV;9™¢ŸŠêDä¾ ªGq(Be-·;¾ŸÁ ›™3“Þ«LÑlI½Í¤[$E“-m5!œî$L;½€ŽzÖù­¡V‡Û¡ híV|¹ØÊ&Ÿg‡ híš%›–V¶t½ ¶(—ù†9Ö%X—îÙš*GzÀŒæFEmovnôî%w;°êypõäAÐoÅÉL*¶¯²z¸¬žtÅ_ÝÉä{|t¡B›ãùIj-·1¿Ã³…:f¦èdn!ݧy<ÃÑ‘ØÖB©h²¥)uf1ó¶-Ìvz©>^nT«àÿî¯Jê铎¤Í»ÚÕÊúìZ:œ~ìdZJÙÚã[§{²6ß.™ó;ʈ/j ˆu[˜^Ô@ýd/N¼m®j2CïK»—!ôuÙÆ¡ ßä§,˜¾ªØ^Wk»¾t߀˜Lc÷e´LîÄ`if昹øŠ*\äÜBmfÜ‹°ˆóz9pÔ5]M°tk AÚd‰^­OøN6-ñ¯v^a{Êå„%Ô'b,Á±ä’!›–ð+ Bù^ÉKýÇìb]6Ö%w5tU¼ :0»—¶éánº1½øÐ÷]æáÕ þ!›w!t9aù"MôN¦š­w8™E¨L׃AÙ‰Á&`¦üó|»koi¢½HüuI#>~¦T4å…ŸI·æ)¢>úHÛ!pœÆ Þ£„¢?¼«»àŽ‹ËL ›ü“b¡Ô¬ËÂt*|çKCwí—˜téiÿ¢‚M¸KSõ6° z™û{Yº—¹ÓEew*H¦ìI~-Nv*»Ô²SPÑ3ãcfüÍë6Ú˜]¼í³ð}–ô¢çoÁÍ”oà¿8nÐEüöÝBÛJqŠâž#M—8ë})ŽNÊ!ù(O–²4(JôZ’6º.Wo€¤ýW üS M]µ.CÄKY±‚Þ×å^Ê^ß÷кàŒÞkk-Øþåu®±½”òe „—*›ý5#ØZ„mö^>’ÃmX_$Eœ°ÒÖDñÃ|ü7Ê6Ü‹SÚ‰ÓV°­8ÍR~™ÅR³½ÅþN$ §iœÉ V'KžJûŽÎ×47QÃb_{<é2K gÑÖLSM¶7ÛØÊÍQ€T/º¡¼í4—p‰)ê€ã•8 4UÈñÒ§®6¬66_I˜pzc¤ó›sèZ‡ãí‘Ì/ÚÅ¿ô×ZñMò!8™nÖþ‰Üâü¶R¢é´L_««·ÃÌĨƒÔˆ(åÜÚHëdç¦Ú@ÝÆí¯e©mc“6YÝödɵGz.aè9g¹/ÅÑ›(òé| L§ÌZ³øíR^†WǪÆå:M7‘*ɺLU´±žA¼Ì ÁÐv©¹A÷~`6¶Ã²z°Ô2q‚ôÍ•í ­r&~ t–3}¤ð3]Eii*Q7dBi˜F¼WYâÌ»„”U{Äøš„ó*Ý™’º,F¦K@¸@T¾%|S*o][]¢«iN}q”›µx]61ææ ùaî¾ /'h¹…ÆÏt³½+ß:èš ^ÎÔ‘3eÛdTt[S#³¥)—=ÓNãF|O­®›ß".óÀpj«Ø ]glɾeˆr]rcîR¾-œ ^†fBôB ] •ÙÔ+‚–™ÒfŠ`YÈüµÃöXŒgÄf!Á±Í2b2Ä·t¾u1MR.ëâ'XF¼.Å ƒ^b@H4ÔZèVnײ¹oÛÆèóäç7÷‚‰ qOq49?ÖN §™¦­ØðhÆ=\„Ÿm!Ý»aX‚[HÄþXûCPlÀÿãù+ÒÕ¤˜7ƽ¡Ö ED¿„êBØžÛ±>~`»|쯸㠱øúÓDóSD÷jìÊsJø‰®6.äU´Üå‡ëHf~i93ø™©‘2ZÚafzW3ø™a¹Sÿ •ÃY‚ûõ¯l›œ³]NY€ø%ô¦ewíœ|û*ÊíªuéT Å y‹~Æ×´.=߈ߌ¥œ™¦íN¦W4ms&Í’]m×5ÞØ”†!,w)dõýӰʃ«tZh/"§r£+[¦YÙ¾uY=\*·«5–¹@ ï‚Éffÿ# j9ÓÇ6.§ Q4¹EÓ‰šAÎ-¤ÿ;À-§V7YàÔÒ&A· {^"qb¶‰'岺R†4×Ù¾ÄuoÂUžÆ®Ô:†X—¹ªC ï~¨L6³kÓ´J?S„=ìg f&»š*Zc)"ò^-®þ¶æŸ €»t\† vt,g,OͲ™%Ç· ½ ]­u]ªÏÈ{ÓóÜ¥æÃЬŠf¶4CK§^Bel»RÈË›}ÅÒ/¡èWO¸é¼\sIR¾‹‹E#Û—¨$ .ò!{˜®!¼â6˜,MãÊwª¸\Hxåë ›èMNg³×N—ŽËü’ºUlRlƒ;ncW®éKßDcSý ègf^K;%oÜÈB×tažKS¾/«Ká+û xé›_ÊÀ´»8 ¶ñÕÞÆp­_cÕ‚@ /?f»ÔÌ)TÜ•[9Þv¸K1¾ŠE_‚.α%Õ RzµKeØÕ«ÃpÑa| ¼Ë5¹U¾´xÙte¿âëaéaßÿÀ”È+|Yxé¢`¯å.]GÈ{¸²€†3‹ÍjHXØüú›ýïU±½ÊÏYòЇèêïß™WÑ•íë¸däƒÐ5ÍBJ·8 óZŒ÷ÆÞ+Â>ÃtgÈË—ç‡@½ÅTcÔ´êpî  dº„TS´=cö¼ó1(±(1p Çpì<¶Nü”1G¦-fhPÀBµó£G^<þaòË/¿€åíÊ^ÂóÎõÝ™;/Mu¸4–ùçûÑ©¸Öd0êu¿½xñèáƒ÷î~˜€s%Ê”t,¶¦Íü){NuÃÍÆûzâÐX@“Ùž>‹²A)¤â÷ï?|pÿÞÝ;2àS”( èX6Ì= >âAíúýÿþ @\KšòÐܳ1äÖTg6åç‚/æwïtB^¼xJ”‰Ó-ƒ.£+]é-zUñûºÄ¤ËÞ¿úÛ«j‹óòYR"Ï­ÇGDø g¤¦MÚgÜ~?[À–ê“ü¸q»Êk^-'sÏö±{øo8ÀŒƒÕêÃÀÃäÖd1ê³2Ò^<v§³ƒ‰–êÍ1^öÖݳ§;×/|Èôï.+šn3ïØ­xþô)( P&¯¦ÊÒèoƒË©<̉^[jt•ô0àð®z¸³£‰fÑ1^>#nXn!³mõæê+? æsz/)¨ks±o÷zzpxk~ö¬ãVM¢MÀÃï›Û k2? ò [T\ëbßîÃë÷0Ò!à“xhßêIý‚xaĨûJtfd3tÕàý»—‰ôãx Ã~¹)Ii¦T¥2e”?~¿Ä(>=ØÖùÀ‰Ý^®gëa†~ ³4yóÃ"|¸žœÀ˜1ßÌ3Ö`{iò…yaÝÐÃp€Ãñð­¶&*P_5·:ÖdM Äï“6 ³57§«lüfB8ã9ý²ºµAreýô!áoÐÀcÇ,9˜WÛÒr«Q´5–4=³M¡Msjß-pjF 6«:>TðY†ñV[£1}󌡽„^îÞ‚ þcçïÍ5´aÇmÖfþ4sDo!׋;nÙ±²úÖ™gÍ?ãážîüÞ³ö¤‰5jñÕÕƒøÞ1k ̵¶UÞ¾#×^,Wˆ‹N.ŒçóâÈ71xØü²ñ0‡kTYËbø‚¸oNä(t²¢£óbø~TÖÀxpxnkmf¢¾|êac :Û\k¬¼ð݈þÓw×bK,YSÜÜ}GîÊWë+S uª¤Ya¼ ÊÖÔëÊÏ,‰·gÖ”­è-ˆ\VV‡ìeΜØó#ï¨Uõ`¶ÉxcB ÿØkú¦õé ¾#·e¨ë egç‡ñ{Í/°4·µ˜òVõåûÄ/=[¤­Ñ–Ÿ^Ë÷ûøˆ¬‰9ó¬ùg<ìî7î¼ 2k¤—†ñ­FEW G’Yª+^É œ’¢6¿1×V&àôߌ.GPg/å…ÍËÕAÃoÁÃö?l¥¦¶tC/½xw¯ÀáßœQÔ¡˜2¦¸NN5¡Û×WnèËõtQÕlMÁR±.šç?ñª¶Þ’;+̧ÿ~I-Ðpé²HÿÈ„ßÇäõ­ÍƼY!~‰'Õ5ùsÃyQß•š ÙhRîð­²ÁºÄ¾;óz-(47ºÈ?;þsb¾+°‰N•9ÙŸßw‹Èˆ­â Ü_YkÛјõU('bE¾ö¥=L|XÂ3üÛ<-ƒ‡µ7Æúy÷^Y ³§£½>ÖÓgs‰zpxóvñOÙµ¥ëûxù KÒ7¢³ “8óð¼(nO~ânQXbæÄn(«C¶¯SŸ,à%œ’×ÙS¨)XÁ ™ŸohѧL òsIÙ\_} .pÈÎ}Äþ“Sµ-5Åk£}î¯nljhÒ^êáœ8û»½Iy’Úk"ÆÔñþÞ‘«KÌöd ` 7fk¥åÕÿ:ðÏxØ&@ÔÃYSýù±?VZ=ì3âªÜ¾£¹`Y'hF¦úMÅÃ&ÙñùQ7ÏÐ…Ùèa8ÀáÍ{¸©±Ž‰šâuˆ‡/ip õ©3Bzòâ÷Iëêš iS¸vTÔ!«ÌU;úò|F¤ê×–­‹åú~œ®iªW\ãöU†A}i\H̦¢‚ͱü¨å†ê]q~1[*Lèöµ5Õ·.äåîæÆë•8oO¶±¾FqŠÒa‹òõ.òÏŽ7îaþ £Õu¶ ™_„r#×êÔÉûqüTVcsìåDïè—Ð\éËí·»ÂŸ—€Þ72¾Ô´Ñ\„x8ñ¢¦·ÐR±{€7·ï¦Jsm£.x¸ÿOåµÈ*‹âä oàq©Å¾±)wn/NÈÜX+;28 zUNê̈ðY¹]Á×½|ãvçO Œ\^lr>nAžsfë—½¹ža stÚk£oˆL.rû²P{¸ÆÜE´¥kPËÍ êT«­«”YS€‡7U°UA“/i,Ø*MÑÊH^ÈWYjsƒ6}v'jYŽ ÛK—½,Â|ÞIL`Vvm_0è¨Üì|P‹4i(ððšRU–ðÙP]G=\VSc®©Ø‘ÀŒ8TYgÝRW¾1–'yVbtyšÐÃp€ÃKz˜Ôš,]VF*ðpC… SÁˆ‡/¨kq µ)3C<ƒ¦]×¢Ó“‡·—Ö «,¥?€èwÂYIucä&×wô¹ ÌÖTlà1gzXÈØ‹ A]êä`Ÿ¨/û Ãçe©Ž^+ÚÏå ;/µˆv"Þ8,²%«/ßËóyVfr‘v NeÒu÷¾œ‡Ýzz…~¾3U¢ª.86¯?_8jG)²¥Yzy’'ø³#y2“"ÿܲ?Žßêa$^ôšó»qaÞž½æÝT¿ª‡†ÊËë¦ ÷áxxø„ÅöùÛKm}~˜&6††^»‡k-F&ôyÀœŽ.Y77/~`ßѳ¶_¯6c¨®ê<\drìRrzÕ'Cy^žÜ ˜Ñ wÜPšì ªr†yyE¬ÌS#³ÆÒ}qw¿qI2ƒu“,sÇìÑ1Ïžžßè_m»!±X“­¸øÃ´!áà AhÜôÎK ¸4yñǪõôÓFf^“‡ÙATt7zp誇SÑ÷ü0x¸Æl€@wÉÃ×%ûàûÖ öï[»&ÙKçᜬŒöVä™ß\Â-õm­- 4 ‡Ù°-uÖæ´/ªê³à{e!6TÕg‚&³=}6¹5ÕšŒå%EÙ™éîÞmn¬û`% >†Ü¿—™‘J”É« ÿL]C÷t,¤š¢ùçûz¢â4å!øo ©ÊC eÁ¹~2u eƒÒ*åi)×o\¿j4nwv"tt|hcpî×®\åJã=–çkWñö´Yà{q ˆ„é$Ü€<Û`THÅ©É'ŽÙ³ó§pî @9€Ò€‚…@ o ½F%®¬()Ìû0çJ€RÂõò¦¨³˜jÍÆpî°@ @ @ @ ï@ ä½§Öd0ëµ:µòÜ;(X º„B*¾–téÚ•¤Ô”äô´T@Zj Ã1ãÇׯ^¹štI)•04(`!‹ÉððÁ½çÏ£<ùÐÆ>° ŸDЮ,QÉÄI.h4êææ&âÐX._¼ –Q«ØbÐéµêçÏŸ=¼ïÞÛ&àÜŸ?{Ê”t,Ò“oôº/^ü8ÀÅ‹^¯MO¹AÙ äâªûwï<¸çî펙÷î€r¥ˆŒÔä§OžÀ÷{Ãì‡'Ož€†CnM5F}a^6øb~»óäùÓ§ 4@™¸°Y#º¸iþøþ½„Þ^Ÿ°˜¡_®9˜-gÓ½lÐfí]ýí•é¥H“‚Yry(ÏügÖü„3bC½*y×ñ¦"3ØRy}¢7ng©åÕ< êÿûlYp€û4™¢¼Êžá¬ô”§OwÞjc¢IôcŒã‘zötçú†™¶ö’¬¡ƒyÇnų'Ai¸è%6ISV öå…OýádŽHnÖT•^ݹx¨/7ôã½ÅWGl)tLöÒ¦K]Ή^S¢w•ô0àð®zøV{+•›b¼|†_3·!³í-µÆªËßâsz/ίmq±o÷…‡ Š3“ƒ8Á3ÎTÕâ–×innÈã÷[]¨…†àð’nokf¢¡|#â᫦VÇBsÆ'^a ‹Ì.öí>¸ö°¾hk?oþÀUFÂ*£öÆ¡^þS“¤uDÑÉ“GúðãöŠ U§Ùº8±Ûs®}è3xß®¥czûq¼„añ_n¸¤0Rª’&…R-[3ôKÅÉ?~1,܇ëÉ Œ½ä@ŽÁŒí¥Ê_ˆþ_³Ø= 8¼·µ41QW¶¡—ϰ+ÆfÇBsÆä Aü^I2kΜ ¬²aÉ„pÇ'rÚEUs8iÝô!½Þh_| ×ÒÔÔV_¹%–4-Ý‚¦Ð¢:‘Èw œ’nÆfG‡úLO×·µÔëSüjH/¡—»· ¨ÿØy{²u-ØqÕÛgŒè-äzqcÇ-=ZRÛÜä"ó¬¡ôpŽšªCƒù^}Öæ›œ—#(®Lòó‘®GE7`g©ÙºÊjÑj£©ÎÍJM¦:UÊôÀžîÞ¾#ל/•U_ÇçÅŸk»°Lt›‡‹õ¤ŒY°cqûn*27+2—Æð–»)ÓH ŽÌáûMØ_n¶P%âLô0àÐuæå[“I¯ÍD=ÜÒÜÀDmézÄÃIú&t¶Ñ¢/?·vD¿i; -ØSÆÔ7wß‘;ó”ÚòZù噡¼ IÛÓª-µêÒÓ‹ã‚ÄÍŵͦ’å‚ÞKKj½Œ“{~äµ¢¬ÌÖë¯ðsE[ߤ<9ÁßwäÖ4eM]½¾øô¼0^ØÜge,ß'þÛ3³ªôä‚X¾ß¤ÃâæÌ³”( P&tò1ä~éÉr²ª†¼V—³¢·‡`ðI¹‚½‡Ý…ÖXª)ZÉ œ’¬4¾1[D† 8ý,²}¬(³æ‡rÃææh ‡á‡7íá'O77Ö3QS5P8ú¢¼±¶r\à{† ý?MQ5™ ÖD o¨mP'ÍõðNœµv÷¥œ*K5}Ê8ïÞ«Š ödõÉãü¹1[Ê.òÏ—®Hày÷ÝPHÑ/¡¼ò±¿GÈW]ê—ðž$µ§`Ì[Å ú*Cù¦âaƒôØ@ùQ7ÏÐ7UÐÃp€Ã›÷pC} æÂP«ëp µ)3BzòâöŠkjt)“¸ý*«AVE?õåù OÖ86¶”þ"äTUC­ìâh¿Ð¯ÒuÊ‹cCb6äýËZ–§íˆó‹Ù\f@··˜Eç·ÌäåîæÆë5tîî›úZ³ìD¥7æj]äŸ.=\§/ÚÖ#HØ)2WiSg„zùO¾,­U^ÿˆn{‰ÙfÈKCy¯ªÁ-4•íêïÍÝPn4×k’o/± «Œˆ0y‰ö ÙszqBæf«ÁZÉáAÑ+o¦ÌˆŸ™£Sç/êå·ëæÑÄÀÈeEçãÖh¥Ù§¶|Ñ› ‚´lµú*ê ½‹Ü¾,Ô6qg§{~~¢Ò‚[^«ÎÚ0Ç‹]™¯1Ö©Óf…p"—f°µš¬¥ˆE `Vr5‘/tDj4Ö)=?½¨2a‰¨ Vôæ…|™©d>c&Ìë‹uÎË1”¨‡7šÀ´ââá¥f³Ñ\öS_0ü`EuKm醞pä™jE"ÎäÞ„†ºîálrk2é4™iˆ‡ëjLLò¿ö =¯´àª“g„xM½¦A¦o ÞVlFW™Š¿åúN8S]cÝXS¸&’+uNj³æò­ü"fO ‹$ìõE¬0|n†žêè–Šq\Þ°sbSêC¶dµ¥coH .òÏÄÃi) L˜d”&¯HðåEL_*¯JaÒJ*oìûv¸/7äã=Ejtñʼn¾œàé‡s%YÞÙ¥ ~7¾Õ¢òŒ)þ¼èÕ9’J©$yz [O¯ÐÏv¤T+ªòÌíÏŽü©ØÄ>­á=\g”\›ÎóM\u*G®––Ÿ[9TÈí»,]g2BÃoÞÃ5fºÜ›°%zƒ4ëØ¢Àº<%²DyýSnÿ­…Fl{£èìçÁÜÀñ›¯–juâ¼£ úóyñ«3´&GjînœøÝ%&³Á,>9Ò§‡›{Àg7dXâòKS‚ùQ‹ß”ju&eá¹¥}Âaû+´5FñUÔ+OeKÕ’R«7Ò4&ƒ‹ü³ƒ•‡é©+Ïo˜;&6”ïéé-í“øÕêƒ7ezûñÅõ“ûó<8ˆ‘ó¶\ágµ¨A›±vl¨·‡gØÜëIӽÿZ:sh˜ÀËË?rä¢]écWRÈT¾ª‡ºŠK?L.àxxBã¦^ª·Æçyèóçibcèa8Àáµ{ØbÒ3¡Íættɺõðâö5sÛU‘Û@q x¸ß–Bƒc—¢S+?Âóòäõµà§krƒ=AEö‚P/¯ˆ¹JdV_²'Žãî7ö’TgÝÀ(ÉØ>ktL€À³§'Ç7zø—[®W›°Uº² ßOÒËêiߟëpiò∴ôÓzfØzøµ€wc7xø÷߇- p`?€&Ãìa³Qî’‡Ÿ<þ¶,8Àýðä—_è<œ™ÖÚÒÔXWóK¸±¡¶¥¹”ô0ÊK kÍÆ?ÿü6.8ÀÍðç€&SQZDnM£¾´¨ +=ýîÝÎÆúÚXÂ5÷îÜÎLK¥Ê„N>/–$Q×=½ÚUôj•BRÝT_ûë‹çþù'lep€­ÿüó×çÏAc‘Kª j%eƒRËe©7®Ý¸zÅ`ÐÝî¸èüðÆF½îêåË @i| "}u •J&Ñ©Ä% ±µjºÖTcÔËÄUé)×9¼{Çöpî @9ÔÐÃòÏät]UQV”ŸûaΔ”0y»Ôš @D&àÜa€@ @(¾&@ @ ¼-L@ @ @ @ @ òAƒ{GÅ ·uƒÎ¢×bc³^cÖkM:Y§1!¨MZ5µ*“5*ƒFiT+ÁØÆj@¯Âƒ±N)×)eÈXÆ2­B¦•Kµ  AIÔ2±Œ¥`\­ciµJ&À¸  c±H))ÄÊêJEu¥WÈ«ÈDå2Q…—KÁ¸²L ¨(“ ãRIE‰ŒËKbd\,.+—W—‰K‘quiQB!@TRXURcäWaäqE!çqEAnEa.—#ä äç”åg#ã¼ì²ü›È8ïfiÞÍ’Ü›¥¹Y€@N& ØJFqvFQ6:¾™Ž•f€@ºˆ½.ªU‚­dÙª¨Y B:êg~6VcÑ œ[^˜c¯ÕH=/ÌÅê<c­Œ­k %…X“©.AÚŽ£5•!í ieh‹CÒK–XY Z¥´²i¡h; k¶øæŒ´n´¥c­^ñ€¸ ÓªlŒxØCƒhŒ«h娵 2–éRÔB6#)嘣Pq0¡i€Ù”vË!ÒC½‡™£1¤Akµ%bN}Ag}ßúʵvv¼}ÂbªG0×ט0j-u5`Ü„MÔÕ4êkÍõuÍ VZê[ ­M(mM€ÆÖ¦Æ¶f@ ½Ð ¸Õ hAhkéhEm­€öÖŽö¶NŒ[í·€[wè¸ãÖ]@gàÞm@§•;·QîÜ¿‹rïîÀÝ;î"1îß{„ñàþ/îƒñ£‡¿<|øË#”‡?ÂxôäŒ_ž#<<<{úäÙ„çOOž=}ñìÂóg¿>Žðâùo/^~ýõůèÄo¿~ýà7Ào€ÿ ð/ÀþýoŒßÿùÒ%ìõ«NhCjÚ¯¿þ†€VE¬6Z§ŸcÔXkÕ}ö Tc´>[«7RÏŸ>AëüãgOÐ&ðiOZеɀFšÚˆ°fõèÁk+»¸ZÖ Ñ†‰¶Í{wA;µ6Ø»wlMø¶­Qw`Ípgô?>3t" ¢@Ú£­µ§«dZ›1íÿ`"FjÅÔd“Ukc=0ê±z 4«Üêë0Ý5ÕÕZX[Ód³"x&0'âOT¤N¯ô¡>@ @ w†@ äCæCýÏ>@ @ @ @ @ @ @ @Þ"ÒjÑ•K®^¹œš’œž– HKMé.cÀµ+IW._”‰«à¥„@ ݹ¤êÒùsº¹¹©û¢Q«.?¯Wà @º©×¯êõÚ/^üѽN›zã¼ ¤Û‘–|ýéÓ'w“áÏ?ÿT©T`L^õäÉp.ð‚¾û *ú£/?‘ÀåÆl(Ñ8-W§~âðY²™•]ŸÈí»!Oï"5­2}÷Ê%—dzò*•èܺ9cbC}¼¼¼¸þ½L˜³ár¹ŠEiÒÔ•ŽçºõøÈFžnî\ahÜÄoO)Ìo·HÕ¹ëûx¹õp üä‚Ü9ÛÆ’Ÿòz¸yÇl)R±-U¶…ÿFÉËÎüßÿþçÐÙÿý"9²hT¤ãÅ 8}KVëþzW$ü×_íß·/n@ÿ9sf“ׂ³ÈËÎzÏÛ8äýð0Û¤ª.á ‹‰ÖÊÎ~Ñ‹:}Ë…±Â¤‘Ue[3RÈ ùìœHó’i¢æöÛ\f϶N^•²kV„7êëL¹ö­{Ø; >0db’ŸUùö„ˆÁ¾Þ˜‡»sµqöðï­ÇGù ‡lÎo~òë]ÕÉ/By‘+%Oÿ|7<|ýú5 aŒäädèaÈêa]ÉÁ®ÏÐcÜrcéÎ<îÀ=ÅÆ×åaTøò <ü'_•¼uû&lü,<èÓ‹UŽà\S°}`ÌŒM|Þ3ÿ·ù`/t®ü¹u¶õX7pzõÓw@Âååå@¿_/ZøâÅ‹óçÇÇ UVBCº}¿2í3dÿ®•cƒxŸð‘sw(µX:Ö^‚g4¹b¼¸ý~,ÕÐgC[ymãg‰á>\ON@ŸQ_ïÍÒèuLiR{X§Ï]ÙÇ››p Ô„Κ7-™˜æÃõpçúõ1{{6*Ó…u¯¬‹FÅøs¼¸þý&~ýã‚aÔªB5}>)=<âäÅÏC‚'·wMè 7ÆGÍL:>ćÜ/ÁâfÂa{¶}3&:€ãÁõ‹ž¸âtyöÞ¯Gööóö„$ÌÝ—¯C6»2Á;à§"ƒ5Kâk#ü¸Ý"-ë òì¡^¼'EZ×þ½qw?nèl›‡ÿ×~z×obÉã·Ý5a4J˜>}Ú³gÏÀìÓ§O§N™)<|©üÊ'Ál]ª’ }#?¿V~ÎÃ4ù!oƘ} C¦¬Êüq°ÐÃ# pЊS¹ryiÒÒ>|Ÿ!‡Ê5®<Ì"….öK4íï—¸½¸õéoô—æEð×<úãmÃK=vÌè;wnÛ—tttŒ=jù²¥ÐÃwÐø^8Üé<ìî7æ´õÆ™¾ò\"ßÚÆi= ÔT|bɰ0¯ Ùž=½Cú™³ö@¦Xmí£(ß›(àôÛh¿%͘Ê ›¥è‚‡ÍšêÒË›¦{òú­ÈQ"KL•G†ùøŒ:Yi²îU}u$ª#ÓYèó¿‹åùO9oëOPe­‰òÄ<Ì”O*ËÅg'ø|M |)ˆ œT-£õ0M©’6óyBŠnfª8˜ÀsŸŸ¦Áâíübyè%sáa)tñ>Ý_ÿi¼ðe¨·ZmzòÖU<þãíwJܽ{÷þýûä…÷î݃†tÿx˜Ógu¶ÍE’ÔOüù±‘>c¾•d'í_÷Íg#ûù{¸÷èá4qw¡,W&ñóŽXž­°o©¸<ƽ1_Åìa§O ·^ÂÞ#gl¼V¥Æß“dž9´íû• ¾ødh¤ŸGn¿-ˆºiÏBS}(^ÀO8íø>.ËšÂG=Ì”O*+õ•§G'žvÕ築 {Q¬•Óz˜¦T‰›yG-¿©Ã6Ÿ&à&(3Y»ÜŠã 'ï.<Ì"…®õߺ4-ß{Îiù­çÿyÒ¿mŒ¿ a“âùŸ¿ûô0¤Ûzÿ•$m²?ÛÝ•‡q½ÁU?MõtóF¦×VŽ£qÐùérvñ°F™sdi‚зßûòåŽNmù©Y}xœðc>_°rDZsG† xØ.´g¡*YÍ޼.µKY¸:ífÌ'¥‡ šªŸùú¿,–®Ž Ü©¤÷0M©’7[oÛ µè Ãv‹î`ça)tÅÃÿ¶|Í ] ~fëþ_ÇÙ!ᘌûo9&îèèÀwJ`CggçíÛ·¡‡!ÐÃØCûã8œ¨Õ Δ_áËÝQ¬z•ç%LU§æ„yz…L?m{Nòe¨—pü[ÿ-ø²?˜Çuáa`Îx>/wJ~svˆ‡™òIíaô±¾ï¤“WVEù ýÑÝkððמäÇí¿µÀv⢠Cx§ïŽb¥uÙµY!î\äË>ÓYèóׯðü§]ª2c«Ô9b¼8Q+A<̘O\ÞÖZ4ùÛúrщA¾qûJUè“u˜‡•lK•a3ñÔ¢¥X~l½ b‹"yf0'ò› -¶™2ýÛ^Ü.‘–u ®ªM^v†Ýÿ7îìÏ š]ñÄÿßí+Ã…~r¾åŽ ³ÙćÛ÷ÛdµŽ>M-êá¾›ËðÙÖ‰Ó÷æxøM:XjÔkuÙßD{sû/;[©P*‹“ö|Õ›‹<ù°²PÅxÚŠ3SùaSvÝ(RŠ2O/Žóéù'z5²S>q¨ìýÃ`VQô]4§Gnß±¬Z=\¨d[ª ›U£=TjBg%¨E¯Š-ºÊó|9ÁSΪÒVß<ýÍ@_ŽÀ.‘†u ®ªMÞM‡‡ÿþ¿{3ƒùsÏÊoÿößíû' â7i^¼?©«¬¬ˆ°`þügϞ͛;g`|œ¸ºšÔ?œùž·ñ÷óû®ìx—ƒ6yürêáé7$È,®ñ:M#ˆSmÆ0ë5Ê”ÕcB½=<Ãf§IŽ¢.¹ü㜉#yî=Ýù½‡M[v4[jÂmpþ»©ƒ{ 8‚иikÏT[óC“¦¶ôêáRçl›¤×–Dzyø;T¦2뤹;¾Êõt÷ô í÷ñâŸNnèÇ÷v¢RÃxZ“zäyÕï¿ÿ= ¼kè ÀãÆ¯:W&S™”7ÌîãÓkÞ•j,g?þåQ7zßšÁ §|ßÚ/AC ï^,+Ø¿h‡—›»¿Wü'kNê`±8SRg1èþüã¿»óðÇXôºÒÂ|xA!õïQÞÍ «2©¨¢¾Æüâù3Ê8óÝŸ?{Vo1KD¹ Ö@ÒÑ(d²ê*•LÒ}ù×*åðRB  @Þ&:@ @ ·ƒ @ @ ¼3ˆ+Ë“.œ¿št95%9=-–šÒ]Æ€kW’._ÇÁ½‹¬GO7wŽ0$nÂ7Ç ¤Æ·[¤ŠìuÑ^n=Ü?>Gȶ¾p[<·‡›wŸÍùò—I™í…x£äd¦ãÿ㙣}zà_'cý{º?5]\>>ZÈñD ›÷såÃ7üOýõ×þ}ûâôŸ3g6y-8‹Ü¬ô÷°CÞ³Mªâü`?áç*¢‡U’ÓŸ÷â…Lûñ\‘HjPŠ+ÓŽ¬!ä„L?S¡|É4Qsûn*±g[-©¼±cf¸'raºDõÖ=ì2ár>'òÒ­Ãùz¿´‡ßIþ—aio¿áé÷ɯ#þ¿Y3Âü†n/mþ¬U´oB oâÁ†ÿ¼I_¿~Íþ¿HÉÉÉÐÃÈÃê¹>CŽTã–ë‹wÄs9ñ» õ¯Ëèð¥ç&xøMNªzë&¬ŸøÉùJGp®ÌÛßç« ý}Þgÿ_gÒÿ¨5æ“ÿv¨qwAÔÝoör! ]ýôMý…hyy9Ðï׋¾xñbÁüùñqD••ÐÃÝãû‡¦ä(êá"¥Ór…ÍÃȬäêÔN캭uÚgÈÞË'Äq=8>á#æìÈ•©°t¬_EQÏ8RSf¯ïãÅí·©XIŸ UYÒúéCÃ}8žœ€è‘‹vg(5j¦4ÕÅ?£&¤©É^í͸¯HΤOêÃñpçøF Ÿµ5K¢22œ…m¯} FöñçxqýúMX´i^„0jEž‚>Ÿ„sÁ<<üøùÏ‚ƒ'ž•Ø6Ðæ­šqñèÛ¹ÐdO):4)ÐS8æ`1z*É™)Á^~“ë"P8l×–Å££ü9\¿è ËN–dî^8"ÂÏÛƒ2pöž5ØL|i¼/§ÿ¶|­5{¢+#ü;ËU¬SÐJ²æ…zòâ—«(¯]¶“‡UÍ öýÔÿú¿[ç†gȟ۽ܼ€OøýooBÂFƒað „éÓ§={ö Ì>}útê”ÉC2›Íxçd¥ßËfy=ÜÓñÕö«e’ê²óËò½û¬ÈB¬¦â»Šˆj’ä,æ¸y†Ž˜µáÀ…Ü ¹˜‡ê”%}ø‚þ‹¥VI˳ÎêÃó¿»PË&µ‡UUÇFúzøO¹R…&[qaZ ?rî‰l‘VY]vyý8?ïÈoÒUÌg¡.=ñi7xÒÖ+Ò²ÔóûðÜ>â`fÈ'ÙÃ#Η\þ88püÅ*L_òÂu}{–TrÖæa†ì©Š÷å†/̪²ÔåQÿ±{*TT‚1k_ªXV‘¾qÐÃÃ?`в7%’¢‹ß‚|9Xªtáa6)¸ªBNþoëñž0aÖã¹^¾ÃæÛzÓ/ç÷ÝÕ`ÿGÑ¿~)ã+‘qÿMü¡Ò’Å_3úÎÛö%cFZ¾l)ô0äñ0õñ¸ÓyØÝoôI1&FMÙ™¡|k»¦õ0PSÁ±¯‡…z!·ozöôé7zöê}éU l­®d÷P§ßú›+ªSç„pCg!bíaƒ²²øâ†ÉAž¼~ËnÊÐ%e‡>#—Ù´_™„)HÍtšÜµ±\¿Ég+¬{É3VEzbfÊ'…‡/HD§ÇøO:[iÀ¾Ć~z©RrÎêa¦ì2)Þ=ÖO8l[FúºBß‘{‹å”B8âX5z †Òý \÷^óRTXìû],½|.<Ì"….yø™xz WØgËšžüþŸ_j³ÖõáÆmR½øëïçò)¼„Óíÿµ{ï¹ôcÞ ³íoâfÝÝ»wïß¿O^xïÞ=èaH÷Œ‡9Ñ+³46ÝøØ»ñ!ƒ‡1ßVe^ÚûÃ’é#úú{ôìÑÃ3hÂÎ<X.»4ÚÏ;bY¦Ô¾¥ôâh?Nôú\9³‡>5Üzx #F|µþJ…·¥¼*íäÁ-kWÌÿìã!‘~=¸}D²J{Êʃñ|þÀöïà⌙Á|ÔÃLù¤ò°LSvr„0p‰F­ÉY<æ¼He÷0SöÐUe;‡ûyxz¸ Fl·Y”x!¼£–f¨±U¢Ó‰ÎÀ}XW†ZW´-Ž'œ¾¸ð0‹ºäaR§pÃÞþ<ßq™÷ÿx!ŸÈþŸ³‡NáÌüvèáîƒê}CSŒzø‡"¥ÓrEòtÔÃUȬä Úü³µ„i„ªäOýøØîšrÔ™EWU•§nû$ÄÓ͈H••?ÇñÉѸGȼT1mšê"[< fò›?“àãÛïó=9ƒã(Å'fFó<8½âG6oùö#§' xØ.´g!+ü!š+qµÚ~,iÞÊH´˜1Ÿø¼)nbý2­¢â@‚ÐÜE‘$oUdЈ#UàáÁ¨‡eLÙCÓ1”-ìÑS0è`‰Âš2ùBü`;Ñ©DwÐÏÅØé늶£ÅQçÙδõðŽrë\U¡ìÌ4zÿý›va/ÆýËðmo~¿=¸~‰‚ÑBÁð7Ó/ÑÑÑï”À†ÎÎÎÛ·o“<¬‚@>#"-Ü7€Ã‰Z™¯PIÎrc·Ȩ²ÇÆÃúŠã³Ã<½B¦,·ZKqýó/áø}ùÖ¬jÊÎ æq]x˜3ŽÏx¼\i;–8c3æ“ÚÃ*]ñöx¾ï¤ã—VFú 9P¤×:<Ì”=d¶âòŒ78”ã<õXµZåâBÐzøÒDàá͹ö£€òäá=¼îŸõð åÌNŸkÿó—}‚f+_àîÓõôúZ÷FîÓ-Yüõ˜Ñ£€íKnݺ5zÔHªþa¨…wßZïêâ£Q+œ–+n ¾V…ÌŠm –0P•ü j0d÷Š‹CÁwú"µSRªŒ¯{{ûN:Yfp:nùùa>þcŽ‹Õ*mÁ–xØÞB½u­¬àû><áðeJº4*›‡ÙVʯ,ˆòv˜°¯ùPPTìãsPmbˆ“f†¸sbÖ#»ÐŸ…&{u ×Êù knåYëûx!ýÃræ|âò&G=<ü¼ L+r¶ÄrQCƒ|ì)’ƒµ’³¨‡ó$LÙÓ(¥g…{ †oËÊYÇ÷ þêL¹ùBT¢=XŒe[WˆZ4Id”\›Ìé½8M…m&Mý&Üñ°’u ®ªPv†ÃÃÿ¶¬æ„.=·>ŒöׯÚï£x½ÉÁ‚ÿ6íàÓgƒé_¸çÖ‚¿,üFž[3›ÍCš6uÊÓ§OÁìãÇ'OþtèÁ555NÎLÛ8äÃò02Í‹ZžQ^,’áÔ¤(Ø7ÑŸã?ì›çrJÀWs¹ª<ëꎙýƒ¯Ï” y¨¸<»ÏwÈò£éU’Š¢“ˆøpb¿¹®PÓ§IáaNUò¢އߤýE:J¹$Ú›ÓÿÛÓeR™¼àâ®/#8È“ËQ™ÎBUzjJ?lòŽk²òô_Çùôü‰ÛåÌù¤ñ°FZ°&ŠÓ£·ïF,«6˲g¨º´0ÜS0p]8¨4ýû~ïÐI"åËxX]vv¼/'hÊŒ •(óÄâx_Žÿóðßÿm9>F(è·ò†áþ¯/:Uçôá~v¥ó¿Øï8n~*Œ[›iyø¤­jÿÄ@á =5ÿ~cÝ¿••ñqÌŸÿìÙ³ysç ŒWWû‡¡‡!ÝÞÃJù•cB¼=<Ãf'W;EQxqãì‰Ãyî=Ýùþ½‡M]z8³Ú€ÛàÜš)ƒ{ 8‚SWŸ)lQ.eš”Ö¨ ÕI‹{{zøý¹XnTWgoÿ|p×ÓÝÓ'¤ß¤EÛN¬ëË÷I<^¦d< •A’¶gvbo¡§'7 ~Ê·FùöÑæ“ÎÃÈÇA¤—gÌw75'Óf¯T”¼0œÛ÷؇øB‘¶¬/dz÷¼‹²ê®{L—Ÿùþ“¾ÈcÒÂð³<º0ܯk[Ÿ&„ý”þûï?ž©/¬þ$>˜ëåÅ M˜¾)µî_ög‰Ñß5Oˆz{rB}µ»äþþ]srr²ý÷tééi÷é ‡!wñsªìôPÿ¸sRXôñðÿ½»¼çç烄9BñlÇï¿CC ïÚüý¹Üø•gJÄrƒ¬4sßÌhA¯¹—* °pè=üË£‡Ýè}kƒžò}k¿<|=Ü-0@Þ{Ôâܽ 'öz¹õôà÷ŠûxÕ±<5,z ó²MZÍüñww@þZuQ~¼ Ý%òOCý󯽛¹UJ««ËKkÍÆçÏžRÆ™ï~„üì铳¡ª¼œ ¬~¤;¢”ŠÅ¢r¹XÔ}ùWÉÄðRB â5@ @ @ @ ȇ†@ o=@ @ ÈÛB@ @ @ @Þüøý 2[#9ñõÐ`žGO^ääá¾Ü¸Ý5È6f]öþÕK¯©k¨R¨‘_3dc‘…öo múgÜ~›K\åw:抽#£¦×¾Ù¬Þéì×\XE!ïòâÓƒxn=>"‹;R$eÚ±âÜ8_NÿÍÙJÂtå…I~œ¾²”¯%{•—¦pb¿Ëp•Zuñ‰µ3GÅ„¼<½8~aýÆÍüþ\Aõ?s,©øÚö¥ ψäL›)$Õ7’.wvÞª¯µÐ LF=,6ƒimþ’pnÀǧE:³ìÊD?nÜ®r ئFv9‘'|\f!ïnÖ$ÏŠœ›¦6ÓâÃùt 9Ëb{M9/3½É<€+® ¸:°íCÞ5s"—e‹»¸ã;äaiå‰éa¼©N啊ԒŠÒWr‚§ž,–üC%ÆßWÆÎÃu òä‘>ü¸½ÕF0­È˜ÀÝX¦7Õ)¯ØYjÛ˜%—‡òƒŽIM¤Ýõ…?ö÷OØnÖ] œŽ©òØpÿè¥Yú7˜‡ÀÃRH÷C^„zxi¶¸‹;ZÝ{SI˜®CîY9±oσ#Œ9O¡Ú€miÑ–œ]3yPßÛÓ; ÏÈ»ÒTF#>)ìʺÏ…ùx¹{óûŽšµ=UjÆVéÊ/¬û<1—ëé% ‹›²êd…ñú§‚„ïŽíÅå"&>7-Ûwc¡ÁšÁ ½;¿ÝÛ—v‰ÿbÃ%©ÁXCq:ÙÙQ“.K ¤üüStv¶ƒë®lûnäa(yÿ¢qñ¡އ;Ç7|ØŒMé•Wöî={ùœaá¾^ž‚¸é߬ºJ É9µzêp!ÇÃÓ'´ÿ§ß,;{Xœµ÷Ó Ž`àê¤R >“’ô¸}×åKèO“:ñó“üñ+æŒårøáï;:Ù~,丂„훿îë v0}-zòüÃñ6™xGoÌ.IŸâ‰ôáHèõwsÛš^)Í¿”Yv õp¾Þžoß«ÏK+óŽÍãóâ¾CH:SåÁß ªÍ& v™ò²bQy aaEYI¥óBèaH÷ó°¼èì”@~ïYG3J”’ò¢óßõóŽüú†Ì…‡ÝzzG­:™WZupN>/~MŠœ95yÉÅ™a<¿áßÊ’ˆË‹/­ŸÀíóm²ÜîaIÞ‘/¸¼Ø%g‹ÕÄ|Vf}Åqó öÕº½§o–TiˆgA—8’UwŸ!›®T¤ŸJɽ0ÅÉÃ={z ‡-;–[Zy`68‹+“e]‡;n™ : ]þw±\¿OÎW™°%ŠÔÅἸݕZ0+IŽÙP¢Aú‡ÿT¤Ûè«. áñWëuötTÙ«£8ÁŸÝPa³²ëÓÝýÆœ–b›é+Ï%òùhʺüµ1\áø•Öƒy«#¹~ãÎUkñ ªÓg„ñz¯Ì–;Å 3–íÌçÙ[bp^n–]ýÄß=`Òe…#ܾòô¶Ì‡íélG\Õ›øé5©–ât”™K#8½æ¤iéwÙ3¿1<±¬¤È¾¤¬¸`ø°¡óçÎÆo= évÖí*Œ8\`3[ÉÅá^ÿmÅ2f÷ô¾·Lf—dh†W*˜RSçÿ4ˆÏ¼#GEÙ/±æÂ‰¹QqU÷€ñgªÉ} È´»ÏÐ]¥ö³XÁ ˜t©\ÒUõZMÕ±/î`™Ú¶D|ãc?Á€]åd:ùSàáõEj­Qš4Þ—Û{¡l£CÄuH¤ÓÚöB‘^çëûC®Ö:{mj'zÕM=åO@t½±X­IÑè¡rûAµªôÙ½¼ƒg¥Iñ ªÏ~ìî4øËÛO§«l‡“_ïωþ>OáttäˆW>ñ÷î³6GãÈ7v=šdš¿«HgÛX™òy'üÛ,ÅéhKŽç †œ¨&œ`בˆ«8iâx©XfÅU¢‰ãÇœ “ˆñ›ACÞY–ð [”\iÛ¦ªâÆÑý›V-›;mÒàÞ~=¸± $ÌæÆmwtÌJ’&s×§W2¤&¾0ÆŸ¹6SDÕ?ìÁäöt ˜p\Ĩ>UyÊù]k¾ž:,ÖÏ£gžã~º‰$HŸ8Ò…½2MAíaþ,¤W§…pz-I©ìª‡A°‰"/Þ Œs¡Zm["Éœ&°³L ¦«o|êÇYW¨R$—ƃÂÜ–¯Ûü?{gâÖÔ•7þÿ¡Yî½ID ˆ¬"ˆ+nµ¸  hÅZK[©ZÁ}WE%²–B¶{³ÅV­­¶ÖÎ;Ó™w¦ó¾3m§ïÌo:­m7 K€$ýæù[šzíTç#¼<–lÌóÄ­Áñ›˜"_<øL&‘DE†'''éuš-I›¢£"r¹yb†M´—ßÃ&`bî÷Ú ÕKж†`:/jyқ|íò"&6?§‡ì<÷íì7}­"åÆŒ»&ÉÄØ”6án¯#ç¦W-`"ayâÞñP‘>ts§x-Z€‘=>ò×Á•JéeG×ùQݼŠÔF'™[.)æ´÷nËâá¡×Ìø2ùHdSóÛ¤L6 k‹™=ltV†>¶±ÖìáÛ·,ôkŠb˜hÄYßð'Ú¦MÞ¬È3Ê~óëÆ7Hs~ØÓ7p»·Úìá݃dœA¢‚ÔԂ˪ÁáTz«Éþp臢Aë[ÝM³ ¿Í­_UÍ@£.+F6:Ð×¼-€ÎMmê“áƒz¢©0wÓ\„ê·³©×P»Ò áÆGÓÕ’;Òe§æ×Œ—äG66lòCßëÐ۩΀ôbŠ»¦°_ž©ðè‹AmdD˜•†úú/¿x0.ŽÙõ5äÞyY¿Ñ·€ÙˆÅ*ôàw:{í„êI~4Ï•y¢¾¡ÈÒÒŒ<ÿ”è ·,î ?Úi²}m–yZ*ɤv/´¿Mã$·Þ ^d—µM3¾ ªêõÞ´¹oV÷ªjÒiŒè]½®ÕËЕA§g‘¿/Ž3òpßè¶Ð¾¡×Ø‚ó݃£M±‹Ì}·U}kØÃJ£³˜tÚ‹‡?ì³2 >y®,’dýÄкOÅ"O+úÈ·ê†7¼°y%¦¾µUæµâs4üÙ\p‘èÉÇŒQ¸p7 Ö·½µæ_;†"ŒæÖß¹oj³ÑÁÞŽwƒÏ¥%¸iL†c”@±¸kŠÙ™…LFÜyÉ­qqz«Í>Ü90±æ×Ÿue½Ã[܈q77öÚ«Ž¡yÏ\dîÎF“ãÂL‰ßõåùsù¤„/]ºø_NŒ@z˜Ü/äÞï>0K<¬Sœ‹ÄÐã¢áƒVUµ•ëÌ;Ø=‰‡=¼×^SiJÕüVæ—ܨv–[÷©… Fœ½ow£^]º‘Kc.99¬ñaŒÍ»ƒèžkŠdƒãêÏôZQ¨2:Éܹ‡)ÞkK4CµP·eÌÅ|“êUäky¥åTÚEß0 ѯ¨HñÃ|U‰4xKáîp¦û,â´ÜD†ªê,æM·47Ìy¼«o`øóà¬f¼G©7Žf5 jHòaÌÛoŽO¾ÕÖšK~°½o8t4·>Yñ&_Ô;!§J¬7(Û.½ÎÀ"³ôý&›ÜŒêòu¾XÐ[—›½¡_ÛQ’Êô\”×£¿ÕW¿ÉüW©‘Œ¢åÒîy˜ïúk*MõëmѶæ×nî4¿ Çjåj©ðbjƒµäX§Ýê HÏ.`°×V⃶åy*þðûÿê3™þð_¿³ f]ØØ’Χ#á×dmoWåé-s·×†";ó0ù5ä&ºI¨{Zò’C0Ï'ÌAÎr3*ª·“ß÷„#7ÄŠhº°;óM,V6nÔ‹/%xÒ¼ ztcÊ©坿 ^ñé§ÊÚ%¸ÉÐkµÖœÜî»ðõ¥ŽŽ2wîas-6­–ã=ÂóÛÌ29Òa‰‰×­#eòN³¼[©ÕOêáÁ>ýW2VÎ÷Fh;lÍÛ9¯û°"NÊ d%ÏyHWZÛÃušÌIô½uï.÷£S¨þÛê Û¬zÉþÌðSâ^ó[õPÉMC¡6¹‘ou…{×Dq1õ Yºóhùi›•“¢áHʲƒêNE<ùñI¹U²~k^\òîÚh2¹…É¿f÷™6~px–øÐm `~Mçm~;y¡“Fó Šßy\ 5Y74®:zÅå8/ŸuU„~|yž‚[ýÆÏ>¹ã(ôð°˜}¥å Q‹ í†âmÇ“ú¡T*Ë/lí[G Îg°Ju·ˆ ‹{I5éǼVU¾î…EÌNõcR)¬€…©ÇoꌓåF†êºJÍßwÔü}÷%¿ï§ÛÕ:²Ï<Ò&ãôuŠeP|7’½Ü±åÔuUÚ¶:z®7Fñp÷`p­Ï¸Ü‚ÚD°—y¥ÅÃmÖÌÇlËüšÎKÚm#“ÚÞ¡êt7³¬2I­“´Zç[«`ƒI§i¨­&=<`ÒϽ­æ{†g(ÿ'f¸'/˜¾óL ›¿§^ÿ ‹÷ǯIW“{¾ûð¢3ÖÿOÀˆ‡ûº™¡WUž4—·¥ï±M<DU"Ùtû[ “Åì­+ÄoM¡Tû,‹€WÊÃMuµŸ|bž±;SVÑK®mŽÙ߬Ÿîm?¹8pݹ.ã3,ÛÉBîð0¼ 0ôvµ·6Ö =üâÎÌ©p™Û ~ùð‹ú›µä~!÷ä0عiçXžWÁ´¸BPUYu£Âh4|þà33ŸÃós{Öëõ•åä!÷ËK}Å€Qô½„´»®úÆå çN=<_Ƚ@î rûNx¥T¬Sá²®ÎΖ&àùBîr_€„àÕdР#¿þÀó…Ü ¯ÄÁfÔÀ³Ã¯2½ÀsdàUî5 ¼Òhž ý<{tÀóEÀ8”ñòÒ›µÕ-ÍMÂÖ’Ö–æÙòLB–üÆõR¼G »€Ù._/¹688ðèÑ—³²ü×K¯ÒnØ¡Ì:j+¯48ðÃ?<žÍ²ü·ûkoTÀ`Ö!¨ªøöÛo›%_~ùe``€|žDÖ‚¬ ìPxQèí¼…"!Ù"õ˜Ï55¸4Ά*™ù­¢"‘ƒ„~Ðd˜$7µºöXæ®kx¯ëI\CUÿ^•sÅœó¸ 'ØÐ˜$6ež,akÃÍŸ~úiTtÿø¸æÀ†˜J÷]¹·Äø÷ŸGÂþï“êwW‡x"4fàâ´õÿØ$s4}_ýõâ… Q‘o¾¹cb(Y acü/>}À+Boç%‹‡;Õc>ñðT²ê.‰AQy²Þé.ä°‡•ÓžóTÊÜbëáŸþXû:Ç+.WôÙß~üÏ?¾’\î幬àáæ°ŸÿÚ±-ÀkÑ)åïÿñýï4Öø°ã/ñïß& šÎGCC=)a+MMM=ÜÚX?€‡gµ‡ÿó»+ ~»ú~vÛ¿ï›Ç˜›yç_¿ýöãÃü&ÿƒÿi ùùO7—zúïèýîW§AÓ÷ ‚ÔoúÛ»øá‡·v튎ŠÔ¨Õàa˜Ý>‘×½f.<}4så<”Bg,ÞvTˆ«­ù¸ÍyÍ ŸSW6yˆLÊ›gß\âE§!ìù+w~¸Ç ʪ\öð¸²y³âNä¼µ4ˆƒPPvðÊ=] 'v.žË¦Sܨm§š{m“Œ+³PÒ´ÝŠEt«'ïO8×ÿº2–Ṋøû¯?ý¡2Žé³Íôá ]ŒdÍ͸ýÏßœM×ãî;± c’’6}ÿý÷äÛï¾ûnã†õq± ïÝ»ž…_OàÕ@;ìaÕ˜Ï5Õ¸TΆ2ó[¹E\Ù¤¸¬¯Ý=0Þæ#ÝrY÷µ=Q=$³¾×œÕpßRërèÊëÔwÕá !ÑU{a+u{Nz˜[HbØÃÚ åŸ¸!„—rºV©ì®?°€åAáp¢3 qE{ùÛ|Œ“/RIb[æÉÚÊ™‡þsÓ*O$ôèýÿöÏÛ{æ2Âò¾øqd°öoÒ6siÛ7M—‡3ö¤¯LXñßÿý§‘O¾þúë„ËßÍzgŒ‡êààŸ ¨WmÇhŸp¤‡¥æ8òëq5ê‡^»³—^Vj­ÉEÅ 1,ü˜DM¾;ÍÕ$ºæ¬y({]‘Ød- q3+BÊc 9äá‚¡l™°!Ïø K4S×éhÔ# µZk‰©o~oj©‘mÛ2OÖV- ~ü7Ùž@šçêøÏo¿ýôÁ‹)ÿýF‚ÿaXÇÁVüþ''AÓåá?ÿùÏß|óÍÄÿò—¿ŒõðM8øà…ò0²¯S5æsMõzKØ®‡éü½õº¡˜=5kØØ¼D*ç¶›„ž``‘WºUÃÛ•Õ'ûbOåaZpúÍ^kPÏ•8uºÝhykhÏÀX«®÷L·‡g8³‚M›»³ùO¿þ`Jòa²ýi¬lcÊ~ÿ'AÏrJxf¿‡‡_[¤Z»–Y“;ó°Ý$ÊŽ}Á(+þ†ld» áÞ@ÖSy Ý7¼!³‡Ñù¦!ž~ÿúãï3"1šråÿoèbÛ¿îì b„Ÿ{h3øÐ³Â“¹¤í›ÇN‚¦Ë±_ýµí „õñÇ?þñOúxÀÃ’=gÃ1,²@<ÚnHöe<¥‡³Ÿ™‡ÿó§¶·ƒi´ ‚GÿñðókãY¾;ú°¹Áä¥üOgAÓ8>œ°b9iã‘Oþð‡?¬X¾lÂø0x^F÷ŠËbŒ¨³.{Ø<>‚z½qmd|¸a?ŸF–¶-óÔ<üÓ7âwÃP:?½åëqƒ ÿùòB$k^î'ÿ²™œÆM!þþ«Ó izÜ»w/.vᦾûî;òíßÿþ÷õëÅÅ~öÙgàaxÏb„©íxxüt7ÆâRÉS{ئÌ5¢¦T.uÌ8‰#ÿô‡ë g˜0—vüõñÈŸ—ׄxÒ©ˆÿ­ùŠoÆý¯Ù~Ðô=šššFþO'¶ÂuºYŠ ž=ZQa,ÃkE1þBôð?þ8[îóSpù2)á¢Â‰A?þûß- 7áx› ßÌ4ºÖýa(™yU$WñΆÓ[øLÿÔ²nã YÚ–zÁÿL˜šû"ßoíÎÛvï·ö×oþBþ¦Àá€TxjǪ0_ÕÍ‚ùG¬ÎºØÒû¢–¶³µq@ßûøñÏ¿ÍæÇãŸÐiEÂ&8üpû÷³ð,‹¡QÈÝ¢Û¦oÿö¿¿üòxÖø—ÇÉ’ßî7É»EZ…Ž+f#Z¥LÙ#VË{f/dùµ¸v%¸‚AMè…“ ºd( `& «W>½÷ÕÃ/Ì|ùùÄçÏïß#ã1¡¹¦[ÂJµBþÕ—_Üýxð£“#ÈÐß}ù“Œ0ÈDŸ~r÷îGƒõ›œCªø³»wÈøvòQ5¥¹cQ9Ícþ\¬lŸ‹x'UõL¡HšöKQ²¯ƒó¹ºÊ|ïèõ•–¬dÖ›-7è&É jŽf¤+4®'q ¼î]ó=ü/›sô“ĦÌp|À+€^¥l®üîáç·ú®@Æ$ã“©ìzØmŽ›g\N—jæ=ìjV]×Ìëô•N»Óœxø)™¹2𢎠×Þ¨øòáƒÁ>ƒ+C·¥ó J&Ob-¤\pfÇb¾†°ç'¼y0•Ç ÊâO4.A¾öfÅ;ôÖÒ /„‚²ƒW¦_ÕßÏcÓ) ßÈ­'µ¶IÆ•¹®ŠÀ«äa£Î&ñð«=Mû`>kÏÉÔ<¬î,Üà‹r–,mQã]ÍyÛÂ0,æ=v<ìîñ6¾.–õˆ‹Ó£0?£N;®oébuGÁZê»*÷z .ª>ŸÂGÝ^£?‡É !¼”S5 EWÝþh–Å‹•q¹^)–íƘ ò;ñ1I ? ¯ª‡û :W˜ÌÃ…¸VÞúÞ|Œê½éŠÈ8ÖýM{CVÂÅÎáõ¡ä-™({Yq71ÑÃöïïáÐÃ쥗†”¨-ݰ£ÝªI)5Ò§îÓù™uÃ+OIjV³±ìN¹‡í&Á{ÎF0°È+⑟iý_ì©L¾Þ7¼!‹‡£óÚàa&xؤӸ—.y˜”‰¤æMÆÛ~to´?1¾?\³ÙzúÃÓåa\r&Ã"/wÙô‡“}Oéálð0“{ØØ«vW=¬U{®¥úS¨“F3>¼Âv|8c.Š¿*&fÊÃZqÙBŒuÆe“…|'õzãšxx|¸þ>þ,=l[f8DàÕðp]õúM&ƒ¡WíœÁ>ã@Ÿ‘ŒïЇÉ°¢h£eŽ›Çè|‰«‰>(gù‡¥­j\Üœ—†¡UjjÆCÛ”‡+ÀËA·75ªn|úÉÁ>½üÄ&ýgŸÜ©­ª ã“©\ð0é4QQ"‡êaó?¼¹`ϪH_”FE|‚ïÈ)Sª§eþ°#ªªÌe\…ê·µ¼Øµ$*£¼öTJl ‹JE8‘ëvˆg1BˆTv<<~:‡_ÒýÔ¶)ó¸^RpiwÕõ²ŠÒ-¡üäö-’»4ñY£V”—‘1Éø¯PûhD…± ¯E8*Ì`—˜uuTW”_È;}ôð‡Ž CÉ8dÌ—û.ĺÖýa(™yU$WñΆÓ[øLÿÔ²n#*̰ŠÕòq[kkC#ÈP2ÎË+xTxjǪ0_ÕÍ‚ùG¬ÎºØÒ  Ï£†0¨qG¡ÐDð ïU–]ÔT·47 [[HZ[šgË3ÉÍÚêʲEwìJf# ‰¨üZÑààÀ£G_Î^ûË®+% bf5å·ûøá‡Ç³ùA–p ¬ ìPfµ7®ûí·¿Í’Ç/¿ü200@>O úöÛ¿“u ¼„¸r3X'Œ¿ÑëD#ˆš£iÅn¸-fÌ¥3”JfmÛºx/q{[f‡–zÁO?ý4Qxÿ0}8î–þìÈðׇaAYwþõl%ü믿^¼p!*2âÍ7wL %kÑÒ €ï,~BœhÇár]/µ‡Ÿv¯Ma3{þåÿ>)ßÂ¥xøØóð¯ÿ÷ÑÑ0Ôòì=ÜÐPOJØJSSxƒ‡_Nÿç¯ÆòôL‹K§Ùñð¯ÿ¼}"šåÉCiÏØÃAúM{÷?üðÖ®]ÑQ‘µ< Ìv¤ù«¼©ÌegÛ –3YÅÕ×}©ìUgÛôOàa•¨";16€‰PéœàÅi'C‹Ž¬Q.8³c1ß‹NCØóÞ<˜ÊZ‘Ü>7yoÚŠ„Bgù/JÎm’Ö­-:CçjQØ÷°993æä‘Œ„”BgÄo=Òª¾O#!,~71–ÇB(T–_غ=çºÌ[,[ëňڛºÌ¡3xk/vUÁRìü] Q~LÄÃñäÅ'j”[3Wʯemˆâ2©îtŒŸ”[1¼¾¤ãܦ<.A¾öfÅ;ôÖÒ /„‚²ƒW¦_ÕßÏcÓ) ßÈ­'µ¶IÆ7š¸1•KÅ"lÖ væáÞÉ fÍÛzQ~ëzk‚‡ý×Ý3 8ѹ-Ç#ÏÒÃwï܉]“”´éûï¿'ß~÷Ýw7¬‹]xïÞ=ð00»Qµ[á‰òvÔËU&EuFÝkÙ ‰jêýa¤vW0ƘŸ–_#“‹šÏnácž Ç[ǯϥî(XËA}Wå^oÁEÕçSø¨ÛkôQ»¹S}×ç–IäRIéÞ&Ÿ~SëbØœÜÝãm>|],ë§Ga4~F%¹¸"ÅeÇg5©ðžîëÖrtÖìa7VlNU§¼¡¨®[ì° š®ÒDoFàÖ‚ÆnªG\–½‚M z«–ÌÜ :³œÍŒÛW"Qâ:‰àÂ.ÊMÈ6È“y˜¬ÂK9U£PtÕífyP¼8Q—ë•raÙî`Œ¹ ¿âµ×Çyøçïï}úÍ¿þöÓk&xø×}šãqô£¿=¼ùL=œ±'}eŠÿþï?|òõ×_'¬XþnÖ;àa`¶£ï8f6I® .;ÒÓ3þt»Òî¸Äøõ­x yXßq<–AŸ?:ªÐ#ØÊEý¶˜õn#‡Þ¦¬y({]a×ðŠä‚w)6v÷\|A®:­.]Ìd„ëVOÁÃ쥗†„¦-ݰ£Ý*•¡ãX †ÅœêÇ‹Žô°;gå5|¨VÁ(Ê‹c2—Œ®ö.¾Ï0g®V©k’üQ^flB«:n'õ°güPãE§¢Q€mUKL]Ó»óPËŽ˜&Xm¢‡ÿßý qÞós~øõ?_>cÿùÏþæ›o&~ø—¿ü< Ì~”⣋Ø Ń¸Y÷DãÃxé6·§N>Š—,a#Áû›6rÀ{ÎF0°È+⑳ciý_lÔô`kÖ*®DÆ·pÝÃt~fÝðú5’šÕl,$»“På˽ }Mr“ÓøYõÖ$Ϊ`i%™àrþ¡¬Ìíë×IJ)sÐЃ"•Ê(¹²É×ƒî½ iONaµP;\ÂÉr{Ó‚È>¼5ȲæoÔiëh’ƒ5gÂÃÿþ¼`gþ‡¦üúÛoÏÜî<ÀÃÀìÅØ•·”5Ç×?Ñu:¢'/‚1±·Lá¦ÖHmä hߌ²â+¥6"Í ´¶½NgñppV;í.ƒNÈ ¢˜H詉ý|³‡‘ù›¬³¼œUAÕ^°%õ D.ݘºçÈù+çcèÐBê„Vxé@ÊÒ0oª»›ê· %ç†Jã4·'ô0ºo*k¯O¿‡|xu±OȆï-wŸ¹‡¿þúkÛA ëãüãŸþô'ð00û§CˆË·p鈯Bñ}ã‚\ý$ýaeñ"O$äˆPét".9Ža‘6W‹¤õɾŒ™õ°óþðˆ‡UA}c#—ÊJ8Ý2”¹FT´öðH+É%5ç&òªY¶Îä‰=œý\=üŸÿ*±7<…Æ”ÿþ?Ïf|8aÅrÒÆ#ŸüáX±|Œ³/MæÑñ¹u-Ùá ªÏæ‘ÁÛ©xX×v(ÃâN C¡Šö÷ù(kQ©Ü1ãÃï„ ^o\žQ€×À§Ñ'õ°V\¶cDy2ë;ŽÅ0°ØÓ#e³ïaÇUPš>y£R••'ûº#!Ùª ƒím9á{Yä¬Až‡6ÚSÛÌm{Öýá{÷îÅÅ.Ü´qÃwß}G¾ýûßÿ¾~}⢸ØÏ>û < Ìî iéN•µÏ¬;¥àýùtºßæŠbêó%Äå)þ¨gLÆEL.î(Ha"¡»+Í3µÆÌ—è¼ºŽƒù¿~¬² ®¤…3Ý_£gNæa³TÑ =õâv)NLÕÃæùÛ0Îòœr¡F%•ÝÌÛÅG}×(¤c<ì¤ Úú]Át$ìí+b…‚h+9‘ÄCÌÓ<öqBQ´Æ L˯•á¸^ÖX¸+„ÉŠ5_ëtÒ ÏÈÃŽm¶z˜|¨Õªè¨È·víúþûïÓv¾¹ :J×Û ãÃÀ¬¿ÁË›<:º¯~èr¿FŠPæ¦–àš©Ï&„ÅY¯Çø3è&7,1«@ª²;¸öTJl ‹JE8‘ëvˆg1¬'øÎ‡Au§"žÁq•wœç6ÁÃãÏôݰø’î§ö°m£‰¦4ø…õ0ùhjjù?PØ ×éੇ¦E…± ¯E84Ås…ôð?þ8[îóSpù2)á¢Â‰A?þûßàapŽ®uŠDf^É•F¼³áô>Ó?µ¬Ûó¼=ü?¦æ¾È÷[»sç¶Ýû­ýõ›¿€‡`²°TxjǪ0_ÕÍ‚ùG¬ÎºØÒ Íò¼élmÐ÷>~üóo³ùñøçŸtZ‘° v(¼hØÿ'àœ× eFÐ(dŠnÑíÓ·ûß_~y<ë üËãÇdÉo÷›äÝ"­B ;€ÙˆV)SöˆÕòžÙ Y~-.‡] ®`P:Bád‚.JƆ˜ HÇêUøý{Ÿ?øì‡Œ Í0ÝVª²G?¿ýÑà­~£#ÈЯ~NÆ$ãC£L#2Qǧwïܾ58Øgt©â{wn“ñíä£j:JsÇ¢ršÇü¹X+Ø>ñNªê™æb»x[lGŒ¿aõD#ˆš£iÅ 'ËÄÀÑ€ èUÊæ:Á£‡ú ®ðÕÃûd|2•]»ÍqóŒËéR½ðv'veÙD8Àpmd¸öFÅ—î÷›ô®ðåç÷ÉøvF‰-ö 2éæòB=x< ÀT=lÔ¹‚s3£¿¿£z-¿Ð©´ëa#Þ|5sM´F§Ð¼‚m?\IŒ÷.Í_åMe.;ÛfYaŠP\}Ý—Ê^u¶MÿV‰*²c˜•Î ^œvB0´Dàøåºgv,æ{Ñi{~›Sy¬Ñåkés“÷¦­ñA(t–ÿ¢äÜ&9aÝúÐ=TéüC- û6'gÆœ<’‘âƒRèÌ€ø­GZÃsNañ»‰±<B¡²üÂÖí9×…[—¯eDíM]æÐ¼µ; Žª`)vþ®„(?&âáŽxòâ“5Ê­™+åײ6Dq™Tw:Æ OÊ­^œ×qn»…y&o¿äŸº£`-õ]•{½UŸOá£æu`G<ìæNõ]Ÿ[&‘K%¥{c˜4~úM­‹ýasrwŒ·ùðu±¬G\œ…Ñøu–ä⊔Ÿ]Ô¤Â{º¯XËABÒZ³‡ÝÔ«`åÅ1™KFS|=žaÎ\­R×$ù£¼Ì:Ù„VuÜ ð]€ÀÃF½Ö\ð0Ù‰­ÉšG£q7•KÒüH~®I¥©M û¤ÔL\DC)>ºˆM¡P<ñ‡›uO4>Œ—.aÓx{êFçoà%KØHðþ&…‡ñž³ ,òŠxä·@Z¿Åõ0-ØÚƒµŠ+‘ƒñßm'\÷0ŸY7¼ø—¤f5 Éî$TDùr/$h_Ó„×›=LãgÕ[“8«‚¥•d‚Ëù‡²2·¯_ȦÌACŠT*£äÊ&_º÷‚¤=9…ÕBíp 'Ë €çíaÆ\ò°–PWïâÓ)sSKzjG<¬ì<‚2c+¤£©z÷òÖÊrÉÄ‚»ò–²æ¸3¢ó:ð'ºNGôäE0&ö–)ÜTRû£V´ï FYñ•R‘fÚŒÛ^§³x88«wÝöÉ%5kI“e&äQL$ôÔÄ~¾ÙÃÈüƒM–$N« j/ØŒzÐ"—nLÝsäü•ó± 4ô€È<€Ch…—¤, 󦺻¹¡~ Rrn¨4Nsƒï¼6ôª]Á5›‡"kÞäÑi¼íG7ñFûÃãûÃ5›ýíö‡5âò-\:âë‡P|߸ W?IXY¼È 9"T:K΄cXäå.›þp²/cf=ì¼?<âagUPßØÈ¥²N· e®-@‡=<ÒJrI͹ƒ‰<„j–­³àð°^«rW=Lvh{®¥úS¨“F3>¼Âv|8c.Š¿*7>Là¥É<#>·®%;œAõÙ<2x;ëÚEbXÜ)¡a(TÑþ>e-* •;f|øÔëkÃ3 ðúø4ú¤ÖŠËbŒ¨3Oæa}DZ{z¤lö=ì¸ JóÏ2oTª²òd_w$$»S5aŠx[N8‚Æ^9kø.Àsõp]õÁ>SŸIO~÷ÓoÒ˜ d|Wê»®@!ãa'UÐÖï ¦#ao_+D[ɉ$bžæ±Gˆ“;Æ L˯•á¸^ÖX¸+„ÉŠ5_ëtÒ ð]€ç‡A·75ª*ïݽÝoÔé4„#ÈÐ{w?®©ª ã“©\ð0©8QQ"‡êaó?¼¹`ϪH_”FE|‚ïÈ)SŽs°h ¡ûê‡.÷k顈y¨×L}þ0!,Îz=ÆŸA÷ 0¹a‰YR•Ýùõ§RbYT*‰\·û@<‹a=ÁwæaBU•¹ŒK£Pý¶ŽWqÍÖ²í]E6Y6ßÐUi'Zäĸþ°³*h¤Í‡7ÆpªùóÐÕ;s ²CÌXó‹¦[phó>‡Au§"žÁq•wœçÀs—vW]/«(½¦Æw>$¹ûñÀÄg ./+)"c’ñ_æш c^+Šp86xv]bBÖÕQ]Q~!ïôÑÜA†’qȘ/Ù]ˆu­ûÃP$2óªH®4â §·ð™þ©eÝF86x¶*VË{Äm­­ uŽ CÉ8/á­à5Rá©«Â|YT7w æ±:ëbK/<Œ ÆA†BÀK€¼[TYvMPSÝÒÜ$lm!imi†ççûlåfmueY‰¢» ŽRx‰QHDå׊=úxì/»V¬”€Š॥¦¢üÖ`ÿ?üð/äƒÜ5ƒ}än‚c^Vjo\ÿöÛoƒÇ üøöÛ¿“» ŽÕÄÅ;©:bü=NŸ AÔÍH+Vع´¢ûê{[—†p™4*ñòKHÙWÚñ»ÛÜâáñ‹y=‡]ï¨åÁÃðƒ‡­²žD˜1çd6ŸëÛD¢Hä±V=x< ððl@š¿Ê›Ê\v¶Í0Ô½|Ý—Ê^u¶MÿV‰*²c˜•Î ^œvB0´ªÔø^gv,æ{Ñi{~›Sy6+€Óç&ïM[âƒPè,ÿEɹMrºõ¡³r:ÿP‹Í˜Ñ🆆îïT9q;3æä‘Œ„”BgÄo=Òªº;"Y’ü] Q~LÄÃñäÅ'j”éÑÇrßZÌó¤SY~áß¿*]­ÆIÐp5'Û®ý˜‚‡qg;Ž¿›Ëc!²„aëöœëÂ'ÝAö*5®å%cö#Þ|5sM´F§Ð¼‚m?\Ih&ms¥üZÖ†(.“êNÇ8¡ñI¹Öµ/¥©\*qÙÁràaððKŽªíÜ O”·£^®2)ª3‚è^ËNHTSïk$µ»‚1Æü´ü™\Ô|v óL8Þª'(uGÁZê»*÷z .ª>ŸÂGÍKŽxØÍê»>·L"—JJ÷Æ0iüô›Zg½2YËž`Äâ·hË3Å­b…ÑŽ‡Ý=0ÞæÃ×ŲqqzFãgÔYó,Môfn-hìÖ©zÄeÙ+Ø´ ·jµÃ©Üi¬øŒ‚vIGsþ¶p xGàB­‡l×I L©?ìhÇiÄ)þ(;>»¨I…÷t_?°–ƒ„¤ ´“ì •²mù±+WnðE9Ë–¶¨ñ®æ¼maóÞhÙ­»Atf9›·¯D¢ÄuÁ…-\”›$C< ˜È6;ruÙ‘žžñæUSíKØ»fôš›Ç‡õÇcôù¶ënå¢~[Ì–³xÖ<”½nd‘q\ðN ÅÆÃîž‹/È5CgÄ¥‹™ŒðcÝj§gÇxË¥´X?ê²0¤J¸ó—n}çTDiëaöÒKCø4¢¢…v´[¥2Šòâ˜Ì%£+¤‹¯Ç3ÌAê¡T¬Ø“’¡"Í‹§£œ5Rb² 1¶»]g-àÊu:›3»;ÎÐq,†Tâ ¡~ü^v¾ƒTʇ­ëË'Ø®/Ÿˆ²—wNê®®IòGy™u2—PŠ.bS(FüáfÝã¥KØ4Þž:ùH(^²„ïoRØ|ñž³ ,òŠxäôSZ¿Åõ0-ØÚi´Š"‘ƒñßm'&¥Ô÷Ü,?ùÞ[‰‹B½(îsæP½Ž·È‡=LçgÖ /"#©YÍÆB²;‡*¢” .çÊÊܾ~ML ›2 =8¼.j;Âl®)N d’ [ÛݮӘòø°G”/÷B‚ö5ÉÇEžl9¨”}ÒüH~®sôb¨¦69€î“R#uÒæFÉ•M¾tïI{r «…Z x< ŒbìÊ[ÊšãΈÎëÀŸè:Ñ“Á˜Øy£pS‡¾˜Öﯢ}_0ÊŠ¯”Žd"fÚŒ;XÜõ«Eª.Aî.ÕÍkÅe{S­l–Wµl F=è‘K7¦î9rþÊùX:º93®X<’­¶nW⽩ªg² [ÛݮӘúuº ;ŽD1‘ÐSãOj&ÝA*eßÃÊ΃!(3¶b´ªÞƽ|„µ²\ât)vB+¼t ei˜7ÕÝÍ õ[’sC¥ƒ‡óˆbù.ñõC(¾o\«Ÿ¤?¬,^䉄*N„À%gÂ1,ÒærŒ´>Ù—1¶L¢8F§ÛÏsÔ ê¹TVÂé–¡ òôyjãa,úl»q´¦opÞÞùdA“zØi LÕÃövœ£þðd;ÈA¥ö‡#Æ÷‡k6ûö‡yx¤ärI͹ƒ‰<„jù!ƒ‡_u¼4™GcÄçÖµd‡3¨>›G†.§âa]Û¡H ‹;%4 ÿ½¢ý}>ÊZTÐEŒW|'õzãšxxt´þ>>©‡µâ²…#êÌ8këvÒ=WˆŒc§Z•Ä1½–]rÚ¶ø™7ê%Yy²¯;Bž>y˜â½úªrhs²æ·y¨ï†ZÙ¤A“zØi LÍÃöwœ¾ãX ‹==²#†˜l9¨”mËO^a;>œ1aÅ_.yØ:šÔ–Ž ±—EFð0xø‘–îäQ™Qû̺S ÞŸO§ûm®è!¦>_B\žâzÆd\Èä⎂ôòôxw¥zÂuö«ë8˜ÿëÇ*[q±àJZ8Óý5zpæd6—Ñ =õâv)nS6U뙕^ˆWÜîcE-’^µR#®¯<º%ÌgÁþz™É©µõ»‚éHØÛWÄ ÑVr"‰‡˜ç-ì±™¹ÁM̹Þ-íh<›<cÆj¬“ É=쬦âa‡;N#®Ø€q–ç” 5*©ìfÞ.>ê»®@¡v¾ƒTʶåÅåcöc¢ÊYþai«7祆ahDF•ÚÙo¡(Zユå×Êp\/k,ÜÂdÅÚ¹. ¿jwPy“GGC÷Õ]ÂÖÒCÊÜÔ\3õùİ8ëõ݃Âä†%fHUvçמJ‰ dQ©'rÝîñ,Æèh€#ªªÌe\…ê·uÜi,!,;²*’çQ<Ü=^sãÞxûB½Ôhÿ¿!6>ÔH›oŒá"TsiCWïÌ-Èe0c/õiwmŽá2©4¯ÀE;ÆLŽu䂇´€Kÿk&¥Õ®”8Ûq„°hïê(_”FVÍ7tUÚ‰ë¼hg;ÈA¥l[¾¼xL¥ðæ‚=«"É­PŸàÅ;rÊ”êIÛ¼[phó>‡Au§"žÁq•w`þ0xxÎCÓ¢ÂX†×Š"ü…*•“öMû=^„x~7Žp}¾Ä?þ®{‘?þûßàáÙ‚®uŠDf^É•F¼³áô>Ó?µ¬ÛøÊxøElÙàáÿùæpÝ‹üøë7Ïž°TxjǪ0_ÕÍ‚ùG¬ÎºØÒû¢rFûÃ/` ¼ðîlmÐ÷>~ü3èîÅ|<þùçV$lÅÀ´c;.ý‹¡QÈÝ¢Û¦oÿö¿¿üò¼÷â<~yü˜Ü)·ûMòn‘V!…¯ ¼Äh•2eX-ï^@È]£Ååp”0ƒšÐ µ¼Çd( `& «Wá÷ï}òèá} &>?øì‡Œ Í0ÝVª²G¿¸ýÑà­~“#ÈЯ~NÆ$ãC£L#2Qǧwïܾ58Øgt©â{wn“ñÇg¢/fÒy;›•#*:÷ó‘9nœUÅøh´ŽK1(’Ý)¹žÈAB³tS+jwÅ"v´[õ ÛG#^|/ué<¡Rïà˜¤¬sÊç>>C5G3ÒŠ•IfÓ˜²²µ^ÈüƒMvÖ6š´$Á ËmÑûÜ6[øjÀ³B¯R6× =|0Ðgp…¯Þ'ã“©Ææ£ Ãа³øÐ'ê¶óÑI¡û%7(FTP¾Þ›67­Fû„¥}æVum f2÷)n—Èõ¸¨åRf‚7Õ3î½fÅsU±¦ëZ ʈ:+'L'¶ÅÖîd À ×Þ¨øòÁý~“Þ¾üü>â(qoCz0Â^[Öm}k”\MðÄæïŠóFƒ²›äÃqöðΆ ‰ivxX)9»Ô ñO+m:¢ªŠÔ¹T$zRׇ˜ª‡:Wpäa“¼r‹/=(]`í몫6p±àìëg3Ñè“BƒùC¼çl$“µ¨¸›{*M¾fÆœ<’‘âƒRèÌ€ø­GZ‡{›FyÍéíñÁ^t:æ³`Þýa與xóÕÌ5Ñ~Bó ^´ýp%AÚƒhȦ{¯)!¬“@D§b07ΪëØˆ¡ãD4“ýz)ùc¡”_ËÚÅeRÝé'4>)·ÂV¶ðú}Á4FäQñ8í«Ú ¼p]¤×:.†µ^Þ¬¸c‡ÞZä…PPvðÊôK¢ºã;ãyl:…á¹õd£v¨úŒèc¹o-æyÒ©,¿ðï_• oÑ(äïJˆòc"îˆ'/>ùP£œ0iÚ/E!ns^3C甌— nËL]Äó¤Q˜Üˆû å*ׯ%Æd¼;‘K÷^{C:\kuûÅX{ñ9(fÌÃ}†^WpèaMWéR&3ò”DM¾•·¤ó¼M2á锽ä²e¼QRµ†ÍŒ8Ö­VMð°»ÆÛ|øºXÖ#.NÂhüŒ:­ÅxV±Qîšc•B\T•¿%u{ µzXÝY¸Áå,?Xڢƻšó¶…aXÌ{䯀¬)Íß¼iËH5^¶’ãþ}î®ÜÜ•U.ñòŒ' ¢3ËÙ̸}%%®“.lá¢Ü$|ìD¾ŽãQ(•ÿN]¯“tXŒáz!¼”S5 EWÝþh–Å‹•q¹^)–íƘ ò;qk4w+>£ ]ÒÑœ¿-C#Þ±ä@6i¢7#pkAc·NÕ#.Ë^Á¦½U«×q?>ìæîÁZšuµCÒÙr.•,OÔ{7µ.ŽÛd«lŸKç¬9ÁéÊ‹g±–_á[3æa“¾×:ò°ï>Î䬮&{Pªæ£¡(wãuµVÑžÌðy£–T.Ș‹…¼[ß«µãaöÒKC׆4¢¢…˜µÓÛÛ”5a¯)ìúîËoì   CA{CVÂÅÎa-È[2Qö2Ò±æ®8cÞQ¡ÒD:y'Í ÷bY®{}<œîQ«Ô5Iþ(/³Næ¤e´u»‚¨HÌù'æqR k½<ã/È-õ2ŠNE£Ûª4ÖfozwÊY_ÙcÆŠ=iùý²ä1嬩FQ^“¹d4sñõx˰ŒÚ¹‡Éž‘Žä¶g.êýz•tʶì/šÏ:ë©!»¸È‹½Ô\/øÖÀŒyب׺‚c«z3ùÌÀwädß)ŽÅ^Ul>Ó×Öí ÄÒëd†ŽcQLîöZ©ÉއéüÌ‘n§¤f5 Éî$Ùù(&–?ríO+©^Ífš=LHó#hø¹Î‘ •¦69€î“R#5I‹×r˜‹/‹Œª–ãó9Ñs2Ù«K»Íb dFnÑ›‡¯¯lòõ {/HÚ“SX-ÔÚ;×Ö6¼MzxÁ¹vÇvZ s½h#5&IA‰:Ýf°^mËÀX«Ê%–hhä±Výpêªõ\ÄÜbÖ1j™àrþ¡¬Ìíë×IJ)sÐЃ"•s#cr»±ÎáímOÙÃZ¹üM±:œüq\êéPó(`f=¬Ó¸‚›ä•[¹Ì˜üvEi‚7+¦ ËÒw’_ßì‹Î?Ø$+]á㽪Rª²çaÛ9l’𵤇÷uJÑ¡”± T2² iãv?O³‡•CPfl…ÔöW`/a­$ͦÆ{r×_'º//õ ξYû ÜUK? ó Þßd-9¡^:²4Ì›êîæ†ú-Hɹ¡+ò×d!Fåï8.Aè¤2‹NÃZ¯}Ãõ²x8:oÈêc=ÌŒ+é‡#Þ›ªzLªö‚-Á¨= réÆÔ=GÎ_9Ë@CLæaFìÕ®ÑÜnønú]˜’‡ÉN{–¹Ó^.1J ¼¼Ö‰aPfÔÆ^µ+8ó°F\¾Ü‹›XX™Âõ ;‹“yžá¹-z­ëVéZ>ÃX+FHñ›ïQmLJWØÌfÌEXñWÅfWèZ„y$¿Îõ]b>•&ÊWû07†0’o¨íN¢nË GÐØËã.Bá=ùK½èþieݶóÖðò­<*¹ß<7ÌY1¦àaŠ÷ê«Ê¡Þ¸¬ùm껡V†K΄cȼ#BåÈìëd_w$$»Óü» .[ˆ1¢ÎØó°‡÷ê‘iýN”›tSîâÿ8l²µtøE9¡žþo\äÅ(`F<\W}c°ÏÔgÒ“ßDçô›ô&ßÑ]&Ìg²…Jóëæè%0}ûáHÌŽÌ5RNÅÃæ ›¹¨÷ò¥Í¸XPðæ|¦ûœ‘ùW}PÎòK[Õ¸¸9/5 C#2ªÔVàu¤±ÝÝèG,£ÁâóñÌ9næSl«KEk|°À´|Òv¸^ÖX¸+„ÉŠ=Ý>áÿÚª¶ ‰\”±=çªP,ÕÉ…7Ïì\äIa/ÎnUÍ—pXŒ)xØÍÊM̹Þ-íh<›<cÆ2K^[¿+˜Ž„½}E¬Pm%'’xˆÛkô =B|¨•Р=õâv©¸|ü| ªïÆc7dòކÓI|ŒµüÈß:ô°M¶8aÝwј;JõÙX./ Ì5ÞÞÔ ¨ª¼w÷v¿Q§ÓŽ CïÝý¸¦ª‚ŒO¦²Ÿ¡¢*Õσê³~Ì0¢á>ê»á¦\55›gç6]z{E(¡!ìù«v}¸Æ›5ò?¼¹`ϪH_”FE|‚ïÈ)SªmF’S¹T*/£Îb~UËÉ0º‡çÒRÉ𙵦[phó>‡Au§"žÁq•wìÿ¥NT•›º:ÂMw÷  ÞÁ±[Þ»$ÂmÎÐc ¦lܵ9†Ë¤Ò¼í™¬‘6ÞÃE¨&7tõÎÜ‚ìP3ö²yàPUe.ãÒ(T¿­åÅc=Œ…g¿·Õœ…é¿`ëá*•f ÿkÍÖ:J£žF¨¾ëkdðe€—vW]/«(½¦Æw>$¹ûñÀÄg ./+)"c’ñ¡Ñ¦ Ù“ÝjãYaþ Åæn¯RÞ€™í²®ŽêŠò y§æ~è2”ŒCÆ„»¿Öȵ„Tt~ƒ?;úxÜaž…ŠÕòq[kkC#ÈP2Høñ°±+o ÛáDl;Ó¢ƒÝÏì«§! jÜd(4Ñ´3t?{@ãðÒO!Ö µ¼Çd(L˜!HÇêUøý{Ÿ»GÆqt‡à)$¬T+d~qû£Á[ý&G¡_=üœŒIƇF˜Fd¢ŽOïÞ¹}kp°ÏèRÅ÷îÜ&ãÛÉǼ}ä¿`îns(TÔ7dQÊ…úéJè䟿®þ)˜ jŽf¤+4/ü}uxõЫ”Íu‚G ô\᫇÷Éød*»FGnJ©Uíµ¹«|©hÌþFÝ yØEÆ-3ð‚ [×ãè7é]áKGëqLð°µ0/ ¡ ¯bpæa£Î¦æaËŠrTÏe–uÛÍKXFíM]æÐ¼µ; *QEvbl¡Ò9Á‹ÓNÔG¦ÏMÞ›¶"Ä¡ÐYþ‹’s›äÄxE[ÜŒ9y$#!ĥЙñ[´*“¦ýR24`Bç”LžÄ²]£\pfÇb¾Ý| ú„7¦òXABŽfÊÃ}†^W˜š‡U­§#z°E_–%{·L"—JJ÷Æ0iüô›Z;v÷Àx›_ËzÄÅéQŸQ§Õ:YUÓquGÁZê»*÷z .ª>ŸÂGÍk‡˜A›ô½®ðÐUZI]éû˼©Ìå'„ÃKö¸sV^³.7©ï8Ë Ïmèlå¢~[êåv=ìî¹ø‚|hµ ®ÒÅLFø±nµ©²—^Z"S#*ZˆaÖò8õ°Ý$½æ%ãÙë »†—(¼H0£6êµ®àÜã·Ïu›C%ÏóÖí<2¼ÚšÙÃ4~V}¯%>^º„Mãí©“ä€—,a#Áû›ö Ƈ˜!×Ußì3õ™ô¤ŽœÓoÒ˜ dü§÷°I#.OñG=c2. drqGAz  Ý]igêÚ4xØü ÚS/n—ŠË]J¢î¼ºŽƒù¿~¬² ®¤…3Ý_£g‚‡˜v j¼½©APUyïîí~£N§!A†Þ»ûqMUŸLõ´&!„ÅY¯Çø3è&7,1«@ªråOàaBU•¹ŒK£Pý¶–»–De”מJ‰ dQ©'rÝîñ,Fè‘ Ž¦\Ú]u½¬¢ôšWÜùxäîÇŸ5¸¼¬¤ˆŒIÆåZI#*Œex­(Âá€`FºÄ„¬«£º¢üBÞ飹:‚ %ã1_…»ëZ÷‡¡HdæU‘\iÄ;Noá3ýS˺pÀ0c*VË{Äm­­ uŽ CÉ8¯Ê­à5Rá©«Â|YT7w æ±:ëbK/*Ì0F aP㎠C§q[n';à™B¬#jy#ÈÐWeò0À3‡t¬^…ß¿÷É£‡÷-<˜øüà³{d;wøžVÂJµBöèá·?¼ÕorúÕÃÏɘd|h4€iD&êøôîÛ·ûŒÎ!U|ïÎm2¾|,Ë"#Ã7+A]µžK嬯ì1¿3GDÍÑŒ´b…Ýå›5RáÅ÷R—Îã±*ñŽIÊ:ס|QLÆTÙi½xUÑ«”Íu‚G ô\᫇÷Éødª'ñ°‹Ø.Ÿ1.HÕY´-˜É ß~¤¸]"×㢖K™ ÞTϸ÷š/üص“zðj [×ãè7é]áKGëq< +%g—z!þi¥b›ûžªŠÔ¹T$ÚöÎÆàaf£‡:Wx*¿m;3æä‘Œ„”BgÄo=ÒJöi-ù Ýó‡Î?Ôb³!¼~_0yT<îfìªöƒ/\é-oxóÕÌ5Ñ~Bó ^´ýðÈ‚Ñ×½Yqǽµ4È ¡ ìà•é—DuÇwÆóØt Ã7rëÉFíPÁÑÇrßZÌó¤SY~áß¿*Þ¢Ã̵Jùµ¬ Q\&ÕŽqBã“r+,?#UžX/•¨";16€‰PéœàÅi'jçYð²{¸ÏÐë ÓêawŒ·ùðu±¬G\œ…ÑøuZÇýFCÇñ(”ʧÎÙý'Õ…|QÎòƒ¥-j¼«9o[†Å¼'ÐŽlᥜªQ(ºêöG³<(^œ¨ŒËõJ¹°lw0Æ\߉[£¹ÓXñí’ŽæümáñŽ%Ç™Dg–³™qûJ$J\'\ØÂE¹IùØ*ÛÖK#©ÝŒ1æ§å×È䢿³[ø˜gÂñV“¬àp€—ÝÃ&}¯+)5RËiAé–ž-‰¤ ŽDn³.­oËÀX«Ê%–hhä±V½m€ô:©“Ì’+›|=èÞ ’öäV µšI<Œ—.aÓx{êä#Yá%KØHðþ&…ìxé=¬Ó¸Â´zØÁ‹ÉÏÉþpÄø.kÍfÿÑþ°Íy‹>;ÚëVW½ÁEx{dÎ2m¹¤æÜÁDBµHÕAXY¼È 9"tú˜qYÁá /»‡ÉÓpWxÖŠËbŒ¨3æwá=ùK½èþicÖë$ðò­<*¹ß™j&=L¨ª2—qiªßÖ‰çã*QUnêê?6Ý݃‚xÇnyï’ÈV×xsÁžU‘¾(Šø/Þ‘S¦TOü‹±sÓ6îÚÃeRi^‹vŒNvœ¹¦[phó>‡Au§"žÁq•wÆotl½aqÖë1þ º…É KÌ*ªœfÀË .í®º^VQzM+î|šû¡#ÈP2ó%¿ 1x€ç¤bµ¼GÜÖÚÚPç2”Œóòß < Àóè! jÜd謮ýÿúM€g6…XG(ÔòG¡/ÿäa€çéX½ ¿ï“Gï[x0ñùÁg÷È8vîð<­„•j…ìÑÃ/n4x«ßä2ô«‡Ÿ“1ÉøÐhÓˆLÔñéÝ;·o öCªøÞÛd|Y)º¯¾·ui—I£R/ÿ°„”}¥ÓÔ–•­õBælšÚߥ% žHXnËøT–[²Ûù?q¹ë‰Ç^¢æhFZ±ÖÎ`*èUÊæ:Á£‡ú ®ðÕÃûd|2ÕD )®nðǸ‰ Û%rƒêÿ·w'lM\ À¿ÃUÈ2“„„-" XD‘EQqk½Å¥j[Ekm­"»U\QAYED@v!$“L2 .u©­Þëm¿Ë{²aI H[}ý?ÏïᜓəÉÌŸ“3“9jUË¥ãiThæ-%ûaæ°pYn»pÓÓ4"ïvÎÇñÈfñÅÿ<ÍÇÁõ\Œ§$I—4n)dé+ާ)÷97‘ÃsØjö…ÇÖ·ÿ- cN f}!u[Ž\¼õîÄ$›\ßÕd±lÍ%º>38 ¥4ÿëôe–Em<|MÑzö@Z¸LȇÆçœ{hrå°0rÏѽ©áRO"Ûñã-füµ¬lçÍ£[—ˆ„~útö÷w-uNg?§ë%øa‡Z4ä„·Ú[+Œ>Ú:â*R5o–‰–ŸÐ#‡à½sØlôÅ;sx’a°¥p‹œ¿8pÃugïÑÜqÜÞ¹­SYU•[«”VÓøü?¾súN’Ãâ䛃Ë7=ØA…æ4 ä-§%É j·íÃcÑTÀFò¬ùô‡uÞèezSä0¼_Žp¾˜C;.¢(‹Nƾ#?†–gÕ*n­ ÞÜ0¬·™|ŸF™ä0p¾gbæb®qkùcéÇMï¾6ï ó¡?ì!‡õÞˆ€¿,‡Éç}_xÊaSëH¡tS¥Â:5îî¤HצštŠ‚iض¼Ô@¹k xN9ì¼¹r|Qê¶a´üËŒk8wƒûpnnvSù^ãó/ÐK›”µ«Eâ„ Èa˜k·Þ»ûdÌ6f³lñî‘ÍòØ6JêÏÒ6t_ØH¦|SZÕ5 átFe[cIvlȪSm·+Š‹E~4?d‰Ö9çðb?~èŽÒ»¦¿½ìËhQÀúbGÀr73Cè õgjº9VÙY¾7VDÇå6qÆù_/áqÞrØþ;½ìH›²OÍâ†Hà«QŽíëhoij|õòù#«ÙlÔ{BJ_½|ÖÜÔ@ê“gͲ4}OíéÝ›âÃE<?q`Dʶo¯´©­Ó¾î‘HñC³š5†¹ç°håÉ9Ir Ÿ' [•SÔd˜èy²•G6ŇÒ>µfA­Ž{¿ïqxZ ·ÖšŽ®“ xü%9ÍjìZà;V=ÔT_ÛPs›cµ/ž=!^>{<ó§‘ejïT‘š¤þü_ÎþuQľ&[`²K¬× ößk¨»R^VRxÆRJêšó¼ ±‘1éÕŠËÛÃd‰g{qÇ6€éQÌ1ÃÊÞîîöVOH)©3ï[Á[Ë×Êü© ¸=ºÌØæ³F¥Q?ʱžÒ÷Yø,7™tÀfød/!6ëµ3ì )÷ÅÃàÉX‹}ýê×?Þ¾vx3óç›ß_‘:¾ÞñæÂ:N«ùãíŸÿòäé#›'¤ôÏ·ÿ!5I}l4€¤QôÿöòÅó§OžŒY½#QüêÅsR–åºÎ®ŽKn‘ßb?J²bíÎüÛ}>}‹yú}Ì|+šB¯o.É=X­Åíà£b1è:[[þxûæñب/þ|ûšÔ'Ïš5‡i猙äOŽaû/H” C2ËzÌï“Ã>ÂtðÑŽ ;çãxd³øâžæEš–ÃNœâVf°0pÃ-¥9 ðŽ¶š}1·6L퇣¢” ×}ÝmEÃÉÌ䥊/ ŠZsðçÎ8‘È]ÇnXBñ„a©» ;˜ØÙ—$+ÎÍXBó„’¥i9ÅÝZ½ÍØw-rŠ£ó»p2>¾ñÅ\sØ9¯\hf½ýÆïFÕýCQ"ñŠƒÍFÑy1;Z$Í8Û=°öi² kUŒZUs,I"ˆ>üÀ4Kûù‹ÂwÕ+5ÃÊêà "Atn« ýaøøsØfñÅ۹氶ù`˜¿$éºÖd°ôŸM WL> ·äÈé%ÙmŒ+`¥k®0F× C͉xeé7KËÒÇ'5*ªV‹DÎEÀGžÃV‹ÉsÏᦽKü’o²&[³V&?ÒÊL”²wÖʨ¨SZGÀ ¢œ=[gDg‰¢¿ïÓÏÌaaôÑÖW5Uóf™hùÉL[ÿrØlôÅœsx¸jƒ”–}—3é‡ËãÄ3oÏ“ïmVÏ8OçÈá¨ã}ìÌö0M'r>òá|1×6=Ø!¬¯TXM]uª”Z^Ü£óáz ä0|r9l1|1·6*ngS!Y Ãö+̽ùñ"QÊùžQWmßÑt@jå ~rؤ¬]-'\@ÀG—í÷î>³Ù,$ܼ{d³<¶’úïÎa#ÃöÖ_:´JF…e_í·¸bYY·;Œ–&å^mÑ0ÊþÊÃI*æ›Fû¥k ÃößéeGÚ”}j÷#€Æ(Çöu´·45¾zùü‘Õl6ê=!¥¯^>knj õɳfÍa·ï5ûÓÒ°„Œœâš)_ÍÐ÷Tÿ<)L,ôçIä±™Ç+Õ†—0é MG×É<þ’œf5ÞYøˆ°ê¡¦úÚ†šÛ«}ñì ñòÙã™?,S{§ŠÔ$õ±Ñ´K¬× ößk¨»R^VRxÆRJꚸ 1À_Å3¬ìíînoõ„”’:a€¿ŽÕ¨åXOH©—ç.žyað ØÂà~ ±Y¯å˜aOH).ø‹ŒµØ×¯~ýãík‡73¾ùý©3Ë~à}CXÇi5¼ýïó_ž<}dó„”þùö?¤&©°€4Šþß^¾xþôÉ“1«w$Š_½xNê{[ ¾ý§h?ìà}ï7=jH‹fÎßá­H¯o.É=X혜Îýwƒy ü«U!´¿™óP;0eiM¿Û›oE>½Ó“!¯ªQ½ëŸæû®)|p,]gkËoß<õB¯Ó”?k`µ¾}Mê“gyZ ©í›e’ õ!”<ëŽÞ¸ 9ì>ãÆ”Ù74¿ £3®õ2fVkÇvðq._Ãv/äc¿÷šÀ92ìœã‘ÍâɈѰ=k[ìŠÏ*.^øŸ§ù8\Ô÷‡Ñ¡ÛÊ÷…S²õÕCú¿%‡UÍ[E˰O*ºÀñø¡åð{¯)|È9l5Ïjltäëƒ_‘Þ²)ÃjyG3õ9¡¼À 7‡îï ç‹RÊzGÝJ­LsÙ¾´¨@¡P²jû‘S±ôDØz)O°¾k ”ë–AÂÈ+&~OãßJˆJ8ßcaZ*e$,‘Pþ~”4¯¦‹c;Ë÷ÄŠDI'ZL®€]ìÇÍ*¬U1jUͱ$‰ úðÓ,9ìç/ ßYT¯Ô +«'ˆѹ­&ûÃ^žî¾¦^Ú gÛ,#$ZΕë4*ò»ÓµË—HÇÇÅ)žŒYÉ#o½ä0ÉÀ2aXNCþÔ)òbhAä÷팳t¤ãøg”lË­Aר&s÷ÐRž3l½Í5‡­Šò‰díÕñ±Se}š#l9_sx¤ãØr* cr L×ÑHZ¶Î>ÆâHHéš+Œq|}×HÄ+Kí Ÿ‘òôk®“qFEÕjÑ,ï5‡gºÛšzk'vl€3‡­Ó¹ŸKìã›7’@&65Ö­Œ!4ßk|úxŒÒ6GÍܶ/¶:£¸¥ùnÒªǹ¹²çO“R'Ï9Ì_L X<ýÞï¼àÏÕz{÷89=å<”úá¾%R{ z)š{ú*³£háÒøô{_¾q9YLÇœö9‡uyËiIrƒzòuG‹¦6Ö©`2S_sØÛœÔŽß½¶;6ÀǙã#œÍ2òôñ#gǯŒ%?O|ÿݯÏ!E<æ°¡û|<-M½¤qKSëA@Æ5…•ô‡¯Ø;½';½ösõ‡=Í9‡¹»;äü€Œ²ñ°%êWÑã9\³‰ä𙎉¢ê$šž¥?7½ŸÙ¼3l²?üä°×vbÇø8sØb2V‹‰DñÚ5i$„7mÜðòùSçã<å°¹ûÔJZ”RÑç~„Mwÿ›pž$égg0wý+ Ø01žÉ>ø~߃^Ц¾Š²vµHœpÁbî¿O¤«º°RD}VÜ3~y³¦nW¨E>Ô“E1Ù¡ÂÈC÷]£ ºfÒ¶ñW™\šsÜuƒû¸knvS©_€žÒì÷Éa¯íÄŽ ð±åpë½»OÆlc6 9ð‰Q‹iÄhÈ=ò­Åb²ŒpÎÙ,m£¤þŒfz¿_F‰âË'û´®ït PŸtéìgµvÊéàõ§k:YeKåW+$~‹&º£‹¦_=+£—iSö©Ù¡i¿;ÓÉÔv(JHÅ~{C©Õê{ïüüe8µø_ÂeGzXG8C* ùâb«Ò¤j½q(NJ-v?ÿåZš¶ÿff´þLM7Ç*;Ë÷ÆŠè¸Ü&ÎhXˆv_ýûä°ðØNìØ•QŽíëhoij|õòù#«ÙlÔ6ËÈ›ß~µYLÎ?Hé«—Ïš›H}ò¬)Ëa[r#y¢¸båŒ/e˜|Áç-;b¿žÊÊv\ûvCL% d+6:³%8`âúaÏEî×ÅšŽ®“ xü%9ÍÃn¿÷»}ðWwíH’S|žD³ù@aåɱ$ùú =ô,Ê›?l‰±_”°4mwÞÕ¯Âe®Wq_²ÚÆvVÙJ øTHÔšýµ:nÖïqÌ#‡§¾Ðûä°}³{h'|lXõPS}mCÍmŽÕ¾xö„xùìñÌŸF–©½SEj’úØh Ú%Ökûï5Ô])/+)<ã )%uHMÜ…ைbŽVövw··zBJI„0À_ÇjÔr¬'¤ôÃ_…iW/»Ãû °àF9½Y¯å˜aOH)©ƒ ðW k1°¯_ýúÇÛ×ofþ|óû+R‡ÔÄæXèÖqZÍoÿûü—'OÙs³{Äøáûê;R*¶°ËŒü‡éµ7·‡‰ä™y·úT̨A­j¹t<-€ ͼ¥d3x;‰'\T?‘†é”¥±":öb?ëz„뽜(JxÂ%»ÚµÉP—,ˆ8Ølò1Ý[ûÁä0íöø¨¶ï~á¦P>têá4ìÛmæÃbÐu¶¶üñöÍã±Q_üùö5©Ož5ÛŠ«ž\D­;TÚØ¡àôŒ®ëNÙþURlSé‡wÈá×s1ž’$]Ò¸/–¾âxšŠ/í¶üƒÔ?×°‘öÃQ”lkíóO«êf†T´âPJ0½ìd3^çH4´½Aeûÿ’ÃÎm^ž@ Â÷wè>­6ëµ÷ï6üïÍëG6‹/þ÷Ÿ×¤þl£Äz®iÿ2J’–ß>2ek(²C…›jTzä0ÌBßþS´€Ž95`˜õhê»–@¹>½ £ó[ª·ŠŽí]F Åá[¯ö[ØÎ›G·$. y‚À¨Ô}EzãÄIIÒ¹âÜŒå!4O(Yš–SÜ­uí„V¦åÂþ5ÑB%[‘ñUÞÞð€e¹=ì{4¬Kk3(Nf&/•P|aPÔšƒ?·p- H)Íÿ:}Y Å£eQ_S´ž=.òÄ¡ñ9çNïÓ2ä Yv¸Åù8×´].Š:Ya„N<×3j¾/ H­ÒO U+Ó\¶/-*P(…¬Ú~äT,mÏ@ý´Íx'3H±ëØÁ ËC(ž0 ,uWa3ËJ6TÅ¡Œ„%Êß’†§íÊè¬öŽÍ;[|ÉaÓpKf_º®IíXާ7פcnßž —ðý„¢ ˜´/ ”V÷ÑãÌõuÛDóØgÜ7ò33‡ßw×òÃ6ˈ/ÞzÈasO^,%ˆ=Óa~GODÞÞeûn&ù⎣¦^s55P–îeûö—&‘j?÷XL>ïHn9ìí BHþm§*†Ô;ñufjL ÏoÑ"~pÆÙ.f¶DwäI¯®ˆÓ+/¹u&÷w-†ìnV;aôÑÖñQ2Uóf™hùÉ=ùD'ÅßPN|ƒOÏaʾ/9ÞÙ¼å´$¹Aí_Ç¢©€$Ö¦ŸŠR5o%ËýzmßQt@Zãä³ì;[€‹ç†é‡ËãÄ“{û8ž|¯ëè¦b~o‰#‡Ëû¬^sØÆ4æÈ%I}ÚšŒà€¤Jç "S¿3”&«¯©Ù¼Éµ “kªSä/§Å«jTËQ?Ü·DúîótŽŽ:Þ7m ú*³£háÒøô{_¾q9YLÇœV ž7¯×6¼{|xò°õöæ’ÎsϵӻÓcƒù~‹ÓKVí.¸k0ú’ÃóÛgfæðïZ“9l6úÂSÛT7×Kya»šfŽKX•WV‹&rxâ òú.Û?¯·^«SYU•[«œãÀ³n=S™ ¡bÎ÷͸ŠÃËKLæ°×ƒ©ø]DQ+t} ó˜Ã¤o7½oÓ¼3l²o3ëÁª.¬‰âÝN—¨Ûv…Š}ÉaÏ ÓU§J©åÅ=ºw_zêc•¤s!ϼո[.-RÆÜ(“&—Õí J®Ð ÓûÃWì}ÑÉ Þ+™oswwÈùeãçPHhý®öÚ†9ä°×7wr+1ªæKy™áßí_Þ;úÃóØg|ÌáùïZ9<:ÂùÂcs}WRDÂȯ»t¾æ°·wÙ~Þ­#?†–gÕ*n­ ÞÜ0<õ$ãÔíï©?ìí%ÜúÃÞ"ø‹Ù?k ¥›*Ö©gˆî¤H×9‡à”µ«Eâ„ 3rØ5Ö·Á}¬/7‚ H»©Ô{9¦F:¾[Nn»=~†—mû)Z0soN 3÷æÇ‹D)ç3Ø¿yÑ÷C4jïÇÎ/‡É'ʲ¸ ðï —|vbb-ȧþÕ!kv…KWvYfä¼¹ë§X‘Ûa|¿Œ?žuî›Ñ—v¤ õÙäq¡©ÛêG‘àÞrØ{|Ïa¯oî´£Þ‚•|]aÒªÙ×w~ûŒo9ìë®å%‡É{ê‹·ž¯[34ì¤$k Ú¦u5µÿCÍÌa¯ï²ãƒ‰¢ F¶-/5Pî(6xÚþæþÒ$±(¹lâ(ðaGrËao¢ò/…è¾°1 Lù¦´ªk@5ÂéŒÊ¶Æ’ìØU§Ú4û9½ìH›²O­¬™ò‘Џ™B­?SÓͱÊÎò½±":.·‰3z;XìÏú"Höyic7«l¹qp¥Äï_¨£Ó–95L7X·;Œ–&å^mÑ0ÊþÊÃIäÚ7³´Ä×v|$¤x|AØ×4n0Å‹ü„TıvfÖAÑšr:xýéšN²j•_­ø-Ï:÷ÍXçKØÔv(JHÅ~{C©Õê{ïüüe8e?ûľ¡¼l^om˜C{~sõÚª-!¢Èƒ÷5,kÑ<¼uh¹$ ¹Œ|žÒ*ë;¿}Æ·öuך-‡[ïÝ}2f³Yì‰äÕ#›å±m”ÔŸý.Fu×™ 9%KÝ“Wý ‡e5ºÞ†ë'·'HüéeÛJ[ÕÖ©oïòø.—(ò£ù!;\{©çíoT6ìY* Z_P×c4¨5ÊEÓ¡_TªZ=¿Ä”ë%”"ääßq qOíéÝ›âÃE<?q`Dʶo¯´©­ÿ⛎®“ xü%9u·¦ä°½ËÑYydS|(-àS!QköÔê¸Y¿ˆêv°Ø¯f¼~wrdŸOÅñÍé´ñıù5Œ|ªÕ÷Tÿ<)L,ôçIä±™Ç+Õ†÷— ´M{—øóC²Z˜éW5óC·?`f÷°²×¾ÝDÙ¯_ÝtèÌ–à€ñï5»mÆjŸÆ‡ê΢IrŠo_£˜Í +Oƈ%É×õïØ¼Û0—öòæ‡Zòw®óýø”4*eG~ÝàèŒï5{\ßyì3>æ°·]ËÛõãÛ×ÑÞÒÔøêåóGV³Ù¨÷„”¾zù¬¹©Ô'Ïò°éX¶åâO»ÓãÂ%|J“òùáâê!V?~½„ÛAäå]žøBS"ÅÍjÖLì¶¿ã©:¶9l[²´Ð˜MîbôÞ^bÚõÞ"øϨ¸•,ÜPÅbSÀ?·k±ê¡¦úÚ†šÛ«}ñì ñòÙã™?,S{§ŠÔ$õÿÆoZ‰"ö5qxCa¿CÚ}*–¦âÞT0:+;Ð^–- Û[;dÅÆn×åôšÁþ{ uWÊËJ ÏxBJIRóï¸ ±‘1éÕŠËÛÃd‰g{qú vïR÷œß¿)64€¿Ø' ‹Û|üj×6 üÓ»‰VŽVövw··zBJI¿çVðÖÁòµ2*(nÏÜÿ>9‹g^Eé6×ÿ3V£~”c=!¥ØD°PF9½Y¯å˜aOHéßsñ0À'ˆd¬ÅÀ¾~õëo_;¼™ùóÍï¯HÙïðïÂ:N«ùãíŸÿòäé#›'¤ôÏ·ÿ!5I}l4€¤QôÿöòÅó§OžŒY½#QüêÅsRßóÒtšº¢Ã[£ƒ(?O$]¿!ûÌÍîç $§ÌHµÈo±% Y±vgþí>·//3=¹Â)óª¸1ª{®žØ›þY¸Œâó©à¨¤/_ê×–L»…ÚûRÝÛ(õ›ýˤ‚)·^xƒ®³µå·oz¡×iÊΟ5°Ú?ß¾&õɳf ɇ'×QAë•6v(8=£ëºS¶•T ÛTêÈÆiw嶯ñòD©0$³¬ÇüÎ6 T퉒HVî+®îS1VÑuíhF0_šr¢S«ÿ rØ Ûr4’'Y} ·F€¿bdØ9Ç#›Åқݞµ-vÅg/üÏó|\Óþe”$-¿}Êý…ŒÊ†ìPaক~ö;?sŠ[™ÁÂÀ ·\ÓxÊaêbz v°Fév9û$ |*ÑÙ;EÀGÃVó¬ÆFG¾>ø á-›2¬–9l¸±V" ßß®þ#=Ň¿ÍkÒyº¿©ýp”@”RᜡÀC³m?F Äñ%Êéwõﻕ—w¥^a™™ÃEÃÉÌ䥊/ ŠZsðç–‰ù5¬LKÅ¡Œ„%Êß’†§íÊÈLÜ©^œplïº0J(ßzµtöV·åÈ…Á[ïNLÌÊõ]MËÖ\Ò¨ë3ƒÄ‰¥…_¯ — ùKVîøá¦f¢Íž›Èa’·³Ê?ý áÔ”Õ&£}^$9¬¾½IÆ“ÿ»ÑÛ=Û=Í„bO?ÿÐÌzÎsöŸM ùÑßµz»™ç”©ŽT÷E‰Ä+V4kEçÅìh‘4ãl·k¯Ì`qdNåÃ!³aXY{rƒL°ìëû&WKû$4 0íU­*ÖSØØ²/B”Uëº%¾u°<- `ý5çL…~~‚€´ÜÊ>UgÅž•":÷&røÍk›e„Q«Î•ë4*ò»ÓµË—HÇÇÅ)žŒYÉ#žæ 5÷äÅR‚Ø3^Ï^yÊamóÁ0IÒu­ç6µZƧ’.÷[}ËaKÿÙd±p…û \9rzIvc°*ÊS$’µ“¶*ëÓÄ"Ò*ΙÃ~Ao³ï—`[r#!® Lõš«©²ôê!ç¼]~ÉçTœk¸»+7‚ÚÒ Ö{iöCä0Éa«ÅtîçûøÃæ$ÉŸMu+ccÈ#Í÷Ÿ>#s¸ûÔ ’Ãùã!êÎÇŠ¦]`à1‡íó!$ßd½äpû·$‡W]êó1‡Ùšµ2Aø‘Vf¢”½³VFEêк®ëh¹^‘ü辬-I‘2Þ":&Ï>—Ÿ=‡ÑÇÛFÞ=>Ìô¤ƒ?oRÛg¡ªJ—gTj]S¾Òñ¥Ý–ñš\S–œZz¸Uó®&À'ŸÃf㨙ÛöÅVg·4ßMZ•à87WöüécRêä)‡mª›ë¥¼°]³Ì%gU^Y-òšÃÃUÈs³ïz— üW‹øÑÇfŽKèÍjÍèôÖ—ljg^oÆ“ïmVÛ }•ÙQ´¿pi|ú޽GŠ/߸œ,¦sªN›ÉÔëy:û´ætPVʪªÌ ÜZå8hÏaIJµrJOž þw“Ê[“°+ ‡ß¼ál–‘§9£8~e,ùyâûï~}þ )šà1‡¹¾+)"aä×]º9ç°éÁþd}¥ÂÛy:CGAŒP_<ã<]GQŒ(dãq·þ°®:UJ-/î™åú:îî9? £lütéÍ®¢ç‘Ã6}G~ -ϪUÜZ¼¹aØy¦ä°(ñâd¿kÚ&§Âµ3^šÈa’Ãäs4aµ˜H¯]“FBxÓÆ /Ÿ?u>>á­çëÖ {#)ÉÚ‚6“iÚÂ1”ç6*ngS!Y®óxÝ;\‘( ;8eòS=[—ΧâOM¿nÍÜ›/¥œïqu•MÚ¾¢é€ÔÊAêÂJõÙdjêv…úQËOÌ5‡M:EAŒ4l[^j Ü5PìÌa^ðæ›:×…šÎoÃéÐí÷5^š„»v|ê9Üzïî“1Û˜Íb/“aÔb1r|k±˜,#œóA§G6ËcÛ(©?û]&Œê®3rJ–º'¯úAËjt½ ×OnOøÓ˶•¶ª­ÓrØÈ°½õ—­’QaÙWû-ïþGï•L9-‰ÛWp³G©63=.H•òdkNvëf^/¡¬ÛFK“r¯¶heåá$ óM#g4˜ÚE ©Øoo(µZ} §ÿK¸ìH;×6XúŠE~4?dGÊ6™Ã‹ýøòÌ‚ú!uÿË»Vˆ$iùÞ›„ýàS6ʱ}í-M¯^>d5›zÂfyóÛ¯6‹Éù§)}õòYsS©Ožåa,Ûrñ§Ýéqá¾?% ŽIùüpqõ«Ÿ¸^Âí{Íþ´4,!#§¸fÀ×ï5M…{7Ç-‘ ýüyTpTrö‰k ÖÃ÷šõ=ÕÇ?O  ýyylæñJµ+ÿÕE;’äßþxÌæ…•'cÄ’äë¤_:Ƕq=)~hV³Æà–Â¥;íL’Kø‚ÀÈÔýEú‰¤õÔ$ø´±ê¡¦úÚ†šÛ«}ñì ñòÙã™?,S{§ŠÔ$õ±ÑÆsµý§hQÄ>·³“ö¦b&/Nð¥K¬× ößk¨»R^VRxÆRJꚸ ±sPŤW+.o“%žíu;õ†€ùF1Ç +{»»Û[=!¥¤Bxâ:ºµ2*(nÏ…©·³@Àûd‹Q?ʱžRl"XÀKˆÍz-Ç {BJqñ0À_„d¬ÅÀ¾~õëo_;¼™ùóÍï¯HÙïðïÂ:N«ùãíŸÿòäé#›'¤ôÏ·ÿ!5I}l4€¤QôÿöòÅó§OžŒY½#QüêÅsR–åL¿—š% Y±vgþí¾‰Û­W¯‘ÃtNÞ(^;p*šZ´8hSõä}ÌŒý×’hÚy7ài/aT÷\=±7ý³pÅçSÁQI_¿Ô¯óp³µ÷¥º·Qê7súŒ‰9ž°çÀ±t­-¼}óxlÔ¾}Mê“g͚Ó÷涯ñòD©0$³¬Ç‘Z:ei¬ˆŽ½Ø?~ÏL®÷r¢H(á —ìj׎/GS—,ˆ8Ølš¾üª=QÉÊ}ÅÕ}*ÆÂ*º®ÍæKSNtjõA»ñtÓK€vÎÇñÈfñÅÿ<ÍÇ1ë\œâVf°0pÃ-¥=*GÚGQ²­sÍ«nfHE+¥ÓËNv¸fÏi?MmoPM]¾Nu1= ;X£tŸŒÃа7‚O%æMŸŒ9 e[;˜[Û'E:%¥T8ækc³C…Ë·8ûº\Óv¹(êdý…5:ñœs¶ vøb¼$ Õ>ý”$lû1J Ž/™19]ß­¼¼+õ ËÌ6(Nf&/•P|aPÔšƒ?·LL{aeZ*e$,‘Pþ~”4UgÅž•":î;Çÿ/Mä°#‡m–_¼kk›†ùK’®kÝÝ¡s+%A›ï‘ž¤¡³$†–ï ù¬í;%ÙvŸ±'^n„hù÷mÓòÖ>õ<ŸJºÜoõ-‡-ýg“Å“7nÉ‘ÓK²ÛƒUQž"‘¬½:0¾(e}šXDšÍ9sØ/hãmöãöv B\sƒê5WSeéö>¼#‡’Ï©\ÿG˜®Ü:hKƒZï¥IØ ÃζZL¾˜{7í]Bú˜7!6òðh´$òûv†ô!Sd›ªí㽦Ö‘¢¥‡[5£ý¥ ù¾ûêi 7µKrxÕ¥>s˜­Y+„ie&JÙ;keTÔ©g³uš–ëùÇîËÚ’)ã-¢cò®ÉšÑǧÿ˜m|˜é9IÞ¤¶_R•. Ψ´÷çí9LÇ—vÏyjàš²ä”}ÕÞÕ$@¿¶š¾˜sWmò²ïºfpcsä’¤Š>mMFp@’kÊx¦~g(½"¯CS³!$xS£zz#Ih¯ñ£Í—Л՚Ñé9¬.ϼތ'ßÛ¬¶ú*³£háÒøô{_¾q9YLÇœÏa_' 5wÿŒʪSYU•[«'í9,I©VNéÉSÁÿnRyköCä°#‡GG8_Ì5‡MöG$ë+®®¬QY·>Pžy«q·\[ä:ïFÜ(“&—Õí J®ÐÌ<{eè(ˆŠã‹gœ§ë(Š…¬q<îÖÖU§J©åÅ=³|ß„»»CÎÈ(뚸ª¹j=¶é;òchyV­âÖúàÍ ÃÎ3}$‡E‰'ûí\Ó69~¬ñÒ$@;s˜|”öÅÜrب¸L…d¹bÊ1D¬*‹ ÿ÷®pÉg'&KõšË«CÖì —®,ì²ÌÒNv¸"=Pv°vÈýº5¶.'œOÅŸš~Ýš¹7?^$J9ß3:þ…‘¾¢é€ÔÊAêÂJõÙdjêv…úQίÌ)‡M:EAŒ4l[^j Ü5PìÌa^ðæ›:׿Mç·átèöû/MÂ-;ÃÚÖ{wŸŒÙÆl{‚yõÈfyl%õßÃF†í­¿th•Œ ˾Úo™ö‰žâña_?ÐL~¤¯(^ä'¤"H×qö¦z¯dÊiIܾ‚›=Jµ™éypá@ª”'[s²[7óz eÝî0Zš”{µEÃ(û+'I¨˜o9£ÁÔv(JHÅ~{C©Õê{ïüüe8µø_ÂeGzع氽͉"?š²£nüjg{/öãË3 ê‡Ôý/îZ!’¤åwxovB€OÜ(Çöu´·45¾zùü‘Õl6ê=!¥¯^>knj õɳfÍa·ï5ûÓÒ°„Œœâšé±æ8sÇÉjq¿T@ßþS´€ºý—ë Š¦Â½›ã–È„~þ<*8*9ûÄ5ëá{ÍúžêãŸ'…‰…þ<‰<6óx¥ÚõBÝY´#INñíÇl>PXy2F,I¾Nú¥sÌa×s1‘â‡f5k n9,XºãÐÎ$¹„/ŒLÝ_Ô¨ŸHZOM€O«jª¯m¨¹Í±ÚÏž/Ÿ=žùÓÈ2µwªHMRmü‡(b_grÏa*fòâ4»ÄzÍ`ÿ½†º+åe%…g)öµ~ú”¬>öøY ºÎÖûÿýý×§¬Ÿ ÿüþЬ>ÙØà¾·þõï¯.$›¾·üÌ™Ó?MÊ;]XTRq£aÀ0²À¯õÞüö+Y}ŒÀ?ŸÃ¿½zd³,$+Kr¸ðB 7:ñˆÉ4Ü^ós^áùZÆlYà—›/ä0|89<6:²,Ú{ß7˜§œát É0Ôqô‡Ir’?µ†¡Öú‹%e•íCšÉ:ºnG+M®GÔöNï}-yŠ®çVñ™ M ãxÑ`%ÉáF^·°íDÀ‡“Ã&ƒv!é•ÎÖè]5í·KO”\ïÖ0®:Ú.{7+Œ®g©—X43ä)Úî›öà\Eà {¸AÍj¶Èaøpr˜c™…¤l'9|¾qX7ù ®§êü™S%Wïkœ2ÝU%yçjzYgmoÝÙÓ…e÷Ô¤TÓeÏáÆ½ë¹ªëEçꇵ̶9 Ntê…¤h¿Wx¾A¥u|¨ÿvIA^Áõz{Á®+%WÛú•ìpoÇóÅù§ŠÊšÔä)êÎÅye}ìį‘®S1ê…m'r>œÖk‡3ÐVFr¸~ˆ™úøpGÍÙÓùEmJù“jk¼ösiþé‚Â’Ë·Úo——Ý&OQwØs¸¡Wçz¢²Ï‘ÃCšá…m'r>œfÕ'9 B·Þk´ZF8ݧÂ#F–¬7Y}ä0üƒF9¶·£ýÞ݆g¿<áØO(„9öÙ/Oî5Ö“Õ'{üƒXõPS}MíjV£yúxŒxòØöž?§~ƒcvïÿ*óþIè˜ášê[dÅÉêc€ºK¬Wößk¨½\^VRxæAV–¬2YqÌ HsÌð`owwûƒOYY²Êaø XúQŽýD•Å; åÿOÆ endstream endobj 311 0 obj <> stream xÚ½Énì6òþ¾¢À ·âd·;@ŽßsœrÉÿR\Š,.R·—²ÔY¬}£ÄåÏ‹¸üþK”ûëǯßn.RlAàßå㿉oþ·~³Þ^œµ›t—¿.ÿ~ô‹Ç›±/O.Þ  ¼¿—Ëâuà ØxyR âbˆ³_þóñîêÌrWip»Ã¶fÜ ¬>ÀYZ½9aÆÕP0»æ;ìV&t#q'#;^¾Ü#U*Ã×:“è m,i7®p*ͨëÿ<7gO,OHU#ã:·:R_ì|BrË”e¼ËË*ã—–Y’ÓL•¸÷QvfÓÆª•Â(ØBPÄ|©ãB¼«—'„#Ê4lÓEìõ¼ +ðÒÀ¦µáÛ/È7|¾æß qŒ ͆] €Š(–ªä¨‡6ÀæÀa·'P©õM¡l”,ÌÅÕ*dy勯ˆ³â d•жüÆ=µáÚ·wš™á«p`2›¾—œµï…Ô·b&n§QÁ”•öø`£VéÞFPÙž¤Éª Ñ Ð`ŠÑ‹£GÑ¢Cèø¬dO)TÂ/vH†œÈCî;nùoÅxÒ˪¤oÄ‘Dµª¼!/M.”÷;¸b@vW™A›B³±¼[‚»g¿Ð楠÷ÇSN€U ÷AZr>ºRhÞã CþÈ•°åeà($7 ÉEpt«¿nÕÅnÁ‚ܤ®.y/:£Ê¶æŽ«ë}ïF;ÿFn\õsqYóÔÂ@ç‰yôb ÷âMÈOŽP”ã~ÍaßÇS •Ë•#l‹³•_ägB[– Æ‚=ÎÊk€«aÉ[c¶ZnÖJ¸RöŒj"«†ƒ)¸]»Ñk&ºjñ['¥ÑFb{Ã× 1äaÞWš>-„ØÀë¯G‹h÷Nð_ÚÕ_¾@ ™-y4ÂNR—™Š¶çjF„xŽ þÆgu› ùX|è lØ€ïÈ­Fáy:öÎR¢b&Éù’ÿÚé}\ž™v묖´¿os›qv›‘ü¤ŽOZ«ç"ÁrØ yÌš+uöJ¶è:’e¯WŠTX"˜Ã×Ê›`PÝùXÌÞ–'zÓi93 ¶OWYø äÞm Í€¡zE0¯M±£’;ïç…R.¹³ ,ÐÜé ’”¹Û'ú–ì°9±Dp›U•iPºüÖ·`dBÝ•|AN¾¦ÀL¤¯_G‡«&€¤ {Â×Ü#(³yg¹L²C{Ü™) §ÿ‹s½þoœèYýd<¦¨ÁMõ“þ¡úi€ÿ8cÊŸë #¿$~f3Ö|sçÏ×U ÿe”Þ´·?À„UHTÄrPz™q7röÈeø0e¤q”G•dÝÞŸ¥ÞólÔ׸• WMÁW4!ß0Ú ¡,j ãNŽ5^À“? ž§Õ ]S.ò”Lû)7Ây0ÎÎBLžÑ‡˜•ÔEؼ®rHœ“s´eY¥J¿ÎŽ´›Å¡ø·«Wï <óᙵ¹‹3“°NëkYÒÈ1_NéÛANM1ÖÀj´G¤1G´­«R}œ!§E³ä>;ì¡ÃfTK® Jf¼«jê´Éq1 Êõò¤V~ÖڼΟã6íÜ’!õÌÙ,Ép©+Q·¦êѰô¶Ft5Õ¹ëíçyjšÇýJݽ²A±²H«j 'ŸYÞì»5u…5÷µ|öZ89ôlah^i˜[´ŒtâCNŽ2F`û~uénbލóµwJðÎ.zÌ=[9ÙˆZ×vª;+ª,KU’é‰hõL“ËÂɦqÍüúë¹'Ó Ö«‰•¢O´Y·ð™LtЩù6BÒ•‚#+&F¸M9B¸—ý©6䊄/aŒÝ0ñÿVlÖ¹O“aasÊKâ>ú˜wé”ÇÑ›ö³9¥ÉñAéhe¥r~6P%üä5-LÇ$TŽËÅ‘?QAmjš¬4«‚¨gôbEa‡ n0{éM Îì°lèk”YÀ\ï•Öë¡ÙëXlê„’ßµ_=ÇiSk”™WòÌGG‡^^ï„ñz£. ¸v”…æØóê)Ë‘X0t+Ëþ"÷CWVвf‚éËïÚ‘íK¨![Q˜‚iQ³3eâ-ƒ w§m=öjkÀîú SˆÞût¯ ×»-Òþèx¢6r‰Ñ¥žPB©®ò-f†j`>ļ7tvHñî­Dsý ¡Æ/3q°»ðžvhÇ7}3Úp*( î…+¦Â«3Sè‡EòÐÇ{`Ú|dV9H©™©kNóXXeú,o-œ YW‹^ùápˆÀGH‚ŽW£èþþ³Èð_¿w"5^nÁ…Q¦UŠa)ލHÓ7LP K 9Âc-"cû.~0#*v¥$ÌÅÈtp݇“škʺڈfÂö]¥ôÎÄ¿—ä®ä¢ÍhŸÈÍ0îs$ Gdð> stream xÚµZQo¹ ~÷¯ЗëC5)ŠRq0K6@ƒN \k…“l÷’]×^·×ßZÅÙäìÛQÒÌjHФø‘œ¡@.8 ì’ Á I]du$ŒyÆíâ„m¬.KqƒÓB£«÷#¹¨Pd£DÜI.’&L¤ª=“]²¿@<·5ÅE-6©.VÐ"2’Mìn®˜€ UP&…숊 Aâ(›@‚í/ˆ\4¨8F°IGs ŽŽSÆ£LŽ¥”bv¬mMr\l›,Ž«€ .R°B‰l§\\b#®.¥¦Ÿà’(þ‚Ü)ÛN¹TˆüR5ý¥ê$(ž‚pchZ•h¢fLL(Ân…Í)9Ií)q"í)ÜÑ`Ü)HðT“PÔåPlR\6EîfCÊÁå¤6‰.ç`,Èemjc—K‚¨9¹\•L‘NCMÕh„&[Rs *¸Ã¦ˆ¢,öWtšÊu•  ¡jÖS†g˜Q´À“àKìJ$HŒi‰I]1/£‚?LwT&æt*®°ÑÀã%Á“¨’+bG*ÒgWr¶¿@NÍz5º‚çáv± ø[©ðW*àTm5ÁI£¹Fvð2è¡*&æ•1†vªY›ƒ¸ÊI@·`}3TŸ‚_WŒ°(Ѓ0 ®fø%àUÍiàõµÀ~ W©êæVµØ_vDb¨?þ8=:ŽPZpGÓÏÿLâ³í+ŠgXr}ùáÃËÃÃkÖ•¶NU}¤/Ö=Þ¬·6€3ŽO{à1œ‡°Ì§gç›×ÏWÛãéÙ£ÇÓ‹Õ¯Ûþà‹ÿ­¦g'ïVÓCX­·ðºÒ­.6—ç¯WÍWíÎÓÕ›Ó“Ÿ6¿\Âû¼¹ åK} "çxÜÙ±µÖëÃi[ Á´Å6ÆÐÇØGê#÷1õQú˜û¨}ìôb§GuzÔéQ§GuzÔéQ§GuzÜéq§ÇwzÜéq§ÇwzÜéq§—:½Ôé¥N/5z/¯ÌÑT7=¿|µµ«¿œ®qÓO›ó7«ó¦øðrúóôdzxwG«×ÛãæB›ÅGø}LÕÈ•sò5ðËéõçÓŸ6/6Ó#÷Ãë÷'gÛÕ¹¿?<Üs„ûp.É9sõf!ü¼Z(’è*~ÃùÏœnÖ>ŽäMâ-¼!,û «gV_‚Ìð¦q¼#ùh€VŠÇ1É”<‚ô kþvÖÝØRD°€Ï>À™‡½V½ÑØã6-Š±Åšâ&¥d¨qã¦i ­%ŸªØéõñU”|®u†÷Àm§ìŽ#Að@â”3¬Ø€á£%Ìž[\`ô¬'=_s¾._íñ¡ø+ bE ·´,z¤0ˆ •¸$ ” ÀÏ,¿ @ ‚Dõ5É’­*yµÔJ‚Gl…Dˆ¯ÂK¤(â,rðGº”jô),ò—ü3bmµ œ|R# ôEý0”œQk Æ!±J™íu %àâ¹$2 ßr}xÓ’e ¼`ÅQa„ÀáX’ ” ‚™¨÷€`cY” †"h}W£ù`žè—E†D0°XÑ€€Cp2H]a`LdEˆmçq—p!/·ÐÂÀ #øV>Û5€sE*´ 1 Ë„P¤V…Jòaõ›nÌ„xXJÀE«§Cl™'3â±ÜœðÀL•ª×œ‘yŠ—„ÌÀÐ0¤Þã2!x2nðF6†R¸žI{y ÊIQ[üÏæCÖ@øÏ3¬Ó8Öð7±¦ ÈBê__h†µŒczʬlõUæÖ¸±Ã6Ã;ã x©È»"Jý„¬ƒP]*Íí[ÇñFž_@Õ[S Á>‡:úŒc Œcj³¶D+9PgÍ9ZЬš,Èm"¢y%kŽšÏÇÚ8¨§Jµ~`¶Ú¢K›mF´ iâ[£Æ‹ Ÿ<Ã{\DÛufääS±N5|~¦‘ö"Ú£cë—ߦ›÷ź{vó¦Ç–ùIÜÍ[w˜îÑåËúu—/˽»|¹^uùRÞ“~-Ÿ®{—Lz—Lz—Lz—,÷.Yî]²Ü»d¹wÝrúönY·¹AXìýò©Â£Rž±ùÀBNQ4Ô„&C1j-fÓ˜Óv%‹o¯ÄZ(l}x$/I00yUPÕ°-ïôÏØ/ 00uÕPpH£õtpbï;¼”´$Á@7@- |“VH¡œ€DÐE­K ¬èar¯ö®¯§ïp‹€K ¬è³¢r+È/p. )®+ÜB—$Ðap›½:ãàƒ–ÖFOZn„[Ø6'Tîd¯A}BÈÌÉ ‰›óÙ6@ ¶tµÞµ†Ö»æ¨]" -Ê®vÉǺ¦ÞÛæÖ; Ed–†‚ÖFg½¹XÌû8Ÿó-pþ ¿÷0û3Nïãú1[ƒÙzÌ.r…ÙÚ1W;æjÇbíØ«ÞP%xWØKU”Èê’%w¨¥Í£Œ­ß3µ•€œ6Ûk 5¸BWr3¹Š5ƒ™R[{BëeïÄøz^Ááø^ES/0Kˆß%YF …m]ó€,úà Ù§WäÛƒ;zb¿Þo·gœ¦ÕÚÿ÷ô—Ó3s-¿97ÙUóí¾?]oO×ï æÁ=ä¤V·'@oÌ©¶)ÛÇ(¶Òݤ¼€˜oVÿY}ØœAm'ggVþõæãôB^L/^­Þ>=YOGOO¡\öï·?üîíêd{y¾ºø,?N¶æÛeðûënÌà¯]'ôp„×Ápµ.¯³Œ»¸Ž¸¶WGw¨0ö£•}æQ>UX_îSm”úuä*zïÈUésäêÕEÉß¡ég²/[`÷jÝ\{µ|TD.Gß³›ˆÂÕJ«>Ù>Y.rê펨·z‹Û—r;Þ_7çÃ׬CÉ‘×1jM´„ŠûþwïJ¶Ê×¾Uù®¾uµ•šn§Âýu]5bofËü–ï¶5ôÕÖì“£{Ÿ¿–kŽËm Xm {B‡8 À +#òÈ'î 1ÿÞþáì|ó/6€ÙÇö=ÖmìðźWÞ_g}¼ÛË3SÄBXÜo¶\"aÓŸÿúÊvgŸ|´¯ÊêM¶Æÿ°ðÓニúÂäõÞ&é“Éy÷OûíÛs¹b½‹]áÞ>d4Zs&¸îý×ÀHÁ˜Q+¢n†¥Q3ÂÚö=H°þð­Zñð†Ý§g3ÞõôÊ&é endstream endobj 322 0 obj <> stream xÚ­[ÉŽ$¹ ½ÏWÔ”F µ‰²'+ðÑè›á«}òÅÿ°6RÔYžÆ &;Z(’âò¨ÿþþ&ÛýþøPJDk•ÿøù¯•ÞÈô„ îÃ;'ò‹ÿ|üã&¥2RÊWú…ökîŸVÊôF{)A§¿gû3í9õ„?îŸÚæ^j‹ÍoéW¥?{ÿçÏ¿M¿¿|Z^Š(Ó;‚LN¤(’ÿLZ_ý‘þêŸ6õYÿHÏ®öqº>;Yi³©ÑÅLU¡ ­ Û••WÂ{?/mq؃a6u_†É'®¶ß§ Rxkw5þ‚Ð"š#B;‡'‚Ó?C›!Ú¤ áÃk'dZ¤MPĿЍ>5ÄLÍ•¸K/»7¾Mšc%*3„ý‘ZaƒŸ©<’Ç0Ò ãÔ<2‰¤)¨Íê+µe/‘vü(+à“æ{,;i{„WÙöËoem-ÜxôkïÒÓsç›9oøŒ…BÝÖl\/3ºÚÆè|¶uòÑpçŠÆ­ÝÌœ|šòIÊ'ž—,„‹ •˜ ¼a%@¿êñ΄¸xM@4Â»Èøuÿ4&äùƒ&ÔmÒ %Ò‚ÓPZXmi7®‰ÓÝ?}žÄ.B3¨R›:8©Å¶C’\„X•Ò2‘[šÚL/éžÏaKi%Uº8¾dÑ»¦ƒeÁ×´Z¬ŸÊ¢çµýè,÷ù‘‹Y‹¿\v–˜½°» $M6¦QÓéî[iåÝ•sŠÊØŒ[–ÖÿÝÄö÷?)¦ÑÂgS<‰‘¯ÉNe=±¸9»0˜Q>¿Mv%èEMäc£EÃFír1ˆè¸/êFnØ®«…›Æ”B!žŒSîœÔ¡Crè±[¨ÅZj4Ú–¯Æµï9rg¼ÐGþêšâbÿ·ùÑú„Öö£þ¾åÀ“øÖË’¯ î’x¼™‡]:ð.¨ÝöÌã‚Ì`…Gd~Ã}'ß/< FûâÆÿЭ*B'ç8Žîîp§Êq'3*¡…Gj] ¬òÜî9\ɨú§Ó!Ð_Ô#ÙÕþ¾¤—úª¶Jd6ÚQ­=0¨n—ìQÝê)3üêOpRh?Ú8è[#û[{&Rì°r6ËZŒAçŽ5$c•Bʙ۪.ýºPcþ-úâΆzR¶ôZÅ>©in¬ÙªÝ?Ù¯D}”7ÆGAY·³ÄY<9I¾B©)΃®1s;”8êÇ ¾âÎqź*8Ñ04û!ÎÚ—z={¶–@î¼ÇæÑÀÆ~ìpiä‡ïÞž|[5ï±.°^€‚E*¯KqBÊôœYåùàœÍþB©ú—£f#¢æ—³1-ƒ—+ ѨçñÎ !²ª‡‘Z|®òNïç#¼„@kĶØ»ذò“ér³Ç¢s¥u`o3û‹u·Þ'Ûyx\wˆ¼1[š+óeáÆ¬å8KŸ×t‰Õ]µ‘îùÇÙü‰À¯ÝèÚNáḇ,­•9¦8-å$¿½Úê—–ÙKmÝ1\òÌŒI^µ“¶º+ùµ=)³„¬,¡ç^%—¡™«–ò0³îL iD2æØ»SÍ–io,ÌoÆØHß#¯\eë»Ê§­ÇëÔ¹iùif‚ÿZ<)¥—Ó¤ 3gÓÊ)#)± ®²kñø )©¬àjWØW]6öÑ— Õ ß‚¹æP‘Þ´C_Ÿ¦¨" 7©®‘z€ª «ñCvÔ’ì‡áa líYk¸õ‰²c:_”`³Œv¼i> œN0OF#Qиà[’UF?2éÇÓê £Ì(Ú ‡é¡a³j³u4ó®‡ÎÇT4ywê…{P©oʃȽ$ÃÚ”`g›”‘ŠºåûŠ’RäQ¬ycŸ1<6Û8ã鵸ŒÙ¨ ÖãnÇ ì ^=ž<@0€QäVzâÚý„šAÐ1N áÃQÒ\f@˜NUÒËÐG¾™Êç¨>gò3y)cG-B(r¾hvP zèŠÝÙõ°)Íu‹¡FeF„Þè†;êúïÜÇC7ê¥MWCžŸß‚Ú¨…„+ Rb> »bò ©i³aA¨–!áG„B“šl5€^Á-šnP®à’>§0zLXÞ\Qînñ¶ì„V4zIèkKÄÁp¤›ujB%Ã2O8²“uÞÀ°y‹› ·)HQEö&wÏCŠ3SKhöÝäñêÄÜZœñ‹54+"ÕI9ÜF«ž|j‹‡9—|Ü8nÕ×µ’Kmaï)»u=.ÓÁ9¹«ô‹ jË.(#•Ç>K¶å™ \%ÀÆ€VÍLz#6`{õ% ’=UÁ +¬„mýr“ÀXTÐn2Ëטj pš°“"Mk"ÇàÆÐ˜x›1 BÚ•èmæ‡þó4; ïªsÉ| ðRb>Ñÿk#Îc¨€sÒØ”2ÃÂÊŒøAGà+8ó€´>Ù}óÃóûÕ¾i{ãʼöAŠq>™qn¯«‹[vPZ¶Byç6úHÙü lÞ ±RÇ%©÷Yèá,4¥Í0â–­mCSo—ДVX…&㊟ž“)nOCG;Q^ ¬tŒû;óJÔÆBÑ_”'ËÈËôOV™v=ˆãíš]¿hï»9j”^#"±©L»]Ú>V”-M­åé-<¿J oÌÌò;æÛñyºoàzA í¼^;;¥¸7RžÇ½¡Rò¤[žÃm÷(µ×̃Ãpy%°û¯7p•ó’Mµ__Ì?ç#õƒ¤iñv®¯`£ð>â$î»8ɯÔÁo'ÉR môìÆ®\^}ÌüËî‡ Ïcó\Ùv=÷Yt} ²hpd™È=¸(w ¼è|M .S]/Ú;aTØ1Ì› âSªb¿Aú£b?¢Öûmc’#9º À"I‹åh€á6 Ýa 4Ú2 ã·—âf齤³eö䆶>írÂ:˦ðÔg¡Rdí»½i „ØÒj±¯ñ!‹<8;“Sq¾€g[XoQfáMU׬ÕÊÀ§DÀõk%ÕžÄlG¨À|¹–`H\²j"$´#íÒ©2óŽv* ôÅA Q„¸Lò "rn¡Õ[T˜C솦3„ 0OWÑ>Ø\7XLÐ ­&™!çü·8vB+H#èy:•íó×ñ9…Þç’bpù.oüUÜ…¨ &3s÷õ%1ù—y7%É6 ìþrñ!4¨d–Áßã MJkçÙæâo»¢ÔÌ #ʳ¨†›¼ÔÒͶ|1cÍ¿^Œ¯ëЇýqÆ­5ŠCÑ®öc(‹êµJ· “l„·t".ñm¬ßçåáçk¦Q\TB´¡‹œ—[sR›e¥¢H %I݈ì÷ºRàsPWîüÂ^¸z{âŸD´Œ®¾™òÚ¿»Üv„ ¾¥·w9†ï¹{Ë茊í¡ê4¶\µ>å¸Ü8Ê:äë/&ß¶À†9é¡¶©F%è\ËzÓžXáµ­>_>´û2ÀnÙ¢Ïè„§c/­€àæä‹ƒeTÃwìã *@­AÔðvÂôk##xBñÉ×?ù ¤¡µÀuV0èŸ_îïÝU=s&TY8ÄyžÃV{Áy†P©Û/ŽÀÞ­Ç û:¶/¾z`è§‚¹ž±Âðöp‘Êƌסð>ŒVWéÃQ ¥n™<'2-iÊDê$?[ªf¹Þ™ÿÆ÷¨}íóÒ+dÄ1ÚeÅÝ]Ƕ­a£ú$¯ýËÍÊSžø$±(¢‡÷º¥½c‹]F9Þ‡`@Ë…¬ç›\ãžëvºŒj@¿ñU°VÑv¼\8ŠvÒRtÖƒ¿àÓUNv«¦öÅÉ˽T7\Åü\G_IyžëßL.êÇy‚ŽŽQÞShºÌ{¬z'ïé8ŒÆJ¢9ê¶÷è'zþ¾Á£Ze³Ȥ.«‰ãm µ Cäà¿:VRËcòüô«±V¡ˆ0ì§bõfÇ4*Kõð´ÓçR˜tÄçƒL³ŽEêòmy&ŽùÛ['»ß)ç3V¥ÿ¯‹!odåñ­¬<]g_Yžßňox77ºÁý5’xt'p‚ ê'wpl¾rã·OÆ â°£þéÿšt½ç¢çïf§û™“dM2UìÒБŒô€2iD¢è;Ƙ¸©ÍYyTÃîC˜âO‡y÷¢j*zA<ôaMEok*¥ùŒf®;j¸-OšÏS™Á>n~R¿ój¥Â³bší|`‚5Çígÿ¦5Ö/’íŠyýUl.…®3ìEȑ͹2‘•"ó#ŠÅÕc;èëçoÿã£*ð endstream endobj 329 0 obj <> stream xÚWËŽë6 Ýç+üÑH)Y@aÀsí®@vEWÚÕ èÿoJQ¢$?æ>ŠAÆÑÃÔáá!ÅØéïÉN?ßìáéø¿Üä‚5h¢H†œ›þü¸ý{3>²cø*K‘@> N¾ýòÓöÏí7þ;š¿«ýûpÀûëööDš’IØÎë¯I÷‡Ù„9LDÞ8GÓëcúý'k!Z‹+fk)ðÇ/3OcXî@–¿9o­}–§{_þxýÚ6iV_7žæ“u`‹Ä¦|̦xäò9n <¤Ä–7^D—GsBÄO^áG$¯gL2ãꎵŒñ)ˆÞžÑ^ù Ž1„…üfÄúæž­Á'o"žCÈÇòG…íË×A s3_b€åN@Ù·-¾‰($C¦Â¶-ªÌJ¢„QÈSJqÛÍ®B¡Žæ²Nk!S÷PÞ,§ÕxÊ^»Üc ò.®¸È¦"ª»Ã<·ŽgñtÙ!²O¨Î¾dÍ–à—U“¯>´„5VP¥ƒƒ¸HË”;Ãã’Ñ.ƒŽ'X˜2,>2œµÍ ^!øE`yZŠ !z¹͸2ëqåH%Q™É^êf›4}RÝ5v¨1–¨¤3lµ±‚ 5²ÔÞ±5}´¸tÅÏBm(´à$‹‘uˆgÎ !w­ëYÛèC)m„õíGUm%œÔ/Q´ÆZ˜ó*MÉ€mY¹¯B|DÈ鄾š…Jî—¾Âʶ-ì Š_¡mSÄ2êëÕ«Y,¹ÀÚÌbÛ÷BVºu"Ë C^ ¯ ”:\D’+ýr÷‘4ÉZ‚ªDsT>“/x©ê“Óº±õFrj éj´zêÎuÆ$¶µÒt%럮õŠxMl ô2Œ½v |g.ÔµÆ(U×¢²š!Ad·Á>®ÝèÉ6„Âc_HkÄ MÙ~Á£‚~4 šp4(Vö«¤ÌÚ®™¦…GM3±3 ljÛß²ƒÅ­êgŽø9rÔJ­žþ¾/Üåífkt.¸–€£iÉ@ÂÎg?Á>.<›‡¢U.MæÌAMòÖpÈR#}U×u©§Œ(H»¦~’°[ÌÄ!;Ãà[YU‘f1WHmwJpÛâ¦×ÈpÏ••«›»ù ‡"è¸kîF?T²’ tQ•Ÿûæ¯>¯SÛ'Lÿ·áõdž÷óÆw8è+¯ Á$òXg(úï|ñÔùöþÒ™ÀÅdo:Ñs´CõZÈ9dz®µj-þ˜†kºÏ®í=ÞNeöÇûb`gÍ’ÚkOʘÃu—ÜìDg<‡ô`'e8vMë·ZeŸÐøkXßÓ*«>—u;R|íú©’O±ž@XþÛ5ô ±þfg’o-¢üºqŸåÈ-Çáí endstream endobj 317 0 obj <>>> stream xœì\éÇ÷îoÒ!˜ˆub¶ ŠÝ‰-6"Hwwït7***vHœžgÝ}gü_XnpY–Ýçûù}ÖafÞ}xq÷/ïÌ,„?þá"•µß¸kˆ1”àR¯þJZ] 첤ÕݸߞÍVk;Ñêï„wo㢢¸Œ†žžž¸ÔÅ«¿’VW»,iu ÑìÆË ¯þâ=€À„F¨û+iu%°Ë’V„>B#Ôý•´ºØeI« BŸ¡êþJZ] 첤Õ¡€Ojë¾¢·: Hhš¯ùž:VCŠ@øŸòpw$4ë _n\¡)Khà׆­»L̆ªvD_K©þÖ]©3½‰_Ú·†ýßFZšQî@oй—©{JË‘­ ¥d±¶Úª mïùÓVî€ð34BÝ_I«+]–´º-gh>_qÒVÑ;sçíý²°È6žÖ¯ÿx#ÁPYsíü1{ÆVÕÁ&y·ž¿zUº¹{çβ32Õ7nz¼¾ÉÛÃf[½ü—uïeœ°'z¡²tÕµGŸ4ëïÛC{ôÞœãõíœÍ½{ll¶•ëà=€À„F¨û+iu%°Ë’V·¥Ð¼.œ¦2)åÙ´üþY:š“ÿùð¥ÚsH×ù{¿o¾U°9ÚúþiÚ8YuõßlÎ~b®¬ªgLú v¾r¿"Û¸o¿ Z}w–}lÒßÜ h«KÍ{´üªÆM»_³­\ï& 4BÝ_I«+]–´º?ÍÐ\¶ b~î§" ‘Ðä¿ùçÛ½³”ú­£H üÚ¡£Ö®’; [e¥F¡ŸRú¥C_ûãô&²Ò3ë› §ºï¬Dß*5γ,i’êëéýÍ,6T™”ú¼áËç™-¶r¼p˜€Ðu%­®vYÒêþtQðç'ݦöø ¨»n%²‘Âz¡)š.-;…xæÎÛ{Åf}:vø…¾µ¯ÒÜÂ7_Þ¼½‘aܳcÇ_›¬lxª7EHY’ÿªÛë>NeØÊQ 4 a€Ðu%­®vYÒê¶~—Ó—û"¡¹òåŸÏšj0Î4MP™¾ûuýVµ!Þõ[ÔŸuš 2#¿ùJú)'—š÷õç¤ûõÒ2e{ÊÉN9€˜B#Ôý•´ºØeI«ËZh¾¿¿w%~¥¦2š7õk^–l>xö¯wN ”µŽ\ˆ_ÙK^svhÙã7¯ÞþQì1Vi˜Ç±‹õM âo×7y[jïH\ѽ×úèdÇ‘²JŠ]×nqQðÁ Ý{o.¸ùæÏÜͽ»†‹‚@Ì¡êþJZ] 첤Õýé¢à|=ú…/ŠCŸ`|ÍÛg%öS4~i¸c»qkÐþä5CåÑ:1VzûWÔÏyýχoÏNSÖ ‘£o taVøøSý“Ó·6ô÷íã½ãUÐVåñVEh+/ºƒ÷¡î¯¤Õ•À.KZ]°^ea¿•OýÅ{€ P÷WÒêJ`—%­.|R0|„F¨û+iu%°Ë’V„>B#Ôý•´ºØeI« BŸ5¡ñr¾syW”WgKK‚cвÃ=}_¿þÝýòmanÿC+­ÝÆd–ß|#"£!ÔžÒPW0¡€OˆšÐx¬ÏNs½ðàÞ«ÏwjŽê9z[Ôýóχχ\zeTÝ|ùïóûU›=]–V}Ñê Oi¨+˜€ÐÀ'DMhšœrzÿ6è:·òÓ?þ½T8 ³úæ«_ܯÚâäpë_Ñ ¡®ð”†º‚  |Bd…æûË›û‡»Çg?ù^ÿå«^a6KK‚¥Í˜ý_‹Êhu…§4ÔL@hà¢)4ß_ß95ÛÝoã¥7 ŸŽõµ¶„Ø|âìÓÏnž˜æxï«hŒ†PWxJC]Á„>!‚BóýyÝÑ).ÞkÏ¿úиþS!ÙeÒ¹÷ ùå}F¸ËôòO¢1B]á) uøBSYûë¶žžŽµûu›ÚÌúkhò}UÈ'/<ûò÷' }íX^Cƒ¥.^ý•´ºXJãUWDÔxÕÅ"4BØ_¼p˜à 4XÚzz¬Œ´l¸V¦1cN¿ýüáÇçg·Ü(^Яûn=z/Lß3´Ls¼êBÛv‹ÐañÀ`Bàî—îF‡Úº¯¨!=ÜÕåîƒõ°×Å«¿’V—»ÒxÕé5^u¹¡í/Þ8LDm†Ã' á¯wЖ‡Ía†F$Ú |¡A¿ôpÝ‹Ð`©‹W%­.–ÒxÕÑ5^u±öï&"s—SEmQ(QÇʪzDË®.i·¢À]NP—O»œà¢!4å5…–Í®&Øi$í¨Buùø„hMHØèBJÔä7 iG¨Ë§€ÐÀ'DChìd[ Z#Èo@<:Ÿêô,à õÉËùÄv¥°uùuþ7áG}ô?¿þoå÷—ŸÒw}ÕìŒÖ¶ìËù§Bô£d]–ÿƒßß_ºTªç‰ÖËúØÖ¾Î¡áEðÀ`"BJÔùi†FW߀øí~:þ9µt—¢üÛ?¯º.#­Ql"4oý»ÆõsŽïî| ÐûÞÇâÓG!ûQ ²n‹ÿÖÏwÌr.î{öþÕ?oÎ_:ÐÝu¿O> ‚÷ÑšŠÚ¢BsåÚ^A~âv´k±š¦y”ðMmîç7Bö£d]Vÿ­(￾­¨(éPF,¡áAðÀ`"Bó¡ñ.'݆»œt+®ípuq;Ú5ø Í÷—Ÿ\‡_˜ýñ›ý¨Y÷çÿVÆ©(Ûlχážï&"#4ô`ù! …¢®˜ Í÷ןȳ¿ØøùïOB÷£dÝVfhÞ|~±÷`¶JÈyr! ‚÷¡î/ »ü,4ߟ œò]kíç{øX¯þ¶+­ Êûwµ\ \á^ï& 4BÝ_vi!4ßž|rÕýÞ‡›ÐZu[^ü—ý¾êÓo?¾úü¢ø`–RÐ9˜¡áIðÀ`B#ÔýÔmÛMîòe¹Rغ̼m»ÉÍÛ-WŽùòè³°ü¨Y—åÿà÷÷§OꈾŒê~8úñÇB¸††Á{€ P÷WÒêJ`—%­. |„F¨û+iu%°Ë’V„>B#Ôý•´ºØeI« BŸ¡êþò£næ¶‹¥éuŒ/Ñrƶ‹BÒß6K..ú¦«óCV=¢e!ÿQ ².'ÿ­ÂÐ_øP÷—uÑ¡®Tæ<ýà×tYú˾ôç}…?š]öKà¡Óˆú1'ÿ­ÂÐ_øP÷—Oué¼,³K­ö„Sh¾éŒn!4ßtyöG×Å࿸ÍÿVaè/ |‚P[÷½Õ!’Ÿù§/._‚œ”:™×-ªMõ×ñwÔw4mºvéÚëL1™2Êf”¶³ö·=|{ (Q":‘ è ˆ¢@"( Š ¬@ˆR!Dt'´aƒ!#Ac þúŸ¹•×Í' ‚½ Á*„Ðì~f1Ì*ý\ôßJ^Xû ¬µ ÿ8v[ ì¶ a`††Óþ¾ýúIðAuóŠòy{óÜ£Òç|î)•>åXô󨮽ƒ=ocád±Î}Ý\Ÿ¹'®EÒRTíDí„¢¥¢IÒ6hDȈeiNãÜÆé9ëÏp˜1Ïfþ«%K-—­4_…r¥·ÊK—Ó3¯¥ •šªLט­E[Ñn ­ͱkè05ç6~„׈ßüiiª‡©ËG(t v"K©’T5ƒú õŠv˜i?Ëh×Ê-&[·mߎºìíë#ø ºµ·oò$yçK¥Ïïqád§ h™ýÎôº‚+Á |„†ÓþŠÐXí¬·OËÝhÙ K§Á.4H_Œ<Œ¦ùM<ÉŠ,E‰‹F„†v¨6šY¾³–y.Ûäº íÖ¢!*ô‚e¢fÏnqÊ)röìÖvf™u;×#Cša?s‚ëÄaÞÃz÷’ÿí  ºIóõ‰úF!+-¬¼|½ENhè6ƒ¯zלs‰¾ BÓô-̧Å{€  §ý¡ÙAKݬŸïcÍ\ƒl&|A1v¡©7O#}ýAaƒ£‘¾ô ï‰lfºßôž+L\L8|6BCwš;]»~îØ=¶×fZË“­Ë-V8fL%NÕŽ¬DQêDëÔ;ª÷xÒ£#[;‘šøuetƒ©9}£\¥|wøùøµe 4MßÂüxZ¼p˜€ÐpÚ_1šäd5GrTVN›{r(4;w.ð^€¬E%J…n0:A:s}ænvÝlç`ÇÝÔ{¡á_šžrrösÙ´izØŒA‘ƒºP»(P†E Ÿ:ß"ÀRh…¦i*†\©Î¹§œZ¼…ùñ´xà0¡á´¿¢.4«"’º9“iÙ¹œìÌFhÌ̑Č$FŠ*5€8`ªßÔ n¸6!šA³$tɨðQòTy$7£ÃG/Yáèï$´BsÕ¼ªr[M‹·0?žï& 4œöW¤…f1±· %.—#›a)4›\7éûë÷ ïÙ™Ú¹?±ÿ4¿iÆnƼ’!š¦Ù`17lÞ HíδÎZQZ³Âf[X ›ÐTï½^Þ¯„¦Å[˜O‹÷Nû+¢B“[”?3$¾Ÿ5)/óVt¡A¾bäa4:x´b”¢yBjašÀl„FÈ…¥¤æh¯”ÞG­ÚÑê›å*å5§n€Ðð0xà0¡á´¿‚´™‡ïßLˆÈ™™JTŠí¶1s“ U„F$„¥ìú™é¿m8¸‘óÛ¹+—_½ê^ BÃÃà=€À„†Óþ Ìfî¾}=2,à ݱkJW÷œƒ‚·‘”s7.ýž5bíõ:MUtí•É• 4< Þ8L@h8í¯`læW/†¥ŒÍX×'Cë³r, „Fì…åÂÍËò†¯?°£ýkn–Ë•×VÞ¡áUðÀ`BÃi`3מ?ëç£f0¾hÂ÷Þ²ýkÛ 4 4 §’9Ôøà&Nv¾bPYU Bëà=€À„†Óþò\_Þ½}ñ± ÷spàǼwï^V>~ÜÓ7¢WòU¥kž}yMß„„†ÃsOƒ3‡l+1isÏ«~5W]¡áUðÀ`BÃiyk3ïË/|ë×÷ë´©_v™¡ÇO}úè›Yi$÷µ9g×t7súú¹Þ©šnežìw«9w£\±¼¶„†7Á{€  §ýåíÜ ²™OÉ ô/Oݽ¿nÕ2ÍÀ¾¼Zì BBÃyVVOÖ Ÿ§±ß­bØ•êÌk 4< Þ8L@h8í/…æc~îWƒ)ôå’?î(y¹)'ªÇlþíca  –]ݧœ¨œx)…ÝY'«êÊ-U 4< Þ8L@h8í/…æspà s´ðøÈs«xÅDÕ”?2д„„cͨ'©¬>ÜÚÕû®—kU€Ðð$xà0!ÔÖ}Eouˆ sÞ©èéði‡<ÞÐF%(ÐT=sJÐÊgçžwÙ‹û÷ƒ˜dR5ã‡e¾nm‡ jUÅäO¸|oHhØm%°Û*„@x€NûI‰âU¨¤°· êiÃÖËQä,¨hÍ‘õk_uU£†[ì‰ê㪊KP鬼ÁÕu÷ô|P]Ó;yž¡~CûkíØiÊrkÚÐôRãÇÏ?¾|РÇÖÞh0C×€ÐpÚ_ Mú¶Œ˜‘j¡¿îžÚ»Ò`Êýß"›ÉtvüyOî²Ý̤GhOo–[ýøŸÑ¾Bƒ=xà0¡á´¿¼²™ÌÍ™áºáòy›Hó}&ÛO-YŒž›¡¡Á˜›d£äæ:Îûy“¹É®‹2Wž>x Bƒ1xà0¡á´¿<±™,ã,’. ÙŒ%ÕŠ“ýAh@h°d±Ý²Ì:Ëõ?o:5ñö_±÷Ah0ï& 4œö»Íd¯ËŽ¥@Q°¢ZsØ„„cÆ{NèFìfb¶£Åúûž__‚ÃY'ø §ýÅh39«sÓ¥ÉQą̊朷Â_hB‰ý,à !‡Š„Ðdì3ùEzøÉÌBãåaâØÇš„ºßÉ:d’‹—«¨ JŸ>#}F¶X¹7íß ùŠg¯^ƒÐ` Þ8L@h8í/›É5Ê˘£DQÚLÝÜ®†B!4Ö‚ðÞ MönŸ…ÏûO¯ž8¹ »Ðxú޵Xëîéâé¹Ý9HÎ*x½‡è ͦ]›»DuYl¿¸éJT·fBíý}@h°ï& 4œö—k›Ù½tw±fqWJ×T£ö¶¡io²£ÍïöÖ¹E97B‡34ÿÅÍÓÓÔ9XÙ:p› Ê\ǹò‘ò[Í·6šÛþÝÜö –à=€À„†Óþrg3ù‹ õ.éEî5—:‹æB!4Vá¿4œrRv$­ j¡I ¨ÒîÃ31;3¤¶ïÞ‡_ŸÆ3n¡SÝ=yk3”ÁþƒQš Í£+Ï*{U‚Ð` Þ8L@h8í/:R0¯°L£L;J{m2w>„¿Ðü—€Ðõn$i{¢½Ð MNô©)Z¶Gä åT×{ÊCy7Cãîê鵯!TÆ&ÀTd…f«ù6ùHyÆ]ܨ.‹«ªþ>÷„†ëà=€À„†Óþ¶ÛEfí9Ùý¤AÄTmÚàpJ„¨ M}BÂúØ6…«Ð¤Ø=!~4Ë`ΦͻœÜ<üz[‡¬ÍSNô,´_$)‡Ì†!4u·o¹Ý¡á:xà0¡á´¿í‘=†{Ëz–­%­UV¢sg3B%4A¡a›ÝÃ¥ìˆvü´¬§œšÊM—vØLëBã3ÙÁo«‡‡‹§×ZÇPiQž¡¡gPÀ ß}G0„æAÉãêQ5 4\ï& 4œö—S !Gí3Øw¢w™5ÑZ.ZÎâεÍ…Ð4¹m[Þ¸"P¸¯¡á½ÐxluR·ªï¾œmÐwO7šM»6Ëe–Û®  Íówo*”¯<¹ý„†»à=€À„†Óþrh3Å“÷×:îMô‘–7£ša±¡>Xß1t1T#©}¥ÆU7ïïÐp¼p˜€ÐpÚß6å#ŠLÞ?áÀ±~ÇIÄð´˨Ë1Ú   ŸÒ#¬ÇŽÌhºaÜMX;ë: wÁ{€  §ýmÃf¢ÈÇ,XJ!Q'Ð&êÐt°Û   Ÿ²ÂÆH)Vãöëú‰™§_Õdð³W 4\ï& 4œö—½ÍÒ9ttP)™D1¦wV¡„Š´ÐlÛ~Âvg C2Ðòšu‰Â,4eN/ú÷ûWJ =¢eŒBãmå¼ŽÂø-ûd‰“РÌHÙjzÒŒ.µ†×îå<¡á"xà0ÁAh*k¿qÝ‹Ð`©ËFh¢"É%#KŽ 9B§¸QÜe£eí©MwHM+ÇEhBBösÝ6È㦢 ™î4葱ÌI’’/XhÊšß­MàÂiš 2˜Rést§iºÜZbbOá"4¤ðÃ\·M)xª’¤rþñe¤†Þ½±¡Žs)¹|õ3.Bƒñ-Ì¡ï&8 –¶X„ã÷ÜšÍ~-(á½h½–SWü,%¸ ƶtY¿.±]6C7 Í‹~}[Í‹þý0žr¢{Œ—aF›6C—\„c[ï˾sÌGzñøæ‹+jWž¿çTJï¸Ðà5ì°i‹÷w¿ôp7:ÔÖ}E éá®.wBƒ½.K)!‡SŽ 9R2²Ù úRŸ¦?‚6¢éÉ©guSÓ. Lhüýóuƒƒ‹¹äÖ$þÂüSÛ›w;·šo™Ë„ËØs‰pÙv*»“MÚÆ::†›yî¤$$d£.‰TÂÐ<|÷¤gZÏ’{¥È0ª†T?<ñ¤M©¬ý̨ËÝ< wBÓ·0?†¼p˜À §m[Ú ‰rtPé!CQQõ6cF5SŠVbùz"=Cc¦¿[ð34™yÙÔœhß,?ë › iÆóRæOMš:.qܰ„aýâûwë¡«Ô%¦ J§˜NèÉ>c:¢ý{ÅõÒNÐÖMc4uQÊâíé;<2½brbÙÏÐ8OË:*}néÊ8Wqœ¡AbAº5eZ¸åôç¶·a†¦½mñÀ`‚ƒÐ _z¸n‹Eh°Ôm!%µt`éÁ±é6B U‰V1¡î`)%É©gp?¿\®ÛÒ¯¡!ŽÜ—¼!¥½×ÐÄ'œl—Áøý-H–+"Œô£¦ ¤ T‹ÓìÝA1V©_|?DÝYɳW§®Ùš¶Í"ÃÊ9ÓÅ'Ë/4›HÉ¡Åç&¢¤ä¦Ñ¯n1CsÂÙ‰a*h´pvˆ[¦‡U†Í¶ôíËSWè%éˆ #'#Ý7¾/úÒ43f‡¯©›§{‹ëfl×R‘ÓÌXoëÑê_¦¤Pà"4!!E…æñ‡}3ûýYü°ìIÕà*¥¤²Ÿkh0¾…ù1tà=€Àîrâ´¿L› £ëw|ÿ„Qd2}Í$Ú¤ñ´ñ\[ Ÿ„ Û¶ŸpÜ’p^ú|X1„w9Ù’l—D.E­BSéÝ©µÇhòè9‘s7‡oŽÉÿ3=/“‹»œž÷ïÿ¯”z,srä¼a\n‚o–ß–´­)ë•(JÒTé MWnÝîÂp§u ½\%kâv7o®Å…Bƒ%ŒY–økIºùcžxs¥[åãšç\›Š„ã[˜O‹÷NûÛh3¡ÔãZÇ‹'ï$7:›“M¢+4õWæ.Ê.Ö)æ¡Ä8’œæGÎB"C“Q¥ªêuVD¬°#Ù…c¼(˜'¡Ÿ6²ö¶Yh4†8V¢ LQž6q³ßú´Í¿.V$ô(fBóôëAÙÚ»oÝ4þãÏл 4í Þ8L@hò©N¯ñ Ó¼œOÌõoßÝ²ŠˆAëêJ*ä+ž>æïGƒÐÀ'@hš¤…ÐüóÀÄ7ÕåÑ'´\H=Ÿ¯z2e枦¶áDu–‹–  ŠŸÐ”®ù»hÒ.<&(,Ø8|ã ŠvZ—IQ“¬I6í}!z¼gÏV%«v‹ê>Øs¯.©¡A ­$M/žymÞõ»É@h8Þ8L@hš¤…Ð|ª3tÉI}ÿÏ›¿?œïQa?±`{T3Û@°‚jÄ?›ÁQhÎõ®5‹k—ˆøýçEΗ§ÉkQ´VF¬ò ànjGh…†7O÷å+Ö¨EhI;YÒ/©ñqqÎ\¹òÐŒ«Vz»:‹¢Ð<|÷D#µÛAêáëF7Ah8Þ8L@hš„•ÐdÝøP5°ºtMM›ˆ¦B³‘º©'­g8%Bü„Æf¡ÍµªvªÌ<9šÜpòï\LɈ–ÐÐãêé¶ hE±cè°eÛ7¾PVºÝ·ï¹qcÑã eeªÉö¶ŸÄËs‡s–5‰`ÞÙÂg¢™ù\…Åù‚ÛÚâõJWž½y BÃaðÀ`BÓ$?r²µÍ*Ó¬ºOü{wÆùnv6M®VŠV² ZòÕfðš˜a1Ç—>àD>ÂæG. «Œ ɣʈÐÐãìå¢8E%ôWCS›ÿ.©É_¼ø¹ŠrÛó4¾ºöËÜ<³óß-ÚåßÙÂcÞBS÷êO¥$¥S“O=8ø„†Ãà=€À„¦Iš ÍëÛ¯.¨Ý¾±ææ§—ÎA îÈc=c:mºM‡ß6ƒ—З=¾?âc›æ±#|‡:U]›2˜W*#rBƒ’¹Òè°NO¹ˆÞˆýWyYÒWþ©¥•±j%ç§œv˜9iXúÍÃ[hPÖ•n°±©3»BÃaðÀ`BÓæmÛ7o\}WÙóêýÈZ‹ðh´FÎýäŽÈFÉð¦øt‰îâKñK¡qšãtXñ0û?_àAôM­DS2ßÈC•E¡94cÆÙqãÜ<݇Îé!oºm'Z‰Ö õœ Má?Ë̃ºìr0¡9óè‚z‚zyÿ ƒ÷yy­ÞfþNzÒ´¿ ɘ@›8ƒ6C6ƒ‹Ð$j'’G‘ÙͪˆÕ²4Yƒ(?¢?ÏmFä„&såÊÛ}µèËv–]ƒº®Û°îŽfߌU«8z/ÏHJQKïÙ;Íi3­ ÊÄ¢ÉÁ³BU<¡á$xà0¡i™—WßVv«|”ñ´Eé†áFq—– ¤‰¥ÐlZ¿é¤ôÉ]Kw±š€°ÀqäqªTUK’?TF…ÆÇÅù…²rþâÅô/mݽX­Ø¸á“‚[x†É^ƒª1Š<ʇèË?›9¡A¡îØþ\Eùv_­sãÆþ©¥õ@Ciœ›ö(»Q±sâØ6ô4v•²¶Ëù&x›a#4Þ?SU=8ýsåãÌÿêçä·[ìÿìuÆwyƒŸÖƒÐ h$Zh2·],M¯c|yÂûúéË Ÿ³ìodÃ'éÉGˇRÂÄUhÒû¥“Æ~šM᛺к,XÆW•Q¡AñvuÎXµªáshV¡e7O÷1Ac†º ÍœïkßÊß~òðëÓì²­À©fB!4(¦'Ì6mzr÷e³õHkZÍ륖ÿŽÞôa¹ ¸#ÑBƒl¦Tæ<ÝiNx\¿ôËå2Ûk­õéÅ0Ú°¥Ôe³ Íæu›Ït:cjdÚBhVD¬§Éï"YÀfDTh~r0>KÔJ"×G±ÙSH>X¯iÎ=º¤¡z;æ¯6„¦.î˹ïªkßMŸBîH´Ð|øÏiŠ–\ª·ûëlúëHuRˆV RHâ*4¾S| »Ò—B3+r¶2MÙžä ›¡¡;.qLŸ>G•fMÎB«DEhPtcÇ·PØ ÍÓ&ŽþtèîóWg?Ž˜BîHºÐ d™]ºD¸\´ðûþŽ¡™/À«g/4¹½sƒ&5½(½nÔnìÿ86 {§ù4bQ»x@ñá^‡¬EEhHç" w>{õšµÐ¼»ùvíï_ÈW^ å'{¾tסwµu_Ñ[]bCu¼]*}~•~.zDË­í–ÿ@6V9£àîß0Ÿ²7óëE™+葱fišãÀ„±bÜeÁdwá—á‰SÑ³ÔøñE…Êô1—›¾ÌÐrĂ˸“?ý¿ËFʸÝg®Ì,zÖeÊùÌÿ–/fä¿Mm »­v[…0¢7Có×ã¼ÊZòôH° g,³ÜsQší`ÏÁ›,a€~Î;Ív ¤i¤ü¾ùŒ/M2©q IyEùê²à‹Òë¦f¦ó#ÔŒhõXõMÉ›ó|wŸV8¶ÃÅð]yh=Ñiô9ä4‚]Ñ_ZÇN—±‰^°¾³™ sM‰ß+ÙU%?íÙÚúV‚„= Vuùöå¸u#4{{í ™B_žî:]-N“–ƒ—Xˆ™Ð „¤‡ÊÅȤ¥'døíÄ…_/ѦíG6ƒœ¦§?¨Þ¦Ðx¥ùèÚë;Õ ,Í&cšë  ÂD #t¡i-Χ]''¯Äë¨#›±Ýd{¶óÙ];v¡å%öK¤ÉÒ»«p± q”MÉ›ûÆõMÊLAË#\"\YX„–…Vh:".—ŸPÈ¡©€Ð€/ 4mÍÇ÷5Ó4Cò.âuÔ€ÐP&S²e£…Í›å¢äæ9ÍÃË*ÄXhR2Ó†Ç_œ´„~¦iÔÝB>Cƒ2Çk®•£5  ˆ 4mMFu¶vÖ`:šüçû£ÍÍ‘¾#Ñ ?™%GQHÔÊD3À•â¸3K˜¯¡Añ§ê8ë€Ð€Ð€HBÓ†Ð,(^äsÎO …Æ|¹…´¥%ÁÊll¾r™™©ÙxÏñ݈Ýv˜ï¡á_ìÚ4,t ZïC3‰J îô¯"¬o¸0E#bµ _ZmÊÇ¥`_yÒ¯U¤ÞhºBB  ;¡¹r¯J.A®êþ5±š­f»d-vÍÙi¾>lµŠý —v+dÈ2¬6Ðw¡áS2“”c•=Ó¼çÅ,K¥_C³zêõNB'4È`i­ØJH˜Ðx90Oœ„>BÃNhÜÎx,;°-ˆÐ,3·TÞen‚–ô]om6¦+©«¡«!cþecò¦¡ñC7„ÇOõf¡y;è7$1Y:„¹;…æö Z@hØ M¿Œþyµâ(4s-,»››ít]åzBÕÃÀS¹{X÷¦;€Ðð/I™)ª±ªk©ž¿{R…Yh¾JK×KŒA>œð¾s½Ð 5 4 4 ´€Ð´*4{oÐJïK_W¡I¡o,MùuµÍ*Á Ê¢¤Åãc {:E ³Ð¼ÑDŸ˜™jE(Ö0C3X„„„šV…ƤÔÔü¸…˜ Mã)§r'~÷Ví§fÖ|¾&,$#'mKf¡¡_Cƒ8“`nÔp Mh0  - 4­ M¯Ôއꎈ©Ðl5ßÕÅzËêè!aÒ”_vXÍÛ B#@¡AÑŽ×îä±):-Mh…†î4ok_î×¹_Ç«!AØm„þBÃZhšžoG¡A™¸QvP0a‚O·]»Æ›™/¡¤ÐlLÞ$6Æ/jWó¿ò(8­áDhè)=}âWŠ|øþ4f@hX ÍöÒ»Ž[Š±Ð˜™šeifÉDÉlݵÙŒ¥¥TS§¡áw‚Òƒ;QT¬©‰ÂüIÁŒt§Lœ–`BB  k¡iz¾Iü„Æ|×øàE wLïK°´lŒ……< Ó‰*·<"T$„fqªµrÔhf@hXÍþ›‡šžo?¡A¡êPe#d·Xl©Ÿ­<„¦'yÔH⑚¤Ãy¿Pd<BBB  ¡q8é´éÈf±3ó¹]--;NsTáÓ÷¿ › p €…¦ÔÎÖÑHÙjùÿ^ Ð%âòÒj—ˆt¤¨8æÅ€Ð€Ðìøþ'ËdÌ ° AÙŠe~ÿÁ2{pšÊÚo¸ÍÙ‹o9šq»Ç']Må•Є„ìÇrÔáÚ]ÂÃÿl3g—, òQ„ÕŽ´†e[,VQPt¡Á^—k;ÉÉ«m×þÇìl~™º„•[/æÎi0¾´Ú%"}c&¡m£/,¹‡‹Ð`:ø4dá=€B ®à 4XÚbT—¡¹öàf—xÙoñJh0¶åZh~nÛ07S/4K jáôëfºò\h0N±pÝ{]®…¦½mŸ÷ÕBsª?a‚]£Ðü©ª*ø—V»DÄ(k§q"}¹½my%4x ;lÚâ=€B ®¸û¥‡»Ñ¡¶î+jHwu¹š ouϱš§i*4ñ•I“ ô~–!.ŽþþyŒºÁÁÅÜu¸P™Ð=Œº¤ðÆzKËŽt¡L0ð¢_ Ü‘‡B“_Tè[PtC`^«º\ÍÍ\a”ÎÉ«á°Õ¿RRHbî*z4 ÍçŽÿÒj—ˆÄIü5J=}ߵƺù·‡[")F‰÷9ñßn'öŽh\Ù|=f¡Á>tðiÈÂ{„ \š–B³®dƒóiWž ãÈ¥-ÏghL­ ht\àžÿQ…æ¶ÐÏÐ=}¼MÚ<-µÙ 2»æBcÇÚc`†@hp¡A¿ôà"4+Þp"4}Òú”Ôå¡Ðøùåb9êp-4!¡E­]CÈ™yËÏÆ~Ê)¿¨ã©¼êb¸†¦¢]û—ÚÙþhöyz„0®®¡ÁøÒjïÙ¢>q¿·ª¿†æÈŸ¸ –¡ƒOCÞ8 d€Ðà ÜåÔLh.ݽ¢˜¨xçñ} øs—“º¥eGôØšÍ`Œ‘œ»œžõë÷¯”ÔËcˆ¢p—ÊâœUæ=ÕdåÏBcþkýù¦Ènþ™î%,nóÆ"4Xw9‚„W@hš MÌ•ø)…,OW þcÌß?}ÐÆé*ÁD$>‡†·ý]ÂGRölUhþË¡c%ž”YÏÜ”S 4€$Bƒ+ 4̈́ƤÔÔê„   ÍÏI)M—îº!6§M¡A)--êè„$@hp„¦™ÐŒÍ›V• BBBósŽž>Ñ9Fú7ŸÈ6…æÈ‰#ѱ]Ölú_g«ê¿<ü®ßÚºJ|´.‹¢ÐlÉܶtõRž@h@h@h0 ï8§URkÊOÖ9ÿ&5éÏK 4ø i]E¡±Í¶701¡¡áù „„„³ÐŽ÷HšòVý×¹ æ~‘סÁ¥.Ž¥%°.×Bã—0Ìa  ÏH 4 4 4˜…&ä÷ГĆåªjÚ´ûïBÿ‚ÐHTi ¬ËµÐDí¦v÷íBBÃó   f¡!ˆ=_y­¢¦Ð÷ew…w¾‡¯^¡ÁIë²( MFAv§¨N 4 4 Y"# 4t@hØ#êBÃÅ›œëÑ{[žÏÐÐÓÛ«÷žŠbž ãÈmÐfhÚÛ–»é™S®Î¯è–÷’êÓ-à hˆ ö€Ð´7è—\„¦ìÌãÖ6õwëŸw¹€OBãç—‹å¨#Qu±”Æ«.ÆÒ8ÖåÆf\œè—ÝQ!hú×/´×i° –¡ƒOC–Ȉ ö€Ð2|úÓƒ§_Ìä“Ð`AÒêâXZër!4/û÷£ Í+™úKéÑ‹þý&4Xw9ÐÔBÃ1š¶#’Χ€Ðà^ÇÒX— ¡ùWJŠ.4ßiüô&´„FÄ„† {@hÄ@hÆZŒ¥¡Á½.Ž¥%°.Bó¢ÆgÏ 5©Ÿ¡0„FÄBÔ…¦½uù|àÄíûä· ¶Søð„†]fmšåw"„÷º8––Àº\Í)WçBsÒÍ„FÄ„†§NܾOš@hØeÕŠUvGì%BhVO½Þx@ÒˆXÍX»ÎNï·[Ò¿ÔÀ«´Úq½¥{Ah$ .BCwšü+Õ‰.4ŒÏ®O†ÃSB“–W– B#bBÃÓ'nß'M 4ìb2×dëÁí!4tÖtj"4kf^”êr|êÒëÖØ |.ÕçLø×åNhš©IË¿åÄHΡ•=?êy ˆ Oœ¸}Ÿ 4 €Ð°‹ódç%{–I®Ð¬[P¬(„ÆdÝ»©) ?ž B#þuù(4Ùuê]ÿÊ„SNÂ" 4<=pâö}‚Ð4BÃ.Á#ƒ§í6”\¡16Þ¶`Ôí_Nüª–¿`-\C# uù'4…ÞS>öXöóŸÚ¡¡¡¡Á »Ä Œ5Zr…fý’lU™š1óv­Yé5¦û+U£»AhÄ¿.¿„¦ éÌÅW)»[kBBBBƒvÉÓÈÓJÕ’\¡Y=­º³:ueýâÆ•ú7;w?Ÿ B#þuù$4y æO´/ÅçµÚ „„„„ 4ìrDîˆR‚’ä ͺûå;Wo¶v¥ÇØîïä‡Á54’P—?B“»KÿÏ£m÷´Þ „„¦µð·£,cÛ‰À2„ù),sëÇ–•Ö++ÝÉ2­áy%:íý`½öþüù M}.ýr©slç µ—Å_h˜·m7½y{ƒÙ¬Õ²¿Öð«lÂÙ«öÀ54P“Ðd8üwÛvó›·óÂkz)ÝsOe§A 4 4 4 4|„¦>— —µRµ Ê‹Ä_h„».Ž¥%°.fh¸mBBBBÃs@h…fR3|ëâXZë‚ЀЀЀÐ4„F<„fnÚÌîþK –á¿:%-Ûwñ" NHZ—Ah@h@h@h@hxM£Ð ô_Ú?sÕ™šÊâƒyŽ™1Uâ&4$CÃ?UU?wìˆѲÀê¶1øQ‹J]î<¦þOôïÿ¯”R´ B#bBBB#9B3-Ф{ªþÙš+Ås5½‹rjÄJhHÓ¦ýhv-0½Ó€ÐHB]nlÆÅ©Å§l¯Ó€Ð€Ð€Ð€Ðð šF¡I;!Ñ`N°N2;}µÅ¢~´»£ªÚBhþTU@].õµÕåBh^öï×Bh^ôïB#bBB# BS[÷½Õ%°·]ÏBBBBƒš6„¦¶òX¯ÐiŸ¹=rl+>x%VBCwš{ݺ¥Œë0c—tâ2v6BuÙ9Í·1º?deÑãçý{ÚÛ„„„„# 4m z¤^™¿ËÄ@hè™çdþ?²|›»Ð@]>„„„„# 4m ͉»§µ2úŠ·Ð˜Û;þ¥¼Éu¼¤%­.    F@hÚšû/ËÄËÔ=»#ÆBƒÒ1hÜ¿é 4Bò’–´º 4 4 4 4¡a‘”Mg‹ãªBƒ–û†ÞóÇ~ñ ÕaAh„ä%-iuAh@h@h@h0BÃ"È`JeΣG$4ôåY1Ëü.ˆ·ÐèÚ;ý*eãhB# /iI« BBÞ=LÐc^[}þö~ÿ8ý¿ðêçÓîl¯`µ—vþü%ZhNƒ„†n6Á—ÃV–¬o¡Ydç.Mê»Ì nÛŠ—´¤Õ¡¡¡¡ášö&uû¹K„Ëq[ÎüÝp]°fº¦x Í6{§ÎÞ ‡‡ ¡†—´¤Õ¡¡¡¡á.fh,•®Ÿ¡yøê©j’jùëb,4vöíܤ)2vv 4¸¿¤%­.    §€Ðps ÍÝ»“V¥ÑfÞþùäJš J/ë`åˆî+ƒÐTÖ~ãº-¡¹Pþ±Í}J®Ýìî{ö^¹j’ꃗOx"4!!ûq å8›­ClügÛzúþ6¸·e8¡>Á‹›ÍýÛççøD,#4È'÷¿zϹ‘TTÿƒ‹Ð`y]áø’–´ºX„Fû‹÷„K[,Bƒêr²Û4JnÐѳCs†ýQÌ¡ÁØ–k¡aßÖÀÖ{”Ÿ¥£¥ Ef³ëf{÷ÞM…¦à¹ƒ?Mïè_uïž—Ý=,çöÃö .BƒñWp¼^Ò’Ö‹ÐañÀ`Bàî—îF‡Úº¯¨!=ÜÕåNhʯ¾gÔ½PÑÆ<Ížªkš^ñV§ìLŽ›bÿéZbBÓjbÏ”kDÎ3=a.®B³ÍÞIÎ*Œñå&·M](]LMíáƒõ .›|ùÉuø÷…Ù¿µµ’U@hà 4­æÁ˧½üTï½|$–Bcç`ßÉ’dnïÈX31p‰ 4P·Õ|ý‰<ûû€ŸÿþÔÆÊVBŸ¡a—¨²‹òÔ)µéb)4(½¬ƒìÜ_Ú8Ú¨FªÎñ™BuYäûóOS¾k­ý|ïC+[ |„†]î½xª¼a\®¡ø §~ºÝÊðQ6~¶Þõ³5+Ã=õÒëO<¹n’¡Èw_¡ºÍòíÉ'WÝï}š‹ Ë•lBŸ¡i#Þ‡vˆî’RðDÌ„L©ô¹µ+¨ClüéË葾i¦ïÌ>ñ¿?úø „ê2ó:ÿðƒ™1_}f½’íó€ÐÀ'@hÚÈÝçOdˆã$z‰™Ð0œÆxJNS›¡gJʺGŒ^ýÓŽ¿I Bu9  |„¦íl."KSzo43¡Aq3H»D¸œ¥yÈÅÂ¥éúÜÂO:ùº.ÝAh .oBŸ¡i;>{Ü!Bkœí,1ú MÀ„¬³ÿ»x¦ó¹ƒ''ú&T÷·õHë{=„êò0 4𠎢G ë-NBÓôºôx¼óù¢ž%'åOÒæÐìèw9{r©[j÷¬[¹ 4’\÷sqÑ7]²²è-c¬ BŸ¡á(ùÿ©²sÅØl]݈iÓ¶¯_/êBC¿Ë©©ßxꥭ :Øó`©jé!—×t½8þ÷)µdµ¢¿ŠAh$³îç}…?š]öKÀè4 4ð ŽrœtÅ{¶ÌË.‡®íÞý‰¼¼ÇÂ…"-4l¾4ü\ïÚÚIן|Ž ãÐý#Èirnï¡‘ÀºßtF·šoº:Xê‚ÐÀ'@hÚΣ¿ï½×èa ÷ YvŽéJäqzzåå0Oƒ‹Ð þ¸÷°²×Õë o>½úòØß'ÕSÔs=à%­îYY†Ê<’oX•ÅR„>BÓv^¦§<>éEW¯IJ~£éªq­[·ˆiÓÄVh®¡yõæý_A÷¯t­¬ÛtëlíÅi==/ûðû^n!?ÀKTÝ÷_¾|ÑÁšwfhÆèb© BŸ¡i;o|¼nÍ·Dz±xÛ:éˆ.Æêïß>å`À»³¿]§LIÖ‰4T‰ëi´ùÞÑÿJÉ"9ç¶ã“£'a·•Àn«áAôfhp¨ûáõûnýOí0IÉL¥&(…*ån[ýFC#=9­ákÐÏÙP]{G‡Ÿã»ÅoÏÀ=»fï’‹›ç3å>ƒJ§d¤ >¨nFN–àƒê‡…>¨î‘²c-r,õÄY½sÁÁƒ#÷Jìm³Çîà‰ÆVä"?7ioèOÒÚ{ fhàŽr<¼ÌßC‡\›5ÓmI·e&Ò{üùm3B(4ô­ ¦Ž¦izkŽòm¾ÒÅÆ:yé’â©ÉK—ºØÚ€Ðˆ–Д/[rÒuº«f„æ dmÏbï’²£,]„¦iðÀ`BÃiÓ“Km­/­Y]²ÓR-XÕ(±BCO°QÈòµ+”B•ŒlŒÂ7n|®¨X×§Ï)ôø\I ­¡ ¡9zèøÞíûL–˜¨E¨é& =Hdï" 4Mƒ÷NûÛÔ3ÌMÍGûŒ–p¡Aqppt^å<Èuàd›N¤ÅÓë³çÍ{¦¤ÄÝ< à„æØ±h—˜Ù&³å#åç%-ˆ;œÀ‰‹€Ð4 Þ8L@h8íoSÏH¥fôôíéLs“p¡¡'yñRÿÙ*!*–S--­é+ÿÐÔL^º„F8…ÆèoãGÖöÔîÜcGìÎÂã{9wš¦Á{€  §ým¡.[\LÊL¡)žjpJWÇÎÚ~¡éBéHÙnz[,Ñ´žB“žê3Ø>œ`Þʼnº:&5¹a}RJÂ\×´RÎ5Ú.Y2„†jãCìoSÿ£¶#Î B+CÃúYÖ¯!X’6„¶ý$–$«)SäÂå&ÙN $ý|¡ M»‚÷NûÛB5Ò©Y£ìFÓ6Ð$/]òGMú²±³¹jÐØ_(²&«•"ñ@hR }bÍâRcRSœCÉ2Ñžih}ª“o¤ª_"15ÅÂ/RÙ71F„&$l‚3q]@ˆoHèO¢´-qÃ`ÖX³o¢ÏÒˆ¥š‘šj¡j[–n‰\UTÈâ.'šöï& 4œö÷gÛˆ3ŠWŒPŒÌ H¸Ð¸ØX?WRʞǼ‹;dùÔ%Û;ÿJîÒ;@›Ë.^rJNŽïoGµMMKIK6t$/ŽOE+âc{8F{¤I€Ð4IPH˜¦ qsHB¸1|ÓpòpišôDç‰a:a9ssBÂ[¹m„¦½Á{€  §ýýÙ62¨ÙVl˜@›(áBƒBÚ´ñ™’Ò}4Oéèü¡©‰–Ñ#—ŠAã~¡Èô »ÑmV¡IOõ ŽRôŒªŸ¶IfKÞ™Ò°>%þ7[Šuª$ 1Ô܃$ïê֪И‘Ì'DM”¥Éõ%÷ݶcÛaµÃE“‹HÞáŒ@hx¼p˜€ÐpÚ_–±wþ> ¢†}ª£„ Mý<­MÒ²¥ÅS ÐcÓû›V:Y*ùMý…,¯Bê»Ð{±£=7B“žæO¢(9Ò,è—ËH²ÐCm¼ˆ ¶Ä ÁMVþ'4æ¤]zQúJ4%uªúÌÈ™aÆÄÓJ§Œ8åDnñ< 4< Þ8L@h8í/KáÈ f“tIÑ ™É.4ì³ÆÁIÕcu’–YnlиMn›Û!4驞¡y{ÚΤÿÖHì)'bÈ.¢¬ qm› 2%™)L•¥*u¥v5݆d›°5áD·GûÙÃò©@hx¼p˜€ÐpÚßÖœ£dÎáI“'-¡i3«ìÝÔm¥ý Ö¨GjøO5qÝіФº“ešØLÃJGŸHU¿Rj²¥_¤’„\ºÃ£þZ`ºÍøýÖE¬MÖéBëÒƒÚSÉoæ¢ ZO³Ž>2àH™zYÒÆ$6ÏBÓà=€À„†Óþ¶æÔìâÅòÑ >i~Í6¥%j¼Ÿ¶!ÖTûtIz–Ù»kX+»nÓ )C‘éÑM?@³ÛÖB“ÚüÇhIÞÚpÖ))9avÃmÛ²®1¶rÛ6ým{‚÷BØoª”ù·ÅK5m=é?Í4ŸAN(œÉX–ÊþÙ@hx¼p˜€ÐpÚ_6ÚQ2ç°ã6DZ=â2Yþ¹Ê4ÿ(EŸÄh‰Ÿ¡aÄÎÑa‘‡ªUhë@µ#CFÊ‘åÉŠ£‚G¹åìMÇ.(â$4Ž$'££QäQr495ªÚ„¨‰Æá}‰~Œˆ¾¤‚)…纜˛™æOäD@hx¼p˜€ÐpÚ_6Ú‘A; {am²aât;¤'O·2ŒƒSN,´f®§¢U˜¦uÐ:{×L–hÐ9¦sŸ8­‰3w¦˜‡§GJ Ð…[“lE.A¡@S§ÉÿNþ}iÄ2'¢s‹=CƒÃ²çgŸ•=»gâžÎ/Ç¡áIðÀ`BÃiÙ›GɜÅ ŠÔbÕ¬RmZlŠŽ¦)9Æúµÿ|“Ø =¶Ž3í¼ä¬Âú[n´wA¥2’\SÝV$Œ%#§«:!aâúä ¾iþ‰É‚šœÔä2;›ŠukËìl³Ñ^ü$+ë"ÖéGMéGé'E“R£ªé’uWD9Z“’”µ©§•NvbOå\e@hx¼p˜€ÐpÚ_öæAŸ¤q§y*Æ(E5ý¨½ŒT ¯HMbJbûmFB„†GÇi¶Þ²VÄIþ’Ãæí!Zç"ÏHÎH H 2òÚ1ÆÙ°[l÷NѺÇv׉×]¸pG²©Oš/²> Í Àwêê† »1g6z|«¡ÖðÊcâ³=3¼7§n™›j† F†&#O“B2+rö–ð­^Do†yøOÏõÜÏø-£5q¦qÇ{œ8¦y,Ö,¶½*BÃÃà=€À¡©¬ýÆu[,Bƒ¥n›BCŸ¤AY´pDüÈäÌ4úʤä„!vÉ›“¹±ŒB²¡¡PsÝÖÒÑq]ä%y»ÈÒJ¥ÏÑ=2–‘¾ø¥ìL1_œ´dLüØž±=‘â¨ÇªŒ9;yíŠ$£mÉ&N©ÎiÁq X„&'5ÙÌÙ¦Œ5hùm7 –ó4yù×Z—ôœLJÍ'ÓÏ<ÍbEŠ‘~â”ßâ)Æ*vŽéÜ7¾ß”$ƒMÄ­áÛ܉­™2Ô}ºÓ ÇãÏèyì”ê©ä ɉI¸³ŒB³ÿÐ]\„ã[˜CÞ8Lp,m± Æï¹Mù OÒ¤R3´âú®J^Ó°2-”HVð®#se3…c[®¥ãìjNKM]3~EòQés Š6Ã2IÉAi!)–[2#æ&Î0qPÜ XN1¤cdzÄö?lrÂäé‰3æ'.@Æcœ¼Ñ$y‡eŠ•Cª“WªwpZhd:™š^ð26;ž‘¶Ö‡ia'hM™-ZHÌNFû„gE„e‘|3ýóÎØ¦Û™¤íX›²nQòbäécÇ Œ¨«Ò!ºÒ—>qZhͼäù[R·ºd¸Ff‘‘è°¹††¥Ó„NÉ?û¿‹g¤Ïg.É nüó¸ my"4x ;lÚâ=€À„ÀÝ/=ܵu_QCz¸«ËÐ`¯Ë‰Ð0&iHé‘ 1 v©ŽÙ¹§W9ÇMNü\Xô#'¯F`BãïŸÇèopp±À„&"ò £.×ó4ŒÛ¶É)©V3ò/._æ6ÇeŽçvÏå1ÞÃvª­élÓ ‹7,Y³dÖ¦Yz¦z:V:ÚÎÚ=}z*+Ëå[äWÚ/èÐÛj¨B”2!R•Þ‹@êCLÒ%øë|g¼–ÜŒ N;‚U¡Ùmç\f•~.úQäö=Bô#!‰O<ÉøQ'&Ÿ˜Ð(¹Í¨»ÿÐ_ž¼…ù1tà=€Àfh8mˉÐ'iУKšršàô0º”p7=#±34t¡¡Ÿiú{ç×Ô¹÷ñÓ^« 2TÜ–*Š×+ÞâxÝZÅmÅ…VEq°ÂaC&ˆ(C†ÕÒë¶jÁkmëªW«¯¶vÝ×.­Ôª}Œ&‘†$'çàù}?ÿO>''9ùç}¾<#çüÅúœ‘×Дú3dÈ‹#4§‚›\Ø«ß]NMŽÐÄ; œ{RJ Fh˜í²˜îÀ*òKÖ×ê"4ºäÕ\Jƒ4ä`Å6·^[zgmÏÞùáYF„&>¾˜¡IM;¤»Ð¨¯›Q?n&vŸÕ£Ð|P°í++õ54Õë×½l Mñ¿ÎÑ'4ÖШ;MvN)#Bsè㫌ŽM˜Ž®ƒé »œ4­WCQÒãI¹ÃsF(XhtÁ𻜠r—“r´F4cŸ^v3µ`—SJ1˜o† ¹<ÝùÛ!'Ç䌾v9i.4MîrÒÚcô"4ºv9hB£i½*ùI¼×þ¸b&çýmoJNå¹Bh´˜r2p49m´³0ÿTPàÙ÷–‘[º¿‡ÆÀ¡ÑK0ÝT@h4­WCóŠOÕÔÕnÏÜIŽÿÕõ#ót ÏüušÖ(4z@hZ¡Ñ´^Í-„xLe›Ú½ýO*V~$%wÊêÄ+€Ð@h 4M@h4­·E""s>PG vÞ½íÉÝÈB¾I– ¹…Ð@h 4@h4­·E#4 ›lgí-1®ž¾´@”W@N„˜e™Å%Bh 4š—54 @k 4šÖÛ"›iØ¡ó~‘ðÉñØ…ù«S³É]Ïüõ–[,%E© „¦É€Ð´B£i½*ÈÓýÆj~OoXº]tfj~ÁŠm+»mé–º=½åBãê¾¶Ÿ—åëKÂj„B¡a¾Ëbº¨€ÐhZoK—¿¨Gîö¢¹‚-¦iëd9 òZm±Òpœæ™Ð,_åÑÃÇÛÚÃ}1½"¡Ð@hZLwàMëÕEh½u[ÏPÙÈùüÜ¥]¶tI4·yk½Œ6¬Yb›Ð@h 4Ó8@„FÓzuÙE…ÎÉYæiŽ™ïYl±H.j&4“7ø˜¬_ßÅÇ—òõéáéN»Ù@h 4M‚é B£i½zE„gåu – .ë”Õ9±(E3¡yc£ÇL7·EîÝ}¼‡®†Ð@h 4,貘îÀ* 4šÖ«G¡!±¥¨Ð1asǘ6›ÇÆÿ•ÐÌ\çÕýéB`·‰^>=ܱ(B¡aA—ÅtP¡Ñ´^ý "åy&|÷7ä&ÞùMð³EÁKÝ×wÞà1sÕÊÅ«=ºûxÙ­¢×g 4FÁtP¡Ñ´^:„†ÄæÂ¡ɯg˜:g-¹Ð¬\é6Õs£qÞmïÞkÝ]iö „B£Q0ÝT@h4­—&¡Q„[FÒë²®Ö©ïl-*hZh „B¡Ñ$˜îÀ* 4šÖK«ÐHÉ—›È‹‡ElÝ¡Ð@hôÞ„éxY¦;p€ ꕇ¤©#Øî©·Íšý·TëÙ©wíyÄøûA T±çWâ"ßwi÷'E=è»ðó”÷5œü儯×–o“tŸz%âë}õ:äEš{”jîQ€=`„†]õÞýów^U¸Ñf‹·Äu·¿ÍÉ9ȱ 0&·ìN)­®0Lz£cøŒIíÉ$ïF//ÃÉ+”ˆ $ïÕ¯n´ .o'.ò푺/¿¨þ:tÔ£Þ«o]%'wüäv»òüµ«ÿ¾•:÷Ë9_ñ¯C^„ܾìÿ?FhZ¡ac½¿:l–Ó¥GÂØ†oÒS ƒ9 „Bó2iˆOD÷-œn_V{ôú¹›™ ØxÞº¡0„†-õÞ¹ÿߪ3ùYÙ³•Ä‘»_üúeïŒýÔzžJhø1¶ ÃBsëâ-Û?¦f^¿ùäü¥­¿QÔŸ$Ú½ýG/iø"/k€Ö@hØRo\‚MB’me]1ÅÿŽv‰T§4ê½à§B` ¡Ð0)4·.ÝŒsøãÍEßœ½¦öÐõk—Ëoû½ýpHÈÍë3@hØR¯,Ó)>ÁFš6îæ—g„âáDb¦ERÆÔ$>åãKñ£Ch 4 Í­°ÑûÌÿ¶öjOø4í~§ ·/AhÌ¡aK½Šù¦c¥¢°pKr{÷qýÙ {3+ƒ¨îªˆÊ™À/Ï«‚Ð@hš›ŸyÔûy›¹\|gƒèÖ'—¯]®øš÷ÏGƒ1B`  [ê½sÿ¿‡ŽÅ’ƒ›?\’¦S Õ<Ùå48 À8:ÆviÑts¹y”ST•wMi„BcX¡¹´•¸ÈŸ”2†}÷É—Wo~~+þÝßMÈÝ7þ°_òÝI¬¡0„†õÞ}\¬TtøxÉ«î¹'¶õÏî?!xÂa§#e‡+!4O9µô À`@hX]o#¡!q¼êÔ²]Ë-Ó,ã&ÇU¤Ó5ý¡Ð@h4 ¦;p€  «ë}Qh‘u|kù€Ñþ£w¯ÛSZ ¡Ð@h˜iÂLwàV×û2¡!q¢ªtÝŽ æRsï>'÷•Ah 44 ÍíüÜz;»G:!Çõ`º¨€Ð°ºÞf„F;NŒ90W˜¡Ðè]h¾Ù–£\¬X¬£Ó@h4¡au½)4ŠØ´%ÊRhé±à£SG 4= M½ÝÐFBSog¡QÓ8@„†Õõj(4$94?ÀÅBdá_pªºB¡Ñ‹Ð<êÐH̯í¨3}¨‚Q BCÎ@h”ÁtP¡au½š "ò7ØÙÛÈlRÉ 4Ý…æ[[Ûœ1T$jÉjê;?¡†U0ÝT@hX]oK…†DùöªçD+‰ÕäíSŠËvAh 4Ú MÉçç‡Ê6YˆºLâQu}U_©w»p„FLwàV׫…Ð(;YQ:·lÍR³,³%»]V‚Ð@h4šÏ®_u)Lo+ÚikÏôºÍ »œ†5ìr"·· òt± €>šsi}­.B£K^¦êÕNhq2ìêáÞ‡ç%½k–mæ±oíÇ•%†š-[+±øSB#M=ƈÐäå×êWhþóÕÐCm6÷=véæš”’ÊšŸ6a¦;p€ „F—ku¦Þ³Ž×겦|We­mí®» '[æXòú¯:E·Ðè8º£µÐè8´£‹Ðèx­.R¢G¡É©>l)›ÐFn²ô€×g7.6#%Z|)Ÿ^„†…M˜é ‚Òî—íz‡ W’ ¡]^í„F÷¼LÕ«Ð|\rC™÷Èá[Õ®5uVu¹›·Ü>ªg^¯ÐCá'ªJéùæeÞ¬-ZŽÓhá%)){”yµ§ÑNJ„ÂýÊÔRéQƒ MN^¹2oÞ¶Ó: Íó'l¶N{-³ƒãŽg¾ü´©>ó£2oåéŸ &4¬mÂLwà¡aûµºŒÐ(+ÄUu–uU5iÇÒÿYôv÷Ü­Á GFh\F„&'·Lëk‹+ìwŒo“iÞ;mñuU-’’š3?2"4,lÂLwàØåÄêzuš&¢ª¢Ê£¦Î²®BÜðgº³OäNØ1±svg}ž+ëKht ìr¢5’%)ï¥-ïñ¦qf“Ä¥‚c'þ£­š^hXØ„™îÀ* 4¬®WÏB£˜~Ú\UgUWíZSZÞp7ÿd¡sñtÓ­¦s>œ[xj;„æU¾”ï,s6“›Y¤õ7ŠZ5O\öÙõ«†T €V 4¬®—¡i˜~:RyzBm­mmù®Ê§S¾ßmï*‹‹QÛG ŽŠöì} ¡ye„Æ'ÕwxÆc¹±mêÿX„ •„Zð×¶!4ÍÓ8@Ek~Øõ3Þ2~;__*$Ùåèïï*züÝÅ“.‰a9ïë;ñÌýÖÑj’—¡y:ýÄ«©3¯«Œ©Vž,©:v(Â&ߦWö é‚éÁq!/5ؘ )Ö<)å+5öLŒ‰"'£úù6œyÂÅÑ= T'àÿäÓ”ÌN Ô •´çIÜĝЖògËætÏìn!·pJù÷ˆx‹©[¼Xñ(ƒBS{lUã&|WZCË%>ó¤ Íû¬¾u4a¦;p€ŠÖ&4QËwFœþêæõ×Ï—L‰ñ¹ò€œÿíëšÉaü%e_}ýócZò¾‚Bó$Ê ªjûÔÕÌ:ÝðåÂjçã‹K‡J‡’ßéÉ튤•M˜?~dPòÂȘ0~¬[˜Ðˆ—ì¡?-=BÓ\ˆÄcÃ%Ë“Åñ"ñz¾Ä8@âûT_ÄqI’>Á’wÂ$«ž MŠD°:ÍÝ.ÃÎHndŸaï!Ý0-ZÜž'%·‰jÒàÐädù¼Ð„ŸšëGl# ßi%M˜é ¢µ Ú”ÓÝ_rÄ3ÎÝpïá燒ºn9ÿí]Úò¾ªBÓ0ýt¢²Æùtí›uåÛ«”'kh‚ãB¦ ¦[¥[uÎèì$rò hRA¢¢{óËøCL9 D’¾þ’5¢'î"ÛJD‹CFh¼S}Ƨ7•›öÍìç"['w‹[H‡†I"_‡ SNª&üì?<šâ˜¾;oüÔZš0Ó8@E«šÇw¾øhhdöÎï?¸w¿<Ô:¯hdˆ/Å‹ž|àšþÍæETFU×™×UW« 2Ö&¬.aœiüVÚ[ssCâBÕçž„FOB#ùFK:%M”®‘1²£¼cÛÔTü*„÷lvìÓÒ8±©¿tD„$Rø/ȨМoÜ„ŸÄ¯?å¡)ûñ>MM‰Ž—eº¨huBrá£!»Â;狇fœªú¾þ«/N9„%Fè}Èš+B£˜~J®>ÝéÓ¢)E|~ÌËÍ#Æ-DØ.?ž›]œøNqÌš\å]rœ0åÃY|qG©C¤$þ…¿uÀr¡))ËMH²#BCn_Ö„!4­iBóïó{|Ÿ[HHØi 4$¤žÒt›#æž¾«Ò6cî™®î7ZG`\Њ¤•ÎBg{ÉðA9cÚf´5J7ê"îbd=,fØøˆñÓƒ¦/ò]´zýj-lÆÛÝØLž££ò 9þÎ̬Ñ8Bãé½no¥KЂa3'FMz;Î~@ò+‰U‡ô“ÿÍ<ͼ°]ü°I‘“æ…¼»Êouókh^ b0Ç«N£8ž´(Oñ§%uQF„¦¤4GÑr‰Ð4Ó„!4­iB#Ù7¡x¸!ß„Fqáñ)#w›¯ÍXî’«/›ir ÍŠ+Þå½;%dʨÈQƒã÷NémžjÞ&³ “4“n¢ný’ûÙÆÛÚóíÇn;)|yæŒÀsüçÌçÍwõv]¾q¹Û7Eˆf:^ìÕ³‘å\îÙ3sÚ4å]¢JE»ï¬ôs[î¿Ü5`é E.Á æ„ÌuŸî¸Éi\ôø±#íâíl“l­S¬»‹{tJíÔ6³mÛ‘™ƒySðæ„!£ù£ß‰˜:?ØÅÍoÕF¯ZQóÛ¶ßZ\b\=aažòOK¶:¡IHÚHhšl€ÖP'ÊK£YŸ_ÛFBCÎ0ý¦¸‹ûôÂ×Ô÷l2x)TPêÓ°‡9z!çL%ާ’GQ‚a”h%¶¦¤½(™•nBe´W„QÚ¯É~Ž6íSÛ›ŠM»&uí×Ó:ÊÚ6ÌvhÐБ>#<f/ŸíºÀÕc¦ω9&R0LÝ?{W·]eFeg¨3†‰:ꌷÃΈh>ÓÿòÚ£lÂJ¡i² ¡1ø[Ó ¦;p€ŠÖ1BC~™{a„f„!߃#4lË»÷Ëæë2¢ø§È-9fÉõ{w=trltò¡£Cýþ=,ÿ¨I/ºr¼}ÍŽuä–³ùsn>”MXm„¦‰&Œ€Ö´¡9{ao#¡ùäâ~C¾vþ´3|^…Í(>>> stream xœìÝ\SëðÝ$ AE»ÀîNìî{õŠ ¹!‚„„twI‡ )!˜ b¢¨ ¥bw^ÿ^½Æÿ…y7Db;gÛ»x~÷ùìÎvöpÆöî뻳òþÛ'U^ý…؆$ëÀ‘CXúâÚ_Që+‚»,j}7X¶rîÖ킵¿ß ß„Bìaœ“ó Ëhèè舥/®ýµ¾"¸Ë¢Ö—ÑÚ˜C¡‘pí/î0 áëýåFß½óE»k?¢åd½ó|²¿m¶þ'?çËèQߤ¥Ñ)Zæó›š—}Yù³òÃþh — áëýåF_ôTW$YBòk¼ÌûÛzëöe£PM#èbVþ¬ü°¿Â¥høz¹Ô—þ„·Ç¸´¥§=þÍ—Q#›€æËèQ|~Só²o›V~Ø_ áR(ÕµŸÑCJÔÊuÉ™RÊ… üQÇ%ާª¤Fôpåf9ÍRþš5kæjÏg:n°Õà6»ïì®â¢¢ìõ‹œE<„‚žQ¡åŽ~J¨$%X¡¾T)~})ÞC(žc(îS).ó(Žk(;t)V[)Û)f¾Z€Ð׺©éèϼäö;XK…þp?®ùšâí3¶s{ å7ù!ö4ß×g¿ôØ´º‡4¥!¿6œ»Ýt‹±ºb;ôs{Åþ]åÄ雸&}i¸üÛ šÉ`ùß鈫Ú'4Ùö&Z6°:Wv ¥ãOç+Â?¾Þ_Ô7» ãåº-»PâìÎ%ûŠ$JBm›¹êkf¾•ãE37Ûd¥½Ô~étç#ÝGöõ髨Ü>¬½X˜˜Bb7Õ¾>ýæ&Œp1aÇ„V3æ[Ì_¶uÙr³åkL׬3Yw¾§ÂKIʇvß§gÐryE-C-tÖ:Óuèb ·-ÔÜ®9ÍfÚ|¤ãÈ®{xöPòS’ –ú5üWtÚÙ§s?·~£F¡+_f¶LÛ@[ÿ¿ ]öðòä}¡¾·ßçHå„_BÐâ.¥ÅâçÐrnèËû»tÓšʬ*Lõ=}ûíýb_M¤gõëÿw5f–|uá%G-çºR´%ãÆ‹W¯ŠtºŠ‹Kk¦<®ßdˆá±úMÞ6ÖÝé¶²«ªVLnÄy )Åõ…Ox(½=¸I¥»NÖÕ×7Ótº«lúá\Â…{‡@ Ìhøz¹oˤs“ ´Œ4Ó¬i8 ÃU;V#¾hxjtèÒ.¬L°ŒšoÏ¡žC'»LYà°pí[, o‚Zë·yóš¼ä4o^Kþ9ë×/6_Œ¸ƒÀÔǽO'¿N¿‡ý.(£æ©6|çðm©©–>Û4tÍ ÓšmWi^¤/ h^gÏT˜”ðü#Z®{¾æÄÿ>½ÿXé8XiQÞ“ºÏ:È[÷,iœ´²ró3˜+ë¯ê§·ôdSvÿRªV¯Þzö2*þ_£‡Rú9t®mUZ~Ue7°÷ç.Ü8a@Ã×ûËqÐ$dgëMË24Lg¬Aš \ZÀ)ÐÐÌÍ6Xÿ5Óiæ@ï²Á²bab]ý»ñ‚Ö¬Þ±ÆÐ¨Íkh4tÓÜVRú§];tÌŽfšÞ½µ¦kgoŸ=ÊaÔøø²a²ÒáÒƒBiÎÑõÓsòv ÐÄm½“7W®×š c:R(¿þÞ®§é¡Û çJ·>˜þ’Ò/¿÷²¾y{5Y«[»v¿6ZÙpUorYâïÔæÙSÐX;@ˆX4|½¿Mƾܑ.‘3¼bö²paV@³ÅÒ`ÎÎ9ý½û·m¯¨4Ò}äbû%M^?"PxAÓ¸œ½]´ý´§MQ Uo?8D}µÿ{o~Íãû—§W^‹»!  aÔÇû– Д}üôþg Ng¼Ò4Aavæëús; vª?÷[ý«N4³~\IÉɶª®þ5©Ž½U{¶ú’“!¼äY4|½¿œ BÌÏè1®‘Yù,]¾Ь·Ù0Ömœr@çöaíûúô½s¶ž¥>G¸á7Ð4.;o{¤` $›Þ!½,²ö±á[ÐÔì¸Z¥]#H ùZw¯,zmyš7õk^Ò2ÛïÌwNøM—h}ä\ôZU™ó|ŠŸ¼yõöz¾ÃX9 ‡£çë7™}³~“·E–VaA«»ªþo5\Z®£Ò_‡›|`c×î:{¯½¹•®Ó½«Öa8(²høz9š%þq#RórY¼üϠѲÚ4Þu¼|¼l°ìh÷Ñ«v¬¦n£qÐ1|F¹x»jùi-.Õ;¤Ï*ÿUŽÞ;ù 4×Ý*ë_. y5…~àKÇÁ˼Ž3>‡æíóC–Ó:ÿÒðŽíïçzìùS]ýð»c¥“ëøŽSÓ^zÿåù©Ð?w ŸA‘fœýäCý•ÓÏmx(½}’G¯€Î•o–ƒÎåÄîàÀ!3¾Þ_Ž€fChbaɹ9¬oÂÍæíºS\¦(*I…H ÷±ÎvÃb„ 4LÙx¹nðûK=D]"\bHðP¿ÍüšÛï_”½tóò]M“sÙý`½Fdiý\.=„qà„ _ï/yИD%+[‡Dgíeï%ªœÏKì—öôí)*¡á©±rÇ*n;Fà@Ã(oÇeË»†vU S\°ÐÑÛ?h߯˜Wy5ìºðƒ÷C÷@˜Ððõþ’u|jGËà°Œ,Ö7‰ËKüsφNQ=:t™³s®É6SÞ8FpAÃ(C_ÃáÁÃ%Â%FÙêcŽ4WÜ®UþQ  áöC÷@˜Ððõþ’[r:ÒŒgJ«—ßë9)q²t¤´æî9þe&Vrò®£ÓÔüŒå)+d"e7¦j¥åg²xmd@\„4~~q&&¶„ÝMܽ<–,• —Ú˜ìyãQ‹ïEj½ÎœÛú®†_¯˜[ÉqйK“ >„qà„  !³­£ÃÚ Zñ2ßkÌ©·ÿ¼ÿöÏóv¡;ÅÐóšûn<®ã§ß™ä¶¬øc}H¢ÚO_n€¶µÍ´SŽVž–4=>/‰õ—®H‚†äìaМÚ!ÂÛZúl;sXÚðõG €¦ÍÙ›•w/Ê^ºý€Ã !s—&>|ãÀ!3bÿè!6:T×~FÒ‹X_b¬G¾/®ýe4ú»vw± MÈÎf®ÜW“u|ür•èþN‰lQ† hüòûDtž†€K<=³}ýüð4QÑÅŒÖæiPeç|u=ë.§°ã”ý­Ç÷X¤Ì¹‹¯}[Ÿ§)X~ýÀ-N†ü]šhøö!Œ{‡@ ÌÚ ‰O æÃÞ±²mëò°ŽßÓäË ² r´S7ËDʬÝ협ÏÞW8Á gh<þ;(øäͳÃÓFÌÈžyñnß’ÍÖ ª*ÝšÛ«0C34ˆÐhÐ?zoK4dúâÚßÖAã””&cÆ<2&"7r@Ü@8°Üˆì}5Ä4C4~þùX@ãé¹h¢¢“ ªîl)2ì’ÐuOe:ëó4m^æZÂËS+8 2wi2 áÇ0î0#0ïrºTãã7ÊÌL ¢ewçÃw9ýüåÆé¦2‘²›RuXy÷@C²Dá]NÍ‚†^‰—“;Çw¶8±õ—ŸZ¯[×î]”ºxûnÓkƒw9q¤pà„ÁÍŪlÚÇSxl~MXFVGË`ëø=ôö%M×3¦W`NIÊhð‚UÉí ÃÓF,Ø·¨úAóï¸f·ÊG\®Ý{@ëÅ=€C f4Þ¾#›€ÆÇo/¾M“/7Ø‘e/%·Mã/7HØ—¤§1<~Dâ¾dÎj@Ã' A•py·BœbTY,Ðܺ]Í­?F áHáÀ!3‚šKÕ9M@SV“ÇË_€@“•Ÿ7Æ5jŠg4ZðÌöVˆR\²†üñ¿~ ª¼+û•ã•ÝK<ɘæò„ŠÚäŽî0# yÿý]N£Þå4úRM.»óh_n —¦/)k›iÇ Êhø 4¨ŠožVKR£3# ššíW« ~8Œ@ÑÂ=€C f4ô"ó94|8²Ò—.Œ•ñýÂs2§'ÍèÓ+<7’{šÐðhP]¼[®¾GC·PŸh®ï»U®þÃGöh8R¸p €†¯÷—ú—„e% ŽSŸ0!5?ƒ«šÐð!hP•ß«ÒHÕÐ>²™ÈGÔÜ¿Qæâ­š»Îî0 áëý­‡ELJ'«·ôðn1ª‹“—ré  ÿƒUŽšaiÃÿ:¤EÀ43+¯E3£Ðp¤pà„ _ï¯SÜ=Ëà­É Q ›Óôx@ ?ƒ†nšQ飑iØMõ*­ g ÷@˜Ððïþ¿s¿£eä†KÙHYëÌ<Ó €†ŸAC7Fª†É1*[[]/¼]Ö‡y €†#…{‡@ Ìhøt+ž?W¶‹œé¦¥àíËKÍhø4·ŽVKêépz'[=¼QîÒͲ»î0 áÇý­}õRÍ9vm¾µR”·ßРDР:{ë|—„®þ¥AlLí,¬ºr@ÃÁÂ=€C f4|·¿?Ô öLÒÌ0î•Ò+*ëï5 Р*¼~¬S\§äÊT/Å£¶rM5€†ƒ…{‡@ ÌhøkŸüß„ ´q»7õKí£înKß¶  ÐÐ+­*S>NáHí1V.|ãÔK*eî0 á£ý}ûåã‚èœ1«ÕÓ5nÿïþû¾m@ i\~çÔ’Ô.Þ-gå—º”Ý8s@éÂ=€C f(ÕµŸÑC {eç|›áqXÙq¯èáI{_`ÿ} ¨V$Y Ž’™ý±ÍKž˜vûˆÁ3Œ¿*MkçRZ;— ðO`††ÕýMÍJçle¤$ÜnQ¶qÃI+ËŒ=»—øFË{/P‹î›ϸ ê«…#¨¯)ÕK¡Öž>Þ¼/Ô×GP_K«í$ËÂʲ¯_¿aÞÃÚ¼dØ‚ðìÙhõ­ûú‘÷…@ƒN[z Á ! «ûËYÍôñz×YùÉk æ£Ó'”ØÎìÕ52#ºñÅ4‹fc¦¬°Àeaës4ÜyZò´åv g ÷@˜аº¿œ›Aš)15¦ÿhž0Ý`‚ªÇoÉAM.  а^Úv:’¡’›ìµ[¿Ø1¹ã®ÚnŽî0 au9š“Û-žh¨Ó—·G%JïÜ,³«ãÙIýNZYh4dj‘ó"ù`yª ­•ˤ Kž  áHáÀ!3V÷—ƒ )Û¸áÚÂõ^ñÈ5Ðv–Ú%ã•æƒÖ õ Éî=b€ï€V.¼$$¯O€†#…{‡@ ÌhXÝ_NÏÐhd…fÇjÄÊ„Ê8§º¢•O4ÔOXoÐhHÖVksÅ N­LcgjVülÎÞ¯ò…{‡@ ÌhXÝ_C£Ô¹¨—‰\°œÅžú—™JLŒÞvé’±g7€@C¾6Ùo’ •Ôß±¥¥ *î÷¬Ð/Ü8a@Ãêþr4i)G„ôvùÝs]×úw9i¨#Íôõþù’ ±šî6£[@7 +ËfÏM“R´þ1€†|áÀ!3V÷—cšIË8:òè0çaKã°Þ^¶q:ýyn@ !Sˆ2=zLvŸÒì¹þ«N¹ !_¸p €†Õýå h2ÓN96Ûbö¤¸É{²ÒÚ¼<€@C¸ l %B%tì6ÿ|–ÍVÛR‰²wÿû@C²pà„ «ûËÐYV¸^{ƒz´úîÌV. Щٮš**;ðtfÀÕgE/4$ ÷@˜аº¿ä5s@ï Ý\».»º6þr €†{ A”éÐm–Û¬ŸÏ:ºêámÛ{’…{‡@ ÌhXÝ_’šÙg•Ÿ88±cDGŸt?Ö·ÐhHÖf;]‰P‰-; š¬?àü¶zB €†dáÀ!3V÷—ŒfrÄÔf‘¡‘žñjc')ªÓb¹õ6¹`¹;W6^‰ú^™yõɾ2…{‡@ ÌhXÝ_bšÉŒÜ[¢X²ÜuùÐØ¡)Y©nƒÆ{Ǻ+]°²-0x/fh1^k´S–j¿JAƒjÕÎÕÈ4H6As×åþ­­w4d ÷@˜аº¿4“ž”y¦Ç[š­r”rtF,‘תø4¿Ô¿Þä'CÛ9¿AãåJ=ÙKõ¼“—ÇÖ³*8C‹®ôWܨîcŒ8íU_¿¾Sܧ6Íó3¯*‡VhÈî0ƒ4åÕ_oK4dúMZZÆI“»—'ËDÊ{¤y›à!oïN€æ{RÍçS=ÅiöÚI`Ð, ‰)È¥r}åvô£«Þ5Ù¾œ›¡1Ô74]hâÞÞÔvmsgûûšаc¬_XljP [Chêþýç’lÙ›gïÙEIyÕg, !ùæÆÐ{‡@ Ì` ™mÉ€†äïÌžE2ÓM9~ṯ~Ñýt’ý‰i†$hHnû35L¨6]hn‹Y Ðä¤äÜ¥P¾ýP½Y7 ïr²ìBsoØN}Æ.JÈ|S7ÐàvZÙ÷@˜¡ûG±Ñ¡ºö3Ú^Äú ù¾ì‚æÈ²ÂS}O¯ŒÓ77;ç+Ú<3û Ï@ãæ–ÁØ_/¯|Ž€Æ˜j¾˜æ)F³_ß²E|ýò} ÎÓMTÌ Fߨ¸’ú•.Zw%ØÐL‹ 1Ü:ÒxûJC=CÓEÆîâÔMfh¼¼r­ýýò 4A}YŸ§¡ÚÐ$C%µít ¹ç÷ð†þ-Ö9Ru­ñC‰È< 1Ðpä!Ì¡÷@˜V·e]!ôžéqfgŒ“\¤Ü®Œ(2ïâƒæÛ¶¥hγ¨4¾¡i¼!§@c`´Òh§BýîûK™îœnØü14‚2CcÙð¥•}ýú2@ówù›Š¾•0CCx[Ü8ahÐ?zoK4dú²Ž’|ó‚’N%ñ‘‰Š‘ŠÖ{lК̽X@ãêšÎ а]¾¾yX@SLlC–_rj1^^ÙX@´ŸÝM¶Z›Ë„Èüéðçw”|ùXÖ©üÕÝ:¶PRU‹ç’an ¸p ¼Ë‰ÕýeŹŽûÎÉœÛë—36nìü„„ÃÐ ÉY, !Yd@C&<{—£æ»,èÐ1ËR»æúø'„ÂKÐ|sãjqà„ «ûÛ&>cfi¨)fÝ¢UYüúI €†Ç ±°²T VtL;DƃðÇ×7ÜÐ+Ü8a@Ãêþ¶.úèP÷GgÄvŒ”sIu%¯Œ ÑÓ?¾ùO2Ðòò•¡ü šLíGªªÅÅÑ)Z& šâM—z2~DËhЀÕ"çEc'Ñ…ñ²ö]y·Ëb…{‡@ ÌhXÝßVØAÿ½Cë£åÉñS8òb^Ðx:\“ÝB7 :e,ó'h2µµ|·6…€iƒ ¦Hâ,Ý4—…4V–*Ñýóï¤#ãr÷Ë/¯¼Ð(Ü8a@Ãêþ¶dúèÍ;Š–­÷Ø(G)'d& :hP_ºcV­ å¥fˆæ±j·& y¤ªJò%'ºcl&ÇrU3¸@ƒŠ¶'qRî:2®kÝ|ú@C pà„ «ûÛ¼9>@ZˆËLPŒê´c§4ƒ4È«—‡ýÂüªm|eæC±´¥Ø˜Rìÿ¢8-£¸Í xަø ø«QT)AŠÝÝ~‘ó£HQГ¥¬?¥›;e ã¯ƒ­¡Ž™©7sÅ+L昸r‹ïXæðÊÖ«”raëäîi#h²rþí½§ÏáGEˆŸ^[y@C pà„ «ûÛ,8Šæ=©q2---ÏI˜3=~5ƒ}†¦ã–£ñé<ž¡IÍ®3õ£® X;-hú Áòa í"Ú)„)ö í94dè¤àÉóƒ suüu ýÑ%-ý¶ŸSïòR’R'^?7óJ’rOŽr|Dgc]½?6, \65xÚ!ÝÂT¥Â¥Ðµu ë:*xô²Àå&þT7Vfhf %În\æ'| A}ïDÎÊŸxñú~]™BYÝg Û…{‡@ ÌhXÝߟµqhýá3=Τ'e¢e·4wÙHÙ˜Ì8á ý§q)Q¢xp Íæ­›ìX0ÌmX§€NíwIu S2|nм¿6Zømw÷ñlóˆà&/9elÖiéÂ~´å+ÆíÖE,\L5Turð§ô"}CýÆš¡¿Ò„4ÃUÓ`ÍËÏïº$v¹ðw9FŀʗÞhØ-Ü8a@Ãêþ6¡Fu‰bIfä^´¼'+m@̽d}Îj#hèïr*T(tZãdÊw9ÑŒÛ.VwW—”ïéÓs¢ÓÄUV«²r>|—S÷†w9uWÍÐiQ3?—‹¯›¿‘fМ¾1£Ñ¯ÑÇ£Ï,ëYÛ¦…6>nifÓ¤Œ%FæB » Ž›Žë …›†·ïy?а[¸p €†Õýmì ÆèÑ4I1íݱFh@ƒúnß¼ýtûÓTS*gchf8Çüþ^ý‘TüT¦ìœò‡å&T2s¤Pߦ§î˜ªæ¥F—Í‹% v Í´§úrÃ4xAs÷åâäo½¿ÿ8ãÙÕù×4ìî0 auÈ`|€ýÇøÌDùHg}ð ÿ€&@3 «O)³Üzy?¯~babÝ}»Ïp˜±yëæf/Ƭ§c¬3Ùn²|€¼\€Ü$»IèGî™/hPéën?oýæùÿ.É–½ûø€†­Â=€C f4¬î/]õ ×©$ß¼€aŽ%‰K'ÅMæ†fð‚&}@zÈŒòŽ103˜î8]!PA>P-èmÕkýòüF–l[ÒÇ£Oûö#wŽÜl´™¦ÁšŠ×5:½ø÷MÕðêç§^hØ*Ü8a@Ãêþ"^dÄeéqæ€ÞA8‚Òƒ;Dvˈ>М”:i£eC†2›¶mæ6¬}hûÞÞ½—[/gq+¾ =L7ôwë/"1ÉnÒ"cgMƒ4¨fåÏŽ¾wkÛ»N÷4lî0 auÓR2Nõ=}dYacpŒ‹¿6i—4ƒ4Aÿ;&{Œ0et·êw.*1Òu¤¶¹6[Ûò!hèYm¶º»Ww™ ™Ñ6‹8h~Íž[ãr&<-xQ3í €†­Â=€C f4 õ¡vÊ÷qËHûÀ\ÿöÝ ³À]h½œÝÉ}#OÐ?@¡ 4¯Ž‘rü\`þM¡ö“b/0s‡(3Ä}ˆŽ¹kà[ÐгÄb‰\€œŠgñ­Î1 ?€æõç÷*I*gï•^’¾ôîý ë…{‡@ ÌhbucÐÔL‰ê¾§öꇗéãE÷>ßðzŒ;rÓnmîi#hN¼î»À—]‹hÚkJ†Hð°qÛF³;|=C½¡ÎC%‚;ˆÙè‘7 ?€•M©î‰-Õkžþ@ÃzáÀ!3šFÕ4ŸlqI´}üážûƒ3ª¥ý¶Æºd0©á”ꢩ˜”™,| ÑÙ s^²ÌBß‚u…h›k«ù¨)(®Ý¾–0e4ô,¶X,$ó›ûÄEÆ4ª®nøÜ¹Y&„Ï›gª«+ˆ ©}w[.N¾ÆþÊmë»Ö ÷@˜¡T×~Fu¨úʺ©¾-Ó:ë¿3o ·H1ýûœbžˆkƒ-²wd2/<$v¦Ñž(ü¿3ê€ëÛ3}¯°xá윯Æ{¢e#;ý±Û)+çö_ž—•’ýzPÔ:ëæ"*:­ëÒç˜öß@[bæv¦«zb…@ÓÚ¹”ÖÎåÂ@ üÁ›¡yñþ5·êeåD«Ô¤—ÌõþÈ9Û¥üIÅóœŒÚÎTç9›¿g¾Ù|™@m]íÍ\º©ÊÓ¶Oã¶fpæ`çƒ\ß¶ys»¢ûîî´S[ŸÔ½àà_A°@s?"¬nü¸õ9濆vt8K_‰ÖÜ 8М©8/#Ÿ§¹¯4ø€†ÅÂ=€C f4̓æIÅó2å²C´4Õ¤ÊË/ÙxÆHS76 c!m¡l€¬Îf¡…¾ÅY±³¹_[¿­"ª"âck8þW,Ð<µ±ú[[ -P ¼:wLIJCËh Z/p Aµ&w݃ ë/hX,Ü8a@óe¾¿m»¾äô3Îôº|;àîÓ§U†~áhMûsuuéÈèáÑc’õ$h h|øæªå¢¾-ÝVOëþÞRlÐ3¹×©‡%Üø[hîï ¯›0ž¾’¦ä¥”¿{Ýøq÷¢"ÚÚöJÞÜqvAèÞ%fâ0ZGg#€&élJ·Èn¥}/hX,Ü8a@Ó´ž?U9ºêºùÍ&ϲta¬4Y),©¥§%¬ IÑH‰˜Ñh¿{¾ôÀ²i¹Óo¾ºË¥Û_°@sµºâc}½é?z$xuñ½Õ¯[ÛÇÐ\=ûGxA@IUjÖ»y[\ÄLmnÂT½{Ç ‰)-аT¸p €æÇzûºfÁ•+k®½¨kú,KF—þ#íFòF3X@s\ö¸Ãz‡fAóøÝ³ù ææÏC ÜûhPÝ*Èû¨¦V7aüß›6Öç²²c?GÕ’äó¬¿ä´QÛ¬Õi6€Æø€éêm«K½¸u €p)šêšîõêÙ5Ï_½úùYñâƒ?ÄCÄ7èoVÐØjÙž”:‰~Í£·O5óç.Ü¿ˆ«šDÐÔÏÓÔTÜ‹Šxjc…NÑò¦X1c*RªYMö§…[Ü%hkxê™A“]ºO!T¡t·^uÐ@ .E¤A“´¹ä`\5ãÇâ—Ov*}þ¼©f ê8t°Ó`ži†÷  š> ýgÐÜóxFÞÌeWpö MBš&Uuëê¤èÉZë´ªR®´uá«A¡9’¦v3´y;?Ó2hP Œ1)@ÃJáÀ!3" ¤™"Éï¦9þ×åó¿” ªjéYVKO«}Hûµ†k…4{ûì Ô lšçï_-?¸iæiÝßÜÖŒp€Õ™kçU"Uü&úµjššôô$Y«CÓx®™ÖAc|Àt¥öÊÒCš¶ ÷@˜iÐ0L“3ï|é/Žx4¯ú³ì«)Ý=ºóR3< Í”vºýi«ÍVM@³õô¶‘™£½}ÊÍ hP¥—ï•Û%ŸÛ;·yÓܬIJŽë`Ÿa‘ö…÷ši4¹¥ùò çœÿ{Õé¬ÿ[ å[}ºÞô3÷ÎW8NúWzÜOë4„×uРÚmp®”r!kù¹ÖŸe•|”4Í5…4Îkœ  éË ÐDTEöLîuíï¼ÑŒ0•]±Ã€¨%Š%͘æê©1>)€Bs›¤Í/ A5(xp¸Vø+k:4Í¥K‰›êÔW>œ·@@°GÔACŸ¡Y75ñÚS³˜Y!$¥£Ë‹ÓÚ¨ QIÓƒ¦àö!…xÅÏðL3BT3²fÇ™^”»ØÒkO|õÁzÌWÒL×n\Û:h.q}ÙwÚí‚·&MÐ@ ìiÐ0Ž¡AÿDn|<ÍÏ5?Ñh„ýk†Ç )P)ðZâÅÍ•¿k;'tμ‘ÍKÍhŽÕœ•ÏÛ]Ð’iø4é粺xv)Íi4ç’ŽT[|ábú£4{D4Œw9!ÐÐ}“¤Ý̧ß>xû¤C¤Â:ÃuB sCó³bgÑ)4šùs·žÞÆcÍhPÙ;ŽHQ‘Rݬiø4¨ºùuÛã˜Þbô-*~Â3ÐÿsiÈÂ=€C f`†¦5ÐX—Øê×ñß—S ÿÏМ”:i«e»Þr½dˆ¤þV} ióvæhÈ߯Þód†Õ”‹þ ©?’f‚ßîèãgH¾Ë‰Û34µ¡AÅKû´¯SŒ–a†æçÂ=€C f0€ý£‡ð¶d@S^ý]Ðôß3àÀÃ$Aã4¾¾y¬\Ìa½ÃqÙãhAÕWušã4úJ2(iåvæ*hÈܯޓÍ©sÏY¼dzy–j‚jõ­k‹#2<ö#y «k:÷@s=$ð…B]MqŸûýp`†iŽž|ˆ4dþÄ\²pà„x—S‹ 9ûè¼J’Êó÷¯H‚†Lxð.§ˆ)))Km–ÊÊ›ÐLȃ†d 뻜50yPLiü¦Ä\ËÌC$AC&m‚¦n𠄘uÊ ³ï ©SLØ1 É¿/7®÷@˜д§R—MGuϲ š\µ\ß¾ÝüºÍ±ŸÃX  á^Ù;ÎÉž‡4ƒLÃÏ ù")YqJ‡Ê{±zР5š&…{‡@ ÌhZͤœÉ{jÓ„4fÆfgÅή7[ß!¸cz@ÃÕ:_{I&FÖ!?wqD?ƒ¦N}0}bfÜvʱ~ 34êš&…{‡@ ÌhšÍ­×÷:Ätxðö‰ð‚f)•&A£Q,ׯêãÝ›qô €†5#k¦nžã¿Ý5—ßÿ´ºÎðhjCƒè Ù¶‚â<¿ášðM“Â=€C f4̓&¦&~Ö¾ÙŸe… 4Tª4•ºh×8Ž’!âF4# Ï@c_ì8-}~—˜ï34̸"Æw ¡›¦NC}ïh±‰–µaÁä5 @ Ü €¦yЬ=²Îí¢§ð‚f •¦@£ì|p”c× Î›œ  ájÕ—‹‘W° ãsÐÐ+÷\á/a§Ë/h~.Ü8a@Ó hžÕ½TŒïtáI™ð‚f1¦b®oqDöˆxèïúæÝ4¼ ª¾»ûýnk^uóÿƒ•XhWÇýQšŸ ÷@˜Ð4šãNöIéÛäYVø@ã²È×`©A_¯Î4Z A£sPWÒsáɪJMï]³¦Æëh~.Ü8a@Ó hÜ.zjÕjÐÔ¿ää=.±§KÏŶýi´¡ƒ&àltÐðìó4kÓ¶+†ŽÐü\¸p €¦Ð,Ú¿8²:Z¨Ac@£J뮡u’2¡u ÑVhx šƒUGÄÃ;E?# ‰?µ÷׹󚦅{‡@ Ìhš‚æùûW ñŠ•Ï¯5h¨6›ÖζíJ¡ÑFШ©ÔL ávUݺú{„„cúŽÿÞ¶Íë7o³šó•—~ —ˆ(ÊÐ4)Ü8a@Ó4gë±[íçgY!MðÌ`9_¹¿,þjøi&ÑØ4”Rä€u{¼ùöƒõš”bÄ •»4M ÷@˜Ð4O™ßGþvÐLtj¨ê!K£QE¥ÊhxYÃ㎋ÕÐLHZÞ'd €¦IáÀ!3š¦ YqhUpE˜pƒ†fJûcõí'þ·fh0€fAša‚š­ûÅüFhšî0 i š®‰]Ðf1¦lFSô[c5ù¿•“àƒæ^LdØÒ®ë6ÿöªïhÿY³ø4éç÷þÒ)ëÔMãÂ=€C f4?€æÊßµrqrÍ>Ë hÓ_]ÚdA‘ ¡Pë_fZÜìå4ÜÕLô®oÊ‘”YÔï‡óÞ4ì‚æ\ÅÅß#ÚoËÈÐ4.Ü8a@óhÒ®gNÉ™*¬ ¡Ñ”é ™¶“¢îA?tF@øKó 44Ôb.«P†Ø}Í-EE> ªn1Ç…ÙÿñRáHZ¥¾â}.•ý´òÇõÂýPªk?£‡ºˆé ë“]—&mÃþûp©ÌÍ¥é éáKY´£~­Áþ[‰`ýÛ^!æ‰ EÙë;hÐì¿U›59v“´ëúVfÝTß–iÕÂÍMkçRZ;— ðOo†æòÕ*Ž }aVÖlÏÞ?_ ß‘›¼6E„ã­”ßÂ)èy {ýö47qÌÐì;¸Ÿ­ÒK×÷š›Ë\™Ÿ®a¹#¿…›+´×èfh Ç ù4ݺå•+htug5~Ÿ6*´†}ÙŠpÜÔ­ÇÖ¬o?|žÅÇ14ì‚Æ)Û¥cÈ@óØÔÖ@cðKýëMÊÎ Û÷h Ï a‚ædÕÉ(Éò« ­Ó˜˜(R©íÐiKšáF_Ö#47uëA¦¹©¨øO»v/ûŽñÃô.'vA—Ÿ !7×7®EÐüWYû²­Â¥ìwGÐ@ @ÃMtIìð=#š½€ˆ<Ëbµöe4¨ÄwI¨Øû¶ Tyy©-#í: @@¸ 4ÖE6kö­Ð`싱µö%š¾±ý$íÌwçík49¹ŽARvIa0C@x 4H3–…VŒ}1¶Á¾@3c÷Ìž>ZÖ éõ”a¾CUk˜+å㨙yp áU4LÐŒOz&@ƒ±/ÆÖ"Ø—h6¦iiD,\äO`[ áj4LÐt‰ïº¿ü€c_Œ­E°/Žlϲֈ×Ë>@ @ø-šï 9WsA z³²h@ÑhxÍwЬÎ[cS´@ƒ·/ÆÖ"Ø—hÆ&ŽÓ6ÜQJ¹¸ Ž¡Ð@X €†'Ð|Íô̧‚4xûbl-‚}‰f–÷Rýù&(`†@a5ž@ó4ƒ“§”¦hðöÅØZûÐ Œ±¦ù4Ÿ…4p €Âj4< €æ;hc‹*ŽhðöÅØZûMÐò[\mÇ&ŽC ÙïrÐ@X €†'Ð4€ÆÌ¯]d»–>„@# ­E°/±—œürúÆõ£ƒ†@h œ¯·š­dMJ³E‘7k¶4Ä‚4åÕ_°€æØÉç-‚f›£rœr+Û’yÖñö. ó¬#R}É´ÆÕ—dkŒ}‰‰$.?Q>J hÈ \²pà> €k0€†Ì¶d@ƒú¶k3õ .¶åÍæ¸ú î¶ÄD’s`ßï»ÄJ)å=hp ;­l‹{‡ðY4XC!öb£Cuíg´!½ˆõ%š§Ÿ0úonž†b§Ýʧê›[£¯—W>±g‘êK¬5®¾i±/Žäå_EvŒT>$s(7ÿ&Ï@C~èàÒ…{‡ðY4X34  qX·,NýMwño”ß>3¸QÒô`ý'¸ÀmKfs˜¡aw[bS,¨zÇŒLêž34HÓh°hÐ?z°€æÄé'-‚Æq†þfñwV{ª/_·šø¿?+9W×t2Ï:"Õ—Lk\}I¶ÆØ—0hFÇOóâÏ{Ð:¸4dáÀ!| ÖÀ»œ@³s¸ÍŠ®wÏVÖÿxÖû]Ÿõ×Ë92µ¾[‹`_ ™“<×f² ïAC¦à]N^@ƒ5šиp]!ñÎ&­úÒÉZÛñ_ÚOº}@ƒ'¢¶Ë‚šµ©è-ÔÐh M ÁMh꧃–+«"fþÛ‡Šþ ©Ö"Ø—0h,²,gëÎÐh M ÁMhüzÅžK¸|¥¬:ÛåeWÙw.G*®hðDÔvYAãœí:†:@ 4 €k4   ;«BùF¡|“éûÚ"©ª¦éDðÙK_Œ­E°/aÐäõ·í Ð@š@ƒ5šÐvɼ˜ÝÊDðÙK_Œ­E°/aÐÄå'vòè Ð@š@ƒ5šÐ˺|@ƒ½/ÆÖ"Ø—0h²䈅ˆh4¦Ð` €@ÃG}1¶Á¾„AƒJ"P"}€÷á³h°FÔAs{WØ{ ue¯_n€–4xûbl-‚}É€¦³[ç˜ü8 îÂgÐ`HƒævDhýÀЬ?åµDýBK¦Ág;,}1¶Á¾d@ÓÇ®Op^€÷á³h°F¤Aó?õÁM@ó^C@ƒ±/ÆÖ"Ø— h†Z õÌñÐàÀ!| Öˆ4h¾HJÒAó[åó¯õ h €c_Œ­E°/ÐL0ªÞðI”!¥YÎ:~JwòÛÍ }4X#Ò y¯¡Nœ}ü¥¼¢ ÁØckìK4³tgmϲޗeÿBº±Zöš ÿ¨4½Ûa鋱µö%í%ÚëS7üÇgbÏõüg§œÔúIeuñ> D” ÁJuígôPñêìÖ9*ë.ö_ JPÊdŽÉ²$Ëœ”œçRÓJRþ[Ÿ~þf·¥‰_ë—÷¼è É<ë¿B iåjh°ï[ü ÖÞ MÕ«/šÃUG[¹@¾F›˜šò¾P_ÿ ,…«µö=~æ$Ლjµ$céñ#‡Wa¬?\¶´ÏߦQgŠò.šŽü¤¦UZÜtCt*<34z+.2j¶(ì†Í'ȇ1Sš-n÷m1·o7['c¦4[lÿž-d@âÝf‹ígTL 9cBi¶¸ý÷â·û€¦¾úØõÉ.ÏÐhDª/Ð8ùs¥ö÷÷6ÔwÖ¼;B¾þºN¼}ðç 4 €†K¿€@ Ѿd@ã7ÔobÊ$h4 —~M} ±²ûâ €F¤ú’Mxÿðá»Gh4œ}BÐh4dkضa‰’4‘êK4‰j‰ýh4œ}BÐh4dkœé¸]ç¢4‘êKŒ2•>^o¬îܾ¯»ZÐh8ø„ ÐhÈÖ9§¼4‘êKD3Þžô£€t¤tõ¨_`×4 €@Ã¥ß@S_«×®¶>f  ЈT_ y;`4oÚS:Ô/¼8@ Ð|€@ƒ4º‹t h4"Õ—h>KH0ÞªMÿJW´@ÃÆ˜¨eQB³uãÛ·fëÛ—Âfk›¥ÙâvÖŸøÖlá Û€`÷öç6\Ø ›·€¦¾Ìg˜¯/Ø ЈT_"342@ƒhR?C3fh4-@ ! rë´0g€@#R} €¦ÒÇ« h*|½4š Ð €†@©Mʘ  ЈT_ ¡›æí Ÿ%$MØÕ €Fä Ð €†@Å÷Œ×H ЈT_b iB €¦µh4d !PÙJÙÝ{ˆhôÖ~É [¤>c½‘ãÛ’¿ÔdçSs6æhD /)Ðq§¿äÄø'úÊW”F_ð$1ír!€@ Ð €†@IÉÄȈh¬oš-Ë.It8½`£…á– Ô_Jô=½@#ü}90CÓôÛ¶u¬TGíãÿS0C Ðh@C .P.ˆEŠ]¬-QЮ;¬ÐñÔÂÛŒ¶8.Pª0êX:€Føûr4G#tíü0ª^rÐh4Ä !š‰=ò+ˆ(hLMÍ׿ó[ÃË¿uÞ÷‡!C# }¹šSÁsÿé±±´Ž¡ùé ¬ýœf+ôηf«Å°ûÄÏ©¾˜>8ŽSa÷‰™íÜãÐíÃö-rêvf÷~Å!0}»ÙlÍû•ÒlµM  )¯þ‚4ŧÿn4ãÒÇGåh¼½ °€&0ð« 1þ+[YêÊ”56›½§¨¾QšT˜IüY6!±Ë<®¾$[cìK˜2ßo 4§ó«&Ë¿3M-n‰ADACfèàÒ ÐpãöÐ hÈlK4¨o+ Y–·Üé„ 7@Cr[ imÛ& Ñ_t¥}×8]“úeݹ7Úw/I!þ,KrÊðæ¸ú î¶„ACß¶%ÐçÙ¾’z-§¸Åy¢ Á5ì´²-€@ÃÛ@C4ÄþÑClt¨®ýŒ6¤±¾Ä@sòì3Fßfçih 6â,hÜÜ2}½¼òyßáº4o™ðÏÐ0ß¶ÝøÍÛ&V+ÆÖtø­þ«y:ô(X¡—‹iÚ€Ìæ0CÃfh˜oÛþñÍÛ'o÷Txê ¥ma†@ Ð4à‚ý£ hN–¾yd0Dø™26þXàêK²5ƾ„As¨ðöq¬GfèàÒ ÐpãöÐ hÈ÷Þå4Én§tŒjɵª‡³ºX¥F_áhÈ„[ïrâ&hH–¾ÛW_ iL^‚†LÁ»œ4ß4Í&çÐ_w‰•\«MÄâÅw••ÿi×¢e ô%æ˜ú/§øýË)Ñ2€Ï¼ ô夨MÑ–f«Eà »áöíÉ¡ÛÛiéï ùšmîá²1c|ÎD¤f&ur;PP+T ‰X´èÛÇSZ7 €FúÑŒ·'ã.D?(˜]Óh4 ÉhÚÍ«„Iy,ŽZUVi•Z#T ¹«¤Ô4w••4"Þ—hÞÐ4oÐ,4ÞnÜ€¦ Ðh;„öN¶^˜»–@3>}BĹ(¡ ½&o×jØÚ‹MÑéK 4$ @ ÐhH@ÓLE¯/N,a€-ϲ[iqÔJˆA³Jû%¬½®™€úh4‚v?¯¥|{XdØl±ûÄÉíÛgŽ&¥ÙâØïÙRØü€;\Ð4SH0E%膾¬b½$·™¯¨Ð›šþê;@Óv€úh4ÍÐ.h¦A ¡Ë&«.X˜@3…fý[¨Äæ­›4"Þ@ Ðh~€FpAÃ8†&÷ü…©$Ñ—õé6bÐ,7µlï­1Ë~6€FÄûh4ÍÐ.hïrB5Ño·½ÍÁè?‹CJÂ'gLbÐèšÒ~wX×Ç«/€FÄûh4ÍÐ.hWXáÉÁnqhádÍÙÙÊW„4¨¤ÌÅBÛQ4¢Ü@ Ðh~ˆ ƒ¦ºö3z¨Cegíbï™ø-+Gõ ͼŠýWâ^pÊî¶k„CÚAì¿ ”¨MkçRZ;—K``!( a÷ Õ¼¸Ùjñ÷góƒã¸šþ.‡?5[ÛÄ(ÍVKYâ[³Õb¾6[-öåÔýŠC¼š7ÿþKåuüü²¸<´°â𪰚]ÏBû»Å` ï õ5äB†›8ôpÔà> ¥  ¾wŸ=ÄR¸îZû¾ûü÷…ú>yó7ï ¶tkP`†@ Ð €†YêÞ(ØFT?æ}Ùoã1-!ÍLc+µ­–â¡âúFú¼wiMãÐh4ÂÐüP¦ÙGQ]xQÞm·ªƒfµ‘™ÕKÅGe¾Õ| Þ»4€¦qh4 áh~¨êçÏl#Õ½A A¬VÐèýFóŸf;CÍK @ƒ÷.  i\ €@C8š¦µ,.ÏëøùÇ6y]öVРÈQ½–›‹‡Šo¤nÐ`¼Kh€@ Ð€¦iÞ¸ÓË%6¾v÷œ‚¹B š>¦Î3­Ô]ÕÇ:ŽÐ`¼Kh€@ Ð€¦™î“{éœL¬Ìó¯…4cMv 7qXm¾Z:X¦«™…@¡¹Ï3b‚¦ºü˜æÎ -P9àpÚÝîõÐ0 @ Ðh@ÓLE””Ï Ï½wLÁ½ƒÂ šùÆ–ÝM]Ñ‚ŠŠ¦µ¦¡‘¥JcÐì}Au ›°¯ò⃛¹ûR%^¾ áZ_ £4ø`·!Åí¿ »·®6ärZ‚€¦™zþO]ûH£ffg· +hÖQ¥¨>hažÕyåé£Ê—Ž¿v7øûi +4| g Ð/ƒ&½âªbðL§K®B mC“v4?ÆË,–IKëëÂëñ¶¯`€¦qÕ†~Rœóê +4| g Ð/ƒæÕ§÷]<-ú§ JРHQ}ÖQ?öwï?Âi€†Ç} 4¯ïým¡þeAܳWm­Ðð,4\~Bm鉰Åëg÷÷Çõwaó[ Û$Èm€²yûhÚ(ã%â»:îʺ%” énê:ߨ’ñ£–©–DˆÄÚ­k4¼ì+H yýà…Ïì/½×¿ºö¬•¾‚€¦!šÖ a»Ê«¿Þ– h.UþK`«GuoÚûL]‘°“0Jüüb¿ÿ¡VÎÝ11Þt©çp‡±&;ÐhÙnbZ˜¶cš’ŸRVο„Er¶ôй_a¼K“MYå¿<Íë;ïœô¥ÇšÞþ¼òuÍV®„ hHÞÎÜøû ,4 д O·%ԗ؆ËÓüdÂz‘A д¾-L‘ÄÙuËû˜:Ó—Ñ)ý¬îÞÝÿØíLF$X@CòŸà¸îÒd@Cr[ö4óêæK‹_»×Ã…¹m£•,^Ð`üµt–ÀÀ@ÓMëxÐûG±Ñ¡ºö3Ú^ÄúMÅÕOŒ¾eìÏÓT=úk°òÂmËÙ列W6£/±yb ñöÎaômež†î˜SÒkå/ê_²‘JùµصÈù²7Œ¾„çiܵÈ߯0Þ¥‰¡¤òê¿Ì¾UDæiØÍýÝ)”oÌ{«ðýO+G¾©}Î ÐpävæÆßW`` i€¦õ3íùˆª³d=¾|UE%lÞ\á =G Ÿ_R¼TcxåÎíH3Šqr®îÐp©/?ƒæÓðaM@óiÄp £pà„MÛõÁËýÆ"âÅ:c‰@)===´\4¤þxa ê{ûêýª5Õ—º•ÕÆßL¬Ü­§w­@þü š¯RR ÊÜ“«?Ek4ŒÂ=€C f4,ÌÐd¥?2“.ŒY†³æÌûo†fžƒ†Î‹¹·Ëû—WhVÆWˆS̽š áx_~ÍÇÞC y'Þ0C3r€†Q¸p €¦íª?†¦KŸ¸™õ¯:mÑÚ"ë+»köTa=†¦ hêëáƒ+;®]”»é…LW‘ ál_þ̓²'Uójjzø{iRÖéPŽ ¤¬Òm8†&3 @Ã(Ü8a@ÃR (G‚¹ÒM¥hˆÆÊÍw.rY½ŠÛšáÐ4Ô­‹÷*4+“§$+E*y—úh8Ø—ß@óøé‹ZË¥J\½Ý»$t];¶jÆ ¯RRÈ"¯2RÉh@@¸ K…ö×Dwsؼy™Æ{k.Tð–×5Ô)ÐЫ6þf®F^ÿZùÚ7ŸÜÐp¤/_æöîûU/y˜xöJì=){òÁÛ…M, i\¸p €†UÐ0þG·Ðt¡‚ÕÛΙœŸl6yTè¨ wË4äûò h\xR1«Ò}™{¯èÞöNʾž×¬E4 ÷@˜а T´å´Îîõ ôE4ôºqüŽž’¯RLA<}ͽ»7ž%ƾr´–wïÞM ë}±ƒæñ£ç5fW]g¹ö í5.kÂÞŸ( i©pà„ Иl6ÑØ®±Èl‘È‚¦¾ž>ܢ⮲ÆuÍüÜÕz|˜2ù­ÞftúoOµÇGhXì‹4Wb¯Û,¶Q PŸ:!³6§M‹hî0 !T¦KLU]U¹=IÃ× i¨Êê+Ëì÷tù}·…cå‹Ð {õ$6O áhjÎÔR·Pý5“æäß<È¢E4 ÷@˜Ðùsu+uÍíš"TÏbö-ÔýÇt‡é'Ïž¥¯ü0yâ³Ä8 +}y¯™ªû5k,õeýd—…,?q÷ [Ð4.Ü8a@C4¨œ¦8Éûr÷íNšWŽöoõuoÜ¿Mó4“ ‘°îâ+h Z a¥//)søAÑ‚¨…ý;®Ûª_ZSFÀ"šÆ…{‡@ ÌhˆƒÆ~¹ýÓ ì&ˆ8hž%Æ~˜2é;GªŠ»GNù-´càJµÇ‰±Í×÷.›¶3˜B èè¹Ïãλw ëß¾»a¸ ­T ,Î{÷‘oŸðXéË*Gþ}{þüÑï7…Gžû­7oÐʺ+“i”úJO­kqÛç_íº=4qXO¯ž;þ²»{æëß¶  i¥pà„ qРŠ)(­m¬-Ê ¹w÷Æ¿=Õ^„1Ö$yŒ°m×>¸íßgHæÃ-ý¤Ó»¼~öÏ«C…é²NÇN~Bëë¦DußS{õÃË´=Ñ*)wžòë+}YMÝ ½Ä“I÷^>yÿâàá4Y§¢âŒ³®L¶n4_”2QˆS˜â=5trèýȇï>}?†@C¾pà„JuígôP‡"V‡©/ÒV­H²Âþ›à­cåu]û>2óæ"êó!3Ð2Z³6:Z,HM"¸—N|RvÎWò]²Ókú[æÚg~ËÙûduÒÚäú»nfrIwëcÞ{ñß¼,æMA_“uS}[¦uóÙÿlMM;U.²ó:gZv¯ýÇçÝÍK&õ`G!ÿ›·~%4Øo[¶ ðOo†K_´¿‡5S…E½ :ìêR˜ÚüÈê«…#¨ïf6c ¥¬©™>v,:EËô•Ú›uû[-ý5 «X`§1ÖÓ6énjózPk7×fÊÝÍÀÖ¯Ãv+´ìêÑw«ïZ—†õ.žj[}7¸6· ;…úzúxñ¾P_SSöÊ„¶ÚÔSŠj­Ã\i­BóXа¼jû*uwu‰P‰î>ÝׯÉï’¿¿Ë~‡uŽM®õ=t¬­Baw“–®¤¥ÌÐ@ Âаº¿-™ã¤Î© Û6ÌM'â i%uõz[þñ«Ï€vÁÒÃìG­3XÇ6hÜÝLí|eÌ}þtqsqИÐþ¤ºIÓœ˜R­·îlaÕÏyœlPG¹@¹ Nõ¶¤¨ï9!}"@3ÀĤ™ëÐp¤pà„ «ûÛ’9Žä=¦tL>R!ø`(€¦•¬Õ5PÛjØÎ}üï¡í»{ô˜c>Gg³K qw3Øá+µÕg-]3õ qgî7éþÇNÞJæÞ[D4&´5Tw ªËÜÿ4³É|Ó¤“;ûwý5TJÍmè˵¦&Ôi¡§$N%O4×7oéª4)Ü8a@Ãêþ¶ÂŽÓ ÏØ[Ú÷‰ïsðøMëY¦gÜ™ê i¿BÖOY2XRc§ÆRÓ¥­ƒF×Ö·½y#Í4”¶•G+ W·õV~2Vvä4#  1[aê!Ns™gJÝh®5¹Þ1]$B%»«/±^«Bs[`jê¼Êùp§ÃùÝòíÖÛµ~mŽî0 au[aGQ±óŠçG$ŽØ’mÈ\_˜=ôûûiÊ<Σ@ó=sõiM=;m£õwÕ!°CÇ€ŽÃí‡ÓeÓ4.ž=ߌ4¿Îõë]<&Yø£5’Þ´Ž°‚ÆØÔª“µÅu6%°+%Tšâ1f¸Í#êv•†[FA7ÌqÐþ‚§¬æú±rmŽî0 au[—ÇÙ1%Év)²QS Ó~:÷HTD¸‚on6ÌÐ4ŠöfÝ –RTï~Fö³iˇ8‘ •’^˜hªå½ÉÁÝ‘¼Q„4›·nžc7w Ç ÉIù@…‘.£Vn_elj¸€©15|Jø)‰Sñ#ãÍ ¶²È# G ÷@˜аº¿­Ëã˜GqIÿs27NJžÜôÜ¢ü¥6a‹³ á%§Ÿ³QWo˜¡­8Õ¢å•&+×'»©…¨‰…‹õî3×o®‘—±³›‹¨FŸ¶e±Í’á®#ÅCÅ{y÷šê8í¯m¾¤ër·B…¼y¶v°q,€†C…{‡@ ÌhXÝß6ðq¬èœÊùCaGºÅvsÎwý% Š;Rv…chZÌZ]ƒ~FRTï –YÙ_/ìÜíÿôY?6`\§ÐNâáâ}ƒûÍòŸ­ã½­ç%hüÜ]÷nÚxtѬMZ¾î®\ÎÖÍóvÌê6L)@©]X;?•qÎãVm_eD5nV$Ûu¬2úew(ö^àÃe4,Ü8a@Ãêþ¶‰¦'ÏL?ë¹ß[9¦ó¾cûÿƒÎ!GÏ>Ñû÷³¯Ñ =ËôŒ»˜¸ªÚ&ntôp™j·iÖ6«·NÚºP5DU,\L>L^=Hùf½Ïz  î&n+핂¾}/Lž„N_**¢5¤ŒãÿÛ;¸&ÎôÏv‹Š( xk­®x€U<ñÞ*¶^€ÅTî $äÀoKÅ QPëÁ‘Ôv»µÝu»«»µ]Ûþw·Ý­ÕmÕý¿MQÃL&3t~ßÏóÉg2ÉäÉ}¿yç(M Ê ò?$vÉ`›kÛNÕÎ)Ëi\²çÂm‹Ö…¬7˜GÜøýaó³ wÉvâ¸Û=·_¶¾œï±;t] ›Ð˜+¸nà#Së}©|œ+­ÒÚi+ ÏO/˜1ïð[úeeG]·íØ\JÇf„&4zâwßê‘=Ãgw¥uµÞiÈ­a;%=5$#ÔWâ;Q6i@îÀêŽÖëþ¹ý=ežÞÒyïd­ÍK%1šlQ±™Ó~¾†=d›8 íyš4Izhv˜Ÿl‰—Âk¨r(Ѳ¶š¶N*gïa3âf.‹XÞxYLã CÊ×; ¹½Ø¦¦ªãÅNEÑþ1ôTBcÆàºŒ@hL­×ÿ¸ìs…Äñª“Ýó{¤•ˆÊ/TìËßn/:~„–ÍShHêäô´¹q™ž‹vWXW'L+0ØL³)ŽZ‘03{–»ÜÝ%×ÅAåðªæU;µ£Òq„|„WÎÔÒ…A™ADƒ¢ÄѦ ÍñïÜrqi"%dϱ€/u—i"q™ÿ›ò7ßÈ;P5°‹º‹UžUuáJ×éŠËdË#²·ˆ%Ï[CÓ¬Ó¤9Xýëºó.exg2Qƒë0¡1µ^Sü£¢ð¼ÖN{®´*ëŒÔa—ÑŠÿ8ÕäÂò³š–Þ0âÓÒ7yÖR:] £î•ºÓOo¸=~\|àÜÀßüÖ-ÂÍ1ÑÑ^bÿŠæ•NYœFDŒ˜’ª³Í ÍŠ3ƒ7X×_³½éµ5KXö „BcRpÝÀF 4¦Ö˪Ðxïì»ÜᣠËó4øa= „Æ\C˜—庌@hL­—m¡!qºª¬‡ÆÕ:{”úd1„B¡1ïfãe¹nà#Sëµ€Ð(9_æ²k´UöÐ-‡Þ…Ð@h 4fÂl¼,× `Bcj½–¥ÊÇî›ÖFîWÏBhÜ@]¿ñ€ u‚(KTT©tˉõ(qqîdÏ[1”µŠš_/4ñqœ¿I„`ƒ¸HýƉÿ\XìzoÌ‘Ò ûß-ú–¢þG¢ÍØOewM}‘ç=J½èQ€?`††Gõeùö‡¿+5ÓHk׋ô3˶Qö ÊMD÷É©©ÕÖ|Èzz“R’9 ’:ˆ Џ›)‘)–’÷æÛ- â"7ÿþ§Û"¯Î~_ÿî¯úâÖçÕwÂG=}û ^äÎíç ÌÐh¡áQ½¥iäö?ï+ONuþüK]~þé”Ô!ícÒyìêšæzfliM%„BÃÐ|;îAß…ß\»ÕÌ®+ïuš|ç„À žÖ[}í`Y¥ˆä5HFõ‡uÁ§×vÍí¶óµG 4Ë ÍW׉‹<|íi›ùüØwe_þþóúšˆ‘oà €+ 4¼®·±ÐèCqAÙYÓ9lnX¼B¡±œÐÜÈ'.ò?Ê#¾ýøo7¿úìKñ‚ÿv$w­Œ^òí¥?™tÞ B` ¯ë}VhHœ¬=5xÇà‰aÏ…WBh 4–<åÔÒC 4‹¡áu½Í ‰Ëת—,ïžÕ]³RSS¡Ð@h¸Â\7p€ ¯ë}žÐ<>ýT®ìšÓuEpÀåªj „Bcù!ÌuÐðºÞ ‰²ºrOñø!ñCŽ>¡Ð°!4wî»ïæúÐÆ†¸Ù†Ð4®8À„†×õ¾Thj®~ —Ft–vŽS'@h 4暯ì5,Ö/ fè4K@hx]¯)B£C{ & ôÌövwNºšòùßÿÊPb 4 ¡áu½L„¦ÞiNkµýuåË*æõ[Z¥B¡yМùøú`ñg•_§ÝËϾsío›Qe 4VÐðº^†BSW´ZOv¬nçÙüû¸x\-„Ð@hšÍ/ÿ¶áHY‡´åvuóÔÜ ¾lv•ÐX…¡ùèúCÚÇ2&y¹ª—‰Ðœ;ÿ÷ÇÛhë–é´Žº«Å5¡¥›;çwž|AI])KB³cçN„F*-åJhäòsœ;:³ÍÉ>C^Ÿ‘‡ÇœøìÔK¥äjÝ¿9a®8ÀBÃäX&BÃÕ{fx,m¡irl]œVç «Ý©­ÐU-9¹Ìv—mpÉÚó¼ov¡a8»C[hNí0†Ç2‘†BóÙí[³$¼ªèÛ{Ï€üß™úÀ4þ(³ ‡0× `„¢÷¥‡^w¸~ã9PôòÒæy¹ª—žÐT^¸mÈkœ§ùPKl†8 1²}²öÔŒ#3»ìîS÷ì¥Ýô¤D“WiÈ»cçe‹ X|Ì—ö< =)‘H‹ ©e´æièIÉž}W yéÍÓœ(z´µ"§­²¯mž“´fû_î|aŠŽÔ^ûÞ—Þ< =¡áíæºŒ`††ïÇšk†æ±ÓkµŽººeºšêïî¹¼o代œö9¥UŠk fh~Á349J¹¿j•ÚåUEßà‰‰*ƒšfƒë0ÂÐ/=´e"4LòrU/¡©¼øEó½¯ÕŽÕi=u5WïÉ9/rphÿýýS+ÒõZÃDJ4yœX|Œ+¡‘H‹9š=û®´èù™JÉ"õb;uW+™ÓPIÒ7ÿLOJj¯}ωÐðpsÝÀFp•¯ë5ÃUN͆N[ç£Óö×Õž6î”]P =8ÌyŸ3ÑšE™H 'BÃ_öUN©Ê´™êYò:v‘¹vˆ Ê3™ea¸Ê À^×Ë–Ð4D]”V×EW»û©Dk†öÚ®ß,ÈZš¡iíB³Eµmœz\û¼öCsÇÛGÇŽ‰—‹OWAh˜× `BÃëzYµšz§©Kjº?áp™³¢¿­ÚvºtzdZ„¦Õ D)]ª^æ¨qìœ×y¦jŽ{RZ§ÙšL¹á ³× `¤µ MRôMݦܤ¶¡¡TdÆÂò[ßü èÑןž_(ЦÈþÐÐIº{­£š’—U¡©wšZm_]Ý;ºškÆú54ëDëÝdnÖkôЧÌ#5e}l¦óf*³Ïš•’Hv&‰Cë÷4„Ô/ Bc6¡‰ÉFÔ°í·ÊÞ’(r=—.k¿Y¨x|7F7Eíe“góÍo‚TkVgæ•— +žzA…FWØtß;¦¨¹Äg†ðÖ·?¾ß:†0× `¤µ M‚ÿ{bkoÿí_÷o~R1129äÆOdÿ_ÖL‹Nò{ÿö—ß?b%ï/Xhêã¢Vë¡ÓN2.n¼(xKÚÖIÙ“lÔ6ƒƒ–gø'¦$ÕïON÷Ø–á““œº2ZÒnsæšä¡ £é1š…B1>N Ud(SdÖ[äá¹ú‡rÅy¿Hù¬Xù;ŠŒÅj_'SǼŽÓÔÓãT "…bL¼Üa‹l]V3¯É¡ÐìÙöÌ~Dhn– Ž?PúÏV2„¹nà#­MhrúáßùÙ±o~tï§»~FÜmÇ'w~`-ï/\hHhµu tÚºÚÒ¦B£ØÔ8ï¬y½”½ìUö^R¯ð´ÃC‰Iâ×6K–Ch,rÊ)G®p —¯i˜nÉ–ÉݶfOT÷ËÑ&ÏÚM3bµ*XªÌ!eÈí#d䙹ͿN9‡ð“¿ðDh “û½wë»Ö2„¹nà#­Vhýó%Ããw½÷õ£ŸîÞ+ÖD9ï9èJmNœvêÏæ7›_¾Ð4D]„N×UW»ïE—m‹Öz䌱ÖXT ôË\’š´:ZÚqkúý)§0Ù¯êÏ7åtÚ’¹§œXšÍÉ2»y²R¶A¹±_Öø6[GÓàTŸe ±þ irŨ8y×-²ÍMÌðHhá'á‰ÐħGÿågV†#”ë0Ò:…æÑw7/ÍŽO Ð~¯þî½"Õ–¹®|}ÿ‹?^˜•¶íÏænˆµÊú_.ûÇ‹µ#.5þí¬ùýrûÙ¨lÛˆ'LO_ýԣɩ>‘Òvâ³ ÍÖ´l›øuƒTžò::äöéž3'R+Ë•»FÈV5Ìو嶲ɉò¬çLÌðEhš a}<úŠMÆùÏþÍÎPbc„rÝÀFZ¡Ð<ú¿“c’—Õüëîãý?]-M©þá¿dû‡æÄLÿ‹‚™8ÍQmMß¿7éðKä#5eM´Ä:rëPÉÔnÊnö*ûñÙãƒEk?š,ê»Y²4Bc¡+3T+‡È<~¥²é¢îë­ž—›àb\­¹S¬¼ûVY¨Ä$7âThþÐt7ľÛM„æýÝci(±ñ²\7p€‘V'4‘×KÜ#›¶Â~R8\uáê7÷oÿñ”hQ¬Ù§¬%4$Š÷ÿ\Þ¯üôÓ©qiÏ3•ÑÒv›³'¥èï®­Ÿ˜=ÉAå@bBö¤Y‰!í"Ä0CÃ@h¶©"‰»ô׸´Ëkç¨øUêÂEò¤f— ÷“µ—MK’K^61á¹RèöÌ&ñãG¡ù¦U­ë續´6¡IðÕ_Þù$<.ÿû>ÙÿŸÎ){„…R)sÊþú-ÖÐ0 ’7%1µhdQe¯ªŒ-™Í˜ÇSWh×_¤ývÒ“‘TÚ´W=Ûªm\e®‹2·è—l.4qª„%ê¥û<{ÃõÄÕªàL…äéùùùãç'ËÃbämBeóL›˜áƒÐHšÂw|tJÔ“ KKû!4üâimBƒÖ³”ÐèõâÀ̃—ì.˃å4–÷nNŸ#™ûºâõ¶š¶ýr§I§Šƒ^úëÚUœŸz‰»Æ£S^'»<»‘šQ‹Õ>ѪؗJÉR‘¼C¸lf²\jòÄ „æ&~XÀ^×˹ÐÈ[–wÕæêŸ4œFq©ñË3üßÈÛSÙ“Ès®ó©W€x%Ù/L¡ šíí‘âÑOүÎÎÄcFiFû¨}cL}$ʃ£å}¶É¶J[¬23× `BÃëzù 4$²7ä\²¿ô®Wm§1DtjôÒŒeã³Ç¿–ûZM›¾¹}ÇæŒŸ5½hCBJ"{B³> @5cFá˜1Ê3ÖXRh6lÚ¸,bùìØßŽIã’éb›kÛVÕ¶¯¤¯{ªûœ˜¹{ßi©‹ø¦×OÌü6EžÝò‰yƒë0Òj„æÚõ"Iöè°°6ä–l[8»À…†„8R|îµsk&]©2ì RúúÑŸ¹‰M ÌÎ&æ r ~Ó'·Ï¬ýk'DMðó^¾v¹¹l&yþüolm?íÝ»bèPrûµ­-ÙÒЬ öÝê;+vö¸äqƒÄƒ»Êº½ª~ÕNaçœåL †ì'rC§ñ)§ç9‡xÖÑÔà}†»d;eúÑÑò~‘²Èlú*ÕÐT]Ù'Êp%BCnŸ7„!4Ú´¡ùà“¡O-$¤,ì4)‰©™ÇíרÂýóô6c¬$·Ì§mô“»R¼*ð]ùÀ´Ý¤ÝÚ*Û¶Qµé*íê’î2*~”×6/ïPï%ë—¬Z½ªE6³> €ØLþäɆ=dûk;»&ó4-b$+7¯Z¼ÍgNÌœÉ “ÝS<^ÏÔ#§‡µÊÚJmÕEÖ¥fÿ‘i£¦ÆO%Ï ]ûâ54Ïsb0•ÖÕz§Ño[´g.³‰®„¦êò^ýÈ%Bó‚! ¡ЦuM–tT¡‘d¶ä€Ðµfjqšwæï6¯Í4»†fùÚåóBçMŠœä–èæ,r&–c“kóŠæ•ö¹í²úfô”:hDˆ1±c&DM˜ºuê¬ðYÞaÞ 6-ð[ïç쯬7'kz4±œÏzõRΘhxÚžã_ùG¼³dËRŸ­¾oGÍ+êíÙ±³‰‘x&yŽJ=T4Ô%Ó¥´OWYW¥Í¯5¿&·Ýsº;e9 #åéqÓF.\µ9°¥3:/þ½Ç$Í>Za]=ÃwOtŽT†¡‰]›M³CB  Uuéb"ï kÓDhȮߔpY9w߯šþª›e#"¥þâðØ *чJM¥O¡Äã¨,7J:ˆÊq¤ä=©ÜN”ª½>Ú)¬Ú)~Mþ}6ˆÙfÛêÃ!Ó¡wjïþñýG6Ú#ÄcZÐ4oïå –¯›½.jb”h”H3HsèµC¥ö¥u¯Ôé(ÅBKéB½ ¸þsg‚a„¦Ù!L„Æâo\7p€‘Ö1CC¾Ì=3CãnÉ7Àá ßòùÔ~­*!é¹%Ûü/ù~ѱS½šì|à5å~ñ žÔ$*Þ¨l_S°AKnÉ6Ÿ?ç‡a7š¡ifc†@›Ö!4×®5š?-¶äàç¿v–Ï«·½Ç4ÞæuÉw¿{äÒÿ¿û÷öüwoþ£.wüžÏõÝ'6£÷˜ÆÛ<ýœ_†!lšf‡0„@›Ö!4w_åäÞp•“ûµOOZ8;ÿµã$ot|Ucƒ!ÛQqUü/ùÞG:b0¦zý²ñײMöðü£&ñîêºÆC¶­®ãóçüâÐáú_ ~þ†ÐhÓj„F‰ÂûAåe1õßß/>ñ“$£þLÓÓs3Âü¨¹ÊK„æEBhtÐðº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,¡áu½BË+À’…–B`  ¯ëZ^–,´¼K@hx]¯Ðò °d¡å…ÐXBÃëz…–W€% -/„À^×+´¼,Yhy!4–€Ððº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,¡áu½BË+À’…–B`  ¯ëZ^–,´¼Kp 4]HûX&BÃ$/Wõ -/“Ô\åm¥5Wy™ ë庌p 4LŽe"4\½gk™Ã¹Ê‹c[L„†‡õrÝÀF(z_zèu‡ë7õA//=¡až—«z…–—^j®ò¶êš«¼ô„†·õrÝÀF0Cƒcyt,“Ã1CÓ*ŽÅ €%8ò¥‡ö±L„†I^®êZ^&©¹ÊÛJ?j®ò2ÖËuÁUN¼®WhyX²Ðòâ*'K@hx]¯Ðò °d¡å…ÐXBÃëz…–W€% -/„À^×+´¼,Yhy!4–€Ððº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,¡áu½BË+À’…–B`  ¯ëZ^–,´¼K@hx]¯Ðò °d¡å…ÐXBÃëz…–W€% -/„À^×+´¼,Yhy!4–€Ððº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,ñÿi‰ç" endstream endobj 337 0 obj <> stream xÚ­\K#¹ ¾Ï¯ðh­Þ* Õm{äÌ-È5{rÉÿ?D/R¤¤²Ë³‹AÃv=$Šâó#5òòÇE^~ÿ!Ûç×Ï¿=¬»()¢Lÿ.?ÿ}QBJîÊ‹ºD'¢Û.Á{¡Âåç/ÿü”ÒI)m¸~hÓ/«ñ[h÷é3ÙÓßãúaŒIwuÌw¯>°¥‡ü5ä¯áºåW}új®.#oyÀr5æáóCés¯Û-Ýu2ß½µ»&_Å11ià€Wzʶ¾dû$[Ê¥»NåIagë;î«cq¥;ûõ¨ëv®ó¤¹5áùJ¸ƒñÚH¦‘zýðívåAüì:uý€Ùö"LSÉ§Ä•í©“íŒ°#Âÿõóo?’ lÛ°ñN ¯î|#¢¼dû ¬i„øMTçˆúª×tú4íšmøAÞé²µ ”A³è¹çôéà…µá }ú^éú "N;ˆÔy"¯…ÃE3«”½/X[Å•Øßne § O‹R›‰¦4ŒO‹ö‰ÿõza6¤×BçÚҘ馠]Èp-%Z Òl¢A³c7E;êL±*Í0áEªåÕ>4¯l¥W‹Nluôb Ñ [Ç tlûNw6b䳕]cµ…lÆJ“ Mû¼ÖÓvH“Uº*Oþ÷GcÎ?~G>%…õvb”mBešÊÃlŸ½Ê ̤L^tú´í3´™«ÛAÁ‘FíÇùd߉&Å®×+w¼2ìXU—Æ WHé³¥’,¸ìͺûMø-‘‘ȉýÜbiðÏå^ºW… ÷÷ŠñèPÛ±>a"Ú(Yÿ‚&FæQ'ÍÐäûÙØb¾*gÔw6:õmÚ»ÍkåëÁ¯õmž”Â*3P“Ü×sK)pv±„ ̱‰\”÷Fl¬Etêå8+µTë›<•ES'ïóHºÊ_Ù7êÞLÆÇçpÞüüvEëP.BÀÒˆÙ‹Ýfî4ÔšÃÕ‹€y†Ð@â;Ù?{âŸA´ú²‰ò2ÒûBÎzck­PÉÛqþÿioLwØÉ(¶àÇ)Îúc'…Ž©;NDB„¬’:*­ÇYŽü±‘[1ÄKŸ\oRŸldüEŸœƒíÕD× ŸLVgdrÅÒO£L.¹GûÉ´‚öìÝ>ç|¡_­<‰Ä›¶{±=}«R]XsZ%Ûˆ–Ž8„ãU¿ ¼ñ"XôK|šA•ªš’ êœí¬ëцۈ¢â ,œˆÄ¦Õy"xÁž¢ÐÔ M ›ŸVCÒùG3Gx甫+¯€+Sì¤y=?SÅ8N f©]àÉÍüDYÔ ×jâµ0Aõ°`-¦ÁËËô1Øö"+Ù„×ÛÈ‚®‚yä¡ÑZlIsÆ×wZéõ¨ò«ËfÝ­–™ZêhóʲðÎj'üq …¥Cpp[·:>K"Ûfx ð£¾PŠÆBya"2@OØùlÙß—Hø§±T/v”XCþë³c=m$çHÌÜQÑéÄÝUŒ”âõ{kU³q}BâdÎß5VÜ‚£ 9qÑßGgûH_ÁãT3ÁÞí|²´vØ\Ez©«ê«înu{@zÊFêÙú¬ƒPª?Ìæ²ª pÒL‘„ä(ÍÚ¦².·±B¸ˆfôrwX±8²¶Ý'/9k¹+á¿Ø(õ¼IVCØèiVKÒEÚµû*ÆÒÉq¯c¬1–Ž«:?˜ÃO4Z"=s\ò4ì*½”ÊŽa×xâ&÷ºŸ°©@Á‹Ë„rÊf˜âuÌ¥ó1›aúëå9›%WA¦ø UT7×gJÍü¸rÒŠWf> stream xÚµ[ÉŽ#9½×WøR­…ÚÀ³Ân`Žƒº æÚ}šËüÿa´‘¢а]À ÈŒ-E>>R*yùû"/þí÷÷¯<Á^”Q¦—_]ÒŸQ¥¯ò¢.ÑŠhÃÅ;'”¿üúÏå_W)õ]Jð·/mUz²6=Åô“ÞZÈou~+Ój_ïõžøµ·-#¸ü”ÞºÛWÈ_-~‘ñ¦òoй7ÿšÆò8zž­O?PçÏã—ç­þØ;õÞ·µº·gصzä5ݾ<®ÚJl•½Íp–ª¬›ÜR¦g¹µ1£ÕUòœ7M’(}1P-6Û8é¤K Ô££qÿxz9`È$†‹é›‰(Fž=ÿ¸´a>ëý;nš»\˜]ލ+a2ísív ˆRQ8£V’8=­e‡¡ûõþâ¼} ­›]+æ‰: kvŽ´ÈÖoІ}‡¦òÕ5w2;ß0hÄTÏ6ƒî `qêdµ_ª@GÄ1š~/ oËFµ›#Ëó ·¡y EÈ')98×7±õ¾78Œ|Í`Ù<š÷/òyjßÚÐ |õ±lÞÇ A†c ƒ"íڅ΀\¬†‚ `³· &mªC !Ö]Þ‹”@ µÂ÷ªR£ËíËÑRÛ@=–™QE1àÃѯªŽGT‡Û¨FZ0âü2j6ÈÅd5ža£5vCH }4ŠÂ*ÈŠï= óe‰›Iv4踟)Žœø Û]™ñÇJ¡#î®Û~–±4ä¿7Ô/cl†BFG™ùâTE¿R¥&_X 0ÌÊõ‘B¯$$.$;HN'UT›d{êgsçPá:?ëïf Îó³“}O\\Ã9ß$*˜yjyç3»HÓÒ’"ÙóFfÐFB˜À8áAÓÂ-G™¶z e~DÒÉ2 µ{°Œôöˆ&nóøl$Wí¿9Oå£èt·²â7d´£Ð[GøIo;›>ÅýÖØx2H0´¬Œ޳ÛÑ ÊÓDÅ‘Ž#%/[p^§PÑO£AØ`DEGS›ÂÎL?ÉÓ·™wþ=8" _ZŒÆß$z6‘Ðà襹”B²§q“GOú„ÑY§„U;˜Ði$“æ2Ͼ¾#˜Ý4仌n!‰~~Âè²UXð":r~ƒ™#ý´Eª™àÝfƒTæ:ma}3YL1µ‡jžQßÐ Ÿâ›^X^mýìžS^ªåô-²éÜNOÉQ™Dwæ9å“ݵ\.¶f–wÇYªa/þ:Fq…q®äè%RÊ'ù*6@ÕÊj pn¬ZÚ”·úp[£ëß9x [bò~·F*Pjw+1¡DO®Ž —T"N¨ù””`IA«U%Èàí÷Öi¦úæôÔç~#|$MZÄdèQrþóPÜ’fTágÄÜb²£SÚ¡dÄÇ–†æ™ôuH^ˆ— û˜AÅÈZAßðLñ«|%¯…‰»Ÿ[¥÷œÝ-ü «dÚ3R‹èçA6Y3Jàµk9°bv_/È´ÆÃˆ ;ܬo°ïåç­“ˆ £«ú^ösDb/ÜzXågä0y½äõ乿.majN9MGr9[ÔPAb%Ÿ]EžPÀ7¹ F˜xžò˜¡¾½Ò cæªg}»ªzÚ]Õ³¶U‹c!¶,fVŸP"cV¯jç.Öb Ì÷ø-gbÐÞy]eÎZù–35 .°fBIÙ?M"áS*¦eHi÷n¨W\,å ¨°R‚×çÂkí…ý@ôCV—âäT,6¤’=—x—¨¹H$':ôÅ–TËõe«C ]d©] ‹‚йÝ}ð8%lÍkÝïŸ!øåB|çM\´Á£ÎF9:‚½Ùmb ûpœ«ÁFGá­ªÁ­&3”ª„54[·óyÇú6hñ#èæ®–bSŽ5ït4àÅ©VïEÔt¬0Ù&:o¶|ðó%ë–åAb`Û|rã‡ã$dœžÕáçIŸ`„Y·8‡§Ê ÂíizÞ\?9§rBË.±jñ`•BK ÑCLªE'..ºNh¨ 넆;ã6;$Ha>ŒA´f9jãÄtÈ\÷O Ïs†zxc°Ü8sÔžª’˜ãQÞrÔ)?Ääk"A™ :kg M“¦š¨6ž  íÏü¢|­fGOÖÈÀíÚ¼ªCcÒ´õ”¥5h¤vœÓcMÈ; 3M:4Óàjü:Ôè1rCKËØ%oè•ä2à¹Ù(ˆÞÕ¹¯Õ! %Ý|àrî|G彄õq(ï-ih °áÊù+c„‡¡³Wñ;on/+Íï3Ç69³â™Œwy_[ÖâÌsd>Õ-³ŒÐCšÓM•‘óö’¶WHG¡óáZǺ)CëZ|AdgŒ ú³å —{vç rw˜sZ€_&$X‡(ç1ú°4¼/ñâI9À¡åî¾Èúu$Õ¬¤¥½M$Æ2YnÎŒLŠ…©nsæÎÆms'Ä´Óc‡RG µÜYJ?ð‚@s&“·ÙØ„+…âàMk¬‹x{ÝÝ{;²‰R' a4_4=ЊéVÉ7Tï^$›ñÃÃAí6ò1Ì÷±|êŠDÅBHA£ÄX?Ëå c[iñYïa‰-ê,Bg±-}çpI–«LæxÊò#„õog‡"'÷>x üKNÙ•§§\%¢ œXÖeáÚeê$I_Ù`l6™ N·Ç…:VýePqïñ–v~ROtKM~Æ[¿ëYî:KÆnZŸzÖ|§¤{¶~+èêß ºŸJ9H¸áäç« Êyaú­ƒ7Bû”ötëÎ_^¦aEivO…xŠºsl¦C“%ï÷-èR¡ÃV²æ‰±+€rr…'£œ.XwnPU¢AM4ýõX9Éùé/gTú^ä˧R² #~ÇèäU÷Ýé_ª&S´«Ûð8¨=‘ªãk e² X‡OUÏ’»ý©—2Jèèy!†_“Æ ˜ùÕ[ù~?`Ô#¡põÜ~¼¡éäp‰Z ÷7‹îéNÿ–Ùš+ý‡ ‚&ß 0]Iêÿsfm’œFÌÜCG-¬³— D4ýÿÔs—UÇǯÿ$¤°¼ endstream endobj 355 0 obj <> stream xÚ¥YÉŽ#7 ½÷WÔ´Fµ†÷Ø$9è[ÓÉ!ùÿK¨…%Wµ»30Œ*k¡¸>’²ÞþÚôöÓ“îÏ—·§/¯6£UÖøÙÞþÜð5œÕ›Ù2¨ i‹!(··ïÛï'­´ö¿áülÊH.oß¼-¿ðyÁ§×Z¿žŸ·8c#Žà8Z ©Ó){€hÕ ÃõZ(Œµçx"ƒ}e&¦ê×Iû>úX9àeün‡T±2&úb<Ç¿Ò"ƒ£&2·¶ÌáøØÉRä6WØ[ñUY,¶¯ÏÜzu‰¶–óËì™Ô:dªp¥óo¿<­¶«‚5Ò¸¨ìTO-Dô©³R@ÖÀàóÚìj-¿á«¡òu ”ŸÍκš§B~±PKL’VI‘»XKi»HæœB}uÉ2¼6ïpÚ,"Õ¯0¤ÓÅa«|VS˜.º°kßš rYt~mè9ÒPMSØýòýv‚4¯òØ‘5jKKjÉ©lãµæ1«:^»hv¸e<4™ú/ÞmEð GcÑ….ÚÀÎqׇÄad˜¨iŠcçï‘äÑ㕱3|ml6Ïè³áú•®guý€É õ¸êǽ<Ô,X¯b\í„ÈEiòâ‘x ½~„—èKHÿfÜêZLCÒ¡ÌùÔa¯lx(œ VùדÝåP8æÙ„¤¬öËÖ"1;±_ÀÆ"û°Ú^xÄ´èPäJØ;8ûŠ1—)R&áfp-äŠk(Ü»Škoŵ'¢ù”¸+BEâ÷ää-!f+òïŽDÊ[>ù.zxÍ¥c}ûE†EoÊGÀÃJðÉ(°aÕß'‘‡ÉaWùŽÚ0°HÚ…V©<Ò1ŸH⎑ž¡d¢ð§9ÙûRÚ€2}F$Ø0P0ß‚“Zn[zÞa`š™<ü]UâÐVt£TðÃ/X*XS¡àøqÞt§åu6QÒ&R:Ÿ¹+b\WcMöZ`0+>£èýÜ2â’ç’’Ê@–èºH“ÜÄ…È"i›eL_ZDyïDηɟ†®|Ï@¥ ЊûLBg³¤ÀnŸí*æ;°ËÙ:e×…*|ÔÐiº â¹WŠÕ2MÊÛ€ŸšÎ=KKÁüSq©d÷Lcª1ðИ~(ôÀ=bR)÷°£~ªûÈ€ Š"PvkÖ‘)/µ‘Ïátßźiõ.ÄßxbÛ ÕÍÙ.PÑ)¼X¼bÒvvGÚnÒ>ÒöN¸¤¸òÇU\_ð!èÙé1Bå°Ä’ ä*õjþÊ ‚T^™Ð”û‚Û¨ÈGr²hŸ%D׌Ó\ç ‚ˆ§^ßsAªsj…DY]÷ëá´#w踎>į½Ê«‚ ׬¡­&(q7o­HÓ«’=CzPi4‹–׺åÞ<%î\hëZÖÏ'QÈ‹nr6§©º?’D+Ɇ˜ssæ¿2y £O££.öh°²-&V©mÞ1ëï¡m;b·VѨUêö¹Ñ\GæÓèžÅ…ß7³³ÊFËîô™Vý(¸k™ëœ,sÛú‹ŠõFñ&á>iËÉwís\ùè3oìb/UzîÜÇcUä‚zT9 »F#ݸJ«µ@Üʸ[:âT|u¯ípÛÕÞ4]eÑuJ­x§1A:ìÞ%ú‰£¦Zoôöë¤ç‚2vU ‚g¿L ãÒ^Xr'ÔܵÓÍèD‹±l`¡_Ëç©>ºˆŒÊ­Â1|OJ#q„ÖuÜ.ÝåœË¤ÑýÜ5$|rÚ geF'åð`-î));a ¹­¯u*æV ¢nhðËÏßývýçé7ü¬ü<ýgqÝuglImð2†¤B ›KQEN¢%ªI{À(H 2®ˆˆOTy™ƒM°#YSƒv¢>bÖGÑá·dZÃÕ mù$ždÐÍW½>¬±ÔÈ&Ê®`î356p¶_oDé«yàÄ]}ݨZÉRÑ‚‰5ñÎøwYâ¤Ñû!Û¾Äk]ÔXX˜äÊ‘Eá"ƒ“ë.?UóÃÜgJÍ…¹L›lâXÊ#˜Ú–k÷ -þ} .nw1òN¬˜•KîÆ <ŽqÀãX1€•gŠŸ–p,µØêÍšœÉ‹ Ç9ÚJŠKÚ_eß²ÜH£_¦Œ "[^»ç:û…»În9×=gôýË£’4ìÒ't2ê‹¡ÙII^3þš­ÂœQD¾îö&\õšýCM—'S&ãC“ˆx8ôvz6+ØN+@MFeÇùÅØòOÚQüü3Íå€ endstream endobj 351 0 obj <>>> stream xœìXIÇsß…"ˆˆ{ïŠ]±w={¯ (¨ Ò{ï„PRè½ DA¥Û *ö^Ïóî,§wÞÝ·°B2I–d6Lž÷ɳ™ŒgvgÿüöÝ™ åýñâXa~ÃFuÍ?ª.ØzÔ oÌj7fµq~Àÿ“àÕP9˜\ªAÞ<˜Õ oÌj"9¥áWWWÛÁåþG á‚­G òæÁ¬yó`V£°)à‚Dr0¹Tƒ¼y0«AÞ<˜ÕDr0Rò¯yó`Vƒ¼y0«!"×ñ‚Y òæÁ¬yó`VC …ÔÈÔ<˜Õ oÌj¤Èu¼`Vƒ¼y0«AÞ<˜ÕH!525f5È›³)r/˜Õ oÌj7f5RHL̓Y òæÁ¬Ö؆ÞžÕ–RÿúßÀðg H!5ò6f5È›³šH&HNeìøÄxA˜ÕЮC»®õì:þ×s¯cFþôã7ÂÕ^ÇH¤ÐXjé΢]‡vÙwH&H6—Øj€5aVC»ž}sgåc×ÚP]©ƒKì˜;‹v$j²ª&’ƒ‰R57?cÿ ¡X'´¹"© „Y í:´ëZÛ®jCßÔã¥Rh,I§³hס]Gö]'’ƒ¡Œ”ôÔЮƒgŸÀÜYùØu(#%^M˜ÕЮƒgŸÀÜYùØu-˜‘Â1› ¨(³Úuh×µž]hCujR)4–Zº³hס]Gö]'’ƒ¡U{ò¯yó`Vƒ¼y0«Ú^(e’ÉüxÁ¬yó`Vƒ¼y0«‰ä`¤ä_ òæÁ¬yó`VkbC÷5( ^ì~+D …ÔÈÛ<˜Õ oÌj"9)ùWƒ¼y0«AÞ<˜ÕÐ9Éu¼`Vƒ¼y0«AÞ<˜ÕÐ9‘™š³ä̓Y ¹ŽÌj7f5È›³)¤F¦æÁ¬yó`VC E®ã³ä̓Y òæÁ¬†@ ©‘©y0«AÞ<˜ÕH‘ëxÁ¬yó`Vƒ¼y0«!BjdjÌj7f5Rä:^0«AÞ<˜Õ oÌj¤™š³ä̓Y ¹ŽÌj7f5È›³)¤F¦æÁ¬yó`VC E®ã³ä̓Y òæÁ¬†@ ©‘©y0«AÞ<˜ÕH‘ëxÁ¬yó`Vƒ¼y0«‰Rܯ¿á‡ DnC€!ÉKæ=E…ü…H†2Rª=úå ^¿{“¨ÀÔ^üñ+Qó€œ@«†2Rä:^0«AÞ<˜Õ oÌjèÖž<¨!‚á@À?N UC E®ã³ä̓Y òæÁ¬†@JÔHÁp à'Ъ!"×ñ‚Y òæÁ¬yó`VC %j¤`8ðhÕH‘ëxÁ¬yó`Vƒ¼y0«!’5R0øÇ ´j¤Èu¼`Vƒ¼y0«AÞ<˜Õ$©ßïä73S¿û¦îã?¯žØèï@13kë¼·ô—·2éä;½±Úç—.ÞtŠá÷>ðÊß}zÁNKíbQÿ•ÏùKŸ›U“6HÕæ½ìCù‚…ú›ƒ—ñÂ'>RðÂúøqò㋵͂ԛûvžx—9[j^})üýÕ™¹#XùÿÖ¿wÿwR­BM¦ …L®Ô oÌj7f5IAê·'Î~¶ZŽ–Z¸ ýñ2,13øê//ß¼»x:NËŠÁyú zùNç¯öד½î‘ß@êß?¸Iègs^¿ÿC˜šl2Rײ~í¡Í©qíŽÍÀÏ3‚oÞ–‘úõ–¡k¤ž?¯žn¾±ìÁí__”•æv±JzŽ@ªU¨É¤ƒÉ™ä̓Y òæÁ¬&H}*? u!;óë—ë¹ñæÆ {oǻˠWïtzûÇÕ©6±NÏÿQƒ ¤®ú¥§Æïq…ßÚû¤^¼®Ýî‰Ô__œ/=¢ãz,÷5©V¡&3B&wj7f5È›³š$ åpûØXŸƒy¯?]8ØÔ†>ß8ÎÔ¦]ú]½‚|§ƒ€Ô/Š{8dìŠOT6£Sìâ×}þòßfÕ ©ÚôµwÝx¿`ŽT#úãuí¥‚Aêoùˆ5ºôìš#Õ:ÔdRÈÁäP òæÁ¬yó`V¤\œ¦Ó.·?ýõþï&6ôùÞù䞉‰Oš™ÖÓÒ½‚|§ƒ€Ô«ûEZfÁºÇîÕ~|wõêñÖñn/øg§à©;©2>|d²ù÷ õìYõB‡ˆõgïÕ¾~vêLNw‡¬¨g¯Hµ5™€r0¹Tƒ¼y0«AÞ<˜ÕÄ©wζêff”†XþèöÕßµgãûz&&àT]ó½T„Kí{úýuå@Ëäà7Ÿê>~~áèÍ^|ý]sj xTVñŽ@:uîWþ u!èÚ Å×€Ví}©òª?±÷®ævqÉËûÿêæÎÆ«/Å)4êZº³ÄªÚ®FH!kY5´ëЮk=»N$kæñ ¯çþ®9¥ã‘˜Ä»’l.±ÕkÂ¥Öh²ùçW;œ8ºÇîÝüø®¦.#•èýòcsj€xD HÕÕáR×o{Žú<Öóö-°Ç|)¼Î“‡¥£­"6ž½óõó3çŽt³Jð{ø‹x …F$û°  áuˆÊH!#L­™uÇÙ™¯×K{×}ºr­¾¾Xóïs¿})¼øOÃuÇ?ÍþøêS³jßwùK?T–åv¬_w옴¹ôÅ«&ó1¤=œþ~ü'mão°µýwÚÞwÞâÝÿk`“îKaœ´œZ}7ÿQ¯ëæŸCL¾t³Aá·¾·ÌÉÁ„ƒÔoö»4¼È³6ŒÏ¬û•>¡X'´57?s¿þæ$ „Lí]'¸þœ¬óLæÕ:ÁŒ”ó9u%IÛοü¥y5Á`T^ý¯y y)Á u¶ ãžßKÇ´ið¤ƒ).}},ÂÕw!¥‹E½H kÐåYŽ™ÿ•W½={âȨ¯?ØxòþÑçH‰t,Z÷¨ƒh× µ¡†j- RÈÁÄWkp)X/ø§³o„¢s)»ì£ÐuDzÙué寺÷hDõñþO¿áÿ.Jýð0µ¿žlqŠšÿ7.XUys–MÄÖK¿<ÿûÝåêœÞñ¯Îî?ߨ}íò×¶}z|óÄ/ëŽãMoþñ¶…;+‚Ú§Ÿæhÿãsé[¹<9/>Ýx:ùûnÖ6î»L ýD ¤j€„D Hx¶‰@j‰AÔõ䣮é¥ßBbÛ†~"¦¥¥¡&ÁºcÙì:¾ õï‹k4ÿµ«Rk”„{{c©cäæ‹/ú£¢â˜Žã¡¤·Ÿ 8¬Ýû¨?ðß͉þÒ}ò:¡Ýä[(SûR•5\*M÷À¶Ø;¶ á'\°%Ô’w](N¼É+Ķ“v]OMj õ(*üÏÃÿQTÄÞ±mQA*Þ ôhÔUÞGl;Π” EÜõœlGÈÝl¦Ô …¬EÔš¬;a•¸îX6»Ž/H=Oü¬>â¯Ú÷@jßwùåÝ|m·â“øì¿¹El»ûþ½xm#°§k?mìûïæ„î3Ê™ƒñífs}—9H]¼šÝhÍ0!NÔ m#§bÅ2œ¥n‹¡&zÉù¯áª „¥‚FNX7q–j¸ ;H¡ë9˜®ç$)ä`-¥Ödݱ tݱlvŸSøÃÖ„§°@ïb7aG]«Èm•/Ÿ|z[Y™ßÝ*™þºq—¥}Xÿ¬ù´Bçß-IÎßfºOÂQ' ›ú.s ÛȆ°«:Øö8á‚-¤†óSʾr±)ê½AêÏáÃÔŸ#†‹zkç§£21(J6 …®ç »ž“¤ƒµ€ZãuÇÿ¬+ÿõUÍкc©ïº_>.l¸îxÎÇßêË?]ùkX§ÏiÔøvùCUYþ˜/?HæÛeiÖŠýÿ64m¾o¾û$uºɿï-Ò6‘AÊÚF¹‘ a%°íq©BÉÔ ΖS**dçÚœËÒÊ ê>ÁÝr–å®%»Ö®_»À`Ád“ÉCl‡ôðèÑͳ**j´ÔhlÄ`ñ“‚mwÄ>†v¤„¨SÝ((þc(>zÏ…×5‡ÝkÊê7¯ù¦§c].î_þ0÷É‹ßá)t=ßõœ„ …L¾Õ oÌj7f5‘A »zkr=7¶^A¾Óyj‰Ìê"…RƶÓÒÉHÕ<«ÍºqÈû‚ŸÑñ=Ks>F3V«mxÛÞ‰}¦eé­8ºR¿hÇS;“þg©á"Óª2ò®ÔcQZ{áÙ¸!¿*Rþý¡ŽîÿþÛ~6~èñk'±o³/Š( 8hÂѸ`ïšÜµ“3¦èÄ÷ÄÄÕ#ºOÈœ¸¹h«W…oö­ÃiQg±Î&ëŸ?ÓæBY÷ÊêÞ—n¹Ý}Zû RB×sð]ÏIRÈÁä[ òæÁ¬yó`V¤*k¸l¨êÚaØzùNÇÕÒ8—1Š¢ù•¾o™9R^=)º{<¸2lÏñ}³¸³»ÅwSŽT“>vcþf»³aU,nmÎÅÇÕy :G**¼ñ©˜HÁ÷õjîÞˆÈ|};Çÿbà¶bý!œÑŠt¥Î­9‡çnŽØ0*äSé ý›•j•5‹¯?Èxüâ d Á8i jÒ)ä`ò­yó`Vƒ¼y0«‰½jo\ýš—q•×AØ+Èw:¦vóͯ»gq}¼Nó YµWûüNúõLËÓÖ3¸3;D©ôIê³ôÈ2ë3vÑ—cÏ=8ß”™ÄYµ7rDݪ½‘#EGˆ·j¯üiUܵD“Sû‡qƶSœ:dKÞÖ@VPÉôUÚU7mî<¹Üø'öHÉ·š,Ví!“TÀuÇRÛus¹ÿŒÓýOY{ǶEU“¼ËR;¬bôTšÍ#JM¼nÞ6±´=…EüˆËø0Ä/Þ«ø>ÿ¼1H½ÿí#7ó/ªßÇCYï?üNÌaý~%ó»$ÚíÞ•þÒSáf¥Á¨¬ù‡Ä£®952^Ï!‚G¨uÇÒÙuÿèŽmôwö¢ªIØeéVñz*µæ¥&v7 o›h Åýú«{(Ä‹ô¬Ï#Ü2ø—ˆ­À̼¹!Ñ­WäÕpéq›¤$Æg½’y¿Ôì·6©g²7¨„¨ u¾g³E´eÙ¡Ô°¯ŽU½ëÒ÷åÈ9w–îÇÞßi÷ÃJøO³^,µýòû£eŽ9ÎÏ+¬ö¤ý+óÝBl4íf©c®LZ‚Û`Hò’ù>—¿ðX&ãuÇ… tGÚO³7™o²uåÖ›WÌÞ5{¼ÙøñEÇ]¼»¨ÐêÖ«}YwŒ…2£~Ýq˜"%L©né1½…ÖŸBNñW·úØc ÅecÝêckŠ¥GÓuÇ…Z‹Œ^æD}’ù!h·Wntjc%2o•wS$kÕ© —.JeÕz´„ùÁÉYÙÿÚÚÙ‰{÷Îò™Õ%¸‹r˜²®ÿ¸-®[mìlñ¯°¶m'ôE¬ ¦¦/Ák›Á¶ûŒ·¯ ÞÏ©ßÞ=V×uÔsÖ¯óõ÷ÃÛþµsgª—'¯<°¶Ó¿ƒ®gIŸä_·ý\§G£ó³\KG/€þ­r3 î#îE¸ÚùªŠ†ñnÈFÝ|7tH£:Í®&“ë9”‘OíÁË'D¦Æ‰ ÇÂjwb‘B©ÓÂÌb…R?“$¼PÔÀÔ̘ SsÓ-¶[;/žä9iˆß´ƒ;þÄúI!LA“®Ù‡Úg˜ß0]oÝ)SŒ“Ù³¬f/4_¸ÜtùÚ½ë°X·gýæÝ[ªu:¿Qü6ÚÿhO©Ò錕o2Ú¼fïÚe¦ËX4Çr®žÍô‰GºŽìïÕ¿»_ìªU)LéGÖêÁê}h}Æ8NÛ;ßló:Ë4íìŒ^GÎ*ž-Ô*ŒëµÕËÒÊRh`Š‹!*05jP  ­¾@ÞD_öñÙWÃÎ,|ãN¼¦à Üü‰U;S^Ö0Þ~u0^7ßÒ¨Ns«ÉÄÁH‰ç/]\’<%0þlý!@~2··X൰£‡Sa$uä·Öv6êÈ7Hñ^Ûõ·¯Ø½b¥µží§Ñ6£ ÷z¹{ã1§.–cÛ µÓÙplÀXŒŸÐ¬v_meoÝ\ÍVRøëª>õÜôÉF6Æ“m&·Qì8v¯ÑùiSK–,&4#¥Óèü¼Ø¥çÖ y©wC_Ͻ6 †ÓF,H9†²õõ0LàñFQþ ³$©½{W;¬žê1µµŸR¨}¨}0Zä¼h³ífsÄ•ÂYꮆÆÇ6m°wŠâ®z –ë‚xM6ùìXé2ÏcÞ¿1݃º· k§í¯={ÏlË9–zŒ% û}ö|A*.‚S¸ßôüúu…f¦±ÂA ‹Ôm†åÚ:Ø™õLGçàŽ]ÝÐWSå ¤p–z;tÖM콆N¤(R2³!I(Ê06k GdIùü£Â€i™ç²ôÊaÊSý¦îuÜ'¹ZH•Ùqï÷ë‡cµŸëHÿm‚µ»ù´™i¥»Ûב(âîÞÕˆ0VmØí"o·öjƒéºYŒ@ Ãi #¤è‰¯:Z2Œh,ñîå5Œ°H¦GzÉ8¯qZt­6Ì6ÚAÚc|Æ`äd`mˆM"”Ѥ‡…•Å6‡mó=æöÝÍ¿›b°âøã·­ßf»ÚÖy§3¤²=ÜþÐÔ|2tÈÕys±÷ßµ4±ÂAÊÏŸÖÅ<;³¼h4c× ÍèÓüä¤ðÀº ŽP¤diCbS”EJNgNÁù2^ _:à`>Ýw†R˜R/z¯+›ÞÂC …½rÒÞÿÚù»9R¹ëÖŒìØ=`üaŠŠÃ§zïvöõ¤vÙ7ø›ôtŒ¥ kµ{b§Çù.=·oØeËžŽ"Há,õnØP¬›Ø{m¢H‘ÑÁˆ¢¨¢k×Õ¬ÃwJDQ®nkÃ×ã oÏnß?jüx¯ñkì×˜š›Š O0€T£0±1Yå´jºÝô¾î}Šc-Çnرã}£¨“» y0„mÿ®¥%^^JHQéîu …yZW‡ Þô鼯H!’• ‰GQ®YÇ´X¹çÎ5,lR¦Ž¦“ü&)0†Ûél(ê<ôVR˜Zô³_;w¾ß¯_ùÔ©Ø;¶•`Täà19`Uûà®?kuõ^¹ÙÓÓ[¤Œ¿ÀN~"/HáQÇ‹À…@ФFE¸q£‹Ç"ü†xüäá¸0|‘GK­>-|ÚîˆÝ´È ÀÉæ¤©†ajcºeÿ–9æt÷QïîÝv‰ù{[6ç <=2¸ÐÌ”`ªìÌÂÞ}ýiÍé›H!’µ ‰AQÔœu;æÁÓg•ó@ÊØiÏØ€±í™ cÆ9‹ŠP­¤0¢zyܾ½dÉbì½éz½íT£nô‘ÿ Sjë«7ÑÕÁ»ÙH¥¯Ð}¡DùòãÛ¾zG\¨xy¨ÝšÚíÿ£P>uÕ-t@ %MB %žšäu²¶¶«s8µè,÷ëª=À°p˜¾@ƒ£Ñ™£mØEØ‹±jÔ Å‹«úÔ#K§ØîÐuÐmª Â6=dÛÉÅ3ί_×B å@›cCWq yÐÑ­=R²¶!Q)Š™W¬f–Pr²éW˜š©Ãþ1õsÉ'øO4q4¡Z-H„=Õa}V¦R›€Ñ]-VºR]šÜò©+z«3\|B}¬ Ætø»Ïú:=ˆfS¦ÕîÅBSN€Gú».Ž B %=B %žš„uöÖMŒ¢ü Îݧ„lðŽ ¤vØ5œœd@ûúL6EOO÷ŠBý¥`Ÿ©9Ž~x}†õêk]ê/µÇæÛú"’¦ƒ!˜¢ì˜ìü’¦_¬<½)ѳ=Sa¼ÿx §$A(RBÃ-À}}±SU9h`‡}Ãíhúø-?ï9iLÛ;á\2ìœLæ A* àøx%VM(ajÄ‚TTtYÓBoŸ5Ak:1;õ 0ÖÝ Ã©…›êžÈì±0/Eñ@*.æHîD­_Çm¬¿…'!HÑéàèC¬HF Hžb€6„«I¤äÆÁ„SiùÛ¦…ïÝéãe¸¤aaSrŽp™>I‰­43|–[„;^˜”RM H‡RÔÀc‚Thh 8HaÁ)4Û_ÿ©ý|×ë…$œ²E9¸ß¡ªZÔùë^¡ÑÑbƒTLÜ*Õ¾p€Ê³%ÖAAŒ½cÞwžP_'Àâ|g•«&>à %Ã?% •_ü„@j ¤ý…Øj€5ER RXce¥=œ96i¹ ËVäÏ;8¿[l·  ¾«ö ~qRS$5<"¤Tóò÷^I_Ù‘ÙqdÈ(ÓȳF³ê~6‹=!§ÙU{4§ ½~oÆmú:*Øa¡$·öÀóL„«€”€jb€à)hCx)ƒ”Ü8˜PjZ§êþÝ^Ñ–ÙEMkâ ÄŽä˜FìÌÜ‘ÝqeøÊ Hz#B"¤ÀW žµ)ð¬ìÉæ¼jNQ^#BçþÄìð#m@/Ÿ;èlQQs™¶wxÌäní37ƒ/Hq3¯ù«îæðú[x‚” ÿ”€€”€jb€TK8˜h Usó3÷ë¯ô Å:¡IM¨ jªäT³$üØÓ!qGø·yQç/UXæ[©E©é眮:×¹³QpH¯yBóRB¢·wOÍß?W‘-†š0j¨’— R‘'y‚|óRxxxÎbÌVbvÜ´j;cJFùaKÓù‚TÕÄžïf¤ægþ_þ¥œf}^³~²9Õ3}aOÚ ãÁ&›S©‡xmÉ$®&¤ŠO<æ ÍK )‘N1¡6ÔPMj %g&¡.TýÎSã奪Üì»ÿ`_äÂjwÄîîœîÝ8ݶGè‡E2²QbÒž`RJ•„ E Êá© ÏK †$ßLž•zTB¢3ŽðÔ@òRBA*9µ‚'˜’v/äÄEìˆ4Öfl¦ÖÆsép·Cz¸·IJ±BÆO8E+”âÛ@Š›q»|7#9#ò<^ØôÖÞ)°[{2ÿS"¤ Kò…楄‚TË9ÊH5§.–pNÝyWw6aPÂ`ÝÝô²Ì¦¹+”‘’UFŠ®;"Rºá3QÕiÏ;¾,U÷Ë œKyRµþîžíêÚ.u¿Ç÷—öØ";º(?©^S$5”‘jÍ&RFêê£ûÃ}ãŒÓòøÖtLËÕáèôäô4‰0ÁˆJ!¡Œ”„©Fáã>1|j;–RgÚ4[ç•Ûó&'4¥(¤ò‡«a—‚á &À²´n²ù>¦Ÿ[êü,i²¹ ÿ”´ÆŒˆè/€j€‚"©  ¨³Uãýcѯÿx®úüöýÎÑ]‹ÜÏ_ªà{„‚CŽR^^éàã•X5¡x„]š R‘'„Öá­ÚÛº¯3«óx§iùª…Ñ&1oíÓ£cÏø@N*õ8ú«RÅ'R€§  ájR)¹q0¡ u¡êwEòß™|´iÔšŒ±º:‘ÃŒ"Œ Ô×¼ÔyAŠFË!¤||RtúbA*9µBÀ·A±Œ¥‘?+³; a/_·Œ^N©ˆq´¹9R|w)81¹þ‡bV+oà—‚]ÆÚøŠòøþ)©Â’‡‚TK8ZµÇ'ʪ+fѱÀ6°ieê¥Mϯh¼jOT p¢¯ÄªB ܯϑò öŸ6£chÇ@ÝÀ†,…žl.!HZµ'\£wýñ]jâöÄÜûß—»U0%kjïÄÞôŠàlî? „à©&A <À³M‚H„Æ1ö±P è4ÆvZ–fVæÐ<5HÀª= Üü‰U)À©–p0Rãü¥‹?3SÇûÇžÅþº\ª8g®¥æXè$tZ:)¨@ ý!ûÕCÔ·¬Ýi…@ ”œ9EÝxòp"-iCìá†UýøêÖ‚m±šže>w_<à»j”ôA*À¬nŽ”ÓnÖ¢EÊ!*«7¬=Øëpˆk()R 6R›#óŠ:u±üð…#º)ãF%â^ÈY߇@ BÂÂ3ÄkDÀÈQÖ£R×>×ÑÁNì»{)Rdw0ŠšÊHYÍåQÔ½<˼1„ÚV¨åÉu?@ %}j¸jÏî>É}®Jê¾%ûÂ÷E B £ _Ú“ÀíçQR~!èC=J}ßQ¾3¢H‘¤ð00›ÜË‹r½ ;=ð¹€,…@J 6„@J<5ÁuûÙ£Á©+"³ï¾xŒ—d\Ëš:lbæä‚Û%*#‚¤¢šà« õì‰@ ©Œ/Ý}ñx 'svhÚíg0rÂø £(Œ¥ßD 9Hñ.ß¶ûv)ˆ@ ”ìmg v~I';¦~–•z”:ï'_H V#Hqwïú¯áÃW(”l£Ý¤H‘ÚÁøRÔŠÈìÁ©EÅ_Iê×usþ–kOk…NKG 9H=Óé×ån¼Œ”)R²·! €JNªÙ†ÎMY§×3ëü!ñ( ü …³Ô³ž=±Ë8ìk„Ví!"½ƒ5‚¡û/Ÿ¬æNe¤\}|wW±Q·øî)5é H@ ?Heîlt)˜¹Ë)ÙÛÐÁÓg:Ù3FÄM“<¶èâq±) )@J¼@ %B %žZ#ŠÚ{x"-©èÖÙQi£çšWýø* E!‚¤p–z¦£Sw)¨£“¹ ­Úƒ ¤¸_u¯µETÚÛNö´.ì³â¶Ìþ$óö @A`à.@–Hò’ù®†!²¹ÿ-8>Ø%Ý,9E5\sG2=›û¯Ì[……ØA.#YFªèÔqBâ`a¡†³g»`•1ŽcˆJ«Ëéª.ØzÔ$\M>®çZOFªúú¢S326Âc„‰³†™ç ¯¡ª ÕUæ«xåàó8'\°õ¨.ˆŒerÙ!u¨¸¨»—M{V§é–Ó ¡(RòªF¸ ²!¾@Jmâ¤na¯AÓìçÛÏ`Ÿ…@J^ÕDÆ¿2¹lHrŠ:r¼¸·ŸE;¶ŠsÚQ¢( ”¼ª.ˆlˆo ¤Æš8ªÚîS Qžà2A<„B %Çj„ "ã_™\6$!Eå(hÚ–¥˜Çà=cšØáE á‚­GpAdC|”x 5nŸƒ’óúö¡ mJBQ¤äUpAä`ü+“ˆ$¡¨‚“%CÆmYCóYØGRHMú‚Ȇø)1bkÈ…v^3:«®;°NBŠB %¯j„ "ã_™\6$ HÕoËìÄ)ˆÁ?"BjÒD6Ä7H‰fiÙíƒFiS{èïÓ—œ¢HÉ«á‚ÈÁøW&— ‰MQãX†mÂÔ#òy%¤šô‘ ñ R"ÅŒô¶Á}¦DoÞµg!…@J^ÕDÆ¿2¹l›Ž»äíys¯qµWIaÞ¬“ŸÂ:…kXR“¾ ²!¾@J„\ÔÁÄŸB´×doËæþKE!’W5‘ƒñ¯L.¡¨óѺu}­;öášUØ{ÌÌŽmC”¨¹‘ª!BjÒD6Ä7H†ÉÁˆÃ:íÌ=Pýýs¤H!5é"ã_™\6’‹Â(ꪃþqC‚£CáÜhÍ’Â<RHMæ‚Ȇø)0Î þ_˜ŠÅ1wü#)¤&}Aä`ü+“ˆ„‚Ô%/_njƷw¦xüÖÁ>‹Ž•Tûx!Bj2D6Ä7H £,Úÿ˜ÊÎù ^ )¤&}Aä`ü+‹aCÕ5ÿhC€jïÁ@꺡ãÃ5«± &›­¢j–îmc%7÷‹RGˆ)Lpx¨(³¸`kÛu 6”_ü„@3jÿD¨‰ð‚|ר`Ú` U{|…‚Ô½Ðà·“&d¤fiúk†E~™]^—‘bŠ“‘˜Ç9á‚­GpAä`ü+“ˆš£’ãvízSû:ž BQò R&~C›Ð4ÍSmËÛNû© ûH5V“B Å‹ËUåwvÓöUõbúà%}ÿ^»L‡˜ j¤&6„@êÛ㎞ìíÙ•¾Xíí¤ u«ö&NÀ(ª6û ßõ}¤š”‘ƒñ¯L.âƒD'sWÒ ÔôÎñ§(y©/·ö‚ö9M10XÏKºj?ù¨›lܾg©&jòaC¤ð(+¾0ÌiØÚÎËÕw™!uÏ‘b†4ÍE!Bj²DÆ¿2¹l¨)Üpj¨ëÐé†"Q”ü‚þÒߢo4ÃØ÷G»eÄ~÷’¦Úæ¶&6?ëc›¤ø¨É‡ !Ââ⩪q¶ãÖP× ÍZ!Bj²DÆ¿2¹l¨ 1<»tïÏÓãgž*A ÕèµÍÀ²“™çL}Ây/)ªé¯0òåÍÇCc×ÎmÒjá‚Ȇø©ê³WV¯Ö£N¯¼v©uƒZ.ƒŒ|Fb:m~ÆögÛ>Q}œ<&*EÉ;HéoÕ7š)©/”‘â£&6ÔÚAê»õvý‚úŸ¹R HQò Rr8Ë-—iVM>Œ¬ uÊéLòð䎵¸¢1(J^A ;];|¹˜£)ísš*s¤x/R|ÔäÆZ5HU]a/á¨wέ< NQ¤$yI] -—iVM>Œ” uÒ÷ô©®§{rzÚ䨉GQò RÒl=j„ "â­¤.]áÎ;Ô)¸Sti¬H%Ï …–Ëú‚|×ɇƒ‘¤NŸ*ïT¾˜½dnÊ<±) R“‰ ²!¾ÑJAêò•“óOõ¤öt)v•¢ä¤ðZ.CØ ò]'VW•Dq„öþ‚jµL·È©ÙoeÞžV9iïËì¸Wõ©eö‡rÒ?ȼ=(øîdi€$/™ïj1#ëß“ÓîL±ŸõsÜÙ7ÊÈJ»ÔÇ"Ã&Cö-‘ >‡2b-—ÈyŸ-û†Áär°–ÍHÝñ„ÀÈe~<¥xÊb…EûÐö+÷¯4”ìÅ…›ÓCYLðð[é½'÷ÛÆJVÀ+k.I×3Ó?öèñräœ×Û·½›2ùSÏžwr¸5wj% ¬my%…"tU^„Ë1ÞGl+iZ­i`j,Ì Èlj|\ÏA›‘zöÛ+ܳw/ɃSô×èw Ô6ÚgÌ+) ™.în„»£«ÇZ[ÚOæ~Fõ%˜`NÞQ¢SË?^DT`jáÑ‘Â#*|žMð”ÁÕ0µ]„¾ 'òá`¤©»UÏw¾ì7ÓO+Pk’Ã$ )JÎ@ #§b…Rœ¥n RÕÏcußÇ SÃè1ÕÿS¯^×k.R9+”á,ÕpT#5ù°¡ÖRñ#âÆSC·˜m¢ä¤\|Õ¾dn‚T,ý—¹¸;#B ½ƒ‘¤î^{TÕ¯ºhÇ‹‰Žµ´%§(9)?ù.ÎlJQDÔ`úÆc<Ââݤ‰9,ÂAŠÇO!ëòÀ) Im¨UTÔØèô^é‚;,¶]"6EÉ+H5òR`@ŠŒFºwëqõÈK×Ìo03o¶m¿nß:R|ƒ5%§œR±azz£[ò¢…¹ÅÆšâhHq[IñžIñ×¥P‡P‚zR‚5Ú·UdüD SÄF?…ý¤BSéHk«ã©Úͳ[?§~ƒí·>yßäÅÛo]¹Õ|¶¹ûwæ`fj·Ô•‚òÊ+(¢Ö#Û%‡s‹ HñU“j= Å™È)P/èå×kŒÇI( )Rð8ì uïþãKS._Õ¿v÷ù£ÁÑS ¹©'— Eß”VþCE”îQQ3RyU…þ'©;ŽìÔKŸÞ-¶›B„B¿„þÓÒõÖÞ`–Àã¸Wðéи²„ìŠÃ!^õÆž¸tÏHUߺZz£üñtÝ3ážùW‹²/ΨÊJªLcŸð9ãgQlµõØö¥‡~ž”>y@âõèÎmÃÛöNè3'kîÎü]^§}R*ÓËjË…f¤¨«)”ÎÙ”ÁE ÕTM>l¨•€TÑÎ%ª%Ó¦iv5Þ»”L@êè¡ì2;n­ñîJ/÷¼#¤D=²ÄªÉ‡ƒÁ RŸ\žõʪšûÏŸ¸œsÃ@j§áNRMƒªŸrá‡ò½\À9R¹ÙÙ/È\Ø%F[-JmzÆ £c{¨'i‡/æ^¬©4GJG§á©'¾às¤0ð:t)—^lVdþó¡eÃ’‡+G*c€5y«,HA`C­¤î„Þ;¯qy›ñvÅPÅ­fÛ$¤(9)Y)ö[Y¼Ø¶ÇÌÔ–©“a¡ïµµ_Žœó`ÕÊ_ÆŽyß­Û¹NK€TÀ¢l?“dÞGl+A ÕTM> bzþC( ¤0œ:y÷\§èNÌÌ›DQ”<“Á.îx.ctžàU{!Eœ‹Úš»­W|o _~Î^æVâ‘]qX´U{Y{ê¼1»nÕÞ¤‰EÝÉ=$É©ã×N»¦lÉØ¦›0N)\©[t÷¹ÉóL³Í¶±Ã]Ž6ä*ÆÊ¼U! mB÷Ǥ¤L7䘵}ÕþÝ ½®;Œ¦íG %{’{ºu¿ªk—õ‡:]}¶ãÉ)JÎ@ #'ìb g©†ÛÄ‚ÔÑCÙEUYYòní]±³yß½›„y)¾ …‘Ö œ¥n#j¤&/H]Õ¿viÊå{÷cÛzYÓíÎ8b‚¤EX«pDaÞøüPf³u¬Y¶Ë,´b´& 4>¶7¡,Y@ÚIøÚ½Ê e‡ŸÛÙ< gK¸^¯Ñdóc%ùìcEa,…•J„Êìä9ö‡3‹¾ÝÔcqs†¸‡cmHtkÏÌ8pf?ºèy›!’½ É7HÝKyX¥]õðÜÓÕ v½ýûBQrR<~r›“Ü”¢ˆ©rg§W£F6š#õzôèJ/÷–¸µ‡ó“ÿÒ,pŠB ERƒ¤®™ß¨yéÞ­:Š ¯Ž˜<èÎó¤šÆ½£%KÂBXM¿ d­c­ïÊîªÁÖX›è˜YÎ%äQRVíR"¡ Ù$kÿ¸„ñŠáŠ£ãÇgí‰É¯ç­Âý1émBW…$dä‹ RôsÔ)ÿQ(ÿµíqx« š#ƒ É1HÝç>ªÔ¨zxüÉ‘;yjá]ô÷ j.Bt³ X.cåB±7¥8o¦x,¡øL£Œ¢ Ð{PBÔÛ·©_.£€/—iÚV…¦¢ÐNÇSµ»G÷Áöƒ±o6^oÞÊM+w-Ùe§gGI‹í{TíhéO¥b¬•Á—ËXÎÏä 9RͨɇƒÁR×=nVõ«¾{íQÝöÓÛÝâ»§\ÍÀ¶H5ЬåÙ§ºbÑ8Ê]YnzìéJl¥ÑìѦ,³V˜€ÉæÐ‚Ô76*Êq>ì:?e¡Z„ZÏè^w&¤¦çåÍ ŒÕ´ sNÊ##enj¢×ã½Ê(†))ÙÛ¼‚ÔƒüÇ•ê•Øû½×ú&õ³I=HEÉH,Ž/ÿ¡"l W¤ŒTêÑ O®÷¶´í3gõ‹îמÓ^#Rchì° 3W¥¬Þ•nd“iç‘íE;ÄÏ*r³¼5a8öOðŒTnɱ̢ìÚÉÃs|ÍcòãB1±ð=à–ãašm¶åàÖÅ©K&%N;¨s¤ÆOœŸ0ÿ?rIêÒ}Ù¦þG¨éEA2RK²ŠJçmˆsc…#jª&&HU×ühC Øt®ümõ!·+»UÝ­zˆ4=a¶4w¾ RÇ©€€#ठ H¥ê§•ªW„{G6,t`9é²Çu`wXÈ^äÅòYµÇ‹’“/ ©“g_Rxä»w¬$Ÿv„¾(eq‡ˆãÆ;ròIÏèéÄšà—{T$ )>°÷ç›m;sw˜IRÄŽ‘Ô@l(¿ø 6xúÚ®&ew0ZºPùoùÃãO*5ªîsaÛÆ'ö®<¶ŠÛàÉæÍE½€@’¡ƒÀ'â ¾á÷sFQÁ³R@æHÅI4?h9;qn¨ á Ãb‡­HYevМš•~4Sð©w]»~7GÊÖº¹9R¹Çî7*I.Ló;°'kßâÔ¥Ã↫D¨¨F¨bhµ8~Ÿaä.ÿ(ªà9RSÖÅ/÷e²£ˆ©ÀÀ<A 9˜„&Hb H5¬v3þN¥fåÒøG|ŽyÙý‹à žµàô X¼š`ŠJ0K,U.;ÂøÀ+qf¹ŽbVe«.g­dÑÕ)ð¬Hg­AªaµCŹÖ\Ûáq#T"T—§®\Îñï`¢ÏIÉ-* R–sK¦-÷Ý»ÿpò]Ö”n•†…š‘"vœˆ¤bCª‰aC€§?  áu¤ RàR|«=<÷´J»ê^ÊCl»èþ X«/n€€Hp’¡ƒ€^-À4ðlÛóaÓ¿-Ókºj/›û7`EòJ¨žÂ;LŽŸbœ±7äpØ¡¼Ü†O‡¾jú®[×—#f?XµòõèÑE‹ä¿j ð¬©ÔÂtß#I´1ác°ËWMŽæ”ð)ú‘ÞQ¾MWíQ—– s éaì&(5% ¤ 掬éð¿ºuǪ:9‹·RÈÁ$t0Ñ@ªæægî×_éŠuBAê|åï<µÒò··2ïUªWÞ.ºÏ«0‹;Ûæ´]CäF¾¾™<5¼”àƒííÁSó÷Ï•|èˆ$(¤¢cË:TsÿWc&”è±õ”ÙÊ+X+ƒX ¾ÿD0$8óŒ×¶’“/$©3e¯xj y)¡ •{ìO0÷ؽ†_ÅäÇmÌØ¬©90fØ@êþžNL¯ØÇ'HíÊ^0î][Ê”6ûm>iuÈ\²9RÄŽ1ÔÛPaÉCž Ð«:¡6$Òé/Ô†ªI ¤Du0Áuñò;žZüԣÊgU]«îFÝǶŸþörÜÁqÔ‹´gßÿÖ^Ó8ÄS Ê—¤dî`‚ŠÉ.úrF³?žëT±2Šo5gw·í>ºAãÔ»ôŠî½)u3í½!<áq8÷¯m‡rï[»Ç-s8\ÿ)¾¹¨#yßàdsNt„[”û¦ÈÍãÃ't䨩qÔ&…OÞ¹7,š•˜\Î4Íï`ÉXäÍd6“šRËÏLØPòúpú³SÛ¦|ê¸ÌÛ@"BFˆƒI%#õ솥>½±òË=»ûO¯™¹}›!¸ÀÿÚEÊ[Ù÷xØ”p%¥ObßÛÏ‚T+ÉH…{Gžít6É(¥nŽ÷ójÖìJh&{–/Ë_{ )Òe¤ÅÑâ|ÛCö}cúj…÷TñØ5ØÜÃÈÂR(ÜD)±OÿV›‘z\ó¼ª{õÐ{øGjeRN ©V˜‘ʉútJíTôÏ1M¿2ó2Ÿ8K-¬“f¨Ö\ê.@¶ ¤Ž€9R^Q>#7 Òž­0&|ìÎHÃäìßñ¯¨ác\Bµm‚mC9bßÚã|å5¹ëïv¢Œ”ìLÂ@L4ÂãÉ—ðï@Ê3rGõà •¿ß9ù R»êfÂ^å{/Hɬ otP(ùúfR^^éठ`s Å¢qNu;•±á ¶m˲ë>x {  ËUè„*H:qæ u¦ìÑs¤n ®p¬¤À3Ç{HÔôv!jmÝVβ°3khA¹‚±ãD$5®ê´!ÀÓІp5)ƒ¸ƒ€ÔÅËï¾QTíóê>Õ·üîâk^ÔjÄjÝ?ÁC.¡xÀ%¤dè`B)ÊÛÚ÷Œæ…¸ñÊõ} 1·g)Œ oè½[ðdóFy)AêHÞ- €GP4}[¤þÈðQ ¥aá÷FncD‡`åFAlU+ÆϰÐHAjçºLµúuÇmº\%,RÈÁ$t0)®Úk¤î”?¬ìVU˼ݰ2†PHa8%*H¿À©p@«Ö†ÂBX%KÏÏ¡³‚ç²çª°U¶°¶…°Â@Ö÷g›ˆ)ð)ÀÀÔÖ;lèAíÿ¿Ð*‹7 KMR"YbÕ@l0m0Z᪽'·Ÿ_ré¦Óm^Ɇ‚»Ž5Ì]BQ %ÒX"VM0EyÙú”hOœÜà.žë*ÿ5Ú¡]ÕÃ:/Xbïá²jO¼Ï6IR¼Ž5ŒÜ=6|¬"[qjø4‡(Ç ˆˆ‰n¡ÖÁÁQ3R» 6Lèú®ÃP?Éní‰qd‰U““)H¹Ó;íËîxFE±ÿµ÷¾Ö¼óüAïÄ> WRšNKo½ ÅdæÏÇ‘é܃Ýc{”à{y­¤pÚb·U=°ßÁû:mØga±bùƒ.]>¶iƒ½cÛ¤ ²!ØAêõ[Ï/“6_yþ¥ð—[îß&'ŒL»siôåZ‹[NäÆ`©/ätÃÐ5â;òŠÚu½îãÓg//O¼rè¶aý‰™“‚ª‚ͦB åîäY S˜>)ÿ¸Éw‹V¨V·n›}·^ß'7 …':b¤Ù¨ðÑJl¥iœ™ã¼]0œ2epƒÔžuzùãç»lÛ±gû† Ý.*¤ê£Œ”ìLf uïþãjÝË5F×ëRP·N µNb?¬+¿ñôŽvœöáÚ£¤x‘±á`QÏ¢ ¡»³»;̈B Õ0Ì,ø.TíæKÙ°ƒò ÓzÐ¥ )xlˆÔ õôÅË+3®^Û|ãÙ›o•ã¯% JüøÍsR(*¯O~ÖØllÛÄkÿÆÀNaÖûm:¡Jþ@êÛ“¢–D,íÀî0˜9¡“ƒÃ Ÿ¼m»›Å¢›cu^þˆ™Øÿ~×蟲bûn!…@JŽAêñã˳®\]_sÿù“Û¯³ê3Ryõ)dz. /nî‰S­¤’ŒR2ûdê„öÇOcÑÅ ¨VRX|lÓæm;J…%~ÂÂJHÁcCd)zS­OmÔ頛Ϟò¦œ¿y>0ePâõ”¦ëûZ3H¹¹xp”;ò£»óTÚ4¦â<ê|Ggõ}r R¼TË#V(³;t ÝÞÚj®±¥0@}A>NäÃÁ¤RbB¼Éÿ;R´´¦zö¹^ûñÂ`mjµ~ŽÔ­g÷µã´Ôæ#Â(Á,‘3,\5Lukµx…@ ‹]ºàü„(#¡ ‘¤êæN½ªYuýòüK‘ ±í=ŠJ~ùRN«dLÉšÊ÷A ­¤\ÝÜs†äb±ÃÛ°sX硌aæž– ÕJ@ è°­I¾íBÛøìfµwËî=¤Há`Rÿ­½çO®n½viêåû7ýÖïuzöÌæàÙÚ@*Ú1Öo¢ŸJ˜Ê^–‰$…@*bÅòF ¾r)xlˆ” õæÕµÍ7®Ì¸úôÅËÇγNŽz^W~÷õCíø®Çî jHQÜ‘‡¸ƒ¹“§(3;¬õ[ŽP­ ¤ðÉæFã&¶ UþÑoÜÓæoó!‚ÆÁ¤ R5¦7ªÇ\ºw—EÝ}þ¨wbŸ´šƒ¤êÎLïH«…V‚;Ù°ì$¤(R8K=èÒ;7°wpŠB %"#HÝ0ª½<ñÊÓg/=¿™ÓÞ£¨¸>#åXêüóÑe|ŸÐjA*klv¤nT—í!Œ¡Öž¶¢RTk)€ôôºý_¨rG×…ŒC,¸§¡ñ±MìÛF •ƒI¤®;ÖV®¾wý_NbV†IÛEµ*:œüy÷ÚÝ]»º²Ü%§(R¼ÀÎ p„B %5‚¤ž&†ó&'PÌÓòÌnU;?Ø8ŸœÐ•v„~»nŽÔ½×4c5?8@ŠÇ@é“2¬[+1•–,¡Z-Há¯5&ëUú¨P;ünÝ18KA>NäÃÁZ¤Ë+±«xT¸©ò\‡ò»U›ã¤á©#"«cHíØºc·þîþ=¼Y>„P)RÛô õ]Ütº}iÈ¥'·Ÿ7ýÊó‚ÏÂÜÅ|ÿUë©ÄéIËv.ÓÑ4öÞ+6EµfÂ_=Õ¾”Õ»¾­;¾§¡@ ««ÚBÁ´½S¬P†½c۩˯_ø¡"z÷­æ*»§éDÍæþÛrí6rÒÞ—Ùq¯êSËìå¤}عǼ§oߘƒOeÞ0ù üÜh !óžŠÔI^RîWÑÎeÚWrbþjúÕÁìO#zfTÈvÏǶ^Óµ› ±(9û÷–þ¿ä;þn¯ü¡Mݺㄯ뎱™·ªEƒ\Ö²·ö¤+”FOÊ+ÿ¡‚½…›ß\Œ‰«c  \¸É:ŒÃ#Ò~ÓÐx4xÐ¥Ù³°w÷%úxtKyŠ}Eì±h=jìÈðæ;7|Ë7 uòq=mF*)=µaä-í\–Æ:بÄÝ#£Fñý ÈÇ5(¨ÀÔNîáÛcÑß>¿ûÏG rÏ!V­© ½ìÕ«Ñr™½{#ƒÇÁZ¤0ú¡.ã–S*ÂõŽ $Z½§'!¼µ'„QT‘þvüã~³ýÚ¾*×útÎIÿ€@Jl5R¤³!8Aб¼‚n™ù„–äU8ŸœÉ’âÓ“´"º8'»"‚iQ¤AÕ9Ë”¡HaqÔÔ¤HÝoŠ “FFjÃôºwl»9BZ½|NÔ\Á%— uÔØèñ ø¶•­•†Ÿ†§·VRf”Øj¤HgCp‚Týä„Rœ¥âW½ðCEÄöÃÍA’IâþA‘ƒP”ƒÃÏ—»CÿIJ¥Ù; èþ¾ö{ìÕ;%žK!Š¢Há,õ¢woì´ÂÞî7A•ƒµ Há6„ñÅŒŽ_–ŠNŒéÈQóŽ÷i… uvõªêÙ³°­ÁvJÁ*Î..Ø6VrUŸŠ@Jl5R¤³!8A k?FQu“¦ä—ÿP¹9G$õ`žhÙ A*ÞÒâMgõû\Ô›†½gŽë¨FíàÃ, ¢H!ƒÜÁZvÕNNHaïØvàâCMñho¬É ˆÁB)J.Aêè£GƒY…øý/´ã\úN¼°.#åp”ØjȆHgCЂF?´9唊H½<„ä•â«Þ9!=¹µÃÏ£¨£›6â-Ì-;(PËIÿ€@Jl5ä`¤s°Ÿ#Å©æbpÄãØ½­¤8!Œç]:kùtF_„—oßö›¦&š#%‰²!ÒÙ´ …g¤ðÉ ßÍ—ú>¦ÇÌ\¿A0EÉ%Hq ôôïo[ZY©QÕ¬ím°’2ûC¤ÄVCF:“1HÄSU8ª‘‰Ñ­¤‚X¬îžÃïk÷pPݪ½Çƒb•æä€«Á|ªÃ¬†lˆt6'HñæHa†_–b§E(s”±÷VR'–-½8]ÛXKݯÜÁÊÆÛÆJ®êSH‰­†Œt&cZ½dš¹\‚T‡ÕÃgsûÐ.ŒPꑽÆgW¯ÂÞ9¡ÁØW¤$QC6D:‚¤x«ö0ÃÞ±mÚR>Ó¤6Æož£'”¢ä¤¸;ô 迃jÿC¨Ê<ê¼°.#åp”ØjÈÁHç`2©.áÚŽqέ¤Æz9üÈT¶c;5ý ”$jȆHgCp‚÷ës¤pâ‰é)ášÉÞ­¤~¾7{vR ì0Žº/9¶qïÑ)IÔƒ‘ÎÁd R®ñîšáš1‰q­¤–øý¬½†µ™ï·¤$QC6D:"/H9$9õŠèBQr RÎþ*]÷mP|0 ÿE½iú÷Ç(*ÎÊSC %¶r0Ò9˜8 U]óà€ R ¢,‹^ž–~•@ 8~‰Uá§„¤Jì}»X;¿#XºÍU)ÀxªÃ¬&Ò¨±¡¤”jmH†£Ćò‹ŸhC€Іp5)ƒøX Rz1Ó·'ÚR2K äw·í¨0Q“>’îӠî9R;ëž#E­²9U]ýL H!C&+¤Ç`ŠNŒUå¨úÆûñªRà¼L¸HaÕLia ަX8T A œ—Aj¬&R5\MT’ᨱ!Õİ!ÀhCx)ƒøX R1iqJ¥Ø¬ç‚” ÇФ¨¯Õüh^kC´½ƒ|øVÄ#A 9r0Y9˜h Usó3÷ë¯ô Å:Á egÓ'rO-5ýŠ„ åíÁSó÷Ï•ð`‹¡&¡âë3+åšm¨»«1g`Þ R"¡Cf51F`JHºÀSKJ©’Іd>êÛPaÉCž Ð«:¡6$ÒjC Õ¤R¢Ž%Á e’ä36f®–‘yMB’ùXŒPQ1§y‚Q1eý]Í~ S¶¡Û5Ç[‚ÁèJíßß@^ 9r0˜Lf©ÙQsÖD¯Åñ¨•d¤ü˜Ì®v±ƒƒgLdOš¸B)±«¡ë9Ò]Ï‘4#52j¤Iâ~n“ß6–ûŒÔgŸ6¡ê[úª¡Œ”ØÕƒ‘ÎÁÄ) Ä„Rç¨ã? “’~‘@òòJ?„Ī…²˜›]ƒUбþR¬C]Øß±Q‹ÕË.x-°»ƒó7õD)À8t`ViÔØPBÒymH†£ư«:mð@Ú®&eK@*,•­ÄQŠI‹OϼD HÉp,€TTô©9.AJTÝñ¡“ó]­ý›@B†LV&›U{ñ^šáš€ü$H¿ˆVûs¯ £½]ˆIhÝ¢V2Â)xš[H_vßMþ+õЪ=¢Ô@l<àur²æEÊ >–€ÔÖøíÓcf"8H‰tô‰U©•î4·-L-Ÿ _ÉA < ÷bÕƒ‘ÎÁdR+£WÍš'O •~½Ÿ9cI“/a…Ôfζ^ì^¡þuH¥†lˆt6DF5Ì"ÑJ®@ŠF[çHWÁsêVA¶´Æx´Ñ“¦jã©ÄR>À8 ô )±Õƒ‘ÎÁdR}#úÚÄÙÉH¥'ïd¬çÌhyEð8¿° ¯·ö–y‡ö² öc1TÙª6[ÀÅ}¤ÄVC6D:"H…§E)rcÒâå¤þ4t¤··¡í ôçÇF†Þ4U úÀQ3CgL¥B %¶r0Ò9˜ @Šž¬ÄQŠJŒ‘'J‹/Q1£÷òdz²XnÔ-sÆÏõÙ©íþašÖ ?&s)çç±ìf…@Š@5dC¤³!Ò”qÂ^Ýèq"Qä •~½9}¾?02õ¥)™Ó—îìÌê,ø¦)ÉÕƒ‘ÎÁdR;c ÇGN•¢ ©ÌÔêîÂêIˆÍ\lÍÈ4¥…©Z2\C˜~œ%¶’Ç”Ô ‘ΆHR¢'%ËH¥'ïh4ÙÞÎŒN1§ñô¦¡" ÿº\”¿K͈a ¸¸”ØjÈÁHç`2©)‘Sõc ä ¤¸ÙoVÛ2zy2½X,÷úŒÔì@¦²c) ‰f±gOgϤ(Rª!" ‘ ¤bÓ9Šì´y©´ø’ftš#fç¤i´¨>;åD ìhIßèI[²`dØHŠB %¡r0Ò9˜ @J£îï'o Åý6ÕŽA©Ÿ#¥ëÖÑŠ±Ý¿Ž¢|9þJl%oŽ/)é¨!" ‘ ¤¬’lE•¢ ©ÌÔꮂVSq¢Í·¢õt Ô°¢¯t§9Ñ•XJötRRPCF:“6HÄS;rÔÄ (øAЇAT«« c™w(þq>{Á4¶8E!’P Ùélˆ\ µ(vñÚ¸õrRÜì7ˬë2RNö^Ašè ýul‚æ¸a`¤6nNè@ŠB %¡r0Ò9˜´AÊ fÇÄÈIr RÁlÖ@‡ºGF}*M™­ìÎñD %55dC¤³!r”NDO·dy)î¾þ´I6õÏ>0§ó õµ šìTGQ6t[e–²Ý”tÔƒ‘ÎÁ¤ RbO"H…rXã\êÅ{&ç ÎÊñì "Q) Õ ‘ΆHRì´EŽR|z’üƒüƒGÚa?atؘE!‹Á) ”„jÈÁHç`uU[:0âmkDè°2oIá?•N0–W0mïð>êÏÈIËüò{œÙܰþÒ2*eÞNxàçFk™÷T¤Hò’F_8˜uj†nÌbÙîÛ–Žþ%#Ü2fÕý&kèÁkõR³ßʼU(¸œ×­§§"5 e3RŽÎNX`6„o˜¸™*‡)ãÛb>²6^ìY¬PнcjvyE ¥‰Ae7ÞŃUΕ:š÷<05ìæk&˜ÕÐõé®ç ÍH9¹8c9¾ÅXšî\ÿy¼"äcéÆýÛX§é{ñæ üãòœ%Vø6xàj0»ÌjÈÁHç`R©ÕÞkÐÈHmÿÊR®KOcp¶!MËÔ (¥!’²²!ÒÙ‰@ªshgCÏ]rRö£0Ûþ¤ìíòŒffŸ»~ ç¡Óµ¥ªQËoW"’¦r0Ò9˜TAjjÀT½€érRØËvrD9¥"hSqC*ºqB=Z½æ~-))«!" ‘¤ÌÝ,˜ Ž.NrR sênŽ…ØÕ` õ,‡Œ ÷n>¶UTŠB %¡r0Ò9˜TAª/£ï:ïõrR¸UP*ŠÊ2CËy0dZl¶-O_ ŠB %¡²!ÒÙY@j½÷zÌÄÄ£(8AjûWs[z£(–ï) Uß½Š] \+F %e5ä`¤s0©‚”"SÑÌõ€<ïz)Œ¢²TÏøžYW#’¾²!ÒÙY@Jª7:MÎ@jûל:mÓwÌä{ÖFæ,1( ”„jÈÁHç`Ò)7ÓaĦ(8AŠ7Ã) }0ŠŠÚr ÛH¿œÙ7±Ÿx…@JB5dC¤³!²€T?Fÿµ>ëä ¤¾Ë©‡\àÁиôñ!癤¤¯†Œt&=Zí½z} œï…ƒ/¶äm;Pb@J&jȆHgCd)E¦â7sy©ïrê!x,•­¨stç«÷n ’¾r0Ò9˜ô@jjÀ4½½ÖRµïhÇjç]+D %5dC¤³!R€”‰{]N]lŠ‚¤æÔ1ôÁ(*jsÝ4©Ý…Æúù;Ä£(Rª!#ƒI¤ Yá³¢5€TÖ•C}ûŠMQ¤$TC6D:"H­öY=>HÎ@Š÷ÂAŠ=ã{e_>Œ@J&jÈÁHç`Ò)Í­†­¤öíÛUh„@JVjȆHgC¤©©ÔiÓf´ʾ’ƒ”Ø…@JB5ä`¤s0q@ªºæÀÁ)gÇŸX?Y»Ø4Å#6ç pü¨Ö¤$ ̸œÅ—ΔþF HÀSf5‘Fˆ %¥ThC²u€6”_ü„@<€6„«I¤ÀÇRCD´ÊguS8Wþš@<€Cf5‘Fˆ %$'Іd5êm»ª#І  ájR)ð±Ä©µ>ëÐðÅ£0f %CÃhNö\j)­9B:{áA fÏAÆ÷…Œ¯š”Ví ¤\ã½F’%{¤Xµwêæ¹NÑD]£'6H‰t,Zˆ Ì£ІІCÎVíÍ ˜=™:Y’%{¤XµwíÞM•(•Ò›å¢.Ó¤dè0«!#ƒI ¤´C´ ¢ý¯ÿøíÓ;Éköó5ÌjèzŽt×sÐf¤¾8˜Ï´™3åÛÁδ=ƒ9Øë¼ùôNòÀÚö9˜¸jÈÁHç`R©À+VÉ· etÉèŸÒŸŠB %¡²!ÒÙì å?vëBùv°´®iSBQ¤$TCF:“ HÑ{l´ß$ß668læáY¤`PC6D:‚¤/w^!ß<,xNî<R0¨!#ƒI¤Ú[ì¶Ê· ¹MtÛP´ jȆHgC°ƒTP¯õëåÛÁœ';o.ÞŠ@ 5ä`¤s0©€TH§6;åÛ†Ìæší;cŠ@ 5dC¤³!ØAª\ îY¸Ç¢Ô jÈÁHç`Ò)µ6†òmC›Wmö¼è@ 5dC¤³!ØA*D]ßÖ@¾lݺu~ÕTR0¨!#ƒµ,HY›šD-[¦Ô.pÝ|ëý¦rlCK¶-aÕpHÁ †lˆt6=HýŸ½ók"Ûûp\+H±÷‚]±¢(öÞPÑU@T:$¡'ôÞ %ôÒ;TDÅ ØQa-«®}w]WÝê~÷;a4FÉ$’™pòüïÜÉáøÛ 9yŸwNÎ Ò*¸ÌtYzK6)<¤A‚Ž`](Rg×Þ()µ Ö/ºWã¸!`?lïiÅŽ•NÁý"(RxHƒ"†p+RÈ© £_˜”Ÿ γWò°ŠÒ ÁG°.©¿}гf5ë|.®Ÿ¥£Ø­¬, Œð< fÚÏ<úø8)<¤A Cø©nu*8ÙyrõO§¡Há! Œpë*‘ú«¬øÍT½Ïã ßQì©`§uØÐ”Í›¤Cã]ÇŸ{~ŠÒ †‡!<ŠT7;é5²þU#)<¤A‚Ž`]%Rÿ„ßß@Að!ÕÙ©9³BWW*14ÄwÈÕ77¡Há! bˆp¡H}s*ÿÙ"ݧ‚êAêÍ¿¶@‘ÂC$á&ŒH]oþoŸ¿ÊK^O]öeFŠ„ì´ahs;¸ÄÄÔ`ˆ¡ÐУèßB ÓTBUZ{È×®ÞüC‘BóF ÿ¨ã9 } J åä]ÇC’u(1t¢æ†BùF Ä’&f‘BóП `¦{öDééÉ3ú>/Nÿí·7¼ ©éæ?Šž™ Æõ Æ5M‘B5n>þöaÐdb¼_t?k›ÜÕ«¸NŒ—¹4 ¡÷e¬ÒØzQœþî·7h +‘BïËhzâ9M nh0Ä»› ÿ¨c÷Dƒ!Ý„ÀÊ7%†>b)4†þTÐóظñ•¼|³¦¦£÷Ï«ý7zÔïW.ñ5$¬D ÏÌëºQÇÙS:&˜H5·~*ÿòçŽùjÝ™ÈëÀœZ‡ Ѧ±ƒÁ~¨á^N¬0"°Ó¢QœÕñ~{ŠØi!!GD|³Q¦uÄÐû+—¸ºÑÍ»³ùÎKñ)Þ¾CÏi‚òÅPvÎvZNÞ51$‘QÇ™ÆCÕ§Ÿ°ùžÕñÅ@o_ q¦‰M¤x §‚2Q2ÖŽ\N‰N0pð•´hØ—”}úáåÇ´äÿÆŒæ:/uã[‚‰(Rxf$X—ŽºviÒA°.›‘B.&Û‚8yFßýu-Ò,'ìù'†jŸ|ýG†xÌK•Ã)†Ênð|Žpçs8œ‘úˆâTè‹ÖÓ»3h²Þ/Äþ]¢û¡¤ÎHA‚uѨk×S:&ŒHC9 |È1ä,­:ƒKã†ò÷/DÿŠ˜ÖCˆ },)èÌnÞýC‘BùF :xNhÔ¡ÁPvÎe 1$ÎQ×. †ÀY†BùF Ä’&f‘B?–М —`ùÚÚ'&MBöebäúËÆêà€Î  C‘Â3s ÁºhÔµK“‚‰ãOÄhhHå}Ûaq €¡?ƒEý[1(EJ ÷¢û¤¡ÁúÂÛ¨k—†C( %†PѯÚûÈA0…p ' é#X”ž^ó×SÁ¿üõûç©ÒBá.ÖT¤$H <§A‚Ž`P¤„|‹!ÒÛ¿ßž‘*-„"%Á4ˆ!Âaç"%­c-NPP@'âú=~ÿücJbgk¤ H‰- Œp‡H ófì²Oê1ôäýó?Ú0Ä÷Ú=(R]š1D8 A‘îÝ=Ä}ãÆ— à„°_t¯ŸW,øú½¡ND‹‚"%b$á&‘šä2i—ëîn‚¡÷ u"Z)Ó †‡!œ‹Ô(ÏQ†4#©$x˜îݹl™Ldß‹SDŸ‹‚"%z$á&‘šCž³Í]_º1Ô/º÷³þ÷‘‚"%†4ˆ!Âaç"5ÕqêNWi%ò Å ¸öó-L, Š”ˆi`„#˜8DJÏLo½çiÇòí_ïbbQP¤DLƒ"†p.R ¬löØ"å‹ræùy(RxHƒ#ÁÄ!R 7®ô^)åŠÒ¨ÕE iC„ÃÎEjÕþUk¼ÖJ9ÁÂÇ•=: E i`„#˜8Dj÷öݺ¾Âÿ­bb`ˆ1²êÉI(RxHƒ"†p.RÛvoÓóY&å –Þ’ E i`„#˜8DÊt½é¼€ùRŽ¡0­üû¢ÞõŠ&iC„ÃÎEÊx³ñB?)'XЂˆQP¤ð F8‚‰C¤ì–ÙÍ š)å ™x'ŠÒ †‡!œ‹”Í*›ÙÚRN0¿5öuNP¤ð F8‚±ºvuÍ Z¡/†ÿ‹ k’!ñÀŻÏFw(‰¿R@”‡^‹Çe™û$ûûìò÷Ës÷ÒLC‰,Þ%ñÏu÷y¥@×ÎHyz{J“24f²/J•ãØ¬I>›öW|ôò'L Øâùœ Ïið|Žpçs¸‘òôñ;1vTô(d_”ÂóX"Ñ-çÍÿáé#L Øâ™xNƒ#ÁÄ!RªʱÊR.RFëo„"…‡4ˆ!Âaç"U4¨H©&å"åä6,k8)<¤A‚Ž`â©K½/õŒï%å"E·]¤ E iC„ÃÎEêŒì™¾ñý¤\¤¨áý’û5?n"%ñ4H0ÂL"ÕHj”‰“uôu–f‘rtœ5ŠÒ †‡!œ‹ Xïø>4_Wi)JäØœqGî‡"%ñ4H0ÂLL"¥ÆT7÷·”f‘¢DôMî{ïù(ROƒ"†ð/RbXûÛJ·H­©X˸ EJâi`„#˜˜Djtôè={¤Z¤"Ç环j­†"%ñ4ˆ!Âaÿ"52z¤a‘t‹”M ٪Ɗ”ÄÓ ÁG01‰ÔlÆìµ¡ë¤[¤ÖT®e6ÅC‘’xÄá0„‘šÁ˜¹>tƒt‹T\C‚^Ù2(ROƒ#ÁÄ$R+CW͘'Ý"euÚÆ®ÖŠ”ÄÓ †‡!ü‹Ôò°ó#H·H]ºE%MŠ”ÄÓ ÁG01‰Ô® Ýc£ÆJ·HE52×^EJâiC„ÃþEÊ x÷ØèqÒ-R@}e:uï,)ɦA‚Ž`b)+•Xé©3÷ÏÍEJâiC„ÃþEÊ2ÀšE0i©ÕkÂêP¤$› F8‚ #R×›ÿC9 Ø"åæãÑ+¾ØvԣĤ ŠThèQôo!†iC_>UHU¸úä&Cºtåw E åò£Žç4F åä]ÇC’u(1t¢æ†BùF Ä’&f‘€`_DÊÍדE0_Žz”˜|C‘’ Á€ú¸Ÿ÷48¶‹‡!]¨ÿ C‘Â3s Á¸> Á¸¦ #R(Ç §H-8Ÿ³ò·áªGŠz_Æ6 `¨ÏÂÌ›9| +‘BïËhzâ9M nh0Ä»› ’Ô¨C‰!Ý„ÀÊ7%†>b)öE¤Àv@ìËk®z„¡HIŒ`äÈ ”H’£hF²Ë‰níÔ°)<3LèžÝ`‚‰Tsë§ò/¥¯Öµ©±Qcwíæ£¸øSì´Ä¤ó"ŠT@@;-$䈈o¶ iˆHYœ¶¢žµçêF—¯¾cò—â+R½|‡žÓ„u¼1”s…–“wMD IvÔñÅPõé'ì@¾gu|1$ÐÁCœib) Æ!Rã¢Æí 6ࣸN‚ñŸ—ÂóXBf¤@ifj¦(G_¼üä7ªkø•Èw^НHá™9`buRC0ñÍH-ˆX¨¦'Ý3Ré7²çχ3R˜§ Ô žÏî|Ž3R‹ÃuAIíŒÔ‘Ú~dËÂë/üÐÚ¹!Á)á†Ên`„#˜0"D å€à©mÁú£&uÔ£¸øj EÊß¿ý[ˆaÚç‰q»`R\_5”d—ûˆû¼†"…ò@9tðœ&ШCƒ¡ìœËbHR£%†ÀY†BùF Ä’&f‘€`"µ3x× ÷âNa(R#Ø‘Š8áÜ7jFáCî†T×ð+†"…gæ@‚q}@‚qMÓU{`kåo­,Ú…{è=å[ˆa2#jVáì°BG•˜ú¦ðª=ɤ¡ÁúÂó¨C‰!”…C(KÊ®Ú[Š¿]ÿ89é¾j­ññÑß%Ê_xp^µ'©4H0ÂL|"åáíÙ'¾³¯‹t‹”uÙÌðÕë~|o ¡4ˆ!Âaˆ"ª\ªŸ½‹TKËZÚÄâõþ—‚ HI* ŒpŸH3Ô(ÐXºE*÷lH¯˜%O…·((R"¦A CD©1Ñc ‚wI¯H=<{$S1ô¬ïå8’EP¤$• F8‚‰U¤æDÌYºJªEêQZB|Ï$µê¡HI* bˆp"ŠHu¶Þ\JDêñ-{¿¸E5-7~¼«”¦|î‡KP¤$’ F8‚‰U¤6†lš9MŠEêÁƒºE´ô{èÜ¡HI* bˆp"ŠHï=FjEŠÃ„ö7´=M"%‘4H0ÂL¬"eéo%Êzs<ˆ6‘zz¡*K1ì|ÄõC³‹æ@‘’TÄá0D‘rôséßÏÝÇSêEêȪÁ™ƒ[ž>€"%þ4H0ÂL¬"åáí%×ßÎ×^:Eêù]Gÿ¸ÅgÜ{þH%}Àù‡uP¤$’1D8 E¤@ djì<(õ"jjþÔ”¦4(RâOƒ#ÁÄ*R &FMÔÖ—N‘â0!Óûìk¡HI$ bˆp"H͘·Ç±4½«Wz4f.ªŒà¬õÌ Sc§µkä[àØÞÿ÷†…sæ`› F8‚I@¤ödí]–±\:DÊø›‰ñ¯…ÔòÔR7B‘sÄá0D,‘ò)ô™2J:DŠ}*Ò ]éÑP0ã§E+Å+Q¢©P¤Ä– F8‚I@¤Âó#T“T¥F¤ÀÃeAr©1yAU;òË ”O”OÈN†"%Î4ˆ!Âaÿ"e@$Q@Å,Ï,Î/+’O’O,Inûiqhd,‰½4£˜ˆ"žj¤±´É0ë”Ò…£³1Â#ÙV´=fû¸¸qP¤Ä– F8‚I@¤@ L’*"…œÒ¥/¹ÚУ1mÓávJ43yÖ®´ï¡H‰3 bˆp¿H±vJòÖº0H}ÝŒ%rMÁΡCé#ìc”¨1)Î4Ä¡‘ǧ?5öTT`4Ò¦?È(ÆŠ”xÒ ÁG01‰ÔÚçó¹eiù euƃ¬]m?ÍŽ`Ï-IÍ'¢HqNŒ'î*.•¹þ§yeú('* :)EJ”4ˆ!Âaˆp"EͳŸ™>«°8o»[Ìü„CëhÒ#R ""‹+jÕ2½b‘«hkåxå€È@(RbHƒ#ÁÄ8#Uphóg‘¢åºŽO™v23R†ÛG+Q‰*Rœã@}¾/¿Ôïr™y§MOž±;m)±¥A C„©ÌÒlÙDY_chHnzqþé)¤ 6^Tº˜à”ˆ<;K¹ Š”Ò ÁG0ɈTVá!€¡ä¼„m®1ób³Ö¸ÄT¤8ÓÊ Î¯S©+7©d[‘g¦· “RP¤DIƒ"†'R ¦$k ´ .íÒ)R ²Œ³ëäêÒ,ÓÁ¾W”·\¼5ÚŠTW§A‚Ž`’)P³Ófïˆ2œ’Ÿ³^ŠD Ô¡ð¼Kªu•{¿~Ç7?eÁ¦ÔÍP¤Ä“1D8 P¤Š b¾'…Nm[±ð¹Æ&H—HJ±M½¤p)gwØÿ>fF¼Fpd©.Mƒ#Á$&Rf©ûGN ,(È+”6‘•™{QãÒ‘G‘§¡Yr‰òáY (RbHƒ"†(RŸ¿ÝK/É”â)¤âi \(^S ö§ÅN[Â\ EªKÓ ÁG0I‰T¾?#Œ×dðõ|../WZDŠåR19_<¶éó=6¤nZ²Š”Ò †‡!ü‹Íçë̉šà\ÌjŸ—1ß4×\êE TŒ/óÌÐ3‡çñeø)Æ+ZD[@‘êº4H0ÂL‘ºÞüÊÁcF ÔÜ´y¦‡ÌŠK®`8#zý[ˆmZGÊŠ;t~ø…ª5'Ò²2ã³UUï˜Ïj§æØMIR^úC‘Bï˘§qU¢ÌÄCçÆœ?¡w¸9ƒª™<61;+‘BïËhzâ9M nh0Ä»› ’à¨Cƒ!Ý„ÀÊ7%†>b)ôc‰·Hå–È')$—üˆ¡HIp,ñýÂ."‚Q»âÇ3CÏlß82ndHd¨ˆ"…~â   ÏL¤š[?•ù+}|µ®ýŒT‡Ê-n蟨”Qúô,.½+¢H±-$䈈o¶iYQFrví„s§uËKÿoaÆýlZ~á-EJ 7‚ïÐÁsš£Ž7†²s®°Órò®‰ˆ!‰:Þª>ý„È÷¬Ž/†z#øbˆ3Ml"%èXâ-R%e·We™íÉ =KÊï‰(RK¼-*-ý<’vz÷ó‹j SSÅ.Z¤nµüûõ@1/  †g‚‰iFª37Z”¾Ø4—ÉW¡ˆ;#õÙ¥R³ÏL9{j^MfÑ …DLo8#%ÄpBÙ žÏî|Ÿ3RQ›£ËÙ"ö´s£€Â AÉc Êø/’‚)ÄÀ6gwNµzõ¨!ÛbôáŒ$˜(iÒA0aD ˆÊÁW¤\ri£S´0)ÿBôo!¶i¼Ý(==ëôÌ3gg7Z¤Zi$ ŠÏN]¤P¾(‡žÓuh0”sC IpÔ¡Á8«ÃC(ß”BÒÄ,R(_BœËƒ™:àO€``‹ìwԣѩ“\ ܱ) Ž%4"•š~þó•ezé°RÅE“˜ýB‹Ôí–1)H0H0I¬ ¯ÚçsQŽ%l‘ûŒ ‡Û»W”¯–¤˜Œ•H¡`žÆwåSzFÖ©y5g¦œÕIZ´8E^µ×Eih0„¾p>êÐ`e¡ÄÊ’Ž«öëÌ¢@YäZÍNׯJ¤z÷±MC#Rœ•à”˜<%Y)J‰M…Wía˜ F8‚u¡H!çsÀŸ†ÀÙï¨G;²v®ÈXÙDŠåR™YÕ‹NUM=>0a eº5©®Hƒ"†p+RÀ~"¶n 5únªìL•æÉ%ÉÅ'v7‘ÅôŠ Ô Tf(;F:A‘Â* ŒpëÚûH!þ„œÏqµ(Pq r‰r…YÝA¤X••yBïd²N²B‚‚f)ˆ!QÒ¤C¸)dFÊsCù)™:_»N i]Ö†-ÙÛº¡HŠ Œv_管Bw .ßorvÓÆzzÅûo¡H — F8‚uù 9?ŸÏm(çaH³Óf›2ï."ÕæRUkNÐ6Ð% ŠÍJ€"…mÄá0„O‘b¯‘Dµ,.dÏÝ¢Š™ŠIJ¹¥ÝP¤@1Â#ívÙ Qi§üxܸ&Ýů§-ÿoÌèM—¡H ‘ F8‚‰cFÊc}Ûù¥¨3CrÊq“2¦‰T[ÛTµm¿þ̸™©ÙP¤0Lƒ"†ð)Rì«ö:h–g¦[’QTÄU’¦¥M·Èµêž"*:$8i±¢Zˆœ‹ ùjïÏÌ´ÿÆŽÁj^ çÌÁ6 ŒpÇ)à@–fyÀ¥‚특RnQ¾j’*ß%ç8‚ŠK˜ *f9ÏÚÀÜE Ã4ˆ!ÂaŸ"Uþå>RìÚž6Î#.»„ËÍ< ¼5“5yßçcI‘ªØoòdìX;K;å0egWdÔ§¥Kþ,/†"%h$á&Ž«ö2:k±¤$£€ûÌ¿ÏÚ£“¾¨»‰¨|ã‚ÑÞ££M Ha•1D8 E¤ ÊJ$ÍöMÌ/åâIcSÇÙå9tO‘:»ic“îb°ã`ï(¥¸=9ØÏ?d›¿Bƒ H š F8‚‰ã™v*ÐñOœå“SÈE’R Óäåb b»›HJ5OÓÒ°‰ g¥&Ÿ¢’¯ì6¨§Wd¦&ãù£Žç4ˆ!Âaˆ("*·¤x†OÂÒ ä‚?rÊw™2ª{ŠTù~“ÇãÆ"û»Ãì¾cª¬+³fÍHU”@‘4 ŒpŸHÊ.Ì×òŒ[”ÄÕ“ÖgnÕ E T$%Z9\¾l®ò3-­æU+_O[þnàÀ?¯5àö£Žç4ˆ!Âaˆ@"*»¤x¬GÜæˆ´óUÅCS†¹xtC‘Š ~«ªZµg7ò48÷žFˆêN Ù7¿½„"%h$á&V‘•‘Ÿ?Æ=Ö€‘ÚñG1±²‰ýS Óº¡He¥&×L *çè†|µWknúcÇ|üã>?êxNƒ"†ˆ%R R ‹4éÌý±™íÚmòÈZiZÝP¤@e99üª¦öxÜØ&ÝÅo¦êý>~ÔˆðiJI£®¼¹EJ 4Þ«Ø9ïé¤^ÆêUÆA‚á`¬®b®Ì¢?4iÔÄ»´4ÓÐ8'Tü‡$ñºL+è ÷9®¦zi-õô ‰›4òÙè%ñW*ЈòÔ L-x¯êœÚŽc%åÿj$ö/<+Ù_¾¤êpáõ®•·÷…-Ø/*ý4:ܺWœ‚Å¡t‰›tøXý¸.öBâÛÃY7®ê ü41åD©äª‹^) kg¤ž¿}õ.=x¨ážTtõV»ö“OÌøø—ç\ÿ´ÀîQŽ'OÏ×Ö>1iØ1üÞP6RÞ(íPbJÒÍËëvl;¢8¼æ-XH{ñîg¬ ¤ýðôVÒBÂC;+ðÙàñS®…«qÒ1M:Îçp;#õúÃ[Uûàáׄ’›w8ão'Ï.ÑæÚÚ’m±*œL: ”36Åͺg´êø°©7*Ò(DÀÒÃåXH;}¡«i‡Oê@š«»[g>Vì}Ÿï'|°(šÖig¤p>N¤ƒ`’)PGnßè–xüNK»öå•+‚º›HEéé5„ìÏ#oï«°–iòl„ã6ÖP¤ HñH“ T¤@½Ó¢8vïvËË÷¿hLθ› EŠ]ËÝ{êÈ2ô}õ¡Ha#Rt«Š‘r?é™yò´((Râ!˜ÄD TFý5À Kr6xjP–æÃŸŸv+‘2ݳ畂BÒ¢EÈSÛôÓrŒþäSãc¡HA‘â‘&"®HÊj¼ 8vùñvK~kñø¼ñ/Þÿ EŠ]úÎ^ý\­äbT´Âµ¬ÝmPù~Ð9HƒI¢DöpÊÕK,Ê«³H­>jæÑŸB!9x®L¯:)ªH/ßëÊz9$ suÁQáEŠn›;}À›)[Bè|, Š”x&I‘X}i„Oê­g?q6®>¼Ö«Þ·[‰x¸oÜøRA¡yР““&½™ªwuìÆ€™±zñ) P¤ Hu–&"´HŠ8{e”oÚÍÏØ- ÊFÞˆ"ÅYF.rvÁ#ƒõ‹“Y´ÔÑÕ‰·H9Ó¼FP#¦:»Qiôøä“*ö Ž¥â©séñI1UgË‹’Æ;x¨8ŌԱҴXáEŠfU4Yùç)[BQX)ñLÂ"ʺ¸zf衯_°[j~<§ž¡~ÿÍãn%Ràaºwoä²eùÚÚõ®•©ñ±ÖÑŒž†ÇMd¤DB‘ÂJ¤ò6Í|ÙŸô?RÏ÷£VÒ¡HáCD)PnÇÎM ̼ÿó+äéñ«‡dyúî%)Î2§¹ ° ›F·Ã«ÌTÞâ·Õ™îÒ¹KyÌ †Osv³£Ó’«º¤”‹U¤NUíwwšŸwºíééÀ@§‘IÇk$.RežºÍ\)±Lò"õìí›­©å+㋟þúšÝ¸éØÚ%·î&RœiˆÙEÅõ\ª¯î•ì E ‘º¡³%îÃ𱫚.ÿïÈíñ¡P¤$!))PƹU‹¢ ž½ûyºîØZ½©vE¦¹µ ™h¤ï³S#ZÔvßívvñW£ ß…eoÌ*-ï©“eËÝv—Õ¶=­MuS /?!q‘úο”ìŒD(R’'˜äE ÔãŸ_éDå:Ên9ÿ¤N5]µåõƒn.R ì£úy—3L2‚"…áW{‘fSþP_‘ EJò’‘zõá­~zåšÄ’¿ÿ ž6¾¼®’>àÚ«[P¤Ú•#D è”-¾Õw«ZŒšfÔàm¾ÛÚÍN9Ó¼ÇQç8»“é®Ñ‰'Ô“ÄüÕ>E åD)q "ªååó‰ôÃgÙ-'vYÕÚB‘B\J–FW¬8'*%Š"ârrœÂ‹uáð«=`H:D Ô³w¿,Š.0έBž:×Ñ×ÛEŠËú':m®£ÿ»0sšð§Í~[Ek*3•W¬²wu@úØ»ÊQŒ«öJ_®u‰Y~¨T¼_홸9~óÕ^"¾Úƒ"…C‚áE¤@5=~¬é‘Ä<×€<½þ¢Y%]åÒÓ(RˆKÉ9„O‹]¬–¨fŸlEJ$‘ q«˜£þë¬ïBàbs\`HjD ÔýŸ_Í ;äXyì?}÷rdΨÂJ Hq­UN>òÔ#äéï½ã#ÆËÄÉÌ µßó€Íw%|š“;…æÊLªVµ‹3-*ïbó´8wÏ$æñÚ Öbs\,6‡"…?‚áH¤XËÌ[~@gߨ“~ÉmõáµP¤¾º”}ÔÖkå•ÅIºMMA‘ú*RÁ´#3UQZ)ñ`HšD ÔÝW/Fú¦†œ®û9-£sÇüôûK(R\KßÙK–¶ìKw+àE Lh…~›ÔüY·?pÌ[žT”/Þ5R§/œ=y”ê.úýÇòฃeQ¢‰ÔOÿ(ÒçU_‘$j’ÇQ´"•e°ó'MMð±[°E WF¤®7ÿ‡ChäérÓœOE—FöüåÙ°ìaE-eèEŠÁ8¡H…†E? ÐtCÈU¤Ø.eÅX”´x@ÂjV/JNò awø|–Í•MM<õ¨öâ/ŠÔ•«¼x÷æIkXR€<Àsàöã÷E¤.ÔÿöÃã[T„Añ—ï 'Rǧ(¿µ§ õ2‹B)RØŽÒÐ`èDÍ3 1„òãCHš˜E =ÁÐhSÃõ¿:6^~üdGRÆ•`õ‘5n—=QŠTTt5†"%A‚¡±¨¸ø³Èmä©«œ|¾ýîÏÅÀgפp­~qýFDްÌM̨Èä­Ge­ŠTÕ‰'íZ Ë¢œœ ;¸J‘ª8òM7®"Ì Y]>VÈÎ1«` E LD‚ #R(5 ¥HuìÆ<× é‘Ôô˜uûƒÔ[ó&>ýõ%J‘B?k…f@ ·o”=ÑwëL—[j²ÝДIZ‰“;» /!!~¢]ÔÂˆÄ¨ä¤øä“êŽÙ‘Í|ôC‘bõùå\‘Ÿ\`ù‘ûoî6”Os¤ßþUx‘úÚíÑ5#D¡EêwÎk^äææa RØŽÒÐ`ˆG7!0„òãCH1‹z‚¡©Îº±ÿ€ ²ê¼þE#‘B?k…s‚¡)v7ä¶sý;ôqpuÜê»mqÆîþIýǧߕ»;°$¸ø0—ÅRå¨ï~ŽF¤XN5'íÊÕMS8‘Bß­£ ý4hP;‘z;VC‘‚‘`‚‰Tsë§ò/¥¯Öñ©¦Øi—¯~3/å~ôÜÄ€Œ–—¬?º·°T'°!„¯H…„”³ÓŒã"ŠT@@;-$äˆèCG @"…¸”¼C¬_ÆÓ’òæFË'*-KZžÒav*)A× ©Ä„äê!¥9-ÜÅèBýö±¡™—â-RM7?"Qe¹¾žÎ«Ï¿jk•C›Xþð…"U×ð+ûðXóR¢‰TJÚ9vZZF½ˆ3RØŽ!Òxc¨úôv ß³:¾èãÏCœib)A Æ[¡®Ýþ“ÖpýÏŽ€E—Få×8·t^Yù<Ä(<¢’Å^ çã­PÑ1ÇÙiȼû¶Žt:Wå*¬,ö.öÙ|hËðÔárIrs3æçí * )ª,)«lf§¡™—â-RUÕÙiœóRBÏHU½Çä;/ÕN¤¼ì¼=M<[ö} Jucðg‘ú·ŸèŸP+¢HA‚aB0<ÎH!e]\­•ÿøçW5jUÓUo¾¼Ë[¤ºÉŒç¼p)°jiÒÒþ ý×&­kwëΈÈXÍ/wa1:wû?=ÂvFêñm®>¶7~ikùål¾FÊÍ'Ÿ‘bë†_ía;NJ“Žó9©œ‘B*³áÆ ¤úÇ?Î/]°?‡g¤¸ÎHqÞAÍ2Údãë’)cÆö åßÎ6¥–§S í×f¯‘:B&QF+]ký¡ ¶y¥‘À«DŸ‘Ê+ rw×vpñòžö‘Ƥ4‹Ž…F¤¢·V%¸awûÑ[ª¸ö,;RÁŒ¬?hvPß\1yñ1ý¢ûòµÇD!N—teé¯^ŸEê×±sàŒ~&ŒHÃP¤šn~àڎܨرªµÝ|l+I )ÃP¤üý Ñ4ÝPò©/óRL°Ež¤ê$éÈ%ÈmLÚ‘Â`}µ—?Ý>jAXbDRRtâ MZ^äí{<ôèBý EªéÖGlEª®áW E*%µC‘Âvœ”†Cà¬C ¡üø£Ä’&f‘BO04"uíö¼;„œ®é›zòaB’ª¡£!o= ¯ÄP¤$H04"SÕñ¶3Ìß‘£ö˜0‹R4g‚myç_ÛªÈõ*öÙ›g´(sí”!}û O>/sþÖœmÖ6%)å©í¾ ä-RÀœÚ}Çv©Î¾ä-RÀœjdêã]ë‘ýc µ^éa• 2/‹L«Œzz“ý¦¨†©ö‰é3Êw쇅É(F–.VÎ.œk¤ØuØÒC‘‚‘`øºj¯]!7ê´.®~øóÓ‡FºA)IX‰úæih®Åc¯—b·ø%û/LÒéŸÐ_7I×=ÆSÉ‘IKn»j¯ôån÷ømîˆ~ÉJ‘õì¾‹Ë Î¯öÊ„új¯} %RÅL^  >` öQZJ‘èÅ6 †PJ ¡¬î|Õ^Çr¬<33ìav˜f„¦ Ù¥*‰.R%lÓP^µÇµ›—Š\¹7±(dî åú§üÊÂðR†}¡ã®ÜݺYKÆ¥WIÐ;±7ØNH›kUöê‡Ü¬*¬iG\«‚#ND&T'gÖÊ;SXQ{”‹ï[ê7"Eó‡ü©¢³¥9§óØWÒʨŒ¬ö*÷q.¥Ù“™ëçm_—»~Ù¡:Ù‹&F͘ìq$R¬ì×b*b|­hURäPRÄhRøDRètRÐ|Ràb’ÿr’ï’·>ÉsÉݘäj±|›oñÀ’cê§Î/½pfÿÙ“þ§Žæô>RBÎljt ï"õœãFË3M¦øM"…Æ¥@Ť07Fîê9‚ÄT"n]]~ø*%€H½{ó¸58Ñ¿?8¥s ØWèzùF…h"õCJÇ]Xìr’ ©C‡´©C‡B‘†ºƒH½øý×¹~•£ídbev9ï‚"Å£oô v&1#%úU{^ÞÚ}µçí3Q”¯öØßîEí8¶`_Ыö Háœ`©ç_nÔIK¿Õ?¦ÿû-P¤PºRžÉž³©*i¦åMw<í|òöiq‰Ô7,ŠFÐÑ¥ž‘â·&½ ù‡û· êƒ\óR;ö³HýÝ·/)ü`¨;ˆ¨âÒOC(C=¶+G+[P- Hñ°(ğЬ‘Â\¤:®‘Ê/}âOœûP¤¤†`Ä©çm7êTtL\@[§¥tÐê )\ ޸ߜ|%Mÿðv•4•ɹS(§ì ®ßzp·ëDªìˆ{Ç»°xùŒƒHÑ"èÆÆk\×Lðž %³ÐAÖc©f<écŸÏ"õ|œ‘†º‰H@32e%D=hÆÄà‰|TÉzïed¸Ê\Üaù¹ÑÖÒgݬ» =YÀk®+_i`‚ÝXÂ(ésšÐ"µcgbQ<®ÚëR‘B\ÊÛg¢ƒƒ Øæó½ãš«ö8½ª³«ö H”`„)PÔÄ»rä°Q´üµ H äRå·6¸yÿNJCºa•ñ˜CcT­¯Øp>èè­Ä‘j}úðtKm|cùenäjÅHEÕU]k]ã}Æ®fnážÅLÚ]óR|p?)ü`¨ûˆ¡ýdª¢]@ÿ(ÕU«øÏI}FfÒ.˜£›ù½é ÏË>Q×™iÍ™…­¥'Õ\ú©áæ«»÷ÞÜ÷ bi÷Õ¢l¨$¯°© ©úgMžÖƒþÅ­å‡îæ'ÝJµÊK¦Ÿs³8eepl×ÊòUÚ…sÆæŒSMWíÔ{HæÙ…³×WnØ÷½Õ**™thhá‰euWÇ^kpõÆÆ[Íá÷Z®<à{Õ)œc¨Š¨-dçžÁÚÃC&ðº³T'3Rd+“óFK?ÈMðÃH¥ HA‘BùÎb›&#žH±ìÈÂRì/ËÐÔq×L¤¾<,M÷á|b\‘, û° u±÷Å"¢¤qI¾s|í–ÙíÙ¶gñº%æK´©Úé‡úU QAîºíÊ—[°ôŒ'õå¸ ë¶+êm·]óå¶+óHº$ßµ$¯í$÷}$º5ÉÙ™äàûõ6mµK·°ÔxvЕÛÎwîUýðÃc´WíA‘Â?†º§HZAqê9TÛ§ó;KuöÕÙ¶üPÙÞÊyÛ°A)(R(ßYlÓ¤ƒ`¬®D¬Ì¢?Ô<‚dT‹yõ,lx0pè£à_[JZ›‡~ž¿ùQ”cÀm{¶(™ÇZšŸ[°/æÿº»»v»¯ö<<战çò€u–mWÁìKü7ŒÿB(@”å!ñ_µˆõ}쉞±J¹Ü;|K°Ê¸äöVÖú«2÷áÅÝ:ÿ*›\È“üK€ ó"ÁºvF Ã4$ðòõ&v•œ¿(ï{P%YãdãiÎöoêröËÁ_e]l×~¥¾Š51.?)hßAL帱þ=[½Í™`˹/ÎÃ;xpy;‘-B§‡Å:¿™:°m·/\š ü¼³\Ó¤ã|·3R˜ìÎÃÖŽµ13¤W¼|Åß¶_}²¤××KM{.|r£õNëù'ä%÷-½þ³§h§™­­­ …çqŽy`÷IÃ<Œ{gba¨eÖÔÊ„,Ÿ’5§þz£@"ªüPÙÝÞ*…;÷K™HmÚ…Xòû7G‰ùð€9ÙØ¨’ɽÁ–·E¡I£ÏKå4'°OŸ›&tš ü¼³\Ó¤CÝ\¤š¶ÎL2—rñn×\ ¤a¢PP¤¤8 ó@H0¡Ž>SUÝ;jÌŽR4"u¥Âý¹-ãfmÝ•‹‡/îÖùSv|¨1&…#‘C`÷IÃ<bˆkus‘uûAËส “¯ßo†"ÕÕÝ' ó@H0!®¶äXœÛ3VÙï$ãÛös-:ãßÍk¹Ðt¹±êž¹Î__&Æó6™bãQP¤¤3 ó@ˆ!®E TcK³bÌŒ1)Kš¶@‘êÒÀy $÷ÎÄÂPgk¡¶döŠS̹XÚéb©Ž_í•ÿ#‰‚"%µi˜B q-(RH»sµ_̨5Á‹þœ:å?YY°}’šE óÀy $÷ÎÄÂ1š‘°_&vð‰†³P¤º:°û¤a1ĵ H±«6&pŒ/)N÷ëŸ3êÌ¥ HÁ4ñB‚qïL, ñ£ºkƒcVˆÓ:­ŠT—vŸ4Ì!†¸)vý9eòj$RÅ´Ï"õçÔ)P¤ð|xxNÃ<Œ{gbaˆ·i¼,=}aàÌZZŸdeÁ¶%& ŠæÝ' ó@ˆ!®EŠ]ÿÉÊyªIR #Ç)ÐE χ‡ç4Ì!Á¸w&†øÎ3]ŠšêN ^ùub¼3—‚"ÓÄ1ĵ H}‘š:WíX–KGúcÚT(Rx><<§a ƽ3±0ÄW¤>LšôT™4<àëÄø--(Rx><<§a1ĵ H±ëIjû$¸”Z()/ÈŠžÏi˜B‚qïL, ñ©OmãÃX'sçÆ°`Z Háùððœ†y Äׂ"ÕÎ¥þ˜6õ?YY°-´·SŽPN;šE ¦á!Œ{g!0t½ù? 1„2í#:‘z7a:r2wjkÁfýHÒ‡ÉÂÏH…‡Wa+R¡¡GQ/ ÓPâ9 }`wûÕ¡ÁЉšgbå%†41‹” Æ×¢Î]úµ]KFhË¥Nf !RQQÕØŠü —†>°»ý꤃`ˆJ¾`Ûí#:‘ªs;ž?6™51^ä$´H¡ŸµB9ú%Ò eO<§IªÊžLCƒ!Ý„ÀÊ,J !}Ä,R$_‘âÚ'Ã7S%B%¦:NP‘B?k?†]š&©n({B‚‰H0ÁDª¹õSù—?wÌWëø„@iù‰TMí3$ ¸Ô» 3XWíMÖŠ=x@-L-÷T "TÂ>64óR|‡N@@;0$䈈Q 4¾xN4°»ýêxc¨úôv ß³:¾èËCœib)‰Œ‡B]¨ÃNë8/•O+TSw­rG!Ró(‘$V%­Ìút‹dÍKQ¶Úú©µµË‘½WÛ’)ø1.MÐÀîö«“‚IÛŒTÇ>Ô µµÂÚö7=ç-RpF Wi’ꆲ§Ó¤ã|ÎHñž‘BªÊúø¨ÀQû*÷#C¦s‘BÊq9ˆòÔ’ì¦EvÛjK1·uXN ïEvÝg¤Ä˜&©n({B‚‰H0aD ˆ†|A™öHÕÔþÔ¾ñZ“§™×Àˆù‹©  lEÊß¿åðÂ0 e žÓÐv·_ ³: 1„ò‹CHš˜EJ‚ã+R.¿éô§ZÏ_˜é5suÉÚë÷o£©ydfë/CñÜ-”HÁ¡piè»Û¯N:&mWíq¯†&_¿ÑR.¤Ã«ö`š1OCƒ!”…C( ^µÇ5ÍU{¼êAëý†U´Õ³óµ•þÂW¤&ÛR:´Û/!‡$;X«öºAæ`Ü; CBЍú¦˜µL••ð3‘|DÊÔz¶-²Â |‚™Ù—Vóõ^ª¬FF÷ef¦P¤ºCæC\ Š”õCëÕÕ×÷Ù› Leà´K@‘²[CQ"ÓáíºGæ`Ü; C‹¨3MYs²TcUÝ«½PÌHÙL¶ e‹Ô~3§ VÎëÍÌ÷™ÚèZ‡õ²qÚ Eª¤a1ĵ H V-­×t¯ûÆÉ0e–{,G-Rv+Éa\- Š”´¦a ƽ3±0$’H]oºr¸©T«T3~°Õ1DŠóalîÓÏÖUŠT7HÃ<bˆkA‘¸š[/jµ„,U‰RÑ Ô²$[ò){=r¨"™ÆÕ¢ HIkæ`Ü; C"ŠË¥ŠšŽ;>&aìê,‹ý¦û)S+›05Kk(RÝ ó@ˆ!®EJˆªÌýT¥qßTàz[[ [o¹¯- |õ¡Huƒ4Ì!Á¸w&†D)–K%5ÕjÔÎ[§¦±Çr "e¹Ü*XÑÊaW‡Þx¬˜vŸ4Ì!†¸)! ¤9˜:V¨N™—²ØKW–)»ÖußovVxç˜vŸ4Ì!Á¸w&†0)–K…7Õ«ÝX༠tÿÍ”ÍèDÊj©uË¢Ú/4‡"%µi˜B q-(R‰ ÇN§•NÇ/Žßî¼C)ZiBÐD3Š)˜ÖE`Ü; CX‰¨Sæ¯kjÖ“×Ë0eÓó)«EÖ! Ö\梠HIqæC\ Š”Ð"ÊÙÄå¬ÂÙèe1Ë)Såcä7Ó¶@‘‚i] ƽ3±0„¡H´äéÉÇÔí²Ø¥©4ÉwÒ—%Sf«m8Wø­2=¸Ï̽?ç ²çF(RÝ ó@ˆ!®EJ‘E7t=ß·.jNØßDÛ,#?¾¦›Eª›§a ƽ3±0„­HÊš”U¡Y±Ït߈ ªªÛm¶w2åÄççÁŠy`÷IÃ<bˆkA‘Q¤@y-¿Ò£1l~:Ø·Øé³üÀj•pu}çíP¤ºsæ`Ü;—ù«{Ý´Jÿïüœûçt–—ýÏ27I!IÕ4—YVþ’?0X°D(„D9QÿUã§2[z4f.ºZ#SçòÀ9¿x@òà™²Jßtõ,l‹X#ØŒ¶i÷Ÿ=õÃý¯Ï¿qË´ìW·žš?mIéÒú‡MÈOQH‹ŽebU ÍÔÌ Ã*Ç÷I ¶i––Î_¬tœÏuŸ)lÓÞ|ø­]•l¾Ü@jtØxôhs+xúðíS³³ê™×£_xÛ±?»@ZQy)VÒ<¼<1,hnaŽU´Ø=@š½ƒ=VÒ\ÝÝ0,H01 ŠT›KÝûñ‚ò•S›Xòtï§V56Ê ªdr0©ÎF?žÓ HCP¤„Kk'CUiÍ5²õi¦u52õ«Œò&e×Ô?øùõÙ§´Kæj—Ì9óô<)©)ºËt{*‰BéAµŸíìFƒ"%~‚A‘ú\•þMWz4žØÇr©²¸¦¨IIê šÛílúñ©Ž£ÏiP¤‡!(RÂ¥u´(°eïdžÖmJ-W¢Åí=tìTëýÈë1ê™MÏZ´þúŠ”ÔˆÝu™e€#ÍšînKsÒ¤Ú¯¦A‘;Á H}­Ãž,—*YÉ:Ÿ.uãñ£ûTÓUÃ.3~xö#)ÎÑç4(R„Ã)áÒ8M(kÿg‹b{U–I=Øi~ùÂõè¹aÞ)3Bœ>exÊD%}€Ûeϧï^B‘’‘¢¥Úé"òDw[cGä ä Š”x Eê›*Øt©Ôh¿þpÁ•«HKYóa­¼É Šžj= EŠ=úñœEŠp‚"%\5OíêÕû·yWo¯J(Q¦ÅoÏM]Z¶V3K3òzÌ‹÷?C‘"´H¹Ò—›PwŒ ²îËÓ—j;¢aOwquw7w DeÝÇGÑãÌ“}2«(c)"©¯U×T#SŸ´¯lWæNðO÷>ræÚÃû-?=t=ﮜ¦B9c÷é}(R8Oƒ"E8 A‘. ½H±ëú³gög4Ü“&GûŽËž=.o|æÝ(R)7Wû½›È²ÖU{×>”]{é..®þ)ashžî¾‘yý¬ô±cFIŸÓ¤ƒ`P¤¾±(°eïGø×®/Rt‰Ý™V^qõÆùûuËÊWŒ>4:íZ)<§ ¨J¦–6ÉdÖRM2yŠ••)ñcŠ”piBˆRÏßýš~åÆRf¡‚¯Í€”QSògyTA‘"¤H±¿ãsw7qr•¥l=èæê@îg`ÖÖ^Zps9pF“R`Ü;wg qšPšÑyÄ¢Ø^•fxìÔµ¶Ø—œâ™45(3èø¹Ø†Ô19c/¬¼s Š>Ó)«ù¶e«=V†V6êdòb(RâÇ)áÒ„)v]yüĪ䤼¿I?æpõÄÔ<‡Âò(R)7O=;ä¯nØ.rØCwssqõW£†Í¥y8ºyøGåG ´ß+æ`’ÃN“‚A‘BU­?ý˜rþŠ^L¾’KÜž¬rë“nê·Ý~î~)¼¥ &RÖ#(ä9–Ÿ¥J—LQ·¶²€"%f A‘.Mt‘BêÙo¿Pï °è5B>^Ã0Û2¿¼ŠADÊÜÉŽD¡È”Á;íÝ`\Eê݃S(”Yß¶=ýûísfz…BrÞ]ûòJ¾`Û eOÒøŠß>5ÍwæUòôPŽ\$/¿&n}pl(oCÂP¤ÐO\¡ýèO5ÄŸ&P7”×âuh´Ñ·q‘¥lÞce¹ßÚ¯/ÙÝ ­ÍRM þêÐ`ˆG7!0„ò#Æ¡oyòéÖÑÖ7ŠzΣß>X‹Tw!=B¤ØEËbŽˆZÛ#V^%zbî"¥zŠ-»Û ù½æ Îæ¥PŠ·n>Kí‘å>Œ™n^ìÆïéHcø$KKz„¡H¡ŸµB)R_º¹,¤"¯%b*xþù§v¶öž© ]Öõø:Ww¾"õÕ·Ü< œB”Û~crvÁ+éîtV»ç’Ï«¦"Ƈ4oÞÇg: LD‚q©ßžy» tsøùŸý{µ2@>¤êô«¿žÖäÌ´wõË-cý•>¾ZÇ÷p›[?•ù›h$‘w i< ©®ñ-;­³y)vÝyòÈ.ñÞ0w·>¡szÇõ×]ÒÎ2².±ùÎKñ5¤àà2vZxD•ˆ"PÄN 9"âçÛ4AùŠTHh9;í˼eŽŽífÐbjå¦B žfM>`iË{©¦Äu¼1T}ú ;ïY_ ôcc¨=Oú§.Å}hpÖG$ [‘ê>ã!F×nÿÉNC3/ÅU¤J-Ê3rY¥å!Ó“©6;–œPø¬´¼´¿š:å"&œHÅÆW³/!±ã¼”Ï\»‘Bf¤(SÈa\E*$ä+ÑÌKñ–¤  vZXØ1ÑE*2ò(;0†YƒèÔLJ8‡H¹Ì§0ÚÑ,ì"sû~¹àŽk1cO"Q©©G\\&P©}ìì5]h;y(¶ÌëH°"õwCeè°Ô+eE~šÈ?ûý¥—?}mÓm}þ(‹§kÅäñù„£Ä@ÝPö(Mô©vWíÑ1s|={/è×Fô ߨN=ŠcDÔÓÊÏoÝrØÌ,.’g¤ꉾ›€3R»¬ÉÈRÍAúd·¾dÏ-¬FëÖ>Xvf©¦ux?ŸëÀ6† }†tÉŒTw"XWÏH±ëÆ>ãÖ ëÍÓý5¢Wöcö_B_âäqgã:ÐŽõŒ”0"E¨)ûŽ"E±÷V¡m¶oëVô` 5LϕόTjêá¶I‘¯Õ™KáþÒA°v"åz¿jV`ññ_þ¾Rü埽m5pós¼ÿo[ŸJý4ckßaÈ ‰bH 4¾zTßøV ‘B*ŒÉÜì#º¨GœìàHm‹'ИGsùMUõ¹–öõ¥KžLÿ›šhQ¤‚ƒK1)ÿBô£_ÌièQŠTHh·v§Áäß6¢Yª)Á_ ³: 1„ò#Ö†¡yÒCHv"Õ½ÆW®Ýþ‘ºHsy5u*Ø))¿K¡Q§»MW ëe`7/8%Dh‘Š«ÆP¤BBJ1©ÀÀblEŠy¤3‘²µ¥øîEDªôõ|»ˆ©t>ßî9»ŒCüÉÊî³HÙÙk -R`"ì‘òt׈ò¼ÿ7À / e>x‹æ8ПZaˆ!Ò„¸jH±Ë–2"dsù¨áÉKäïaÿ褑á[uµÎæ¥ÐO5a(Rè8Oèª=S+Út'K+SKò›ÀÞdŸMVìŸZ°r@³TS ÃÃ(és ¡,”BYàJ²=:ò¤†§X‰Tw#JI]¤J òÞt…Bf·\±µ¹3fà~²ÑŸCƒ‡î 4dÆcwÕž0"E¨«öD©T½9G…‘zDZ,JŸ2fy•Ð"%s°M“‚qŠÔ—íf Þ¾{ééGûfb¼êõGéÀPW‹R1цäå3è²ß1'E¬w BÚŸŽwØÌ c‘2·Õþ¼Ü'|¢…»ñËRͰq0¸-›$?™ûÌgÚv|-ûö˜8Œ² G–j.±²Ä¥l×Ùø+°~i Y²Ž•µyÛª©9Ÿah–jvÕ‹E‘†g åFëÈ“Ü0„‘Hu;‚‰M¤@ŒŒx¯9èÕÔ©¬«ö¦Nû ´–EÑbô-õ„2zGÜΠ¢Ð²òÿƒ"…^¤X_íQQ}µçàá¸Ä‹RÄÄ^±½z†M.Dêàf¥j…žÿ#‘þ0¦fÕµÝ9rý´g²=@ãÿ)Î:¿`³)vÌÁ(ésšt¬“Ûpú׿Mår!Ug^ÿýSsÕLç ÏGŸ$@®ÀxD Ôù­[®-]ú}„‹jļ~1²‹\Q¼©MzK@{×ÌH‘'Û†})dFjŸÅ$›P‹òhÿZ̧ÙD 0·Úi| 2·ÙÍ…BYY¯#“Õ)”Þ` öy¬¦’ð‹å™ÆC7©«ß+’þGêý÷Œ÷ÊϳگÔ6†ì};¨7Àë§a ŸÄV]ìJ }ýÀŠkFª»Lœ"Åš—*Ì¿àJ»±Ïl;^¯W–P}0Æh—Ñÿª1ƒ´Ã´w~O÷v…"ÅW¤ÀÓyÔˆvt Ç¶Åæþ¦ßú“¥·åÒ 5ªzÄõë6e¼ÏNSúv}ÊŠߘ>Žóu‚÷ŽtsÜœ°lè_ Úq.n®ú?ô‘oÜnåCs¬vÚ÷¶—&sfÌÁ&èKšt …Hýïï·Ï¢ÒåXœyñÛIP£+0$6‘:bfúdüxd?44üùÀx÷ñÁ½¿§Ìõˆö‚"%ð¿ùöµîwV$û,k›6çsÃÉÁóøMJYY¯mwªÑ™KIþÅòLã¡—;o•Ÿª«>ôà •ÿ¦Ñ.×_8—úd‹Ù“—.½a3õÓÀ×/ˆC?_Mìýõ7o·¼éÏ.)é%˜˜E U•–u¯Ê_Qc³ÆFËS«_l¿‰‘׆¬µð³D§P^»m“ÁmE 5ðd5ºûDm¤ø¯±$®H9n¥r¼@JЖ/·?OaÝþ ŸkÕWÖ- <õý·ÏŸÕŸ©Ü‹©Ø3xî0ïÝ;]]é_ìÊ…¶s¹ÕVRŒ²eµ ÍÀ•n»jÄ{Íå º›«³ñee¥6‘rªv6y-7ÁofÌÁ&èKšt ÞÙ\"LjøMMí¤‘!»¥zïÞºñªú¦›UBU´ü´ŒB÷qÞÏŠŸÇ·¯åûƒž2¶ôHZéëä°ñÖ|Dªm.Šõ1°þ²T´H™H±÷ë˜Kÿ¾ÿê%Ž—Ž_·ŸõÏ$›¦KbÁ¿Â^¤ðœ® EêË)ǀ̕Y•Ã*Ý–¹-vY¬£Ò?®¿V¤ÖÚu¨¥ÊóÛ)Q'¢ð!R¼ÊÂÙ­àðÂP¡ÑC{ÇõUˆ×ÇgÓ`šÃF_G·Ï«¦ènŽNÎKÁŽ•I¤’9ˆ”‚5¥L‰ô?é}†7unëæê·wîËm=&_½ «Õ `Ü;wg ‰M¤@åÒioÕÕžŒ}é’§ãÇ}ÐÚã=]÷º-¶^,-;+d–a¬QHl)>‘Ej>uélOõ‘mK5ýÖ“®+°ü©4üÈÆ}V¬¦ÞK'<–‘Š—JîÏQ}ow yZWôhd^eg>Ê=Û¥+  Hu5Áð,Rlbì,QV'S—6'Íj81])V ‘ªU¡«Œö¹xÓº­HÙ9ØÒ Wø¬Ð ÕRŽQî×W+EoDž‚›™Š}ðRgkW×ëm¶w‡X”å> Rßتhδ6ôJZ6â¥Ù‰Înnvúwú+6m1ós¶¯¡ýÜoÓÀ+æ`’ÃN“‚A‘“H±æ¥"‡ÍÍX÷‘2o©XF\ša:m-]‡ª#Ë”²V—¾ÄÐÊŠ÷‡°_íí%ÎôX*>²W\Ïž¡“çzh‘JŸ­¼}¯Û³Y!óý)75ÈÔÒÒdõÞý/®þžjv€¸+ Ú SyoÃð?Öø6Ô}óÓ‹ç+oÚÌúwþÍs¸À)áÒ!RHùÐ}R6¦V­¾ !wq.Ͷ9x‹vÄœ!1CúÄ÷QeªNaLåáU˜‹”¥±1sŊ¹scV¬°06›HY9Yítß¹ÌwÙÔ©š‘š}âú¨D«‹ÒóY©ãb>œ¨à˜8Ë1ȈîÕÙõzöcæêo÷5ݳj§DŠQ²t[oi¶Ã ÑÕqûƒ>êǬéÞÆÓWœïÒvÕ^áåSýek×bóÝ$÷ÎÈÿ]m.‹˜M¥ö[°Cjt†Ä,Rh*ƒšY6¯ÜwQ€¶ƒv_fßÁ¡ƒu\í²Ù Eê›Gû×b1Í–µØÜ`ßçÅæ;9äÉÌÊ|³ã–iÞÚrŒÁ=be{ÏMß¹×fý—¥š}û9:‚}k‹•:ƒß©/ð4³´8¸µVA¡M¤w…8“kY=ä5> —¸õ9ü›ìè‡e»C€!àìíåPòDt‘êž#H±+Ä:´`~áE¹‹ÇGOÚšäíæãæånµ9d½ý^¶W)Gªóœ>/|þºu{ )¾TlEê ãÚk…;ƒWOž ¶¯¼·lÁ\¤¨ŽÔý´ýúúË}–/ ¯é?Qž)Ìipäàiîó×™£²r²ÞaO×¢ú÷£DŒ¦n°w/*ýÄûÆvv*TªŒƒÃdº xJŠí]µjK¤ƒ‹‡“uÚ’¡ÉMOqvs·Yý´—bãVs?‡{“_zªfêbÅLrØiÒA0–H5Ý.k·ðáC8)¤§ÿ“0;ñ¤ÒIšm}†lŒ¬B”â$?­•N«Œ-÷ñT(‹Õ6œ+ýW›³¿]ªé»L´/Ì%*Rû—[1:¼–}ßïwiûy©¦®•5ð'ê.÷EÃCFöŠíÛ'R³§¿Þ0šñFkª9ÇU{Ë,·b”Ú.*Si›+î=¸t‡iÛO-6M{Fð?,Õøs­ç™Ü¥úOÖaWkÎ_:[zÛ|Ú§nÕb>‡ðzžˆ(RÝ–`D)¤Àÿv${ì’쥢9E!k3kdêè{cÁ\ c2†è“Í–‡®˜Á˜9à VÌrcÇŽ“‹‘“‰‘WœÙÛc¯&Õu™µËKë/sT¬mæ};Û–jÊÛú‚}KSÃðùƒ?ÈO=~¶êºŒ|Ý ‡ƒ&Ä]að7©M‘RÞtó|ý…ºÃÍþÙ´ôú{âê™§ºââa„'œâËEªÛŒ¸"Å®»ÀCKsjUj«UjÏ÷¾ ›Ç6*ÎÊ)}»Õ~ë2ú²yžó¦øM< `P.Zî»øïd˜2À±†…š5ÉÒ Ÿs=ç.r[:¯u^ |k›Ý¶]”]»É»AÚ†oÐûA{±¡™![†ŒM/Ò^·d¯ÙÞ–;wZ±j»õöÍäÍkìÖ,wX®ë¬»€¾@ÛM{š×´‰¾Çø>ÿóõѧ'<½×V­WÍPœ=xˉ­ׂAãŸqþ[øäõs¬ ¤=zÐò2=å·—©¶>|þDèBbýü÷7µO/ÆßJ²9OÖ«\®‘©¡˜¦v.:gÞ);W«S¨à˜¸Ž‘^Xv´ú8×ò ˜ÃˆÚúýÞPKã4ÚÀÑ2§÷nN¥çY`^6ÒúWeU]ÅñcÙÖoûª?qM>y¤ç+ ._oâZ€ý¨³BÒD½O¾=ŸãÃg¤ Á¤ ­æPkl}žuØ‚ý®;¼¿ÊK^O]Ö®ñ“ÞÒ¿*˺ôÅò~œiGNV¡/ RÇ‹ytÀùŒ”tŒ%RW›ËÛaèÚJÑbH”´Ž"õ¹þýóåñ7÷6µ\píåÑ/w߯Ó+ÕÙ-7ßÞI¹—nvÞrrò¬þ±òj™jº•KÀÓÈÛ1…ço=»‹•Ha\ûgÄð?é¼;`¶ÿŒñSõqÌEªùMËÑG'˜7€'Í÷_52q\¿ä~ãòÆoªÚbœL±³ ¿úêÖ«÷oËoÝ3È:¢D‹[•P’Z½¨ôSg …Ýu°““BP¨^^q x 0tÚxÖǶ¹â¿Æé53‹±ºUÔÚ¯úM‘+ pˆ!„'œâËE Œèiˆd zÁ¹ß%‡÷ñ·ƒÆü•Înù;#õÿÆŽùøª?e-Ü‹åû9ÓP*Ô_ï·ãÇÉF“žkûP¤$H0Ϋö´Û®yѾz§“ñ 1$JZ§"õ¥~yðûC—¯©_¿»òÞY»æÓ²õÀ¥@;ØÖ´í·üþ°âñÑ ë¡FgöO/Ÿª –¡>«höÆ#›,N[úÖ¤ßÌ:y¿æö³{YÔÓÇ>hŒ~É6!°ÿÏÈ‘ÂÍKÝ|r‡Y|·ò᱄ÛÉ~µVk®›˜?I&EF5Cmv±öö;H9¤&ŒË¬H» «*­¼ÀCÌ&ûŠ3C¼’§gùž¼x÷ÕKöRÞ"UQUš’áä8?6a"R…'Jxô'†Zb¢>hi €-Ø?†>~sÍ *žˆ(R!Áž–kz…S,À>89ìºÃ;y˜Ó§ezÿ’m>é-û^oìÒË÷r¦¡³(/dñø !;¹$˜%(Áºõ}¤ðœÆW¤z÷ñŸ2^ÜÖn¾¢võBï+j¾Uǯö.?n*½[Ýërž¾÷¤Ñ²òãs'ȥʃ—;^»hÎŠŠ•Û«v¬1s<çì_ȼèvÞ‘–ª£­ÇÏ<8wáQ¨{Q?h/¾öøÖƒçºõäîs½¹-é1 ®½©£÷Ž—4—g\Ïf6Æû×Ñλڜ&ï;i¢lǪŠÕ³ gËÞ/¹Ÿ\ŠÜ” óKl=®ovÖÂëŠoúì3OÏ?zûS» *ÄŸÒMëjdê·,RwK4ÿöά‰¤ã9P¬TQQì;ö^@Q¢é½÷ÞIO ¡¥ƒ{ÛyzçùÝçy–ëé©w߆…)É&l’ ŒÏûåÙL†ÿ7™ùßoßÙ”?ûàaç5³ÜAªCô2ºG"t°WäN„¢ ½Ï‘‰Kô5¡4ïý«ªÿIMbÝÑ4%¤¶!©=Ý3ý¥¾^/) u0RUCRìxzå¯úq ‚,Õ„Â;€ vÃ…îÆElÇEoÀÅ-k]­9—¦ÏZªÉZ­©¯Ö”!b-Õ¤Êâ2¾ƒ—jÊdᥚÊ)Êð:M(ôBõ  g»Ï^j¿t“å&Ë-–Žk½M¼Ã熧¥dkg× ­9?è<_ë4ᥚ^ëj÷]»ýäõËî6õez;~|‚®ê°oC¤€šä6O, õIF¦ÃL‡JzHI¨ƒ¨¿ ßÑÛëÂ-#…J<+È}:ɤú÷óŒŸäçu±yÛ½=W Wè˜Ë.n„ÕÝ¢¯'OÀ=2ÔŽ{H}–•…ÝG9½Í† ìÛ) &¹Í H½Ô׃f÷û82;#¥ß @JB €FÕ ¨k¤„R¬5RÃt¾Y#EHxB‚) æ'ÎcAª!&ªÃuOw,%Y6]½±®MûáúÓÚ¯ç&JÀõ) &¹Í H]mu°œ¾m¦_‰‹é ;ØgIs0RUã ¤à]{œ\UdwEx?8Eh†ÈéýÁò—c×!)¸ZòT#_£žƒp°ÎÁ—ƒñRwî†þ žXdz|©ñIJš]ÇŒnýð‰­vý6ï¼wHj¸þš­vA^Š;$]nja«]¼òªç uýößlAžy)ž uðð=¶µæØØÈ±<‘‹‹ÄÇ—³Õ’“õÐbPëÒPö^,ŇAõg~g ò¼ªãiC|až6Ä©&2&š/ º®']Ç+õÕÁb+‹fxÍè Hë.ør0‘_Õ@FJØ)èNŒ÷¤˜ ¿5ùRãnC’r=2R¡ºN4}‚<#åSå·jתޗ‘’8¤ CqÜ TC(ˆe5¾º ݺ‡æ©†ë¯Q©+M-è‚ÔõÛ£R߃^“¦ùõ¤ââʺj]Jîùa4ûmý™G(ÚÂ1ŒÐ†`5ƒp0aYÐu=é:dk¤îA¯¶e»­6[õ¤°ç`…8Â( r0°k£j EBȳM(‚Â@RpDîžë:·ç …üêj] íl&.]‰õ`CìÚKô5Œ7u5$ dž}½M¼{R|yºj]zý,C² €FÕH‰¤œ+\·ìØÒû@*ñd .e’Ù) &¹Í#HÎKššÔû@*éd*.ÅP‚ €FÕH‰¤LKÌ\Wºö> >†Kœ-A6@ ¨InóÄRyã³µ³{H…@–4K‚ €FÕH‰¤æ-ˆŸßû@Êõ°;.~‰Ù) &¹Í#H©g©r ÷”ÛaÉr0RU %ÒËÕÏ›Ûû@Êò€.fÙ) &¹Í#H ÈpiÀ¥ÞRVlp1k%ÈÁHaT €”@J™©|T‰GI´¡õUq‘ædC¤€šä6O\ •w¸P…©Úˆkì} µå`Û$ÈÁHaT €”°Aª²®fPæ †ïzH-.[‚ ³•  Ô$·y⩘ýq“óz%H-.3‘, …Q5R©ԃéz¹z eL "â< ²!Ìû<~ôÀ}c= ¸¯»ÈÖ-ã@E‡­Ö¥¡LÝ;ì"A6@ ¨InóÄRöåŽëö­ï• 5MÒ €FÕH ¤+œVí] ÙÐŽôâ°ªÚꣵi ™À|üQÎjGhä"iOsôŒ%¥6µ. E»@à/A6@ ¨InóÄR+ŠWºT¸õJÒ-ÐÃøIƒ¨)aƒ”IñRJ/Ȇ෇ŽÕ™ŒÁ‘ÅŒcÕŽÖlbhÙïBÑ8Ð’²éÞ†T³Uq¾ÑdC¤€šä6O\ ¥«~9³ ` ;§¾÷àcGöïß;F’sêC²‡à|£$ÈÁXUA€èƒ¡ÆC­ø²¡šê—ÖÁ­vãSa]ü‰³NIþ ÕÀ“I•âo-ò(¯þ00S ç‰o3`B=ù'öBôQZýN*S¶¢ú#ä`æIW‚öþ]Võ.‰\&p:¥Š³æ¹H1ú~¾¸Œ< /Õê`éâm_Ö§3R¿=ÿ­€Ôþúð­€Õ°Üu誽ý÷#Z©Å'&ð ¿dEš"tÙ\—˜è–&㓺'¡½ZR‚M a8þÙNT¯ÀÐc©Ýûõçqôî‰Ñ£!.ìü÷€ÕÐ:­ #%‚‰óüý+´Ë!Œ®Ã²Z!g¸‘ÜGÑFAƒ± ½¢ñ øÀokb<§~ÿן;ÄñN,9X縬†Ö‰·öªˆšèAjsúf#’'H±">YÛ ¿:¶ím\|²®wºõ¾/èºjy(»)ϸb)¬saLR½R H­¡¬OßRøôµ~­9u/ÂÚþæÖ^Wºq «Ö™‡ÖXŸr)€Öƹ0&©^©Æ¤œHN£i£ácÈÁG¥û§§'§ã#ñR>xçöŒTh ^&ñœzgÚppcò¥TRB^¯ˆêb‹>î?î?ù¹-g~‘ꉚˆAJ‹¢µ#Í¢·‚Ô”Òi{o”ÂÚ8ÆÄAIïþ|¹ÏóŸÑƒ ³úWwÅûC?uY¸Ã!Œ®Ã²OšG¿š²† Rö‘U¯Öœº?~SRzj{µÕþýx<ÆsêyhFÙÌ¢æ}¤„2¼„1^ùËHývíi„ñ—Q¶þÚEáÙR‚«‰¤ü’ýåèr1‰±½¤ÔòÔÏÜ¿@ kã\H=«¿+ôõµÿ½xq¿%vö¿#ö´¼è¢ðtv-B]‡e5ž ¥LW ²AŠ{eŒ;Xgž?üÔ½³¤„2¼„1^ùÞ÷Sîyƒ–Æß:ÞÊø@J`5Q‚ÔâÜùÄùqKKÃml‚ŽãLJ{H5?¼#Ô¹ûëO¤°6Î…1qø»×òsKÊü/Ób^¶tQx¢»!Œ®Ã²w0ò y¨ÑÕØo{HÝ|ø½Cêî/?ÊðÆxEO®¤¾Ëòã/^y8ó_µíOÿ×Eáù} #%¸šÈ@*<)B†.” ‘S½Ì%è²!öq/©Ò›•öM„Hamœ câ E¨W×Þ´®CP˜ÿîÊ“. ±lÂè:,«q#cªñJÊªÞ RU·ŒÛkp¿ÕÁH¡?¼„1^‘-ºþÌé')Èq~6Úòòø½. Áãz¢&2ZB0™NšÞU­üÙŠ’8Š>·å) ŽsaLþ2RÏハÿïhû–g]ž-Á®E£ë°¬Æ}¿ž].”–°¼<Æ!‡ RÐq²ò^R‰“7ÜÔ'@ªù·B5„‚|©ñ¤¨ËoÞõ«éR¿lj¬_Ef-Œ­ ¸ýìYkyÓÍ}xy®¶çI·øáeAJŒ]‡®Bj¾ý¹‡ ’yrtœ•} zõ5)mÀ5Æ,ß×Ã5R))µÈ]µ0dyÄ*älX:w©EBxfÚ¬&bê5Æžo|ø¦äqñ? ÞÝ~ѹðVƧ>Õu"Vã«ë¸€”%y§Muìyº„ø )è>¤Äè``Èú¨­ÿéÀ uþR Š % ¤Žt«!¬É—<¤^ÿ°÷\ѯÏÿxó´®nŸ|Äñú7m„ôøáYÃÀL5ßÌžƒ”»]5„„ÔCšMœ3—h —U}Þ´=û„Ì¥Ðe%=ÏH!¿JC]­ M+ž½¸Hu®ÖBxfÚ\GÄ Õk ÉC ^Ü ¿.yùûÓÞ|6ç_õ¯þ|Õ¹ðü>1ôI¯q0t«q©Ñ´Ñ¶ä]0ÁüçÔ»£(„ %FëC³Ëçä^+èR«õ¤„á`üÔûŸkÚ¥'Öñl_j<PãF ͯÙjHòRAª=^¼{v²¾thÚÅ·Yÿ¯©|jš½´ê¾S ³' %ö®CW;ݾÇ)È#/ÕH¹¤¸*ÐÂ’ÂÌÓ™%¯–[”Ÿ¹œàZϾÇ'Ø©øørvÛ’“õÐbPëC Y W\cƒÔņ¿Ø‚ç.óÈKñ)¾Î,OâTHõ2ã‚PÍw>´©U>úqϪÏÒ¬u_¦n{{î×ÖR?¼ YÁYÈóñ½¬ëD¦&@×u‡Dî$!ô!Ù¹gÙja«4àãW• ¼FJìÖ†”s”/þx… Rœvþ2¼OžƒŒT·ñl_áKÝÿÊÉ}œbó Rï~Œoýý£€Ò¨‡-­…-鄽¥÷~~ý?מ”Ø»]5ag¤bã4©šfé[¡c˨dyo|ÈÊ“œäÔÃ]{Hê ¯É—' ¼wV=O>©žì;’ŒÂTbé“^ã`èVë‰&Ð&l&ofãÑn«VN}yY¯ÉH»I%G>îÍ)8 CqÜ TC(È—7ŠÚ[ÀÚÏÂÜYª j篟ÔÖ•*G;úúÍïÎLN¸púõ›¿Þ¢Rbì:tÕÒíû‚¯‘ZB0Ñ#ëÇ&&,IìƒwŠIb0OqYÅ/HÅÅ•!7tÕ8IˆÞÀXP¹¨3H]lx"H!<³mV1Hõã‰GÍw>Rÿ¾¿uãŒItë*ϸšà{¯^mÞû+u…8ÏŒ?¿“Ü®±rÁî@ʃä1˜>8‰ ¿µ²­„(*À.^iÞÃ5Rbt0NÊnÊ5®˜×¤ C¤„á``×^×ñÑh2ÌOÏåÚ@êã#@Š/o/Èý½årm®õ7ÝØ1ýÒÓç`מwí9¤:*ÒÝCÇø§ë¤…Æ'"D(‰ÛµçyÒÛñ¸SgBA a€]{"˜8üíÚã ¤>þ\z±ôÉëÿ´œ¬/•ôðÁW¨„RFJŒ]‡®šð@* 9¢¨‰»¼ñKCSâøA(‰©y• è RØç˜8ÜÙèuUÙ§iSÿ•—ƒ^¡cÁní½ýüêü™rµô«7>·–||œ’µùê}×X&)!©u†!;’]-™—ž®„ŸŒOÄwÁL’RK«—¯H qx c¼rËHM1‚ùiZ0î¢ÎÁ79LÚì€ó¥_e¤Þ=)?T5Ö—€ó$©¥JüñÅ7™'Rߪ ¤¢’¢‡S5u“ÖBeÄ/BIHÝýåGöJsRç˜8Ü(ª²´Ãâî,ÕEÛ>?‹M€Wy–Çýþ¾µðýÅ#Åã+~þýãcRBSë@BI„ä!ô¡$Çð´ôaþ„yáød%Y õï?)e¾øãURB^¯ÜWšÃîõ&|–ì£L0éO—×+˜I¾–ùàé/Hoíñ¤zR1‰±cÉ:ƒSfñOäóvž$‚TÅ­ýâqì·¤°6Î…1q¸€Ñ§©S`ãz¬Ôæ`Ÿ¦M #õæãËcõåÊÑõõÿyöÛ…YÄ ?þóî)!ªu ¡å”†TC¿”te_ÂÚ(¼ôw •ÑÉc¤îˆîBIH-©2!]¥Âì8ÆÄá–‘š6æ'3{Üå±8kÜn{•S¿\CR/ŸÞð¡6†f:4SwxæŠhóÔœ¢ç¿‚yèhÞÝÂÝ—HñTëa. ¢¨ù9ð[Fù#Í„!¦öÒ‘Ñ=§(I©»ðò‚ŸHavœ câp_iι8á©nyòÂïhr¹«=8Ë;#õùeÍ‘­ÖUžêi‡SyóMæ €”0ÕØ 4:}$~¦²/Á/E„’,RÍQ=sÿ)á/aŒ×‚þü=­þâè"프¥i»´Âu”3‡ØvHÌÉ=.b) ©.ŸóéIpì×¾þ‰g-B;]Ò—w·šO··ª:ø‡W¯ZËß|xB/-ÑðimX•ÿU”^²þ“¢»'P†h&-ûY[»Üʪï€TÍíCÚE:œT@Jè³FÜ‚ÜAªm×ÞôiЉ€^_W—C%—ÝQ`ݪ8:gVÞJ¤·öÄýM…ÑuXVƒhe£4K7µ‰þÇÛç¤Ä¯ö®åCMå?©¬UžÄ”$+ÒîT…±aaqé=¢(I©èó±›™ú`E]]ªi_l~é×ß6°~ÿèüІS.§£3bLö-SÌVœQ93àrpÝoõÏþnÁHµÇ7ÏŒ;HµÇ›O-çN—A­jþôñõ«[Æy¡¼gúwuÅo«$/4ŒœtõJSM뮽ÿik—[÷¡ŒÔÜ cjC©¾æ`‚wþ|¼ª8zaœ,CÅé´wvå#Ì~Sat¦Ôþ¾Þð/k•§É'·§“—3<ˆ"c홌øaQ’RK«—¥]&ú`E]PH u4ïn½ìåb‡+g¤¯œ±¼yÏâþMƒ›W”®doʱµŸÀ˜¨œ¥²áè&âMÊí?`¤:?3©8΋µHB_Gòî­ÐND·õéiL{«b½ƒJžýïÄÈrû‚"y¨0¨`Ûù?§²†¦ô÷sXþ׫7ðãš™½2$9¦¯¬‘jxÐ,Ÿ%ãá÷¤úšƒõ¤à¸ûô‰yIŽTÊ¢AtÅU‡7„úÐOÝcÿ_ÔÝ/v¸*öo*Œ®ÃÚ»ˆ¢>äÂo‹êeHÒ%3”ˆ)I=§(‰©ï@Öôó ©šöŸ/ÑeÀ½‰0hêe.C¯Ž÷ïû|$îu½Í“sÆjµNF,Š^î½~0IuYÃ=¢ôè¾ê×Ü•–¾»TsÛ6õrðþƒeï…ôe«+ßÄ“+äO%V~-,¯xáŸR0(è"±J<§€³U¥'•=Iº„ß²*?Ædí5kTôØ\úÛáºO'™…Ô˜óæ=QTD+³Žq:ü¨nFÕÌ. D¢ €æ@ ö­½ðÐðêÅˉ+&¯w^oj0"58|HÊtG+­¸­³"&¥ø¸µ‡ D|kÏ9ØyVÒ,šÌ„Ô Ñë£ÏËŸOÝžÚ]å¾RÖ§m“o¦u1±%ʆH ¦†:HÁ½rG;Eg¬Ê wšîTOT‘8bYв]¡»0R'Xâ÷Eî¯;xâ(É” *$Ÿh©0ÚæêcbËHQÈ«"HöxJ…âK”ò%ùRXåNáDé@’ ÅUaԈѩ£·Ø.z:TíW}ýæÅ‹žMZQTØúõ(zZR6B)§ó.Q×bº0‰r0R˜)(Š·m}0v,|ì´.ÊaB܆{U’Uqô‰Ã†¤L3LX½>ÆÊ+Ò»7”g çÚ˜µZx-išôô¤én>nµq$Â9‚ uõ)ª¨þ84_íî럺˜ØeC¤SC¤"ÁÅÎNE-(f¿ ôLÞ™¾1ÜÌÚL3NS#Qc…÷ GOÇÎwýÄukïhýQJ6S9j_v=@êký∠äP*…H"ëxWãY…æ´íJ$%Ÿ5>™1Lpã¹Í›°¿ÊEª®ù¢Y¨yýå­. D¢ €ÖA*:(ð…Š ç©Ê ëá5R¾á!k"÷ÄmRIš; ]ç;ª\ªœ^[7eŽIÂ:ëXkïv´H1©ä#.ÎÍL¸:3iAÊ;Ð{KÔ–ñ©ã¥hRÚéÚKyz%íL:«x¶hVQ€_Šêk PRÙå}½w’fC¤SC¤G˜gX€U€©éØÈ±C’†,s_æàèàÝ-HådÕ{y6ìØ^ïíY˜“…>HÕÞÚz³Ì—i·ÿx|k/~€ Q%ªÀ{ÿ±£¢) e½k«¼‰XðDIK')ûgEÆôK5P‹Õ¡29ÿû†"HE”Z9­k‘( …ubíÚst€ÈéÁXÖ®½cÇ@ÇPIç´“OXøÆ0¿É‘»†Æ®˜4«?~tªìš´ IsNî¶•Ô•V+O²W9æ¡„å1޹l<‚Ž—WRåᡯ†ýÍÀàæRèµEM *AR~~–á–óæÆD‘‘¤µ4n©k°+F~æ„<Úór牛‰¼7÷õ1š–»:ç~~×[¢l€”`jb)ÎðtóÜê¼urÐd9‚Ü4ÿivY)7ó Ùt .öµºÚ㉾_±z}­®•%#uüH“©\ˆ?ñµðP]m(‰.RœQ/žŒ‘Lñˆ%Êú½(”Ô4’L¸UšÂ6g‹ºÑõ:ÎÔuxJŸ)ã<3âJ×"Q@J@ Ѝ À"ómG—-ƒ^î×ó0 Š™><ÔM*ÊZ&aùàô)ƒ)£dé 2ªÑÕuR&®µÞ¸4|ËÊ+?ï,­¢¢ Ť’!ŠªßmË.Ž[ÔÕ¸ä¥ÈLj#Ì–±kYær£ÜåR4©¡¤¡Ó“¦o‰Úâa‘T/s â'ˆŠ‚¶/õ¿z|ð™¨=QH(ªO”C £Cõù§W]Ol‰²!R‚©a¤Øáàcãf³Ø{ñTµ±#Ö{¬ð ÈN¦@un#›Š ãW|奂+ꪌ|野s9\¦ã˫߮=2YÏ›¸˜¨CÓH½‚T¯’šN_íO0Lé£ åè,ÏP~òñy×"Q@J2@ª‡Q]ó_pagB¦gD3šK›»”ºt=uƒ9ÅÜšbã@qp¢8§•7†3#b˜q©Ìô4&¾Âm×ɺ& †$“6MÓÉõ¶„ª2‚œ. Ë5ŒµÆ™ó&fË>0cà°ÌaÓ3gldl -='ŸØQÄR©3Ë®~×P¦}(È'!Eõ)2Ž7^SàÚíÄ–( %˜Ö@ŠÕ5ÿÆÓlÃwÍ ›-O6 ‘Ýê½5,<<+'£ÇãÇ×{{¢RµËÌÕ̺ãµÇŽ$f0dòSŽs|ZW&ŽŒž@2‰%…)x2Å&.¦òl™ …mämEzG2ôǦÓ"’Iê^Ä}5#µ(nÑ’|ën D¢ €TŸ©k¤ÒH¿T‚yan8a×â²\cc{\îùÈà#Å#‹©ÔøéñA ‚œW9[n±\oµ~©ýÒ¹®sgxÍ06ЊÐÒŒÕTLSTLWTJ—œ>¨?­?ÔW¬ ÄQeÓ)¥Êáˆ8Â(\ê\â\\ìJ\ä6\¨=.Àç•ÊÞ–Üel_ÈjÓàr„êS åíë£HV—_ïvbK” L ³ ŹFê²…ù¾s--ÂŒQ¥¥Ic´ˆKcwN>dµµŒTý‘8zÖ0oÖr(åÈ<窺£§NÚ¿wX›Ÿ‡Føˆ~…ìMRõÇÅ®øŽ*o@^‘†'ÔëŸ<<õè«a>Ä9 ä4j)U’jBÙ¹n D¢Lj¾óÅo…P ¡ _j<Í¥zÿ}tA*5íŠ •‘y¶‡?ˆqÌ­—¹¿º zM÷<-Øbó#.Î Æu¸y÷Ç„™‡]]Ûµg¤"°ïñAA¥žB¤RRj‘ºj4¿–L¦r¹ ˆ}ãIHÊIžu¶‡mW!©ô¤6Ýjkò¥†Ä\Ð)äÕâQO@ ¦(x½yëñeεç|­‘jQSã\#uÒÖæíp]„{÷:€LQ0?qwæ­ž€ò«4$5ùRã IHêè¥ê/YŠÐ†Ä2aÚ\GÄ L`B^s¿ÞkuõoÖH9:¼ÒÐÈÍfzåœN´TÁÏêGÒøŽ&¥DÑšH5Ù‘e_[”Ï/H!_G…¤g­:ÙænH7TÈPXI_K‡ 32/¾³Ù…Çj*ì;OHBRgbÊÄ…q {ƒñRwî®iÿ•>žXdz|©ñ@‹­Tí¿SÓþË…ÐU]ÏA*!±’ݼÔÔÃ=)*õ[-#ƒw^ªKbïÚËÍ;_Óú+ËÄõy ìÚ+ kQW{d0îæR“?&LgÿlpÑÞëü‚TäÂ"v f©ÄåGØ_–J=ÙCŠ/g«%'ê¡Å Æ„Z¶—¼Ôî ;ªŒ»¿;Oã„åiCœj")à`ƒ‰Ä1 yå¥j¾}üÁøXˆœOhݵ7~RœQ}üXLIõ6j±ÃÒ*θÀqZæt•zUŽvNúäôð¹á®+]-L-6[l^j¿ÔØÕxª÷Tƒ`ƒ1#4â5Øp‘&I·=À…&…£Ê«&KMTÄáGãÒÆágãbÖâ­q>8Ÿxîná|€ cV-_ÕëAÊ=À]–*»;x7)ñ|+ÔHBhèªõ¤æÆOLžÈ¹šªÛ‰íI¬;}Ø(òtòpR}þó¿9>}¥®ç™±óçw›_¤„-ØÇA fäÑz™ËsÖ+çz)¾níÝHˆûkÚ´÷ïþš6õFb¼`?€3R‰k*¾Þã Õ‹cë§ês®¦êÖ@$ÊÁH ÅÃ8ÐU˜¢ÜüYs¶A»Á¦òÚÑçož¾ý##Ÿ!C¼qÿKÛGÏ¿0)¡îËÀŽ L­ƒLQ0?qó R¬5R#49×H}ônĈîÖHq)Î5R߬—êó ååï%O‘ߺHI’ƒ @Їq «&0HÍJ˜5#…üÖÞŸ?P¿Ðð©õíÇÇÁ)Y›¯ÞwebdžH ¦ÖÇAŠbZÇINбà»ör³!rúkk×Þ_Ó¦BÇP‰`Ï‘J\YÉINÐqâŠJRP,ˆ[ ›¦ËYÒk €)R<Œ]5Á(Ê.Ð^†*³'À‰oúüœHcN;ñç_¬·ï/)_ñóï{`ɆH ¦ÖÇAJàè RP@ŸÜHŒÿÑÅzE˜‹êîÖ^Oû&E9:ÉReí‚íø)Ip0R¤Hñ0tÕ)½T}ã¸y yÛÐç—E{ót‹¾ÿá3«ðÙof/\üøÏ»Oز!R‚©B¤RHÂ0ÙpfâÌ…½ÆÁH ÅÃ8ÐU€¢¶…™+R=ü<ù©Oϳ ruŠîÜý þ}­.·ÃÞ¢™ -o0`C¤S @ ‰ç «&EY…ZÉQåÜÜù)Éq0R¤Hñ0tÕø¥(o_u¢ÆÚȵ?âfCjv–vû•\ÇÀØõ)ÁÔHBâ9èª R#ñ#—Ç,ï\Þk €)R<Œ]5~AjeÔJM‚&„Sü”'A“óÒ-ôXýGìÚ)ÁÔHBâ9èªñKQë#׫Õ|ü|ø)‰r0VU\îM ÄUÏ”ÃRËøýCÈzÄÛr¾&NOþ‰ýa<€ƒcì«~=”9:¦ì$¿(Y2R¨]Ï¡Ký(ª¡.ØwÔ`A{ôþAj×¾¿‰<–U.·:dÓݧ\f„d=d¤SÔŠÑÁ6ÕlÞ¼K¯w0RÀ†€AqÙPÒ™­íË·{½ L 8PC"(.#Ÿ§ÈqþÖ¥^ï`¤€ 5‚b±¡ãÍ'Us†\ÙË¥Nç±×áj}Ñýwí6;\Ëü %lAà`@ ¡ XìôÍóê¹êŒ‹Ù}ÁÁHj<ÅbC‹+Lv¶ç^§óŒ€|§^ö2ô ÙûX,ó €”°ƒ5„‚bq°5ÕëÌîè#@ ØPã!(zŠ=¯S¨{åN¿6ô®Ý‰¶/,ã˃PŸ_¤„- ¨!½ƒ¥#ŒÊuáÖ•>â`¤€ 5‚"¶¡×jUsT÷]-ãY³ËñúÙûãSpû\Ä8¿H [8PC((b;rýøÐœ¡9— úŽƒ6ÔxŠÒ†.Þ¾ª[¨x"Ée_‡ñúåßÿ ÿ­A®éâ€«å¶ t=@J05à`@ ‰ (ìÊ&ý“Üë<û”ƒ6ÔxŠÌ†š¾¿±¼råúšH<ˆÓ†Þ¼ùðkü£ëC›/.¸qJºÍ}$h…)ÁÔ€ƒ5$‚"s0(6Öl^Z± ²²>å`¤€ 5‚"³!¯c>ã‹'pyÞAgzû÷Çßð›5šï›ÿôòÞöž8$eÏ )ÁÔ€ƒ5$‚"s°ú0BžK£zŸƒ6ÔxŠÆ†èª9CŽ\?ŽÐƒ®Ý¼yÜéé‘7î­¿ÿ×Í×X›_¤„- ¨!ƒå^.PÉVÙßt¨:˜ Õ|ç Šß ¡BA¾ÔxšKõþûèÚPJJ-¡¢BA,«!F×ñ4—´´#=´¡ÚëuCr†2/å@Ç'Ï>åa@·o6%47Žl:otÿÅÕlNX„6«‰¤€ƒ±rA u°ºæzõ\uòyZßt0A@ asÑ­†°&_jHÌ]K5„5±¬&®j6Èlù5_—6TãŒN¡Žÿ‰@vº»[ºs³ ßܨÕÔ8µéZá ±ÌD„ÕÚ\GÄ  8˜ˆÕÄUÍF$vöæÅqEãØ Ìû ƒñRwî®iÿ•>žXdz|©ñ@‹­Tí¿SÓþË…ÐU]Ïm(>¾œÝ¼ääC=œ$|©ñIJ¿‚Âè:.¶’˜XÉVCrU×ÙbÎݺ4±ØÐ¶v7t|úülµÎWuM´æÆqM†MטÍlÃÂì„åiCœj")à`ÀÁD¬Æ¯ Ä9ØÅÛW§ì› ?{³Ï:ÈHë9 PW5!_Ï]¹Ó4£d¦Ùmœ›\:[ÕµœFMzMMäfè’Ž³&f',ÈH V8˜À5±¬&®j6Âw°ùe VW­íã&HA †bsª!äK§¹@WuèÚP\\Š“¡BA,«!F×ñ4èªNj¼Ó¼°|ÑʪUЧé@Wu_ßßhšu­qLSSJóµÛóäèN1tÕÚ¬&bLÄjÈ%ËÁVU­†L 8صÇ#Àž—¾¬f#´=/ÐÜÚêuÆeóºý˜ŠM ¯5ojŠi¾v«ë¨ÏÕÀ®=a j…ä`f¶Í(™ÙíãZú’ƒâmCGƒ6ý©6à?î“æôïcò« òêü3»½TÀý‡ð~š+ŒrìÏ% &° ê6Ôô}ó¶æF{§\¼}µ 9x£iŵFµ¦¦æk7ºY³Ù»l€”`j¤€A!8Ø ‹C;'ž»u 8Ø;RHlèû;.R‹j*rOÙ|²ödEM5ÝéáZdzŒâýE„Æùƒ?¸ÖUa}.5ѵ¡+wšVV­š^2£ ª»Ñ´þZ£JS“ïõk×¹P/³!R‚©jHÑu°Æ;Íë«7LÞktúæyà`m•9ßâfCUõö†tmê*«©Ù9FDœ'A68ÓÚoöÍm'ËþšêN€Jpž©zv»z>ôQ™BBì;j6hÛPIõÛ9¥Æ‹Ë—ṫŸ¼Ñ´õZ£rc“ëõk ¼ ¨—Ù)ÁÔ@N¨!DÑÁʪß/,_4¿|aÇlzßv0R@ªŠvk$ä8¸ÿd&Þ"–VV—nMÎ (©*©©Œ'Ƹüx'ù<úmÆ»¥ê5j6¨Ú•“•^ö¬5›¿Y›yîfÓÎ냛ì¯_»„Ô€z™ L äÔA´Ìzõøœùkª×]½s 8Ø7•9ßâ’‘ª*Ï>ccøQmõé²¶*ªûçhühè”WÕž Õ»Ôl:ÛÐnËäÙ:¿HC`Ýï¥Æ†ù.Vá.ÓŠ­¨ÝgnÝÓɃv¸ìP&(o. øºOøÒMÈzX´ó:dF|P/³!R‚©œ:PC"ˆŠƒY8[¨àUÖzë¢2ç`C;××*Êž_e)ú¹Ôìʃvdè ~¢³$`÷7ÅNV¦ÿ£4ºÈ³p¶POU8ÚÖÁ6mAÚ)ùSU£ªjÓÞ¡b@½Ì†H ¦rê@ ‰ À¦‘ª1*i”ƒ p0•kÚuD—÷æ7Qý&œ°_Û€ó$)‡µ/øPÍ*ÿMj]ªÉŠ~®LæÎÅÕ\Ζüw(fLJa§ÊZÿ¶ìú} ?ט·°6ú{¼[Cæ‡VÙ÷'Üv½Tüº ø ïz•ùQì_D·Qþ qÎÛE{Utñé~&µEz!#ÿœ*SÓ¢(¶Îûùåá·/Lºw8ñø[.Âèbât=ù'öoŠñ€NÄEó5­9õt,o¦¼Ü_óßÁ4¯osêvgK[ëWý¹.0{yÁ§šŠg§w/þ ›r¢â¿”˜×òk.µV(:ðD~âÚ?bÿ^ ÆÌ?¯Ê±½( 8¢ÊœTÕ×®ç~{þÏ€zI5H­¤²ì›È÷ûSfÔuê¾2â¶WòSÏæÃ…e•_,´=IË­ÈM¹b¬ôyÜžåeedË—Rš÷‚(•Eô“f: ¨Ä¨è¨Ôjž‹« Z©98:¢š¯Ÿ/Z©1r²P Hð§ßù?Ÿ~ºJóSÊÿ~ùå›rVüïÁ÷õ¿îÖ¶™>4w(#+ûú¸ææi7~(ý‰]õ1ŒY5‘Áùê4»èDt(¹{û¬}Õ•ºï>¼›_Q(R³÷!kdæää,÷ ËÖJWÒñYPaqðœ÷êkä°*äÆÞRWþ)ŒÉ:î> µ°ˆptBï¤f‡Þ?HÍÛÇ­€Ô2³(†n5sHÎFVp0¤•9ßô5âÎFÏö~œbõ&ô #©2²ã]Ë€ÃùÅe…”Sæã> ^\_TVR’rg¸ô_[£kö2ë·jý3rÛ‘Ò6تŸõa¸é‘’²ÊÐi‡o=ÜZ^šiß"=ý o) ‚Ôƒ#vŸ8/åU·?úé—õnÿ´¾½6raüàU“sê¯Oh¾›ÿc«Â²qj‡ã| R?ýöCNYÉ(Γ84±2¼ñ§û¬‘ùÑ;‚À‘S#m3ø0téáìÎ ¥ôhÙ¬çò¬‡y¾Ó_v:=§ž²ªiÅY„£›´>PÓÃHa¤º‹{~ö8å­ÊPÛì)äj\Àè£ÑäŽ 5Äà £™]:γ¹ÀíÖ÷(£_X¢ùzDzַGæµÈBÿG2/,.?æ’)‰©CwŽÏ¿ lá± Ç¿'Þûé7nÿ¹ÂòŒ@Q €”Î÷aù¸ ÷ƒÑdèD@¯Ð1*HÝuk›WuFN3­ÎTï¥G² òòân “~¾9´$›rdó˜Fl©Ékƒ­âÀ†m„ÞûOù8l3\žO´i‘ž¾ß3€”¤€ÔáŽA6?lAÝ„cÀÁà …T Hý+'óÓI¸ÆQ¸š¸Ò²õ²—a–‚^ÙÇ‚€T ùÒ| ˆ¢–vñiYú–·ÒK*Á) ©›¿Üµ+uP!ªD­Šú>éÞO],;6Ä;H ¦Æe¤ý‘ŸÓáR;Kµe¤ò‰Ç7½nÍ©¿;÷JtF> ˜ò‹ã­j¶æÔG̹˜˜Õ–²ÊK½4qð³m …%›½¤yÛ/½8›tÄTû Nó¢})ìƒä`Ne.ƒE®ŽÆ¤ªqËHM1‚Ýç…޼7-7"aàVg ŠAfíÅÅH•¯Îúf¡g[.ê›(© ‡ÜÑ•þÛäX2z@ ‚¯ï¿ÈÉÁ×÷÷=Œ?˜¤FPÛà°átô¹Ÿ~þÏË>`CÝ)ÁÔ¸Œ´“'uΩWӚؠã«sA yäN-öÊØ¹<¿õm!c¿Íœ¿Zsê/ŒMžË¹` @ S Œ¯ …TûJóÿ8Wäápçs’¼2¼u¢ôU“U'­t®%Þzô3»þ¥ÐC/t´?IKC¯gƒ¹€Tyòšwßl<69±·¬¤sxëÛþƒŸ/sª/ùEŠ Õsb_ßÃqQ 7!~¤aˆaYxÅ÷°!.@J05.#íË·9õ[ÃqÿHËÖË\†Y ze Ry©g窿2vªÈëâÓ„ o¥—”ù†ÂHup°Kcq†ñ£ ÛQ¬Ë …T÷®½©Sþ•“ƒ^Ÿ•±ïè%¹”9¬q’®ÿMn8}‘Ý¡¤ó3;Pw–âPÛHa ¤Ø×÷¿¨à¶ïÆŽÇå-yÿîCälˆKL[Fª}•'œS7 ÃiŲ±³+½/ßêBŠâ¤r“/LòzžK[.ê›È+ÆûÝÐfåÔãÃÁbs p0~€R5$ˆâ\]ÞaƒvÔ¬ÚW…>QŽØÏÌ·o:î•tH½ÐÑ Õ›@ º¾¢ˆó2é¤áÂ×áÞÄA%üz°¡î€”`j\FÚã‚ÜWwGQ¶´ÝêIôµf{íð9”Ûüð»þ¥ÐCÏ´´>IKC¯'|½¹€TaÌÊosê‹çäå%]ƒŸ>Õ_ééb»ú’Q¤(R=)ȯž*à|¶°, 8‚ …T/ʳ½ÐÝ®½§CesæâÖ¸à”ð¸ N¸¢™¸ƒ¥HõºðS££ŠjÎc+îŶÿ~|˜blˆKÁùâ>ØXkb¦±ÖÄL1z\˜÷Së½²—Ý2̶í'jô£¨Œ¤­r:@ü1»cN;KñŒð@N,Ô•ÍB¹mÃ=V†(„RÍw¾ ø­ª!äK'<]n|‹„±Ø+Ó_I³( b)%b¿é¹3\‹Ýr+òÙxt68ð/C$먂ƒyE"Ž¡RiéGÑ) å$Š µ·ä’jqÙ‰Ó2­úÑä¦EOû}ð7ÿ¥y\˜Ï6— W^¡hCèÎqMX„6«‰¤zƒñoœ#“s]|œJ.]]æ H×QÂ÷³Ø…+›†{ÝžS¦¥Õ%!•–ÝF¤22Ï¡Rx|Š •–v]"“O¢RÅûš‘TKÎJéØ&o;ùWeà`|¨ñå`‚€Âæ¢[ aM¾Ôx¬Uç•éGB½!Š‚XJ.S&ª£!žÈ×Q!)Õbv…¤ cý, YÎ#r¹›k+ ¹ípÚúüâï<ǹ{9¶ã eo•2G÷–z9l"c»T¸gÇÜß8¿{?ÍLk¾A y5FÓ/™2Ê—õàæÁ!4ûŒ6*‚lÅ:š¬äÕúìæàÆØln–a@›ÑŸ&?8e=ùl]—×÷œæ‚¢ ¡;#ÄU ¡ ÁuD R½ÆÁŒ7öqŽõ¹îvíý6L&c>n¥Û79õî EBP-Â:(IëÕÁÜ#–9;·‚‹¹+‡ƒ¹zÚ·ã µË"y¶Î/R­¦1!s›-Tæ°mv˰ä¤WƒœÊ7©ÝÁ‚©ö´6*Ê`dZG‘ØÃä†PqÌø)´…ýh²Š©ËÒOÆo5¾Œ?ºsÿsMû¯ôñÄ:žàK§ j\ب¡ù5[ I^еkOW‡•mÒÕ9ÄF¢ÜŠ|˜¨”ˆýa‡B²ŽŠ'!Ñ3êÙÍc0ÏwW-<*qZ`¢mTLIù³%i<‚¬Y$0Ò3ÕÀÍÓÞÕÍÒ-ZÎ3Á*y?[ O¨ë H9›Ï¿aìp>óåÁ‚׿©ëàÀYÁ>l–ê›QË|ø)±–Ý<žy)¨NŸK÷É`’™ ëHâÀz‹™˜QDé`Z`vµ½%Íø‰ž“阵gL†Þ ª²lÜ+<¡ºú_.¶r©ñ%»mH®êPذ´LRf†uq`0-±•™ÜYF ̹Ìv°â}×;#”Ów}êšœL²iIÀÁSãËÁ@F …ŒÔož#]áµ9·Úǘ‡û}ˆ”ð3R_kÚ»ÅJ{†›³HÈw¢GÊxH¹B ¥èµÅŒ¹¯Ñz3xZ¤G¹éQ%Ù«klù¿µ‡¼'‘ˆùZDvV&#C×›´Îd¯|ê€PÉÙ©˜•2&ëJGÚš&Q©Y_›#¿î×sp€Œ”`5ùRCkdv^™¾?À¢(ˆ¥d3ea¢:àçŠ|OBœ‘úZÓÎ%FÚ#l „¼'x¤¸xØ9¹X¸F)zDnB1#ÅG®«Æ¾QšaËQj»éˆ¢Ì•UVöüßÚC^“Šˆ²|5‚ÉÈÈ A¶žšÉ^ùÔŸ(YT+†ÕðŒ²Tu©h³Ix ãëbsà`üVbF ÄPl.B5„‚|©ñÄ£†æ×¨”Ž6ì>¯¥q¥Ópæv¸Áéý'EM²‹²'P)zÆ ¤ UݲÐ#UÍÝkO+ ív‹PiûuÒ$#77çÖ”ÔA*)žV¤)ûpÖVgŽB· ÉOÜ-È)¡–oÊfZ„Ç$1h9YT*UÅ—¼(’$ }k²1á9»-åœå:™1Y6Cn,i¾LpÀ²8*žÉì°k{\n|‰¢ ¡;#Ä5aÚ¬&bê5†âÈdíÚÓnݵ§­uÂׇDôÂL˜¨”ˆý:äÔ»[G…¤¨´cHAªºe{ªš›§C+ ír g;Ød×=­…ÉÉÕ(‚TB,¥r°¦{8 ]ÖŽûKÞ Á¦#r!!$<þß ÅÌd9Xb&â$2…å`°ƒ‘ #µßÚ f†,`,€Lƒbs£1fX I?”BíˆP¤z¤Dp¾D RÏ´´à+À·R¸Ú‰8WsœNô ÕÕåþ+|‚}ètº°@*GÊμ`¬ÂŸzK¿ÍE±–™ÍW§±àÛµç©l¦U8Q-ª-Å¢¨†O–Nʼþ4Åᙣ–QÖ 5Á3 ~‚(ÊÁóœÀ†ø R"8_¢©¾ÞrêÇý|‰’S€ó¼Ày xƒs?ó ØàŒ¼LÔ@*ódóªšÏAÌ MŒÍ™ÒÒZ™Z««}˜¾ô,Ö»ôÌÌe±,Û@%1øø‰à`ü)¤jØ)vÀDUkP{Nî\Ú’´­>[Çã'ÈÓäiІDÃ¥iËv&í䲬ªwƒ”S ÓæˆÍ³fi5d3'2&š2Ͳ#2s¾¢5+Ë,‰.ïK\CMe B(R= R"8_Ø©¯k¤ÂÃSS“7¥ø¬óÙl¹Y?|œEJ•¨:?~IŠÉŽø^QÞ¤ ððõ´ ¶\³D'UGž¡<Ý€Á0M¤ÉûESR2:®( …º)¤jR‰ê’ô%è5Î*Î,~ë\¼±YK†.¡•Iw~úü­É[ÝâÝ#c¢z%H99nŒÜ8'aŽvº¶UN†*3?z»-|[EõÇ$”™“µ;=CÅ8%‚MïzE9)ÔÕH‰à|a¤8"2(вƒZ2«4\~äüÈM{6Ä@3²,m¢öÌ´Y«’V[Æ[ºG{„F„õzróu7Ùnm21ÙP¨>€>piˆa’áêÈ5yUO:PFcW*å`áäh*@ª'@ ©š$‚TwDC%Þñ>;’w˜¸n5ˆ›ªBUïBÇKýl‡-Þ°ÉÖÓVH E^µêáС„^¡cAÊ)ÐiGØŽUÑ«f%Ì›>V–* t0;aö†È ApµÈ…¾Ûð5í?HrÛ›²ºÚ›”9*ˆ¤Lö'gò‹P¤z¤Dp¾$¤8#Á#1{MÎÁq!ïÚk°×ÏÜoCÐÆiiÓÆÆ(PÐh$Ž;e^ê¼õ‰¬ãlœì¢Ò6^6H‘V¬`;tŒ"H¹ûzXÙl ߸0v¡AŠ*IúŽêuäI&ÑK·‡ì€*@Õ"ú˜¥×´?þ É­8yU•>2r0’?©ëMy¤„¤@ ©šDƒ¢ŠÜά—¹j•bç6'v]‚÷¸Äqé2™´CC´“´bæEÌ[²|“ÿ&KoKGwGAвre‡=ÈYŠ RþöAöfáfËc–ÏLœ©›¦;”4j-tÙ:Œ0 2 ¹ñs7Fnt rì¹¶á¡oM |St¼Ö"_-€´Ÿ‘)BêIÁù’Pbô?‚ qïü½'†Ÿ€ì B+°¢¼¢wí ½ x!Þpd²ŽFÜðô²Ù¡ø¡c’ÇÆÎŽ˜ml²ÞoýV¯­VîVÎ=)Òòå 9K±AÊËÇ{¿F«#WÏ3žÓ0z’n¼ÞÈä‘:ÙÓ)Šé¡«4è`$~¤a²áü¸ùë¢Öí ÝéàÎÇ]?K]Ž[[uBæ’ñÖ¼í)t¯My¤„¤@JçKÒAŠ3b|c37gVU_¿pZõt©~í™AWbíƒ,Ø’Z]󯵛µ©éÊÀ•óÂæEé&èO®JP•%Ëö£÷ƒ®¸H jéj£RFé%èMŠ™45z*Ä[PåE!‹–-_°/SoSsOsÈÁ¶¹lÛî¼}§ãN8šGªBÆÕÁÁ¶;m‡ªA±Ñ}#ë<×­ò^µÜwù‚À3CgNŠœ¤«7:q´Aޱ2IºÞƒÆ¼,UVƒ ¡Ÿ2nVü,ˆ™ÌB·Ú8@€…ð–_+K]Ž]SÙæ`É4*¯My¤„¤ÆHÕ´ÿêˆ^ö~>æõ¢nXS®qûÂ2Ü7û‡¹†w". ìŒ ß‰‹4ÃŬÃÅ™àæá’§ãR'âÒup„‘8²*+¨ò8ª,;ä 8hØÁ1€†SN‡â;x ÍXÍQQ£ ‚  ˜æ=m¦ÇÌÎ Ö[­·ÙhãµÔ+jvq"1LþA•ƒç¤Î5âQ è[û®:¾·âƒØOD_؆FOþ‰ý›‚@9ªÿ«%¼¯·~R?”ƒ¼Ë/ ä… uÀEXà¢7âbÖ¶Ú×|\âl\Š.Í—®Ër0’Z›‰Q³lp:˸`ëßî`j‰jƒA;Ø$ÿIƒÍs™·Öz­…©…ËJ—0ã°T£Ô,¬ròã ǾkÖk‚/ëÓ©^¬V_t¿^öò>×è:vó¾Ì˜Þ!1þeæ Ñwë[Ë|ýÖ9}S d¤$ë|aM 8p0ñª[{}] ö xÂÇ´ÀBmÞ‡C5lèÃá"î:ÎoÊÙâ=}V €”d/L©&v5R}]m¯ÃUÎ×7 »yA×pÿÉËC¯j÷‹¾ëàoÍVƒŽ‹®Šý\ôY5R’u¾0¥ìp0q«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,« ¤šï|Añ[!TC(ˆe5Ðu ëúN×!´!XMÄ Æ’°¿,è:Ðu’Þu|9˜ …°¹èVCXËj ë°Ó'Xþ²½£ëÚ\GÄ ÆFúË_tFÔÄU/ã¤îÜÿ\Óþ+}<±Žg#øRã)ˆe5Ðu ëúZ×ñ´!N5‘K¢ù² ë@×Iz×ñå` #%:5ÐuØé,ÙÞÑu #%XM,«®ÃNŸ`ùËöŽ®bF ÄPl.B5„‚XV]º®ïtB‚ÕD R`, ûË‚®]'é]Ç—ƒ]{½_ ãÍòÆ›‡e5°kO²Î–Õ0Þ<,«a¼yXV?j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç ËjoÞÿÛ»ƒÔ† ¢÷¿’M69K Cv%¶üZ®ÐKQÔüÃGYX¦áz2­"m’žLÃõdZEjÖ¾d®'Óp=™V‘Š6IO¦áz2­"5k_2 דi¸žL«HE›¤'Óp=™V‘šµ/™†ëÉ4\O¦U¤¢MÒ“i¸žL«HÍÚ—LÃõd®'Ó*RÑ&éÉ4\O¦U¤fíK¦áz2 דi©h“ôd®'Ó*R³ö%Óp=™†ëÉ´}Eêrýùâ¦iš{Ív -Îþž~Ò¦iÎ7»n°¾HŸ†ëÉ4\O¦õEjÖ¾d®'Óp=™Ö¿ö¢MÒ“i¸žL«HÍÚ—LÃõd®'Ó*RÑ&éÉ4\O¦U¤fíK¦áz2 דi©h“ôd®'Ó*R³ö%Óp=™†ëÉ´ŠT´Iz2 דi©Yû’i¸žLÃõdZE*Ú$=™†ëÉ´ŠÔ¬}É4\O¦áz2­"m’žLÃõdZEjÖ¾d®'Óp=™V‘Š6IO¦áz2­"5k_2 דi¸žL«HE›¤'Óp=™V‘šµ/™†ëÉ4\O¦U¤¢MÒ“i¸žL«HÍÚ—LÃõd®'Ó^¤ÞÞ¿îxªEÚ"P¦]ѽNt‹×ÐF;¸Hõ.=ú°EWtÓ£Ûuƒý¥H-êÞ÷±Å'eZÑ9™È‡=Gt‹×ÐöÌÁEªw ÉD>lÑ!´g=¶ëÛW¤Þ?>/×_é»YënJì¢ÝÊ´¢+ºW‹îæ5ô›vX‘ê]:æ°EWtÓ£ÛuƒõEê8ZÑ9™È‡=Gt}‘úÛ“2­èœLäÞ#º~‘Úæ§ˆÝQw‘¶”iEWt¯Ýâ5´Ñ.R½K>lÑÝôèvÝ`ß )® endstream endobj 352 0 obj <>>> stream xœìXIÇs÷ TDÀÞNì½ìgc¬ Ò‹ôÞ …^¥IGéX¤¨Ø±wÏóî,§wÞÝ7°s’I²$³Éìó>y6“ñïÌîìŸß¾™ÙÐÞÿû'7²ósyßJU5“¨Fº â¨!Þ<”ÕoÊjcÝÇà þ+ÁÆ«ƒL.ÕoÊjˆ7e5‘ŒÆûÆÎÎŽÄv¤¥ýK¢邊£†xóPVC¼y(«ÑØ4xA²@ ;˜\ª!Þ<”ÕoÊj"9)ùWC¼y(«!Þ<”Õ0HQë|¡¬†xóPVC¼y(«aÂjTjÊjˆ7e5 RÔ:_(«!Þ<”ÕoÊj¤°•š‡²âÍCY ƒµÎÊjˆ7e5Ä›‡²)¬F¥æ¡¬†xóPVkhCo3f¶¤Õoßk=kPˆA «Q·y(«!Þ<”ÕDr0q@ r*;d¯à'ÆÃ¢¬†>tŠsèøßϽþÃÿ¾Ù¡ö:\Ê …ÇRsw:|è¨~èDr0q@ ²¹äVƒ¬‰²>tè”;+‡Ò†êêH¤ðXB䘠ÜY|èQ“U5‘L4ª¹õü3"„bÐæŠ¤&Te5|èð¡S´C'Ô†¾©ÅDI ¤ðX’Ngñ¡Ã‡Žê‡N$Ã)é©áC‡Î1A¹³òqèpFJ¼š(«áC‡Î1A¹³òqèš1#E1› ©)ˆ²>tøÐ)Ρƒ´¡:5©ƒKÍÝY|èð¡£ú¡ÉÁðª=ùWC¼y(«!Þ<”Õ mˆ(”2HÉä€ ~¾PVC¼y(«!Þ<”ÕDr0 Rò¯†xóPVC¼y(«5²¡{Öê4ž­£ÅÃo…¤°u›‡²âÍCYM$à %ÿjˆ7e5Ä›‡²~ 'µÎÊjˆ7e5Ä›‡²~ 'V£RóPVC¼y(«a¢ÖùBY ñ桬†xóPVà …Õ¨Ô<”ÕoÊj¤¨u¾PVC¼y(«!Þ<”Õ0Ha5*5e5Ä›‡²)j/”ÕoÊjˆ7e5 RXJÍCY ñ桬†AŠZç e5Ä›‡²âÍCY ƒV£RóPVC¼y(«a¢ÖùBY ñ桬†xóPVà …Õ¨Ô<”ÕoÊj¤¨u¾PVC¼y(«!Þ<”Õ0Ha5*5e5Ä›‡²)j/”ÕoÊjˆ7e5Ñ@*íëoøáÀYAØdH²É¼§8pà¿ÉÁpF QµG??#1€àõ»·È  öâ÷_È ”OúãY5œ‘¢ÖùBY ñ桬†xóPVÃ_íɃ)NúãY5 RÔ:_(«!Þ<”ÕoÊj¤äA ƒ 'ýq‚¬)j/”ÕoÊjˆ7e5 Rò †A …þ8AV ƒµÎÊjˆ7e5Ä›‡²)yPà …‰@œ «†AŠZç e5Ä›‡²âÍCYMrú­6w¨¡¡ZÔÝ7uoÿ~|õÔ+š¡aK[ÆÞ’ŸßʤWˆô†jŸ_qñ£‚Úvï·üݧì„xMãú\/TnRMÚ u3çeÚ¿4joŽ]& oœ¶úH# ëã“_ºÙ$H½¹oáDt™³¹æÕ—Âß^;•5ÜŠÊ¿·Š^wòÞýß0H)„šLA ;˜\©!Þ<”ÕoÊj’‚Ô¯OlÝÍ5¬k6ôûËÀ˜dÆÕŸ_¾ywél¤† óôoô ñƒÎ_íÏ'{B¾Ô?¿§Å·ó+Î|ýþwaj²ÉH]Kù¥»¤xâZ­™öçéŒ[w„e¤~¹½Ó.˜ RÏŸWM3 ÚPúàÎ//JK²4MâCŸcR5‚v09SC¼y(«!Þ<”Õ$©Oež=B/¦&9uùr?Çon,·t±¾û— z…øA‡©·¿_baóü5´@êzúÏ=Õ‹¼$ü«½ÿ‚Ô‹×7uíCHÕþòâBÉñvÙY¯1H)„šÌ@ ;˜Ü©!Þ<”ÕoÊj’€”ÕìÑ®Çr^ºx¬± }¾q’©åUPý›,z…øA‡©Ÿv·JÚÓÖÐfµ¶øùËšTC ¤n&®ù«Ë†û5s¤€Ôï¯oVç 0ªÿÊÏ(B¿úÙ3]¹Ö•X_Üù¯ó¿~)¼ëý7ïºãf}|õ©IµÿvùK>T”挴®_wl»©äÅ«Fó1¤=œþzü‡Ï†_ÛµügêÞµo‰îÿ©Ý¨ûR'ͧVßÍ¿ÕêºùÇ ý_ºÉSø­ïÍs"Dr0á õ룃GxoòLwF%×ýJŸP¬Úˆš[ŸÓ¾þæ $ DLí] ‡QMÖÇ¡dæÕ:Á¤¸sm9u%V±[/¼ü¹i5Á`TVõ;·y0y)Á U\ ¸ç·’Q-xžt0ùQõ×Ç"ôW}ç_Ò¹øQÔ‹Ø@ž.¥X'ÿ[Vù¶øÔñ_°áôý¢Ï‘é\(ö¨CèÐ µ!^µf)ì`â«ñÜ Ö þaë¬d[Â.ý(tݱl]bÙ«nÝD}¼ÿÃ}è? â?ü-LíÏ'›mBŠú‹¬¬¸5Ó,xKõÏÏÿzw¹*GË49ö]óvV¨Úµ<æý…ç8o2£ªÎ×øw2çg?”üÕ»›H …â¨#âfà_û÷ ݬ˜¢ñy`HÍ•¿‰Âµ/ß¿ºôiíû.Sçœø~N ÇD6)˜yT‚3R=Ü麵úç½»R•ÛË¡ ðSóvV¤jò–ÿ£mýÇǯ境TsòÔ@dÙ­üO7ë£aßQÌH b$6R Re5‘ •UýN"H_xE"HU\ù@.H‘6ê¾Þèð¹§׆Pu<·nO|í¦d÷s"5Ò†5)ƒv0XµF뎵Ìa×ËæÐ5RÎnÿ§Çî?ÞA¨}íò×¶}z|ëÔ /뎣Üúým3wVµO7>ÍÖúÛµú[¹<97>Ýx:é¿Ý¬/lØw™:þ‰DÕ ‰D‚øl‰ Õ'‚¬û9ÄG]ã[7¾…ä¶ ÿDLs JCM‚uDz9t|AêŸWwþÇ¢J­AîíÅÖ!›.½xüé÷òòìÖé±o?!qZÿ¼÷QOûŸM1þÒ}ê:¡Ýä[(SûR5i^>cŒŒZ‚W°à']°9ÔŽîºXs‹[öcw]OMj õ(4èaCÿVR¯`_TŠÚVr"ô*÷-ØÜVB "ï~N¶£Nän6QHiÂÖ,jÖ3‰…\w,›CǤžÇ|VöçÍ÷PjÿíòË»¹Zö…§‰?Ø>Ö·Þz÷ý{ñÚFbO?Þü´¡ï?›¢?4øžQÎŒo7›ê»ÌAêÒÕÔk†Iq"´!@N…J¥Kñî‹¡&zÂù—wU ÃR¼ È t“`)Þ}ÔA ßÏ¡t?'!Hak.µFëŽÝ}`×ËæÐñ¹„?|`ÿg2 ö[ìFì8Æ$dkÅË'ŸÞVTäv39ê÷ºa—¥}Zÿ¨ù´¼Ç?›c\¿MtŸ‚£N@7ô]æ åé=º »:ÔŽ8é‚ͤFðSܾ2±)ê½Aê¡C€ÔÆŠúÕÁOÑú¥bP”l@ ßÏ!v?'!Hakµ†ëŽýQWþË«ší>P뎥~è~þ8ŸwÝñì¿Ö—ºò玟C¨ñíò‡ÊÒÜQ_p”o—¥}ZËþÃkÚêÛÿxßt÷)6ê„u“ß›¥m"ƒ”©YÛ6JP;âR=…’©n+.£•—Ë.η8Ÿ¢‘0(Àa¼Ãᙇw-ÚµfÝšyÛæMÚ?iù îŽÝ»:u¡â­ÒÁç»>40b@üÀ¤ýöàm@{š¿Þ•æÝŸæ1ŠæªCsšO³[M³ÚM3µ¢y}󚯱~Z"èráe³ž¼ø mÂ÷sèÝÏIRØÁä[ ñ桬†xóPV¤ÀÝ[£û¹±¨õ ñƒÎU‹aV´)¡o=+ŒTͳ›)7Ò].ºëŸÜ³8kÉÈÄQ#4ZµìÓgjŠÎò+ô ¶1Þq”îQìt1$¡2)çj^^M!ˆ’›Ÿô‹íŸïêèþ¯ïi`ÿÙ¸Á'¯Ÿ¦V§—…z{[ž²6ÈÛ»:kͤ¤É=¢zqµànã“'l*Øâ\î–z;#!´tö¨Þ…s-.–v«¨ê]}ÛþîÓ›¯)|?‡Þýœ„ …L¾ÕoÊjˆ7e5‘Aª¢&­ U^Ë@­WˆtB-sP”{Éûæ™#õàÕ“‚»'{Nî›™6«kT×¶!mG%ŽÞ»É¢Ø*°’•v3óÒ㪇??…#ÔpŽTxˆàïõjîÞN~z'Óã’÷ÖB½Aœ‘J~Ê8³3æl Þë9Â?ݦä†Þ­Š5 ¯?Hzüâ b …À8Q5i‚v0ùVC¼y(«!Þ<”ÕÄ^µ7¶~ÍËØŠkéö ñƒÔn½ùe÷Ì4Wç³ÜBRVíÝ|^›x=ùðYÓéi3Ú…ªô‰í³øøRÓsa—#Î?¸Ð˜™ÄYµ7|Xݪ½áÃ…‹·j¯ìie䵘ýgáŒnØf`ü Í9[¼Y¾EÓNUjUÞ2«}r¹áOìa’o5Y¬ÚÃ&©‰ëŽ¥vè>f¥ý=vÌ¿mÛ‚W°/ªšä]–Úi£§ÒlYjâu“ô¶‰ý£Åø),âGdÒ‡AîQÎ…HQ;–ú)þZ’þÉ=C†)…(I»«HSÕ“«¤?þ€ôçH=þõEÞý"çr·EÇ·ë0 r ®“žÿ¤€òÙ—îEf¦6È©ÃüéåU“¼ËÒq°Æ=-ŠO‘YóšMM¼Úmà %mµç¼ëooœyFB[ïî^g/ÊY¬ÄQ4æðYÓÔ›™µ/4ߪ½æ)ÞxúÛ«ì{ùæç-'›¤Ìn;Ùn²å«³†Å/-r£Q\LTÊ+™÷‹ôˆO}kl{½Š‡ÁVC÷l2;\šÿ7øè¤oå;;/‡Ï®]|¼¾ÓêJHøOS^,6ÿòû£¥Ö™ ®ÏËMö$ü#óÃBn4îf‰u–LZBØdH²Éü˜Ë_8.•ñºãüvùÑ=¢½‡{[NµÜ?wÿ–[–oZ>k׬q†ã´­´‰EÇš.š*>uëŽU}¿¬;¡Ä¨_w¨TuK»Ð|{Ó¼ÐmÓ%u#W¨éI°mݶuÞÁyãLÆ©yªõ³é·wÉõj™ëÖºy¸öéÔÉËÙ‰[ m¾ ¿/A÷Ó9ì7Ñ£nÿyî ®Ï2:ž~ß*7@pyéj*ËyãÝ A ºùnð uš BM&÷s8#%žÚƒ—OÈ  Æ a²;¦ M‰ÍüäÂ6%îûc‰BQ¨ ‡l6ß¼ÐváD§‰ƒÜu÷éÞžÑþÖmÛtöëÜÇ«Ï÷!c\ÆLvœlp”=ËtÖãË._·oˆõ{×oÑßRÕ£Ó%¶hI«ìÑ ”o1Øê¬8°b‰Ñ’ùÆóÁ¿j1uŒí˜!Cú¹ô6G¡þð©ù«õr°@wÉÌ=«ŽLptšæÑ#£¤UIfŸ¬Ð™¡.z®ffæ¦æftÖŸ@V5'Wç/áâ:éïX°ÿ¤[7¢àÊ"v.jö˜äèü­rAºù“«v®¬”7Þ~u0n7ßÔ NSA¨ÉÄÁ0H‰ª/Í÷?:Ù;ª¸þ$?²4žç<¿;½{f›á^Ã×Ûo0µ0kPG¾AŠ»éêé.ß½|…©NŸFšÜ¹o§³ƒ ÁC÷ûõ;¦»•Dú³U«F÷s­¦{Òå ¤>+)5è&(Á …‚á4‡ƒ‘Rfõe´+슛¥š©í&Û6wÿ£çÇt`tèçÙoœó¸9vsVX­Øj¶uß¡}ÿ!ÜÉocÌÛ`ÀÓçÍã[“wjYÚ¶ÍÒm¤ß\£uÜ'j;ŽèkûãÌíÚýèòã샳 ç²±c‡åÌ rÜå$¤X~>Çõw[±^}H-°]°É|ÓþCûaW@Š`©»êê[´¯ Šâ)vÓbLÖѹoÁ¾NŒ¾µÁZ»u³ç ÷ÞÕ·k«€V=:OÙ?eÛŠmV‹¬ÜWxÙgÇ Rq–濪wz8@»jÆtðú«º:(!¤–zÒ½¸²ÀkìæmjFÞkå ¤–z;xè&x­ñó¤( R2³!I(jgDжcHQÙEâ­À´Ôiiw¿îmÛNqŸ²×zŸPäR(*µH»ß¯A¦îvÃ=–·`huum1ÃdÌn7k²@*m÷®„±rýnyûjï&ïA7o00H¡`8Íá`$‚”_Ì«ö‡éú>,ñ¾ËãÀ¦cbÑXç±~-˜-´|µF¹Žä´Ít$6‰Rbl¼ &æ¦;mv-uX¦c7m Ã@%ºRç.3÷Ìܬ»ÙX×8#ì5 ¨¼­[¸0ößtV//%¤ˆWVè‚‘·Ú€«û¿õž˜bbO”».½ªQ—wÿ¨9"ËÈŽº Eè&± ³Í`ï!;lwŠ:]¡@ ¨…þÒ©Óý~ýʦL¯`”*²ótœä¹²5£Ëw ..+699¹ˆ”‘âàò€á'ê‚u¼P¤(ê`¤PÔ©74m8ÆA7Äã'ë`ëùA 48jlµ©ASwïö ñ…œlNQj¥Û™ËF­8¼r°íàV­Ûøõïx³lÌÉ•Ë$ÍHñ peq÷=¶~¯>“ãèìj4û•’v‚m}¹íæÛJ…ÆŽ¤¤æ`¤D ¯Ì<5 æ±³ç”sAÊÀfÏhÏÑ­™mFyŽÒ·1¡¤y9;ÓÕ-Z´¼6^¯§ë¥ßÕoø÷Ê-Ýt&ØY»4™ ‚©Äåc^(×%ÆßöÕ9~Ä‹(°X}C«õ¿4Ú§.cò­<1HIÓ†0H‰§&9E¾y³‹mWAqÚ×U{al57hž:G½GìX[бjON@Ê"í‘¶6An>‹ýô{ùNïåܲ£u[ïÑC=7êz;z6H9Ÿè×îɼƒ®€¨v§¦L,âsÜw^M¥z÷ RRs0 R"3§°ƒy`tÑ鯵VGÕÏ%ï1a¿õñJaA &,½¬ÆûÍlÁTná9RÓÚx…בF_ùÁ€ÔUIG\\MóFµû«Ïº`??_³RV/æàx:&Îïþ±ËÂH_ RÒ³! Râ©IHQÅ·oŠrÏ;÷€çñ‚Ã#ÄsEЊΜÎùAó­ƒ­EZµ'— •™ðþWuuÞ9Rù[6¿é¬nO?2“¾Q‹>êLåïèZªÓǸè{{ †*Xr2M­þzäZÿú¯ð0Ha’™ ‰DQá§:Z0Ù¹E?:]qvcŒSkf›qãNI‚P¤„†½§Ã¿…ÊLÕ¶¾Ú-¬ö µðÑsô$¾òs™À4¯å2“ãîp·ŸŽ øj/pïðçFùø1¬¼V”îV_î¶ó®’ÖYko RR³! Râ©IBQ¥µwzØ;eŸ!Þ )V{oð¾áœÊlå©A:Á«ö¤ÒêVíYrz¤]·jï‘v°J¸lÄ`ú2M&2wôï÷=³Í÷^C;;mžíä¾ÏË¿T¹ÏKÆe&=Žó¬> åhœ6BKQ \fÿܵ‡AJ6OQGOQ·dzgå7(/©ºh‘g¥ÖyjÄz›=’#)ÈpöpYí»F©®Îè§a»_ÅØwºµ÷a½Â6¥€ŸŠ*lSBìó)_ëBm•ç‹Í ¿€ý£ß«ÏŠñ®/÷6)SW­9èAJj6„AJ<5±)êBí^ö!¶Y§¸%M”{ˆÇü íÙíûrún Öe„øÃ$® ¤êž#E÷Í2Ø]÷)AÏ‘rgz¬gnî0ôV%ßÁ?Ø­ïeå2Ï‘A@•ËžHà`€ŸŠFì7©¬Áí¹ŽKQõY¨ýgÕ[>µË×Þ²n²¹Ælžl.E¤ªjþ&Ñ5 Õ ERÊO'Ÿƒ×ÔsÅZÖ,‡”쟜aöŽì36n\ôù£ipäd2O‘RžžÇáÇ+¹jBñ¨‘ R¡a¥ ]<\Wû®îÈìØË¿ÿhC€Só7Ö=‘Ùq~"_Šâ‚Tdøñ¬ ¿ŒÝRÿž„ åç—>äªÁ€TÁÉg$‚ä%iC„š”AJnL(0•”½m\xé^mÇPËŒ"ÞÂÆ e|dbÐDe¶òŒ ™öÁDal\‰ Åð/ ¤¼½³I©@æI‘@JhDÅ\â}ëÅôÖeéchÉj­ÆÐVw^ÛÒÄ©¯}ûÎ"à]ö?Åñ¥(¤~ç}©ò؇úo÷.®éܲn–§Æð†v΢<þ@†J`@*·ð ‰ Õ&HAú ¹Õ kФ&¤@ìÒ’î¶³„,Þòå¹?›Û5¢«ï):ßU{‰D‚¿9€©)’ ‘ Rª9{¸¬ð[ÑžÙ~¸ÿˆ!Åú3ë~6‹=>³ÉU{>6å:ýÞŒÝúu"Ãj¾$_íÁç™HWƒ)ÕÄ)ÈK Ò†ˆ:R)¹q0¡ Õ¸Nåý»ýç4®I0;„s øà@ÎÀöìö+‚Vø†ø5 $A >qRðY+‚ÏZA‚TSÕ¼™>ÛY;F³Æ´a·é8x2ÃUofp°èÙÎ.|ž·IÌ‘:•J¤çHÉðO H ¨&H5‡ƒ‰R5·>§}ý•>¡X'´"© CMB©s–£Ç>ö´ŠÙôm^Ô…êòù&B;èen;[yž¹³Ã?‡Û<¡y)¡ÑÅ%‰«æá‘%áÈCMñªÁ䥄‚TpÈi® ß¼ŽžN3é³”™í7®Ô¥ON*û®Ã©&ãÌ¥²þ¶ñ›BŽqK"‹£D7&±4¹qî g¤d•‘â†Ýöà¸.éÃ\'t`u݂ܳ/KÕýòob¼íįúo÷ÌWÝÔ¬{.ðŸZ£ ,<üDyüLøš"©áŒ”";˜H©«îu‹4HÈá[Ó:!«§GONÏýÁûQ $œ‘"7#ÅÄ©}N:~Ó”üÛMÙ£ã?4 zQ oj g¤(Ÿ‘"€‰þ©)(’šŠ*®,ç±À/ýBýÛóUt3õ:…u²+p¸P]Î÷K@Bbøg“RÎΉðã•\5¡xnMÈ©àSBëpWíí Ø×‰ÕiœÍÔ\Õü°ýá ¿Úcø…Eœ#ñœ^^éðèC® Hž~L"HA^b6D¨I¤äÆÁ„‚ÔÅÊ߸5Â#jÇÑëÄ×$NÓ#dˆ~°„úš—º@"Hùød’RnnÉ$‚q‚\ŠŒ:/´諾#nv Í6i¹õèo×ßq¶£ÏaߺßÚëVÿ[{ݺeïþ+{ð %Ã?%0 •_ôDjëöøDiUùL¿`¼M(MÒŽÖÖI˜–[ÞpÕž¨ ðD?^ÉUƒ„$A 2Ò¾>GÊá1=pzû€öÞc¼yY ?Ù\B‚ ¼jO ¹Fïúãc¼btc²îÿ·<ûvÞä”)½czû•3RÓþ†!$È€O5‘Rð|¶‰D‚ŒÆ©¦^›zzôbÕ-à~FpY %’ù“«R RÍá`¤Æ…êKK˜ñã<"ŠÁ_—êr£œCB;XçÛ–ŽA )"â ÿA5µÍk6‡Å …AJÎ †¢n¸¨ì¢ï)ºZ¨Ú¾ûùΈ E!"b›á¤^δëšßã,…AJ 6„AJ<5ÁuçÙ£éŒøå!©w_<&J’®¥ Ž2!yRÞ¢•1H!ROºu#Œ«¶Ó׌Twœ‘ %kÁÆ e–ÕÝ–s¼´x{ÖN0Ðsá0…AŠ õ¼G÷¼´c#iœ©_lèy¤0HQÚÁSÔ¬€„Eœd‚¢jžÞܘ»¹Kd—À vSëû0H¡ Rñ[·ü˻ܘF‹ÓÝŠA ƒ”ìmˆ—„R²µ¬Y‘§›06n\^y4•쀷ÑWv‹ê¾.gÃÕ'7šú'¤)‚¥žtïö©eKð¯ 5Óƒ”t ƒT]xgå«[2²ÙÃ4¶eí(­*‰¢0H¡RÏ{ô øédÿ/ õ¬gO R¤(í`|‘èî‹Ç‹8ɳî<{È ð (ÀR‚¿Ä …>H‰¤¤à`¤.±s‹:Z0õRLÔBÕ¸?ù‚AJ°å@*m÷®‰ñTýݤ0HQÚÁøRÔòÔéŒx@QQWb»DvÙ”»ùÚÓ›B§¥c iþäªa¢¼ Š.:ÝÁ<`NÜÚ‘=S.¤‹GQ¤Ð)‚¥žõìùg«Và5M¯Úà EykC÷_>Y–6…wõñÝ]…ú]£ºÅÕ$Â<"ƒ)xó'W ƒåmèØÙs-éÃ"§Ž::ºàÒI±) ƒ%@J¼À % %žZŠZ‘1Á'¶àvñˆ„‘sÒªz|’¢0Ha‚7rÕä¤Ò¾þꞢEhÂÛŽ–>šìa3#u¥~’y{pà 1xÙýH²ÉüP£©iÿ.ô<9ðH¢áÑ8Õ ÎÛú¥¦ý#óVáÀ!vPËÁ(–‘*8s’”8–Ÿ¯nëÔŠ¡2ÊzYir9D5ÒGtAÒÕäã~Nq2RUׯ@Mß@ŸˆaûmÕ 8V¥«®<´’[(sÒGtAì`ü+SˆH¡¨ô‚nÎf­Y§žF Ea’W5Ò± ñ R’€ÔÈý6jÆ–ê>û¹õÛ¶o›…AJ^ÕHÄÆ¿2µlHrŠ:~²°·»q+¶Šm ²( ƒ”¼ª‘.ˆmˆo`¤Fï·V5ß§ìßvü‘ñâ!)9V#];ÿÊÔ²! )*çTQï-Y*Þ9ô4²gL“;¼HT#]PqÔHÄ6Ä70H‰Rc÷Y)Û®kÐf¾Ù|I( ƒ”¼ª‘.ˆŒejÙ$•wºh0Ý %«}@. ¼Å …Õ¤/ˆmˆo`#¶ø_lå<½Cu­ÑZ ) ƒ”¼ª‘.ˆŒejÙ$ 5,@¯%³#'/œx‹A «I_ÛßÀ %j&¤¶ö¡åÕ]oŸžä…AJ^ÕHÄÆ¿2µlHlŠËÚÙ"P-87†[‚A «I_ÛßÀ %R%%¶dô™¶iמ]¤P)yU#];ÿÊÔ²!Hl:™Ÿ]íâtk¯A•«sQ~ÎÌàý?v 8É[ƒV“¾ ¶!¾AJ„\Ô±˜üµV§nMMû‡,ŠÂ %¯j¤ bã_™Z6CQ‚?tíòzÌ臫W‚×ðí[ú+{e…4¨†A «I_ÛßÀ ûÿ/°ãŽ,£ªÿ>G ƒV“Ž v0þ•©eC0¹(@QW­,ˆ·ë£­ÛÐۜٹ(?ƒV“¹ ¶!¾A & ’ߪg;o1Ha5é bã_™Z6$¤ª5’Øßçø]`;Ë?PRåêŒA «É\ÛßÀ %4ôS|¾g¶µÍ¥sK0Ha5é bã_Y ªªù›D‚T{R×wZ?\½ ì0Ùì¶þª†‰`”ÜÚk Hyz'¤€ äð"Q Re5xAE;t06”[ø„D‚¼`!mˆP“2HÉÐÁ„ÓÉ3¯Àëåʲ{Œ'¦‡ïú_®*ß›ê (Ê>Å[¤||sÈ)|Ч/¨h‡N>L‚ôr«½‡©R‹´×£GÅ„UóTsös% ë2Rnâd¤à³V£_&Õ k¢¬&«j5e¨cCª‰aC,¤ u¤ R2t0¡ êÜLMúÔ£ûÛ‰^mÙ^OìÔ"@éH.³qM<"¤š¿šþˆ~4Ã/¡º{÷hA”/j]Ým~ôš¡×Û·‘òÿ¢ÜYt0Ñ@ªæÖç´¯?w,ë„6B$µ÷Â@êD^-¨™ðþ~¯^=Ôyå5–æï»uuŽ”‹K·m0y)¡C‡WÐÃ#KÂ(’šPA”ÕDT´C'؆ò‹r…ÞÕ µ!‘.X¡6Ä«&5’¹ƒ @¨ÓÅÏ {§Ù÷šU Qh”AoÍh•=©óåªr‘@ÊÃ#•Û6˜¼2—¡þˆýîƒÑâ—¡à @01¶´·qP‡CAc2$WC¶³ ë`ò–‘:úf˜u¿ÃëÚ½=êáê•¿Œ (ª4¬á’=œ‘¢–š¬ªAÖ”¡š|ÜÏáŒ7.X¤¾0žØ?œÉøŽÙÖâD(¹è¯()ÑAJ¤ÿTj#öyLfßtÀg¤Ô”¤ˆ‘è/jï!@*?³hêái?¹þT˜Ÿ]åæ\÷)7çÆ¹(x|M.H9;'B/Õ QVƒT´CcCஎD‚¼`!mˆP“2HÉÐÁ„‚Tí¾#/·l;QQ1mýUÍŽ×ñ(ybzX òðH!¤šÿ2ä~µçÛfŸÍämÛàQ½¨·-Ñwí`°ßÚ9vy …jgEV““ŸU{…¹§VíY5ÚmtÎé<¡‰+ù]µ'þ øMjÛ–ê»’8Ã~CüÐÁØd@ÚdàU{|…‚Ô½ÆÛ‰ã“âS:{t ù2»¼.#Å'#ˆs½ÍzúÓ Üþ·ßb)9‚ÿÙ¤©¶i»¹ú~³%z`w‰ ¿!~èäÃÁ䤊NZl°èíÕ'ýd EÉ3H‰›‡ß¤¯¶y»yǃ^mbj¨&6„AŠ—+Ëjµ»j¹©:3]‰’‡®N{öuŽÅAªnÛºípGC§z¤ r7)ªé-×wãÞÙ¡¾kÇViµtAì`ü+SˆøSÑ©“A+‚ÛÓÛGæÇ@R)I6©«ÕÍ0èµë‰3 à7Ä|Ø©o?8qº·S¿…ÞN_·joÂx@Q7Sñ]ß'¿ ¥·EO†\d¤x6œ‘â£&F}:}2mEzgïÎ.™nð%Ï %î øMºj_flÀ6ÄOM>lƒ¥…‡Ø Ùî³ãrUù]¦Ýs¤˜þsQr R›·›·û’¹ñQÞg3EŒ»aã£&Fy:½þÌ`»Á;wŠDQò RĆg¶!~èäÆ0H¸t¦r¬ùØÕ^k„f­ä¤¤#¨8j¤ bã_™Z6Ô†Îí,^¼wÉ´¨éùgŠ0H5Øð ƒæožìÕäÆ0HU_Ye°JÇkZŵj RÍ-¨8j¤ bã_™Z6ÄKBg3_bÞ'´ïñÓÙ¢R”¼ƒža@Ú†ø¡“RtºxÅbE?ßÏ])¤( Rbo»6m*µH‹;–>k֮͛%TœC×jòá`T©36çŽ=ÚžÓ!² Z Š’WÂ3 ° Qц¤*¯°qÔ²*NÀS”œ”å„Pƒ…NÜ·`ßr|˜$‚Mm¶K–¼h×îåðÙyƒÕtéòBE”H¨É·mB{$’š$v0)8%Aê´ÛÙ3]Îöäô4Ë´¢ä¤¤#¨8j¤ b⊠RÕWÒ~JïÈèV!EÉHÎ(lSBï¾Ø‚|·]›6Š š:•«öŸ«¨H˜—âÛ6¡=Iôæ¡£&F=:Å8SÖ±l!{Ñœ¸ŸÄ¦( RXM&‚؆ø†‚‚Ôå+§çžééÕóH¡½¨%g ¥û•6Ì'óeRšÇ˜9óš–V5PBŸ5KÙ¦Ú&¸G¢ª‰½ÉüÌ V“««J¡8îóþ¢j•…Gx×íøÔ·2oFfÂûR‹´«z^¥–陉dÞ|ƒpª4@’Mæ‡ZÌHùçôÔÚÉ–3—Dɾ1hDØŒŠ2Zùúi‰ Ö—ˆ‡ii¶[iKi®:4‘4omš_w£SkF %ú´À6`p‚ø!ð•ö>-»;©tuêÚǶÏ@˃ÍOÚ?i¡îÂÍ+7Í6rï800¾k|žJ^Ùweå´rQôÈ|AQjê?2?¼Ô j9Xóf¤î¿xBbd1?žQ:c¼Ü¸u@ëWì”lKC›ÓXLøpŸ—ì²'šûìƒÞ @°¢¦Zò¸žœø±{÷—Ãg¿ÖÝúnò¤O={Öf¦ÕÔÞ”$@ÛrŠòDÀÊœà#ÙÜ·`”4®Ö8€š‘ñ!ñq"÷sÈf¤žýúŠÄ‚{öî%âèÀ8½ÕzšÞZúû ¸…"éciyPK=ž!R„î9Qö]yôä‚Â6¥V ?‚¯ÞýÚ8ž½ý¹àá)Ï Ý¢mS&uë Ñi̱±K²—œÞëRît54ñVrÞƒ¢‹Ï*îŽøiò_µŸ?üöìÝ«;¿>xñÓ¤+ ŒK/ªÏ>-)|t:÷aaÂíäÀ+lû2Ç=gö­Î[;=}Æ „Áê[·ê§½8{‰añ!ÖÕ PùþoO€P+¿RÕ8Žzž}¡oÌ/hS²X/.éìy¾ÕP3³0'1°ƒIÁÁ(Rw+^ètÙ}†»†·ÆD«‰R”œ §Â6%Kñî“ RU—.Šºïê Ôzìåñ©W¯ë5Õ¤ƒ 'àAKñîcj &6¤h 5,Êsœ—’¿ÒfÃ-âQ”œTQÖÅïÊŽÍ+û€¢³/Hxʸ{Âðœñ¤ÔÉmCÛŒ¸±`³Û%Ï”;7~¾Ã—·ˆøùå³Ï}úüÌ!@ ÄÛ Öç~}_¿~A¼¼l…]²¼`³"wÕÐÄaJ!JÝ¢» Ÿ»ë„>ó,çluIН`?¶~꺨=Ñé.WbâU“£Hݽö¨²_UÁö¬'hyjINQrR\~r[˜Ü˜¢È©Z†ßïãÇ.Hx7qÂC‹tâò“ÿÚxŠÂ EQR( –Ø+±£ÝBóEbS”H™öX1þ–êÿþ¥Ñ>v웿þ€)Œ uïöãªáÕ×Ý`&ßjÐzí¾µ¤økr& 3 ¹ÓÌLiÖ;iö+h.3hch^ƒh¾=i õÖŒ–õ3 ”Ì0èá¤ÚÕ©k?›~-5:i_Ý ƒ-+¶šuÈa¼s SÒ‹2² ò0HñU“RâLàä©åõrï5Êq”$%? •™qvü¹33Φfñ¯› Ñptø•P•¥ÙËYW‚§„ÆÏ¯ž—Ze¼wuúýXU}–ÈHUݾZr£ìñ´1炜r¯¤Vg$U¦ÄV$°/»žs7.4Ù’­»8}ÉÄÄIýcú«…ujÔ²wtŸÙ)sväîr>ëW‘Xz³LhFÊkÕ‰‚6%³7F{&¥aj¬&6¤ U°ãE‘jÑT«©ZÞ] öîÁ âÔÂÓ熧¥g6þÈ'Íon̼¶Am'DN4Ž{ðëSIø‰7¸_í‘|çH•]©Œ-×?±gHìP••¹Éó=Oùœ¯¾>Ê»xq¦_lo» ðÂ3âµgz€1»ç[­ž¦¤dï`hƒÔã'—ç^½²²æþó'GÎÛÚ±s©Æá¥wñ»²h,È9RY—²Í ,ç%Ï× ×êÚaZÒtýì=^§}2.e]ª©4GªGÞ9RO<ÝàçHðJ¯Îò+aZ’¾tÈÑ¡mCÚÀ6cMâZ» ‡„ücMÏ‘*™¶>jŽwDbŽ)çB@êЧ%co¨Ô%ÆÿèÐ'g•¾1)lH@ª6àÞõË[ t•”¶n•¢ä¤ u‹Jz•¤'fñ¦O?œdÚ?L[=¤óƸÍáQ&›# R¼‘_qÒ2ßz\üx@T R1Ïrfydæw²dn9v®²B42Û}¢ 8Ø¿-{ßnŒçH¡à`ƒÔó'¡Hœ:}÷|ǰŽÌä[dQ”<“Î.l>idŽàU{€‚χnÉÚÚ+ª7À—%©Kí‹SË3D[µ—’ô±g—ÃfÕ­Ú›8PTmVº$¤N^;k—·9ië˜è±ÊAÊ]úÍ9úÓTC«­ì #'x¹Š¾"g¥t{³€ƒá‰ÙbƒÔõ9Ã&‡êî19¸›®Óåc»‘>1HÉÞ†ä¤î†Þ¯ìR™Æú]ÍOm–õlÉ)J@*÷pþõ ‘ßæB%e¥ìIܧÒE;l€Å1+@TBWíQ¤¸‘WQhšg>0ff¸æ®úñç³ÄuµápòN‰š‘2?¼—5£ç{ÕQÌädï`è‚ÔU½kÕ“/ß»ÿìë¤L³8g 1H5ˆÀ@Vþ°üœq¹Ì&똲̗Fk„khGkdï.=* í$|í^ÅÅR«ŒçfƒØ®×k0Ù<»(— ( ° *•`•YGg[¦['|ûR•–9È!Ø‘è«=CïÝ×Ôq1Ä %{’oº÷°R«òáù§«¢-z{ô!…¢¨R'\r/ª^Ì Ìæf¡&©«Œå”âÂgBº\€7â/$­M_¯Ò~zÒŒ}©ÞV¬ìÄÓ—D[µg´âNKõ,}S R2w0DAêÚ¡UëïÝ®£¨ ªPí£jŸ?À Õ8Žëœ(Ò. ôg5þț廖µ® »‹:[}MŒurY)’j°jDjÑyG÷§=N)HidÔ(ƒ”=á¹Qõ¼•0<±½YÀJÿèÔ¼\‘AÊH/SHŒwÏØ²Ï‘BÁ†ä¤î§=ªP¯|xòÉñÚœAšz·aü( °ñÖ.Ù±OXŸþaÚM®ì“/"âlu‰e¾uŸ¨>}¢úfïÕ° dd )ËÝóOO_åmhbyH?X§ÛGåacœ‘’½ƒ¡R×oUö«º{íQÝþÓ;]£ºÅ]Mû¤DʲÔ3]ϰ|8 ÊíXö:ìiÊlå‘ì‘X†þ¬@“Í‘©olTi›a77n~‡à=Ãzm;¶#6/>1'gŽwDg‹@ÛØd12R‡ìô×éþ^eý)ÙÛ¼‚ÔƒÜÇjàõÞëG}cû™Å#‹¢¨ R‘ÇK;_ȱÉû¡#'i…h™³àý"OA@Š;-y–3.~‚Zˆf{· :nÍ-›ž µ7tJߟ·‚ßÿ®58]×ÐÏ‘BÀÁÄ©ªš¿!m›Î—½å}{ÓÿNE×Ê»•‰·N.ÎZJìÀ”·w6‰ åéy~@ÀTƒ„©x½„µò —ÞB+–ÍöØvìvóÙ œY®0«ö¸Qtú%‰ uºø5Y EDVö½ì¢\Ÿã~ â¶ n76zœUºkbROÖx×ÐȬ"”¿¡ÑÞ%·ZvJÛn(9H‘;NDRƒ±¡ÜÂ'$ÚäåiC„š”A ÞÁ`hébžåO>©P¯¼ŸöìœÚ»"{eϓ͛ _¿<AJ¤±CH^^'$©ôĬ’^%ù{ 6íJÐW ê¸öèúĬd¡ª`@ª¼ê#‰ U^ý‘\*<õBp…ˆóÑS¦·fuje¿j©©­`< dž‚ü;˜L‚Ä4Hâ­v+ª¶¢sEmÉâ-1Ǽôþ%x‚ÏZÁ xú†¬ _M0EEÆ”´-=NÿÀ-±eÙ`Te«.c-÷fù4¨RðY+‚ÏZA‚oµôÂ,Ó4ó¡‘ÃT‚U—ůXÆñhgâ¯Ç‰Ë*È R‡·Í)šºÌmïÁŒ£wY“»~T°Ÿ„Œ¹ãD$5PM ‚¼ü!mˆ¨#e‚w0â[íáù§•Z•÷â‚ý‚û§Ô#Ô¯¾¸R0uàAJ¤±IHbƒTZzæ¹áÅE«OqÒC„>8àØu˜Å} Ÿµ‚)ø¬$HAVóNºÔÅ·ÏÿºØmØgn!H)ì`:˜h UsësÚ×_éŠuBAêBÅo\µ’²··“ïU¨UÜ)¸Ï­03m–ÙY ^äFnnÉ\5˜¼”à“íâ’ÄUóðÈ’|èˆ$(¤Â¬#JÛ•g;üN¨1£‹tØ:mÙm—³Vø²è|ÿ‰`H:uî·mE§_HRçJ_qÕ`òRBA*+û6W0+ûïGṑ’6ué¬>DÛë`O¦sÄc¤v¥Îû®%í_Z‹ý66I?$Ù)rljj‚m(¿è!WPè]PéòjC¼jR)QL0B]ºüŽ«Æ›—zTñ¬²KåÝÐû`ÿé¯/ÇëuÉçÙk¯qxz¦sÕ|}s%)1Æ’`6ru=Æôô<.2Heeœ™q„Q¢±Jª^œYjÚ×ßñ͸-!HU^ýƒÛ6˜¼”`HªªùøM "/%”Nž}Ê,<-$/EÒû mýº}ïÛsªÍî`ÄðÏæª2OJRØÁHq0©d¤žÝ8ìH<8›½¡âËwv÷Ÿ^3´ÿö@íy×.©WÜN½ÇŦè+q}búÞyö¤$#äRܱ8V?®nŽTÚçU¬ÕíØíf°gº±<°—`¢\FªAœ(Ì5O·ìÞW#¨§Šã®‡õ Å#˜oqFJìË_a3RkžWv«ª ¸G¼õªð pJ(HÉwFªhõ©‚Ñ…Ó#gtíî›FçâÎHñ)¦fS ÚÎc¬ž•aøêÕ´´>µl ^Á~ÎH¡ä`â€1Ñ@Šˆ'W¶ úH9…l¯zx±â·ÚÓ*´*oE×r+ß{ñxXÂpfEPƒ/…â‘›[2‰ åìœ? `ªA 6R,Ι®g’Öûæ,‹ÞAµÙÚGXvB'TÁ@Ò©sÏH©s¥¯Èž#u[p…ì¢<§L—A¡ÓZùwhi¿b¦±…aÓxäã›E"H‘;NDRƒ±!pWG¢ A^þ6D¨I¤à ¤.]~÷¢n>¯êSuÛý.ñ¶æÅMõõ‚û§¸È%<=ÓH)‘Æ !¹¸$‰Rù{ “‡'÷î=3zV|VÒ·2¯‘R•Wÿ ¤ªjHž#uòìS‘@Šˆƒ–‡º¹MiÅh6‰öÏwõËë#CßžDÂ&¡ƒIqÕ^ U[ö°¢kåMæÞÊ¡Hœ¤à7xj†äª5†¡@V‘vQÆÜL?c{Ž [e3k«?+f}|¶‰,‚H‚  ¶Îj}w¯¿h§â¸p£°Ô) %Ò™%W Ɔ Ò† CWí=¹ó¼zPõ-›;Ü’õyvÔçÍ]ABY %ÒX‚!$Ȥrlò&tàtØ‘° ›jÕž`""{x§1´Y†´ÚN_@ê‘–‰ %Ò8!WM>L¦ åà×qw`jûszË =®=¸÷µfíó½cúD_‰k<-]qAŠÉÌ— šiÛÝ}{„àïò¤Úl±EÍ»ßwŒN}mÖï36^¾ì¦æÇ-À+ØÇ …” ¡R¯k;LNØtåù—Ÿo;|›œ0<¡¶zä囯·¹Øt¢6W+ªËŸï+2Hpɵžmݑݑïc61HA‚Ô§–-ÿúžv²?1ã H Rè8˜ì@êÅ“{·W ¬ºbr™ÖÚ!7÷é—r— î““§ð]ß§° •17³H»h]àú¶ì¶XáJaAŠˆ…6+[Ñ5Õ]´*ºËŠƒ€g)Älj|Øê õ…œnì´ þH9‡îº^÷öé³——'\¹¡“·þ„䉾•Œ³© ¤²³ –h1µ˜éI( ƒÔ#--¸ÀeEì<ì‚3R9˜Ì@êÞýÇUc.×è_¯KAÝ>3Ø4–ý°®üÆÓZ­H­Œ›'0Hq#iý±‚žã&tcw³…˜…AŠ7 Üæ«vu£­ßN{Ðñ‹ =ÐÔÄ …Ž Q¤ž¾xyeúÕk›n<{ó­rÔµØq¿y®° •™µFwM_zßðŒH ) ƒTøêÕ @*lÍ Rè8˜Œ@êñãË3¯\]Wsÿù“;¯³ê3R9õ)ëâ#ó36õÄ)©Xý¸ä>É=zŽeóaù‰AQ R >¶hñ¶­¼-jü%¤Ð±!ª‚”£_‹tŸ>y>#ÎúÞzö”;åüÍsí¸1×ã¯ïSJ?ú×bƒÅÃ<†ÅfÆKNQ¤–zØE \Và5lÍjHŠÂ %“H=÷§s'|oW°¸¦jÖù^‰B†–W¦Wý©ÛÏîkEj¿™‹AŠ hÃÎ Õ@Õ•¬Uâ!)45ÜÏáŒR6DIª›;õªfåõËs«C¢#Z;ýü¥Ü§‚>9e ß%(HíÐݱäÀšáÎÃÿ³@ƒ”d E¸¬à ƒ”ÔL꿵÷üÉÕ-ת§\¾ÿøqãOÝ/zMKÑÔ< ¤Â¬#Ü'¸«ªìeí—„¢0H/_Ö¤‚V,Ç …Ž Q¤Þ¼º¶éÆ•éWŸ¾xùøAñÓ£¡ÏëÊï¾~¨Õ%ûnžâ€”þ–-þ³g'Œǘ=[ëÖÙú³‡Ù‰ËH$‹¢0HaBÜÁ¤ R5nTª¾w—EÝ}þ¨wLŸ„šc¤€ZKˆÉ|“ŽŒŽf, ) ƒÁR45Áµ^á) ƒ”tlˆŠ uCÿæå Wž>{ùèù¸ðÖŽ…õ)ëÛ%'–ò}>‚\‚”ݲe/Úµ«éÒ%ð`ðj´RiU¯¸ø7$R) Rˆ;˜TAêºõͪU÷®?âËIÌŠ Q‰£›¢(…©Œ£Ÿw¯ÙÝÅ»‹ËArŠÂ Å pmÀ#)©Ùò õ4&Áœ@;”cx»jÈ…Ää„.>ÇýîÔÍ‘º÷úQçˆÎ'œUÒß²PT°Žñv•ÞªN®kªf&~À …A FM>¬Aо¬<]ÉÅ üçÛ•Ý­|Ø' RŽAjû–í»õŒºytwa¹’BQ¤0H!nCȃÔâ–ÍêAÕOj3Ó¼¶°M)xûñË®_ü®2?`[ ÛålM¢/+÷;œü„å·¹ÄHæ IQ‰±Áš¶Gí ¤bÂB~ÑÔèåÔ¥ý'¢äìî]¿ijà %¶v0Ê9˜42Rë§Õ½‚ý¦®Æ¥aËf‡ÎzÑ"> Ä©úhû&æ&êîêN.Π¤Ô2ƒ”Øj؆(gCh‚Týä„‚¥¢–Ÿ¸ø]y°nFS´?æà€(J.A Äp§‰S·|4dе¹sŸ(*ÃʼnPCÙ%PVÃF9kF"lðÍÐ *¾,ÞžÓÁ%ÊUAªxÕʪY3ÁΆ…2CÅöȰJ®êya[ ÛålMíU79arnÙwå!›2@Ò!ýÅV4ú‰~èí}ƒ} •mX^£ÃB¯Æ %¶v0Ê9Xó®Ú#È €xûÞ Ó_Š{#ösÑ"> ÄÉHíÑ4`€‰¿û÷íçøí ë2RV¤ÄVÃ6D9B¤ýø,Ï,£•‡èä $ç87µ NщG ¤ ÙŒïTw…˜òõj Rb«a£œƒ5û).H5ƒDìULâøÓŸkvÒpí4ÄoQR¨»õ×Îñ)IÔ° QΆ)"#ELNøÏ|©ÿÆ´ðk£Ö ¦(9)Ÿ°ðÞCdzæ7åÕ¤ÄVÃF9“1HyFy©pTCb¤|Y¬nNCîkõp@ݪ½Ç´E%ØXj(_ê(«a¢œ ¡ RÜ9RÀÁ¢âËRì„à¶œ¶àUq@*(*RÍycGf¦¬ƒ”$jØÁ(ç`2©•a«`¦™Ë%HùsXÝ]7µФxßkP¼j%xå0ÀG¤$QÃ6D9B¤¸«ö€ƒW°ï³˜Ï4© Q›¦†ë¥(¹©ð˜¨‘N®-˜í£œx5)±Õ°ƒQÎÁd RšAZÖ‘¶Š R£­þÇlkÁ¶iü)IÔ° QΆÐ©´¯Ï‘"@ŠoÄ$Æ©uv<ê¢8 µÒ“£ì;baèÁ^AJl5ì`”s0Y‚”]”Cç Îá1‘ R‹\}`h­fmâû))IÔ° QΆ¨ RV±6½‚{ÁP”|€”a@h;û-Áó10HI¢†Œr&HUÕü 9 ƒÔ¼ÐyKÖ%$^%¤<=ßBrÕ`ø):¶¼êz¶rŸ>Œ5¦©j y" /u”ÕDu06WE¢ ÉpÔÁØPnámòD@Ú¡&e‚KBAJ'|šnŒ9‰ %ñ$Ô]‚ÃULéªl5ËH+¡^ R({v°¦Æ ¹jòá`â€ä¸ Ra1ªU·(wø”2Ì)„çeÒÕ`@ T;àØÆú@;V{OŽ—„ ÏË05QV©Œ ®&ª ÉpÔÁØ€jbØ䉀´!¢Ž”A ~, ©ð„HeŽrDÊsAJ†cI°ý2##5Ìü'²÷ ãÕ0 …²ç`»¦:˜h UsësÚ×_éŠu‚AÊ$Ò¬OÈ ®Z|â AÊÅ%‰«æá‘%áÉCM0BEÅÔfVÜ›æØ] 8{ó–`éD:(«‰1êÛPtìE®Zl\¥„6$óQ'؆ò‹r…ÞÕ µ!‘N„PâU“H‰:–ƒÔþX×Ñá µ¤äk‚”ÌÇRxTøvç€öF~ ¿4ó ÷hžûÞè¨av‘s}RT‚:%ßj×BA eÏÁ&ÍQ'&³ŒÔ¬ÐÙ«ÃÖp/9EÈH¹3™],"2¦O`Oš¸Â)±«áû9ÊÝÏQ4#5°ž„ØÌ…¦ôaÞÌ>ª‡évþLwާ2[Ùžã€AJ j؆(gC”©ñaô£ ä ¤Òþ ™aŨ[+s8 ¯»‡¥PTÝÜói¡Ó—„-Õ«1H‰­†Œr&š2E/|›œ¸Ÿ[eNïåÄtf±ê3R³¼™m逥ÍdϚƞIQ¤$TÃ6D9¢HE$F+q”Ø ÁrR\§5a†ªš0|Â"À¾t 2G¼b’šv0Ê9˜ @J£æå.o •ö/Ý?pŠV?GjŒk`{º®GE¹q<”ÙÊ.7 RÒQÃ6D9¢H™Äš (*EQ¤ÜCÃUL–ì/?¥·"lå´Ðébx5)±Õ°ƒQÎÁ¤ RžQ^í9Ä (ôAŠ‹A^,V3úR—âí\ö¼©lxŠÂ %¡¶!ÊÙµ@jAÄÂ5‘ëä¤X‘‘]-üu}ƒ Ë ‰÷½ŽQΤ¤©†Œr&mÚ¾}BÈD9)›¥mU÷Ȩ/PÅñiËnëÀq %55lC”³!jTàžöGå¤,'„,t"ÔÂc¢–nŽ>43…k¹‡"û÷Ï«1H‰­†Œr&m{‚%@*€Ã{¤î‘QÜgr.ç¬Ç/Ea’P ÛålˆB ÅNVâ(G%ÆÊHŠ*lS^ÚÖm1mJ< ¹–;*dÔö𤤬†ŒrVWµ¹Øw_=¸+ù¶þSé}Y9Ó¼–ûVogÁô̄俈·©iƒþú$Uȼ8ˆ ® E™÷T¤H²I£/<fŸ4&|¡l-¹¬°Mé‘E§Eù˜Üà–‡§õ­Ì[ˆƒ2¿®§§"5 y3RÖ¶6 € ;ûí´ lKì‹iè‘5ïýœ•Ep¢ßÒ[ïÁ*㌈É} @ ¼¢|Ï„²¾Ÿ£Üý²)›#¶ €ƒ; FûŒ™ãñ÷­HìX2Ÿ\F+gl>Yûä7lÎYy|5o |€¶W”]e5ì`”s0©‚Ô*—ÕýýúËHé~e)»ÅgE…xóòÐÔdÏ RRVÃ6D9¢Hu è´Ói—<á`å´òÂ6¥iÌK\™0*¼2 ƒ”ôÕ°ƒQÎÁ¤ RS<§èxN“3Òýz?ç»±† nœR S«¹ƒ””Õ° QΆ¨R‡ìÛ0ÛX±‘âæÔHŠâ²Ô™;ç;†©Ý|\‹AJújØÁ(ç`R©¾ô¾k]ÖÉHñÞÏ%”qaè@¡áÖ=1( ƒ”„j؆(gCT©u.뀉‰GQh‚wÕp°:b^ Ûr옟±\Ÿ½Q<ŠÂ %¡v0Ê9˜TAJ‰©dhg$O Å{?(Š—¥zFõL¹’AJúj؆(gCT)/©^Så ¤¸RÜ“86¢*ƒ”LÔ°ƒQÎÁ¤Rûí´ l'6E¡ R¼÷s}E…n>v/'÷é'Ea’P Ûålˆ* Õþã×µrRïV´ i{ýÑm R2QÃF9“H­rYÕßO[Î@Š» ÅÍ9[ŠŒ1HÉD Ûålˆ* ¥ÄT2²?$÷ åYêýSÚ<±) ƒ”„jØÁ(ç`Ò©)žSu¬ÕŠÐʹ–AJ&j؆(gC”©ýu9u±)ŠB µ c!`) R²RÃF9“H ô´Üu¹"€TÊ•ô>1}Ŧ( Rªa¢œ Q¤V¹®Òö ÷ uûñ=ÕPÕ w/a’•v0Ê9˜ô@ª³¿ÆÇŠR{ öíÊ×Ç %+5lC”³!J€Ô¯©Ó<§Ë=He^;Ñ/¦Ÿ$…AJB5ì`”s0q@ªªæoÈÁ)+[ëX?˜1kŒGlÎAÊÓó8ü)$Q¤úÇj']NáKHçJ~%¤ O䥎²šH£ƆbãªH´!Y:HÊ-|B¢ AžH"Ô¤ Rðc‰¤ø X麪1±9gI):Á@6çŽlÌÙÜ!_øDBÙs°ƒñݰƒñU¤ Ç /Hí³ß¯¨Ò‘Rð¼L®¤Îß¾ ªzãá„DHÁó2LM”ÕDªcC‚«‰jC²u6$ š6y" mˆ¨#e‚K¼ ¥ ¾ÛQŸ/‘R2t0‚æ¤ýÄ( LHdÊžƒLìš è`¢TÍ­Ïi_¥O(Öñ‚Ô:çõ}è}€Q@`WÅž—|z\\’¸jYžlQÕ¸ åUêûSÚÜÆlt¾ì®à¹R!y)¡ %Ò‰:tPVcÔ ¶¡èØ‹\µØ¸J mH¶£N¨ å=ä ½«jC"¡6Ä«&5u,qAÊêH]NÝòˆ/2ó¹jlÎ AJæÐçΓûíÃ:”Þ-oÌF¥åo¸‚BóRBA eÏÁ&µQ'7&¥ŒÔ÷ŸÆxQ„ŒÔª¬ÕGÎÚ &$œ‘o8AVÃ÷s”»ŸC?#eวc@ǦðHn2R…·Nuê.”pFJ¼áY ;åL 9 ¸ 5Æ{ì\÷y|ñ( 0DrvN„?…$ªqAªkdW>8_öšD‚<Ce5‘FŒ EÇ^ цd5ê mÜÕ‘hC'Ò†5)ƒüXâ‚Ô×µýýúóÅ£@f‰ %CèãwÑ~ú„TZþ†DBÙs°ƒñݰƒñU“Òª=m?íÕ.«%Y²G‰U{gnïÖQÔ5zbƒ”HçBqÔ`l>Pu66r¶jo¦ç¬I^“$Y²G‰U{Ûóvš¶užØ %C—@Y ;åLJ ¥å¯µÍq»ÜƒT`{fÊ, R²UÃ6D9B¤FúŒ\è¾HîAjl⸘ê8 R²UÃF9“H)3•%ù¹bª€Ôμ݆E‡0HÉV Ûål}êCï»ÁeƒÜƒ”rˆråý+¤d«†Œr&2òþëV¶ÖrRãLJWDa’­¶!ÊÙú ÕÔ³ä ¤ÎÝ)шМ¢0HI¨†Œr&29¢¨*!E¡R7Ö‚û¹òÚ* R²UÃ6D9B¤Z±Z™Ú™Ê7HETEMNž‚AJæjØÁ(ç`R)‹ƒÝÝä¤NÝ<«¡)9Ea’P Ûålu:ä@JBŠB¤¬ÏÚnÍÕÅ %s5ì`”s0©€”î@ßrRAå¡:ÉÓ0HÉ\ Ûålu23WP—{ZŸ½Ñ¡Ø ƒ”ÌÕ°ƒQÎÁ¤Rv«Gy’{:|Òt[î R2WÃ6D9B¤¬v÷¡÷•{šxlRdU )™«a£œƒI¤Mòš$÷ µ,s…ëy R2WÃ6D9B¤Žlî;\îAª{T¢[§1HÉ\ ;åL* å2s–Ç,¹©Q £ãª1HÉ\ ÛålurX6Þ{¼|ƒÔÅï/¶ jyãÑ R2WÃF9««ÚÜAs›¸ç(G ÿ‘ €TÇ .¡ÉdÞ‚¸6!dÞS‘ É&¾8Í]c/ÛãÙÜq¢Ã µà®2oÁ!óëZqz*Rš7#ed|ÍsøÂ#‹ˆ}I" a².nQÜ:¸õ/ÿõÓ;É´ ¼¢|Ï„²¾Ÿ£Üý²©/æ:u†ã ùv°~!ãRÆÿúç{R¢ÎÁþ|²K ¬†Œr&òî¿Âf¥|ÛP’fÒq?’BQ¤$TÃ6D9B¤0D[ȧ‚Óí¦ŸzZ E i`„#X¯‰ÔÇß?(Í]¿Ž6Ÿ‹hjg¶_Ä Œð< fÙÌ:ñø)<¤A Cø)‘š ŽswõU)<¤A‚Ž`½%R–—¼™¶âËÂxÂ+°Ñ®:"eÛV¡Äš‹ÚÅçW Há! bˆp£H‰ØTPÅO忝­P¤ð F8‚õ–Hýô`3Á‡x¤$²Q;kÖQMM¡ÄÐpŸá×ßÜ‚"…‡4ˆ!Âa‡"õÝT0þ²-E¸§‚²¡²<"…‡4H0ÂŒ‘jiýmŸ?+J_O[ùuEŠ„ltbh[¸DG×`ˆ!*õúCˆašÿøúSZòãÆ²X—ª€+R< '”Ýà|Žpó9®H}D1$:Á¢V¬¸«¬Œlƒã…8Ð?Ë5?–Á)H°^u]z Á¸) b(‚©p)S;³žà~C ùù¡?„<¦uÅP§ý³LóciaO†tëÞ_ŠÊrèà9£Q‡CÙ¹×0Ä?G]—44³: 1„ò@ Ä’Æg‘B?–ÐL‰K° Ó“'#Ût‘úÓÒüsP@O†të–çHá™9`½4꺤 Áøñ'b”ü•„ò¾ÀŒ–FèO ³ÏA¼þ­”"Åѱ44B_xu]ÒÐ`e¡ÄÊ"úU{&*cbo"|‹\±¢•éŠTy1Wêq!R¤žÓ ÁG0(RÜ?º`èí_↓H•A‘`Äá0„s‘V‚ÑNN‘ANN Å |òáŧԤžÎ‘‚"Å·4H0ÂŒ"¥ê¥ªç¨/üzÿüSJ"ës¤ Hñ! bˆp‚"ÅÝÑç=ÄmË–—22`B80ªß/k‹zßTÏ£EA‘â1 Œpã‡HMvœ¼×eŸðch5ÀPçÅüY)Ó †‡!œ‹Ô1:NºBI0ð0‡Û)o/P±“bÇDA¶y)<%’ÇÞÝUÚ`xHƒ#Áø!RGŽŠ$ä"å®»éØˆ!<¤A C8©båâ!1C„\¤\Œ––-ƒÃC$áÆ‘ºÚÿjßø~B.RΖsŠ5 †ð1D8 á\¤ÎKœ‹(ä"å`¯–7 i`„#?Dª‰Ô$'açã Ì"eç6,k8ÄÒ †‡!œ‹ XÿøN>.Â,RÖR)Ò`xHƒ#Áø$RCbýL…Y¤(abÉb÷Ÿw@ < bˆp¿H Žlîg)Ì"E‰O|í§ë`Oƒ#Áø$Rc£Æ8 Ô"¡–§VÕ^ 1$ð4ˆ!Âaÿ"5:j´N ®p‹Ôœb‚;%`Oƒ#Áø$RsÂçl nn‘Z_¹!¦9bHàiC„ÃþEjfø¬MÔÍÂ-R{ªöú×A‚ < Œpã“H­¡®6_¸EÊ윅u­-ÄÀÓ †‡!ü‹ÔªÕ  ·H9\r>rÖLài`„#ŸDjoà¾ñ‘ã…[¤"›b6Û1$ð4ˆ!Âaÿ"¥´o|Ôá©ô›Ù‹K—@‚ < Œpã“H™ùYÈÇÊ ·HpiD–*ÄÀÓ †‡!ü‹”©¿9`B-RoȦÊB‚ < ŒpãF¤ZZÿC9 è"åêíÞ/¾xî®G‰I—1)*õúCˆaÀÐ×OeRe®?¹Å‚/WþÀC(Ê:žÓ8uh0”›ß‚!†5êPbètÍ3 1„ò@ Ä’Æg‘â€`_EÊÕǃF0÷îz”˜|C‘ Ás”2”j;®B‚ažÆÑ¨ƒ#Á¸)”ã†Q¤À3˜Ï™ùY0Õ# E ½/c›†`hQéâÌ[¹lù‚†Ðû2šžxN㨠±îÆ)†5êPbˆE7.0„ò@ ÄÒ‡Ï"ÅÁ¾Šx;ØÔßœ©a(R‚%Øê£kã®'A‚ažÆQ7H0ÂŒ3‘jmÿ·âë_éc«u]Dj|äø½ûÅ(.þ,=-1é"åï_LO >ÎãÁæ4 ÁÉ93« 6LÉríú;z ÛY[ qt Ø<§q1êXc(;·ž–›ƒG vÔ±ÅPõ¹'ô@¶³:¶âè@°ÅcßDŠc‚1ˆÔ„È {‚´Å(.‘`ì×¥ð<–‚Y×ÚÖ˜@‚A‚ñgÔ Áø·"µ0lÑŠ½"•~3{~É8ŸÃ<£np>G¸ù!V¤–†j‚î©ÂÖÒé…3 Á0Oã¨$áÆHC9 EjgÖ¤ÈÉÝõ(.¾C‘òó+B1L#‘#&R"HÖA¤81’•dûˆù¬C ¡<(‡žÓ8uh0”{ C jԡĘÕaˆ!”%†4>‹c©=A{™^¸—pC‘Á:EªíùCÉ©;?ßï M`Ü¥q4ê ÁG0>]µžÍüÌñvázÏEy1LC0jvÑœ";ùèúæìqÃ#†8:¢“†Cè Ï£%†PJ ¡,!»jŽÂ-Ræ5F³B×m©ûé!· ‚â1 bˆp"„H’Œ“´òµN‘úJ0« 6Ú9àTP€i`„#ÿD ÔˆèºzÂ-Ry‚ûE*}Ê=ƒ †xLƒ"†ˆ"Rã¢Æiín‘*¿“'£§‚Lƒ#Áø*RsÃæ®¥®j‘z”–ß7iHuÇ(R‚Jƒ"†ˆ"R=o.L"u»±â‡XùØ6H0¥A‚Ž`|©-Á[§GLb‘êè¨[â”>óèçËnC‚Jƒ"†ˆ"RÚA{ÇEj‘z”ž ¾ÓùŠ'$˜ Ò ÁG0¾Š”©Ÿ/ç›ãy@tbèéåª,ÙKa-9sŠçB * bˆp"ŠHÙù:ŠÅtóöV‘B¦‚Z—Ò”,„T$áÆW‘r÷ò”ˆ“´ö±N‘z~ÏÎ/né…ŽûÏɧ¾ô°bH iC„ÃQD ÔÐ¥ÃG„T¤¾L/üÜ!›*Ûðø$˜@Ò ÁG0¾Š¨I‘“´‚´„S¤8¢sFߦÖbH iC„ÃDj^ØüU!«…S¤¾N;^þ¼ëä7¾Ýƒã% Œpã·H­¥®ÓÓz‘ª¼rTö¨‡/ŸB ñ? bˆp"Huž&5^8EŠA¹· §Lƒ"%4H0ÂŒß"eèo¤£(ô"j|î„â»åCüOƒ"†$Rö¾N\Ÿ&…ç±Ô…`/ž(e*WÿxŒÿi`„#­koÀ}»¬â_‰DÙì²_øðßåCEnkŠsìCàlGnùòfå†-ÎØ#ð=„ÅXÈgCJààåÁ‡÷ÂH0P£Sg× ö׋ýñê$cíÌvÜšm#ðƒÅXÿ\‹Î;åhzwE*¿¸À²ÔôÔÖ¹6Œ-(«fm²Ñ·F¼< Q)…`<§eg‚ŠÉŠ—L” ÏŠD^rT`ßÀ3žçLxNƒó9ÂÍçp»"UT^  Ù@jsÖ–Ý9ÚŒ-( ‡cÉy~*À—^çŠTf^N˜uQè¦J°AÛΉ”J”JÎKC^rT`ßÀ3ž)ç4H0ÂL"u ëàÊŒUÂ!Rz_]j¯f£E!µ*uõæÔ-P¤øœ1D8 K¤¼‹|G§Œ‘bœ ‹Ûà™îC³RfÎ4€"Åç4H0ÂL"Z¦¤ 4"Ž “IMÉ «ºøof€t¢tBv2)~¦A Cø)mçÎ?èK‰^•YRP^,$XšÜùÓjD,‰µ<£„ˆ"¥÷ýTÑ¢@ÙfÙLEŠÏi`„#˜D ÔÐä¡ÁTá)CéË®7öiJÛz¬‹ÍJž½7m?)~¦A Cø)ÚFiþÇ R`[3c™Až!ØÈÉIe-gM\‘Òû:L[tª‹eäe«$©8d9A‘âg$áÆ'‘Úíôe>·2­´¬ËX¯µ·ó§Aa´ùܲÔ"Š}a¤%î­.•¹é8£yfzJÄé¢)^Ò †‡!‰”U¾Í¬ôÙE%ù»\£$ält"°H1N3¶ï¢DF™&“S&C‘âg$áÆÇ©Âœõ_DÊ)ÏE-e"ØÈÌHi%gET‘¢Ÿª‰¨OÂþŠ«¯•e´¢É3÷¥€"Å·4ˆ!Âaˆp"•Y–-‘(á>"8/½¤`3aEŠq*˜¼ï(p©¬Í'•(=/sH’¢k¶)¾¥A‚Ž`‚©¬¢€¡äü„.Ñóc³Ö;FT¤ÓÊ *¨“¯«8TI·"L/N¥ Hñ’1D8 N¤@MMVW0 *í)Æ© PŸÄƒ´©àQÓJF+ÒË84-e:)¾¥A‚Ž`‚)PsÒæìŽÔ”R»IˆD TNhþU…ºÊƒß¾ã[²pkê6(RüIƒ"†(R%ÚÑûIÔig,|©ñ E…D)Æ4Ä BŠêäë+ ¾}Ç—š—1$iˆS¶+)þ¤A‚Ž`)£Ô#’Ó ó‹„M¤@eGä]Qºz|÷ ä%5+L*Q:4+ŠÒ †‡!ŠÔ—o÷ÒK3 ½"ŘF× üˆÂº!uÇuNÐ[L2ÍÆ$ÍȈ"Ň4H0ÂLP"UàBŠH²ñÿ6Ÿ‹ËÏ‘¢¹TtîåaWNnýrO„Í©[¦,‚"Ň4ˆ!Âaÿ"åäýmå‰d•àPBkŸŸ±À0ÏXøD T^TáU¥«'´«è—ïNcšiEŠi`„#7"ÕÒúÊÁbE Ô¼´ù†9F%¥ ®HQ©'ÐBlÓºûPV\Î¥‘—«ÖŸNËÊŒÏN”O”wÏMÃP¤P”u<§q4êÐ`(7¿C pÔ¡ÁÐéšgbå@‰!$Ï"…~,}·"Õ­ì '§©—V´±U(ô"%À±ÔE†rã ® »Rµý4òÒ)ËeHÒœ¢ëŠž™ ÖÓ8Á6M8ÆH¡7Œ"åàÅ8Ÿ‹·+ µ[åZOMZQöC‘Bï˘§1U¢ÌÄœ‹ã.^q¸9ÃJ%y|bv V"…Þ—ÑôÄsGÝÐ`ˆu7N1$ÀQ‡C,ºq!”%†>|)ôc‰µHå•J'É$—þ„¡H p,u÷¡œÄüË£.ŸÞp&3—ör^ê|­lg E ÏÌ㺧Œ3‘jmÿ·âë_éc«u]W¤ºU^I£d¢\FÙKг¤ì"åï_Lß·ààã<l.Òz²¢ŒäìÚ‰Ïi6U”ýߢŒÝZÙNE·y)ŽÛ¡ƒç4.Fk eç6ÐÓróoðˆ!:Öª>÷„ÈvVÇC¶bLã›Hq:–X‹TiùµYFrýAÏÒŠû<Š”ÀÇS%ÊIÉ¿4îÒ™Ug Šn¤•=“MSr·°ø"…gæ@‚ñsÔ Áø´"Õ“-I_j˜ÃV¡ˆ»"õÅ¥R³ÏO½pv~Mfñ ™D÷L/¸"ÅÅpBÙ Îç7ŸÃçŠT䶦(‡ ºHíð-Ç»¸‘Q rò¸Ârö'HqE ©ì´¼‹/ž]Z“•“p­–<‘íYçlEª7(ç4ŽºA‚Ž`܈1”‚­H9æ9MQÇP¤üüŠÐBlÓX»QzzÖ¹Yç/Ìi2I5SJRŽÏNâ]¤P”CÏi:4Êν†!†8êÐ`Ìê0ÄÊCHŸE å[ˆs쨯þž‘íîz46u²K¡V"%À±ÄBŒ²3ò.L«­Yp.¿ ilò8 =LD ÏÌëiœ`›&ëÅ«öÀ|.Ò®”.R`;|ó±®ßî I„•H¡`žÆö̧ôŒ¬³ókÎO½°8iÉÒMxÕ^/¥¡ÁúÂù¨Cƒ!”…C(K8®ÚCü ¬'‹e’g6']+‘âèèc›ÆÚ²2sÏϾ*8#D:Q&('^µ×Ki`„#X/Š2Ÿþ0ž‘íîz´;kÏêŒ5¢ R4—Ê̪^r¶jÚ©¡ CMÓÍ¡HõFÄá0„[‘ö¶ãX#©ÉgkeOz”S–/•$W’(Ü"Es©ìÜšç.L«ÕO=4:yLZ^&©ÞHƒ#Áz÷>Rˆ?!ó9¦*®0A*Q*£(KDŠVY™§WœI^œ,“ ã—E bˆ—4áÀnE Y‘òØ\qV¼ÎǺGCÚ˜µy{öN¡)šKåäœ]ZS;±vzÒŒ-é[¡HõF$áÖë7äü2ŸÛ\ÁÂæ¤Í1Ê1‘êt©ªõ§6;+'(Çf%@‘Â6 bˆp§HÑÏ‘deZ\*І¹!E–ÄÈ&Éå• ½HÑ*7ç̪³•Ó*åä­³l¡HA‚ñ’&ãÇŠ”û¦Îù¥¸'C²Ïu—2N„Dª³Nn­ÚyXkVܬÔì (R¦A Cø)úU{H1Ê7Ò,Í(.f*IÓÓf˜ä™‰„HuºÔé g%È&Ȇä„C‘Â6 ŒpãÇ9RÀLòKY—05¤¼â…$¶§œã|@p*R4aÒ>:Ûaöæ˜-P¤0Lƒ"†ð)R_ï#E¯­¡iÜã²K™ÜìÀ£ÐK%Y…õ}p>–8©ÎªÚ~š²2*aTrn) Ó ÁG0~\µ‡”®AžÉ²ÒŒBæw0ߟu`qúQ)Pz…c½ÆêE‚"…UÄá0D‘*,/]âŸ4Ç'± Œ‰'O`o+:"ê„vÕ:“usãæu¹³)^Ò ÁG0~üÑâ¯ËN…‹ýg{'ä1‘¤Ô¢4©D©èÂXQ)P©ÆiJJaä¬Ôä³Vä†}ÚõÎG3S“ñüQÇsÄá0D‘•WZ2Ó;ay`ra·Ù8ŽN#R"Es&Ý£sìçlÙE «4H0ÂŒ"*»¨@Ý#nu`SOÚ”¹”ЍJÔ Péòyƒž©«·®]ózúªwC‡~¾ÑˆÛ:žÓ †‡!‰¨ìÒ’ñîqÛÂÒº­W•ŒHQu)t)‘•kœ?ÜoøáHƒÜŒ´s6Vû÷©`NFž)ç4H0ÂŒ¯"*£ `œ[¬vxj÷EÆJ$J¦¥‰ He¥&×L<„*åàŠ|µWkløãÇ}üôŸu<§A CÄ)P)EÅ*Î1‡c3»´[ä“ÕÓÔEM¤@%P¨²Ùš²Ï§L¹»n-˜ þ§‚ܦA‚Ž`´®|®ÌâO*NV‰÷ºÿhy¦Ž^.•ÿ»$ðºæTþfÚŠPïSƒBä©'FÐ&vß7a*ä³! %ðwÊÑðòÔL-|¯àÚ…c¥ÿ(%õ+º Ø_>ÿëXáÇk‡ ¡J{†— -Í”¬*ã}ø¾ S üs-:èÝ©çoß0­«•ܒНßîÒ~æá¹¡™Cÿúœé¿&Ø=*ðäé§'O:ûu$"¤uÓrS’n­^U·{Øà½Àîµv´aU íÅ»_°*öãÓGXH ¥öTà³Áâ§L Wã¤{špÌçp»"õúÃ[UÛñp°KBé­»Œñw’ç”j0í-É–Xæcéè•+ï*+î1”§Êï×ÝÒ2s³_¨O>gc6x/øèÅS¬ ¤½ûçVÒžýú «i¡‘á=øX±ø)Ó‚ãÁ#R Žß¹7Ô5ñÔݶ.í«*Wû7ŠšHE®XѪ¬ŒlÏ'ïê+³!æÐ³‰OY˜C‘‚"Å"M80DP‘uân›"àØýé-/ßÿª^8%ã^¶H‰TáܹgÔÕÁ†Þ~=0ÔKËöswݺÆýû HA‘b‘&˜Hʨ¿tµã!c㩇g•³TþòT¤DÊðÀW22IK– /-ÓÏI…Kl–N…"EŠEšp`ˆ¸"*«éàØµÇOè-í%jùj/Þÿ":"½jÕ]d{¾˜ JïH0{¡>¹ÆÆŠ)iÂA0AЍ€ê«£¼So?û™±qݱ žõ>"%Ràá¶eËK™Veå3“'¿™¶âúøÁâáƒgÅ®ˆOI€"Eª§4áÀ¡E TØ…†1>i·^<£·,,_q3ZtDÊXGL“—.E^š¥Ÿ’Œ^+““ž E Š‹4á ˜€E ”yIõ,jNÇëô–šŸ.*f(>xóX¤D < ŒX¹²@C£Þ¥25>Ö<*¼oØÄ‘q“ÂS" Ha%Rù[g½”$ýÔ÷ý˜E•ÎP¤ð€!¢‹(ד'd>øåòòÔOÕó‡?}÷RDD <<¶mSÁ»**Õêê´ e&‹”]š°=#7 Š©žÒ„ƒ`‚©goßìH­X_òô·×ôÆ­'·;]u5‘bLCÈ:2®ÀòAñŠžÉ^P¤0©›‹·ç;{‡{[WÍþgô®x*)ÁcHD ”^^Õ’¨Âgï~E^n<¹Ù©ÞUtD <Œuu#W­*œ;LsÒS-ÂûFŒRO˜Ÿ’›E ŠÓ4á ˜àE Ôã_^-Ž,ÐÍ9Ao¹ô¤N!]¡íu‡ˆ‹(›È„^Äã¥t’t¡HaøÕ^„ÑÔOЫӂ H CÂ!R¯>¼ÕJ¯\ŸXúâßÀ˦—-òéƒo¼º-:"ETt^µÊ.!±?uö°„±‘9ÑP¤0©Âís^!kêc—w§B‘ÂÁp!R Ú^>ŸäŸá|ì½Eûô^³ZK(RˆKI89+ÄÓHœ™E ‘ v<3AæÅFÛPøÕ0$"êÙ»_—DêåU!/êœ7žÜ,Ê"Ê1!UÌo£t ‡,'(R¼‹Ô­¥ZEîþQþv§fIÿ3F;)Š”à †‘Õüø±Š{RÌÅFäeË‹Vùtù«O¡H!.%e:=véÄ!6É6P¤x©`×£s›½?!žlŽ HzðË«Y!9v•çÁöÓw/GçŽ)ú±T”E ”SBš„›¹T‚ÜÖ´mé¹™P¤0ùj/Útú'ŵ™¡P¤O0‰í4ó¶;ÇÓoÔé|Õuݱ P¤¾¹”MäŽhóA òK“49Zš‚"õM¤‚œŽÏR@iQP¤øƒ!a)P÷^½í“|®lç¶ŽÍ÷ó/EY¤—’rð ®–<1$;Н"ærVMæÅfÇøÕÆHµ´þ‡ChäéZó'Æ—À¢€K£Û?ýúL5[µ¸­½H…‡ŸÆP¤¨Ôèšn(™ŠÝ¥Ì#×$-œ0Ø*+Œ•?%'yÇŒ´ Q"úØçm«lnf©GµW~ÅP¤®zñîÍ“ö$i …ä°ëÔƒŸy©Ëõ¿ÿøø¶•7íí(ñÚ×p'R§¦z;û@aê54…R¤°'¥¡ÁÐéšgbåÇ%†4>‹z‚¡Ñ¦Æ–?»7^{üDÙ=)£á&Ø^w|½ë5”"U¡Hq4–ÐRHÈIîD q)iÛˆ• {¤¥¤ÌÈÍ*,¾ƒ¡H]møC‘º~ûlEêZÓGÌD*ÌãüÒQ¿ÍÑI ÃædsH0 ÆH¡Ô4”"Õ½[ÌÅF÷¤æÇ´Û¤ÞΘ”?ééo/QŠúU+4½}£ì‰¾[Oz„¸x¶J¶‘2Y=qJOô%$ÄO²Ž\–™œŸ|FÑ.;¢•a(R´>¿^,ö• ¨8þàͽƊéÎw~ã^¤¾u{tC×=‘k‘úƒDú½¤æåb RØŽŽÒÐ`ˆE7.0„òãCH>‹z‚¡©žºÑÿ€ rÖyý‹&4"…~Õ ó±„Ò¸©¯.i” –¬*¶ä>+ÊɈˆe÷e*¨uêî]vz„¡HuöùøËÓ¨ÔÚT0pïùg¿ò"R´n¯8ø SÁ„7Ÿs)R¡®'g+|X–—ŒÂ¢PŠ$ãL¤ZÛÿ­øúWúØj[‘j¾ùžvíúwëRn'.NòÏh{Iû£{‹Ê4³©àà zZxø)EÊß¿˜ž|œ÷¡ÃQ ‘B\JÚ6Ö7ãiiÅ?Gò¢¤åV&­ Mé¶:•” iˆTbBrõp÷²Ü6æbt¹þ }ßЬK±©æ[‘¨ò<‡u—^u¶¿ÊvšTñð"U×ø}÷hëR¼‰TJÚEzZZF=+RØŽ.ÒXc¨úÜz ÛY[ qôñg‹!Æ4¾‰§c­P7î|¦§5¶|îÞXp)`T¾MóÊæ—WüÇBŒBÃ*éi‘‘ì×¥0K¬Ý(  „H¥žàN¤è.å–\Ø%›¤¸5Û&­¨ŽiÏŒÌÔ)6QKc2r²ÀTp¨]^ÜCæbt­ùwú¾¡Y—b-R·îÿý%­ìVº‡tЉêg~ºub¦C Çƒ?¹©¦–÷ßþŸ®ùã³W÷ <“¹©Ë³•>,+8]JKËÈlàQ¤ Á0!W¤2/©^Yðø—W5jÒn½¼ÇZ¤DdEŠq] ¸Ø µ®H ž`܈1 EªùÖ¦íÈ:A ³ZËm'w ‘¤ààr EÊϯý€@Ó e [‘úº.ž‘—þ)‹“K%HmIÚ–Nûj/1~†MäÂݤ¤¨ÄÓ*Nùwî³Ð£Ëõo0©æÛ±©ºÆß0©”ÔZ E ÛqÂQ Y†BùñG‰!$Ï"…ž`hDêÆO¬;Ÿ«í“zæaL’‚Žk= ­ÄP¤8Kh Éß¿˜w‘¢»”{òy°íí«–¬6,i˜Y¦EŠ‹Oþu*hp­£ƒ¥]kþC‘º}ÿï7÷ö¸úØ´}îlù\_⣜Ñþ†k‘jºù‘B6RÓ/¡ù^¥HA‚ñH0|]µ×¥uš—T?üå騜Ѯ…ÇQJV"…þyškñèçKÑ[|“ý%-–LÔLÒt‹ö³‹qJî¼j¯ìå>·ø—ïò~ÉJ‘õ죷ãjƯöʹúj¯kq%R%‡^Œ>àl£´(”"ÅÑ‘Å6 †PJ ¡,Q¾j¯{ÙUžŸ’£“¢¦bA¶@©J¼‹Gc !¡|°©ïÖ¥:_ÚfÚI;"i9Ó Ñ©ŒÌÔÙ¶QK¢2â²³ÀTp˜sQ\Ç^.ÖãH¤@a+Rß ‘B_`| ®Eêù×uº¸XÜV6$YÕÀÌŠk—EM Ù´Q:AZ"dêä‹Ð¤„˜¤j%Ût·¬V¤0©¿ÖúJTœèøå>ídsÇÛ<œl΋H•>„¬„ƒÏ²Þ¥p>N„CB/R¯;ÿ€ÌT¯å0•¥^K¡H1u)P”LëÑÉ£•“”õ2ôc#åì<²;¯Ú+{©ãž°§é?Eê·gn¾Nß}µw‚‡¯ö H1M‚á]¤ž3ܨsUæ¡©¾S¡H¡q)PÑ)1["öŠEŒ"ÅÈ‘v¬«8v ‹â@¤Þ½yÜ”è'I¡ìýwƹ\»y”7‘ú1%2’ôe©?‚d›ÔJ¤^ŒÞE¤^ŒE ?‘zñÇoó|+ÇØY‹ÇŠïuØ Eª'—åœå2;e¶L¢´œÿšy1!qÙY`*¨l›ésŸ¯+Rï>7”ùI8ûüãcÚÉæn?ru²9&"Unxä…ª*mM]UlC‘ÂÁ RϿިÓ)ý¶d´äv›íP¤PºRÉ[²­äÓOÏŸawÎáÌsü©ï X”“óàî.ÅñŠ»sÒ»˜_¨_›ò€¨Úñ_Dê/11(RøÁ(ˆ¨’²‡SF¸ï5ÈÄÊŠ —œM]»²o¬)tB/3­Ó7îaaQˆÔ?ß< Oñ—¢Mö$–yÞ¼Š7‘ú9;&Ša*Xù•H•t™ ¢w)H0>Œ"õ¼óF²v‰ 6ÊEÊ1;EŠ#—7´&7¤iÛ%Ÿ&?%o*å¬uá’Û÷zO¤Ê»u)OïQ|)§0g½½õ.ë'zM_d+á¾™T£Fú8à †ž«Â)aHDD ‘)ƒ)ÁŠ3'Mb£JæB†«ø•ݦ_-M½7ξ'Ó´ÿ£²±bö!ìÆ’ DŠ…KJÍM7Ë´˜¾€kç‰]É7Òî?{À/‘ú®€E9» îîR¯H±,¦"õRuD×5uUU(Rø!aD ”Uâ=)rȘ€‰ê~êP¤8r© †[Üzp7¥1]§Jo\ÎxÀ¦MG7û_ <×Vß”D>M™±N6BV!XAÓ\SO_ÏÅÈ5Ô#¬ÄàÐÿ¯&‘Jކ"… ‰ŽH:L¶’µö—ŒTXë¾–ýÊ“™öéo"eº»jÊü䃆Öfu}–œäu³±$@‘bíR™w6¯{ØàyÅ{^É|™T™MÇ6G4F7?néU‘:~Æ»ûTÐÛg4ŸE*Ø7¤]Y¬ËšúßbbP¤ðC0"‰œoî"oå-%½Þa=)¦.5uÐ&•Þâj›©«ŸUÑÃ=¢ÎÝ­õ¾è»¡b“r† ª•e«ìÎ9¤5f^½ßÀ‹H]n̢δ·—Ï`û‹0ôäî©4Ke1ô—Å1õGòS®§»^tßsR{FÁL‰D ••ÅnKôwélMØ‘o•@ érÕÞsÕ‰‰ç´EŠ?)‘¥C¶è`+#Áön]EêÛzÕ‘ ‡—¿S˜ã¨ƒÙX¬H±v© †{D5ýtÿ.píÑu²©²Sò§šž3Ͼ•wçé}¡Y‘ vru>D9¼Ž²nŒ×ÉÉåV^Iç'|[S1®Háˆ`) @êžC$b$t-tY‰’¡öQ¹/ ã—¶Ó¿ <â¾væ]ézca£¤/i܉(`Q}ȈK‹’3ŽÏ=‰cÕ´^ ^ =pRgváéé¡Jš%ËŽœ6ò¾è—Ñ” ~z§ã>‘ºÜ˜×eGw)¦Õ“Hµ>n;ßv±àf±U¬¯Ñ‹ q{4K—)Ç3`h¼Ê¢¼Å{£÷¹š»¥ÎJ»8åÒmƒ;÷2ÛlÈôds^ bˆ5‘µ›l7ÀSK.b¨©U7Ib-R:Gå;É&¾¬pË Ç’ÀE q)0ÔwÈ ·x9åéäT0»Ùæƒç?•´–[œ'kÏ•L‘œ”?yß©! a§Úª|Îêú>¶"Õx«Œ:ÛÞA <ƒm¤ñdµwçHeê_=žt“þlgè]¥¿lõðtÇÙøºDëLÛ!›FŒ‹SóP[k³VÏVßÁË‘Znx¤Ëšz™±!)üŒx"elb2ÊÒWÞGS•ªÊ~ÝéˆÖ9©o"e°ãøä¹ñÚ‡,èb¾0ŽMÐ×4®EŠîRޤ!Õå«=”uæNMT]¬åYʶÊ@­Ó$ =F£p®fæ~Ãó&×¼#[bÒZ3‹ÚËN?ª¹úsã­W÷î¿yàAjjýÍ¢,¬Hž!Ó@;RõÏš/?­ýKÚ+rî$ÝN5ËOv¾èjrÖLûäÞ5k5ŠæŽÏ ®Ð?©ÿðÌásŠælªÜ¼%n¿ÙZ+2%0gDÑé•u×Çßh|ýæ–Û­¡÷Û:Ø^µE çA‘µìÐ7HcdðDVw–êaEŠlvè’îòR}1R)œˆ(`Q_ˆK‹ÏLEб€9UÜ=æyÅ{Ëñ­ãrÇ‹'‹OÌ›´íøv‡‹NqÍ ÇîWÝ|ÒŠR¤o•v™ Ò]Ši±)`N5õùIÏ=¬õHŒ±Zé h¨Uµ{~îB¥%±8± ¾V𮿠ãØ}MãE¤@‹êC‰°™YÙDjª®ô¿R¬Tœ4!Ég®õJë;lÔÛ¸Ìx™†•Æ$çI#|FÈËË„É Œí3 ŽvR$R}ãIb±$R¬Ä—ŠLŠR$EŒ …#…N"Qgç“ü5I>Hž»Hnú$gs’ƒÉÖçÛµ-µW³¨‘ÔtA¹áŽÃÝûU?þøíU{P¤ð!Ñ)P«)ö}#Fhx÷|g©ž¾Ú#[Vä”ßí?('6ÃHÑ]j“qbQ]¾ÚCS÷Ÿ=òÒfxÖxÝÑõ“óÕ¥R¤äÒäÔó§¬(_¹"SϦÎ>¨%$õ~FaG鉧§/¾¼zó·Ö‡ïŸ>þðÜ+tºÃTl{‡Mí?}xú Õðæzí‹+HùÏ¿[”x39´)Ü»ÞÏá²³Ù‹ƒÕºoZPºP-OM1C±oB_©péáácæY.ÜäºÃŒbîµÚ+qIbõþ³m~:÷ôÙ+6·?ຠÁø@0ZW"Vfñ§!îâ ò¡ÅM¬z5v ñ(èã·–ÒöÖ_ÆïD|äep[AmrƱ¦ÆÁ3ØæóÝÍM£Ë|ÎÝ}.™qŽ5âõ‘;¯ƒg°-ðß0þ ¡Qv€—‡ÀÕ<ÖþØÓ}cålóŽ2ïð=Á*ã’ðsd™¦ Áˆ-R ¢«ªûGŽÛ]vH5u{n~«¶®áʱ+û–P£êaâQ8)>ŠNæCLKÄE ÔŽ¶aq«¦´ðsd™¦ Á/R ìJòúÆò=þ}ûŶŠã?Ìo»Ü|­©ê¾ñâ?¿.ŒçoÓ5ÄÆ£ H gæCL Ѝ¦¶VÙè™ãR–µ>le‘âC è¤a Ƽ3±0ÔÓ¹PÛ3úÅÉæ^)ëñd©î_íUü#‰‚"%´i˜B 1-(RH]¼{}`ô˜õAK>O›úŸ„x~’šE ó@ÑIÃ<Œygbaˆ…ÍL8,;ìtã(R½(:i˜B 1-(RôªçCŠÓüvëÅž\ ŠLã $óÎÄ 1ª»Ñ4,zÝà8õK7ê¡Hõj è¤a1Ä´ HÑëóÔ)?!)“ŽNÿ"RŸ§M…"…çÝÃsæ`Ì; C¬Ýè|Ó5騋f}PWÿWB<·EGB‘ÂLá~E*4´ [‘¢RO ^¦¡ Äsú@QûÕ¡ÁÐéšgbå%†4>‹” ÆÖ¢.^ý­KK5‹æRg2¹©ÈÈjlE ~ ¹KC(j¿:á 7"…’/ØvûˆN¤ê\ÓÆON¡-Œ—Ús-RèW­PŽ~tCÙÏi‚ꆲ§ÓÐ`ˆE7.0„ò‹CH>‹” ÆV¤˜öÉðÉ”“®ŽãT¤Ð¯ZÁa¯¦ ªÊž`<Œ3‘jmÿ·âëŸ;f«ulw‚£´ìDª¦ö\êÝÄ™´«ö¦¨Ç12$ïl!§"XJß74ëRl‡Ž¿1=08ø8‘£4¶xNã4PÔ~u¬1T}î =í¬Ž-†8úÀ²ÅcßDJàc¡P—ëßÐÓº¯K8)†(ºT¹¡)Ûù”­’ÖdýºEÐÖ¥(;,}‡t¶K‘½ÖY’9)ø1ä.Ó@QûÕ Á„mEª{Ÿ«À!aCŠj»ÞôœµHÁ)\¥ ªÊžLŽù\‘b½"…T•ù©1cô+#C¦g‘BÊn:9ˆòÒ”ìªNvÝaI1¶´]E íGvч+R|LT7”=!Áx$7"D C¾ LûˆN¤jjîÚx£ÙÃÈshØÐ‚+ÅœŠT``)¶"åçW„rxa˜†2ÏièEíW‡C`V‡!†P~`QbIã³H `lEêòµ7=þ´£ý¢ÞåYž³Ö•nhypHÍ8ÚýGF–~â}\‰ür—†>PÔ~uÂA0a»jy56ûhûŽœr9^µÓˆy ¡,”BYðª=¦h®ÚcUí ZkÖÍ)ÐÈ)û•­HM±¤tk·YFJ¶5…Wí‰@æ`Ì; C\Ѝúæè 1òÑò¡ç#؈”¡ùKä ƒÐ‰FF_[7™x*ÐÃ%-ÜVB‘…4Ì!†˜)êÇöëëZôm M£m¿—C‘²^O–#;ëÁÛˆFæ`Ì; CÜ‹¨óÍYs³bܪ=Q¬HYL±¤ÒEê°‘ýD3‡MFÆú†šæ!ý,ì÷A‘4Ì!†˜)Ϊ­ý†f‹·NœxŒø*÷U¨EÊz 9„©EA‘Ö4Ì!Á˜w&†x©–æ†cÍeêe*ñÃÌNZp$RŒ=cï–.ZP¤D ó@ˆ!¦EŠãjm¿¢Þ¼”*)¯ nJ6e#R6+ÈTY²S‹‚"%¬i˜B‚1ïL, ñ(R4—*n>¥zj\ÂøuY&‡ s,R†f‹-B†˜š‚"%i˜B 1-(R\TeÞ¿UJ§ç%N𠮍k£÷ÕŠ(›Éá¤/w@°ÉÒÒÄÒKê[ (-(R"†y $óÎÄÂï"Es©¤æZ¥Úyq•B”˜àD¤LW™ÉšÙîíÖσó@ÑIÃ<bˆiA‘â¢@š­¡]õàê”ù)K=5%b$6¸ld{ãÍž Ïãó@ÑIÃ<Œygba‘¢¹Thsý› JFIn£lC'RfË̓iÕõDs(RB›†y ÄÓ‚"ÅH²3°?'w.~iü.‡ÝrQr'QŒ HÁ´^ „cÞ™XÂJ¤@5~]#S³‰¼ITQËa)QNÃ<Œy犯uOD«ìÿ.Í}pQóaEùÿLó’d’ óbÊ+þOð; …P€(;ÀËCà¿jüT¦^{cŸ¦Ì%×kÄëã; J'[iUö¦·ÿÓ°`a[Ä"ÁV¤°M{ðì1¨üÔ²àæmÃV°]Ý~aZÁôeeËë6#?EY -*6«i†FFV¾'%ئ™˜šbX8³Â1Ÿ)lÓÞ|ø½K•n»ÖHj²ÝrâDk;xùðíS£ &Š™CÃ[¢^xÛ½?½@ZqEVÒÜ==0,hlbŒU´ÃXH#S(XHsptÀ° Áø@0(R.uÿ§ËƒÎn¥ÉÓýŸ;Ìj,%(ÉAP¤zýxNƒ"E8 A‘â.­‹ U¥µÖHÔ§ÖՈׯÕÍŸ˜TSßñËë O/k”ÎÓ({þé%(RP¤xd¶iÂA0(R_ªÒ¯¹¡OÓi}šK•Ç5GNNRLPÙurOóO7¡HuýxNƒ"E8 A‘â.­»Egúv,µnkj…œSÜÁœ“gÛD´D+f5¼`ÒþÛ#(RP¤¸f¶iÂA0(Rßê˜Í¥J×ÐæsÀ¥n>¾«{Z_!]!äZøÏ~‚"Å8úñœEŠp‚"Å]£ eþbQt¯Ê:T6Z_¾p9qQÕ+e&5ÇÿÜY³‡äÓ»^óxúî%)¡){»iÖ…Ò‡b=ËÖÁŠÿ Eê»*Üzµ‘Ôd³éXaÃu¤¥¼õ˜zþ”…%‹Î¶_€"EýxNƒ"E8 A‘â.­§ïéº×«÷oó¯ßY›P:È)~W^êòò *Y*-Ñ/ÞÿEŠØ"å°ÌŠ2ØÆÎØÞÑÔÞF™b½ÚŠß Eê[•Ç5׈×'éׂç5:yýÒ½ŽŸ¿ñðAÛÏ].¹ J“§œ·¹÷ô)œ§A‘"† Hq—†^¤èÕòì™ÍÑóJnIS¢|&dÏ™¯–y/ŠqEÊÞ~œ•Õb»/RµÆŠ¢dë`EŠÏƒ"õEgúv˜_í†øbYÇØ=iG¯ß¼ô neÅê±9cÓndA‘Âs‡ªdhj1‰L¦-Œ“ÉSÍÌŒ HñCP¤¸KãB¤zþî·ô†›ËcŠd|,§Œ™Z0Û½° ŠEÊÁ~ù!«Ý£¬h7‘@±œOQ²¶·qpt4° P¢ÐeÝÏ/;¤!s°ŠÒ"‚A‘úRiº—‹¢{UšÎ%°Q×ÞfSzf¸GÒ´ÀÌÀScSÇåŽ_X²¨òîI(RøLãL¤ÌXRY˜01Ó1³P$“—B‘â?† Hq—ƵHÑ«áñ³Ò3Ò~‡ÆŒTLe•o[TQ EŠH"åà¸ÐúÀ²„9EAÛÚyE{¿½ƒ·"%dŽ ÅÑÙ'" ¹­vÌÁ(éKšp Šªjÿù§”K +¢ äãdU˜ŸqU̺óÄ®‹ê Há-3‘2E!Ï5ý"UšdŠ¢¹™ )>cŠwi¼‹RÏ~ÿÕ*ñÞ“~‘£¤ã•t²M *Š¡HC¤èßñ9:éÚ:KPvv´§Ø´ò9ÜÙ^Vxk09`!F‹R`Ì;‹2†Ð‹½.Ý¿o^xJÑ5aVhòêB]ÙT9Ó‹–Ç­P¤ð“ÆáŠÔ"=Ê.ÕÎ5ðd‹y4‘2415Ó¶ðB† ã|Â)îÒ°©7_Ï‘ Ï-œf×7|â€8ùÕÉ:ÙeùŒzTV˜ÅÉñ¦¾Þg§²¢(R¸)—eVÈßµ\b³ÏÞÁÁÖÁ{ˆUÈ\{g+Gg¿È‚(ÔɇaÅLrèiÂA0nDª¥õ? ©2 e GilµéʵwLÛï?}{¾nqDÞ ·@µÔ5r©ò:¹ÔØP¶†”•ÝŒ¡H…†ÂP¤¨ÔèG?ŸÓТ©ððÓ_·-5,÷n¦-ŒÞMv@ÑÞmfddæ2˜<ÍŒ|ØÌ͸uh0tºæ†BùC‰!$Ï"%4c«GM-r$RHå”–îŒ÷” ŸñCœ¤ZìZ¿ü(ÐXú^IéÕô…í›7½š>í½²2háQ¤“.a(Raá§0©Ð*lE**ê,†"wþë¶­‰B!‘)*»­ÝZùèü¾Oß.`M­ÂGœJV?Ìj6 Æ#Á˜ŠÔ»ŽÓS)”ÁYßv¾üëíó˜ô@p¨‚öÕ¾|‡’/ØvCÙ“£4¶"ŶOMëÝ#y'ä<ÜE,—^·)(–ÊÚ0)ô WhF?ú©ÿÓ8ê†òZ¼nZŽ”mÌL›ûŠ‘Ý´;ÛÑ,Œ ðW‡C,ºq!”1 }Ï“oŸð§qŸBQÌ}ô;Òk‘‚¡Ñ#.DŠ^NY1£"7ô‰•–š”·D®žbIïÖ@!¿WQîi] ¥H1ëæ½ÜY\ ŸåêIoÜïŒ4†N65e¡GŠúU+”"õµ›Ý ò^¦P¬¿þ”lJqS£„v —S뀱)æ¾åà1’²Âþ»ÆâÜ«2_MH°Þ$‘úý™{ãPWÛ¡_þÙ?×+ý¥ƒ«Î½úóiMî,ß¼rÚ_éc«ulw·µýߊ¯ó$²ä"…!Õ5½¥§õ´.E¯»OY'ÞWus@Û?NR3v}`lp7ÊȺJd».ÅÖ‚‚Êéi¡aU<Š”¿1=-8ø8ŸlÓ8 d+RÁÔ zÚ×u)Ê|2‚6‹Å–Û@‹¡™«<%hº9ÙÀÔ’õ¸Àu¬1T}î =í¬Ž-†8úˆÑ1Ô•'Hý]—â6"(ë#’†­H‰ÁXˆÑ;ŸéihÖ¥˜ŠR©ÅùºŽkÕÝÅûÆ ™KN(zVVÑÚ_M›zÅÙ‰;‘Н¦ï^Bb÷u)ïyÖa "…¬HQ¦’C˜ŠTpð7¢Y—b-I¥ô´“¼‹TXØ1z`ä—u)ûäP‘²›G W¤8¡ØøGä‰Yùô¬PQQUô´Ø¸ó¶^ólÝ m\öØ ìûÖÙÑÊÁ}·{¬¸©Å>ì˜ Ö`ÝDê¯ÆJªjjCy±¯ òÏþxéé缡ùSgŸOåñÎêÑùl>á(1ÄQ7”=9Jã}EªËU{ÎáÑs}<ú-ì'93jµO¬?£Å…‡Õ;U\Ú±ý˜‘Q\D8\‘â¨'ún®Hí5'# ãÊZdW1²ÇvZ£ùnsïÁ4» C³0.À_ÞçsÝxBÇP‘÷ð^Y‘%‚õöнnêëµoÞdœî§µf`Œä2çe®îw·líX¯Hq#R„Z‘¢t)sЧ<%`3¹³[qÇXJÈ2v‹RßV¤œvÙÉu®áIZ¬²wì¼!§ËÒ/gM…ª·nÓgs–'$ë"R.ªf”œúõ¯†’¯ÿìm»¶«¯Ýƒ:ûüÓXæ«[ûC¾IÄC¥±Õ£ú¦·‰R!11[ƒ¼¥©KúÄI ‹Ð0‰¶ùNŽ¿+(vçI !i؉”hŒ­ݸó‘ºâäøjÚ4°QZq';;âd5Ãu†BH?mëùA)Á\‹Tl\5†"\†¡H”`+R¡aÇz)SŠŸÅk"Re¯ç[…N±g#RQQ'í쵬¬•)”àl³P.l™ƒmšpì;‘òpÓ ‹ôxðÀ + ev¼E³è§Vbˆ£4.®ÚC#Rô² ¼­O´¼täÈäeÒ'õÐtFWç­âžÖ¥Ð/5a(Rè8Oãèª=C3§öÚ¦f†¦äÍýÉÞ[Íè?530³e½0ÎÅîa”ô% †PJ ¡,°¥ÙîÝyÒCÈK¬DJÔ†R’x©²Âü÷ÊÊ 2½¥ÁÒâ‡Éº£¼Gq0@'¦(»«ö¸)B]µÇ«HÙÙïì¸;îrlBŸ¾{éáëôÝÂxÕë¡Þ)¤¢£tÈ«f:Kü#;9l“[t ÒþTmÂ1##ŒEÊØRãËé>¡“LLè_OÕ ™`€ÁE°‚üdêϲìþ^ô²cŠœª¹ÌÌŒ—²Ühá'Cû¥…K½›™wž55÷˯1ÍÂxo½YixÆP^ä„î<ùÀ C‰”ÈŒo"êLDØ{åWӦѮڛ6lƒÐ^RTé­eª5˜:xlðØÝq{‹©åÿE ½H™S<}ÿÕž&»¯ö¬¬•nnýe¨[Y+C‘Áz¸ý£ýÓ\á/\uþõ_?·VÍrôxô¯¨ÑâHº´cûåË÷‡9*„Í-±Äq Å˪yÅ2ÐÞ;+Rä)–!ßD Y‘Ò7™lA%¼H!®ïÅxºEØ`c³=zþyÈ®Ú(ÊÌ|#™¬H¡ôÏ`›ÅÙT~³,ÓX`è–Õº÷²¤ÿ‘úÿ5s÷ýŠK´ö†Ú¦àƒo•ûÿDúWuѓت+½‰¡oX~­H‰Áø)R´u©¢‚Ë.N7õõÀs÷ëõÊŽF‰ÖÝ«;Êo”B´²FˆÆ¾€ýÎ^.P¤ØŠx9—¦Hq‹L ¢]<¨}þÅïAÞÀßD긑á55d›J 5 ¨¹©)õßO™çå EŠãóý{Ñ9ì Kö^Ù¹læs#ÉAóÙ-J™™oè2ÕèÉ¥ÿfY¦±ÀÐË=v·+ÎÖUçü¸Zþ¿éÎ×ê/_L}²ÝènÑ™«—OÜ´˜öïÐÝ-—ù¡_®'öÿö›·^Õü¹—EJx Æg‘BUee'ܪ V×X¬·P÷P;pRĤ ÁL|MÑ)”ç^»pÒ—D¬¨Ú´F7ï¨o¿õ¦Ä)ë­†7H Øòõö:o0Ð¥j­rÂx×2q1›ï³E:ý‡X)©H‰~ »*ˆ#mµ#NñÓ6_$d"E ‚Á;›óC¤âÂÃ~2䌮½¥úàÁ:5-ÃmòTyu_u]ª>ãý<¡H±y|ÿ^öñ·tÞ‚¤•½žIQ3g#RkQß-Œƒ!)úv]Ìò¿G¾~•¡ÃÕS-6³ÿžlÑ|•/bWØ‹þ€ÓãH}=GÊÏÎ?sMV¥j¥ëJ×¥ŽKå£å%ã$Õ#Ô7oD-U߯Hñº…‘bqß·¡ítÝu—ù­FÖ?Z¾O¬ä@êôqÞÛv:[ÚÚkiQÆ‹^PÆÙÙï2‘"Á HñC¤@å9;½UòDM­eù²§jÀ6híñ‰.]—š/•ˆ’˜<['V786Š›Ï"µÀjùÅÑ!¤þq$ßM¤™>ÿ#‘>Ë<¾EߌÖÁÐkùÄÇâ´Æÿ“}iá6C¾Y–iì1tµôÁ\…÷æùW‘—uÅF“ÀûúŸÄ¬Gyzõ (R½M0<‹ÝÂG”Í,¯¯K››¦c¥3#|†\¬"Uk©kõüõ½œ H!eI!Ç—þ¸Í{Û‚ Ê#ûƉõTê¸`¨—Öbs³ïOœ²³×Zeºƒ-·sûè6ÙÀ‡úOù±ÕÚN´;sZ‡®Ÿú³$ŸEŠO"E[—Š?flD»”q×ûHņǥé¤;mp^lµX"FbNÊMçe:fºP¤˜?¸ýjï Yg–ûr©ÐÑýâúö¥N™ç®D*}Π]]Í^ üYjZ ¡©é¡uwûK^Y·ßÊÈ Ú^ÿm?•˜½‚{³,ÓØ`¨®òþ摟Öû4Ö}÷Ó+—*oYÌþGYëÖE\`Šwi„)¤¼½S¶¤V¨¾,}9oiž“­Ó¶ ías‡G?@!Fajø4^…¹H™èéE¯^]8ox6ÖÓ”HÙïtÖZæµlJी£þr‰#dC'‰ù­‘t=2ÝÎm·½»#óÏMôBecHÑÒóVÆoóq±5]6üO™ÙѶäíí¤·¹ÛR Áø@°/"u½µ"$lŽ•Õð ¶qHÞÀŸE MeXe–ϯðYâ¯a«!#6Œ:l±Ë’½û H}÷èú^L¦[ÒN6×Öÿr²ùy223Þf·}º—†Tø°>±ý‚æŒuÞsÐbÓ—…ñh±vv`ÛÜdMÀâaïz™šÙQ+#Ó)RGª½–šè{@po–e+ ]-m[7üÓzïÆ«Ìúœ ú]bìÃò+½!À°66R(y»H‰&Á$Rô 6§.(º"uåÔèSI;’¼\½]=Ý̶o²9H÷ªAC&x̘º`cðƃþ:+lEê|ø×22­Ã†UO™ž_ÉÈxnßÞ«"å¾$ËhŸ×n§Ýk<ÖÎó7ÑsÖ0ß±cŠÅ‰©„«L œ>Ñs½Š“ÑkÿÉÅš¶>‡\˜Ÿfî`nk«I·(£ƒRô ýz`ÛTÇ;j•ê{ååT;›ur² @¤ì¬ Áø@0šH5ß)ïrâ-&$Â?†p(RHKÿ;aNâ¹3N+œf:Ï”ˆ–‰”쫾Æ~­ž©>K…2YgÁx&£ß:cZã÷§jú¬äír~ŠÔáUfáÝÞ‹þþö£-¿œª©ifüIÛjïb·%#ƒG÷‹¡Ò×o…ª“Þs+c†«öVšnZd¹¤\¾s­¸ÿ°²Ý†?5±Ý:ýYŸÎÆ>SN­Û‹Õýø‰¡—+}ÞàË8“»Zêü³yÈõšKW/”Ý1žþïàÍ·k±ŸÏ!<;€ž'<Š”ÈŒˆ"…ø_Âî„ãO^•¸Z<·8xCfxóÁXð#G茑…Zd£UÔÕ3ÃgŒ)'90QJ!\a\à¸Þ3¹-Zí´z›í¶– M 9µ(Ë#”Ʀ,[F7!°ýRV–ëu)ºH™Z›²; li£Û&M¯esüæL š4"l„|”|ÿX1™PY¥`Uµà‰óí×8-ñÐ>l¹ÍÆbÅS‘<6â·–âbD±®`ùG‹mlgY[·±™¡¥ådx`Ø3qÞ]&× «ª'Ywö´÷Ú«ñŒ_£‰5tv  Ã5zC¸)ä)ã#&«ƒŽ)» uÁuÛÇ%éÃûÇõW Ušã1g«õ6ã#(ר¿†Ôûi:ú:›Í6åÅN˜ -%-=(`V÷ƒ*V.+Í LÍ¿®Q˜[Ìú{ü;ÆI[ú€mSCÐÃ>HO¡?[Û".]·ZÛöÈ¡+Ý_ªÆhëb²“üÄÐ_¤NŒ"5hë­Kõ—뎵Yôyhé÷פu™g{ãâa„'ŒbËEJd F\‘¢—¿u@ÎòÜZùÚjùÚKý¯ùkæÓбrËÞî°Ù±Òyå|ùS}§Ž 0(%õCüâ1âÀ±T©ª@³&ûMžé=sžÇ¼%®K@ç €oí´Þ¹—²wy(KÐÍ+~ÔXªc¤Ã(Cׯ(m\vÀè ¨ýÆv›í¥e¾k«å¶V›Ö[¯_a·r™Ã²EN‹ç¹ÌŸã6gª×Ô ¾FŽT QRMQ—Œ‘ìß·_\?éhiåpåqÔq3f,òY¼Æcív—šX›Zi…ÒÞšfæYñºZ ”Py u6ÅK‹âhÑÃÉæLne%oe%mk»ØÞÁi!ÅÈš¹tž=ec¿Lõ£ì¬8GËmw$dš¶ö²±„ãÁHžžžVVº`´xÂn¡¦¡¥¥uâu•S*C‡ 8¸0t¡R´Ò€øªQª`{wànAï¦vÞv{ö. Y:*j”X¼˜bŒ¢zجI¾ZƒœlÂV:Z¹{wù'ÎÎ;ìì&ZDÉÇX è\ß Œ ´x:j?zšìîhÖ²s“];ÿë‘k²Ò×¹ðÿÝñòÔá #†Øò„‘ò„ŠGŒNL¥Ò¹FRÓ^Í"†%geëCr´%¹’ÜuHž»H>›I~+I‹HÁ³H¡“Há£I#HQ ¤èÁ´Š‘Õ_"²)n ¢Hõ‰ï#6@6LL&L”l¨ì0ßa T½T'9Oši;s.yîJÕë­Û±Ǿ]ûô·é“W“ݺ‡ÌIŸ\¨RX%WuµÿÕ&RÛoÐ`YÑz§r74¡yxxØ98,prZEooÄÉÛéË H0,\Œ¶"l«Û|NoÓ¯Þ˜Ïá9í?w©ßýð$âÙ-µÛ·§Ýyšðü÷wŸ~}âéi÷&¯ U›2†eÛ~z‡ÿ ÐøÓÇgŒÿ>yý«i:Ú^¦§üêîú2#õÑÃö‡ÏŸp]è'ÖÏÿxSûôJüí$‹Kä•«”2•dÓdÁ†í‡Ì»…!k5£‹dì7†g†•Ÿ¨>Å´|ýç†GîØjª·ÇÉihŸ(ñs·¥:ç›Ä\ÓUÿG~mÝÑS'³Íߊ)>qI>s¼¤ÆæÐ¯}2µt°ša’CO»ÖÒÌ´zúQO…¤ñ>zž|?ŸcÃW¤ Á„ ­&§½F¢>ß¼<ƒíÞÛ½?+J_O[Ù¥ñßËÿ¬,ïÕ7Ëú 2¦<{}‘bûß4r¾X~üTeæ5½)€`õ•§«rÌS|êšR}¢ŒÓâ‚`4‘ºÞZÑC7îVò¾7C¼¤u©/õÏç—§ÞÜßÚvcðÊ£_ï½¹† ÕÙm·ÞÞM¹ŸntÉtJòlÉXé!™C4+——w¢Š.Ý~v+‘:~ãïQ#?-YüÎàxþ{Ô¨Ÿ«Oa.R­oÚN<:s+xÒ¿µ£' L8!_mkÕv½dеuèõW·_½[qû¾vÖq9§¸µ ¥©õ-Åeÿö¤PH9» ³·— ¤®È/‰/Á|îœÞìkÅNXÑSr’Öíh­ÍÚße‘‹‡5jmÇíÅÃ8ÄÂF ±å " Fô4D2½`Üî•Ýûøûåqe¥Ó[þÊHý¿ñã>~Bõ§¬¹{³lß cg"7ð¼>`+[cK«h핵¶`\c¼jO£óšëwb2^!†xIëQ¤¾Ö¯>ØBÕ=¯¯–º@:UfH†âìâ9[Žo59gêSïŸ~+ë̃š;ÏîsdQOw|Pû:*‚nB`ûïÑ£¹[—ºõänLɽʇ'î$û6˜Ôšm8±qRÁdñq…Œ!sJ4vÞDÊ6% aBæÑ´ë@°ªÒZÁ̉i¶9z~¸gòÔ ,Ÿ3Wî½zI?ÕƒµH­*Kɰ÷ X› ˆTÑéRýñyB=­;MÚ¢#?¨« €g°Í }üîšT<áQ¤>B‚<-ϰQ,À6˜öÞîhæôïÊÿ-þ]±lniêÕ7Ëö 2¦q*RÅgÊXt€ã¢8%˜HßG ÏilE ©w?ýœñâŽFkÃë—û74Ö|5ªî_í]{Ü\vïhTs¬ã%çƒgtWV¬VË›(•* jBžšFñÜÕG×ìªÚs¤ÆÈ_}@Ìõøœ;ùÇÛªN´Ÿ:ßqñò£:P÷3"ÔXzãñíŽçºýäÞóóÚÒ£ݸðà2R'îŸ*m­ÈhÉŽiŠ÷« tºäbqެæÖÉÝk®›]4G5{äÀäR)RÃS&.([¸ã”–ÑÏŸô»ÙçŸ^zôöç. Tˆ?¥ÖÕˆ×o?R¬èšh\\}±ãQ÷sfY‹T—2‘j‹Š@ÎÍ@6ГC }„÷‘â %D$­WvïÓ»?+Ëÿ ¢}£ÇíZT/í›(‹A E §i(EŠ^¯¯ýV3±‘›S5AYHÎ$×Ã$½$ï­$¿ÕgkÎ$…ªÑNÕ¤­99[SLžÜC`V‡ A‘‚iÄÝ=(R¼¤ Á Há4S‘B¾ÑË3cµ"…I½ÉJ=me—oèþŸ½ók"éÃxî,Té"Š]PQPl b»bÅ J‘Þ{Rè"½Y°cEAÅÂyúéÝyzg?{Ár÷mÄHI6É&Ù„ñù?y&“ÉëììÌËogg6æ=ÎÍèbóö;z{.A¯PšÍ.n˜ÕñjÜXy桞”– ú*+Ëpåäv‚rÐoC¤€šøVOT Õ 9X湎6”– S …R5(ªÓ)}Ô`­ÖHá’y^#¤Åà'Ö4Ï ÕÞ麧'–/‚®Þ cùò3²×öë9]1¸ž ÔÄ·z"©Æ¨ˆÎÖK‰£ƒ}7 …R5®@бk•«ò­/ îñ§qÍ9}˜cDßµ7ÇJ?<‰ü®=ÖÈÛý9Aé¼]õü€Ô«±c;Ùtm' u›€§‹ F1¥c…1ý6@ ¨‰oõDRÝ:˜€”˜:)”ªq{k} RÚï¿Ýyœ›EŽTn–О#óÍp@꫌L'‚r$¤Nô÷Ôñ )ô+¹Ûip=€” µ \¢—¨¡¼z"©nL@JL €JÕPRü@ ºz£OKaäðí6ôrü8É)(ªŽaÒàÈm€Pßê‰fFªÍÁ>öÃH:f¤Æ“ G㤚[¾!ؽ`ªÁD³WM®Þø‚ HÕ5¼E¤.^zƒ,H56B¤.…eBÖó\£’ÔnC—£#y©„„jøÆ¬Z·†²ÿr5† Ì|{òôcmf†iC 5!ƒp0A,h:~šH1ŒõXCLÏ ¬kpå`¼€Ì~ƒl1˜%ѬÆU1˜x„ HÁŸµ‚Rðg­`‚übp@ *ÖqcÆèá1?½?®'Š‚ Rð¯ÒWëÞP.ÄT:ù R6³ô!F!ƒp0”´ šV„M¤èy{ê˜Añ?½?ŽÏ]{ÀÁºWÆHµÜù }±Žc%¸Rã(ˆf5šŽ=Ýøõ SíêMÎóRì!©áê¦Z=Œy)öTßôŠ©vñÒkþAêêÍLAŽóRAêàáÛL5bÕñQa£8"#ˆ‰)eªÅÇâÓbxPëÖP .cðƒ¡DÍÙ¿˜‚¯ê8ÚW}˜£ ±ª ¤€ƒ ç`AÓñÓtìêàá;Lµ¬µ1‘ 8'‚+3RÂS㪘‘ôŒôšzˆ86°ûÍzb=#Å´!q¹ž3Rb¡šN8msF z¥Î>‚âÁsU“ 㤠C°ßÀTƒ)ˆf5®šݸ䩆«o©KM¯©«7?"R߆^ã&é{éóRÑÑ%ðYµn %»6ƒÁ|[sö!‚6³ô!†šA 8˜ 4?M¤¾½’“µ‚µø)ô9Ø^ n¸9ص‡R5˜„„ HÁø³M‚Ì€ RŒÛ1Ûi6ÿ ÿâjÝ é“¬Çzx°!˜ví Á%z‰Ê«‡¸bDÊ!¼®¯.ÿ Å•ç «Ö­¥Ÿ£Š—ƒB©)!€”C™ÓÆí%¤âN%`&‰‘ jâ[=‚TBÛœºäöT"&AOŒ €JÕH ¤6™:-w’< 8Œ‰›)F6@ ¨‰oõDR‘¢g;Ï–< „ k(F@ ¥j¤„RsóçÅL‘+HÑ#&~Œ{Êʨö·Ñ1ñÚÉ; ¿!kȪuå¡Ì¦£²9¤ÐÖÏ1pz‰Ê«'*Úam@5”<ʽš?³t)t/AôWXôì÷G9އ÷ûƒù6Æøuùn3÷âCMø 5Ž0n[ÒvHÍ ÆºÇÆFÆbw%Ky$ÙtÌHù„&Ëø$dT¢Ú†ºòPDmôæê­¤ÐÖÏ1pz‰Ê«'*ZE[µ6c­äTô…¸ ‡6H÷D…RV¿¶ð}~áÖÇמ„ÎøWÓúÉÃn2Ï”â]MÈ † —J— ņ1@Ê2(Y¥í1¼“ÖDÆE·Ã.õÂi‡ÅV¢Û†ºòОn§<H¡­Ÿ bàô5”WOT 5•:Õ.sä”ÃI'—7Ré^‚è¯ÜÝ¿{Ôò$Úèë”GºÉþßý‡¿_zægð¯ú¶§t“Y[f¤xWH…`CeÒeýã rª‘©ƒ^!b¦%¤Š¯—O,Ô…¤ÐÖÏ1pz‰Ê«'š@à’éúÃŒTf†/– çCògÞÚËÊt KEù“ð:ÁPÅã tî´9)ä»— ú+¼RWŸù‘Âü‡é÷UãË·»Í?àGMh µ·xzêôv¨jã'ȆØP”ØTDmôÆC¦¤PØÏ1pz‰Ê«'|¢fÓ¤ÉÒ©ÙV¢Ge¼a3¹ý-F™è•Šò'áu‚¡¸‹ñë®ï ÕÜò ÁîS ¦ Wj)ª¾ñÌ»~U@êã˦ƚ…áú¦ú¨ ߛϞµå7]oýçÓËóÕy·ô¿¾ä¤DØtȪÁ!¤æ›_ù©@l \ºœO¼/”ÎȬƒ^½7`#—ò¹F*!¡¾q «Ö †ÌŽXž îRçë^!R0Ï,Lb¨ ¤$ÆÁ„¬šN8MǤü3FÐÆ1ÒH-ÇR"32Éqi¯4ïŽ)lbªl ΓðDè``hçQ+Ÿ3~@ª¶î‚ %ã¤`öd‹Á,É•<â¤Þüæ[p>ÿÏçÞ>=v¬P>ôDÍÛvBúû÷sz~u/ ÿ %¦CV &!ñ R3ñ³fãé’Š¯ë·ež”© ZRÄÿŒü«4ÄÕ:Áдâé¹W÷u©®Åø)˜g¦ 1ʤ$ÆÁ`•ù÷õ‡r¯¯#ûÿ‡Áü;våçéuÉÜ/Š6A{Ó!§ÆU1Ž µš¶fã^?&H¹ÅºÓ×H)ú·3hí÷õhüðShpž„'BëC3Kge_ÉëR]‹ñR‚p0î@ªåÎתŽ_éãˆu+Á•GAÔØ€QCó¦œy©Î Õ/Þ?;US<0éâ›ô¿ñUåO·eWܱ¤ñR"o:dÕØ³ÑÍÛ¬‚æ¥z)ǧ邱!TÚJÑë¥;JOÊÔÇ:Õ0ïññ¶F*&¦”Y·øøC|Z j`h@Æ€Ë÷®0AêbÃ?LÁóõæ¥8‚Wg–£ ±ª ¤$ÌÁ`©Õ?6øÔòøý‡??bgÿ;Ìéã‡ÏïßÕ~¶ cÍ7(Gƒ‘3RüúŒ»2­Ä-øwFÜÇÖÏ]3O–)ªqUŒ=%f%ÉSä+ª¾2g¤ø)<Y5V:§N%K…‘–ä)F@ †`¿©S+5vUGØ&K°g©n@ª-ž¿y\}¬X9üøÑ7oÿºwvrì…3oÞþóaÓ!«‡nÞá}Ô"ÜⱄqQq±ó•»Žíî R0&HÁ ðø¸jlÀè_99?½•j)(>H=~Øä|´¥þå«Ç¯UVÊ>øš•š‘aÓ!«&8ò÷ƒ(jYÜ®)ÆA ÑÜ ”ØÔœòyé TRèìç‚8\럲¯t[ï~èšyƒüµGŠŠ¦¢ŠŠÍŠS (P³i9ÕÈÔA¯H1ÓâRÆ•Kð—¤ؽÑ_ÙÍHMÑgðÓ´ÌÅÑÛ˜ÉÁÒ¦êþl„5#õþq顊Q^8Œ[ªz⡸ÿ½øaæ €Ôj©plÄ¢¦6v5DQÖXnJ¼@êÖýÿ1WšBa?ÄÀUò6ùslåÇoß¿¾ó)Âè_ ËoºÉ¬-D¯Eˆ¬éD¤Æ¤ÖÐLÓŒi?1ž„×E‰Hýúç]ÅL¥‹ÿ» @J€ÝKý•ýJsHA­ÉH$Å{*ã÷I—›g@¸B¹÷ô>Ü[{Ü)þA*2.jAK)aæHŸd?.oç‰#H•ݨ·o<ó-)´õsA X%?ÿñ)tå¿Òô§ÿ;}{ëå§ÝfÂ|üAïj:©õ„DÔlš2E9"+’™º²¢Ó˜°¦’Ï5R\y²jL :ÔrdÔÞÑÌ·¤Ò½Ñ_9îÚk:jMèõYQ>”óçóGy—/O$ºöÇéÈP·ÙyøÇHñ¯†B½{ù±²¬5[°?>2‚NQø‰ýôçÆGñŠPâR>güÍî …Ú~.ˆÓKÔP^=¡”C¦#㇊ám·ï¤LÄR’1#r>lsõVR‚í^‚诟Ԛ]3Oýz{]n–TÜ*ЦFަí©=ØÒºŸÞâMOŠúpåò·1£¿/úìêôt²ñ_*#âGöMÔÛÁB‰H-ªXœz™@ µý\§—¨¡¼zB)mªöžL{VŠ‚^™÷øÄ}ÔŠý+ëSH ¶{ ¢¿ò RŒ¸öçž•'UƒG’6 ¤hÉÓ\±51+ÿùÇ× :šskïîzRÕøœ‹‚(êSnã-µô¡f¬Ú&i¿°þ)J\@êcyÁÝR¨íç‚8Tû÷ÃkgG´ýÈUtUÀí×o¾úáÒ±½7²ùoïAÓ B­[òÉôDDËΠSj5¯ŒAQÌõRâ¾kO5Kõì ¤Û½Ñ_ù)FÜ{òWRÍÅùcb“vÑR¦¨YŸ±ËÊ>!b)1©nMóË〨ïOjwòÙ+ˆî éÛûÍg:jUðëë×mùo?=N/.Òðl«Xì¥?ÊJ¿.ZÀøJþ­“}ÓÔ4±K~3¦Ô¢÷€TÕÍCcòµX©€”ÀG¨9ª}:TõmÆôÿäå¡W(ÍZ냀â‹Åß¼øüêTM±|Ø©sŸÛ?zþ×…I~ÔA^TRRë–‡&Ru­2¬%ï…‡^Ù¬‹;:òËñayÃY©€”@º— ú+" ňʪÿ*oÞ6N/[°c_Þ°²!öcƒÆ+QTÍOí̽ïõŸ¨©nM©¸lç¸Vã¾n݃ԧ?¡Z=zý¼õUÍI¨V5g[!ºz]¹:W{àù;Wµ&`?»9¿ý÷SLfœBšòJr D?—çÕ¬ZÙ{@*à\ð¶Ã;Hõ6có駃•)Ìž¥zR{÷õuíÙRõäË×¾¶å´þ±áò§()©u…!ïLŸ”äl ·%. QµáÐ&Rï^‚诂TUÇbóº?ø®=Ò€i¬ØpÚñL9rqá…L…å¾õÇÔ<ûø u Õ?˜¦ÈAª#Þ~yuþL T«æ/­o^ß0òÍ zôùéÇʲ+æÅÏ× ›tùRSUÛ®½?ÆŒ)ÝÙ‹f¤f—Ȥz›ƒ±ùôÛôi ~º¯ÒRßfLçNí볨XÆ\•FÿÅðì›PöÛ_­»˜Z'¢egŒ¤Œ²Í´ã¢Ä¤Œ+—$ÕãH ¼{ ¢¿ ¤ŽæÜª‘­ßg{é¬ô¥³f×oï¸s]çú%ÅK™ë³l¢l&Ru•3TÖ]¿žvóů(©®¦ T4CÿQñT”céß¿؉葢¾<ì¨UÔÃ÷Pγ?N ,µÉË—‡2ýó¶Ô>¢žÎ˜ÐÇÛvé?¯ß2pÐÔô…šZ|doY#Õp¯Y>CþÚï¿êmÆ®Iåå;=RÊáAímëËã5¥Ê55­ŸŸ=¸`ˆ¿p±2RTëDBÖ™6Hy(ZXù†½òÁâ÷õþU7­ëö,ù  ƒ­,C(“÷;Wþ=³´ì…OB^ÿ‹ø ÑœÖZçRvKÕÆ=È(oÌ(n8AŠ©e•£°îÒ8Ýd—]‘ÙLJp+N\µ€” Aª)/û£¦æËÓn1}:Ù8ÑXV:Ei©Ã¤þš ë`‚ThñÑ©åÓº7±r0Rh)ú®=;[ˆœî¢ïÚ»7j$”†rºN;y‡¬ öž¶k`Ôê~XÃ>)#úeû’¤UR5geoYN\n‘fáFp'D0x(viY¤]6 tÜÒ2Þ@ª4$èõÀtt®/†^_©«C9ðAÊÛ×Û,ÄlnìÜ)#ú§IÅŽ6Ž6v p‚ÀÈ{+.G«ºV®¿Ïys_/©iÙ+³îäv?°ÅʆHñ¦†H1"$ë!>C"gH0;vYtnDQôŸÂu+ %Pª=}¢¨_CƒoͲ²dSd/ŒVØci)ñ e”cŠoIëÞ@ÄÊÁH‰HAîï—¿uËÑ%K W˜ûõ\ƒBMý# ýC†9K…]ª”ä>ŠéŠCÓ‡Ž%Õ'éÏ&Í6&›×nMÛº3ÍÒ6ÍÖ>Í!©´1„I‹N¤%'ÑRÊœwµLÖN£‘”JKƒ2›¦ie{˜AÅü¨þTÇT³UÔÕF”9º½Á”!ýÈýSO§ÌXG]T|ˆ1ùÄ ˆ¢ –J4(¹üSCɘCþžþ0)ªW”QŒÑª<§¶XÙ)ÞÔ)¥çæ¸/-¿Ø·ÎgI°vÒØé×gmHÊÃHÝsvz¸e3”ˆ'%ʧ*ÚfUBŽëêJ6H-ˆ^°(wg"V@ªW€T§5RI©8ïDÜÖhÜìÜ®…% ˜ÆÆŽ¨ïSDéȾaûˆ:Ęé1þóüV8˜m43±01¶1ží4{†û Ñ¡£5£4’’“¥”’û÷!õÚŠéý0DY…äþЉr¼7“87µ¶dƒñõÁ¸'vzDr§Ø6Ÿ^+šÎøÕ«@ÊÃËS ˜RzµÇ-V6@Š75A€ãŽ^òªçú_ª:w|îz»õôÓ¦8ç¸Â\@ ~ܤÏHM÷#ù«%¨ÑHŒ?%·† I]ºT²AJ5U5¶ä|"VÆ H5·|Cð¨`ªÁäJ#U,H%&A¤È”s|>þ Ò.2͘•%tët;ÃÛbó#ŽuÆwºy÷h¢Áa'GÞví1f¤Bæ1ïñAA$žF¤ªá²j!‰vŠc™M!¦ƒðlF« ‰dÀ´!†šAJbŒ#¨¾ÇH±®‹b¤]KJüÊ,?b¢ï¯¯‚W3IX‘H:ûAjhþ„ H5]ÿŒ,H=ñ°§5RA›†G©Kζ=þ sþüÇŠŠì×HÁüS¤¸r0Ž„”–vŠc™mÁÛTRU$ÆÁx)˜ÕE¶Ì’\©ÁÁ#dA ~1˜xÄH1(Š±Þ¼-]Ϻöœ«5R¯ÔÕY×H²²|7DæÞ½N Å (?±¦»ò? ÿ* NI®Ô8Bœ2cÇGô!‘ X˜6Ä(#d’ƒƒG\Tâê*ÖÕåvíFçì:kaa¡«1:n´y¤Erf÷·ü`‚ü‰+ õöùåË'õýôG G–y_{ôÊ|õ»wÄ÷IïÿÅ HÁŸµê¤Î–ÍL…þw¹àì­ÙïO·åŸ©=éGÈPõh«XHÉ’‰nà˜?Fy9¾kïÙ¤EE…m؀ȟ˜ Å•ƒq„$8ettçGÏ—ã¤Zî|­êø•>ŽXDZ\©qäA Uìo©êøåÂÊýwø©Ø¸rfõó RDâq¦™Ìy^ª[bîÚËΡ_‘üîáMsòxصWüjúCñ×?š8ù³ÁùW¹©°ùùÌY(KÅ-=Âé|]ŒÞÜ%à)z<¿6×''üÁ ÖÌGëõ| ³Ÿ‹îñgMöI™\¸Y‰¦0ÙݺVñr-ñâÙ 'w§Uží= åâë"K”ݰ€”hŽ qAR¤`²jü€Ôì#Ýx]ÖÕT=l7ü±3‡õq7ÂÔšÜçY>ýpéØ^ŒÙü·÷‚_¤-ˆrb2ÐC/ÏËæë¼ã}g†Î”"Ê ŽŸ™mVdmü‡—;R õ×ýËŽ‡¯×>{þ׋e 䃪«þaùôùYm3Rg„;#Us¼r[VuÞÙó'ÏÕl§íþ‰¨<«xMuÚþZÙú ^'ËΟ-*/îEµ?~¾÷€Ô¨…ãDZ®¦êÑ@ÄÊÁH ÅÁ8U㙢œ}èsVþ»àβüÊÑçoŸ¾{DÎ¥Êà¯ÝùÖþÑó¿.Lò£ò¢¢Ç†Hñ¦& u/÷f¦!#]så¢}EÜxЉv„t¿´þêéÓV8ÐΗð;#õú¯¢e#½èË¡ÔÄüúäñ»—ïÕŒhöA3ùH*—k¤˜‘ºp*–­dIÙ—0fK%ù<ñbƒRÙģ&iôŠùÒVœ<ÎÓ)q)wwù4yó sx %N@ €)ƬÏ ek8‘e: þ­½'¿P¹Ðð¥ímëß .ßqŠ¢¡Ç†Hñ¦& uµñÒ§áÃY×HýùiÄðÂS6ø !.ü9MµiÀ0ꌥ´ ¹u×øºµ#„Rgê·‰ÐÎ;*gtÐáèmmEÑïè±½ (Á 5/zžv’6kŽÄ8)R¤8²j¼Q”µŸ Qf¯=× õõ9žD›vòÉ?ô·.Ù7¡ì·¿ZÿvE“ âMM,@ Š_ÊK!rz3Ó¾kÏÐJC9ÌOn4'¯4ÎöVÃÿŒÞ']zhÆÄõ忉gSª›Ž‰H¹pÜëföP½½zqÇâ!„¢?¾EI0HÙûÙËe­¬¹)qp0R¤Hq0dÕx©±‰ãŒ¢çtÊälC__æähçÿòëWzæ³ ñ.¶~~ÿ]6@Š75q)ú¼TÓå»i©ôçH¥¥²Ù¯wº©)òà£ôàñ«¥qzÒde9ªâô™÷úeþ’Óø¸Yp E_@UVôó®¼øÕ«g܂ԉ‹§¢ŽÆ,(Z(G“Ÿ[8/í$‰ÉFð)J‚AJ/^Ï Î S¦Ä8)R¤8²j¿ñëË»K2ž.5úóÝ#'=x÷øÎëßï¬6¸XŒ=þ ¦ô^Eòu¼s­ëê#&Kte2d5ò¯=º.îj¹GŸz]Õe±9ƒ¥òOsKQ R&a&êxuOoOî@J¬Œ^›`´&"‰¼ŠgÊÔÁ‰¥ Ü~²ÑÖœ«ÃÏ?‘Ÿ#”‡¤:XeÕÉùOw¦6î1>Ø€ilìu}ë+Ι›2)%hNОU{vlÚ±Îl±±¡«¡®¯îèÐÑšQšjX5Åd)¥äþr89¨­èA’ÂåUã¥Æ*bRFb’Æcâfa"×`‚­0¾Þ¸Nw—ºmóK ZåÌ»"ò†mV¾HYrŠÛ/Š—ƒ)Äf¤¥~Õì=j AäþAjW~¹?–”/µ8dÙÓ§lF„x=ÌHñ¦Ì~UTLßlô ¥ySÃ/ZÔ2xp§2¿ Œ[¼˜·ºñV«žÔøü'Z[_µaÃþï`¤zµ 58‚¢²!ìÙ„Ñycêo6J¼ âM­—;ƒW¤ÂšæVÍÖÌ쉂uî\fmÎœÇ ¶ææ<¨ñ\«nÕøÿ'B#Ô’†æ ­½Q'ñ@ª÷ÚPƒ)(:Ñ|J5K-ïR›2]GDíåšü;ï;lJï³½,’ñ@JЂÀÁff²2 ”0ÌâM-ØÄ"§–ÁƒO˜ðËàÁPÊá­n<ת§ºñùOTvæzí ìAÔ‹™½ÁÁHõ^j0EbC Ëï>lþL×ùNl=ô Ù3-’ñ@JЂÀÁU³57Ç-^\4cô s.ŠÏÿ$ÆÁVU®Ùzp{/q0RÀ†€AáÛPÔ™­½Ú—Zš¸µ¡÷N´m~ W„øø %hAà`@ ¦ ð,é¶>Hù»Y£ùÎÖ»/o¿eîya„¸ìy Å›p0 GPhX¬µW‹ãÒ(És0RÀ†€AáØPúEªj–Ú‘«'`zЕë×OØ?½6ìÚm“;ÿ\ƒ¶ñ@JЂÀÁ€LAá8Xv}žJ¦Êþ¦C½ÐÁx©æ–oL5˜‚\©q4—Êýwµ¡„„j˜]A5˜‚hVƒ/(ˆ¦ãh.IIGø´¡ê«ÇÔ²Òê² ô©sO9ÐÍëM±ÍÚjõXü ¦ 1Ô„ RÀÁ€ƒ Y ¾ ˜:رæšAÙƒµ¤Þé`¼€Ìê"[ fI®Ôà˜ ²6$’b0K¢YMTÅ,áÙük¾nm¨æÚY­½Z>'ý˜ÓÝ=PËõ¦”æÆÑMS›®ì½&’‘³Lb”2H&d5Q³Šƒ»~q|þxæó^è`ÜT˯U¿ÒÇë8V‚+5Ž‚<¨±±•Šý-U¿\]ÕñoC11¥ÌêÅÇâsp¥ÆQÍjÜ ¢éØØJ\\9S ÎU]W‹9£NwŸžUõn(}¦öS­ëU]©¹q|S£^ÓZ3Ó°P;`9Ú«šÐ@ 8p0!«q+(vvñæå)…SÏÞìµf¤Àõœ¨‰ª˜¥€¯ç.µ4Í(20=°…u“KW«º’u­Q¿©qlS¡º¤c-‰Ú f¤x+ Œç’hVU1KÁ;ØÜ’y++V÷r㤠C°º0Õ` r¥ÆÑ\ «:dm(:ºÁAS ¦ šÕà ¢é8š tUǃ 5¶4Ï/]°¼b”`5èªîûÛ}ך ¯4ŽljJh¾r³ó<9²C Y5˜6ÄP2H&d5ø‚âå`+*VB& ìÚã`ÏKoV³Øžènu壒9=þLÙµ¦ùW‡45E6_¹Ñý‚ÄG‚j`מ ƒ5˜‚r0Ó[fôø¸–Þä`¤8ÛÐQÿõOÔûþ‡Á|ÑœþKdn”_™{v÷‚—0ÿaú~˜¸êµýc ¨ñ,ˆ¸ 5ýÒ¼åÀVý‚)o^îÆ_^kZv¥Q½©)°ùʵÖlJ– âM €Pƒ#(»¶ã¹î>½ó7ꀃ½ dž~Y¶ý"1¿ª,û´¥ÎµÕ§Êª*Óí_mwŽºo>®q®ÒW§chK@gAdmèRKÓòŠÓ‹ftãAÇ®5™\iTijòºzå*;’0 Å›) GYkli6©\;¹@ÿÌõZà`í…YßbgCy56zŸ´-•W3³ôýð7œle§÷ÌOš[N•ü3Õå`ÜÇZïâ¿ë#2„$Ø{Ô,‘¶¡¢Êw³Š–.ê<~êZÓæ+ÊMNW¯4p6 ³!R¼©jpt°’ÊóKÌ-ßy6½w;)6TAº1 óóŸŒî |qyeñæøߢТªò|¤óH¥¿Í ½ßÊ~‚s)‰Q³DÔ†,ì-Æf®«ÚðÃÚÌóכ̯6*56Ù\½R×€$̆Hñ¦@ ¨ÁDÊÁvîÙ9!kîªÊ5—[®û¡0ë`Cll¨¢4ó¬¥^«úÊ3%í•UP÷ÏÒøŸž}NE‡ ’,5Ë®6´Û,~¦Ö}i¬~©1‘ºu=sצ m¨ÝlÞÓѶ;nWÆ)oØëû}ŸpÝuÈzèd~2#® HÂl€oj¤€ADl‡Ã•“½îÀÁº)ÌúØ*ð*3â:µ¼¼ªÔÜ7Øl¼ÚÝy•ßmÈÊfÙÊçü õÅ C«–ne •ÝÚYuJýè™Êc²Ö›‹d,5žYÝÄ~óœó·ît2ߘ3Zæó y>Öm6¤¬xb½UOWr\7ȧÊ2–j^i¸Þät•> ¾ùÊ•S°~&]²m€oj0 l—éµj–9ØF— xƒ`à`Ýf}l¨[ºmx|_ieåü/ÊÆg‹«ÊËHM³¾]àAÀ“åý²b*;@Ê|Qw™ý¦6æ[¢¦«”Ó ‡¨É|m•b¿ßõW¸ìØ£¯úAyj€…ÆPãY°'sq^9ê­âÔ°]lhßé4éÅ>‹¡ôþ’oM^Wé‹1M®\9Æ»I˜ âM ¦ƒí2½VÍ [è»r°E¾‹€ƒõX˜õ °¡nm¨vÛôwý¡K·>µ4'탮窒M>`¾O„þ§°ä\ñ·ö¬,¶†h¼V›îgai½~Ê_RCqÛÛ:õöÅÍRÊ%8°!”¨Y²±¡Ý[ò5eŸ±Éަ͆áçWêãs6YÙ2ŠØîž9A§¸Éy“Ýn;ülü%úÆà+ù5 ³!R¼©q7§¶Ëô>5K¾L7BW¯°Ñe#p0v…Yß‚³Â ¸hïZB¾¼²¸¢,45]Æ'3¢’e”£o¼R[ì§QlbåÙ-ýZA/„qCÏܤZA¶v…™ðÇPãY°;ÚN«ôXk‘ïî²í-6‘'*}Vœ]äípØ1(qЈ¸V¶VIó’NËŸ®^Qô’0 Å›\Ûez«š%¦‘¨1;ÜÒÖ8‡ÂU¿º¢Û`´æQù6·_útKU>j“÷©’žß‘Úv=GŸh4ó…­êŽçŠþ;¹ýÓ`ßÓ%mß-¹zGCãɪ­¯è«úœàÜ@ùÔ&ûá¤ó®— ?AŸÆ9]¦µŠüÀAô¥÷çi½[Pp¼¬›O÷Óˆ¯¤çSsÏ«Ò4wäGóx^?äæ…I·ǽ}Í…Ý œžƒŸ"?R”óDì/~p~g»)1r*Ëþwp¦æÿôbò˜=¹ü¾Íújýé ª†¬ú5üÉ~zþ¿SÓ W gŽ0»šöA䂯€á`´ÜZUÚÐmùáÀÁ`f¥ªÞv=÷àù#޵&œbZQyÉ‘ëýDføUba ~Ëkù©çr™¾Ë*¿˜ouŠ”]–pÉHñëø=JKJf/¥4oû§•ç§Ÿ2Õú¤CćG„G"Põ‘ HÍÖΩ€Ô¼¼½ Hš•`@‚wÿºÿ=~;ót…æçMiÜ¿ÿC>=þ¸÷KÍŸ»ÇXN˜=š‘yu|só´k¿ße–A¼£V ÌH á|µÜ»Í1 ñýíâ;¹±OÿÒò¿«ž!mÛe&8DÕÞ‚>‚ÔHT2)Õ'gò*?ÿ$ 1¾bã˜Ï*‹Êˆd)¸ACúé¯B|åšá­šk IdzážRó @0 Á=ÈýƒÔ¬‘û©yxz"%ƒŠ`ðà`!jYjÔŒ à`p ³¾ém6Äžžîm¢µ&ô ¥á€T Áî–™ïáÜ}%{ÓNoÿEiaM~IQQBËé6GTÐj6þ—Yg@Jl@êЭ£²&Ì ž|â‰_ð·ï>è±$š€”@Dç‹ë[{mÑÜT³«¤ö`Ë­æ[ÍE¹re9¿vž‘JO‹­Ü8î“ê‚ Bgºª*ójªiUL -9øÔ …/Zæyd29rÃs)kNQ©±ûWü¤CŒ÷ %6 uø×ãƒÍ žwlâqà`Œ W Hý+'Çà§“0Ã1×41­Ò²5²õ –‚^™i^@ªˆP7W¢¨ƒÅÝ|Z’¼ñô¢r?°FJ @êúý[ÖŶ*x•ðá¿`oßífÙ°!Î@Š75Þ@ªå×(ÃEB¤þÎËþ¤?ù›œô ¥ï<ü=æ V§¾Öv홈ówûÎü9š€”@Dç‹Gê.3R”H³« SÒ(©QÖj}Vœ]•J_lÞ¨!õtW6!¾Ø|ˆIc±9)ò¬Žâ“ ¡è‹ë^ôÜìM#`«ÖŽú†Ñ¼°Ë€ª@ 8W@ ®û•æÿ±®!À`j³°îd­ðqªñªºþ˪ñ7þÆ,_tè…Ö˜/ÒÒÐë¹?6 U¿êýó\|² ¤¨8åú¶·}”ž/±¯)úAŠ Å?H=ÊÍbí Gc&Æ Ó Ô+ )ûßXlˆMâM=ÝÏ |˜¤èJÃ)RzÜ¡5z¯ÛVy¾ax> %>ó”N Ùú¿ÁRPÏÿ<ÄàLXj[ÉØcF/gZ祷A_¼Ã๠ôEég†óŸË<@ M ÕÉÁêFaôb†CVZ¬Û W󮽩Sþ•“ƒ^Ÿå3ïèaKlW9©%û‰$7$}õ!ìÿr)¨‹=Kq ¨n¤PRŸ&ObœÙû*˜m»1#b09ÆÃîÜú¾b¤xScFÒÈVy²g©v‚¤¨“_Íܽ·»ç PBW½“^Tèæ@ = ŒÛ W ΢XW—wZ#E%5­ôRIוÃÿljƒ)œŽy-ÝîY/´Æ’$ú&'÷XãnŠQI„¬Á|è‡r¸õ `C=)ÞÔØ€Ñ=ÝN õTu|)¾žYJg˜å¤ˆá§§¨¼bÎEý$Z¬Kã(©‹G€Åæ()ȯžÀxn¤;X0p0@ ®W •cu¡§]{OÊfÍÆ¬rÄ(¦`ÖÚcò 0/”¤HI H]¸Ûhg­¢š„qÝŒy¤ÐþgéÓ}`Cl€”Îú&+Û>;®…¹§F'ÊÒ52õ –‚^™inAЏø-ëü€9id)ìã¡ ?+<žkQSô/‚@ŠOºt¯ÙÅJB(ç-˜¿ƒÁ ƒTsË7 ¦LA®Ô8ÂS}ã;8ŒÅ\™þZšNQK)âžž=ÃiŸsvY.Îøý£¥gL¢Ò. R8ÜqA*)ù(² •–v A*(º§XtfÜ4ŠÅÏ$¹iÓþRúáîíß{s™æráÒkmÙ!ª Ó†jB)‰q0v3R“ôõ4¦xýnŽRríÈqÛMÍ<+ža¥((ê‚=9ò³”ôZíìØEå\…[UðÈIJ?‹ H%'E¤’’Ž RÂ)Aj_a3œbñ‰3)v?“äõ£&ÿ© Œ 5®Œ‚Y]d‹Á,É•GB‚9kÕueú‘ ˆ¢ –’£È1ˆêh üuT0A F±È] ƒé? Hs [êìÔFBÎÛ]"¶mrþÉ-n¼‹»]!R6 ³´ïÓoqö9X—ºÍÊܳ}öÖcÿY“²“k‚_ŒšEóŽOîEßÝ­H²!·Sd+;#Šîm»»£2Ù!Tpf¨iF’¼R‚ áܱ»Œ=/Sôé{^¦èÿ½7§“¹ hCÈŽQƒiCŒ2B)‰q0ö+Í;ÎoDrn¯åvÛ)^Sú¥I¤êZÄŸ¥4ݹÆ\PÅŒžX æÄL‚Q,ÐÌ'NýÍÁ\BŒííÛ@Èa‹S8ÓÁÆ9ºZwà µkGüL­ûRm¦1‘²Å ʳÝ2³“ƒ‘͸)øÅ §òÂv8XцÔNEd*egx*ÓÁ"iì*š3…4ÿg’¬Bâ’ä3ƒq[Œ+ã¤Zî|­êø•>ŽXDZ\©qäA 54¿aªÁ™—¢ïÚÓÖ¢Ï6ik ôg"QvY.ƒ¨ñ}wýଣâHHéäfõ¨´ÚžŠ…„ÇMó‹³ ,*}¶È5©¯«ÿN: ùsKÔqv³qr6sŽs‹µˆßÏTKÁ㤶νfd[Kyy0ïÚ•9ƒ¾Œróµe-`l¨úvøO[.@ ‡¯fVã¼ÝèÓÓçD¥{’iug¾_`:–ÎL4×p¼tÉ/ûRE‡ZAQs'~JÏ¢ØeìIÛŸ¨,½Ö"WYù/[©k|ɬœ«:Äû0j,GbUHI˜ƒ±©Úúg)ý£mðEZþÍ„©÷3©Ì;zT˳‡ÏlEZ߯õSºÔ´@éà5˜:˜÷ýÛÝéÉÈ‘Ø(/¿žY=ŽóR ‰vŒ©FJ?ÓS1Ÿ€ÈÉÞ‘;![àœØ×ÅÏœBÞCÝÇ;ºìÚã°Í1\Î5Æ<®’©g^Š Hí1Ó<Ûæ»ƒtõÞýg¨¼¶Ø%“#!¥à¾;Päˆ$ÒœH’'‰’J!ï Å÷ ŵ1“ ÝÁˆ~YõLÛWxµ+ByÒ¼&¦OíK’“‰]²= Œ75® ÌH!0#õÆs¤^(I·ßõKÁ¬tÂPç`þR“üŒÔ÷’6ÎQÒn![é$ä¥ëš0RNH)¸†oDpFŠ\V~«4-Ìš%ßzÓQEÙË«¬ì¸¿µ¿+¥âÓä}I¡™*YÛ#um:¹ò©BÅg&®¥­S$+)´¥Ã¬6a‰ÄŒï‹Í9š ¸žë`FŠ·’\©Áy:ëêòn×HU_¹td²T fŽFO… êȤ~8jj'<ªvv|©=ƒãí?Dg¤¾—Üí)í´™Bî]ã!Ú½Ça»cø—°uÎH±à‘ÓŠQo§„Z±äZ­?¢ si…… ÷·öàc¥"<Ž ïK ¥QÉdä`&D såS'~JË ZP-†‡ÊIE˜®Ã¦¤Q¿/6Æm1ÎH11« S ¦ Wjñ¨¡ù b ¥5†uÉÂVkú’…IᓬÃmyDÞ@*|.HU¾šïš¨îâ¾§„v;‡ª´?«ïììЖ™X… HacHùš²¿nv`Ét^«óü„¸Ý¼¬‘Â᪹©LÚŽ üH,•”•A$U¼ ÂR¥¡£ö$áN2Û§ 2œ&S'Ë’åF¥Î• ð]ML¡Ñ:íÚcõ/´!dG„¨,Lb¨ ¤$ÆÁ8‚Tmý3f:ÃülO»ö˜ ªÞ÷§ÏKA e$-E–CÖZIYåBqƒ ªÚÉæí?ø EH; ¤*_ÍsITwrµi#!+‡`¦ƒMrp´kËŒ¯@¤b£ÒöB6cÓ–LÇÕãÿ‘׉µìŒ\p)%å× E£Ð,ŽB„8‰Fw°P†ƒ¥B–Úqk/€8:r0 Â$é`‡%QiÉJ§]{ÀÁ¸UãÊÁÀ®=d‚#H ðëdC§¼ý"#׸¯QIPÑŠÑÚµ››PX^,€]{Q>q¹J.~mäàì;Ú5a¼‹ûn'—mÎ\£—;#½kÏÆŒ‹iÆ mÊX#üNEŸDƒ°´2µÛÇ ˆ÷aÔª]{B8_A ft]PuÈÅ‚'¡ ‚p ‚*à )Ž·ÿ¸)¸Lw0g³6 ²³÷åš0ÎÑÕjãfÇð®QKíalÚµ-}¬Òc­…>»XsÍq£džLÞ°çDz0A f|)Å. ?(4=¶ ˜©i n¸‘1ä8*5:…¨á‘ºœ„5¥š¥ H8¿VÁ/bF(!šDé4SŒ·?€«&Lb°T·ë¨Š÷–&ø%nuÜ:"b„JŠÊBìB÷Üïh¤(j£Oò¸_-:0È–¾.*lSû[O=·Ä í‹Ð)ëm™ZŠO´ûÿ@Qvv‹[¤U˶Úãñ™Ô]a©êaäØŽådrú0ÔšW¦÷BêBi¢¢túе´uøÈÁ~©ã‚ÄÎ@ŠŸ %„ó…HµïÚÕ¶koÔÈjg§N`AÕ‘Iý šã…‘Ãcfù`¼7`*§ôOJKØ7ul !€@fó)à`Ü)¸jB)ŽQ²·,Ë+ÛÛÌ{±ƒñÜ€¡‰Cç&̳ÀZG…ðHQQ&>É*¾±´ÊïëŸìÑáÉÝÚÉe»K„¼[Ü|Ÿ#e½5oÔ€'cœ‹¢/3÷Ÿ;è½Æ¼מ ¤2i!xõðö¹(:EeQ=3<µæô!) ¡ _’f¢æ´8… ñDQÎ82Çrâ6H á|!RUœ¶ã=9’yûïôXLø*ÌBw9Y¼ì¨¨Q+üW:„:Ʀa‘©€àžIÊ^áƒ11ÈÖÞ_Ý-a¼}Fj‹c¸¼[ì\g¤¬LsGÊ?ÑZäÓ™—vù©¿4Çgwço R4Š9ä`a¤X–}yq´Ø©1›d:Rdi=â4¥ëÉi?Aå”’ÎñœÀÁ¸ RpÕÐRÌ8Pð•jJM^˜l»ÖV7XWš(=?faÒ¢ØQðA*84^ÁåÝÝëʶ;G¨36»ÆMèxü" å¸aÒ?¬÷¤u°ŒQ6[*U¤n[Øuù â EL#*3Ž×+º“` K0‚2bmúº!Á˜¶ŠÞx‹Ät2Û‡ â9H á| ¤ª;¯‘:äâLJ#GúGY;[Ïõœ«œ¨¬?È(ÔhKä¶È}'݃=ø)o¿˜?8c]¹ýVǎǸÆwt±æŽ£Ø”ý:Ýl|ûЍ]›*”¥n.ÚaÓå+ˆƒT!­ÝÁÜ1Ž˜˜åäòdù™é³&FZcÜèæOPôÂ[$ÒÙ>€Ï@ ®jAйF*:(&cSFÙä²Äi‰›¬7iÇi÷O﯑¦a˜2sS¼©GŒ'ü]{\¡ÿ‹Íá² •_ñ}†ÃÚB Šd=Ó©3Ì2,b2ãT”B£-‰&Êyâ×Å‘4ö@ŠŸ %„ó%Lb°›Ûä4j¢o²—·©õæ)ÞSeñ² S#¦G/1‹0ó ò⇨ªzÍ“Í+ª¾úÓü×S7èPt¤ÉÒ£)£WRWzÒ¼Ò3èwî’)”%Qt[KL¥rñ1ÀÁ¸ RpÕÐRÌ`UµNõy¹óI‹’6{nž2Qž$¯@RÐÃë'-1Çš³YV%Ù eïg¿!tƒa¬¡^C–¢ KÕÝD3 Î ¥d}G%bF†)6]Þ ¿ ’˜H……P¤ø RB8_B)ø±¿ø[òö”¸UX¯•Þ›·mÖ Ò‘J“RÅ©j'kÏŒŸµ&ÚdWØ.ï RŒpõr3 0[¹H+QKžª<„¢¹˜ºØ‘æ„ÏHýþt*uSIÞ¿ "-ÜyE9)ÄÕHÁU#êJTuÒuÐk´E´iÌæÙ)F£ £eÒe ´ÒJÕž›Õ0ÄB® –ø-Yé³rך!ö‚l‹ã–mÛÌíÌѵù¯Sª\8˜g4Æ'ãï† ²¡?ô$b&rU»}a 1 ú˜$vKUo7±4%¦ƒ)%Ó‹á`}:L=Nr0(6Égä`sç¬Þ¹zǦŽËƒ‚õ3´2J5JO 8ÑðSp0‰ ®¬WÏHI°ZMþÙúB§èJ ºzßfLï41þÍ`†ð›Ž~Ô2ß%ç¢wª)ñ:_hSL´jàÖ^oWcxc2Ò$¿{­Þ§CUlèÓáBn:Ö#emÑž‹^«@J¼ÎªÔ€ƒ¹©Þ®V`{™uBi¼I£ «9t ÷Ÿ¼<ôú©z¿ð›ŽqÔL5(½Ïö²ÈÏE¯U %^ç UjÀÁÞµ) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³šÀAª¹å‚GS ¦ šÕ@Ó¦ë=MÓ†jB)З}° é@Ó‰{Óqå`¼€Ìê"[ fI4«¦CO› ù`%£é`Ú£ŒA ô%”´ š4JÔDUŒ+ã¤Zî|­êø•>ŽXDZ\©qD³h:Ðt½­é8Ú«šÐ@ ô%á,h:ÐtâÞt\9˜‘žh:ô´ šV2šÌHñVÍj éÐÓ&h>XÉh:ÎH11« S ¦ šÕ@Ó¦ë=MÓ†jB)З}° é@Ó‰{Óqå``×ÞÿÛ»ƒÔ6‚0ˆÂ÷¿’79K Cvšq$ù«ñ3½¯ë𢅬ëÓp=™†ëÉ´¾µ·5/™†ëÉ4\O¦õï¢-éÉ4\O¦U¤¶æ%Óp=™†ëÉ´ŠT´%=™†ëÉ´ŠÔÖ¼d®'Óp=™V‘ж¤'Óp=™V‘Úš—LÃõd®'Ó*RÑ–ôd®'Ó*R[ó’i¸žLÃõdZE*Ú’žLÃõdZEjk^2 דi¸žL«HE[Ò“i¸žL«HmÍK¦áz2 דi©hKz2 דi©­yÉ4\O¦áz2­"mIO¦áz2­"µ5/™†ëÉ4\O¦U¤¢-éÉ4\O¦U¤¶æ%Óp=™†ëÉ´ŠT´%=™†ëÉ´ŠÔÖ¼d®'Óp=™v®H½}ü|q«Õj=jÝŽ¡ƒëþ¾|§­VëzëÔ ÖÔõi¸žLÃõdZ7R[ó’i¸žLÃõdZíE[Ò“i¸žL«HmÍK¦áz2 דi©hKz2 דi©­yÉ4\O¦áz2­"mIO¦áz2­"µ5/™†ëÉ4\O¦U¤¢-éÉ4\O¦U¤¶æ%Óp=™†ëÉ´ŠT´%=™†ëÉ´ŠÔÖ¼d®'Óp=™V‘ж¤'Óp=™V‘Úš—LÃõd®'Ó*RÑ–ôd®'Ó*R[ó’i¸žLÃõdZE*Ú’žLÃõdZEjk^2 דi¸žL«HE[Ò“i¸žL«HmÍK¦áz2 דiO/R?Þ?pWi2­èŠîûDwðºÑ^\¤z—ž½Ù¢+ºõèN`Ÿ)RuûØÁ'eZÑ9™È›½Ft¡Û3/.R½KH&òf‹¡}Õc§N°sEêý篷_é»[ëîJœ¢ÝÊ´¢+ºïÝÝcè_ÚËŠTïÒk6[tE·Ý©¬©×ÑŠÎÉDÞì5¢ëFêsOÊ´¢s2‘7{èžx#u[‹ØuÒeZÑÝ÷‰îà1t£½¸Hõ.={³EWtëÑ:Áþ;Ù endstream endobj 362 0 obj <> stream xÚ½XÍŽ)¾ÏSø†E Y–ìØŽ´ç¹­rÍžöý¯)  î¶=Qzšæ§þ¿ªÂúðßA¾½iy_>Þ¾Ü;£"¢ñ‡Ã+šÿSPèà‰TZøÿðïQkZë;¿¼mŸÞQk^µ^kiÇ+ˆ§w‹yöÊ3g~øŒ#YÍ㺠¬¤YdˉôÆ®;}ÿø§iðåîYX­¢æ¿-ñ!*²PåObç‡å† ¿Y64Z3s ¶¬Õ1¥'–ï´ß^Êw§3é,Ù, 7¥0!°eÃ,†¾Ê±áMtJïHo'ý'Î< B%bámIiï*ËÆÅ3›Þ™DÅ)^#1 f)y—;–Õű٠¼bâžj¬³mÆŸÂQ<]؉g—­ÆÖ5”øèȤ¸·õÊŠd®_E4> xr1íJÔÍé _ i_V„#íŒ^ÔM1ÙødÕüŸ‡NrÊi;Û7£R̆.ÛáÑ9 BT!º,Ì»&Lv…“ìÊÅÐü\ÊBÞPT¿“plPL‘p®jg#œ3Í´IìÕ;rd(ah¦P3V¡Å¦„¶$˜¾‰÷x»áºf‚æ‰òÕ{<ÏLÈž•`,«W1Aã]ºE¹PŽz6¼¡¹•¯j¯„^0óšX9e¯ëͰxåÕó ’Ê7y¬h€ƒÒçªWoÈ”¤æôÉÞßðE«"‡dMçM/ ‚m3hBJÜe?öf)Xž ­6ÊE˜…Ì©™`+Nt-ßI(¸×=,¥da§k ¤'VYÚ8DQ§œm£-Â9›$HN¥h‹½O;¬/ÑC1q/Ú:YÇÕˆh1GôJy7X )wJp0,W¬F$8B³„®và”àZ>x‡ÈÙ“¢™qèk?­KO½ôÏOô±ZY03Ù§˜´¨€-¾!×O1iG·¡7Ê8»†¤_A2¼I2»L$Z§U6¬Û$ì|æ»ð¼íáÐQ^Å¡ˆÃ°Âax€CZã0¼„ð‡Cÿk8D®]áoàpbõqAñõcÆ¡•z˜.€IO¸|ö&‰Ö)\~ €u‹ Ü¡„i°4SÊuüqé›­}¡—ܬ¹™V»B€ïï· •+ÈS­ÚÎÏ` L•¯0´Ë­ðjTÂÒl·^°¬˜F+3žºA!:ÿ.“gu<*Ý_è/~ùðÒò.¿ ,*t÷OêßyÚ5?Î(L.]:f:¬³Ý0×–¥ÜååÆ§ÏµàÃo.øåG…O$ëA™⣎"Ó’Ò€+sþ¶LSßM7¾!á!ðåZ‚‘†ëàíãí'âh-Z endstream endobj 371 0 obj <> stream xÚYÉn#7½û+úÄᾂ{$IN | r 9ƒ ùÿC¸T‹l¶,†,u7Y¬åÕÚrû¶Éí‡ ßoï/_îÖnZ ïµÓÛûŸ›ÊOdþï£ðÑoAZá¬ÛÞ¿o¿¥TörrRæ_ÚHiuþØüùš?QJg.1?Ê ¤óùÖ=Üå¤]ÙPwŒ»xSžøË)œT‚U¯p]v]qGþŸWgêž”U×|m/¿¿ÿô"û¿6üõsÐmJŠ$ó_0ÿŒ£ŒÞ¡|Bi‡´£³,·Â*vkìj[Ù©2Ó"–Uån¨w’C‹8÷娀k³ l*wó:§.'+².÷A-U%´”\Uqe'y¦0w—X‡(Œ³Èe³³È¢Õxˆ³Ý*•­+°d@ï¯$–Bf/§x6 =u BYAвhM8…T™÷)y&Y˜^3Ɉñí»ª/«±âƒ«1?Óö,ýõ:ÊÖÕV$*Æ%åÞÓÆ{Qáä Þ&á5ך½Ê tUuDI\Æ ±2ï3Æp¸EÔmÑÍè‰\‘ûŽ•Þå†-yøw@õ^¼öLí¨Êˆ éD BHŒP@Žƒ&±@Ñ©w´Áõ—*Ž¼Ò‰f·{¯ðáêO²k‡VÞþpîaWX‚Àx!am«­Üzг}E³$7H…A=AH5Ÿ¢¼HÞÃ1ÉÝQ¬ŠívU£EB Ô¡?ˆx³ZÖƒÂ,ó°p]þ« ÃyÄb?øÆ`|çöô`ÒÅ»€¶½Ó•ëŽ×õç\-‹8ò—DÆ÷çÑ_ËJßuðŽÞã—.J¤n-p âAã1¤Û•e+%ø!vªc묾­†Þ’¤V¡÷Q²@¨¥‘°\cÔBÀkhr$'Á èÄíÉû¸ÒzÞ¾2Êôdp·v'\zðŸ¬8$rŒnP1ð `D$ni™Fê߉ߘ´ÈBhÙa/Ó˜–ׇf¹¡œöJÎ[K(e…±~UA¹œjS^ATÙ˜¿5VRƲpƒßm{\>i,Æ!ë¯ ^ñi7glaTÕiJ•ÖiQ7=±Ëï±î..í!ß»€˜«P=æ ãò=XžXh¶1$¡œ™7ºÃ·ÍŒ RIhfŠ#u¬õžDmçë(„ÅeØãu±g•H¸xô£P#!«‡Bôè ½+¯‹Wr‰8W«QEZ0&ÇÚ'pÔŽO‰\XõµðÞhÞ§ÌûA [Mó‰êSt‰Õ‡iCy)´w[n„S Ò†5>c¾¦Žþó }„9}PÚ@Ú'FüAÚhí„ÒæóiÃìÓwT#Œ‹;êµ¶t+× C·ôÈ3¨7¤€^).Ðì9š­ýÈYYÓÉ:ÝÊ-y(¦Ìîž =ìƒ[WŒr;hÞà(? SìN8ŒB­Eâm0ˆ­¥5C Ɇ_û†ªW›àC.žÑq?cÈŠ‡²¯fµÖ87ë÷¢RZ8ßêråÑ­kÒ§’8ŒËäe€Q®.‡ÉÈÃy»ƒBøDPá™ @§ì‚‚ÜMÙÚÚ4ÍÞFäQwÛùOS“ øÔÃùA^œ¤µ«Àκz!*®À T¯T—íQp¯Pp0š·lM#Ì´¤˜r‰¬„V4 ­åMÛŒ †^‚Ç#Yýô”1œ|¨ª¹²,©S?j¸Cù³z°‹âÏ|²9Úð¡œ|ÈZy6÷h|åß_W<4G&Ÿ¨ðTpÕ)Z×’ó£*/ºÜ-ûys„4èü°º“IØ\ÝÍ”,í#y-„r£Ðs‹jJà/í—æ½x‡uO¦~ XìðÃYÁÃyãnœžÒéû¥© _S„’kä¾ÊtÝÇþ¦yÓïÇJËyÌšR@(¯…dnþÁËÈÚ…¤‹R<8_{Tcmk¦8ˆ$ª=%ÙóƉ¸KN°Þ`¹>kqÕ0fÑ×Õƒ^«±ïûò›±ñ¡ä˜ÜàÊM†#tæ Ï90,œ¥µNiýbG苪\Ù(¬Ç¢íPjˆŒ#Ö4Å×Pë—Âè¯G™Þn6Iîyc,ÊоCïšfïÛølÎïø¤jB²·(€ß[‹ÚþýúûµW㙼0uÌu9ÎçÛTcûåX&4‡ë0Ó–½âÓÂÕœÄ÷úéhvx_"C§ZÖ¯AºIÌÙƒ‘¶žËÐæ9ŸÀ!¦ª€—›5§¬7œ_®â ŸƒÉ M S)ŽÝ•H†&¡uúæ—sÛø?IÕÞ endstream endobj 366 0 obj <>/Resources 377 0 R/Length 72/Filter/FlateDecode>> stream xœ+ä2PÁ¢týD…ôb.§.#ˆ ˆ6Ô34R04Ò3¶#…\.ý4]] „BH—†¿‚§fH—kW búÏ endstream endobj 380 0 obj <> stream xœ]P½nà ÞyŠÓ!‚¸]"!KUºxèêö0R 茿}Ï8J¥pÜ÷sú8yé^º ÈJ¶Ç>DG8§…,€cˆâÔ€ ¶ÜºzÛÉd!ÙܯsÁ©‹> ­A~29ZáðìÒ€ä;9¤G8|_úê—œpÂX@‰¶‡žÇ½šüf&YÍÇÎ1ÊzdÛŸâkÍMíO{$›ÎÙX$GZ©´÷­Àèþq»cðöjHè'ÏJ¥¸ݨúæÂøyÇÏuÆM½MÛ¾}i"NXwS£m¡BÄûúrÊ›«ž_rºsâ endstream endobj 381 0 obj <> stream xœí’yT”eÆŸëºqD\)ÍmrGPDQ“r-rKÍ4„A0ƵE´0tÌÄÜÓÒ6wQÑÔLm_qkWK-Ë%SSÓl¾:}ëùþùþûÎé>çù÷Þßs& ÀMÊr&evä¹²œŽdƒc ¬×ÝÛÀxÂÛˆÞÆò†ü¾ß7¿a½7®6² ¶Ö¨`IÍ îªeÑ$X`ÏÚá!* 0´†¡)bÐ;62&2ÚÚ2~’ýï‹ì£'ÛS2³²³rsí}#í)9ÙÙ¶ä\‡ÓžãtÙÇ;ÓyöA޼qùöœ {†•Ι˜åcOÈs8ìs2\SóÖ¸4‡3ß‘ßÕ–˜’doèp:òR³í)ãGgg¥ý™ ·OÌreZ3œ®vŽIiŽ\WVŽÓžêL·''XMÿXúg}¤­Wž#ÕåHÿ£±"—“7ÆaoéråvŠª•Q‰Ìψt:\á¶ÖT{‡è蘈 v¬dl%;U²s%ã*Ù¥‚í£+Ù>ÂB‡×&ù?–¾J¶÷3&Ú’µ úWáÞí=»›ïÖnïÅ0O¼ožÏzkFZßžy~ ÏîÙ[é¹ËçúFXŽ/ÞSì9ã,»Ù Ì[t½yQPèµi%Þ3%ØtÎÛïœ<ǯ3,Ýæ9éÛæ°…ú·úöÌ\ï=ºWOÈ3Ð6Ì:u‘·Çâå‹`!a1–`)žÇ2,Ç x+°/áe¼‚WñVa5Ö`-Öa=6`#¬ÃÀflA)¶b^ÇvìÀN¼]x»±{ñÞÆ;xïá}|€ñ>Æ'øe؇ý8€ƒ8„Ïð9¾À—ø _ãÆÅ·øÇp'ð=~ÀIüˆŸp §qgñ3ÎáœÇ\Ꮔ˸‚ßp×à×q>”ã&~‡Ÿ† )0A¬Â`V¥ÕÂê e Öd-ÖfÖeoá­¬Çú¼ ØØ˜MhçílÊflÎlÉVlÍp¶a[F°#Åh¶gư#cÙ‰Ç.ìÊn¼ƒÝÏ;y{°'{±7û0‰ìË~¼›÷0‰÷²?“™Âû8€9ˆƒ9„÷s(‡q8à>È‘Ň˜ÊÑLc:Ìàf2‹cù0³9ŽNæ0—0ùtq<'p"'q2§ðQ>ÆÇù§²€Ó8Oò)rŸfgrÝœÍg8‡Ïr.‹9Ïq>p!q1—p)Ÿç2.ç |‘+¸’/ñe¾ÂWùWq5×p-×q=7p#K¸‰›¹…¥ÜÊm|Û¹ƒ;ùwñMîæîå[|›ïð]¾Ç÷ù?äGü˜ŸðS–q÷óò?ãçü‚_ò+~Íox˜Gx”ßò;ãqžà÷ü'ù#â)žæžåÏ<Ç_xžx‘¿ò/ó ãU^£‡^^ç úXΛü~A” @©Š‚UU6USˆª+T5TSµT[uTWaºE·ªžêë65PC5Rc5‘]·«©š©¹Z¨¥Z©µÂÕFm¡vŠT”¢Õ^£ŽŠU'uVœº¨«ºéuW¼îÔ]ꡞê¥Þê£%ª¯úénÝ£$Ý«þJVŠîÓ Ô Öݯ¡¦áz@#ô Fj”RªF+Mér(Cc”©,ÕÃÊÖ89•£\=¢<åË¥ñš ‰š¤Éš¢Gõ˜×šªMÓt=©§T¨zZEš©Yrk¶žÑ=«¹*Ö<=§ùZ …Z¤ÅZ¢¥z^Ë´\/èE­ÐJ½¤—õŠ^ÕkZ¥ÕZ£µZ§õÚ *Ñ&mÖ•j«¶éum×íÔÚ¥7µ[{´Woém½£wõžÞ×úPéc}¢OU¦}Ú¯:¨CúLŸë }©¯ôµ¾ÑaÑQ}«ïtLÇuBßëÔúI§tZgtV?ëœ~Ñy]ÐEýªKº¬+úMWuMyu]7äS¹nVû_ÍÛ¢Šûز¹‡æ»Wšå÷,0·ß¬’ Ìì³ ÝŠ -›áŽ .·úâ¦ÌèSôGtÇl¿‰.±Ø¿NiŒßï8•a¹õ—ú†yšùjxâû³¬ÌZ3´ÀøM”Ub:Êô›þV‡iUVæ7q¥1+ý¦¯õGǃÿ«Ù_ömÒìà endstream endobj 367 0 obj <>/Resources 385 0 R/Length 1601/Filter/FlateDecode>> stream xœ¥X;o7 Ýõ+4ÚÃUô~Œu›¦Ð!íÝ Åu"°‡¤Cÿ~%’ú’[mÄ)‘:<$E}ùl¼¥?¿¼³o~óöãŸ&¸ØìréÑüŸâ}¾.ßç«6Ï3³ÿÇ·Åõr]\ÏWåôüu9Å\i6”†Â(¶¢ Ÿ_~·OfVP±­Í` om.ã×\OÝõëýŸ–Ñ;¾];£ºæ­u½\:eö5c^}ídêWjàב׌ÀÑ  ®D$×—bQ^=gʱ(pŸ¤}€ŠD¢Â¦Hí1V%_@,ú"4cQv%æY"Ì©«V ‹´­ˆ<ézÕ«Ö¨Œ»î࿸ԓž‘Ò,èD\è/G5‡Qs”Ð÷ÝÕb›Û×ñPÐ'àzŸ/à—hæþn˜Á«9“³Ý yëtfÖ0¸o¨§†E>eÒ6ô}Ÿ'âhiJ [©=P®„¾¡ŸZ{ '¢÷ èÕÌp3Xl°¢ö*‹—ÙŠKÖqh`kH¸ø€r9_ÁTOß§WÛ›Š¡óî)G$ ©±iPDz݃ƒšÌ<}]gŠ ”ö¾±/ñ"±™½Cs¦f»gêäøÅ«€#É(vJ¦Ÿ£œâg£»OäŠcÇ”G ¦CÀ ßiè6×èê%™Nì.QåÔI¤ dV³HÛQ®ºŽñ„Y³¬!zº»¦o3wãíỜ{¿’í&Ò‚}QøÚئH¡u˱ 2OÆýŽŠR\„wÞÒEƒ"ÑìŔٮ™±y´Ò)¸di\«>î ˆ¼ |x͉4)%1¡³ûÎ=‡–H ËãH3ÐÓsLÖZÓ Ä„ ÂÎÉS/gGçSÙÈX”¨bËÖF¨ï”¾˜Th“vEÎIXq]å¨Å”IÙ®™49y1*¸H27%!¡'æ;H² Š,‰9i1&tÔôÅi 9áAi˜É„þ+E+]ÞŸšãƒ8äõJš&yHjê O—Ÿ^¡o % Gä-›jØ÷æJÏ^\*²I´ç4p\F—WØb+¬¨oaÏNÚ¿ÉD ¡úA+ÜæH]\[Sª ¶5<}$ôr% Óüð×D`£]Û^^T5NÎçdÞã¼ ä츢 cQÂQÅŠwk&ØùfK_l*´IµçDpXFWWÔjʤl×LšÍ” °)^µÚÖ2£2 B*…†‹Ç$‰Ø¦3š*§Æ 3šÊª“ñšÁòŒÕMe‰v×åæ =DçˆNµâ93#š44Ðälˆ¨`¦Rè¼—Ä5ÕrÎG³}ËÕ£ùsƒq­é«°e}qâÎ=Ž]7?LxëàɉŸÊ·¤Ä‡÷7?ÞŽÊÍ;u×SÀ†QY§áOdøöl>˜¿jσ2 endstream endobj 388 0 obj <> stream xœ]¿nà ÆwžâÆtˆ°'ñ`YªÒÅCÒªnÃá Õ€0üöåO”J€ßq÷q|G/ý[¯•úá ЃTZ8\Ìê8ˆ“Ò¤¬@(îQÚùÌ,¡A> stream xœíWkpÕ>÷îCZ=WÒʶ,?$¯üˆõðC¶e;¶¥H¶ãfò´ÝDNM'Q‚MBB^C)&vû-MMš2)¤4ÓÙ¤-“¦LJ` ¤ÓeBK[B[¦ ¡þP $^÷ìÚq(I˜v¦?{×òÝsîÞ³ç|çÜïÞ&ø20à[7’Ýú‡>¾ @X @W¯Ûy«o[áŽ7ÌGHÞ†­G¨ãù,€å9”·qxφoî{-0Ê­ÏmŒö\°=†º¦*¬/0ËQþ5ÊÜÈ­»›2ÌA”?Ðäá-ëÐVùkö”«F²»·Âûð ”(û¶n[¿uåy;Ê”+€jÎrx¡·(Kxƒ”ž ‚ÊŽ384n ÀSÁÎë Xëwø•ø#À‚ÿR’ƒ‹àgO]L¢ =hë wj b‰°D¬¨ _íËcŠÁ„fë­õuµ¡Ê€\V"´P‘Ýz$ ÖFË›¢õM±¦:Ò4ŸÔ—·KÊϋֻmDöëc1ÆÏðniVçò3ƒ’ÑÙ·'ÄÒ7Ä|/on¤½nƒàRÁeŸ0•ª†Ãö®jÉ`tÝFδ{ÃÉ.–}53óŸüFpæy½No8FzÕwóŠ¥Þb‘zè70D¤€·p» ó1¶T¢­G¤NÙ,Ф‹8 5¶“Ü"òµ„ÇðŒ†m K6Ê9J'“UU ,Oa€Á`µ]ÕË‘¦Æ†Ê YWøëK¨gôžgår u¤±!‚Q3¼kF¨@xÉð&SëÊ’;)` *GP6éSwoY°lì¡eÍÛWÇŽªoSoî&åC'¶D3ê-÷“ØÚŸìØ’VÏÇ*¬^®@äB„]/ó£—óØý=7-\rÏÚ¸=´xsûè/w¤Å-'†ÚGâSgŠè¾¡£™[¥z ›>ËKÜah†h" ‰f¶ЉŸ4Ê-#ôÒ©²ÔFªl¬s €'­"†Çì©„D1–˜–Û<·d°V.«  ND1Ûù±}„‘‚³­PÆRJ‚7þxô®÷¿WÊZ³xäsŠåÓ¨‘9Ôf™­ƒÎ¢V7G‡×«Uª³œnkúÞo VwX¼¦cžƒ·;Ýc‚Å)q¼ë?²—³7N"#J׉·Þ0CÆíŠN}(FVõ¸¼ˆ‘×]Ô(Í÷M½+06¤ÉY.ÈG.X ñDS2A{ÜBi$=d/ ¸í”/GÚ¯D-eBg²-ßaæ‘´%´T[Bñ+¼Ð'ÍÍàB4\lT.ãÑ rD%FüŸ1ÅúSc·+ jx“‹Šn1;ã–p+cw$¬ ß»ãÛÓû¿‰¹YòtçØM:w˜¿ªsǃ¹ïªo?Ÿ#§ïüYnû°Â[Y7Fë‘4ÂÌ«Qþj,íïŸa’eD˜¬îC&±u&i_|ø)õ=õÄåº1ˆX77BG"ûÙ…B­%ßÂ`ze_ïŠe_HÅÛ[›CU®¿Ô£—La]½V2Ù™’Ávíš™ÃÆ€•âw]SOp}}j㜵áÒ÷ÎëVî‘´RGKSŽÒc¬§rØ…B+çžUÏëJÞâ˜ú½›eg”û¦Lp¤2Üx?ST…. =›)¢ºÈ‡WTÚ35'%ÁŠ·×nq­œzÕÃj*¯s†ÅÐ)`éRìK@D î„iÒG²d7¹ƒÉ•'㮚ÿXW9œù-áÐi Woʧ99Þ¥0©ì¦Lg&uùFN'”KíLÉ©qVN(f-V´VеIId}ºßÊ/Þk·J·WéP89‰&ˆœÜ¤P9©Xª Â!_W®3: টK¢Çh½ÏwŒ2ãIY!Ùd7–èO+‰Ì€ö¾p‡RŽº[áP$z1Š+RuXgQüªÙl¿ÑÞö`®&žé“*×ò3«ƒê3ô9Üa¿íŒ8~I5®Õ_i*œÕËÐË=9þ ,çÎÃb®ó‹P~RÛõ†=)ÂÅZ\mxÂbΡu¾® ÷Ë´öÍ«[`2¤Ö(2?yx÷,Ö- $Qd˜Ç8¿XÄÎKÛ¬öû7›sÑ4›N‡­°ÿÓ¶·8ø¾&º¾ endstream endobj 396 0 obj <> stream xÚ­ZKo#7 ¾çWÌÈTï°c»ÀÞÚæ¶è©E÷Ò=´—þýRR”F¶'Ébá3#QäÇ7±|[Äòó“¨?OoO?]Y¤Yµqjyûk‘ðBÀÿ.¬.¸Å;·J¿¼}_¾¾!â ?õáÙ O”Â8ø(!,<²ðÝêCxIÏÊæEðÒ\Ë"s†Gø)“~û’ذ‹kð/ó± 5°¢í|¬¼D{Å#ÔK=ßU€Iqg±‘ŽNÏMá vèºcÃÔ©®2m}ó…r¡FO3}ü-Ÿ>}ÈZ’”Ž—åw[tÆFëJ$† é,Ò5Sq/™¦MDÅ9½4ÜüÂ7±dæàXc²›@Ü" üÄž¶‹ª3ŸÒ–öªâD,!Ÿ±ÂŸd“‡g‡‹¯¾¦bÓe  O©Uk4¼ŒŒh 'E5e ÑÞ27‘ì«>ÅõEÙ ÐüV’áæƒ|EÆŽ8æÅ¾ZxáÈâ"³ád4A"•m ɾˆò·:o㤭¸‹›.Žv6 ‹… ¨ª¤¿‘§Þ8’bU!tž×A ¤ŽÉûÈ|ªÉ3ð›²BÓ)Ìs¥&v¸ «‘˜N©¶º†­®19Ä¢¯É#Sð–ø\Oô¾|>À3c½tFY]Ä¿°¨©Y,2ùÌìoƒy”8ÍdÕ‘à0”dýê½Bƒ9¹q{_ák@ 25w„2U—ʸÃ8"Ë#²oQ¤‚^ "Æ !0#R¶‡æcˆo¶˜ü¶¥'ˆ.ù²˜ò·¹BÁ÷a#‡aíy6);=sÇrB–¦ŠèÑ@ÊÃ+W:7×m8KéÍ+ÆÈŽ5]S¢TNë\’”e̪T _ØX®Âä’ŸêÁ *¦F‹3O‚ÙtË“hO¢ðÆ_³÷(“¾Ÿ&~Äp•Y]t{ wD·ý¾Õi4W,Â2 ¢Â‰aÁQÚæFO¹1;q¬Â$ŽÿýVYÿµpåì*7BtÇ™ ƒHœª13Í ZªUömq$± #½€=A˜ÇêO.μ؋{^œ÷t^ìÅ#/.ç {‚ž¥ÍbŒDmšèô‚Û‘|XÓ>]ݲrIÏÏ,*‡zRáj²eñæ…U7…‡®xŽß–©}¤½xÔ±g ÌV‰ê1³TÀdmÀ¿4…ó±ÀaiˆüùC¾ñ8‘÷~´3¶‚cŽ£Ë"³Itß J8 \º9#®øg+ßš7õ…Å®ÒkËßMp@Ÿ5MݼX¤0Ò´(qE éÍ¥R½ìƒÅ@Ç+•åå¯Ö]Ì âXz óJvMúø©õ$áÕÁ¥éF>‹úƒœiïLTÐÇÅÏÅ»ÓA¢] $w*¥¦1§×àÝb¼\áC†l Æ9ºkVÖõ¥-¼•§iy«”µ ºó,T‚9±Dåu.S-exjÔÙ–,ÿ0YmFPþæL$!U ­‚I‰ç]Zdê¼µBÇAzØ=Õ)“.ÒİoÊÔ/nS¦MËùþ “%’g¦aÞ4V†ˆužûÞî…E}âš¶Æzì½í«–ÉØ·¯ýö2O?²ž©«F³d6^µÃnØ×ƹØÍtõænu€¡ânW(m9{9䑜¯TúMùÅ·Ô4á6“Ë- [Uà-¾ïºXN‹ušMöp|¯M77jÁ¬6;8(gÍÆ :nv‰ˆëêàl¨jÒ©•£Ú¤’^6I.Ô#µ)UàvÓaΆLúMßOl˜Í•°ÃŠC(Ä)MÞþ–Ïkn8ü8„hŽ­ç«{Þq–8àLæÖ8Ø Ã•®lL…Ömë2ócÎ÷àâM+hÙâæâÍÐÅÛ´S×›N}^ Á×húU Pщ)–’.¸³’^T—Ð&C~'¢Æ ²ýéRM­åH7ÌÇè¬y¾MݱÁ, ‚•¦¹ r•P! Øl§$j:%yŒ½6vÕ6Ž”ø6™P ÎC€ËñN’©¨³`¼ÌÀ_ð)Þ‡²][5®Á¢­dV¼ê÷RÍ.òT°++Ô‡ |â B¡1;^[´¸v߈)¨\¦7Rﺦœ —Úu\+Æyh)ÃwÕ(OÓ{Éáös3F9»úv¹ Z’%_ôm˜Z”'tuoüd¼lðq¦µÀgmüö¹_îpéÆ;˺SŸkëÚ½ñè–‘Ÿ±-ÝéœÛe»Ò¹ãädà xÓ'5X&ÝNv«TVE÷¦ÝH ½Ze›0ܼûj·˜ã ´!xÀ"#×á¦zk¯ƒ_mr­­±ŽÿU‰éNÞÁ/O‡žY®J€¼:@}jï·» zÖiËüQ÷ª•ªrÐ ðËÕæ§jÇh+á\ïí0ìÛ )FšÏôn»@‚žÄ[*J!é> stream xÚÕZÉŽ$5½÷Wä´ña[*•”µ!qú†8àÂàÂïó¼¦s©êZ#4Ê©\ìØý"ìh9ü>ÈáÛ7Y~oß\, JŠ ñoøømPø"ñ¿rJhiÇ,”>¾ ?í¤Tnÿ®X{ÜZƒ[‰’2N¿Òž÷ïšÊ[i]}²x´Œ·¿6ßÛK÷ÞÄoÛsÓœ3.ð°§x5ª§4;qï©(8NTûwãgë€ûqÿóÇwoç·?ßÖªJ!~ùòöÓÏrø¿¤0Á§¡_MZx‡Û?†ß¾ÿWhÈ+N "°fÛûD[-\œñ‚WŸÚÛ°+ö1Õ*ÕF Ö“°´ÂuHÊWNß\œÜdã H¸àM¨ŽRrH>ˆ”® j$‹V’Véˆ{ éP<~©1²r¡Bꇽ`σ“F(¥ ›@—LÞh³“|:ÆÀØ»W4EŸNqÞ•˜ Ù†1Š’-ñŽñi´Åhö*˜¤í­#/ûwbU˜bŠÔ a@ËØÈ /Æ"â{&V\8ùƒY›£|Q $£È6=™þ) œÔj£¹Š›•J¬²YônZMqu‘¬“¨®QÎK'“‹D¢%¦qÉ6EÈô¥ÓäÔˆQ1*·7rŸ¦Û'i†Íã"y®n¢k_³‚X· ½î%øÇòœ¼ƒî°É&cRðù§ WMÛL·†¬‰Sï¢6uº2ÿôeÌÁ_1y“ýjIÔ9Ššô¾Ì¢S PÁ¹B3pçL;sfžW‘|b•™75zGæïªˆŠaN½hÍ4Ô; ­1—WÉ$F¡›Ñx´•‹˜„GbÇaß\/ËUŒ«¡6DIë-á”Î÷qŒ³ù×\Ê;Z|æ0aÙv&t âìS”ª¢Ä8™,ƒš Ä"…¿~/¤~ø¶% ­´0ŠVTm(³Xˆö§„—èiŸ¨käq^ò“crÈFN´Â:ˆGAØOò™ea4m&ŧ‰Ü.M YëH}UECM)ûS|¼#Ù`°–1Gß—®ÛÉ*á¬~ÑN¹ËNF å[VºÕpr¥´Y¶Ùb‘ºÜ©.·ÏJ0V8àê" Ágt00½!Ÿá})©bÁfª6Í“ÕæÓb³1~WD¶Eäs{[dÔÒ· Tö^ãæÂäzm;rS ,b}t_S s£Z¬p¡XB@†GxÄuÚT‹bš5¡©EwÇÌã康±f2xcFg›atFœ88ÂAZ·/äuf’Ÿ —Ç%fïéI‰Y kÿÛ©=ÐŽò|€†ÐÞ!аå1Î]‡F"@–|1…žùŸO‘gH‡²Áœ¸ÏòŸ!é ’žÎÛR)÷úv«JyìmB‹ìEN;×÷¨eךóßåÒÊYÌnÅšsß-,rû©5ÄouYcoÛsXmm·²™  ØÞÒÞíZ³/‰ä'éú®àžâ}žÂ]8T{%W{õáŸîê2Iy&=áýÔnÆ÷Só0y?OÔmRÙÔ˜ÌÉ(ÿ4¶4z±ú*êRc´Ú©EZžŸ]=f@-ó¸ITâJ- Sá×ÚÐ÷ŒV½Ä¸Ät¨Ýð<· vÞÍsxnîv›é4bÑOŸáo#Ó}~Z³ÑÓì8VžËˆqb]m»ˆY܆ù¶§³nõ*.Wž¥]ÇÊ—û®¯iTîI/kš2ÖõKኪ[mõ2³ÔLu¡ÔŽ¢œwªãÉŠæv]Z…©d2mí4Óe}(Ôu4U_—NÛ¶ÝM¤Ô‘LÑ2×j®¾m“7¤ïª½%Àæ·~ï;ö8#XZóÃÛzš‹\rE©ê¸‰]#V¹+«QæúÎ~Ý2>ö6›tNfçi¦¥›ÿÄ£Økì-‘Äs%\;ÕºŠ¯¸Ù¿õvˆ6Z˜v ÊgÞŒtÈ/o8M¶—ÝߨU¯é2õ›Zo8ãÞ*q¥ëªg´ ¦!æÓõ/qù͉Øü cí endstream endobj 414 0 obj <> stream xÚ•UK®Û0 Ü纀J"õIý\´»Ù]hWAÑûoJêcËvòЇÀ‘#QÃ!9d@ýV >Ÿ`·þe”5¤"LR?§¿'íÀæóî5µ[uãüåÕôçô?{à¡ ôí~:ÏH*éä­Guÿ¥šµÚG¯ÈDí¬S÷‡ú~aϯüDb*äÆÈÛèÇÁð›Aæ7—ÕÜÆ÷¯k :E[ÑqÚQÜÃ;1ñJqÌ ,ŠÇÏT|g²K7±áYvùå„.¯r- u[Œ‰êÝÈ/L½ 4;æ ÉÈiuá§OÏOSá ó88'^]#Tïä*ª$ +ƒI0œø3ã.5ˆkÏM‚{9É$€V+ÁɸKØØpBÎúyØ×µÏ¾KÈ pûìn™_AØ*£G@:B: ²µa ÿ%Ë9–cîåN«½,3VÆ\êP$(¤Í^`àµóñbÕp,EôÂÔ„,ô«Šrþ›ð©¿°otO ‡HÛk‹ E\UCa×b¶)ì®^KêÖ(ZºW›î=mfC¬×o¯¹f›·^9 ùÛjݦç õéÎØiíÚÊ5wÖfŽÔõí¾VÛƒ¶ž”u¨wujb É•©¹¾¾˜ši?5Ó³ù:'ïÌOc­NÎñ8·Ú²É‡(èmà¿ÚA'šŸéa)OÜksBnéÌ®ª5ÿ×8…—ãr­¢NËÐF܇5ú‘.ëgí¢íÖcÕ:+î¹Úök®»á™Èí˜úÂÛd5±N¢áúûVwüMz¥ã´7¡| endstream endobj 315 0 obj <> stream xÚÍYmo7þ®_Á s9äpH…Ç©“¹&°»ö\å­­«-ÒIî×÷™µ,¯_Wr‚Ã!Pv¸|–Ÿy!íƒqÆ'ÃÎ2ÿGC^ÁàéŠñOOÆ—€§ëñ>nqb"ÇAðÁHŠ&“(&E´<›TÐL&F3šœØD2…´éL‰ú̆&Á"_ºIÁ¯ê@€Žä#& b(¨Àèâˆ.*RBW«³ 0‰ˆ®ì¢.”¡fÔvFÖKê>)-2ê:µ‡!d§¢]xãÛ.1>ø‚…â)ºRãÙA]¬Ï3ãáŒ'Œ °ƒº,Ó‹j |R­YÕo}ÁÐ!â;@À[â01CȰPTËCÝ ¤ËD?ÇèØ2}B‘¬#zEáQ…v6 ‚$ì™îOÊ4 3¥%tþ¢æM˜©HÖרWlHÈÞ0ÃÆ3@ÀP„YG†9ª&0‹²³sN~€ÁLtjOL #£6=`ôèaU"2 all& )@Ð…(G¢*"ì‡q¼f‡’.º`”¤Œ,É`™Ø¢¦+˜¨°UÆR£‚Êrg„H»BLƾŠ_¶ÝHe·è¨j¢ê0¸.±u 5Æ8Ê4RŒ´_a@Q0©#HüôSõúû ÿÚ­~ûýßF²,q² ‰™\žnn>ŠƒÑ¬pìÅÁäV½©çÙ[åuŽ|°ê¤ÜÎtÒèƒÕGbûÁiåÖeøJ¥>-0NÝ@åÍÍêãl:Ú«›ƒêãëj¿þÒ,ßÿzQW‡'uµiêI3Wª·ìÖóéålTÏÛP¡oþQ‡¯¦_´‰Ý¶TÎL6—C 2ÃçPEZìÖd2m“+ ´ ¶A ÏÃåô-´Ú»xÊ}‘¡ëõ¿}8úˆÌ»s¯–n1ï΃&¶Çl†~Xjû Ó…t×t!®lºÀt+@°_*W"„o¨],#é¥-kZul5²%Έû|TˆOŠRÆÐbRʾ âœÕ¬ë‹X­„Nh\|/."ê$áuŠÉ‡waMïOtÏœåÙÞŸâÒû%^y¿ä¥÷oÏêa3™£áx65pgÔæ%ñõmËøñhn§³“?^¾Ô¥_Žêµ>ºZìÏ_š7{Ͱ©!N¿exCšM®ûç†Ûpí5F«xÇN Xº®¾¡êÕp^·¯ßoíþòqï8ôûñâÇxR¨vƳy³}:œ¡¯Þr*íH¯ëùh6¾ÐåëU‰íç \}<9©þ5žlMæãNû¸9ø6p~ß(ë:­äÃö§Ÿ&c :8 ºçXÚàFó¶ùëð¼~dýèݞϾšè¹üb–æÃËjçlx27ÜÂ^)¯6pvòfÃG8 %½¸ó8€¾k†gãÑÖää¬6®Úš”g¹p¥z¨¼Crµ=¼x[ON›ö«j¯©Ïÿi²k…·*´Ê üDÞÈ×.ïCxGôÎÅ,=\œ]ÖíÛ:þþËî¯[?lŸŸÉ=ÆC‡9­ÄÃog]ŠúK&Q0Z1é „èU¯ÆÛp‡ƒyUÞ^t‡|£öÕ5ã‚ïPuì†ú9NªÖ#|K.vøFÜá>z‚nzíy]ù˜ñc^·žh‘^rvmÒ»c”=yíjâóç϶¹Tø<ãÔª'bTÙI½Î$-ÒƒUOT÷·î”’[-'·Z>¾‹úÝ+:8B¹Nz?œñ„§€Wu’ ç™Þk G³u·NÂITdQ'ée}zFF/r7£~nF×kóëŒ^ü·Ÿ½°Õ?LhOzušzœ'y‚%¡Ë’WcI÷Kîã"¼ÍêÅ齩þ¡ªÕ«þ>œg½~Ikqé;œÙÝå »çs†–œÑ¿‰|;gôv—2¶ZïÅt…àL 0ã úîøÃv«1çnQÇ YÔ轸èÄf¢^ d„—Ô‹ó Æù_ß$1ñ]F_ÿ˜õ7Ûׯ¤ endstream endobj 393 0 obj <>/Resources 419 0 R/Length 89/Filter/FlateDecode>> stream xœ+ä T(ä24P025Ô³01Ò¦z†F¦ ºF& …¢T…p…<.  4TÐ5Ð3@&¦ QCSK …ä\.ýD…ôbý S—|®@ 9g7 endstream endobj 421 0 obj <>/Resources 423 0 R>> stream xœ…U[Ž1üïSø! ØÇÈ¢Q²ùØ|ds)…û1;;^EóуqCQôŸ­Ò¨<œËóŸ·—òõ{-/7®E˜¼Ž"fÄbå 3‰DyûQ~N·UâñÎßÉCvw¥8#üƒƒ¯¤=ÊïÂi˜Åq/<ŒBqHÖ óiÞŠh¥&~lEœÉŒƒAOÓƒªhÞ?ÕF+¯EZ§ñt°ïܯhÌT¢NUGÑFêq!8L¤`E¨Ë ž&2 Ré§]lP1¯ï dq^ï']Ié´¥*‰õ œ(1B‰k¦ä€'p£  Yáî—(,é×˾pÜ´m×I󩦞|™<™“·ó ‚D[1Ï×´»`{l—ø ñî0º£O\§9.ãúuЉͷ2*9'yÆ”‚[r‘jËður% †ÝQí°;ì0#ÖÊvÜ&% ï~%œPA6TvšI¤{›”îÖ(ºm…A•2ZÍtg€ó ÐÆh”.ÔжŒöhœ!ZƒJèàL¢5)Gi M«D¥Ú“¯ÝЃÈGu¨v <ÐO5N++qŠ’N?‚¤f™·ú‡qº•_æ³äoÎÚ^ Õ9k» úkËV?l¸ 1Y €9ÔÇìäsKÕøÝAÖÙ:6K:,‡P±U¿øP§ûü¨?x¡ÝåÅdc¦>{×öoæÊýmûã=²¬ endstream endobj 403 0 obj <>/Resources 425 0 R/Length 2571/Filter/FlateDecode>> stream xœ•XËn]É Ü÷Wœ¥´PO7û½ Å$Ú f¡\ËöWvÆ$ùüT±_G²!Û0 ›<ý ‹d‘}7îàŸ¿ÿåøéÁï>gs¬Ç¡ÿ+þþËüòëá¬;Þ˜xüíøýðºüŽÿˆkÖGñ!—'#ɶØ_¬„z<1{ŠŸŠëñãg.¥µ€ó_9*â!ÙVé'‰•Ú¦¢ŸôÍí9Û|ÞÝåïÝ\mõù¼»+–±†š_÷æ†$‡Ç‰9”ÓYSóM[æ ­Úå|ÂÐ stÿ§wÇŸîw6ÀM*Æcñ6ÕbÁ6o›KRä¸2?½½swXvÜ¿5¿Ü<|¾<~xóøé¸þöáñö×{ÿÎÙ–½wí¸ƒ%—‡?ûpn­Mú×ÿݽüíÝû?Ž·åæ?·íæñÓç÷oïòÍÇ?NçI•úŽ§Ç‡Ï,6‰/°Y?ÿóáóã³ÏÑÆ[Ö¼yüÂâ?ßïlþ‘Ló)YŸò³uͳ-R‚û ¾Ëà“¾Š­·8yü…ÞÆX¢õª1ŠuÈÍL¥§CÁ< þ;ˆÑŠKQòÑ’u%;?ðÛ‰ãWìß°WJ±5‡CŠõ,Ð)ÿˆ¹É^¢«‡ÏøškýŠ½ÌØoZüÛJ9QÛÀ`{Ðm 1‰!}ií,AµUP©Õã–;°’Jê³´¿ 7cá—N½âI¨Ò²üé˜ Jôõ¥+¡[Br¯L­@Œ¨˜àPÁgKÅþ Øß 7-¨@nˆÇç;›\5PE[@fC'aéÜÑdP7ØQ&qrW&›BSddŽŒ*SÁ-p§–´4!9¦Ö:õÐj=ß=¢`¶*oç†íFl6µ®áüàh”àÆV`Tv6b©o+úQlhéh+IöT«–­CF„RmÊÂr“ZôkjæhÑz ܼ|G¼è~xé`( ÕB‹(L øÃ.ÒW"WÍCPÌS>R¶àϹNTüvŸxõ{¶âél¦h¦L۠ɹ`„hnGK8j[—wi›ÖW/ËsQ&á>nEöÅ$óedWn@­Z´)€TÁ}@­".I¥ˆ¡¤a¨1Tœ†sj‰û~DÁ„„¬¾š~ÚœȨVO)t?›èŒ³lE?-¨‹éÉÕO³V/¢sÊЦè²>@ŒÎqƒ•’Ò‚=ŠØàöv¤^¡ìãÀÈå! ËÆZ³,:ê„¥òÉL¤åR: :nÕ•”É‹”t5ê+³ÛçDeåD=Nš;<ðtÍ«÷¨5üÏà  W\Ozb‘´éñª²ˆQb>Õa” Þ«R·¬…lö–Uë„­Ö²Ø4e \ŸdAÜû¥“N¢ã RÌ^⢲ã"Ô´ &O„¢¦»“P–¬vš½e»â0"è|öIÓ¡l&²Ã•ô3“Ÿà£‡} Ál¯š¿{[b‚Ãr8 ²QNÊ1Ø3*—ŒnpÆ[Y\OÑä åDû–.Ÿm›i:5#··‚¬!'n-!Èì)<“<6‰’—Và0ˆtŠdçâNÁF §Gó2Çì“àå©‚{âë;h¸åfV#yº;)èN9¿wÒ!Íö3V¯î„Øâíf¦k³*ºçÇ‹ª¿€¼¯uCæt(dh†/ÑR1² 2¯”ÅYÂ.ãÚ’2DaöL-|ªzøv–Ý0d”*;¸ §Á^Æ)d›ðò.b5É€ÏÃ<P1BŒ!hÇQ««]Õöϱ ŒK|h¾”Øæ†| ªñVÔõã%‚ƒŒ¸ž4lUEOTÒÆ[ G„üd§3؈íK3¨Ÿ²«yÑ €¼ãÄvÒ{^b|HBƒ:Î^ez†AÞbäžxS¾èßWhKÂam6é-B–@œuªÎè‡ ×¢–`à>ôj£X‹饮ùÆ· £ï ^¡£<¦ ïÓ–N Ewt h¾6›µ¤rlÞ'eÏ‘ØÓÖégh>7ÜS„M^GˆµÞ ñd"”ƒâ›²cãÕ<Á¨"ÕOñ¢O#T§Y pMäc¨ïÌHÕ¥}:³¿õóxû»qc¹ÙÖ37»1ÍeåA÷}ŠŠÍ)qF±cÆZ4o¦÷ÈæT4½yzB%>£Õ"‰û%Ò4 rÞõ #˜Ô¦!q1ÒÓÂT̲Ãa‰4G‚O™¿‚¨+øŸ€ÚÙ«8Û FðˆÄ¬lˆKâð§4Àøc(Ø0G þº ry§os9+ô§ŒõW§‘*sÑ?žÅ|¦Žîà÷£ Ìgô7«vsñÊû«¹xØÔÂÚ\ð€Í§×g óí2¤ÑYæâÙY<ñê21ßL®ý«gz¦2 ah‰g¨"9¤^Qþ’Ëü(œ!Á·•£¢„ÿ.Yv¸L…Ñxb‚Ò4ƒ„´Ç˜5>w&—u¨øà¥q¹rðZ(:n¡oýBC©È ޾C£:Ë ›ýÝJ0 YhÊèUŸ¾Ãè€ÖÚ€<‘S¡(\ LôgÈzËv™v"ôµNшátù˜T¹îƒq·SžVö æìÇëÖ]Õ3#RÁ剅NeÚ£‘"1ë4œœ£.|¿\ûË®îYþ2Ãû)x.S1èÉ\§bŒkã´ñ`¶Í‚¶ŒrÒ`™±t:œäÃ}ðÀ€`pD•ùE§àd˜¦-dÈÀ~ȈN¿vJ“AÆj5˜¤0‚?ܹ2\}NÔ¤îŸÍÿÑ×C“ endstream endobj 429 0 obj <> stream xœ]’Mnƒ0…÷>Å,ÓE¡‰I$„T¥ýQiö8µTŒeœ·¯Ç¥R0ŸŸß³Í˜âÜ=wÎF(ÞìzŒ`¬Ó—ùˆëÄ®mU¼ò[MƒE ÷ëqꜙEÓ@ñ‘&—VØ<éyÄÅ[Ь»ÀæëܳÔ_½ÿÁ ]„R´-h4i¹—Á¿B‘ÃÛN§y×mŠý9>WPåñޤf‹†Á]P4eÙBcL+ÐésUɑѨï!ˆFî’µ,SMý˜9•¤3ËÌæ12#ñžyOÙŠ³UâªÌœJò(ö(âó‰üì©ÉS™”ÕœÕäg]’.kæšü¼oMûJú!]².Içud^‡Ï– 5äöåÔºÃ{ÏÕ5„Ôî|ѹÏÔaëðþ/øÙS*?¿‰% endstream endobj 431 0 obj <> stream xœ]‘Moà †ïü »C•¶a•P¤©»ä°-ÛHÁé‚=äß㪓vHx°ß×€]œºçÎÙÅ{˜uFëLÀe¾pÆ‹u¢ªÁXo»ü×ÓàE‘ÌýºDœ:7ÎB)(>Rr‰a…Í“™Ïø  x ƒuØ|zõWïpB¡m ÇTîeð¯Ã„Pdó¶3)oãºM¶?Åçê꼯øJz6¸øAcÜ…*ËÔ8¶ù—«l9ú{BÉÇ$-Ë´U›ÌiªáxCñæÀ| >2‰%³L,÷\gOñÇwÄsEš’5%Å\KÖˬGÖ#1×l¨¦¬YSçGÝnOÏ£9Üû¦¯!¤–åaå^Q—¬Ãû<ýìÉ•¿_š·W endstream endobj 432 0 obj <> stream xœíXiXTGÖ®¦iúÞs*¸`›#F£FÜhTŒ1q_‰û¾DQiA‘w‘}éB6E–¨àŠ(Š‚‰qßb¢±1ÇDIÔhcŒšÄèmmâýªtæ›™o~Ì3ß¿¹Êynߪ:§ê­sN½§4ÄÙ™h4W¿ ¿ ™QA!#ˆÆ™¢á½lÍˆí ­¹“ÍCk38??g_ýÆkÍž=Õ5çN5²¼¡qIr!iÜŽj+©3qvâJ\4-5&Mÿ®M;s+Ñ‹<_òœ¹Øsd`PpPX˜çàŽž#Cƒƒ½`DX@ˆçÀÐ(ÏèÙžc"æGz†š=ͼ9taPÈÏžcBÍQ ý#¸ºY!‘‘ïÀ ‘~žm„Dø{ŽŒž4ëEk;Ï…AQ\GHT‡€E³¢‚BC<ýCf{ŽÈýÕè‹þ¡_D€TÀ캢m`hĜ϶QQaïtê$T™Å—Ž‘æŽ!Qí` ×êéݹ³ÉKH‡ìêݲ»Cú:d!»tvÈ.^\xÿ=6#þáÇ·‰$ŸÞìOŽÙ¢s¢BÌŸIH_2–ô'É2€Œá˜@†’Qdq%CÈ`2ŽŒ$ÈpÒĆ 'Ñš¶š^š©N£bµ“µÓ´áÚUιΛ?q¾¨; ³êîèžèô½ØaÛÝ#.[Ö¶=4(ïÙsìüOWú!WrÄoÝS9êøÅj³tö©ü‡ý=%[ù‰éj}ÿlf°¥>^›êâj÷ˆ;8e¯ Ë—_vYézÅ-JÙ¯,7DCµÝ×àV¶Ü¢‚«Ý?®ÌæV¦9óµÒâ[íAÅÃ99c*óÏ]™›žÅrX6ËIÛš¸5e7;É~ßÊ0•ô÷«š¬’6•¦A*q7™$U=i­RIS¿*U½l2©¤A,a'ØÞò;Ùv*!¿[vRQzvvFùÊÝéeÁYS &0©Ïà)ÃŒ¬oYðåyׂÖ/`3Øä) Ìl6SÕŸ¹"òŠŸUUWrmPé½1v_Òæ¤ìE–¤$ÉÕÞ3îM[¦Ù}Cùà¦Öֲư„¯£mÜ!%`§âÊ¿_W¦ÜÐ* •]†ð½}¬!\ǧ•)¶£š{ÕÊŒj­â§<3¨êÓs¢ª>3ÏQÕ? UUÖd³Ù²•ïoUú¨ª]ÌÄlþ¬1«ÄYô|î^¨­ÙœÀBcÃãƧ%­\º2éxòšd6J²Oгq)#’“’Ø‚ì¤ÒôÊôJVÉJ-¥–ìlVœ”=1+.“]•_=+^·jõžÝŸn¨`E¬8&/*wáÊ06_²{9tLHNæ:²¸Žå\Gבœ=&+Ö¡£žH9µ}Ɇà¼@6™£wÚ¯*FU?ã»#¹zÇHܪ<Ü¥|XºuaãŠJXµÛå¾ÒаbÕç6?«a¸Å,·#1ÂHÒƒ3š‡¡þ„žûUUriæëvÿ·±ð]‘òAJ»Ò+ëØoÙUÅ€¬욤õlKÞÆ¼uk>ÚX–ÇV³Õu{BôV‡xó·‚Â8• ‰Oãw>ÒÈlfÒ¦›7«Äͽp±JÞ¨1û§²™Ó£f'Åò¹šL«øžZ«²¸ÇÜwµ_O+³=á0h~®Öþ¬¸Òø‚/ó?)Ù¶Piô°ñ퇦j7ÛmÛ=C¸ýQSnH×÷í1eʘ6Ý~ÍwÕJ,÷ª~ÊuC:,Ú-Љ%¥\ ÿ÷Щ}Ÿ£›<<õ:»è´”Õ£Ó?“ï2G‡èY>WãL}î nSµ‹ {-–¨êaăÛäÎÌ  y°^»·âÀþ­gØ÷ìqïû­¹g\àa9QUoˆ!—…¸K¤º1êSÇ„ÂÁVUÞLä‚Bɵ%‡Çš2”;D‡,W‰üBS©¬Ñ*›”HÃÛà:ÚYÓüX­˜¹óôT5Ík̆Dpõ²ÇïVF¾¹]IÚÞxÇù™WûS&·î„ÛãX墲Ãöö kR?JËgÛYIF;Ì>¶l[Z·œ…KýZtñp{;§û¶¯ŒlçÊÍÛvIŠÕÖ°~ݺ¢âE…ÃÙ”%áA+VÍ-É$®Ö»ÇˆNF6nSpI˜äö(6øèqóB§±’ÏÕ°ËJ3å-«B<ØŽe›C6ÍÞ1 Ý̳ˆ´ÈÔe–8K2cB >1²¢ìâ¼µ›–—$V°Ù÷'Ø}v`ùÖҜܢ‚|žsR³ã¥Ì„ü¸5Œû׎¸Êý Í­jí'¶>† pí·ËÖ`—fï %ã†v¯âo°€2I™b`àÚnõ[GŽè[KC&¸*êRÓÝjeŒø¯mâË“»#úÄV7¯ôI+ÿw³PLòØ”Yh÷¸ŸX«^f"U­2™ê3‰#©„úYW©DÖF È¤µp‡&ܺð2&í)‰l´÷å’Ç¥Ô¥¨ÍõÎ[fÙ\Ÿ¢&eÆg Å&=+`–¼ƒÇ>ͯàƒ7DóÁýE~KžðwƒwYJê­ì­¿µì‚ɃDZÕÊ]ø„ß9U½/rÀÙóØTU­µZ“’Óø„ ObÉ^U½"&ëi6O`£øˆ³DõªhýFœO„³Û…x&âå)‡°NpÏ“\[Çí´é÷Õ9ó•j%ˆ|_E5,‚Äí†Åàº"ÏÖ']žÒ$wW~i®‹=~þ’ø'¹ªÑÁÍÜXÛƒhרTΦPNiu}Ek¬À‰h‰3Ñ¢'‘ $-HKò&iEZ“·HÒ–´#o“öÄ‹t I'Ò™t!ÞÄD|HWÒt'¾¤y‡ô$ï’^ä=ò>éMúpbÒ“œš âDd§%ȧ'Ã9UÉ)ÊhNWÆr‚2ž”‰œ°L&SÈT2|H¦“ÄŸÌ$³Èl@Ìd $Ad.™GR5fŽSC§QN™N_i=´]´Ãµ™Ú,í&íçóÎ÷tcuãtãuk]d—(—h½·ÔT>(’ËGä£ò1ù¸|B>)&Ÿ’?—¿OËgä/å³²U®’ÏÉ_Éçå ò×òEù/ò%ùù[ù²|E®–¿“¿—¯Ê×äëòò ù¦ü£|K¾-×ÈwäŸä»òÏò=ùù¾ü@~(ÿ*ÿ&ÿ.?’ÿËOdE¶ÉOåg²]®•ÿ”ŸË*ЀhÁtàz@ ¯€+4€†Ðƒ44…Wá5p‡×¡¼ÍÁŒà - %¼ ­ 5¼m -´ƒ·¡=xAè 3to0t…nÐ|¡¼=á]èïÁûÐú@_èýa „A0†ÀP~ð ‡0FÁhcaŒ‡ 0&Ád˜Sa|ÓaøÃL˜³!Ì0!æÂ<†ù¡á‘ѰÂ"X K`),ƒå+ â  ’ R ÒÀ Òa%d@&dA6äÀ*X ¹°ò   >‚µ°ÖCÃØ›`3l­PÛ ¶Ã(ƒ° Êa7ì ¨„½ð1|ûàSØà ‚ÃpŽÂ18'à$|§àsøNÃø΂ªà|çá| á/p ¾oá2\jø¾‡«p ®ÃpnÂp nC ÜŸà.ü ÷à¸à!ü ¿Áïðþ€Çð°ÁSxv¨…?á9¨HPƒN¨EgÔ¡ êQB)¾‚®Øb#lŒnØ Ø_Å×Ð_Çfø6G4¢'¶À–ø&¶ÂÖø¶Á¶Ø߯öè…°#vÂÎØ½Ñ„>Ø»awôÅøöÄw±¾‡ïcoìƒ}±öÇ8á`‚Cqúá8GàH…£q ŽÅq8'àDœ„“q NÅiø!NÇè3qÎÆ4ã Ä œ‹ó0çc†b†cFbFã\ˆ‹p1.Á¥¸ —c ®ÀXŒÃxLÀDLÂdLÁTLC 2LÇ•˜™˜…Ù˜ƒ«p5æâÌÃ|,ÀBü×â:\EXŒp#nÂ͸·b nÃRÜŽ;° wâ.,Çݸ+°÷âÇø îÃOq?Àƒxã<ŠÇð8žÀ“øžÂÏñ >À‡ø+þ†¿ã#üãTІOñÚ±ÿÄç¨RB5Ô‰j©3ÕQª§•)P¤”¾B]iÚ6¢©mB ´)}•¾FÝéë´}ƒ6§ÔH=i Ú’¾I[ÑÖô-Ú†¶¥íèÛ´=õ¢hGÚ‰v¦]¨75QÚ•v£Ý©/íAß¡=é»´}¾O{Ó>´/íGûÓt DÓ!t(Fýèt8AGÒQt4CÇÒqt<@'ÒIt2B§ÒiôC:Πþt&EgÓj¦sh —O~AI^nJnœÑê²"&jq\vüj#þçûkz“”˜¾ (*”MbÑ•œ¨}Z¼ÿÒz ³ƒ9))( S‰7gãœ,øYYùZN*}ŠDõ`uð‰~<‹"ëA%\Ä)lìó© öÅYþDˆG|¬b©ØoTÚè•–½¶öíá;ntdÞŠÛÖç{°KNZ¦%Ã’ÍÖHÛ?^³gç%vKLMIµH]è°}äÀñlëq2üŸJKk• ;¼Ø·S*úH‡[6–®ÞƤӇû¼mw™ÖÕËÌlX¸YR28ñáŒJ)Y0*šÍ ZÌÙÃ3A»jÓTú°Õ’â§·fV2œ”Œxˆ¸ÞËg¥¦%¬\št45/‹u—j—éÙlËâÔåY Y)y|.B·NÐuYè–…*½ w’ø ~Uy|QG-hÉ/æ'èþ3AfÞô«bÒo þ¤˜×.ßøUõ’{!'7WjÌK‚C%LYŸ4}Fô &õ~I‘§ƒUUÆÏÙªÀÌÀŒ°‚øb&—äo?1º²}ÛÞö–vÃEo¥±ñ vlý᫲EutRµ‰Êâ71‡GÖ*ó¼yK#Ø86æs¦4b * ‹·ø8£ˆ•³Í1EQRÁÒŒDÌq"Î|/‰¶f_œ˜°F¬„Tú$ªÄIlõñQoWy ÂV¥fñæX’íh–pú]…§s8%-LÊ–¿ž’l“þ5Æö&úÄ´´D6sí\6„Mž0cFøHÖGB{ƒ3]8ů`»‹©¤­ŸUÂõŠîÂêMlûtëÎâSDyè+ÊCÞhY:ŠÍaþÅÁG–­ØÏNIÊú4]^NöšëóoÛ>v¯ÝËÈÆŒ+ Ø9ë@äEö-;¾«òhjnRÖŠt ±ãÔEæîñ_Ÿ½°¹ü„Ç—;§ù14ré Äæ…n‰áøªÄà^ø·ôzgÕ">¼…ËtÛBM¸,æ%®Ã m½ë^˜Ë=Âä³RUoqü—%é;ë™wÙ?¹žËÍtàÿ$Ìxˆ7vTõ«5/»Ñ9NêUõ3÷˜áƒxaµV„äÓ‚^|s›ß/k•­û׎?„׳<ÎM¦”QõuGYºJZY«ø÷ðÅyòÚ£äokÌxQßbø¦ðM%›TòzM *Ó‚’0ÈÐÈH#÷­/ü¬z•t©ôÉ<Ë<2“3x5ðc,‰u±/Ë•t {æˆ(ÇÑu±©Ã“_L§îbÏË[^WcóT÷Ïjñ¿vž›ÅûÙüÿÇ<•’ÊzKØú+»Nié¡’ÞŽýì,*ò¦"ž[Š,ÐBľ—õœJÚ‹qÔTï øI/äF+¯Ø;ð½8b2qy¦Ò¦ªß™çÌàRd¢Kf3ÔSÖs¼ñ˜pÝÇzÙ[Ù žúfÒøòÍâ[·¸e‡J:X«Jy áj¤³'úÙu=BZÛ‹Y`Öb•4‘~¯Æ¼Žïs]jâµiå^()Cë’¡˜´£.H\Eáò” Æ}rº%Óãsûq—þÛC÷{ìg‡7TìKsd1¾ºJS\zøÂù áL K*=cT²és 2W‹ô™©+“=ì´ÂÅÏŠæÀTžÌ³Õ-ßT;Ï ªªˆÍ«u_Ëó¡#ùÖÌ'‡©þŠâ±HŠvñöÈÑ/–¬›'äZ&й|.ÿ0fp â=›¯ óCH'û‘8uî ªL>’ª–ûYíu<"ÄwÇ­È3±;DXüUÀÐÎZÅ»í«1+ãx·î…ÅLy*éêW•Sçs-–¹l.›Ÿ>?½ÎŽ9æ›Ãõ ‡l" Î*~¤¨dEA¡ý¼.{YvR>Ëgƒhw†ôb+òNIf³R¥SIc±í.-„»{áɬ:‹ -‘–pn1(=¢Þ¢8®î:\Läb½¸•Òˆ´ë%|Ϲҧn\˜eºe>ãÿÒÃëÇíL-YR2SºiwãEæ· ŒUq­x«­/™¥îv¸ìX‹ð®#QÔ˜Óê4¥oH/e¥¬Ä²¥>føy @Š=u\_‘¦Žâœ'ý/k¸9IDŠ¥i…Öç/ ‚ÂÍê©Ç8ß–óÂÚCžÔç&ož¶çq¥Ï‹›²ôrž]¶Z6½Ì,_Wúdðc¬@\š‰±ß ž5f©‹ÂW©ÚB:±TÇ=—èâ@HºþD·û€J^%ü€jK2^€å-ô%h¼µÒ‡»:œPhº#&z»ÚÐÎ:„qõ7tD4ØÄ#w¸ÿ 3ûïóßçÿûù1Û› endstream endobj 434 0 obj <> stream xœíXyxTÅ–¯Nw'÷œƒai£ä)I«ˆ€È–²È¾JØ÷ºItv$ÝÙèP$„„@HØd‚¬"²w@ ¸*QEÅÛÐðîT5OœyãÌ÷f¾ùcþx÷ûú|uoUõW§Îi3˜N§«e ‹šf‰OŒ²Y† `:cL'~ÝÝÏ1÷ó:w#wÞ`xT×ãz¾ásê‰gëJz ž¤ß×”õÄ·{ƒô:>Íêè«ë˜ÁGðñÕ½¨ë¤Ø®e›–í…¤¤óaæisÍC#£fEÅÆšû·4™5«‰µØÌ}cl‰æ$ÛtK¼y¤%~v‚9Æj¶Šé˜ä(Û sßx‹Å<"Æš˜oì",¶KB'ì74ÌÜ´ŸÅf‰Ÿeš4mVTÄï³ÍÌÉQ‰‘‚‡-ñ5KJ„%61*Æf·M7é+6ý!ô÷õ-±W¼%<Ñ2ýñF9×7&~†ÅÜ4211¶S«V’•U~i™`mi³$6«¹mëÖ!-$ õÒv^ÚÞK;xéë^ÚQÒ6­½´M AÚþ£o†˜$† þÓwáéº)¯EZ¢f$F„ÇšlÓãÇüÙÖ—½Éú³Q¬7ëɆ ßdCX6‚Õ“Ìâ™]·NwXwÛ§¹O'Ÿ!>3}œ>Üg«¾¥>ÌÐv0?äþáNÐÆ‡ô‡ÜwÔ®ž"ø7OcµH¾=fõˆ÷?,4z&ŠœºÉ_àvÞúÐéëßÎqv໚®—i,ÌÎÂÎ40ÙÕhõtÀ 4 -AÓÚRô÷¤¨ 'uê95! 9ú‡;NªWO¨S7U%ë4¶£Öz!@cMËÔNÆ3W\'vðµ¼4›Ïâ rS2£‹'Ô˜1§ð”å 6óƒ|ß¶ý'œË²‹ð¸Ù¶d×4w­UÐGe|…—T,­Rvª!Æ¢íëx9?»fº˜w…„ z6Ì¥i·BB5­ÒU£iÅa.Ec]ªC4]];3jÌ_Ò½6Rc(GMK8ç…Îü ëè•6Í©8ŒÎŹK‚¶äKв“‚¹]ˆ®µjÚ—àì ,Ó´ïCBM+tÕÔ«ªÛ7 =C=Ýægî“·7–$ß»Õ@tËT¢NrŸ X€k!¸j¾!¡ihÚ—Ž¦ËvôïàÉØªÞج:ªgonPxîc>Q_úd´ËtÊ®¶s¤ éS ÕsÑô›‡¦ì©húœõxf¾U(DÝÜ¥S»{‰÷GèuÅ«—ÅþÝGUm‹îÓÏÕŽŸêÝ-Ý}l8Î33 ý{yÒ7«c¶» ûuînWôêjwÓ€|TÛyž X"¸õ÷Lwlu›¶68q-ù쵋c¯˜.«=húx)šn¢ÿT¡À•“S66P;klŒôÕp;ûrÞg¦Ý}Ôzÿä1|êœV¦,Z¬1½×Ç!¡"¦O‰ °Æ"FL‘£æ.ÌßKŸªHp‹ð3?«ˆáÏ"Šiw®Ð`‘p 68ö»õ;£õ‹ÏÕΟêÕÛêè€|Ã(l˜º|Ž»Á9¡ i­§îHV¤Ü—¼rÁœ5°`ŠTýE—KH¬X&h])M•rAj åFóiY³5í~XM¦ÆtÕ!ö¥JµÓh:²bÑÒ .þ›è?–eÅ€rÕxòL`NH 8´3±è§?€¦Ht  mâÛùâ=Bb­u—}#qäÀxðëc7×ñb^³4«0³$­”+Ê7mX;¿Ê<Ž4¥¥âŸ^âî^R^zsù¹’ÍžžŒå~é+Ü=ž|Q<éE° /‘÷j0ñ§ÝÇ‚Poµ¦×¥upW:—ê<¥o$3“Ó332_æÇ ±"…õ‰¬HjýDR RÛ@Ɖ<6„ ém¸Hl#E²Íư±"ŽgØD6‰MfSØTΦ±6Y˜•Í`‘,ŠÍdÑl›Íl,†Å²8‘ X"KbsX2KasÙ<–Êæ³,¥3;s° –ɲØ-êHWGwßçŸÝ>7õfý úîúxý½KMÿ³ÁßÐØ°Î°ÞPi¨2l0l4l2l6l1>gìgœo\`Lóíî›í»Ö÷¨ïw~ËýVø•ø•*~J>4‡W¡¼-¡´†6ÐB ÚA{è¯CGè¡ ¼]¡t‡ÐzAoè}¡ô‡ð& „0ƒa …a0FÀH£a Œ…q0&ÀD˜“a L…p˜0,`… Q0¢aÌÄ@,ÄA<$@"$ÁH†˜ ó æÃHƒt°ƒ2 ² r`!8!‡Åù° `)B,ƒbX+ J¡ VÂ*(‡Õ°ÖB¬ƒõP U°6Â&Ø [à-Ø Û`;쀷a'ì‚jØ ïÀØ û`?€ƒð.‚÷à0÷á(ƒà8œ€“p NÃ8 .¨sp>„à¯p>†Oà"\‚Ëð)|ŸÃp®Â5ø¾‚¯á:|7 ¾…›ð|·à¸ wàGø îÂÏð ü ÷à7PÁ ÷áxà!<‚¿† uèƒz4 }ÑD$¬ƒO¡?ÖÅzX  ŸÆ|ŸÅ†ˆÁçðyl„AŒf|_Ä—°1¾ŒMðlŠÍ°9¾Š-ð5l‰­°5¶Á¶‚¡ØÛc|;b'ìŒ]ð ìŠÝ°;öÀžØ {cì‹ý°?À7q †á ŒCp(Ãá8Gâ(cp,ŽÃñ8'â$œŒSp*†ã4ŒÀéhA+ÎÀHŒÂ™³p6Ú0c1ã11 ç`2¦à\œ‡©8`¦£˜™˜…Ù˜ƒ щ¹¸9.Æ<ÌÇ%X€K±‹pãr\%XŠe¸Wa9®Æ5¸+p®ÇJ¬Â ¸7áfÜ‚oáV܆Ûq¾;qVãn|÷à^܇ûñÄwñ¾‡‡ñ¾Gñ~€ÇñžÄSxÏàYta žÃóø!~„Å ø1~‚ñ^ÆOñ3ü¿À+x¯á—ø~×ñ¼µø-ÞÄïð{¼…?àm¼ƒ?âOxÆ_ðW¼‡¿¡Šn¼Ѓñþ 5b¤#Ò“ŒäK~¤QzŠü©.Õ£úÔ€Lô4Ð3ô,5¤@ú =GÏS# ¢`2Ó ô"½DéejB¯PSjFÍéUjA¯QKjE­© µ¥ ¥vÔž:ÐëÔ‘:QgêBoPWêFÝ©õ¤^Ô›úP_êGýi½I)ŒÑ`BCi §4’FÑhCci§ 4‘&ÑdšBS)œ¦QM' YiERͤhšE³ÉF1KqO ”HI4‡’)…æÒ-¡ZJ…TD˨˜–Ó *¡R*£•´ŠÊi5­¡µTAëh=URm ´‰6Óz‹¶Ò6ÚN;èmÚI»¨švÓ;´‡öÒ>ÚOè ½K‡è=:LGè}:JÇè:N'è$¢Ót†Î’‹jèÉ#îNy‰›äun–hݰšBgAf°g®¯¸!å ø¼ðn”ŠÑVkf~Fa0ý<±ùiù\1{^ö´ñ´QÒåZð~ìèÉo”¼Ü´pcV¢3™§ó”¸mü4¯®®ú@Óü~÷{ïhæggi<Öš’êàNž‘ç-V—n\²ZùP=kLàqÎä…Æ·éÚ!š+QŽêc÷®ªí¾ ^Ë+²V§sîx!~ "ô¸ÀÓ;;xÎYì(ÌàÓ§DhÚ5;ýø¾ô¶¨,™AVw…X鉻^§…„ˆJ@zÎd!ª.V«¢6ûèúåÒ93ƒxvn¦3GT³r§G–%äÎ{a.ž­¤§®ÚP¹¦r—¦=´3a[‘Ea‡¥y7¤Ç/ÊÕ$9/‹ì³²¾*_wÙubáoErUJ÷µ³É{Vî¼&õzZ®º.G/ÊM?È5MK˸ôÆð~Ó¹uüؽ‹ê+ßî¬ÌçM²V(+Θ°0åëõ{îc™«¸úŸ)ð%·;¢+ÐÌTŸ¼®4Yúa¹ì3®ÖÎèæ­þEm(k²¼À²£¢“ea3QÔíà%ܦZúÞÂË|§R™øn/OÏ^¢)3µ¯î5è?µýÄ¥œåÙé|ø°ÄŒ |2Ÿµž×ò¾vq‘@EùÂ’¶Î?·>‰G*–¨ˆaÔÛGƒøÁÓ{+Ë….²w,XSVZ¹¼/ãù9ù9¢Æô­µfh¬ž(H•ò’ÒÕå©+ƒã¸Å­PR•¦}æZ)"ZÊ=>¥ï̧¬ß &ããlx¤(I«æ¶uɇ(Týœ/ÔFµ»îqׄ­£Vv^ß3OtkkJ×/[µÒ±>k#W¾v¼LƒÒúœqáà…Gk‚öTŒëLqIUUUUIqAqIIqÁâ˜íá+%#é¶&²¬•Õ³BOÊöÐ'e»+ˆ¢ùä?­Ÿÿ}õ,")R†¬ ½ëb”‰žiƬhÇÿ¤½Ô˜Q"õ!˜%RKË”'Y"šOÌž˜õßh¡ÖZÞã˜-kø“ÔðÚ$ÒÕ$þÞ2Ó™+G÷Ì9¢gÖ´_¤gîKòôÌ}‰ÀëµVoMÿ±‘>øO5ÒÞ”«—y¤¾4¤ÙA2+ø*Gq4·p>%Ó¢¤ 5Ž›a#úf½tó]—·Ã•n )ç›*Ê7®S?œbÌŽ™Ÿ£¤89‹r‰ÌÂSòrü|ÁŽ]çsyP^_cä¹y +)ùÆùyqEÛ”½j˜±,UcÏÛÙ<ï±Pè'ûyÖ)¤­@‰¼^•:¶ «y¿fÃy~_‹©y…åÖ”ØTïYº(¿]–£¯\5ÇcKælRjÔ}ÆÊ•›Êwòó¼¸7¯P™ïíïÌÄîoujöG9¯äÛ×ìØ#ÒT%_•™?'?aULW6•¯Ü1fï ÐÑ󈊩®) ™Q4“Ïá##R& œÎu 6Ïæ6ž™Àí ·î·~¸P¡ÑNcÊ¢¬ÌÜÌENg:ÏUróy~ÐG|°§Òø¸OÕ®•>Æ®ÐÖjÁœQîØ"üÐBø¤f·H vvÚY’µ4O3ב*Rž#ïï°ÕËÐ=-±ë']õ‚@Å uåmn\Q°¬Ê^¤4åÅûD×jI³<[ŠL¤Dú±Î±–W†®´l²@¨UÜoã—dB,—d$sä¿(Ú=©äO2—ß“~}šÅ3¹=/sIÆGžƒ+I©©IqÛÓ×o<Êó]W’W%lººj¼ûHÐGHÒDòÍ|…´:Õ¡Ã0Wê6ÑÍî]½å°—»ìô…o~s¹ŠìBGWMÜÌ´L;Ïà¡r›˜U¥9 Ãj”Qj»KªA˜ZWZù¬\ÐPœ¦w¹ y/q.Ëú{by çêJc<.W1WJË׬ ¦ÊزĠq‚÷5 $ïÿ>ç$ÙªŒësÝè-<4*§•¾6¹\ò`ßô¶æ{¤=í,2N¨*¥Ü“1‘GLû¥ÖZ$âæZ!rKuèÖ•"`bO /vìL8Æàíô¥¾¾Òª¥Š¾¢ñWþ¼tù×ó¯çÿÏóoŒßQG endstream endobj 446 0 obj <> stream xÚµXËn+7 Ýç+æ¬H©`˜ÄvÑvU »¢« ´‹"(úÿ›êE½fÆñ½@$$Š<$IËå¯E.?½ÈéùöñòzGZ”^†ŸåãÏE…þ:#Œ¥Å#”]>>—ßÏÒÜÌå_êyÞëIxrã^ VJ\¥$ºœ€dxƒær²ñIá×ÅÏay•Â[’ý'ôùLy£Š<ŸOâµÊ ²HçÕ([Þwµd‹0AΛÂòµl Ê–¦Õ"&ÊÖž´Žxè(*^óU£Ã³¼#*Yõæ+Ó6Y‚¬â­Ã[Y\RE%סÝuP]ÑYÕ,Ç)Áà$½¯%2³€5Ü[—kÞiJ¢åÉÙs(*-ÈT'm\Éîøí(…°¼¦RXUq-;HŸ¥§"­KÍæõä9WÄ[iÚûsögµ¯ÅW'Üeú°¡§?‚ðz·r—Ÿ48aIm`Q¿CjÓÂk=Õtlm1Ó¤wÉ8ZÄ8µ9Pkv´Ðæ€`›§»ñ(‚îϑҸYBDÙ2ý\NŠXa†r™?™µømÀi49ýÝÅñ±¶ï%í 1?HûµÇªùè)ça•츄ªÈgsö>ŽílpMÑaÞŸˆòB9Üÿ ïŠPã„qf1V *2s¶%*‘dIya; 1ËŽ] }=m«,ÆŒJ' þâÁïX]Ô¹s{?©± `—ñÑ÷‰áÜ®ß1Á1æöe%…]P³”—ŠMwÝ-,h¿¯»hÚô!¿ÖMPò:° ³~+—ª÷J¦ëœš9Vþ^ø¿_{_u„3jrv2J›VXjªä|e¦`!+¼55Õu¦ÊJ¦9§Ö ë `–iÁõç·®"qšGè­ß‰…ei%0Cez]H"®q±LÉMSrg™:9ãÌÎ ÎÙ \D¯\CJUOâ ‚oùmÙ‹tšÖ ”ñÜ"ÎÎÑ–10I'¡d‰êúFìòoÕ®Å0{Ç^­OÛñV™iÛ7_ˆan*Z|º¡u¸w•V"7_C9weû¶(¡ =ë¤ éÖ>'ærµ5˜«#&·ˆ³´©ðÞ>ÚõÖ†Â.hµ0—oŸ/ÿ¾“VË#½ÒÞ—¡Ô ä…ן?•\®ÿ¼ü~æÑŠï8ñ%§îž»¼ð ö•‚òΘI «Ì¦Ï·ZÏõº¼ÑÝ$äú•ÎbÓY¬µmÝÓVìñHùÐŽz?ë9þê{3Õøö¿~ËëA©ÞÛ; åìÛã€éÛ«@!ÊÁFƒ: ~5õ£0^ÿÄ÷¿4µM“å¤ÁœCµ)ƒ6êyÚâÁq¢_…*´KzÈ1= æ•è=Ð. ÑÀBÃÞ!ý(—> stream xÚìXSßǯ-ˆJY´ *`*ØÁÏnLD`t* t—t‡ b ***’ÖßÂnEÉÁHÿwÌ1Æl° Þû|Ÿ=gg÷Þ÷Üs﹟½'6Ø`ƒ 6Ø`ãø­úo@ Ð@  9@  9@ î¦yEâ"ÞÅ ]Ÿ¼n3ÔýêÁ—F®šûÎz.¹5PÐ@^:zIõš“žçî§yÏûÿ4ïyȉ7‘%iî¨Q 9ÄDš£Oo‹nïdO2ã6åÉ[žŸF êÄkd¡ï„5V©ßkºû½DõJYõrè ]ç­·ŽÐ™AšSM-ý—ÀŒL–Ú”TZOYùýô†"¿ÕvíB Ã,òÜ«ÉÕ“h£°°Ž;s…×%eQm¾ùÓ¬Ú¦Ÿp%Ik„çy¨a#tvƒ8šæm=½L¡9=g` Í›ö¯+þv×{³Ð0Õˆ7¿ÙÀËàš3 eΧyÄŠÑòÞ/±-"q÷m' mMýÚØÅwŠ{ät‘Ñk“¿U5EÖ}L\3RdÆnöâN˜ŠÐÒ„/ÄDV~:5sÈtÄÿ9uïâTÇ(G¾ýÓ4؈æTë½ë^ÇbÅ£ç"­fŸQVÇ`iÅUÝ÷Ü.;=·är]¹ad?’û¹yŸW~ò›9rÍùÊ&CÞ»§ñ÷A}v©»ýr«ê)¯qØÃã[¦öÅ_Ûøuy%¸ F@=žj`p|ëÔ‘ýѸÆ.3¿öònàÞÙBñy3^ÍùA)îo;‡3!ý­ Œ«ûp-ÌVïà16a7ÞÔ59eÔãÿXûõa‚³ÙQ¼s9tãMi#Ã/Þ߬êWɘÅCðÓ·ùd§ƒ2Ź:’’GnâÈÑŠ+;ÄdÍþWÕÎM¬¹wDJZÿa%þ×_ïü2ˆô/}h$-uôN =×¾Ð;`ÅÈŽ1õOl§Ž\è§@Ãhë«ÆgÎd]Óu†#H_E|!j>Wó<\[Ax‚ô]zòæ—?Ì¢OÉ«…•B_þ$»´š ¼<õþ§ßï|„V%ÃѾS4 >ÕrÊ„Œ¥Ió¶ Ô¿K˜tÔ`ÅX.t‡a²Û}š^ gÓ{Ï\f„’Í¥¥Å?óý·‰ í¾ü­‘š—ßÐç_bõkÅϯ¶ŠÜ”õÒŒ¹ÆxÇa‘æe×µDù”N^ýZN0Ä'ªuë'Å5öAÖ¹]ýXZ^ýñŠü09›õ]á›·‘‡„ð®t¸ü®¤¼æÓ5»¹ƒ.‘uÎWÞ7}åròQ};‡3!ý”4¯zg¢çvñåUeåÏS]õLâ Ëÿ¶O:°îY ¡qHþç’_5¥ÅO¯Ä%ü¯–©4§çb«®m%¼3þÉ×:Ü÷wW]µ0W*éHï7Þ …–Ånvk_…* -‹Ä×ð´sË®ìéûõë+^;MáW‰(B¹PóÜg–èîk?é»öø¯wµÆŠ¨g–Vÿ­ÿ~}·ÐØ£·¾žkÿÉámÙ.Öá_çuë{eU‹,­È4Ç·Ðê»Ғ’‚0SÓôÊNf®üÒf±¹žøêtìm]Ùå²ãµï– WýÆeºÈæÔòúöïT[Ÿz9eBƶMóör•ði!©Å_oœ\" ~ôöO@ ˆ³ÚÍ?¶z‹Vß= )gõ ×Äʾ³Äv¦ãhM®ÎT“±xÚt²'–R\Ì¢y]É÷l¿mÂÔÃðNDõ­=¢ÍŸV‘ MÓ¸^ÝÒÐÐé^›Fq?cæó«ž«è‚vó¶òŸ€iÍ5– ¸â˜yC¦y~ü÷u¾!=´gFú)h^_jb•øµ©û5ÙÒ4âi}Ûñÿhþ"ÔØÐ;ýþËÒÊ*†úWPËC:/ws·Ð¨UÎÉYK°¸|7✔2Œo~ÀÛÊÆïqËEW_ø£÷Ñ­yæ7w„rèëº7> çžz¥çÉ¡ 9Ï$Ç75”%¢:SC|¢é“ªF;™EeW÷îò¼â×+çyò6—lfÎqyò wßFNlÿ Ê?ÉTïT[Ÿz9e8ciÉiö¯«™Ö«úÖ^²¿èèÿ^*¾9Ù«©Ó†p­þó‹ªSúæm‚) h7é¤yGïhú)h^×Ê7 ÇûàmÅ·î×XõñA¸‰aÐÿ꺅æT/öOù“DuÑQ[¯TÑ™u“ÔÄ k_{)ˆo¼X„£ó.üzã±`ªnøáñÓO>ªzb3c’nŒÁ”Þ/~uèÚq÷m'¢…t‚íãr:o=5|Óã›w:‹êšMšpÀg÷´í—Š‹S¶LÙâ¸]\Ö2¿®.š·UðÛ*§ÌÉØN•GðÍA=´Ý<Ûjòè%Ç’ ‹ÊÊß>8cµûÈe,#íæe׵ĸU2¾cK¾ß²SBY§Z•¾q”ŒÅ£ ƒ0ý[zõ ï»kß°%ßnœPâ9tã=¯f% Ý<¤“æ=¼£é§l7¯ü_Œ±®û¥'ÕÏ/¸éÇ‹ª»L2„wQÌ窿uo#¸ûœìò¼â/}4o«à·UN™ž±ô(BuOSR3TÅŽdB»9¨'ôioø˜b½Vßåá’TÅœyú“Î^pmŒ7ÇUæ»m™8„pºe}ÚÑ@cI†Å<>|õ£c”p•yî;¦ðâMóMÞá]YO×k§ hw¼9Õ<¤—æ<¼£éoݧ½ö]z¨.¾oºžuèõWµÍ}Ú©Æ“l¬|s/ÖÙä0úóS·ÓŠ+»¡¦âbKó"´Š Àg”¸’nʇŠ””ÚWáJ\—bä‡Ê¿tß…¿ ¥º"gzˆ5`?xÏ(r´ ’ic©¥¸ê¶Ÿ\ÍÓÐÃóF÷GþbËíoáû´3EØ~³‡È½ÚŠÂ¸åÿ 3oŸæmü¶Ê)Ó3–þÕ¢O;ÏÄ­^¤$@lJsÁÀsЀæ KiNusv©‰n6ÄHÂØùñh=¯+»=º]‡ÍUvÙêÉá ¤Ò“Z 9|s@@s@@sz-Íaƒ 6Ø`ƒ 6ŽÞà/ @ ±×à8è~jUÏÉéÇ= ^^™Š^zj`@-kÔ_þ­æfDUùãfÁ4JpaêÏÚê¿•6HDARƒž•þ­/ºµODxïåŠzÖŽÚ”’®ê7WOn™#Ê¿¢þ‚“WcâS™à‘¹4gJNR_ŸŽ7¥±¬ FGQ|z:ÞÉs~VµýÂç¦Bí…_õ4ö€ü¨~èú’׌}Y}ä8JßïÍš}Àbëö^…3Š»ÖóÚSè¿6éÌ&ùF%%Ô_þ¥WÔ…Å4 +Þ&hŠ «_ÿQ•¾i””î¯21R£¶¤•>wœ-° à5–%ÕÝϺÏiêbóõâ² +*Ë«¿=Î Õßrð¶ëiÎÄœdú}Á^9¸Ã2æÁ§ŸUïÓ —нSÓz·zÒ ŸÊªv•WÖ Šj$¿,ª-y’¤)*¸áR%üç$m˜¼ÆïõÛàå«{ͩެÙ;‚6•ÚaV¯Gyë­7pMÖ!)Yâ’aåO­d¤ŽdþLß8Oówô¥FmŒ>½y”äÑ›86ª|.}²cÊ0ôê†NÙôª²i·a“uM×MŽ }Ñý±_’tŽAý´þÂKLo|«dŸÇ»¡Ðiæ˜5I_«¨_ì¢àÄÝÂRº™Í«¶áÊ/md•·hèDõ½³Ðë(µÁûyóB´Cåk+Žî‹ Ü2;ãÞVП“ôåX›ÙØÑ¤þíÀ©ú:gĪ”VË{a?E’^øTþHÔæÈIk¦¼üQWú4yŸô$“ìÚÞØ×s¯Bçæªºû=¸¿íKë©}ÛäÝ;°Šã,L©Í¥Íöô Üé‹ÿ‘[b‰NÔ[±)* Q%„Jâ—%b±üÖ‰ã×j‘X燑TùÈ2¶®.yë³€OÖøraÙÛó2Ãü v닌Ý_R…_Zî÷§°•þ .ø\Sú,eŸ¤4&‹}^ìØ +GÎ ¡ºP;¸Å…ÎsF)Gó¼¦0p¡¨Z‡2üÊš¦½,{wÑd/éªûõ›f~éyEñãèÿFмYݱJòvrŒF6v4©ôߑƲۖSƬ‹ÿ§E<®*Ûrálâ ßhÆrªÕÅmf$\Ø@ùã*zç°5νrµ¨ /!ÞÜÞæ¢ölšÓÿÉ>,§9uêJ‹Åb¦ Ÿf÷¨ž*ÍI{Ö¾[!8Q?Òc=¾} äúÀ§¥,÷ÍQŽ˜ø Oê¯Áò#V§먇É}kFdå¥5\de£õ«!§ù?Â’¯@Wÿ=cÈxƒ»5 Õ5¹Ç•„ œÝtÕßÈ®zø‚ÈbB†Òx>š—IÅ7o/ÇhdcG“Jçi¬(ð]!$­ÿ­¶EüïOq{¦¯ |_·2ôÂoYéñÌ~¶Ð{ª¾ÜöP=Ëñq}oÞ#®ÿ öš÷ìqˆá›ÓXMÛÍÉ=‘óবi×Ê$µWâî•õ_Lì†Q¤Š÷ÍiUì@ó¹ThN¾[åÅU‚Ó\ß×°ããÝðÂaú˜u)ßp­¯‘h(t™;fY܇÷ç×K­ˆ|ó» ¾Íˆ ¡rÕí6dÓ^‚™jŽÑÈÆŽ&•ž;ÒXrÇQqÄØQŸªé¨Xh½èm²²€ñ¿ ®8v€ê¹^Ó5ºÇ€M?é±ìU¾yo¨igÛvsvYÞzÞî#­,L6›9l’õ¼óRš¶GHL3é%öÝM1¡½W4íVó"p!ÿ ‡G¥äÍè›/³œæ¿ð5í“L¯¼*wÁXŽwÁ©Â_­vûý)|9ŸÐöœì÷iv{µ.cÙ¨܇óÛÆ.6:›ûºªºª¡ìmŽÝ$ŠÕáQŸw¯¨Ô†ÓeæV4åC_DÕï/™L¢rÕ ÒœjŽÑÈÆŽ&µÝ;òçÇUËÙÃ%vF·F9ðjó1㔽s?á¾ey«ð3êmíæ=€‰½¼Ý¼gÿa·>íí>ilr/¨÷iozšŽ™§ð¼‚èV¥êÎ@cùçaRŠšj8qé{„…v]/Æý%kF?õ„õ5íø^pÁÛ' EÌ3yg ©\ËÝ*\6[!‰6bÞÁèGøñ_lô„W>O1_;uä½5]ÍøìSÊj …NÓû XˆGaS‡· ê{fC’ë½H½à˜Eó6r¬ÍlìhRÛ½#”Þ·|Ð÷:êÕæU×}¾e¥"Žo8(¾Ô2ó{UïâÔ3@Ð \÷¼›Èþ4ç¬9aVÝë°m*0Rƒ’ÚkÆ:Íá&‚ P€X^ÙHðRù–ž"ësÈžˆä ¤öÜno°Ál°Á¬º‚X³ãß~H¤ RÅæ©‚u£@ x“@ª Uª@ó¿Ù€æ S[F(Ç÷!FHË•ˆ½/µŽì±Ð4\¢šªîKj °:U¥ùQG‰âûóòŒ[jxñ#–RÕ$Ê5Xœ*z×Iéö¼úó#Ãu£‹„Ñ™ª¶h~àÀÚ4ïÎ:L°¶ØÁV·Œ)E¦#-Vj DR.ßÐ}ÝaÑp Ý;5 ÕØ+wXÆPDrH/8ú_hÐ Ž…×Åß¼;i½à€æÀSÈöNÓœb‰v|¡®HVPhZ!å-†·Ÿ°}QC‹Èâ˜Å²Go`]õ=tΈU)-_£ }Ú9t66œO¯;ÛÍ[sh4¬€uv£yë%Ú ¾y¡´€’göǪ¯wœ¦öC>„uå‡s–³ÊÄGz©ðp–fk,»m9e̺ø÷ȬPd{ša9ÈV·õiïšÓo4šO!ÛÛ§9µ%Ú …ºîËm«%Â(ÆygïÚ*É·*[WZü0pó¨þúþ‹¬¨(ð]!$­ÿlÅ¢Fj‘å›wÃíûÕwlÿo™Òrí³¯Ë€z=šæÞ¬ 2BQÂWQBØšR@sÀ Xš÷Bš³$A b÷6:7ú迾ۡ4ï…4gU‚@Ä²ðˆŽ Ý¼,Àì1€°4šÍAlEsô!/­­¤­–4‡Ùc+`h4šƒ8œæ0{ `¬Íæ@s§ÓÆ›VÀ:Ðh4Íæ€°4šƒ@]@ó¶·öjÚaöÀ XšÍª—>N÷3Ó^+6T±ÅT0´3êQmŸ ¢Msº¶î×îì1Ï^ýFK(â¡4ogaÇd³Ík Ï_ÊûôóåÄn´iNõ¨¶O1¯O{CeQªî<ô+ÿrmh^pûõ©E©Ù÷ ¦hÎDáî¬ßõ¹ çIK¾UCWâêË~þ°ïܧÞp©²ÍHhÞšë#|í.·ŸNNI%>¾6ÕßL2õÛ8CÙäêglå•m³w»é4}ë:u̦ËUíG‚@ÝYÓþèÙÒœAëd#ÔóÔ¼STA¬éªÂ¥§øŽÆè!†'V_ùXŒëÓ¦ù«,ùÄ¢n—â_^¼’:ÏÊv2Á4çÅóî¡æ-`sÞôê[„jÁÑ1RFøHÁ“±Í‘tŽP#J$ôBÙµfvj±7ï´…ìk7¾Ó¡Öb0ZVöõ½Ž~}ô<XEj_eB»yÁã:ÒœÁGŽš3åiï!4¯JßÄ×ìŠÝËŸ ú·˜)MÓuß²]îØ¼eצ¥‹Wè$¿¯h3b Í|A±öpFfaÜÏê0ÍM¢ý^ýÃ1!2gGÀe¯¼g^?95ìXê¹7ÝQÓÎøá$ŸO 01áE?éŸû……³Ç0è׳öig„æLyÚa¼9Äž4öê7ZB‰êô_÷N—q¦XïÍ™bºÓ4ÏÊ-%Y¿“]NÚáùó[ÓÌN¿êZš§g| Y¿ríK'Î~H¯…oŽ—¥•H»¾~ë É4u½+iþèYÉúýÎzè¬}Ú;Gs&>í»p 9Ô4o=øæÝGs}â1·T£øß-wxy6.l¤÷¬÷à›ƒo¾9Ð}Ú;\ÓŽþyfá ªÓÖÄ{$â)ЏK#®“çˆã|ÄN±UCŽïD,"&Fˆ¡ ‚qCZ\/^ÛŸÉG ®‰gçzçgçu#ÍËŸ(4¥!!¦¼u$AÆÉIå@s 9ÄRšóRxÏ 9ꉷòÍg³Í›ôêåô¯š2dÞ½¦ÃmoÛ+GQþÍÝ•ƒ†ëÇJ :‘æ×³oº«“è´:JwZÐf1ߥýäû{Nèã%ÔïoŸ€þý5Êw|çI2NJƒN.VõÙ¬y~ÿ¡T-ÃKƦ—-l®œp¾êæ~Í+øfXÄ­èÓ·ÏuþYWÈuìD ß\ƒ˜ÙM¼šƒ¨”œ ñ÷Ά߉ö¹uÊù†›í5;Ó+æ‡.jmIÙ¶ììŠ9§çŽ‹’ 1 pਰÑÓb§¯8·JóÂ~˫ǭÜ|Îó_ÞrãÎÀÜÛâ¹y; rNw£oŽâÛ”ŒæÿT–u!btÄ‹÷à›÷8š·µðMÓ5o.˜¨­Ü°cϦåªjF?bO  9Ãzð,…‚柧²͉θ{ ߢ/O;Oó/AþÕóçÃß<ÍNѺèh¼Gh®Ó4”׈ÿ¾¾‚C|&ŒñS˜´A5rÿÞ3¦Ö—\ÃnFž»“r-û&SÛÍ](ÛÍ/xu´^ýîýœ¤ìT¿Ì”ã(Í|–É˜É öç6r²ïìÍ[v>a§Ÿ+š—?® W¿ 'u4¯xsÀ&DóeÔ´÷<š·µð-Ó¸ë[E¦;½Å¯¼VñÆeªðö+0í¨ÛhÞ鋯fç–X¢õ¶²'Ѽ¹OûlBŸöÙžŸgIhÐü峟µ&ÿ™€é´ožÿðáy­íöê³×_;þäø§õ÷Éç7}½¾”¶ñ¢íA±n—â/ßÍì\ŸöÎ5ãû´Ÿ54ä:vL>é‚'ãæ¤>í(âÝnxnñ<8ÇFEíóç¡a4†ñ¹à8ˆæ>»mÔ e³Ã<ú)Z(zøy½ûò‰ÈÙÅEUgO3‰æå÷¯Çú?~U #ÔzxŸvŠ…ÏÚi7žêðºßnþÚiŠÈŽ+8À¨[Ê¿jÇÌÓ x^û ¾9kh~éÁ#Ã5bEã46q‘á=Å«ºÔ<Ý*åÉÅç^µ{8ê‰ "Œ7êÜxóCs¢žª»þÔÞç}ÚWÙV™ÛG8p‘éÐ*­ÃÕ';;B­å8µª¦öAë—ÀxóžIó6>k·OûªÅªjÛþS^¼Úú´ƒØ¦,Í™Kó/aÁµS§üÂ~¢aü„oÞgÞìm.|Lu¤Ã葞"›·ì8éDÕïÎõÍ9æ9f) J‹‰x}Xôjãy£!þbÂVžPÌÏü‰«€Ùc€æ0ÞÔ“h^ùãfÁô«àÃÔŸµ@ó®£ù—Ðà¿ÿ¦gÇËÙN‡×S¹ß)/™}«µ<}(ÛÍæÕ…„êßR’-Ú̓üï.ž³¦ŸÿÁîóÖÇ\~ñºh4šƒzÍK¯¨ ‹i&V¼MÐV¿þhÞe4¯2™ñÒ!ˆ"2ÓãÜM¢FÆ‹L|Ÿv2|£áÐ·æ ®¡V‘›õ{œê¡ãû´+.BÃh JÛ7å´o™ â3y„ƒ¾^ÊÛï>Íæ@sÓ¼&딬ÅS.j%#u$³hÞU4ÿ3„EùŸ>²erMùÅÃÍ8²æ4æ‚++ýQy.¾Úá$úIÑ›ý;®Øï‰¿d̄ѡ2#ìõ':DX\ºýàëâ¯Ñûr®„?'팆£5s€æ@s 9ˆMiŽMQPˆ*!œ¤$NAF¨u¥o>u Ñ7Ÿh<ƒÔN 4ïRš·«âêòàçaã⤧ÄÏYã>Â2p–[¬Ãõìs3¸›€Ž~’Â@s 9Ð4ïííæaMíæë#‰ÓñÏ¡@sÖÒœ¨Õ¥>ÿó‹[yiµoîÕ-‘yÍNm=œ”Á•q0»C(šÍA 6¨iׂšö®ïÓ>Õdó[õ1ŸÃCºå@ó޶wÇ[æ0É6{[ö-"ï1fõÅ|¤ qc´›Íæ 6ï—¶GHL3é%öÝM1¡½W¡\7Œ7wÌr^›º®«Q4ï\¶ÇÅÏÖ¦­“ˆ•8„zå)+òóú\s4ï4o,»e&‡ôk±4-Ó¿K§û™i¯ªH~Hå÷̵­ê;Öm0Jú^ À1·, Ö!ˆ(aþQBØšRÏ^ýFK(ˆ‰r>›#:ò¥c5Ú~ÌB—mñɸÅg¹}ó ÞrDÊQ𷳂°c²Ù’æ?ó,WjèNN7Ík Ï_Êûôó\‹µ)‹Î®—PŽúPù·öu¤ªÄúä/À,ÌѾyL|¹‚N‡ LÙBM‡F†³J¨u'WgV µ®o`Ði_}t›½œó$^Þ-–[ÏH\º(pË@ßžcQÓeµU¬øæLSu®ùâ5AO(–nß4ÅJÓ¸Œíb³<>à]òÊ^3Åv¥Ãt¯ ˜=¦GÐ_ŸWœМmiNÒºcj<¾< '^»%4ï54ÇæÚÊO³È+)Od”æÉÊ‹bJ áÒxÕsÀ,ÌÓCh."gc4gš£:`rPÈCx‚Ó„‹£.ú-=4ï4Ǧ.Â=uýîÝ;ùþEšöåõŒûæX¼o¾|sÌÓch®®º'r/М#hŽJÏ3Õiš §`¬D¬Ó&g y/êÓ^Á°oNh7W‰þˆo7Pÿ/ ÚÍA0Þ¼ÇÐE9 t 9§Ðœ¨e6Ëy¼ydŽkš÷š—¿6ÒPæG”:߬hß7Ça³uöiì%²wŸ†®GvuSŸv½õj[Õ·­QÓ?û­€š÷š›Æ˜Ë†ÈÍ9‹æ¨6Zmê5Ôa®ƒ™–9ÐÆ›ƒ@0{L/§¹Wœ_МãhŽj»Å^w^Õ†fÚzaëÖ¥.^ª¦f¢« 4šƒ@0{Lo£9ªÁƒƒN‡Í9Žæ¨ÔM5F:ó/þR\üöŒèg1/¯ë®]@s 9IJjE©ºóЯüó0)E0B­ûh.,ekËf4st÷bà{4¼)ÆÑ㔤‘'¢çÙ×Èg±Gh ]' >£1¥ŽK.'Ž@ó“{>’¯ê>pr‚uþšØ¸së»ïq!ŸhY»ÖÇ[Gô<ÈâYOs{ÒC]†Ù¦MŒ‰]±¢˜è¡Íæ ›Ìƒm@ó.¢ù‚0…ƒQ‡ØŠæ¾§üÇšŸZgã§C¤yxð,CïÅÞ¡¾a^§ø ý ÃÛÿ?m¹òçX¥sç5ÑüŸB—Žªš±ß“ |]lìÝDÝTÍÜ÷6SÛ …»ÛF{;7¶óÍÃÖ­{%&¶Oo?¯ïAÍCÄH4&TM h4`.¸^EóÍ[ÖD¬eš‡Î6õݪiå§M¤vDÈJS<Íý"½O2ó?ÑÎIÂ=¼™~ÇÙ5sòtJš;-àç{pÔ®5yœ\§¹optÙbJòÍ]–yÊdÓšöÔÅ‹3gÌÀE?|Ûkè 3 4ŒÆ ñÔi^þLAXÉSNНxse–¥ßÏ2voηï@s 9h4ç4šëFcf†Îdš‡„…¬³ôYê²Ê¼™æ‘áþþ’†0>ÿ´wžÀã÷'H>1ó µ}$1…‚枇fVTslE^gU÷…v.Ž..KŒškÔ]'ê{L3÷àÒóìkà®jïìÈ~¾91<û؆¾>¼;´ï›£L7#£yÅËuæ!{îûXUvÿ~šˆùùä  9Ð4šsÍb]„‚…Ø‚æ¡Gl}¦¹šÅÃgù6û桛ͽd]B<ÂÂ,]|†›ØÓðÍÃ=2Ä?ª;…ã±nôžO¶%Í'Éñ­1q¡À®‹Ë.sY{Bx²A³oîì2ã9ÎÚÅÊÅEÛÚƒÛÐ]ÍÚÍ‹yycW¬ ~•°Så ðU°½vs šW}ÐsÛ{ÿÛ§ª²÷Ó¤ofVÍن手ñ/Ú¹w·AGÜrkèÊ@X. 4ïm4Œ0ýd=ÍÃ'4Õ“Dzx°œ¡ÏÁP‚ó4ÞÐW‡F»y€Î7òÞnx)&5W•;Ûò‘glš•#%v]\%)MÜs—FÛ]ˆ~º„þ¿ötv 9*×Ý»‹ùøPß§]LlµÖ@[ í>í4¯­úúîÎLÂUÄZ¼«€vsö¢yË)àèÊ@X. 4ï}4G…ú樇Î^#ÔP²|ó&^r®!^áaÇ\}yLÚo7ÿGvî‰d¾¹c šhµÌ.ÚDFÉ®Oê»îrÈÒ}ê›;;E}s#7 ›Ñï¡ëꆪ©Ç›c0Gzµ^ßšã¾Úº)^ÿª¢8ãúÙQ.÷òq@sv¢ù`ùYBn1%ýøO8º2–KÍ{%Íg†ÎÔÆÐÁåXwïS<§ôc›b‚CBfšâ}:¾ãÁ–Ñ]FóÈp/¿€IÆønZý}×ù……DvŠæNwF {¾ßÆÙ•~š;;8»,1ñ胚6t_iïÂV½à¨j›™z_¿!³Mµé¥yùs%óÓ¡¥øpiéãyæçN—ÍÙ†æu/"\|Ï?ÿRTú4îÈx>¥€Â_td ,—š÷Jš¯‰X»9bK»4 ’² \"À€Hó¸¨ÿ̼d=¢übcl/)vsö¡yc=®)\_”ypÜt›ûõô¶›Ãri v¦ù£gXHs­3BsMÓ¦¹M¬­d°>fPô¯ó˜ì­°¦Îy&‹ò ‘µãWÇøaš}óµ¦^“<#ýccNxž¬Ê0¶Kh~:ᬢyXx iîãs£ÓÇjá 9ÊÎüiQQçp|ÿq=«hΔ§½gм䩟¶Æ®í»wnß¹qÙʃÏÊqôý‚åÒ@l>ƒ8fíáŒÐœñZ4:28pp͇üƒx“N‡Îâÿ6s6Ìû–¢ÀÉÓfjO2F]2â–¡Áý;nœŽŠ ãHßè³z‰i+®dðeå#ÛŸiª”Ƹ!†6ˆ‰1bq9¶ ±ý±[Š8ÎE\¦ nã ÄSñ@|‡"~ܨxÝ‘¾þ TýN!|î¨úŒt)a-1Ípšâ!EµjV°™k2.$7­) jZGùŒs 4£zÇhÞjzXRM{ÂŒ4Ã1'VÓï¡{\dæ(UmòOÎ \r+ûرD”gpç Ÿôx謢9Sžv 9}Ú{[ŸvT(ÊQ ·ˆ :òsèÔ›áq1Q' G‰M^ù¯¾H7òJVÂ5ÂÝçܳC‡w{î^ïµ^Å[eºï q?q..I?©E>‹Ö›ì;-”b½4EÞüMak­Ýì]:ÕçÚô°äþµŽéŒó ŒõÞnéÖN¤ùw\‰d¬¤• zuî»nщrèÓ4ÍæœHsÓsÙ9Òרpj’ ¢›.à …][ÌS2H ÷¹¥$X½Ø2¡íó ^9Šò¬#‡I1h'$wâtž3~+O™«šoß±}Ù‚±ncûs "â)¹øÐ%»µ(¬÷[˜‡‹ÇÛw´ïúU}Êvót}5íÇÜŽkzìS±Ü°èðŸaü§ø§ŸT°X`«ºÓWÀÐc»­+iOw»$õ=7Ö¬NTßëæ`GkÚ™VÓÚ%¶¨-ÇX aÔº‘樢_ž–‰—õѸ•ÄíÏ…Qæ м§ÒÜ+·/ˆl„ZÿšñK²Ý"šàhü|<~„ZÝøU7chœ'Ó@ÿû$¹æ!êÑ'"'ä 4Èo”»”‚ï¡›´ÂŽ ÎµoÄ©vû´wè?%%B?Óõ1êÓnàn æõßDÇiƒ}¸…}¤ùNn6;yÐÎ5\_¯\@àƒ´tÁBô³LP¡ÃOošPŽÜ7×30ùOõÍmöv/ÍQMšm¼Ø*S$ÿö \ðÍæ м§ÒÕàÀÁA§CÈcÜפzœ%}EÃî«SÛ:<ât쉰G •Cû&Žðœ?À[x ß ;‰ÅÇëw>´Ð!Â)82”ýg9éf·Ûs÷tßéý¹¸\dƒç‹Þ²…ôëÅm[Q ÓòЩÐüß5ŒÝ2}CL÷ÒÅ·Ç$¡@±×vïîª<îžÊv 9Óô§8?ÁrÛúÍ{´µèºÓµ†~å5¥½û4ìSß>wØÐU)Ø6"[  y£¹d°”M¬-y Šï ®l"ÐÉÃDv;†Eò Xäa"ÛuN¯1}üŽr±A‹WéÔíPëàÓM®}ñ”%×ôt9n.¸n'.˜aÉÕÇ—WÄiÆÙšÿaܸDõ½l>\‹šö}x\!e¡wšïcéÿÑÙ§hÎ4Ç=ö\$®ê’]Yß ¬Îµ=|2«?ƒÜ—ÔuRjç>5¶ ØÍ{Í„)Œ:DI„¸«Úyôsøô7Ÿ‰Ž˜aëû:Ïêï3º¯ÿ@>¿±“ü•Ö‡hØÄØEÆGÇGFTŽnÑn~ïð!œtDp 'ÎìzcÍêüE »éq—çò²Fg½ƒÆs͉ºð!M*Nª@èþÏÂ2¨içš×dkK «î\4ªß€ò#ßUu,&mž´ãZqû‘ P÷Î4ï"šß41²ÜÎo¼±‰”nŠ‹K197á¼ÃLÃܾÂýýñ7?XU3ò€}¬ÕUÑ/99TŽý}¡Oû$94|Óó‡ÎÓž¤¾çƒô8bØæ¤íj£ÕÃ<†©ï<»ô ‹£+gÑÕüäžz^¼?Í9†æÉKô•3LyRòáŠå4A¥ —¿;’·Êk߬¦#ßœói~ÓØè/‚$NGÖnê ~ý€ÑñýÖë4׉ډ s6ÉzΡ: êøn­ÓQ7 ïïÜ~¶;Þœiîî`W&(xqÛVRLüÎÿŽnçê9ô ÚÁÓÊñÞæ>´§‡e+šÇ¼ŠŸ4ãÅÚB 9ÇмêÚÑ!Euh¸ê[èœÑëR+;E×ö.:v¿ŒŽHhÞh^")‰üÙdÜ äô,dÓ~d˜GßivÓ¶˜í ‘Œu78ӺݼCâè5ÔÂõ1(ÐQß§}Ü8BŸvŒ©»ÙL·™#ÝF¹ÏòH—I?µô ÕéaÙæÅ5"‘"qr§K++æœAóÆ¢õi›’¿TýmøyO[zš5]k¨5©ôÊáÕŽ/«éˆ€æ=æ¿FiÞÐâ…¬:‚„ÍGŠu´O{O¥9*7»D½øñæ-Æ›ï÷Ø/pJ`žÍ¼óãÏßšuw@®³ò9ŠéaÙŠæ¨l N®Õ_û-ã'МSú´W–\·Ù¶RmÛÆeª»½—áèÏÀª:;ƒ Ó 1¹,àž¯à¦r¦hÞ½¾¹”±‚½rpSM{É8©NP»§ÒœÖp6W;>>}3ƒóÂ7ò‘‚ãKضÝÕ;ìç¡§†æ›=šÃxs¨kÊBý÷»F³f°Øºýм›ÛÍMŒ(fQ»aj 4§_šC}x÷¯Ö¨œ¹ÎÞ¾9ªÿb7Xì´šÍA ®( ØO‘&¯ñ{ý6xùê 9+ú´£þø¯ÁƒÑÏ&ÌDyo 9Šï3£/»IL÷®¼=ð:»¶›uæeÒó)Å_*€æ@sˆ¹eW•m¹p¶ÎÍUu÷f,š³d¼yשÇӜاÝÎÕ~ªï4_É9Ûü¬•ÛïÓ®©ï0XÏq‘Ì¥ùÏšrA/ÁÛáY@s 9Ä̲ðûSÜžé«_”£g¨LS^4šsÍÉ5Ïg¯¨˜™#-šëÑ?1srÆN­HæÓ•†ŸæQs 9ÐbfY¨H\„Pl‹)€4šs ÍQ-öVä%®fi›¤¾ç©ºk¨šš‰®.9gõ ¬Æë9¨/×sXG3²‹hžv÷Âë15vUgÊË~Íæ “ËJvÞ(‡¹à€æœHsT ¦Î3ðl¸·kt_Š‹óòºîÚÕ¼(ªé|ŒÓL}#40ÓT©N5²‹hŽÍÍú%5v„ë€Â½;–(ý‘’Dc€æ@s¨ëh¾9Мiîî`W2B@ÎVd¨ËüääF¬±+Vóñ댰³gzºÍÙšæ­>£i›k+?Í"¯¤œ¼í’j$ÄÔ²P“uHJÖâ) —?µ’‘:’Y4šs¬õêŠÆqRõQáx÷<å·Ô )ëU*%üüÇMMÌ™iFhž{ïN­¨è›6hxVè&™€õolŽ×Љæfßš³3Í[/|FË46uùî©ëwïީȇð/Ò´Ï(¯§ Ø1·,`ST¢J')‰S\–ˆšÍ9Øzí£‚Féq¨‡þvîyá.}C–ëw'ÊÛ¢9ªÇñq(¾Q=tÿÂiÜha.ÊæÌ•…Ïè[ßœš^¾9h4šÓ­l]jòSuר͛•Ž/T9¨âpБhŽ÷гïzº¿Ð×îï7àìÕËMñ¹é3šúà…;åþÛùúÕ󋬼ÐxAÇÄSÙ@sVМÚÂgíš.m¤¡Ì(t¾YQO#겚v-¨iš÷ë(X­Lø]OM ´29FD­É›Åq¬¢9I¼þRÛc[D¢L7&£y~¦ÆqßY17/åÝ ‰”öϸ4‡ñæ  yÛ½àÒö‰i&½Ä¾;£)&´÷*ô‚š÷$š£Zf¸U^wn¢då\Ùè'Ëi>7r¤ÏvZ4Ͻ:Ç$ìÁ%¿—6ëxBX>ÐhšS) ˆ5AF"J˜ôM”¶¦ÐhÎÑ47µ4åõ "{¡PN'Í/ïï6ýNA ß|Ï1ßÙ±7Órï…ÇFpD¸åÍæ  yçgšÍ9šæ¨Öد•´‘ÉG Ž/‰am»9Igî% ð ¸’Ñ&Íä§_I’7÷Dô|å¼c…£Üæ@sÐfš÷bšïô³‘X¶Õ‚}|ó{òðl £AóXOæ³NŽ/šÍA@s˜=hÞKiNl+_¡¿ƒß]fã– 6i7G5!bº˜“~{4Ï»rýÒr ßÙ wïB/8 9h³ÇÍ{+ÍmãP|Y<Å%dbÉ&}ÚQmJÞ:Èný•ìl²jdãÔH‘ÆAK¢3Òa¼9Ð4‡ñæ@óÞ]ÓNÔ4×™ýN®0²°d‡švTæé–£|Ú$^†ÙcØ’æ5o.˜¨­Ü°cϦåªjF?béÊÀ6€æ@s 9Sh®a£Ù߇o›Ùq6¡yèˆÑÁãVúÄÍÙ‘æ¸ë[E¦;½­AÃo\¦ o¿REG¶}Ô½5í0{ мÇÒ—°¬õ^6¡ù͂ۃ‚ šùÞš³!Í^º+Š«xd½/}•æ¼t¬²÷“:2°í£@ ®î³ÇÍ{ÍgÙ¯â<›Mh°5CàÔH!ûèŒ[è×h§[h М}ÚÍ+¿ŸÝ,@˜‹ƒ}Ä—:3°­£@ .¡V”ª;ÿðñÏäÁ5 yO¦¹¶ùáAÞ\çU”£7o꺅Õè¤9Šïé³–;‚†3¸rÐO 9ÛøæÏˆ-õÎ~ý|Ûk™È<çÇõôøæm±¤, d1æÑ³?,|±3hš3hšÁkçèlgá…S¥¹Ïþ}¥||ã­¹®–{=vl ƒÆk™8saœ7w³°Üoê0Þ¿ÖÉ@Œó|S+Ó.£9*%ï5:*FZK“ÉQ~íÆwVÑœ…O;;¶› Oux_=­âµÓ‘Wpôµ›·qÄÚ²@ÚA.°öpFhθƒÉÈ8:ÛYxá­i~ÜÄEù™ukE‹:,AcÐp ?¿©‘ÃBCÇÍM{ÚÈÚYŸ®7±´Ô4uŠqÜaÑ…4×¾¤£lµ1)Øõ¯ŽþÙNs>íìÙ§}ÕbUµmÿ)/^mØ‘>íTXNóg¯~£%”¨NÿuïtgŠõÎÑœ)¦;}í= ÛYxá­i³iã[ 4 d³k‡$1ò„¤Öº=+Í­Ö8o$úï¾éDÓÉɵǣù0ö]IsŒ»Ý¼£ HÑ7¿~ë éÚ;í¡wŽæ,Úa¼9¾9øæà›·KóË*ÊYòòh@ÏÒd€ï S333‹ãgf,ôZ¢Šæë7Ñœ ÛIM³¸¸(š[vi»y€t¤¸ß8”æäíæà›ÍA@ó®£9úç™…\`Ð:#4gÐ4ƒ×ÎÑÙΠoMóè͛ތ• †ÇÚHêè`6ºf‹Ø¼ÙÜÒz"†œæxÝÔòØV#n}»ƒ]Ù§ÝÏ9…7„¥9yŸöë·>³Šæ,|Úæ P÷Ðú´CŸvŽîÓ~Üĸ„Ðnކ1Š{´4ô—nÅ;‚KÛ¥y>U—-¡lfa+ŠqÞÜ•½àP xoÀ=o4€æ@s 9=}Ú½÷ï+áçG=tãöï@ÃÞ„>íæ–¶âÊ­а°4±´ÚfìÂ¥ow ‹i..’2"h4€æ@s 9=4Ç{è¦&Q›7{®^0ÃT‚l¼99Í-5LGbðÞ:ãjsK³.¦ùôØAダæ@sh4šÓIs¢L ÌxQKÎ(;ÎtšÍA  9ÐhÞ!š£âuå564aš«%­7]lðØn[Řä×8ÕQ7r?å\÷ù:l˜¶ûyF.м{i^÷åÎÉõ -[»tÑZÃøÏÕteàïÒÇé~fÚkņ*&T4GV$.$ ´wŸÆ}êÛçº* ÌuSYh=ÐhÞ“h>ÎfœáCv ¹Æ…}W­.Z¹ïÕé+yw/=;:ã—Ðö'ÙèO™ÏÖŽ¬Ss}pûB¡Ú˜úµy@óî¤9~E*9‹'UÕë‹2µ&/ ,üEGÖž¿”÷éç¹E¼‹ÿѼ:×öðɬj4\ÿ%u”Ú¹OÀ,øæ@s 9C4·QŒ3Ùá3Ó|¦Înô«É/ 5ƒÆFgv5òT“3¼ê׌”¹¤n`ÑÅ4×»¬¿mó6ÒלkÇ«ø¾¸“Ÿñ]DòóY|w÷œ³jD¶4ï6šß=()K yCéÿ¬¤yW&céÎ@Ô'§9I?“6OÚq­€šÍæ ÒEyWöb½¥û·ïGÃ7e l¿.7)ŠHs£Ù“ÆíÓµ6>´D¬–WÞÏ´ki~üší M_ïß~²Oº^ѱà~~öòáÓ_Ý$ÄßtÀòÎ+¼4ïΚöÚO7«-YµYãÀ~õe£øÖ¦V2LóŠ‹[åµoV°@@s 9М 5í(Ä÷¯>¼mËÎŒÁwryÿKÒÒ>+5¾É7'“…ÞšÜÒáF]Ks· G(¿óØtA½Øº—W Mä@svéWÿ-m£¼×ó_ŒÒ¼èÚÞEÇî—°@@s 9МIíæëÕ­Ú»êïá»» ,L÷ß-EIs £S £°ã×Û[t-ÍOeÎП‘}ÿÖY «^¥e7ýDYÓ¾jÚYBóªò[Ƴ¤w\øZõ—Aš—^9¼Úñe5Ð 4š͙囟œå,£/ž7àžùsãíO‡J´ ¹…±çòqXþi1zf]Ý .ìN¤¬Ù„gûä~ ‘¡ü¡Üš‘ujnî\$ô‚ó‡^pÝÛn^àtD}÷®õ+ÕÔO¤½+§/qØ,G}{•ùB'v]lR½zÕ Á…¿V  9Ðhδvóm¶LÓG*‘™ëèç_ù‹ˆ7w„3ô["Žã|ZÇ´ú´Çek= ‹OI“Þ\Ë#ŒPóú6e8~ØÚ”/®Ã5ošÍæ@ó}ÚÕm5OQ"Üm<ß &¡Ü HA¨–wr\gQÞQš§ä\m?fšƒ@@s y7™nÄåçg,²öÆÏzz2ÉðY?ÀöÕ¢¦UKPM¨¥i½±´6êÈѨ¿Ù8niÃÅM§ÍKÑZ:ýƒ‰ž©BuÅi=ãÔ‹uÌl7?h}ñÑôÕhÓ?š£án²ðY=ó.¥ùµü<<@s 94šw“éº÷Ú yŠqå ØœüËB–—ÒêØ5kqZÖ+¯þÚïX÷¦¤ºæKmÔ¶Æ‘[ëªÐÓ¾±:4§^tKuÞÛ¼¼æÓ’ *¸9&úíw¦ö‚;z\ñγÇ\Ë¿ 4šƒ@]T`.8 9 á~W>x.åyïWiNR}QmüÞFYÃZôÀú' r#§µ8í¿=¿hÙ†üPC«~àoíÓû×ä­¼ÐÈ~V§5ï—”µGsƒc†È©Á,§y¡·Ç×é†{ô©’“EÃ@s 9¾9м;L“*À ã­¿Ö4Åè{öÅGúJøÝŒ*©mÇzEâb%ö๠*ð1ØÔß¼b×dÄËä×ÐÉ7“¾¶¢û*MÈþnÞ/šõuïÖ[„hü¯¤èîÉÿ®ŠZ\¸TÇ4/ôòÀÏ87áòiªØg Ðæ@sÐh4§GغÒÔ´x—œ‡ÿ†ÛÔ—âŠb“£‡»ä<úÝ®õúêÊWuÇæ6N·«­Gižò›‹ç·{Veqáí“Ê÷’õ4bãC‚¦Þ,® ]?ðë›c¸æ“’¿pOÿwUÚéNö¯†”äúý¦âô¿Ç@Œó|S+SS(c”l™Ø2òì |ä9úNW2tYvÜß”3yoE–äG5âÏê~ŸkZttÓ>I Ï'ÑNhlq`âÛIÄúý„±¿ˆ‘ 1yã ‹’#˜øÄÈÄÏkœï[Ÿ®?—TíxEÀ(íšÚ¤§ÍGð«’õCø514Ûò"Kòð×`bøÜ›R‚Æ0~Z”æíì€ løD±’æT>ûÛPù=³Am«úŽuŒ’¾×ÒI󶎺–æ¥ùQG‰@¿òŒ[jxñ#|ó.ðV®ÞÊ`‰PÓN®.L“‹ë+7'{×ýÇ<¸Ü È~upqÕ°òläFŠD­Û9Ø·õ»Š›B-l­â”EkF/ êÚ²PyU{¿ã…7%å5_r¢¶ ÜšV4š·%W÷1úxx˜±û&GWâÝ$›Ç‘ý‹l‹æöÇB×Mÿ1%W¿*±Ù06ö„xmÃCž"äŽW6òàqûfd+xL±v°£Bs‚ìœÄõÝvÛáÒún[í {Ú;Iè»í²#ÒÜ\„˜6]§ùºiª ¢ðˆÿôé›6~bÐ!½ º®CuÍ5t ÖÚ{{˜Óü‘³#͹:ÍYVÓN1+.c»Ø,xçºòƒ×L±]é8:2°í£@ î) ¸ú¢ñ{¥d ïÕÍæÌš3.{'E g-;{[{ 7.¢oîà¸ÈÀCÚÊÑÂÞሕ·«ö?ß\種¡šž—î±Ý„ïïG S0´HpDŒ¸dÈ!£©z.s ûhÚzw„KÓœtÔGS‚~>rqbå@s¦Ñ¼"YY`ÑÿÙ» ¸&·6àóª HY (vw+©¢¢(JçhŒ®N”A›¼ê½Æõzík]0èP?ýÎ6œ€±!C}ø=îwv¶½ï¼þyN¦¿!—ßd®;Vׇþ« ¾ûµ€~‡)SÑF­ð¤Œ1͇¸æ¥gÒÒæ»&dqà’Ô² ó¿>Z”’’ÄíèUü“jàoæAœ@î"çq ªøtdî8o‚$¹Ñ`86DÆ+À·SK;¹±ÝUÈ&`¹¼oÛ¶nš{)J79ÑÄYÌ&PòÕ«ì~ß_sª¿â8hþrózR–­Õßܼ۫ åZh¯o¸—ç±B`¡ßõvÐ|Èk^œ§žxºèLIa|Z² S2¡¸ã¡ã9‡¦{¥j’}~^Íû¹ÙÏ–YãÔ­m,¬í¶[޲Ákw`‹õܦc¤^Ï8#%=EÓí7F‹€æ ù·ýæ²iOH=àɲbÛsúÞoNóUƒv-4Õ¤­Ï®Í˜–öÂÒ³‰‡R…ÜÓcKHwóó³×{°=]ààÀsà4÷—;â¹'‘z•ýeôWó,]Ý“&µ³±¡[T&UÊdyè'PŸ@*ËdQÊÁÞ^Gµµ‹Žèhy{1¨yn»º ¹ßœËÆGÎÚ–4ŽÚ“njHÍÍ¿„ˆµiç–vqhþkhNo㳆—¹6*ÊjúêŠÊØ£/Zú>¦æ« ¾ó(¸Gç—_Õ¿køç~9ß\ïkí°Ü yññù³´ôóŠI²ŸÔñÙ·ãØÙ‚s§Õ=“PsÄw GôÎå¾kž¥«ÓÕM ñE½s9ÑÊò­ÿéS+W¯B·oP CšîÙ\¤÷@EÅØ'%’FÁ…p[»XcghóÍ! ìZø_íåÍ9<èÛÄ•†ñwêš ßüÇÉÍó‹óâÆà3“J s†ý‰µÎ‰žÚÒNAÜoSVß)ï¬ù‹IÂÝ4G:qùÃTÊQVŽ(ÏÛ¥JE•ß JeÐLä{Èâû¯9i†Ú¢¯3ÔŸ§šƒæ°hÞ¿ÆöÂì9ŽI>ù_Rõ¯±ÞYóÐÿ}½sŠ[³õõCüû±`áOÜ'••?¦à°ðáý’ûÃæ…y/÷vr0Ùb¢¹Ss›Î6icée6ËfºÎD!ê-*ì+ŒBÈOˆ'”_è0®Ò¨3Q¤©aBÃ0Q˜ˆ‰üþ í­±X«h¬¨±GÃi·|êZkWO/?¿—M™’"ãúm"ßsß7Í¿ËhšC@ ¾æ ÿ¶]=Ý\mŸWÓ šÿ£à4bŽÅ)ÎŒßÇí‘™XÚµÞa·Üü Öö€ÀcIÉêµkÑí[AATC“oã?û©¾<~J¿¬2‡+RŒ3’oDÌHîp>qüQ¢äÌè™ £­ŠZ-)»%bëÎU­pí½aFV¡Ö(BœB]P$d?r tGñ×T¡&öŽl·e$æ-'æ÷Yí‚ìMÌñqÓîÑðð]¬jf ä¨´Ý|ªv¼¤—¤A`DìÈߢ9æo´R3­`e•*zÄkS:…ò^³xŠæ¶;ˆ¾+s׮ݯ¨honšƒæ 9ÄϨù›}aQÃì»u² E…õ‹ÿÍ€ÜülÌ ”€Gx§Ú,.<ß“æ(+G”ŸRW£ªÊt”¡»}v[, VOXÇ6 Í3,nGÔø ³ç‡¯Û¡¤®·ÇÚ5kBžÇÞ&úÍu»µ´gêéÑì7?ª­ýhêÊ«¼|ôìeôTºÍD¬sdzE±¡¬±ó’¦‹¼·M°´±tuÁùøú~›Å£³#Ê+ØSk¹þ=¿`º­åå ÖÐÍAsÐâgÓ¼åŠÉ”Y¸[M¨üî–ûÌ)æZ@óŸmõ˜=ÝÇS§R„õ"ì ¶œGPÞlÉÍ2Ë>2BtlÈò¹„mÛFŽ!¸ï7¦ý¹iL;ºÍÔ£;¦œq tθOªîDw·×—NöCi"GÍ´í4kNF¬ û ˆéÈâå­…v™ÍÚdmqpòáåç9Jåiòòd=Ö¤¦,±¨áåMÚ²åÉøñH½g£%ömÛšƒæ 9įy}®¬ÀšÔ×䃼ÎX#¸1»4ÿÙ4/PܲOa‘ŠÍŽ9nsØ¢ß"㈫m´§GìÞàKjóÍ­,ß(C¯\½ åÚ¨Œj¾Mä3d̾Éâ œvŒ]„›Å:ƒ‡0‘=Š}Šç8EÓ1ÊfÊ{Œ÷XYZ¡T½ðј%ÝVpÐAsÐ4Íht\q\Ø>}G‡Ùî³9"ÙV9ŒÞi½ÓÎÞ> 0ˆB-ÊÖ³ ô‡æê1(?¢£C©®Ó1Rý›D>xCjÏY|¸JÅQÍ é & 3ÜfŒŒf.2·áಉw&`j¸¿jŽòtÐü—Öœæjt6Vëå¬Ë^ÇNž´n´G_c÷–Üz:•ÀÄ÷mi7ƒ–ö!«yôÎÂý^Ô»¨½£°óŠ Ïå‡zÛúl±ÙÂOäŸ0y·«)<ÄÇï­ `ç~óÓj»)ýæ?ôZp=gñèìI+õßþ¶¥äHXsk›íÖÎˬ=?ÙÈŽyÌù]´Có¶‘#Aó_Zsš{¨Ñ¬ìõl®ð6õ½BZ|¦ýYžÒåcO?Ñ©¶ z\¾®¨aÎßõŠ é…QpCVsÄw G9tj ^r¡P¿È[Å[ÚTš+’kYàrÛHlÚéŒncÚßcÚ§N¥7¦ý‡[Ùµ‡,ÝÁܼv´`Î4cª³)KÌ›1Ó» É{$Öi'ÏP ÒШáåý[Däü‚ŒSø}عcówwÓ<^I 4ÍXóºSjË,J›ûP «ÇüzšŸ>Wì¼5¯ S:㈦»–@œà¬ƒ³lrmsÎøUvDíÿÊ®öææ äùæf…8*Q¶QCùxÛögÜûšrÐ4GñªHoÇïoûP 1È«Çܸý?jÎäٙќÉS3©ùé‚ÇÔ²_V®”Fª÷Òàiþ‹ø ›Bv%=ø]÷7?p°‚Uš'&• ”æ |EF³Pó3…OY¥ù€ü¶ƒæ¤u€šÈoû§9Í=Ôèm¬Ö'ÍÏYií¿û±•ƒ¸zÌí{ÑJ †ÿtgø³3¦ù€œšaÍOÞG/<šóqGd![ÀæQñÜËð28ÿÈÆ´ æû“.R¿÷ËSó} ¥ÔS'&]dÍCCORÏQ4Èšç=¤žá 1Íð·±k æ›C@ Î|sÈÍ?7w9|+x㈸Ñ2é[R‹Ò^=rsÈÍ!7Í!@sêÏ,ä˜É³3£9ã§þÔTUU²Î3cÎKRË*ÌG–žMHK›ïA­<[x溟÷ßf&×ý|Š ÏPÞwê褈­¿ÅŽ^™´;³ø“kÁ1û“.°Js”¡³Pó<jŽ2tViÎä…šC@Àê1?á˜ö¶GY•'k›Žå4ǧ% :%ŠIÛŸ©„gž.:SRˆ*7è{¿z³xÑ“*è¶YX¸4!fé>­a1<’ñ’ 3de×_|LûàÁ˜vÐVùùf¨?Þšx(UÈ==¶¤ÓÊ«¥g“&>æ_ììL­ôtVó.¹ ðľ\§4ÍAsÐâ矡ö*Ïz¥ºË¿Ò6÷ìo> ÑzoM86A?¯øëŽ¥äJåmfwæ-¤T†ç¥ðG-=öàñë~>»ë hšƒæ 9į¹z ¦ÓhÎddg×Ä'ŒÁg&•~u6¿8¿d‡jì …Ä’"+Ok®(ž…ûvå–ä?Ù¹ão3Ð4ÍAsÐÖ‚jkÁfÏqLò)îBíuO§s$çy,\€_švˆRùfÑÂëþ¾ 9hš³xµOo«’Í6ImÚ¦²i´6±úuSß>Àw8è¨ÊKm¶8zÿÝ×a±oÏ»ÌÆ ÿfÐ|¨‚{ìxòæå†–cÙõñû¸=2KI£à4bŽÅ9›¿ÇÚPø›©\Aiß[.NÍ“„©#ÛAsÐ4gÙjM—ìTö¦þۂʵU’¦ç[úô6µ¿­ù@*Ô? ]0aÇ醎úšJ7ëc@sÐüGÓüSÓåËgæ8‡cl¢¼SíN’„=s e¹qÄ«õbžÓ<½ýßcÚ-D岤„Üå4ÍAó¾Í•]ÉQw/pî$Í‚¦~|€õõ÷‹BäŤ"o½'×4W¸®WL¸™Eï ùÑÒþUØÒ’d‡_‘mÛNËG5(¿îïKšoîï;€Y9hšƒæ¢ySC¹¯´¤Bü_ïúþ~|µƒ¹Üçú;rû|}…÷²¸Ê×ï²AsÐü'мøP©ÿv¾0>—dÜÀª šƒæ ù÷мþÅ Ëe’[cnÔ~êߨÐò¢*e‡ð §ò¶÷Íõy›¸8ç«èèhmàÃð¯3ô/y×fA€æ?¤æ¥%-/™+›Oˆš°¯ qp(g¹æûö•ˆ`Isñ~Æ.Ãxu¯ý¸ó>ãls2<{7ÚØ8|LŒM¨–hš?ÍÛknÅì\$ãtößú†õ¥šÔð>žºþqþDÕ3}j̇€Í‡šæF•%é÷¨wQyŸLõå—·Yo›¶Úa&–iýÁ4'„¬vHZêà`çIäņøÓ“×'Av\ãbo”;x„pb‰*Þ^›ƒæßwµæÆBU¾â›u ŒÈ±U¸ÇS·½(#kîÚ­­*¿~³ÕñGuÔ±îÒ ȧ0.­ƒÜ4êš#¾K8Ë) —¤Ý»<²ò"Où ÂÊ•é«òÎLÊY›wà’—!Íýý‘æ‚öD zòz›UòñU›zõt œ}ø,ÏhiÍa¾9hšèÇ´«*~«:?»|Q¼Ü† ©üóg™r&4'zû‡Ì²ÃØ„ó8…3zVz¥ˆMG«¸œ]…‰{6Œ•ÚïÓÐþAÓ±¡óC9l³ ‘ñðí·æ®“:ÞŠ@EÐ4Í!`-8мÇ8`\^…©>.ui]Þ©‚óEƒO9㚈²aSñDwÑ&„#ú0r‚žÇþ©î®þ¦î!Ü[Úìº9úÕ»À€Þ5Ÿf6Å=Ð…tÀP{¢¥?šGÄAsÐróŸ,7/æ(÷PË_h·ds’êñÜÿ±„r&4™† Õ&’ÊÁ!SíC- ŒdÃ5ÿ Ä“±!Ú´­¸¨>=ù”³_ïçþ+íC¿0XŒÎû¯¹…·Ìäf6Ñý& 9hšC€æ y§fvŽryýCÛ ·oHT(}5ÖùÁ¦9AÊ>LÒ“èL´ô c³ Õg¤±¸Ý%^Ò=ç`îÂiG³ßÜ7FqRót0ÿ¾t…ìu Ö‘ì‡rÚ¬ÉÍÇ‘[þyl¼H5VNªKžŒŸ›?mFhšƒæ 9hþ%ÒöVnÔ;¼)OsýI©wÿkB¸Gl«þÁ4'ðþ¡’v¤þeQ×Pl¨C]çi)å’äÙdñ!2^´º¹}­/Œã¾­ïáß·m¾þÃÇ#숛|gnm¿Å:ˆÝÆCÏ`ã5A‰Ãºéb‰ 9hšC€æ ù—ð(¼:s¿Î‚c _¶×ÒX îÓNÄû„ŽvµÿéV±²v67?$<¡t‡‰…æÙq“AsÐ4‡ø¹5¿}ï#ºB!úû3ë9ñV| BIÙÏ~øoçøÇÔôÛœâçÇ5dÿ\?¦ìì:XõyÓšþ“‡j=)Ï`ÙûAþæÑÐE=(Cn5ú»¡uœºíf¬•,iþ¸®îv)i‹üç qÙHª1‹ª~{#ÜŒ4»\Î%çÞ‡¶çWwÉ*¨h¨íÖÞ*Ĺ>«ö~º£<éQ\îýÖ'Ù8Ò«dÍÕ—L—5 ¯¤lïÒr-ÄtãŒ5ne-ýxÏ ùOŸ›—]«„XFàØÇ»ïâþΕè{ÇÚÙ±$ЩoýóW¿ãö…¥”i\N‰òG®^¹÷#ùç/tö§5/Xèì^>Þ]Â+`ò—jÜ–z7;¯DG ñLœw÷—0›ÿ`¹9Í=Ôèï†öõÔ_Öv{û'n†¤ÍåÖ®«½QË-eæSgãn66nQ¤-ÀF®¤ñÌ–ÛIVž¶6·ýfRÙú¾ñYºuò?õýyÏ 9hÎ|ååŒÆæ;v«ÿñ4ï1îܼþ$.ú¥³ã“ø˜;7ot{4Qëü‘ð2ªæyñ×ê]îælí¡Ôö… >qq¡[Tîåd½+è Ô»4øï“µ©ßyzÔ¦&ÿûô!]ÍéNãѨ£4ÿQ[Úé,»Ú}74Zš7½J^!°1»žŽæM¥ÚÂæçÿk$eÜws² ï¿§ýÌ…Xïk ¯+íIÎ5»òîÍ ‡’ZÞ3hš3«+F‡¬[’*óíC,ÒÜíËÊ-©‘·¿jû矗 ‚bQ=_Љ„?ûMùý¼ãí¢¢M«V¾ÖÕA·íb¢¨¦óå%åÐc”p–w¶˜Dyzj׌Ó3èèåÔƒt.SãÕ¹¢“'·®[Û`´Ý~ŸŒj@sÐ|`4ï¾ Í3_¿û3Eqâ|Ÿëít4ÿÜö¢*ÎZc‹¬œ´Ì‹ÈÊšFÊ£×õÀžùºÒ[òä¬VôY?³³ÿ”â®7€æ 9h>˜šo:à6*nlqUéÑœœ›g?XêÔYó›ãã….ݾ™?>þjE?³rDù3Bµ•Û'‹uËÐ) 'ê_@·ÝäEѾ`~7ÍQ†ÞszNA:„4ÿ«\ŸhVq•¯WœšŠÏ9üíFr ʉšç;3ý46ºiå Jù»·J.”ÊÉ8¤(‰wÙ©¤§è«(ã%³¿|–×,1ïÉãDZErab8»DÜHd ½à å¡‚A‚¾ÂS8¢%ùbç '¬šv@nÕ!u#¶;§F–gåß-{ðê)ô¶µkjS“©šûHvÓ‰§R‹Ê>R™ 9hÞw»í†ömKû×'·]w™%fpž${M¹µäl\eéië×Ä>vÙÈè‰#bGŽ%Œã9GÁFÄÐt¡5ÎÆÇ×7$,4!)‘à~0yr&ÑèX®@QFü…›Ïÿ¢Æ½—Q&Þ=7_´¢pçgvt#N[‰›–ìïT«wÂO1Ëqi²ž¬ÛÌ¥îã9¢%~‹áEoIÜ_\Î[ÎÎt^‚­RÄ*¼¯'…ïŽ2 èË 9hÞ1ÚæjôwCë>¦½ËžhèU;¥ä”Ôw+mÕ ¸ú¥Q}ÃØ¹»öêkiïØ(¥ìZü¼á=­1íö‡n×]±’²,i"¿«·yëÝ*Úúõž!@sмñçáôÖI“ê–/{©¡–¶uÊd¿áå~tÍ©ˆï×;nð™›R\'Çn5ÇÆ-4+`š¹Áxl|ä…Lä;å%([²/¶ý懺÷›×Ng¸ß¼6õ`ëº5”òƒ䟈‰Â©OÚj·hª§$G$ÇL™ Ö {´¬ŽÏó•9L¡ü»¯\ÈvMîñ#ãG‹%.Ýœiè[õNuG¿¹X×~ó €nýæ}Ó¾h!iLû¢…5iÌŒi'õ›‹wí7 §ö›{;ù`-°êæê«Vóy§ºO]`³ÍÊdã§a]þœpÐAsÐ|Àÿ14¿ u4ÿæZøô¶:Ýjƒ;ºË;wg`9y°%hÞcüB¨_º¤c‚y¢†@ÌbT@5wÈC\óûyGÆŽ½8sÉSm§3g>;é&yDú¥ò+Þþ>ÒXéÑá£Ú-Vw°HÏÈ ¿JcLûÉãˆïŽ1í+W 2ªaí|ó—¥Åˆo”¡7íi[»•QM·1í(/⼺g—–ŠÁ4<·¤7†(‡yÃÕ¡9ÊÐAsÐrsˆ[óúcM·ôkOk¬3ÙúR hÞK<¶µ~¡©Ž §NáŠâI8w•Q ªJšSg¨uÌS‹ý4"ý_?7½ÀTØ[┿j¼^š'ŒGÖSëŽÏ8K³ß¼ëÈöOöÅ’æ›ï‹ýv¾9KVA™xmZ i¾yZÊ·óÍ»õ›_Ç”TO˜]-ŠI]þ¥ãž 4ÍAsˆŸ¦¥½ñeÒò±[rëAó^ân(±nÙRTPuVÕôÒ¢T’róð!—›wZ=¦óˆô+åevvbbs=8}lw•WTöeLûº\·1í÷6½ÄèïÐüÙ¤I 9hšCü$šz{ÑmÞD¥ÌGÿÍ¿òCÇ2¹F ”–Ó=yï±’V‘‹V¶cBÇ,sD•ÆÊF5Â"åC°ß¼“æ(›~­§“[}nÖþmœÑÜ[Ý·¦¦§£T?àëÅ Ñ•]É‘¡­EAœªù!mÐ4Í!~Í?ÕUGo’ÔÏ|Ñ £àhDeñîØãÊ.V]I=vh¬szfú!].3ñ•*»Þ.Y\7aüʽ„ƒU•CYóßà &ã†ÅrÍܯx¼º„æˆô_As è(Gê¡[Óšƒæ?‰æŸ^_ Ü0V\+õi3Œiï9®V_=œsxþhñ䘰1•ᾤùæá!åçŽÏuN «`½æøuivª¡Ô»±Î5Ï_øãé$Üð(¾íæœz‘þ‹hN ¤Ì7ÍÉË·ÒßìÓÛó.³1ûŒ!gàÔ4¶cûô¶*Ùl“Ô¦m*›ÖIk«_7dÌ\ ÿûï¬ÛÒ1“µÒºRkÁuŠÂE”ádØ$ó‚r=m}µxuj;ü¤Á‚ÓC`¾9¢¼„£Œ:¹\n`s˜¸‚gŸPÄ¥¤~HÍAó_Esúû‘ÕTº)X/ìæ4¶ckºd§²7õ_ÒqµU’¦ç[2&®…îó—%¼lƒÜœ^\®¼~0I˾pþ£Ws(”gNë‘t¥rˆ¬CÝuCj1GÙ¼=>\ûÆ*ç{½¿#ÒAsÐüW_Ùµ¹Âu½bÂͬnõ ŸúÛíØ(Qw/pî$Í‚&€ VÄ1íù.ëð³’Vï–L=Èç–á{¹¢‡— ~¿yð’Ì*Lµ”1OÂØð«‘ß•lÐ4ÿI5¯¯ð^¶Wùú]vÿ4ÿš"uýÛ€Övl¤´½¡ÜWZR!þ¯ws×BçmWEwWÛçÕÀ(8Ú£àôO¼Z~±òÒI™!ßN%aˆòø¤ÄÑn~=R>øš;©DT «RÖÑö„w/bå 9hþck^Ÿ·‰‹s¾ŠŽŽÖ> ÿ:Cÿ’wíL~€ßnÇVÿâ„å2É­17j?bL^ o ô…E ³ïÖ=È2Ö/þÎ…ãöÿX¨9“ggFó¢s/Ê®]=˜‘1Õ!|²ÎþT±£Ü ‚W®U|íIïˆ$÷+¯yTÔ9úËÂ)}S¹xçþ+#*¶(k¢éEo˜>ƅ˯Y¥yYU# 5OØ……šŸ)|Ê*Í™¼ÐšÊ=Ô겪¥½¹Ëvlí5·bv.’q:ûo}CúRÍÓ ×BË“)³p·šH£.o¹Ïœb~ÎZpLrÌÚ—3£9:5µ\µ®ÊÈÏxw®ZÀÌ3úK½uÖ¼£2xú)¹½›„C…ÍÌ©cÚ™á˜Uš3Ÿ×3£9“{£3©y_>€š3߆öí¡F‹þ ÍÁ@¦ÛFiý?5­íØ UùFˆoÖ10"Ÿš–^‡`re×\Y5©¯Éy±Fpcö7kÁݾ÷]¡”`øOw†¯ñ9;cšŸÿ—zj”¡—ÇWUMªOß1i4 ?M={TT =ͬ¬()å­_Ÿ¤¬ì¯í+»wã¤@IK{«oç›÷+.•ÕPÏÎp†Î˜ÈUר§.g"CgLó¸øêÙö_dÍó‹RÏÎp†Î˜ær¡1|¥£³Ã|sˆï­9俤BueÕ´êŒÃN¼z­bˆäæ6ÚÚ¯yyÿ»¸hÑ=1{îÉx E{š«Ç@n¹9äæ 9Ä/ÓÒnF¯¥ýñÌBŽ™<;cšÇ«§G:iTª‹“+¶:ëhäj2ð÷Ú‡…¢§ù4 ß—¼¼‡6o¦ÔìQÛ+êÇ÷ÇUkëÒeè¬Òeè,Ô<.¾˜…š£ Uš3y¡æ,—¯+$j˜ówýÃ#†¢Bzgÿƒ1í_Q^ÂQŽnË.W–sWg¯˜3'¢4j05ïa‹´=Š:ˆŠRîéóø÷Ø[^™ê§¬ž0›R“±iS-ŸÓÀõ›ƒæ 9hšCüd«ÇüÊýæ(çE·’nÓ½ˆqCGsk;ûÕFZ‚Äß*§O"iE”utèíˆ šƒæ 9í ·‡Úÿj«²ÜÔUvéZXY‡V´týÛnÆZÉ’¦¢ëên—’¶ÈÞðáÑ—¤³¨ê·7ÂÍHÕå\rî}h{~5p—¬‚ІÚní­Bœë³jï§;Ê“ÅåÞo}’#½JÖÂÝÎH¶cλ‘¡ž¾ÚYeÇSOê{xç´¶xƒ€1í=¯ó jNÓŽ Hó Õ—ÙâFEiœ"šÛÚÙÍ´õç "ç)•¤¬L™oÞ9+ÍAsм¯A{µ¦?Â׉ÉÊÚé~€_–‰{û'n†¤ÍåÖ® ÇQË-eæSgãn66nQ¤-ÀF®¤ùÌ®ëΑ6\ëX8ŽvÐÜâ æ›÷<ßü—í7§hžtéàŒ´ ÏXðË·«Æ+îÀóEòÛÚa{ž®šƒæ 9#+»¶”YL–ÓZ7~øÈ±ËŒS6ö yÓ«ääÿŠš'´Ë®U”_νc4÷à ‹,Óü¨ #cGÚZlë®9Ö2l­Hã˜Y©F¶0¦4ÍAsÐ4﮹ÿË3ÖwK|ƬøÊ÷ kž0-ab¸ÖB©‹æXóèZxf¥Ù 5Ð4Í!@sМ†æ3B•ÿ,¾T~ùÄã9¦š²07ÇÊ(i©QÆÒS‚l:ÂÓ¹rb¹±4ÍAsÐ4Í;4‘ŒõZÚÌ…”Ù>Où~öŲ.3Ôz™§6°š«ª«JûH÷ñÉ 9hþcinÔ·/Ð4g@óÛ÷>¢+ôWL¸ñhÕy3ëÌÖ¹dåþâ?‘ù±Æc~ÊwÒëÑÐE=Cmµºìuì”íÌöèk¬àáÞ’[ßÍ[îŸtRVØ¡©«ºINÙ¡çÐ 7ïn^Pr–áÀDñ'¤2ürô½ûøTLÃM3¶èã“Yû±³üìÁ!„©×óÈͰ•]iî¡Ö\ámê{…´ŒLû³<¥)ÊÇž~êÃØT¬6iaÐÒ²ou÷ ó…5 'Ð|èhΗZ˜Îrͳtu_Lš$0¬jöDTÍAsÐü;®ìJO59»æhÕöé|ÿwè1Ù°+ÞÜË–—‰¼ùx‚€µàX¯ùï~>uÓ§ó‡ {8**³Pó,]Jý˜0L©ÐÐAsÐ4gVóºSjË,J›ûú6¼<ºK€ü_'¿Jò³° rs–kŽøî(c ˆæ/& SÞ g$¦™T@y:hšƒæß[óWEzë<~ÛÇðýÀÕ¢ò‘eêÿ½±qÒÊà?Ú'МŚ×OŸF”-Ó>‚T@y:«4ogc£¼¾ÐŽQô¨4ÍAóï¬ù›Ó­7÷õl*VžðéùuÿÍ›¤YÐ.0¬röÄL=Óšƒæ 9hš÷yLûŒéc†='ù»¿ïP˜oމ˜`l óÍAsÐ4‡ÍAó~Åø€ñi…‡†Èê1˜p³`sÐ4ÍAsÐ4ïWLðŸ0VéÐù9ùGç:&zŠæ6áq.â¶4÷ZåBÐ÷ ðö°Äy°DCÐ4͙Мþnh=ºî¸ŒÀºô7äò›Ì5rÇê€'ˆA¼èmš“#l^ز´å¨pºð´_lGÆþ"Vj>3j–A«‹æ_#À"`G°€Ü4Í™ÊÍéî†ÖÇܼž”›kAn1Ô4¿qû,üɳ3£ù©32…3EˆQîæŸ9:›w÷–öÔïÑÒž˜Tö­æ a ËÃWv×Ü/XœÒz`*ç0 ýæ,ü¡3yj&5?\ÁBÍÏ>e•æò±ÿ$šÓß ­×~sÙ´'¤~ódY±í9Ðo1Ô4gÒÖ¾œÍÑ©/±_Ïu¦àTá逨}Üî E¤QpAĘq¡Ùi…§=Cc¾Ï(¸o_‹¼6 63Vnàã¨ïÊiO°ÍYøræózf4ïõµßUóþ¾|5ý‡ÓœÎjtwCëuL»Š²š¾º¢2öè‹° bèh~ûÞGt…R‚á?ݾÆäìŒi~*ÿå¼Õ˜jîx^Qg/ŒM„€W öDa>e†Ú™œ^¤j<^i¾=Cm_B)õOLºÚYsß¿Qq¢ö>´ZÚQ’$† ÑñcJsþÐäÔ kžxà"õì’ËYóü¢‡Ô³3œ¡3¦ù~ìŒýÐa¾9äæß;7GšÏJžE82ø«ÇÐÌÍÑíÌÈYcñšGÁmÀ›ùù{ûàB8 7‡ÜrsÐ4§µúã™….0yv¦úÍóï!Í·V4Í6|ÍQ†þ­æ¤þqm qvçyjfÄ ¶¤~s¢Êõ›³ð‡Îä©™Ô<1é 5G:«44‡€`é 5ÚóÔ`L; ¤¹uŽ|ÆÆ!±²+97÷ÄŠ… tƒÕc`L;ŒiÍ!@sX=¦‡ˆÞQ°†¢yäé(‘(‰h•‚!¢9ŠÅ‘K6…mÍAsÐ4‡ÍI#0ÿ;m»z,º+¸Ú>¯¦4§¢¼„£Ý"Íc=sÙ£ØãðyCGsó` ÞX^Ÿ_Ð4ÍAsˆ_^ó7ú¢†ÙwëdŠ ëÿš:ÒÝ¢Ü<âtË4—ÉòÐOøÚÒŽÊ2YâÑ;CTAsÐ4Í!~uÍ[®˜L™…»Õ„Êïn¹Ïœb~¡4ïQ»ó«0Õ¡ªg”2• ía•æˆïŽ2t‹4§–÷ŒbzHÏAsÐ4ï=hï¡Ööì’¯ÊÚu·É¯ÛfŸùosŸ>ÀºìuìäIëF{ô5VðpoÉ­§S lA ìµPŸ++°&õ5ù ¯3Ön̮ͻçæö ¹ÅefnKÓ–±°¥‚¸úú#Ê)•’Q’ a[@sÐ4gšn}ZŠW–Þ²ËÀh¯þÆñ|ÛòúóÖR[fQÚ܇Jˆ—¯+$j˜ówýÃ#†¢BzgaÍ@é9·C”bÆN#š¬í7§”/²U\æ,;¾üx0>Ø'ÀgRô$¥P%м¿šÐXý”wøg ¦]pzùw"hšÓX³ýEþN¡ew>ôã|U¤·Îã÷·}¨„€`þZÀx’Ã!¯#B.{vМšžoˆÂ‹”`í˜v*îAëŽ"ͯð\IR?€ ²ãŠã2"ƒæýÒ¼zÅÖ#®>!ødE£fúƒæ y÷úÆwç—Hjž|ÞØðMéÖÀ¿›ûP «Ç ¶æäô<’w?ßÁ‚Î7ï1¦±¥ÎL+0Æ›pÇr#ÖAóí|B§Ú‘–½åpU umi'{%i/}7~CJhþ+jN{µ–ê s}me}Ÿü‡ïúõ6ž³ÒÚ÷c*! `õ˜Aל’žOŽ•2Ê6:š£@ÿ26.ã,326;Æ!È4ï¢9!d•k¨vÁ—@4õ å°µ"~ÑÜOï)óű‹vþÐoóÍa¾9¬ó+hŽÒs¼™äÁCJsJ„:†¡ Ýz› $¿u° ª öö*wÉ}O j;‘ÓÜRßçÙ:÷Ö‘6sAq4«µÛ£­·ÊŽó9gií÷½±ñtvÄX .ÂþÆVæÞã-íA„1»PCB—ÜœèïrD^¬EX!14ÍAsX=æç×ÅöÈ”Qq¼ ù‰CMsJ$©pßàÎÆëd·ã­Í|ÙÖ–ee>MÒz½ª?3pï­séÎèˇ—„áRÎë·æone{Î~Þú ú°(>£øoƒqÍC‰–ø0¢Ç7cÚ ^šÿrM?暃æ 9Ì7ÿ%4Gé9[ ¬RÆ®¡©9)%Çûmó<ÜxïÒã¹ÿ£|í©?INí_†Þ•Ñúw·våÆÔ¾ÝŸ›Õ_Íß_Éòuò%鯆—îþ¾æ¿tÍC‰v^¡cìCuƒ¿Ž‚+“VKñôñwÍ’k¸9 rsÐ4‡Í ÍQÈErÄñå— MÍQÕÖªž1ežËüùžK®Ýú“ò!|”–"5¹3¤ySÛs·È «?¼t ï·æ­¹1¸5åMärSFnãµÖÁÕ<”`…mªÜeL{ŠÊâšQ˜Ï˜á“—ç;ú ß4Í!`õ˜_Fs”ž %øiÜ51ºæãuöÌÉ¡¦y±‚BÅêÕ~~þæNÞ££Ç¬ÏÒÖZóÁÆê=1ˆÍÿW—qèЖ«µ¤æñ¶Êøc?šæDSjS.ãrúzìsì¹d)w H£Æ—‡ú9D—Ùá‡ÚQùø!Oœ‹EZNÿßÃÑýýgZù„ê‘zCäç5°ï¤×£¡‹z^V 9³3Ô^åY¯@wùWÚæ¾úig¨ý×ðv@¢æ¿çÅÅF†ý3&÷ïRTSŸ÷qÊ”ššô^‚¾wOü`†Îõ ?ööíèÔX;;ö»6¬Ã²±GòKym²²·¦Tön"6AJý¨§èìîîäpruà¶uØíæníâ0ÆÖAûK}oáæ#fKØåæÞ×çw tv#cã©×ótê åWúèôëù½ róþŧ·UÉf›¤6mSÙ´NZ›Xýº‰òãË\ÛÊjúšJ;r^¶ö餽[Ëý“NÊ ;4uU7É);œzRfA Öµ€éôšwŽºŒ´öõëPaiŠÞ̃ ”JTS—yhèhŽ"ÖÔøµ?ÊÐ/.ZtOT´–Ï_GWg0‚8‹=zô ÿ•ÆŽ&ôïœÉv³›1ÍÝÝÜÕì8ll0¶v+œd\]uzw¼ËÛè·é=hµyó£±c‘zè•Aó_]ó¦Kv*{SÿmAåÚ*I Óó-ˆøWGU&ˤ>nøÜúOŠÜd•ãÏ>õ᤹[S±Ú¤…AHǯ»O˜/¬QÐfAÀZp,Ö¼ÑϧÙÌ.=¾ÉÍóÇÝÛ¨ŒjPýÒ…·›k9./oýú$ee'ëŽ|\ ëÂçäȸ‚=fÔLÂLw{[lßtîotÖ¼s Êmm9{¹ §yô¦MŸÉ+Æ õ(…4ÿqûÍëîΤYЄ.Ñ]ö˜”’7<ŽX,ª]ØÔç°Û"±ïÿÝ &våÑ›{ùÁòâ2‘7߃Y 9«sóÃéíÖSÊzx}=¢~Gnž•1Ô4GAmiï6vvk±žìv¾S¼7O âˆá˜4·Ûn[;ìwÒÜÉIeåÝ‹åcXjoçC»wÈÉÚ½ÛËÅ™æs"”«-”©Â¢²ÛÊdTx cÎpÜûΫã$Í=œÜ¦Û…¡Jnû@]<+5§„¡ÓdÛ@A[‚¢“Ùß5c#ÆrEs¡l}£×¦½NFC971Úû†ï¾„øÕåËÐí~~TóíÓb”p”Q@G·¨l¦ì§e¦}wÂÈ‚whÞ6r$hš×¿8a¹LrkÌZJ‹z§Ü¼ž”›k1‘›ß \-*Yö¨þß‹'­ þ£Ì‚ÍY¬9Š7W."¾Q†Þljb©5ÑR—Õ|}Bímƒ¥‰÷^<|ý,÷ôá1ž…Ĥ¹÷:»Pqo;OOCÂGgVkN‰-X÷Ñ6!ól}•vÇjìu‘ó–›F˜Ž²uÞ°qSÜÖ!Ùµ]unŠGgwqU³³²µeC·¨Ü‘ª;ËÒ£Ü[*ÃU3æ«ûš1Þ2ºeåˆòcÊJÔT~ÍÏÿm†žžóv·¶•Û*Ÿu¦JŒe„ü&±E±Ià%4ôy¢7`ÊÅ1­#¿äæãÆæ¿¶æí5·bv.’q:ûo}CúRÍÓ ýæ²iOHýæÉ²bÛsúÔoNSó¦b5áùÿvO«û'h¥%Ø‚ÍY­9)C¯yQ—•ÑèçsÛ5‚/œ·úå šO{ù¢j î˜Ç±Ïxß)X¼Öï'Ž Ü344Ganç€4ç´ ã42Ö& #íàѶÎ+gfòGòˆ9!|¼ y2Þ2*î*úÎÖö6}Ñ<)éd·Öu*èôñ’h èËÔÈØµëøäŽ'{àLðØ]^¦û¤Çï¶Z93P^$xÈ,ŽÈ‰¿ÅŽú-ŽsxøD1ו{÷º¬Å{ÈyxlÛšGmÞLAœ‘Ðoþ‹kÞX¨Ê7B|³Žy'5öˆ^æÚ¨(«é«+*c¾héËH{;6ò˜ö-ëå”շˬßjcÚ!@ó!£ùר{k¦e¾5]‘ÆCõ5…ÇS&Ä_O&µ´{­± •pñ¶Ç{îq!°ÙÔñCEsêè8~‹°V[ÔcƘDSX§„¥ƒ•NMÊG.*ÆÅ;K·Nþ‡öR3ôßhš3g’nã(¯äýýYå«­ êëMeN'ÝÍAsÐüÇjiÿº‡Í5ZéhÞô*y…ÀÆìz:š7•j K˜Ÿÿ¯‘”qßÍÉ*¼ÿžö3_b½¯5¼®´_$9×ìÊ»77‚Jjû±„,hšè—GVͬ*à¹4}ß<ǫΠ9hšÿ@šwÙC­Ïšg¾~÷gŠâÄù>×Ûéhþ¹íEUœµÆY9i™‘•5”G;ÏžùºÒ[òä¬VôY?³³ÿ”â®7€æ ùÀj~ãöÿX¨9“ggFóªë­}òaÝŠ*Lµ¿ZñÚ{“ÓÅcÿÜǤæû.±Pó¨¨s¬Ò<~ßEjZÀBÍ Šž±Js&/´æŸiµ>jN¡xÜ·2ro{ý yÁ5©¯ÛI¾É\KÙGõËÊê{5¤Ã¶<)61(n¦í~ý˘ýÆFG·?ˆUÕ‹‰uHyÖ šƒæ«9“³öåÌhŽNÝ÷ܼ„³<^ÿr1G™–ynÞ½sóœaFs&óz&5gþåÌXÌBÍ™Ìë™Ô¼¿/@Í™oCûyöPëOKû×GÛ®»Ì38O’½¦ÜZr6®²ô´õ‚kbžúåßýå3[T·¨‰Nÿî”öÚU{ÎÖ4}n{tdç")ó‚†÷ 9h>Pšß¾÷]¡”`øOw†¯ñ9;cš_»ÙB=u¯:…rt‹Ê'÷ß,á(—Ò<„¿xNÔöP£³­1íÆÁ¥uí_ŽÖö¢,`§”œ’ún¥­šWÿ£4ªo;w×^}-í¥”]‹Ÿ7¼§5¦ÝþÐíº+VR–%ä^û¦·yëÝ*Úèt Ð{ yÏkÁAnÞë˜v åTÜÃÕÎ y$lÉðåMoäg¹9äæ›Ã|s–·´£?žYÈ1“ggFs”¡3¾~û«— ûr&øÙrÅpû3’¡Ç±Pó°°S¬Òeè,Ô<((g5¯öÚýnÂÈÏ̇)2w£ÿ¼ˆê‹ßuìÀ¾ðVñ iÎä…špt)×eȨšÃ˜öA³¸›ìzì1£uüuaL;Œi§éïóúwRO^.ͽa¶ðÃÄÝ×.|y™Î=xšÃ 5ÈÍ!@s쇶zs/7Óá1£T²>8× 5µyùCêjÞn®½»ìåiê$Ž ÃØ„² –wót'×[â‚&‘öL†%.Æy¹‚æ?†æ—R²2»F 7>ÕâôErK{Gåo{5*8Ľx4Í!@sÐ|ˆiŽ`Åyâç»ÛüÍ+ã¶ê ?ß ‰²ËÑí~þX“Þáñ¾Kwº{:ã½t]£°{Hõ¾³lCἜðžˆõ1¶ÁÚ ù¡ù¥üíaG¼ .\>y0i4î0IsJe~A™î”¦…¦®‡®€æ 9hš9Í)±g=×mÄl¼ˆ½—3¥&{ûö×ü}ÊÐÉáîá? KÐÀ#â½WÛ… ”܉œ¤ ØáAó¬¥ýüù¼ÙNÉ£àÊJªíW¶‰(ÞÊÎE•„K 9hšƒæ]5Ç«…Ù`l:bÍåÚÎÚ¾ú»TÎÙiC×Êï¥y†ÚîÛS'ó¯9NÍÛœRùP\üºZŸ4÷òÜãDävðµ#ßuqîØE(åá ý惥¹©ª™‡°5©ãƒÝÊ{¥©é^råN3!r%‡Ëq­œóçz—÷Ò¾ýû §Hš—½f¾è½Ðæ;'J)•¹L´´G~ým__ÝJYÖ;›Z‰¾:*AsÐ4ÿá4w^CËë7OoYô³“v]Í ä寮X ývqFpkXj¸{z Tß§Þs·]ЮŽÜKÎ>TÂÅÛï¹Ç…0Ú.À4$ͱ³-ÝdMÍõ--üج=¶£Jì\KÓ=Æfáû ÒÂ/÷ByJÚAA÷C~çIþÞПõa"‰rj%3£à"]Öw÷iþ¥róîAs5š•Œþ¯øîñgc}Uy©ÍGï¿ëñø 9hÞ_Í_>Û·/@áìã?‹£7Vn®ö@BœRv²sšã:gŽûœ‹óE©«÷ž•;¸°Á;ð_;Ó§` ;ð¤æw¼Ÿ(– -íƒÞÒ¾×Äi¼µïæÎ•&fÑ E™‰W{0÷bÂÁ$>\ºç¹Ë¿LF£Ä¬»§/wš¡Ö¿yj y¿ƒæj4+ý_±©ýmÍòú±CLØAZkŽþñ!@sм'ͱ[R3#>Òôü“—$g_ŸË[”ñÇÃWo/ ’Í}p®oøù³·o§ÜÅ»{Z«­KøMÕa»›§;}Í=õœˆ£°Á;;{÷^… ââmïé¹×…À „~sZšÓl§„‰š¹/»ßFƛܷ›rZÚkw8n/DéøÀfí-¸ÔåQû÷Æ¥{‘)ÿ²zL÷JfV‰ìømçôб*ÝСù—JtQwT‚æßD÷=ÔhU2|êúúûE!òbR‘·Þ÷~RÐü;­÷SŒ‚{ýâÕÕ YsœƒðwÞþu1y~̹ê—$ÖÇ{¬ÍQÄš¿àGzÙŠåÅÅQ9DÍh±ý±1C:cÚý&wôwô’+yêíݧg¨ Ç6|™¶šwÕœV«8™r=S÷qVøÅ–^›Lí=7÷å²ö”71éTi²ÇÄÒ3¦ýå>¢«ÌÕgéÆÅÑ÷½4GáíæzH]<ß\2šÝ×ÉÏi›ÓØà±‹ÛøØ²rõ¬ƒ.ÖGÔ†<·ÝÆ=ÖÁ–Tï&ÒÅÿ=Á*XaÑ=žáŸ1˜–q³ò <(º;$ÈÍzÅAi7;äøE^w—@q[ò±Aò87Téæ#öõt„]nÐÒÞ¹U|‰ƒ„•Ï:‹ –¾ò&Œeå~V^²](ïˆãGîÎu:x‰õ;¢65¦„á6^kí~Q[ šÓÜCf%çnhyQ•²Cx†Sy[OLJÍAó^5ùú÷«9 \ï¼ënm:1rßKsz»=Vo‡ÞèÈÑ+CVÙ{;°h-8Ü[ï­XK;Ç]Ø@vÍ®OÐÅFÛºš÷pKÕË3W&k›œÊü7IF¬•wyœ âGÜ&ÑhšýÕcúžî^™«³2Å3WØJsDs­ Y…õÆ¢zWí©Ãƒ§9ÖAÃ6x´­›I§J ¬ßho>ö›oŒ_;¾aúÎ ¤³“úߣøþ˜'Ü‚ÁüG¢DÏÞã[‚Ý= ‰Üö>Ø/-íÃÈ8òÚî`ª¥½k«xw‹Iò&0¾ÝÂÐ0fãÆ£+W–»ž¸tá\7dcw%û•Pï¢ò_|¶Ý4GúÀ¶´Ãê10ß4ÍY¥9%"u¢.q^Í›·Ì]š#–c¾×ªxÉdú i޵×ÅŒ¶õÛÖ9 Ç:l³ ‡u²éÓ¬JŒêùd`q$^Ôî`{ oä„—ŸÜ¿:Ƶ;å&ÎÁÜØÀ]]Ûá]Ü=w:GÙù›1¨9­VñÎY¶õÀPî³sg Ïaáâ¹skæË¶Lšô{jrgdß%åÐüÏä =ä]ö–ƒâ)_‡æ98@sÐ4gìZhøï´íê±è®àjû¼šVÐ|ˆhN—'RTñ[•÷††Š&c"ø…£„·msñrý¾šc4m9mü¶vmQ·ÅzˆØÉcûÐÌŽµ [+Ò6^'ËÆµƒWÃ2ÁÉYön¤²½Êc‰tÇ®Y¹Ë6h‡;­æwwÛ`5w†4§Ý*>Àš£¬Q~@JŠº²ë]¼{‹ˆ%C/-¿tèB–oaÀÎPCi#ùñ¡“Ø#Gñ‡LUÙ;:a ¦J Ó6‚š›ÏÍAsМ¡káM¾°¨aöݺY†¢ÂúÅÿý\š_»K ]bkËDXx¥:óÇÒœfž®ÂTëo8²Ô)p•Žxø4”ª/[¨í¯ãîéAó%Ô=ÚÊ]O8Y[÷Ss‡Ý¶AìßPŽÂÐ6˜ÓÆÍ´wÊÍ£WLhá™U™ø¾¯NI‹Çß“7 t&åæÍ‚뢾ææx]GÂ(,mÊqîžêNDv;SV¯ƒ[•l¡øUp¥@·•É”rìÆ wŒœ76Š>pÝ;Å×EGh³÷|ÉpIöXváá5¸5:úºk=3…²Ì7e»eåU}î²> æfX3Žgå¼¼IcêÐï<úÍÍAsˆ_Hó–+&Sfán5‘Ö¼å>sŠù…–ŸGóßoï: ÃЙÑÜU;¦„£ÌSöºÕPO˜á@ årÄóÛÊ)ÄýÈëŒ5‚³ëÍ !‹»iŽ2ôHs 唾òÎek/W¿eNAã]ó“!4"†K,dÑÿÝnnöˆrêZsèÔ‡6o®åãë†þ«¬ìÚ¹¿Ýþ7f ªéôüEZÛ]¬e¦àVs„Š‹…‰æòÖÒå†S”Âjê›QöP{·dñ-b0Í~óÎå /ïÝ4G:hšCü šc<1 †ƒq"—Èer¹Sœ»tÁóÇü²µeë¦9ªùÞ¿Ôaœv,õ.*£šnÏqóôÒwó]çî4ÁwûðÐé#¢GÎö%´a£ž“—å9ÅÅ««{þø_~8Üa5µByyôíø¹¹1ùÑQø–Ÿ?gûvj *¿ ÇÛ8ÚèÚên±Û²Ðmá¸àqœœsæNwñU^áe¤ƒwE?tœ7]s\Y¹óqúþ–˜ÿm§jNï·òÅPûÍ! ´¥ÝìgjiG¹I7͉¡Kÿm æ÷þÌ×3ÙL~IªÎèØéì±3¼æhøjÆíYW‰³xYÿzð%ž¿­¨¨¹pîƒøä¶õëšLŒÐí qTCïɧþ@ÉoQêÝú-è¶„³£Ü-še}Ú@)×6ÕU^û=ýèaânq}'©5^kDEØ£Ø%}$ܶØã’Âv.,å(?lRõí›~¯øßÔ©¤¥Ú-ÍkçI’œÚz£š%¿író¥›÷)zØÎìÓÛó.³1ûL'ºý¯D[9~̨¹{OýÛPl"ÃØè]üoËÍX+YT–ÒÕÝ.%m‘ÿ¼áã#.I5fQÕoo„›‘ž)ç’sïCÛó«»dT4Ôvkoâ\ŸU{?ÝQžô(.÷~ë“léU²îvFäêí102ÔÓWÛ"«ìxêI=¨š3 ._WHÔ0çïú‡G E…ôÎþL£à®ÝÎí¦ùõ;y?·æm¹Ùe¤)å×u¡Á%n!»LÅü9#9çÎß¡æ}Ä/çvÞÍš»åM5(;“t‹z•S ÊúËwÝÑÌ÷‹~ââB·¨Ü³æ)úW‘¹ýMÖ¿JïÉ/ž?A”¿‹‹¡Ö ò‡)/^<¥÷’XçÈÜCf$yÇÝ8ù÷øêó矎Û~ÌwMšå¬$µÕî’ ÝDzG‹þ3fDìHÄ7B|¯ùL+ùÔ#‡Ê¯BÄS½îüWÍ¿Þ4?ÖPŽËkn©gÕo;Usz¿í y÷ ¿YM¥›‚õ‚1ßhþ™¼;ïr¼—ã‘Wmäò—ç|)¿ý7CÒærë{š6·”™O»ÙØü¹ýE‘¶¹’æ3;WRvaëXM4ï:CíUžõJt—¥mm†yLûR[[6t{íÎ –¼‡AýÞ›ë>MÒžzzêúø˜S¦ÔÔ¼øûÏûG“²=qÞ»¬wÍwšÏÎ7:fôœ}s¶e+Ù\ÂZì÷ð[—˜{ïõ#D9¢ª3î}¢üÈán#´ËÜNõ 9)}æ,§€Þ¹L3Þ¤¥´­[Ûq÷MÍí¿ï••Uý.½ð”§krbjdD´w ¯“—³Î\ÛYg»£ŠœƒÜRdz]fOöœÌÎ;,~øoñì£âx&OLš7-eíªLÕm'Ì\¢5ïš•q÷lÅ«¿Þ´7RPFÙ:BùÛD>}oEg¾Q9}OÅ·OCÁÚßvò˜öž~ÛAó¢ËvfÍ®ënfuÆ´«æëÓªöa35ÐR¸éUò òH$šF7•j K˜Ÿÿ¯‘ÔFz7'«ðþû^5o­­¹}Â{½ÐjâïA=Ðü]=†…gäï½õFõ'É©(Cÿ`mY;OQþæÊÅnò¾ªyó´àÅ5ÿ?Žh ” 4Ûe¶ÓUu¹ßqO Ž®Q‘ãö ÍÉú{÷ÕÄ™Å<»ÕÓ®[Ø JµRD@Ñ]!y‰à‚`@QÒ¬²b=xð‰"¶*( HEpË¢ AkÕ.¸îÚ* *RÔ¢ˆ µÈ"H>ØI"1äeÈ$”ÿ=÷xr dÌ™÷û¾™kaǦÏ9õ× ‚ÅËϯˆº½«$1ýf&ûîwÿªþ7‘çj~,ª½FäÕ‡¥wîÕO›Ø4èåíhUV·êîYúðVá¯ÅÂü©æÒéÊ|aîÚ›7))2"1fJܲ¤¯ÂÏn:17o©ã‘…“¿õœábºß~È^ËRÆÇêîøÃ;ßèðW¥ÐÞßýþÐØ¡ã6ÿÉ&jØ_¶Lwýj–ïV_ÖŽO—'…¯Û·aÛ·±ÉÇS""2’ÇïûòHÎïOg–Éd—Çmx>zt[zšè+mû÷>3†¨²e>_ɤöÓŽëÍUΞí̸—7ÛNZWÔÐtTæ‡*®Þ㑤ÂÙ M?gÌfSÒ!Çè®öÚ⿇û»;9Ïtô K,ªoîï¿&Ö…M⋺{«[A4‡æo½æ‚åÜöìÎÛ/­;ATå¯-«koÕW¨)­øÑ°¸˜v…é˜I[E[A[»”¶a1m“ãNûz&mûTZœ-~4m÷~& §%RŸ–<èƒx‘%Â|wM/þwºñºDêÇém1¦Éf“×~,JÛp["7L´{Š^âŒá{Ü?Jñ±H[4=#Ì5+’y4zÉÉÄ5ùÒw¯ºêlõ}yQQM¹¨`'ªõƬCdæÍ%滉ªœxL|… åÐü Õ\²÷Ĭ?²ô œ¡GÓ§úõÙ¦šsÚïå­N(Ìêáµ]Ãë SðÜã.ƒí2?Þ˜moàœK<óimÑ•;õümµÝ/Xj:‚UÐúºÚü9¯¦âÂ?7L7°ˆºÒõ 94ïš‹mZù¡ráû¡%—Tf'²ÓÚJb¤ý±™­â…mÂöÌÐBÅÃì/çÍ?2í1ožœ¤`Þ<#øâ7«+•Ÿï&þ%Y•C󷨇ZwrÖæœÎ–ÆSk6EÙʨ¾»³½dÍ„‘¬ÿðe¯¿nf¾®¨ÿ4‡ÁvÉ÷ù“õM¿Ä˜›,ÊoQnÞ¼:Áj¨®AshÍP.D\ÅyóœlÉyó¨Sêš7ç¯i?Žàûåšvº=ñ˜øŠ‚çó× vš÷ Íå·3kª<´ŠÅ_…Î=ÇéZÓnÀX²ó'Þ£þöÉ€‚Ÿjï^Ó.ö|Aµ­óΞ ü<=¶^üŸpP}Ƈ¾Ÿ.ôqex­-ø×ùº5íŸøÏueÌ Ë©x õ 94‡æ²RmkÚm¬ùkÚm¬›r«qMûË ½¶¦1ë7fñ¯‚ÕìКãzs$4‡æýv¤½_oÞÛ„æÐš#¡¹ø JhÍ¡94‡æÐ‰ÚšCshÍ¡9 Í¡94‡æÐš#¡94‡æÐšCshŽ„æÐšCshÍ¡9šCshÍ¡y_Ô\f5ÎQú»úôÀÅA,A.Ûy¹M‰(§[Sõ‘Õ¡¬`Ó…á–s· f!¡94‡æÐšk¡‡šô-Ý”ÙrÚ±µt<®ÊÀ;¹!¡94‡æÐšk§‡¡ù{¶“‡¤ 2a¬Ì®iéíìÑŽM\îÝü.#‰7Ð Í¡94‡æo©æ×{ï¡ÖþËÁ¸=Ço=¨k¼‘µl¬#¥üi/v`Ïvl‚|V•dC£ œSÒÔ³Ôi~ýæs E#¹u2š“Ü4É÷N~·“Ḹä Uš_¾ÚJ¡æ×ÊžR¨9É_:Í)ü´Ózê=…JöPËæßöMìÆæ*«¹¼—âµÕgø¼„hHmi.}Èk)ÝMéWÈëèÅl)˜olµ½’ÿRœ»q–FþgpÛ7$jshÍ¡yÒœÚû´ óU㳶°ÑFÎô!ï üÐ64ã^³R;°óvüŒ‘N».T5Þ9ëbê˜X†viHÍkŽ@ }$úÂY´Gã3{æÀß›Gä•5TŸY?i0cïígJý9Ä{˜ãk xKúÞ´Á&¤v4—÷ÑK —  „ !<ÕˆN;Zi¡¢bJ6>kÎ÷1=­®xÜ\»êPÏfggGFFæååiéü)»ñY'¯¡ zÁl¯ó\ƒJ+ÕCM°¦ÝÝÁÙkÁ\G¬iGª¤ùõÞ„LÍEÊCs¡ ÍežRÄ}$755ÕÑÑ ï³'[ˆƒÔèL…·4š# i.}V뼜çíímgg7a„˜˜hŽìŸš÷ê(“Ð\b•;4G šÓ\âÄ"òÑÃÃ#O,„¾K4GBsyšK_°Í„F5—8ÏH]·ÎÔÔÔ•+Wúùùù"$$$%%…rС9RÓ°òÞ„Hs⑇æBÓš‹îÁ.>ÒNDZZñu&“éÓÞÞÞsæÌ±···°°Ø¸q#4G¾õµ¹¼¾À2ÑQ& :4G šÖ\tv‘ÑÑÑ ÃÁÁa¦ ˆÇt:ÝÒÒrÔ¨QÆÆÆ,«/ ¶Cs¤vFÚƒ.~øˆÎK€Í„F5o§"^›ïÛ·ÏÝÝÝÐÐPWWWGzzz„æè “æÐ©Íysy K>Síâ Cs¡9Í%:£IøH¨íææfbb2nÜ8›iÓ¦MDnn®FΟ2{¨qŽÒß5`,þŒòY°ÿ4]÷<®’wvÍûÒÇk~p€§ÏªcŸÀ&$ÉUpÒ K>Ò çD Cs¡!Í¥›œJø˜šš:bĈ±cÇZ[[›››ÌÌÌ&NœÈf³5rþ”ÙC­õòæ/¶\håß)îÁ ÏÑ^¹5/”ÐüE]Ž÷(ÇÌj^דРçQÞì/À’ìšvqÐe>2—Á A‡æBšËìW.]›§§§;99¹ºº2™Ì+Vhm˜ýUµW@×óý$ ÿ‘rQÏú›LÞUÍ/ÉyÕ 6& À]‘ê¸BMº¼ÃGÞEmÄóûƒæÒ"pîE 4ª¹¼£L¦Ú¿À¼G5QrNη ;תܼ9‡íh@ÿG£àqc¶s.> stream xÚíÁ1 þ©g O þ½­ìÉ endstream endobj 442 0 obj <> stream xÚì 8TíÀ§¯Ò&Y¢"*òõoצ¯TR”µ$¥È–¥¬ƒìQ(Y ¥DÛ×îK%RJû¾*Z´§²f7›1dùß™aŒÙ ƒ±œûœÇsçuï=ï{î}ïïžw;(l°Ál°ÁÖí·Šújn*@s 9Ф³iމ_$¬‡éøìuš¢Î—\4z!¾uÚý‚ ¤›×Ž^RaAz ÍiÏsçÓ¼ç}?Í{€ »ãMäKž[«hÒŽ4GžÞfÃÞéždÞlÆ‹7¿>‡Ô†×MCá :¾I¿‰ý^bYR~½Z©7Ôšyk y¤9ËÜr_„ö0òDÉ5—J«q¿ÿ[=sõÉüÊŽ½SÈÃ2Öõ ½õˆ/œÆ²©,üãÎ?R+/ÐLT™ê­ãù¤²á_„’K:Ró"»:ÛöPÍAº5ÍÙ=½íBsn®Ð.4o8žTœÿ8r­¤Ú‰ï5]ÀËè&4çÊÝŸæ'4F*F~Á6K$¼˜"¹.)¯®ƒïÔ`‰£G®HÈÇ7$’²âu$FÏܵ¸ó¯ªä²¸\j&qÙg ™ñ‹úCú«6jéÉÌÚj 9H¢9ËvoÒ·³Î‹e"×"¯»ëN‰ÇÚJÀ¿Þk8i(r½Á²ê[Г…è4fÑû¹myŸã²£fIè\Æ5(Š4QíƒøìbÓM¢^à«Ë(4Íu»Á´á‘Ëö÷Ê —% ¯`ÎÒ†” lÙ¾nºD?äƒÆ-÷¾õåñ!³9’dÛü­šVJ¨oáôvÈ?” ¤_·þ pÚdm½ÉÙÿß»ßI Nëô¦+óÒãB½ÈνóŽÃw¿—Öñüâmõͪøšà¬õž(®âŸü«´¸(5z½´¤Éµü:^h^~×~Œè’]7ó0Eywfl—æÍ5&;âTš—ݶ•QÙy3¯œ¢HDÚö~Cû ÄV†ÝÌ*-¯ÈJñWšìŸVÕ¾9R2 ¬tíGI91ûVà?QƒF¯ MùÙðSxÚÎ7U-œÞùg¤9>#ÖÃ)ìê»r|YùǤ=N±ŸËëÙ§ÓN$}8äê~45§ä±´8#%6î]e»Òœ›ÂâoŒÚpî}‰ðûÇÍ=¶Î)8.òðç{äBÉåçräʯÇK.?Ináiá&–¥KÏ:ð ñë1ßB¦‰ªž(@¸@ü¸¶´É­"îÊ~.ï±í¸ÑæJ+ê«~ß6‘çp?ïbËOŽpó~±>(Ñ•ûîÿÆá›™ó`Ëx‘…¾W~”–”¼ú×Óó®&"”'¯•ùg/¹9û=q’ú¤¿í— ¥þ¾{ÆèµIåU-ß)vŸu=mò§yKV¥|/ ¡dµ8ïîÎ%bcJ@ºW¿yÓ[´â±µìdß„Vf˜-³á‡ÞäŠæ2·f4\°ì½Ü ö¢9©ä÷³¨õRBKÿ%;÷M¥ÿç§)š ³ñvEsECgìËjè%™/ªvÓýæìlH΀Bc‹e5¡øÌ¼! {³š~Σä‡Óé푚W}>æáŸ×Ð ŠÍKðñ<‘QÅ>½‰æŸŽ¹»FÞxý¥‡çi|+rYXÂ=ÉZ¡ O²J°­(>£2өЩ®¨|å>iœÕã²fOë»P•wEGZã|N!mçä!B"óc2qu¿cÕ¥µ¯¸}t‰¢þ_zìéûþ…Ãÿ9ø ËÍ“Ã@sÁ)Á߉Œ5¢âÁÆ1ÿó|o¦´&*»i5nÆî˜?_Cç)ú'ûÏš»ûýÂkÿÉ2Vw?’YÞ)vŸu=åÙ°ª­JîOËjy†ïÿd,îTJ@º¹oŽIXÚ¯y…è£rž§öç„%¢ Ï”6þ,=§$Ì3Í›27L^Ë;!ŸÈRÑ1Õ‹µSã+c²±!» ðx:4'¾Þãú”öÁFxâþ’cz£SO*þ~ëxøö-¶Ö›¶ŸN-ÀÖ·«oÎUa+sžD˜/$!€ê#1osÜ÷r.‹_•±cæ£ÛÅ„úª¼k2ÿ„½¯æê.àŸ\,oz£äµûä).ÿ¹M›ô¶ìޱüÒã$îËN(»j 5ÁáÈæq£Ö7÷s[qëÏ•³xr–ˆÑUÞLTò -?Å75ÿ‚Ö ô£Ò'¶Ó4Ïæ¶$ÿî‘Ñ›ïróÚi¯ ´hC.iÞÚÓ[›Æ~sÜ»3îèðä÷˜ æã•0'÷3ËêÙ§ÓN¬|úxÒ‹ÜRL >ûÍIO×#As†ÂboؘúŽË-©.ûh)3b=×4G òÒeâ„͇6ÿ=ÅûE%×w¡ž¶cŠ˜È̈ϘúŠ÷᳄Ņ'ï|WÞ¡OC©Ù>9˜.r" ·]ýUVZòú_//r¿yÛMTñv·Â!‹ÎäàëI™' þK`êî˜zîhήⳫ§ínXî+¥¹O°!«‚Ô†ËØ=€~sž0¦½:+ÑoÅ$òSÔ Y5çóE\Ž‚c3ßœ€K 3øßÊå–3ŒiGvêJîl'BnþâuŽ÷2Ühš0YµÈT£Èg¸*®^;mÈ@‹óÍYÚ[š·òôÖæŸyL{åÇüÑä±éN~Çn­lÓÎ2vbîûÓ³¡6È¿í<Ãþ{SŒë„–v†ÂÖ•¾ï˜0X±išyË4gSñÙÕÓv7,÷ªÙ˜vÁÿ­ÛGËH¥9L<šƒ€€€ÍA@øJs–S8ÚWi‡ªèdE¼d¬+?ÌëºvµG·£mˆâ¸ñKo—zrºQV¹É-Ð|s 9Ф×Ò6Ø`ƒ 6Ø`ëÖ|Ò€€€€€€€€€€€€t­Éq0ü„©)¾éÙ`»ªàeˆ¶Ü@ªï¨%>)%Qj ïìÑŸ,Ê9”6!㈆ˆ*-P ®0ÙYI9a¸’kRQek.ÅNÈ*ÓÎczé½£Þ>haèYcýògZ›‘U­Ä¥Ç¬–@¡ÈéþPмî[Ž–2»†©âàX-)ÙÍ¥âûÍs¥“KÔoøTmçØ·,xl_š·‹%Yǧk›RWöêŒãâ1Ë OÕ~^„¯çŠ)t‚Ï8k­8¢/r…¾#-Î~)ƒ1r O)Ýk¢˜rØ“Ÿ¸œa˦ÙÞ£,YLü|LUtÌúè´¼2¶ ½Vý~ì6{ŽõÖu†ˆJSÌ¥d,â?c2ã,d¤Ìor{)¶BSÑ«pÆp×z^ ÷Åé‚3»ˆÝXä„õËŸ©Vâo¬!‡~”÷ë³Üƒë¥ƒçˆ)Å|Ãò¥P=Ðý$å\7—›ïûä3W^‘ÿöÁ1ƒMɨާy;Z²Ýï 6e“‘Ï™´ì"üÏA‹†E?"rÃ:Á¥è —ޘ𥠲äý% éá«“q½þ3žq¥å„¥b N“?Ë Åg”'9<$GÁ~ï7YB'©€ChlöÉÕSu¢¾eQ×n¸ñÉf¹IÔàDå¾åìpw)BSÑhÎ=rtg*µÀ¬^ræNo`æZYtC_‚Ló¬G.r#ôOÿ·v„¬Ã=Bj|.ýrÔhšRº¡ÓŒÅ5&4í¹rÂ0ê¯ÅÈñØÜKŽ G!~Z?©%žwóq]çñ®þ2k”Î¥<<ëÂ.:o"%‡~еPž¼NzŠï“ØECÿgn6)Ÿ€ÜêÈh‡N¶±_<ò/jðÄ ±™î-ÉÅØš±µY­oÅÁÿ>6W\+ËSè¥2uËdy‹Ä/…¤ÒŒKù)Ï*{ãXw޾ù+Wy1•½Ï²ðyö© Z›¤."k`¬(ŒÜšÑª> žLþ™ÏÂ9Ž÷ ñ¤×n3Õ®†MT[pª„²_»`8W—â,T=x¼ç¢õÔ±ŽlyÄõüâ8óCësaÛÿ‚Tí¾¨¿ÈÿuH¥ÅoÎ:O¦ø¦ŠM­l8²23Vcøÿ\NFè‘»Ñdõe”òÝ7Gh(>÷P>™†ø¼#ŠâÚ‰Ô6j!ÅÃùˆÄ%ë ¢«}TºÐ¸zš3 Uj(lÕï;¦£ÿÞò˜X]A|áìš#¹$âé/|îÈ¥#g¿­ê3ÐÉé/æµÔ!R•{e¥øä€tÄDħ¶UhÍïóÅÔ.b8R.ÈØ¦gKniç|©V”…¬¢÷мgÏCì¾9‡]´ßœÞÓ)<9OŒn–µ’z᱃ìˆUgήAkx_{ßhþ šÓ†»ª5\aÏObW|¼«?͵21ŸÀ\FÚNõçÝÿŒZûëçe=9“ßkàۈȣ,JÝbG6çÌ,-ÆÁŒ­Í*7w¤®äQðbñqNeWpѰÀô–¾Sø¬R+QÒ+ZÚìLÈN?ºnŒ¨ÊÑLÊ`˜²›¦©…S¾‚ÂUD'ú¤’¸y„J¯›JÊX\ú‚ýqÞBFÒìfa«.ž 4½Ê7ï -í]¶ßœƒ^¾÷ž·øH`qŸ¼f MñK«bW+É §Ÿ-ô¦”¾}í5¾Óü¹¥}ŠgÊ×òWÜ' +üü‡é°šìãê"’†GŸ—` ^4³½†íB£à~]^?j¸²Û…ßðøê²ÌçS¢Ã#>¯™´Üj£“^`ìðj2¹Ô?“=¦°(54gi1flmV[¼#µ…7}æ »á43ʹ€W™ê<^liä‹lBþ“HUÑñn½­ßœÍ µæ?Ô_“W…ÞÏmìËÀßp_<² 5@V;ðE1‘›'â ’ÐóÄ‹‰ÎsN,¨d{©VÖ÷^ÞoÞ³?cºÚ˜öŸ´.r/XioxšFͳˆùˆ!°¯•Ì S)IãÛH}¤ëF?øžÿ-íäQpG § E2,8uÃ!Ú(¸æ‡á ¯yiÈ’§€‰ÏÛtúMQ]—zÂq½WL—èO¹#fèº_È`œ¡Vý9dFŸþ‹‘QØ0àm‚¹é,!ª¿¬Þ>Ú(¸ö¢9‹±5ck³Úâa¤âáߤ–™ÒìRÎ}_Õ1äŽs1Ë|üÆ÷2”·çˇ¯sIzá„ë.2øªWѼ{­Á«tc!}ûw½êÖW˜n0S¯eµ×Ìuê%︉ ½ç #t?iðRE–¤sØ5Ù²Ús‡½Ál°Áluå×?û!WÜH=µ«l¹âG® n¼I W@sÈU y}k6 9H»öŒ0ÎïC¹¡˜ã§°ªÒ)ÂGÕ¬Ä2W—U6 H+ùš«ÒÔSv‹¤ÉãyÇ/s½š…í ¶j®âu^®¸“Òé¶b)‰Ë\±£¹µµ5gšwf&è]]AW§Ì)EÍ@1ÅOaT¥s¤A5Ê Õéª9Y‰U®:ÑJ¬”&ý›ÅÏ\ánÚ[_ù^RNÌ}~j½¤Ä:Ê‚$ü¶U}5‡8A|ËÇ8)ü³ËHIÜæŠ%Í?þŒ¤³:=ÍßtÌæççÇüÆ] ‹ïº:ã­B|‚E1ÆOaT¥s0Ú¨å‡êlÕ­Ä"W|²RS â“ßßt…\ª ÒΙÉMr}ZÙ%lÅ!NßrÅ1N ßrÅ2R×¹b¦9åÔèô4GŽìˆW(Ë76è]|×Õol"j0ŠyÅuö >w°4ª&÷Ùu²jŽVb‘+¾X‰>6qEÉS>çŠÖ€<ð?jp~ÛŠsœ ¾ÙŠcœ¾åŠe¤$®sÅ@sz”³:ÍÛ÷Eê׸±|cƒ.ÐÅ_]Ò 4ï¾4gdÐhNiÖÆâ¾&mûGlF`z¿mÕRœ ~ÛŠuœþÑœU¤¤6ÑœåÌ@g¦9»³Ú°µøÆ] ‹ºøÑÒn˪UÍ–-í¶]²¥VbdÀØÒÎÏ{G(:=_lY<†ß¶j)NP—°Sœ¾åŠe¤$®sE£9ç—! èìhÞ. qpùÆ] ‹/º:iœŠ)R»ð 1 Žªå…êtÕœ¬Ä*Wh%Ö JïœøÅÏ\áî¸{þû¸[Žûvuû\‘©ô±?ø–+Ö7±«äŠeœþåŠe¤$nsE¥97~ è@sÐ4oŸe!Y†b¡ÌPc?¥1|²Ñ[»àdÛþË2rD'è¥ý—¥•XG™ižØ‰¹¢2¨¯&Pço®GMâ*öGgæŠå'Y—¹ƒ]ËV,#%q™+úw7ÐtÍÛ‡æmZ#¢3Þº«¶þ—›ÕcÀV«ÊU›WéjoìVMn/:t².þRù‚@s 9ä h¹ê 4oÕú¼¼±9d ãèÀ|bG“ˆâwõ˜Oš·êš­„×%—¤‡\q± ¦Þk°䪛䪵„åò•Øî4çà5·;Í;NW«V'ë.4oí lÝšæíõIðæC-†Ÿ5Êõ[7ø¨eç¯Ù{­vþÜ<Ùó.n]°ìÔám\nô/Ì®Oóà›s©¢CËÕA4ï„/úo–[ûåÀ_š'&Öóñý†XƒÚùXvþš½×jçoÁQ1¨Î©Ôí[v껋ËföVѼµïv-·\®Në7g ¸ŽhshÕ·DÛhΰOÿ· º€æ€Ð4ï=4g~U²{Çò>ªªE÷¿CuõŒrµÍ1š·ªŠ}øZƒÔPn!Í[8…êŠÙšÍ9’yD¨Òîí\6´ ͹¹ƒà›ƒoÞ1˜|s y·¦yc2™Û,QÎ ônAóVÝA 9Ðx fgOó¦í”J]Uð2D[n ÕwÔ¢5Ó›ÆðÊÎGI\â~8Æañ˜H’ðTýàçEä*ue¯Î82&Íæí¤‹ÆñN¦9ËÆðã›·{t 9ðÌÎ?š7 ÑN®Ô¤t¯‰bÊa”) ‚Nbª›'ÎûÛôhZvþç EÃÆ¢«+°)›Œ|Î0$v“QpÜ¿Ð`ËÅß¼3i£à€æÀS0{›i΢\©1 KÅ4DHÉtî+µ« ºYbñåI)°Æÿ>6W\+±yð5–‰0¦½›®FÒ×ÓëÌ~sfÎÍæ€ÐÞÕh΢⛿r•SÙû, Ÿ÷(dz_ª%®ü°Á'û> 'îSD ÍVWöÐgÚ¨•ç~ÖÒia™Øåi„íFº:mL{çМÃ|s 9Ðx fo™æ¬B´S*5)÷¡ï)ãÂsŒ×ÉŠh%`I¥Åé‡ÖŽè×ÿ¯¦D æÕ Iyósùt‹êX%v+ß¼Ö1]Ýe¾y«xkÁͧ`vþМUˆö敺*÷ÊJñÉéUG¾!Z:5qëÙÀÅâã6œ¢œ[Wò(˜)hº:k<@‡®¶ 4šV@{7˜¡ÖÔµ©RײӮ#ªr4Û-Ý÷îK$Qx¦öôac7œ¦§vmáMŸ9Œ‰@sÐÕ‰Ôƒ¨+@sÀ hš7Ñœæ³ O^8¯Ámï'À"‘º)þMbòô)‰@sÐ4šͧ`öN£y{Wênç›ÃÈ4Ð4šV@;Ðhº@Ðh<³Íæ  tu2Ía-8À hšwGš·ËÆåt.¾èß°Úæ=˜æÖíºq~cƒ.ÐÅG]@sÀ hš÷Tš[wÀÆî º@uÍ+ hÞ#inÝaót.¾ëb+µ…wöèOmX'*4¬€v yw¢y‡nì.ÐÅ/]l„øù˜ªè˜õÑiyeuà›V@;м›Ñ„,Uïý&Kè$Zªøo>ÔòñýÆ£v^hΣjËÞ­ÍÎÇ‚÷f³óBs>š½ 4‡ 6Øšš½ùæÐ,ÒÑX›hž¨6Hpqø“Ÿ¸œá*"òÏIŒ—ý𵩡Tió§{›ëx»hoÍÛEu›ËÞÌÎÇ‚÷f³·æ|7;Єö€Õ·fkx ‰Om'ªœ,®Bö Ågæ‹©]Ä€oN"øæà›ƒo4éZ4·¶¶æDóú²›¦©…?ý…Ï}®":Ñ'•ÄèéÓ>žùø‚âQ;/4çQ5eïÖfçcÁ{³Ùy¡9Í4á@sê3Ïè´W|Ã}ñÈ>(ÔYíÀÅÓƒ«A;ŒišÍAº Íé‡}2ËhXí@s 9Є_4gžÁÁô&ß¼0ÙYIù9\É5©¨hXí@óKóšÒ·7¢¼ìWÈ ]L·R)÷ÑN½…‹–¯X¶h…빜 jzù¯óž›6šo\³LEÃþÂ÷rfÖ–¦žqYµrµÑúµk×ê_ú†¶4[3sh_qýk…Ô¦Nln‚åRQ”˜Š™ó¸ ö‰ 4g7“èdiй”ŒEügLfœ…Œ”ùíB 9`´Í{*Í+?_N~™]tq‘0ݺ—Ä'›å&o}¯¨¯*x`;uù¡ÏÈ鄪²"ÊöG¸ÂÈÕÉ8?Ó¯±?­‚<Џ‚”¢¶ò<ùšïcLÜχ­0IÈ¡-É…‰o¦‘C"м‘æœ×U ½qL;òOÚšA ˆføN”³{@šV@;мG·´3`”øx“ì$ Í«KßùÊ k&`›Æb¿ß [6F%2£º¹‰OíÆOô|‡§9øùŸ^f"ÇÓö_Ï®Î>n`[T4i͹Y"‰ tÚ|sU±§J()‰]0|y<hXí@óÞDóúÊì{Ûu—h­Ýhme¾|„ÈŠ$­eþçþY(Tÿ¹;ÒË Ä /O¥4^7HUÑ»‹)ùDîYñ ârðÌëð¹…ä•´Y&΀æt‘͹ـæ€Ð4š3°8ÿº¾¤â¾šqÄüÔ“«¥þ×´²VƒêÊT— ²v/±Í®P›}\M€æ:õU>žYˤ‘¶Ï2p4oãê1 -í¶ÐÒXí@óÞIs|ù}÷ÙòFWò¸Æfî™>jÍ5<ƒ+¿Õ¯–Jí7¯'|K rßàŸ…kôë­Ò9”S 4é š×—^7•”±¸ôûã¼…Œ¤ÙMXí@óžJsöI°£åF3ê`rËèˆgˆSó*ÄÎÜÄXOS×|Çõå´~ðg{6­50^³LYÃ1á'†Ù€uåé±Îº:ºú†«tuM}­—þOÉ<â%Õ'"¦jHɬ }ú6|Ýr£5Eûå³X$ÍA*Ú\Õ"n(”4å§4eßQ€æ€Ð4ïQ¾9Ï/[ H‡>`Ö\oÜ×ðÍ+ h4šƒtò(¸6ÔX=°Úæ@s 9H7§9¬Xí@s 9Ф›ÓV¬€v 9ÐhÒÝióÍ+ h4šƒÍæ€Ð4š·£`âQ¦Éú¦—µxdçÌR¯-ûôúîÕ«çOÄ&©â;ï𩾲 õÌ9}íÔÒ«ÇV@;мçÒ¼51ÔÈRWvßk2ªo3jPTã^ï[!†˜îü°¨ûdÛܨá:ûÞ–`ÑÏgw ½Wðv¿½*õ§™‰žÚ%£ãK‘ëÞt¤¤›š®RYb=×F×–}þšYTÛ 4/~óøÆÕDßI‚¬3†/¾î¾z¶ Ó+ÓC7®Z¡Íê_- ® 9ÀF]jØÒó¾~ÉtŸQp-®óák RCA@@º… 4oáª+f»ëÅPC¤è¥æF´Â0fšSi¢ààqè þóq?Wú 2€†î'.kÿ¬QúÉøféeï¶þOÞéqe—ççŒqøo›KÔ×ìÁ3Ô ’ÐóÄŸ¢óœ `†8‰ |óžÞÒÎe µŠÞÊ:‡ßÇ1PƒŽæ ÷÷‹}})øÂ¡…-Ò¼¼ª¬<óÞ~­ònÏ*›F(8ñ]/'ýé59W¶©‹¢Dêª*¯3ÕÓ[o¨·h©{JNmåÏ›éW«|Gnè#¥cjhdi¼BYi]ôÛ6(zfG>WiB¨µ¹™™¹¡uLB«Óñ¥÷Xhh¬Yodfbä=]ˆ#͇ÍÜjgdj¼Þ@[Ý"â^)‰y Ÿnwq4Ó[®8cõ¾7”5ð1yW¶®QÓ2Xohaki°át©áÄßiAzF+oNš·º.Я4¬€v yO¦9ëjØŠ [_–”dz§¹ò©GÜýâ2âq¦yãëTp‚ÎΧ…ôÕΕ”¿;©3júŽô*‹b¿ÅΚ÷oa¡ø¬’„V"–Í‘‚Ó‚?a ˆ›–spöÈUWqÐÈ€;95ìO/ûqXsœê‘¯”ÕnñôåHó~ƒúLéë'¼?¤:NçÄ×–¯*úpØxŽä@Ô_B’#þêGùןoûUÆêÄþÂRoù¹§à¨'.8˜r,äèÝŸÀ7ç©.Í+ hÞÓiÞD™¦jØ$õ!ƒ§ë™˜lX,‚]d±ëNy3ÍãòØë¦Æ/jÉ7?WRüüˆµõ™¯åL£ÝP‹}ž•ê9ºö¿¸ˆÕÒª0.Ì0Ÿž}y¹˜bL^ƒ‹Ï?2›³o.4'šî`Åá ,¿:ªÞ(H, ºý©¼ü÷ט9Ôkb¯hˆÏ;Z@b¼æ±%›Ü¾-#@K;ÐhÚæ@s.@À:††“oÞ2UéþÉŒ^¹Ä7 Ó:€æEOl'Nu¸o%Í‹¿î[:NëôŠ¿LürZS°ûk’}óˆoNù\!~=«3niTClY]¸ëº£æ"à&|‰[7œÚYPý%|јç¨èHùﮦdN,+OO:“’KšÍæ h4¯h] 5²”gžvÛH9xSè= o^Wr?HI_p;§úwJ€²¯ôøw9û1í6{_«KÒ½§Ž[bäqü®qL;Ý•Ù÷›KZ\8¼`E])Ù]Õ Iþo§-]A¿£*Z‚>úÓpqò>¹KsÏvìßÞ¯J{~ÝÞ±™v®ç‰LBC·;Óéi9·ƒLÕµÖ¬]±ÚÆ\¾oCA¯Iúp­*ÚïÖ[ÌŒ,Ì ×i«mØ•RXÉhpÇݰHa1¯cŒ””uÖ™šzØþ¯br:&÷²ç꥚F¦ÖV›v^úPN1•õÄgž:+7 ÷¾$Íæ€Ð4ß¼gÍ7çv$ÿ ôt•YÄöÌdG\æ›ÍæÀS0;мÇФw Ðh<³Íæ @s 9`´Íæ@s 9Ð°Úæ@s 9Ðx fšÍA€æ°kšo_é„rjåW´õë ?ÞÓòfJ¬€v 9м›Žiç[¼³>Ô|ó®Bs/fXóž«zû¯˜›‡­¬€v y/ 9÷1ÔÈ«‰.Ú`f²‘"va/ˆôdCm÷¥Îj «­6nX­¢lý²¸#c¨±¦y ñÎ:üSDh4ï\š×¼¿,q8£€Xí@ó^Bsîc¨±§§jôgÕþN¶—·ùna9?b¨ñ‹ª@s yGÓÜåLnNìåø¼G©×IÑ^²ÇÏ(z:¡\üT¯dvÖæ@s y×jiç&†rÌ@1ÅÙ’ýQƒeT\ÎeXÑœ)†Zó+c¾Mm”’ÇC µŽ‰w†Í¿º}ƒ–®‰¹™¹‘1ÚB¾¯ØÇCž2):A^¦_ö$b³ÞSScÓ5ºG^? Ô-±tGCcñµÿÒѯÙÓ°JÐhÞ£àHX› Ó%ÏUEÏœÿžäþ´ð.ZÛóž¼ -¾äº«uÌ»*ðÍæ=¦€?±uyòm\ýô|Ê3ù$ÎDlU{ £à@;м7Òœ&t1ÔèÒñyGæÐÂqŽ¡ÖüÊeï}&Ê;>úÍ[ µúöŽw†MÒ›™]Iý‰| ÌÊ>ò6I]Õ|C e]Ù¸< µ¤&÷â«Ã?* ¥hÞÉ4Ç“>§_åâ÷‹üåY–q~ZÔý§E¤\Ä7÷òù¾9hš÷bš7‹¡VWՈת‚›ÆÏð]ÅŠæ l0%÷‚‘ÌdßW¥<ÆP«oïxgµ¹çÖŽ’Ô‹¸]\ûh¿éßõeOsÒßY“ÐOKi8bq1òþüóãÈZ5Ç Ë³T@ónCó7jùø~ãQ;Ý 5m{-`¨O&žp#ñÀHg'”ë픬bB¨æ±ìÝÚì|,xo6;/4ç£Ù»Z µ’Œ(ûƆ& 7è/×ÜtèC9Þ€,c¨ùŸ wjÓnm¾V}¡†ûù˜w<ÅPëˆxgÈ«ûò€å\©A(”ð ËC¡ŠÃu¬Q[~œw3ÐÑ715±²²²µuÜqò†ÜPxÏ|úš³ßk`\7£9/(þžÎËê1¼ûY¼\¡[›ïÍfç…æ|4;Ì7¯`jïèj„ZbIéçk; •´¼SÑÊï"ü3ß–ç *éa¾yW§ù‡¯5H ¥J›?ÝÛ\ÇÛE{ÛhÞ.ªÛ\ö`v>¼7›½m4ç»Ùæ-¥ç”Èä8|²ŽÏí\\ë?6È[_Õ‹î®MsæµàÀ7'|sðÍÁ7¯€•]AºyK;òñÌÇT›µ§}HÜ>ÛÙYù‹ìw¦êv){75;ß Þ›ÍÎ Íùhv 9Œig'¯3œš–g'KÛ€ƒ«A;ŒišÍA€æüz¿í›Å@sÄC¬€v 9ÐhÒÓhN?žÕ@ÄnMswAš#)€Ð4šÍAz Í9Î ìÖ4G^'±ÃiîÕDÏí¤Ÿöq/¯Ê«±ÏS¯Iú$_'1Ÿß,d-ÃÏÖ(Eü¬ÏÏãEý¯ÙŸ!–ÕU÷¶;4çJ¸‰¡F|f/'¥¶aш¾ýÅ7üg4 ñ©Ýø‰žïhé¤üO/3«‘ô´}Á׳«³ÆUÍA:·.J‹ßœuž6L!ðMU¢9Ux™o4ç•æB¨Á¥¥Ý zðôOGÒ¼¦È/ø°N.ZÚæ\Òœe 5LÂ’þMvM|_ò+ÅGa¸Êá/5Í ˆITS:QÄà¹W½»˜’OD^ªYñ ârðÌëð¹…äOM–‰€3 9ÏuPxr}Œ] 9м 4wÙû¹}ûÀب{nçj›Ä]ÏùåYÈDsæxô\Ò¼ò›º×¿gþtÚÛÏ/Þ'‡šÍë¹tŠéb¨áoH+- /HŽÏ?6wäJ2âé X™ê2AÖî%¶Ùj³«5…ë«|<³–I#Ë-ৃ´S]Àâ>'xÍšâ—VÕp5†µà€æ@s®¥ª”Pp6áôŸÔ7t°¤Ò¤ëçÄv?O¯i‰æMFÍâÑsKó¯jnQ‹ï瞈¯xpÿ¢Hà£ç€æ@s®hÞ<†ZA¢¹Âš„\d¿è©½¼‚c µúÊoguÆ«…¥RûÍë ßR‚Ü÷¸Åg5¬’ZóóÐ*C9•@sΡ&0jžEÌG ¡gõ›Íù¥š€Ï˜è–_ÉøaþÖKñ•\ÒœzJc@ùì‰@s X=hÞ•TcI% WÏÞú" ñ©I¿Ü¯¼Œ#–“J¯^ÿO$äY·¾9CNVg%*G,óð¢¤xynY9PæÔ–ÆŸÍeŸÅÆ‘oãÆ>ž3ù‹ì#)ôX{ú,sß1Þm‡€—‹Ÿ¡D€jßéC#Fô9ØÀAÃ÷»wìâ“Æ3f,ð]°Ìk™Ž›Ž®«®¾‹¾³ÚÈrËðÍ[PöÎd¯í„Bö7» 7u0Eþ¥·EOÓCs©÷ÒùÛæOß1]6DVn–)Ãþ9VÐ0ÍŸDq¸µõ›ÙAQ^;êMq7¥éUcÚaõ˜ž6 .³a2ZßL!ïX­ðŽ£P8Ô¬ß(Ê¿š1}«»Ïµùê1*3ô¬õ¦xO80@`¯´dÈ?îëåéþòYžp¦y;nÙ5=4'N9T2Hr³öæ0¥°+'ªFGUHŽ*ž9ãÇ*]ä/ARIiÍ“’⦹rLâÊ»šwSš7‹¡Ö ¥)6ÚÁ_*X¯<|AT¹Ñ»üÓŽÉ2¦·-·´·œ–)ý*7xß„÷ÑKÇ­8ñ­¦ª(#JæR›9X\Êú9FÉ8 9Ì7‡ùæ½¢¥Ýc}äAÏ¿ û¾CÍBhð\áµÖxíd¯ÉCö Pr¢ã¤cíhíááI=ñÖO®Ñïš4§ßVmY5ÝoúнCg¹Í<±Päµ½+ ²éî®)©–=t4¿vôpŒpàù³7€æÝ›æ­Š¡Fü]Ç G>×T³¤ùbñ©k­Ì7¯^®¢ë};WÝÒ˜öM¡÷0Uìi^ùëöŽÍ´¼ÙxžÈ$4#4ÝÕßB½¡Á­å–û”“*ð7Öˆô§aÂ"þÐh4ïÙýæ÷_|æþ€ç‡gŸ??ýBŒBŒ­–í ƒ"MÜ1qùÖåÆÛL¼ÜúÍÏkk‹Šúº»u}šS7k[ëÝ[Ý» ‰‡HXºZ;wžÊÙ…é©þÛ9q¼ÙÈùF¦ßH4ò9°èìÕ+7æ0ß¼Óç›·‚Î0ßZÚaõ˜^As/o»Åÿ=í÷,àŸ E.‹†í&!¡¢¸fÇÚ-[]›i·@ðým,yL;â•#ûHJ«PÎ_š#[†ùžzºÑ±‡t|tïw`yXüI$壵eGÇq-@s y» 6i¹@ãºY¿Öì€æ°zLï¢9éjbíœÙ æŒubío/mí“6;/³Ð9DÁuÖr›m¶XŒxâ'×è'/]‚üm­WÞhþÜ+±x†¯Q—Oÿ}pyŸ¨!,EO{9ÍæÝ†æ @sîg¨$¡ç‰!?Eç9'À µž@sÒ•„ú¦åÙQÙ"¨ÉîÓúGì1UÕuµ½¯}¿yÇ i~%®‚ )™îÞÔo~ÍÃÚÒlð_QCF…­Ù~öÜ 9ÐhÒÓW¡Ÿ0 4ïve¯=‹Êñ\a”å”Xj£© Z+‚ßȾ¿òÙLsDûØ(‚”â¡ÿX¥[¢0ÙGR\{X¡ÿñ‘[ŽÇ]¾q-RïzŒo2ÅÈþ~= 9ÐhÒh¾y·¦y½  ‚òÚ>¨¡{Qnz¨òÁ¨*wפ9e¾ùåÔ?ò|ó?úÑì~‰;DKˆì7|ën{» w=§ùKÛšÍæ @s 9?}ó9³©¾ùø¨#)í’’½“æäbJÂÊÿt…‹L ·W28ygг0ýk¼£h4šÍÛk•æšö¨ËÓÉ;Ç ÖÍYÊž¤ð‘ÇF.=¥í¨u!õêˆúMè7ïÉ4ç>†Z=ñû]ÍÕF¦kÔÕtÝ®faé Xõ騳ZÃÄp«V«([D¿,zfÓ8[ÜÚ’6üì‡Kjºó¸†IgÔm´ÙåÔ9ã¿ÓÂЖfkfí+®­°aÉ8«l¬ 4š÷Ä1íŠsœÖõ÷Öâ Ê» ͉K¹ 1oÂÖ‰ûUνì“zÄóмÇÒœûj„ÛëFÏÉ$/õ†ù¾{º”a ¾¹é§×þN¶—·ùnayó¹á´c0-¥7Pñ>ÆÄý|Ø “„œ:Æã›B°±,ÐhÞCç›oŽVØ£À”w#šÇø&ßüluˆ…ØQ±HÕ#Oû¾„~óÞÒÎM µê/á‹Ç¨F<ùYúõzè²qK#ßW³§99Y9Y^c"öÊŠ¿W&–ä>¸ýä×fš'¨J,a ùb‰e‘bÚ¾àëÙÕÙÇ c‹ª2Ì9ÐhÞSipþŽô>i 9g¡iß–è'|Xd—rȹY÷€æ½ˆælb¨á~_X+F™Ø#ªw"—ÈhÀæ!ŸUS»˜ECÍj«uøÜ‚²:–9©*zw1%ÑEÊŠß`—ƒ§;«l @s yO¤ù±øœ!QC€æÜËÞ+‘b1Ãýû§¹ 4ï54o‚iS µêÁJ2Ë"ŸýÄæ<Ü·|ô¼Ð·Uœh^öÞg¢¼ã£ß‰ø»›ÕmoâIå$¾žëh,µÙÇÕhK¿¡ú*Ϭm<ŒËl @s yO¤9¢Z ZÀÙÇhνD_=<üÀp?-ÿä+)@ó^Eóf1Ô·×IMúF‡ù2m´Q =Íkr/ÉLö}UŠá¢ßœ=Í1™ÿzÅgáìý<´JçPN%'jÍæ­§ù›µ|$Úy¡9ªy,;ïf9ÂÔÏ´m8>}Ÿ_4ˆ¸Á/š#r0ñ¦x„øö~|¡97šóñiïz1ÔÈcÚµ”ÕtׯZª¬íÊaL»µùZõ…îç?–§µ4¦Ý’.ä)÷AMCNìà‰¯4þ§dñ’,ƒ˜¨!%³2ôe9‹l¬ (š³ºÃZp<¾ ø{:/4çÝÏâå ¼Ûmbø$ÀmÆ1¿hλ_Ï Í‘s£.E ‡‹„o‹è|šóx:/4çãÓóÍA@:Ú7ÿ𵩡Tió§{›ëx»hoÍÛEu›ËÞ^fW Y€HkA¹?…¦½ÍzÛˆšHS‘ÒÉ4OJþBÓ}J ßÏ9Ó~¬Ò-ž9ƒ )ù0: |sðÍ8 Ý—æÈÇ3_PÀhÞZIõÛV†ËDzŸÙo8 ÿ–±˜ãšo¸¬ý³Fé'S#¯1A«+¸ 7vé©_¸úÊo'ÕÆê%äÖÈ@€æ@sN4_½C_.B®#Qîéì8Êeׂ-Áú )Ûÿç¶ì(ÆÂÆÎÈÞ_½C§Á.«fü”˜|uüß-ðk0G#¿ÂÞn›ÚoŽC€fã)ÆöÑ*vöÖë›7zè—SüÈóÍüÆíSµ¤ešÇÿXº5î$e!Pá£ÒÖK+æ]©¥›j,é H¸g,%kw¿¼ ,ñó¥¸ß«¯\^UVžyo¿Öy·g•Í46A#Ü1”™ñ‹ì’ã~í›%c|ƒ iÿºÀ¼мûÒÜj»•È‘Ž£¹»—ÿÿ\‚5¼|´]B|s/ß\ö,?бDhnç'ŒÞ¶†BX;ã¥¯ÄÆ14>!36šæV«ï ½·ÚY½s±­ãÇ>8z.:lœ}ç·´3Ë‘¤¸>QC·ÆE¶Øoî¼3féüì*쓇ñ¢;B¿y—¦9ëj¬«Ñ·´ç§F£ µTÕ–,]mù²¨!ºJã›Sp‚ÎΧ…lƒ a–Š-:SJùoé¹bja¹uðÍæiîîíÑ/ºò·#Pîáå»Ðe·¢ÇVoßy.´–v¯-ž;ÿv¦´£ƒíì¼ÚZê_%q{åF[ëµ×Åehî¼bB¹ðÜõvAÓíì7Û8ÍD6ÒÜuŒS¨¼Cð§½9Î!ÿ—o4Gdñ‘C"'^a1C­ižZbb]Î÷'ªþû‘ÿK>ßqxè7ïÒ4§ ] 5ö‰ ªÿä¿|õµˆÜóµœ^#C4:ßKöÍ7€o4šs¦9"ˆoŽxèíOs¯­«¶ì‘w÷q£´®Ohê7÷Qq S8P`fc¿Ú~×`Gïõ›MM«lHö±-uÒ†ŒnNs󘱃¿/pOía·Ý"‹¦õ»Ê8…¶s1µµ_m·kzÛZ¾Ò<ñÆU¨zG·A µžGóf1ÔØ'Òb¨)_•EâXþiÇdÓ[º+ÿÉŒ^¹Ä7 ÃV#¥ß\õt¹ßü„ê˜U— ßh4o‘ærr«wèw€oî'ÓÌ3E„ t¿qΡ®(cÚmÝG9jZ6íFIÐíL–|4z‹exóKQî<½KÍ–‚v[ò¥lùIsDLÏ:õÛ;þìÕ«@ónGóVÄPcX­Í‹O]ke¾Áxõr]ïÛy¸ÊÆ1í6{_«KÒ½§Ž[bäqüŽE4ê˜v'=Ýuæëut].äb íQG4D„TÏc€æ=“抻U‚U¸‘îéì¹CÞ%å!¸%ÐЋk²Ó®àå;×9\!ªÐÜÆ^Ÿ<†­¡ß¼a³Pÿ2@’Î7ßä»@'³ÌÖ†në&Ù4vÝn¥C°Œ3ÙÍ·Û5íkМÚÍÀ“O¤} \¤ud·¯$ÝLŒ53ÂhóÍA@ºÍ«~?v›=Çzë:Ë@óJóå»Ôö(p="ÝWÉ%|Œ›¯ƒ÷VS·Ð®Û\ZKso/´gà rÇñ_èÀ9¶Í;»hnmpEdpªöÆ&Ÿ»Ím6Ûn™å¸‡¼J*zçô›ÍÛSý,Yßô².‚˜Ú²O¯ï^½zþDlò—ªö+&ë5|Z|ª¯,K÷hÎÁ°@óCs¥ˆÐƱû8YQ”¨±8̃™æãÍl÷¶]¹Â°œêè¸lmÈX«N鸃{Íq…ÉÎJâÈÏáJ®IE•à›÷0ß¼WJ•”Ÿ·¦ÄM¥ý,Ì]¾E¡n’wi ò3«ÜpTÉÙ’¼wéÚuçkÆÃަŒì×ÈÉþLûr6:Öu‹«®•®Â6¡Èa‚CLJMVÙ¤¶â°‘ûSÏà×»fOøžô0çÉËüׇâ3_ÿzó{Á¨º>d¯œÔ…ìçΛrÿûã;_ïǽ¿þrŸûC/­èuŠèyC÷ K”Ø1W.b}úäû"~ägS¥(roõ¸q?|¥¥´(HÙ;ZÌ]6 ¶Co'}"øæÝ¢¥ó5xêh£›pfìcœÑÑ|áÞã~±¯/_8´°EšsXÕéE¯Ãìg€Òþ„Pks33sC똄0Äßï+·ÁÆØx“µ¹ùm“ÉDîã²±½f)SC#KãÊJë¢ß–ÔWãKî±ÐÐX³ÞÈÌÄ&È{º€_ù*™iþ’H*#àñÄ´=ç[àûìwü"Aù[Ì Ö¯V;ÿ)}•?ol&g€îjUï·O ëâ•qyJ±¾ìIÄf½5¦¦Æ¦k4tŽ|,'ÍY×…Òs)‹øÏ˜Ì8 )óÛ…@óJó勵†R˜{¦º¡Å[ VÑ›šÛpÀ÷¸ EQ$½VÑŽ}²Jy!5ýg~NìÿÙúÛÍó:x߀™Á37F[„ÞÝ|ôøÅ×®Ë@ŽAþÞüœºO/ˆv„ª§N0´´œ9Ù »_ßôù‹ìGLôZè§¶mhx?Hùå±N¾¤S#.P*8q¬«Ñyy] y÷¢9÷|çyÍÊŒ–áÌØÇ8££¹ò©GÜýâ2âq¦9—ÕØq Ié?daÀœº”~‚ê§`©pŒ×—S‰Ì(nM\6–לü ‹à—spöÈUWË~Ö§z„>ÿ.Zy@_¶-¼ïhz1W~Å`ºI2¶*ïš­Ãò5Ë{>+FŠŒý¹w¦”Áu<Çb2¤ÔdŸ6˜i–œO±XUÑ3ç¿'¹3| ÍHâ“Ír“¶fýò ߉rvˆ@óžIsD$NH¤¼GvNm|F_dÿäÆg´Ÿ¸éë´âÜEÎ5x掙¶{ì’6kúÒŽá|zšSNš¡P;dò·àô ìþkúˆŠrÜïÍ>Xbm¾íÞþч•4ö0yzê9ÖÒ¢t›óÁÿš<â/͵œ´—m^4ïF4Çæ_vP”׎zSLmˆfÎŒ}Œ3zšÇå=°× L+Œ_Ô’oÎU`5î1‡¤ ûçXAêïøü#ŠÃ5ò[—³ê~öååbŠ1y$š–ÙBlJ(K²´¹ü&ÞB£¦IÒ×dgÛ„²*×Ä´såt)Ø$u6¯€æ u›¨*¶àT å"%± †ÓµöÍ{Íÿ¹4/þ["ƒ7MÛOÏÍñ»suÚ«AR‚ûþ’ýw‘ÃÍÐŒ‚ïÔsow–ל…FóÖJÁñ£ˆ'NÝþæ•I¤©ð^a‡µ#ÓW…\ÝÞäÈÓ;õÍå×ý”s‚®—´›c×½k Sv{ÓÜ m%¼GØÉÖhÞh^U”¥?s©ÇÍ,.eý£d›pfìcœ5£97œâ>°Z«hÞo 2µm¡žð>zé¸'¾ýa›ç¢'¶§:ÜÆ·’æÅ_÷-§ÕÐ@ürZS°]Ã5ksϘ雭ñ¸ý3ÞXׯÐêbV]uëh޽ª%1·ñã¡ [Mª ½ñ5 ý´”ö©ƒ#×Íë¹ÙSHsEÉÓsb”}± ŠÅwþjÖ(:¸û hN“ ·MB_ï¡yÓÄOlz†qƒ×‘áákúEŽˆRüO{ß³hÂßc›õ›ÇDÕÈÉåuÍf~©;¶(r/-%cŸ¿ÃF!Ñ¢Û5¶?–M}$ðâ´ñ6(Ï~›z}zÈåu»RèÀí°ÉÑo„SÀ\ôNípÏÇŒµ1·šwšão¬é7NÃd£5eäyc¿-Ëpfìbœ‘UוÜÒE‰-¸Sý;%@ÙWzü»œý˜vî«1qªò×í›i´ñ<‘Ih8Fhº«¿…þzCƒ5ZË-÷=('±Ï3æžíØ¿½_•Ö³¿fc¸%è£o1 yCöÓrn™ªk­34X»bµ¹|߆‚0]“|Ù/‡NñH-­+¾b4nщ,|国¶d-ªîç>ÑÊk»ÿ!;q§-]$»°ÇÔO‚Ú¢»Az 5ÖmÜhjné~î ò­Röã¼›Ž¾‰©‰•••­­ãŽ“Ï0$ 9-í¶ÐÒÞSi޹ð_¹¤ËúþÕ3g ûÅ%—æ?ð^è-,/xdøŠ+â¾Äça ©—>y€à»jñ¢ ›MˆWŽì#)­B9/4G$÷vJõ¸qˆ‡ŽµÜˆüEö‘”kŸo(œ›¡xDñä¬ ©¨WQ¦˜Oüöå±V`\ÐÇÏè€$­F¼Ú9zË£—8º¨¡wiuÍ5m5WlZ4‡ùæ7ß¼U,«|ž®r «]ƒ®vÄ5a¾9o£à®›JÊX\ú‚ýqÞBFÒì&Œ‚ë‘4Çœ­G¡.OGiÚ“›\¾‹£Önœ74\hîN•à™{“½cf1â‰câÎâ¿­õÊy§9ÙCÿñµàä¿¥Û|¿´Ñìßó~YE»‰ì]g»íö g Í}óÌ_oöœ´xžù=ç½¾o"ÜöŽnsÑÁ3í]g;uÍ--¬&øNšÍ;I°IËi½É³~­õÓz;ÍQ~qC¡¤)O…4eßQ€æ=€æf( ÿ8%„ÚlˆßòÒ=ö€ÃˆtÞ…Gš³ÛFé+;xvÔIÉI¾ëï ~úd…ø'Žýüþ.úè Õ럾 Gþz5Ï#žngMtè8´‹-yßCÎ)¨#hîºÉNpïÀ³‹•kk»ØÚÍæ ]põ y yÝr|´ê¾¨¡{Qîz¨’!¨šƒ9Hïš4§iþãÕä£òúG½éIn_¸ zìhc#·æ‹·k9zI1®èܾ@^¿¾xØ0§¡j“>KK ß‹HšÍA@`õ y»Ó¼zæ ê°Æß£«gÍlw|wÍéGÊaäe&‡ËHìWûž—ŸÂ̯S\/2Q!{;£|‹­-‚òSË–­²Z¥i«‰¤ ûIù "h4Õc€æíÜo~á?†%\Êããº5Í þ=B\ ”ž•1ð äÊ8OÆf:‹æG´´¾ŒMí:Ÿè3‘šX–Ô¹ÕÎ>â*Ø'‚€Íæ½æô+̼Oû4"dÄÕ`úÈ,Có-¶¶E§–‘Wv ™1i»æi55è7ïº4ç>†ZåçËÉ/³‹.2OënTMütLs¼Æþ´ ÊÚ/¤Œµ•çÉGV¼1q?¶Â$!§Žãôðž»þ Hhi‡Õc€æÝƒæô+Ì|˜¸&z‰ìBH mñöN[§=ØÐ:⡛ѷ"i»º¨aüü…¸Ê¦ÛQõR{ç~”Ó¾QQORU@sþ¶´·C=p_žOíÆOô|‡oL'åz™Y¤§í ¾ž]}ÜÀ0¶¨ hÒi£à`õ y7¥9m…™ =çô¡#ƒF$=I¦-ÞÞi4GÄÅÖöŽŽÇê™AâMóÍ+¿.ò¢£ùŸ¯ å{¹?I˜÷.M»U4çÍ[Ž¡Ö"Í1‰ªbJ'Š¾ÊªŠÞ]L!/©JÊŠß`—ƒg¾N>·° ¬ŽM"à hÞæjIèybÈOÑyΉ0C hÞhN¿ªÌ&-›åŽ+šb²t"Í©²ÎÙ¦OÔ ¦µàh^ùuéÖ¸“§@ø¨t÷a5М?4ç*†Z‹4¯Lu™ k÷²y—Jmöqµ¦ _}•gÖ2]‡¶Ï!" мê}ü9jÊ›µ|$Úy¡9ªy,;ïfçÇ©é•ü¢ùÓ¸ÖžrÐìšP¸Ð~ë†~óf¡ÓІh)§”Ó^§ Ùh;V\Þ·ïVhnï舊¼ÁÅšoþÛ50FåA^ ûèA¼ Û¥øÊ¹é¼ÐœO{—‹¡Ö"Í‘ƒÏêŒW K¥ö›×¾¥¹ï p‹G®C9²æç¡U:‡r*æ ]¡.ÐãÇü=šóîYórÞíÆ#ŽùEóÖžKm`ç§è½ÀŸÎ7gæ¡àä»ÒÑÉÖÑi=z‡ zç*V\n³_ß?bÌ"OCÖ4¯¯ÊÍ|²dû>”Sôœ3ɲ^‰ •rÓy¡9Ÿö®C€}L ñ¬‚É€uåé±Îº:ºú†«tuM}­—þOÉ<â%uô1-PCJfeèÓo´áë–4½g?°Hšƒt(Í?|­Aj(UÚüéÞæ:Þ.ÚÛFóvQÝæ²·—ÙÛâ´÷4ímöÐÛFóç¯14ÕO_`¹G9òWûœû¸ÝóiýæB§Ù;:9îæä·Î¡Yúž°$šö½­÷ÐEBfü½]‹ Í›$7ã²xð³ôš¹ém£9ߟv˜o¾9øæ½Ü7§-Þžøü®ÀÏôw$«œIú/‹Mè´Æ•ÛÑ!óÐNíê›Ý¡,¾S™Íë*³sß­óQy^†­ßVélš#Ï|Ä1Úy¡9ªy,;ïfçLj‡Î/š¿xiõ„µ[)ÕcÇLók¯F\8¿Dl„–á6¡Óì·¬D‡ BoÛÀ ʈ‡Þ6šÏÚ¦1(dvb|æ¢fq^(LGàNýéujÕìÜºŽºé¼ÐœO;ФshcÚaL{WÓNYLfLQäÞ)G ”Îløñë…×ò _…ÅÙïf:ÍÞÑ[Ò)H§]‡µ«{ëþö¿ˆˆ 4šÍæm ‚ì¸üŸ½û€‡úý~ ¡EËj÷kþSÚDC›RÙʈlwgGöHB‹Œ¤e¦EiKJiH%’½šÿçî¸ìŽÃQ¯Ïë^ß{|ï¾|Ýyßçù>Ïó¹ä;Îÿ?R_ýsNÎ`aá¶ÅV WàL%±8 ¬®(Ήg)Û§šKÊ ÷žtº 4Í! @sÐ4ïu–»¯òèýž>/@GÏàá‰çç³Þ4«bÔUÒ 5 ½­k3Ç$T‘c[ ¡Þ·SΕu ÷cZšƒæ 9hšSS„e¾Ãü³aq¤Üüßì7“_œ;/¤¹Úžkÿ­<*­¬¯~Ðk-Gý¸¥®}F¹„Î^×a#¤¼o “ŸUpBåhšC@€æ ù`Ô¼ª$óú%>«#¼“M4înñ{ÔXöˆï÷ ¯ÓÇË:hþ>¿øˆb;!)þ1]°""ëJÊùÕÞœÃÆ-«ß#U]_f¨Þjð˜ALä›Þaó77´¸‡ /7úá„'å#§Í Vm/Vyó+Æþj}¦9¢<1kŒç„åNaˆò´ÑÙè4\šS^C­‹=ë †ÄÒ¼ãZp 9hÞŸŸªD]~[RüåCúõÄ©fçâ>57nF¼óܼàt•¬ÙÇ[O_¿zP|dÏwÖm.©O_¼råoš, sðة׭u~s%æèäà»zU„Å¿VNabí®ëYÓ÷ªb5e®LšÖ^smu×l•3w˜j÷eO;}ñba 'ZQšÿ!(¯¡ÖéžmN ÔPƒ€Ü4ÿzÚK*>ܸ™4Ã>%õ š“ãíãw’_çª#¾ßf”Ïeýd5Ýöâùw­÷y¨`|àދˤüï5Æú”úõ‚D详[jFha!“–ÿ¬m–”NgdXrÞ]¹õñF9ý½®–«½0qµÑ\[ÃaýôJ–…!JÚ}¾Zû<ÓåNËœOiåÀuóAÞÓNQ µv{¶>PC 4͇ºæä~uý¦¥Í-º^à >ÜG®¿-ëDóç¡ b:=ï—Ôç¯ÞÜ^­¡šDÏvbÁ¬z æçÔu_â“ö|œ7Åæò¥W÷Cùû«çE//¤ÄM1=ñ¦èÕ›{;L‚¥3ó¿{u5ó»ILÔ›öëÂ]{Á—þ)t5†÷!&Ý»ñ9›A×Vsåã¬7?LQ«Ï)G¹ù®{!7äšSZC­Ýž­O ÔPƒÍAó¿"7ÿùí™s'&8gÞ¬ 7~.*)˜5§¼†Zû=[Ÿ@¨¡šƒæ˘ö’wW™FŸ(kט³’ØØå˜ö\Ÿ†ñ‚%Ï‹^½:_5‡ïSÎå&§Ž>ðm/€_¼¸±Æ4Òéù[ž('uèEê?zMzxÞÃd]b£nز€”öÉû»'X[ÿEf;MÖ™ê œšˆ3Tk­9Ú&õ4Ç”Heí¾Ó¾ÚvµÒ.%Ó>X5§¼†Zg{¶9PC 4͇ö(8|lNò‡ÒâÏocÎE±8fÞ¨h“°ŸŒ‹çxõF»Ü¼ ¦BËóý£‚×·>ê-û1OË6òF⋼"Ùyïå­çXÅd£Ü|¾øÍÛ«ç³údÝ}ÿ[ÿož‰ïšR\ôªø©‰s ⣜7/OLrJM+n›¼¿¹#!­,¬1·eÊ›Ä$¶ÊùºÃëdÄe`¾ù Õœâj]íY5Ô @sÐüo™¡–œznáù÷ ^…¥%mf¨ýnl£yqÞ{‡½McQ:L÷W¦ìj^â…ØyF^#Tµ%¹˜pÝ\ÕÚ]Òã{o_œO:9ÞúRÒ»6É{˜üõSŽÿg£ƒñœN‡w]¿E/t¦'qõÜ^œÛXœ‰Vw§šÂ5znÿþÑ|«ù¶-Ê›¢°ß§Ñ>¥,kÊ.mþ‹|ºð•o"¡‘O¿±´4Í! @sмëõ1jsrÒ¬ «»0šÄ7¯îÒ¥w2bXŒÎD” Íß¿"åïü‘É.ç\r_ö·÷o_°$üvt–§ð·_¾l—¼(*‰Ê?k†Ý°|¶ 7Æq»4¯cð?¼ë*"¸ªR7è§»ôæ"¦»ø5}“5o¼_T_óºÁQàçt\¡ëµ¼Q‘ã§Rl}ea£÷OÅÔzÐ4‡€ÍAó®¢ñµÖ™;çËj+¾Vy]n^Ý…Èë‹'©K]/MŒ*û+Vví,y/‰8†’ßã0S\š‡ºYï\O\=Ƙï¸d®ªØ-ú™vý£ù>c1}žßŽGLÜÙXõµ®þæ·Y ¾>©%4>±ø1K³¡4Í! ú÷½kÁý=íµß«}ƒSšWw©._œ³Ûñ¬Ç›"ߨã=×<â`ÖÅ£OÈwÑöñƒY”hŽ2åFž%?ÆŒA·I›N&øßk=7„|yšý06»¹‚ê‚{ä$ôöï šënq1ܧ îìWÒ ¦É_uÃ߸m£[„~´âùÚ)³J—ŠàÐmíÔÙžºú9³Ì“Úi~Lß²lÌúì“¿â¢_ï6TÏhóé‚ÐÞ·ç<$öí‡I×%V~$w'ôk«oUߨÈQ'tîÊÉ¢l¡i Ó“úçŽ~ñ?ì€Á Â×ê «¡öëkÅ›hcÕƒŠÅ·lخ󲢣æPC bðhþ³<'BS€‹Ýeš½E?émäæý­dܺ6pqíâþÀ„ ô«É×R{fÀ[Àµþ2åÄ;‰· 45CEDÖ­ Ñ×ÔÄuö%ÓçÇYNÅ;1踭“·2å³YݹZ›o‚ûä#ÆøŽa÷`Ÿã2‡Çg­ÍÚ-–[DÌDÄLÄdŒdõ£â¾<šÆVÅÐLgÝ(̗ј”™ü>óC$¤´µ7ëI)ÌÛ®9yžÅ¼‰ÎGøî3Ñ}æÜD1ù•kìw[^dÎб+7îØ¦jêj¤ˆœãøši½ö!eÒ]¬¨³ùÚpòwQøîØþzÒ$„Z!›‡ÂÀ~‰«ŠOqÿ£Íg†•M /†’ÄokX 3ÔÖè4–À 5Zäæ”×Pûõµ¶éKé7¢¼¯ÞkÊH¿Qœ¶Üs/Yk»VD]!tæ - G\·_èG°¶»n~mÔ ä/IáG£œŸOœM"XYCu^a™‘¸ñ.Ö% §™®žg:áãìÃ%•˜÷¨í‘?$¯ªªJz`Îð ÿUXÒöUÆŒUòg×®ñß¾L< „š-¾d”eÆzŒ…ÕcO;…5Ôªª^¦¸o™¶áÈ“¯mO ÔPƒ”=íµM%÷O+ÌZ «4êšÿtèNEY9¢13ëŠ8¤1f™ó…¥Œ¾²b‹ÕÎùBêB³-gÓùÒӹϙd½ÕŸWô&Ý5Óua·é#ÊÆ°æsr¦ýo1º-ef¶£±æJ2LžL ù לÒjß_ûðb0t«lTÔ¶;PC b°iŽ^Q¤©h «­VÂ(¸AóPaá..Òö!­•¦Ò¬ö‚ ÍFúŽdö˜Îc»VÜD\ ¯…£î‹¤y÷a'!ŽøÎçä@?ãà@ÛLåæï šÊkŒE¦:ðLpÁuxšÞ&lë¤üÛHß5_Æ«Žž!pëÖ7ÄžöwcfxxO;h>ø5§¼†![¯ÿs|Ç<£ìƶ'j¨A ÆÜ¼©ªº Ñr5ëRûM ù߯y"ŸàEžrrr¼ú¼ô> žÓgØ­sÛ9'z=®ï¾(Ñ…ö!eÿíÛ‰]åÛÑ6BùùûËq‚.K¼×k/`ñÁ«»\IRIã zúðŠ™·Ý(¸ë'+³ç°+–7&%€æƒOsÊk¨µÒ¿ÐmÉTñ‹5íN ÔPƒ¤cÚkK#ײn‰­͇¤æ~Éaö)ä»hÛ_<¹µæzšzN{œ<Ö{Ú{h± «ûȵúkeÕd±ÚÍ×ÕQ¶,"2ðš÷4Í´þ*ýMd7úp念֫—ë®åÃ0Êcú<ƒ§x8žNÁ”Žý­ù+6¶¢|Ó&t¸¦‘:¿æCÓtм» ¼†Ú¯ÆYnª²’Ä·nÇÆ¿®ìx¡†Ä —fhv£¤ª¢úE’Õªñ‹mî7ÁZpCRsÄwc6 tòö¹3?àa+Ãâ§Å[ð[,1Z2Æ{Ìr‹åRú{J&°´¾n~‚xݼ«‘í´Õ¼]þn½ú()yض OÓ®¬®!¬©· kò˜}d<&”ã¼¥…T:ºÑü5[»n”¡ƒæ0ßb Þ ?ÊnøÉ.‡îšºF)ðie-\7²=í$Ä%S2éo_Üpãö’;9 ÷–a…FûŒžå2k§ùNòÕpgÄ÷s.®«<<(+GÛÎ-cÚ¡æör)3sëNøcËÔê0ÿµ[¯¦p rsô±¡ý2tLL 9hkÁæ= Û=„Õ]2&fßRÌr÷ñ\ºqŒï˜Uv«êì¨-Êă‰ó̓»žo>˜5o× ÿpâö{ÃÒ£ÿ'ÞNs÷ºnþªcn¾rhšC@ Ì{¡úÓ¾‰è.Ÿ~b‡šË ùPÑ<ýÖ5MíØTÆ,g‰‹ækí¸}gÏ Ÿ‰?¡×ÆÑèk4oÝ :ßMWÄ<'îë¨Ñï˜fx ì¸vš7^LÍAsˆy/”_VäàVŠ}VYxF‰›C1õh>5¿r=SúP4¢\ÍÁ!>Çw¡=¯ûQû䮯´ÿMšwèè?Ù^ÈÆ†x5oYÑk¦Åƒ/ÿ ØÌ÷_òï¥'%E‡Ÿ¼ð¼‰æ†ÖäXÌ$žuÚÏÍÿAÍGŸc´Ä,'{ñÆÊWÍAóTóžÔP#íÕd!fD›ÿðÄCWßóÞÅŠµDçZ鯪›–«0l"Þ>W^wÄ'“&’c]2Jùh ‘î*ÈíÝÌÏ'{ìi9zžÆ\,±]^~φZ—ÞW÷…§]þ"=AöYAaéмìá+I  ˜:ÿekÊ.î[Î4ªÃw¸ܳK¸³oýñü”\°Q߯Á¼)º’¦Ÿd¢§]zÚi§yFØ©<¦Þ¼×hó0ÙØ´ÔV£µ\$$´OÈ«=tqÌÌHI¿uM"Ô—Î{Îìc‹"2¢zºhšÿ£š÷¤†ŠÒ;æ;âx˜;jNúÏÏ£mô°æÙ1k}žÖ ´C¡ÕÝê·>¼SÅ.Ô´iÿòØlÞüªMéú¼Ñý/ÛÍw{}–úã9Ç(¸KòìÜJqÏ«^E+q³+$Ã(8ši~í¢Ø‘×ä«É×ÓBOE°Ex\kn<ZÏÁþ~ñ å[ß._^ÇÉÁo³k„ÿX…Xµv]ë 9hšS®¡VwÛTP$8÷L»ÿð­4_çuÌúä½8§˜ uÔ¼¢éKEa†ÏÎÉs ²ÚìV[¾šµU¿hÛ‡—Þs×$¬Çç¨  (£ïŽòý³ö«8 ª¢¨(.,gw¡¤¾ûbp¿ãû»ó–Û&`&¬”’ß»WZf¯À&ÃËï~4¼¾b£ÖzUº†Ç„Ž…a"ò2²Êv òI<úÜÅùìòçìððšòknJÛ·‹KË*È©;š.×­æÌËÌ\4eåHK oSòÌ(oìJÞÚºgñþVºX…½[W.Ýçý¸®~åûófâ›wJJË(i(Kî,il~àÇûŽ{ÿã´Ê®ÿ4ÇXÃá"^.à"n[·Ð|€{ÚÓo¦‡Ÿ‰â°<|ƒp73=¥žƒã©… ©Ñ>ùü¼Ã3[Ò…]<ÚëuÚAsÐüל‚jU·mVò˜Ýù\۵悷C ì­Ï<9#нæ-Kk2ý'bwëSëÂj§?W<>.2u‰íïMA-tcÖÙ¤½ûÞªe$Ó¶ÈWU„» ¯cÅfm8ò¤¬ëbp$¡'_œ\;nMا¦Ú²|“v&TuñÃ3ýÏ)¿ª}Bxç¿|Êž¤ênÓÞŽ?g»‡y¼c†PHAñjõãAúÝj>’q}Ð3âøÚÜ ¡"áß;=KM¥yÁV°3`†cŸ<|$ñ[ß^øl˜.rò ñ,•§X^®&=ßÿòQçÐô×ßþ¦ÜVLš_;σ÷ РQ¾ÔœtçÚ›ÝæšCjÜt2p„Ï”yÁBWòäº8‚æ 9hÞ‹ ¨†ZUâ¶1£—ì•“Û¿~x¼wŠ/• ¹ƒæ 9hšCü#šwõlä/м_5G”§1f“@4N»=<'‘7;Œ[?Éú², 9hšƒæÿ²æ›dO; ôðíiw†ÝMÚ|cGôN}Rdmh®.£e5ç‰Á{ Ã9.ÐÒ>„¨UÚöƒùEº™^Ê]¡¬)ªe3G\ï°M4ͪ†aŰ ûäCÓýv}‡ø£<'JwÏî}’²Ò’"â>ÞwÇ)+ˆ/;b¢ØÅO¤'¯*Ž7W&MŽÖñ}Z]×u#h>Ô¯›{K]ÉÁÜ=µ.Ãú’ ç1®K7’ÿÍ5ôfá\hjT×ѲfÂÙŠ´YåðŠñ•s„uºy¿–=Îf½¦æ!ÈÍAó®¡Öõ„î–C×çÝ1{»Ïý:âÚ/Oœ7ï&ÖÙ¬Ë ”3Œvß%ÿîg·ÓÃÇZ% 9hÞ§¹yv{™)çÇùH î«èƒ 7Ç-%j®„4×´fÁYˆµ6÷ÐÞôqc¯îUîBdÜJœû MMèiÍiPC QËÀºr9;f4÷ÝÓEµíO`ý-ÍÙó×´´7~È¿Søµß÷vºTôµè˜¤ÌÉÒ&Ð4ÿ§®›ï;á›´ôÈZ…Ý*­Å &ͱê8Ë™x Þs ÞZŒâëæÊf“H]å8Ç•š­ÁÅïš[ÁÂk«Ò•ÈzÓð.s´éñ^Ãñö+45Uÿˆ¸†;©l !ÎnTÍAóÎãÏ5ÔóÃ]}Ï=-.)rRsîø Ï¾µ=• B¬|á¥meýÕTúøìeÂ’ªoc÷KžyWÓîŸ5ÅŸJ¾üì¢8ÍAó!;¦ÝÝü"›‰ßáKöÓ§;\òO”š¬Â»sá át%qŽqFi®½çÆ©…—W×Ü«å0k*õ_…€éŒEk¥5»ÔY ïÁ¡©#¯¡µWÓg!N‘æÍ—×!7Í» Šj¨µÚ¿æ}È ré.ò lÈÑýo¦æª6Oþ£èØfò2m˜‚Ç tм’‚Z' 9h>{Ú¥Oí ›xt⪧¤õ§æ&Üx§í8,!KÇ™qáKQtÝ\Ÿ ï ¤¡N¢v*Þ~{Ëus ¹Ï§FPíZgübù±†SZ=4Íû½†ÚϦ–r™M%™ª³—¾×Ôî6¼8!2{³{éºù¯Ú— Ýl bI»¾Ö}´G$è]hšÿ š§Ý¼†óm'÷õÕ8öþËÍWàݹñ*8])œ#Þae×Íypî\ZxuM1Â6Ë–ëæ*æü“ª¹·è«u£³Ænm'.Mb^¯éÀ€3— ¬§}¡›ÝcòáÌõä ÖrÖÒ±{Ë€æ yj¨}~â§uð€ŒÜ~™ýb[w¨åUÔvNAsÐ|èjî›4ÛÁ%”%îÚ¹Á­9NgÍ÷DPNÁÙ1ãvSvÝ\AÓœ‹8Cm8Î~…F˵o‰óãGç+ªw«³ª†î2¬zìœíê¶×Ü»CX#·¨QÚ²;²ý?c–'hšÃ|sÐ4ï7Í7¸Ÿʧ”p¨Ï)ï·1íXUœýh¼•Üà^=&>&Ÿý ØÕñÜa{ÅC8¸ 7ÍAsˆPsX n`4O¼šÁh¡7ñè¤K7R††æXœ Îl΃¯§=ˆ5WÑÀZ:ÙfŸzn»ŒâÝçY9@sÐ4‡€Ü4ï'Íñ‘qü$õå}­¹)góÌ/—98CÕÁ¹²+y†î°Ü’9×ùÄ”®²[rFOÍAsÐ4ÍûIóéNFB¦¤ÞÌ šw60NS3TD$aݺ}MMr»%„Î>7²æXQgóµáhÃwÇö7“&5ÒÑ¡[´Ý©ÈhO´?ù.ù±= ¥me­%Ä”4Í! @óGóðËÉt^ó “Lú‰r 4'§ÛN"mzÓyñî¨o-ŠÃwõ`™2fæçÜÜWyxÐm j!} QžÆ˜åo\H☰Ҩ³ßŽímyÅt :yÿvÛ„»‡”¶m;»vÿömÚ‡”)] Nfcþ¨)›ƒæ 9hš÷¡æ™é)¹Î/µ55 ¤ÇLì¿ÄœâÜ™ÞZsü>œÛXœéAœžΕ g¬ÞEVŽ(ܲ…Ü‚¶KYXÈ:ôlÓuadŽßLœØNs”¡w 1 ñÖEa'.V:n\>'gÚÿ£ÛRffÔšƒæ¡æ•±Ä1K3-|鯣ÔäXÌ$¦ÅýCšç|GïPˆ>‰ ϵSf•.z)Œã×ë.ÌŠZhüSÅ.Ò?kÛr7®d§I¤Ô Âýì‰lÁ+‡ É;£tÛ{×]´qÛ$¾ìI±±_†8¹]ôþI,j"·Éx'¯ÙêÿÌçqØq0¹MÆø°büF³x`Æ{`5(Fú¶Ç{ ›ä8 í3Ýz:> ºàî»Eu„tìW؇Í<¶çq Ï[‡½={² ·{øòO‚¶kÙ眮GÛÞ¢wÑÖñ‡¤U _p0½©á[cÐÕPCñ£,猹ô^ y--œGÛjÕ÷¼w±bF-ѹVú«ê¦å* ›ˆkœ¯Îææ)ä‡îß·AP)àNÙ#-!R£‚ÜÞÍü|²Çž–£çiÌõÇÛåå÷lبué}ukÍf%X²rsÈÍ{ø»kik£ÐUWGùlÄæÍh{£¾Êp_¦Ðm›P>«£®NÚ¡Ï:¯ðù"ÿú £HŸüßwùŒ»ç·ó2E¥¢QŠãî¢[ÒvîËü“¦ÚËf‡laô›Fç?jŠó”eVË$´fꪮ1q4sñs³5ó šî…âŠ=žü¦¦¸ŒoÉ—ÑÍYù·á´]ÆÇ“÷åÙÃϹ·?ݽT”UpÊ;×ÇüŽåÞPùõjB³<Žw02`c'‡Ítʼn"ÑV^·‹ªK+›jQ|[/X{m$ÏOn[oÃZp›w”×PûUûÈK`Úf׬ê¦ÎO Bm£ ‡5ÏŽYëót\ÞíÇÇ Z³f¨¥ªøÝXýÖ‡wªØ…š6˜~yl6oþFhš ̓wî|ÎÉIÚfvZ>Í–m – aáA«ùrã('âÁ ™W˜nˆ[Ùqøoî7–Å}Â.íñBQšÖÉaÙùH­]³º(8ì>Ê‘[óZ›p¶]O{mbÉåÖÑŽæ ,WCŽr“Á›òÌ;¾É>ÊŸaÕIÉ#{Öf +¿r}S|âcºy^cöIµ;äÇ‚æ y÷ñ‡jõYZ³86ï˜<‚nâJÕã¯j:Ó|×1ë“÷âœb‚ÖuÔœpGÂ!Þ+š¾Tføìœ<Ç «¡ ¦µ%á«Y·ÆVuŽlÕ‡$«ý;Eåeà”æŒ`݈ º~Ë]“°|ŸO¼‹Š¢‚‚¢ŒJø³Š__k¾ÜôTÛ+./@^|»¨vȽëö"œ“6Ù6w,Ôß;¼‰s®¸[óju 9hš÷Jó8~þt´¡©¦Åè=æ^m£Ô>H4Ïò¨Èß5j‹D »~Þ£‡9f[ÅG?xºî¬”„ý&¶à¹;ϨEÞ¾€ölš6­ØÍ…ü<ï]š¦OGBÛ¡2èèèd £”o£ ú÷Ë2A·µçb;RŽ"êÐmÇ­[wöô· ëI-%Õe—¤8Ä;Êâ'ÍñœÊâ7~³ÍfSE³˜iñ9˜»Î2é„£,çýÆÀôŠÍSH4Í;ÆŸk¨UÆo¤¾P?!÷ó›Ëæôlo›¯ƒ£/¦ÿDìn}j]XíôçŠÇÇE¦.±}ÐÔ™æM¹¶+§‹Ç½#öÃ7¼9'9~T«¥Ý鯬³I{×òƒÕ}/Š”\¦páñù›J³tæ.0¼õ)'lœQCèa¨ù|I_%ðqäæ 9hÞ«ß=¾I{˜ç¹[D)k/VGRQ’_‡_{˜ç™Æ5g¯È~~mœ&­5/<ŸÐÄÍ]Ë·&oãÆkó—×ssŸ¶0Û  ˆ]Ïâ6^ÄDöÔÔs¤.wR&C|×®]S® ²r´ZZ?3Ys꣪¢ôǬ™õa!ä–úР³gUU–=¯x’¶=TŒÕ…Ëc®Úõüñ‹[÷ <è ù ל¢j5)’\|¡%?]5ewbu'šŸyŸ©%bÿSl§šÉ5Ÿ?{ý#Ií²ì•¨‚Š£Ý0“Ö›g}®í´¼*q;+ï‘¢æKùÕïü—ŽíºPKUâ¶Q˜¶_h‡Æ·çnµÉùü½ø¬Þ¡àWuÐÓkÁæ½üÝcß-Á™ïÖÆáÔµ>²°jl’à²å: ©¼gå¶yë')Mz¼µÄÀkŽo©>ZËå%ó¤dgB®›{CÁÉïàŽ=ëôè9¸ô6Gy_m}Ýœü (/ ,11B·¤¬¼Ÿ4GQ““…øFz£–Æ·õ‚hµ´îœ¿|òs‡èZóƇ¼ p·ÊÉ ªëËÊPæþíUˆÄf¬’ò‰WUpÝrsМêžv-mœ‰ŒæÙ%æ[1d,Yòœ“³”…ÅQZZk:o/B«ÜœE~(¿&m§¤gì6ä:ÉSlú¥ v­ùFÛ¡û3)|ξ՜¡W–ÕÅE78; [´ÝiçüO¦1oÆ,¹Â½3rU³ætt 9hÞ×P#4~N=,½CTZlëf9ïG_ÚÔPûùùªãŽ Ö­6©ï¾~¼l³mo;|Üß2¦]EQbÛºí†ÑO+7iW÷ºSÿõóÓÅ36Ê{\Ý2¦]Õ%£²©›Ái5Uw|•Wq0b0,K•ƒ\V2£o5¼IµUSh)Á¦n^XÛÜð*Ú@RDLN^îСCXÛãY•„î…OŠKÄO¼ü£à@sМ:ͱÆÄ˜NËe“êF¥åqüü„ÑìZ8q¬óœñAšjŽòërEùG/ò7Ej2ùŒS¶9”óð>jAí>ÃhNI|_ÎKB¡FÚ(„Ü4úóÍkÔ.vÑŽ,»rZ] ÔdYìR>]ÒóÍAsм/rs- m]“­¡Œ^cÄðÊÍàjád°cð6;´±Z´Í̓ü ,sdÑXÿÙDzÛQBš“GΓ5w‡ëæ ùP_ ®ü4A^¶…"æ©ÅÕ=ÿ`@ø!tàþ‹5ÿùånvý4zt—e±˜Svi hÞo=íÚZXK+6ûÂØfÊ%°ŽŒ8ÛmXì@Ži' 8oÝy(su}€›Ûð_>í8F}iN9PCY¹ŒiÍÿÍ!@ó?¾ª.«ÊšGÝ/*­y}ÅQ€y:îz=hÞç£àŠ—cM%´±N;<Öbè¬vɨÅïÅ:Ñãû‘ò®4o=˜´=ÓHjt Û©h×îǨÍIPƒùæ 9hñö´×|<ºjâ΄*мÏÿ¿5IàlYñ^Á\—Fú2âÕÔ¶\Io g!ìÀõ´“÷=ž<æ&·õfîðÙO¯ýqŒ:hšƒæ 9Ä`×üç—kæÿ›ºûôë y¿ô´Ûíµ·_cÏéÎÙ™x®›GŠ_»Iwë?›5k¢×Þ~~J¸AsÐ4‡€ ½æ?+ïúngŸ£xúCŒ‚ë'ÍÏq' è ¬=¼v0hŽró[t·W™¬[¯*tÚûFPšƒæ ywšSö^øùùºÓú‰3öGÕÁ˜ö~úÿf)e•ÉtÅ›EÊ@z@5-lYæ÷Jì1)×FÝÞ¦°g˜û[ëí„ÍAó¿YsÊk¨!géI3Ç•eVûû*$éе•×±ÄIë¤IßX—ŒÏ¯¢M¶îjøÜýòÐKƒð­Í&qµ}Q. 憃æÝ¿~|J6_Á<}d[Êa-8êã¤Ê´¨Òï=7ÆïÈX-m-äæm몄I^ÓÕš´5§¼†ZÝmu»›„™ÝMʼn»g‰ž-úÙÙ l‡l§ Äýê‹ri 9hÞý{¡õlDÂ×Êà›÷I ÊÓFg£Û¤ Æ›ôY†æÿYó $å­5_§{ô‚¯?ax[P€«¶·'÷õljmJ§æ ù?ÖÓþ‡j¿ÓùÒ8‰E²)eŸÀjÞ}¹´ºúû® «8yo•ß1X:y±¬ûzÐ4‡ÕchßÓNýüÌ{7GÞYl¾zµM4/Œ{Ç2©hÍÚrù‡ë–²¹ ?£}!TÐ4ÿ—4ÿs µß^'I­ÔʨûJ½æ(—Öüá¡ìª+Öñ„ƒŠ}Úû›ƒæ=x/Tº Ã7ÝeãÓO,…Qp}§´rr0wmWG²y±‰J ¼æ„Ò¥ÜVÂjîÜgù /tÐ%, ó04ÍÿMÍ)ª¡Ö²sIŠ‚€å½/¿(Ó¼êÜ6þˆÏM¤ëÈ ()—Fž,ü)Fb¥Ì™ÒFèiÍ{ò^(¿¬ÈÁ­û¬²ðŒ7‡bê§.Þøó~ÐPs*NæÔš”›K F'±¤ÓùRÇjô”c/ï*5'”SYÍK‚[×^o•õê'…ÏK¶ú9þQóÌ›å´Òüþã¯4ÔÜÕõ 5§òÕNæTºîoª¡Ö¼ùeua§çuujÞøÀdÁ´ƒW ^—fãæ,4»ÓØ­ÅÛ› ŽbõÎ<>g¤é›Sךƒæ”¾êoªÍZ`ö„P§â‰ÅüYš™]¬G%Ç´}85š÷úÐäëæ¼—ÄAù&‹ð{]{Á1•šÊ©ÈI ¸uo^fòa¾”’Œœ%”S1Ôü£æ”/óÞçšSŸ×S£9:: 5§òÕNæÔ÷¡ýM5Ôˆû§c÷‡<ûÞÉ ìdL;¡Zã‡,G± ›wKKî–u¼õ‰°Vv#¥åÒêêï;ŠNŸÈo•]~ß~ÇäM¶·áº9hNéÊ® B¬üŸ‰Oòù$?[«á-O›Wð½CIÑëî½~÷ÉÑ{§9•‡&iGš¯·\¿È|•ßqÊ!vsK$ÝË+¹×3ÔôD”R¹æ&©9¯ÂØï ð=‡kŽÈ®C˜“×Èq#»Œ|ô^gè½ùq~ùÐÔdè½ÓÜÁ!†|t—¤Ö¼O^í½Ó¼OÝëw:::Ì7‡ùæý­9äæÔþið^ÿsX²Îz]ï’ë>¸n>mZ©Êÿq·òïö¨œ äæ›Ãê1<ð¢zÚ5ºêiGžiøŠÊ£S£9•‡&iÎéιÛdw/8vs;Gý˜öÇñqRJŒF‡8zZNeè´Òeè4ÔÜÞ>š†šSù’£Fsê_í 9­FÁ]’gçVŠ{^õ*Z‰›]!ùŒiïó? Þk´ïhÅÐNÖ|Oèqú@¦‡Án}UNƴØvÐbðhޱ&†ÃE¼&ÃEܶn 9µ]ç‘þ#q ¾ã¤wè´Ÿ¸‘=Ç@~Õá-#8hšƒæ°zÌß©¹þDWú¦á¿0˜Ffî+"±È\ÕÌ/Bp©ö±æˆò4Æ,tÿc›ü©Æ‹Í|¼@sÐ4Í!`õм÷£]¼f,¾rª8ueÇÍÿU0ÎõVk‘™Nß÷š“A7Úbód<†Í ó}øÊ¢‡-ξ|ðÒC¾–cú,ñý¿í%±9 9hšÃ˜vˆdõм÷+éùŽ °Ú‡ì¶-(°ÌI£ß5Ga¾îX殬¾Áγ+jÇ­ú­ù£ðòÝšïÎßÌÏÍ|m°ò;§Â«<Ð4ÿ74§¼†Ú¯ú—çDwì“•ß¶YÔ émÕç›C 5ˆ¡°z hÞû?ݶ•ÖsšûÕGLI”Vÿmn?çæw1w׫ izJ¶Ñ¼ud;ÕOØðöhšÿšS^C­6UŠs©s!aÏÊ—®K8d.×tv¡†ÄP›oš÷þOãÈ'h%¨¥­…U•÷]9¥fâZÛ~ÎÍÉ×Í‘ælS"9J—u¢ù˯´æ}Û|äù Ð4ÿçzÚÿPCíësõÓ„+§Ô±®±ëæ(Ž,:Âß÷п}OûË{¯ W}ã}w#Æ´ƒæÿšæÕPûúÔ‰{Ë‘¬×Uï®yoå\ãò¨‰Í©­¡ÖøöüÁ­69Ÿ¿ŸÕ;üªzÚAsX=fiîÉ¥µoZñ(Ì/̈Ê) £dÕµÛÌPë¯yj( 6H_m¯ù‹œ×ZÿûÎÙ¿”ƒæ y/þƒ=¤à í65ÔjS¥8–8¾ xZùÂù¤>ù?jN} µo¯B$6cm””O¼ª‚ëæ yf¨•$âÖº“&¬ÑI(jýð§92q¿Þ_…„¿ó¦ÖŸˆ¦#ÜÛ|Xò>;4̓æè_SyCu÷A•æ=¨¡FÓ¾Sp³¨ôžM‚Âú”Œi§¾†1>e(.?ñò;Œ‚Íû Ÿ Óê 4§öOã3^^W&š hÉòøuc@sÐ|j>èç›×ÖdYìR>Ý&±‚ùæ 9¬784÷}¯BÍ-:qÿ hšƒæƒTóÎd'|: pƒæ ù Ñ¼1)áÇŠåã<1¹Ó&ˆˆ ¼æ\¶\s“AsÐ4šC@€æƒRóÆóñ¤ ÓÌž˜JFÂÆ@‚ŽŽõfòäñÃÞ¯Xð644ÍAsÐ4Í{?–ó’4€ù9Œ°xÊ……Û}  è 9hšC@€æC]ó_LL$RÇ{4o¤£ÍßNšD:âÌ·á„úÿ-ÍAsÐ4‡ÍAóçæ+–“HEÿ]I–›£ í>Hü=4Í¿æ*”}ý‹šSTm­ôç©p0Ì~HjžWð½C!zYæI$I}0õt„,Ë‹sèŠ9+H‡fh9ô—9+ÿµóPûMÉÑÑ›z0þ½] µÆâëv{× lݵE`—þéwu4o|ËIBhÇ^)ÉÂì£Ï|¼ï®¾…{ÒJq¬×òûî8% þK„×7OH'ÏL'ÏsÿQž¥»g÷>IYi I ‘qèpÊ âËÆŽ˜(vñS-Mæ›ÿøò¬ °ôG_¹¹ùß2¦}å fÏa<¦«ýuó°šäæÕßh›ÅÜ|ÕP#¬z½Ð,·¦îWSI¦Æâ­AϾµ=õYš³›wør€u è¢c’²§ËˆKÄü(ŠÒ4ÏxßB^e»úü£;fo÷¹_Gܹñ‰óæÝÑërå £ÝwÉÅ¿û9¸éÍAól¾9“'“ Nu€ç¦‘Æ´OuV¸vþÛ£Á´ÓšƒæƒKóVñ‡jõ7Tg. býµü±Å–ñUmO`mÆŽ™šW‰«½Õ?‹;så%¡ÈZãÛXy…¤”VW…«¹?øR/4ic;Í×OÚröã-ÍÙó×´ü<òï~%TRóvºTô}*9YÚÔ9ÝW[ëµuÏâý­t± {·®\ºÏûa#á\Vqòß*¿c°tòbYwâc^_±QkµDñ3ɧTû=ë„vI(()ˆÎ¦Ÿ¢”VšÃZp ù@Æg|jÞUÎ7ÍAóÁ©95ÔŠ2¬D7î”8¨rHqëäñ»«Û÷´È ÀÉìÚ¼qÓ>­#wJkHÏ\~NUû”b‡bý ».›R™ ÄÊ^Úv¡×_M¥Ï^&,-‹>ì—<󮦋‡wYmí÷4ä›Jó‚¬`gÀ Ç>yøÈ–öŸeW]±Ž'TìÓÞÿè:ã®I•b_`vï úIÊŸ` Ãs¡¬äæÿªæ“')è*ÒFsï)ç%æ 9hÞ:(ª¡ÖJØ—ÄØWz?m×Óþíû¥„g¨›ª1ƒë`jsÒZvÉÈàRécOÃÓmÖZog_CŽî35ïTµ½f]tló¨ß  +üÑ]W[kM¹6<“Só+*>®÷ûIj>ÅH¬”9SÚØmÿyã§§ñîÖºj*òÒâ;ÅlSоƒæ ù?ªùtëé²ú²´ÑÜsÚIš®ì šƒæƒLsŠk¨µ<¤¦âªáò9²çß×´;•±‚lü~o —à+òmr˧´|(½i¥ëkmz¥¤Ûal /NˆÌÞìžCºnþ«öÅeGC7ƒXôcwøþ:hHл†.éìªÚZ»¨¾$:u¥1"»öù)6r/zSÁQ¬Þ™ÇçŒ4}[~†Nûâ·Í•Ž/'ìP]äË;i7¹4Íÿ5͘,7” æ®K¼²Ž€æ 9hÞÒoLq µú»ÎšŠröîU´½ôª¢ã ¬Œ]?q±Ä!ÅýömÝ jšú¾š¼OÝM½Øäêßémq¦£zó˜vMûÌ’æ?+œÔ“‘Ü#**oa¯²iŸ¢góåïúûöÛ9¸w»4ߥ¼ÚZû¨¼(Ë'("%/#o¤1o$ëU×Ì’{Ž¢Ó'ò[e—ß·ßÁ1™t þ{Q‚Æï±÷8÷5Ä_“mþUUEÅý’ûDÕ"ž|†Qp ù¿ªùråM8pž¼×(œ/VGƒH­&ÖhÎ52â¬vicûEsGã SÐ4Íÿ¾ùæU[°€ùæ ù¿¨¹€†À 3‰ÝÚ8um¼Öv ÎV”@-vÖm,ÖX«³ëÊ„5TéÍmvMq؈>0`ð‘>ùdgó.į0÷Fíc¬¢¥=~ šƒæ ùZ ª­æ 9-b‡â!‹ÍD^q²X[f¼•$a[ÿx—•X‚¹êX« øÃâý¡¹å Âyù×WµÒüY–\è¥ûyŸçÆ]ˆžl}ìhšƒæCGsÐ4§EȈËðÞÈAH½08§ÕX‘Z#n¼ã¶fvMØñÂý¡¹ vÉ)žöš·Ä“OÎ_>Ë}øÜÙÐ4ÍAsÐ4ï.´¶i-³[¦¥­¥¡­» çÄ€³0ÍuG‡ŒÎ}šÙ^sä;éÓ…ÞqÜí|¸nšƒæ 9hšw–k-ç;ÍoÖd*‚;P=íx¯éÓÏÝè47üìaÈÉããí.%½ÍAsÐ4‡ø 5‡µàú0<{2»Í’ÐÆªkëìÆ¢ÜÜ’˜›cEqîc±Æ Ú:;±®cpý3 ïµ#a§ãU³N5't¶?ÉXf埚ƒæ 9h¹9hÞ]DLïÅÎJìÙƒ³Ù¤Mºn®­©m´”8Cg-ÒO3Ôð^zirIíFÁ©F¦Çä>}øìaèÉpfÛ‹ç!7ÍÿÍ;­¡ö½üÑ?­]Üc×·žoÕYaµ¶'²"hUÅñæÊ¤IÜ:¾O«ëºn„€Í³æ)cSüh³z Þkž ãʼn!]%'ÍS{™“=×Ý=2É)Öînþ¸nšÿ#šwZC­áÙ¹ wŠJ϶Y ¥ÓÂjmN`OŠ uºÐ ¬¾š)ÍïbîÒùÓѤð <÷e>ËQ–4ZÔ^ÍAóÁÜÓþ»†Z§¶vZX­õ ¬ïI4Т¿ß ÜÍû^sV/V)išhŽT9·Ë"Ó4ÍAsr´©¡Ö©­Vku{T­õ“ÿ¬)þTòågÀhNÍ{¡ëˆ y¯ã¤Ê´¨’æ3\gˆ¨)Xð§‰æ·¼Ï®ÍAsмùšu»jÊÍÛVk>tŠ µ~òV…Î;iÎ@ó~ÖüaÞjNåѩѼׇF”§ÎF·Hó¥¦ëÔ·áð{]{ʱ—wJ/GHÇ"i~Ü;•ÁoôgÙ=å8óf9­4û†š»º^ ¡æT¾Ú©ÑœÊC× Ñjþ캰ZË¡{R 4‡4šSÉ1mNæÔš:Ò\g£ñB‹•½p½B”§1f¡[¤yŒwvc¶ ß½4ƒ^pL+Í©Ïë©Ñ†šSùj§FsêûІb µÚª›NXåVµÃ<³êšÇ´·/¬ÖîRVíÖ òðueòqOäuÒšCô«æyßÑ;”½þèÞë÷xŸ½wš÷É¡Oiåä`îÊï1Ÿì9¹G"»¹%’îå•Ü;Ð¥£åô³㧆³?~ù”Bˆod—‘Þë ½w"ç>ûF>ôƒ'ßXs‡òÑ]\’Xó>yÉõNó>9t¯ßéèè0ßróAž›ko¹˜È’Fç7JS[k`rsR˜¯;†>HœÝx“dë²Ó¼î·¼ 7‡ÜüŸÎÍAsˆLóŽkÁ¡Ï4üEåѩѼׇ&_7· {½a_È$ÇÉ ûz*²›Û¹ÞQNÊÍC7Ý¿3ìnŠð¼—Ͻ²Ž,<¹(·°«²£ Všç>ïƒëæfëæçþ ƒiÇ‘$$qbŽíí£i¨9•¯vj4§òР9Ä ˜¡Öù<5ÓNý˜ö¸øŸcðnÓlŠIÐPvòustÚãìnßžsuyΓ§ÏxÏ,·Î´ùwÆ´_™»ÜuŸ¬ò)‹u3¿0Ìt–…1í0¦4‡€Õc@óÞÿîËpÖì¶›xì—Œæä1í¤®ò³îÙ)Ó³ïó<ˆË8ÇÆvóÙí¿Móoշ勞?ìƒÁ{±8%:¾ªªlÕÓ®('m*8çË"« 9hšCüµšWº Ã7ÝeãÓO,mÍûãÿ›¬¶ƒ©ú©<ßü÷…ï—ÏéæÞ›zO6ê€x’äߦyíK•ˆëE_>Ö}¾”|†Ù&-³¨¹ÌÆ| æŠÏîÚóÍAsÐâïÕ¼ü²"·Rì³ÊÂ3JÜŠ©Ÿ@ó~øÿ†`¬c;ŸN«AÍI%Pýó®±_›8ÝþºcÏh&×CÇw¬ÅöìJâ fÃ(ßüî4¯¬<Ö‹ ǘyé>¨¬íåüuÍG‰>UÛKÙ++­4«ý›”s[2±f¯‰hšƒæ©æõ7Õf-0{R‹¶+žXÌŸ¥™Yš÷‹æ‚X3z/ö}Fb4ÔEîùü³‹ÏNð›pú~Lþ“GEAþ%&FEAùy(2½CeÕÛ7;ÆiúEûw§yé£V'£ßÕÜ9Ému"ùsw‰vþ:“Þjþ­újRäÔ¼—ßÚŒiW”( çð”ÍÿyÍ)¯¡ÖEaµ:¨¡185¯JbåøL|’Ï'ùÙ¶ÆVæý¢ù!m܇ ¼6kh«9¡¦yö3¯ÝÞS=X_,b¯å[[® n›¦M+<ŸÐSÍ?ÊØf{Òæþ#G“>ÝhÞpý´Ý‚sï«ÐvÅ{s;ü†~Ðü[ÍíÌ8vûË'¿Ô“FÁ%.^g-y@YVÌ…gbíøe¦›ƒæ”×Pë´±Í „j ù¿¨9 SÅqœ4×EþýG^[ÆOue>wõ©¥ØÍ¥iúô?dèm5ò쎖Ë1ùky¹wUìOt§ymœ¯ß­*âvU”—Ù–»µ}­ù·ªÌäè‰6Ã?בǴ[¯žUD‡ù…^1qnèžýŠpÝ4o¨¡Öu#ÔPƒ =íÐÓÞšïÄéógPÆ¢¹æE~µkV;Z9³º±žˆ=MjD-EA”jþâ±wà± ‰÷¢íg77›EÒRóoU—“N0Û\<ÞB9T]Í»?×Pû£æPC b‚»$Ïέ÷¼êU´7»B2Œ‚ë?Í5µµG¸-à7¦¹æ%&FåŠòh# h¬Ë®Óø'…ÏP j§TóßãâÈÑô®{ÚÕû¸§ý÷ð9Rœ ¬¨ÍAó®‚¢jÔj¨A Í1ÖÄ0À`¸ˆ¯<.â¶uûÍûJs3-¶Ï³œÇÏ$,¬£®N³Ü<È¿víÒvÀxŸ™“—lXZØÓQpÝ´·Ånu2¦¸öœܖ'.÷×(8¨ˆ šÿ!(®¡öGÍ¡†¬ó¯jî$%õ„ƒy¬×ðK¼‹Ÿqq•23£Ú\7ò¨iÚ´b7ÒÝ;Ïr·›¯bu®ž¨ÿèe^·3Ô:KÃÿ¬yCeEB´ç<cꉋ¼`ÿèù Rì^š^Ÿ÷}9/Bí›§hšÿŠk¨uUX­j¨AÀê1ÿ¶æºêêeÌÌ›7Ó»Ïå5ßZÐv) K¿fèÝ”M)L:×4}:ÊÐ cÚ׬FÛÖ¾Ötž XC9½å(‹ÜEù˜q½KÕ©ÏÍkïÝþ1kæ÷M›°ZèöÇìY¨¥5ßi£³I “¶/Fæ¾ä]ȆA‘9§YóF::Ð4Í!`¾9hÞ'šíÜùŒ‹‹„¬VpúRnH»Ü¼›°OJoâ/`ä+¨0#rÆÔpv™ û ½µ â{¤ùÝÜ8Ww^C#&t‹¶I _LuhMy§)6)+G”7„% mÿ˜3»u†‘ã³ DÉÔXX~÷\§yô¾ôËMö`®,ÀÔjÖ¼rsÐ4‡ÍAó¾»n^J¼nN˜ª¶_“Óž3BHˆ†×Íÿ„^w£ QÚG®%=¾$¨6Òc} #Ï©¥(a÷¸å}ùIÊã—O»y†£GÏ·ë]'ƒÞ::¦Ø¤íúØèïÖ“ö)k¬Î(~èû ÖOzö¯K¢D¦„.8nD#›ã¬]r»tvó<ÿþñ§úÄ8âäp‡ëæ 9h«Ç€æ}7¦ÝQZñ2ô«ÿ[:ß’1aéXÔÒ,¯N{˜ç‰Á{Ñãìøµqš„v-m‹x Þs ÎjÏÀjNêuç·ŠóV4H`Q÷ ¼y·àáñ»Qºiúb7rç ¦G™;ÚF¾ë§:\wò¿tê~4‚>-漢«ÓL9Ú¶ñXRT÷ñqÅSR\+¹E —ðpG^OMS[í-zò®šÔE}÷YÎⵚÈíÂÍìÉ<<`ø¿ cüþ0åØmγ-Z_ëJPàÝká>÷þ'4rÈŸšÇ´¯Xþ eå0¦4Í!`õâÓæ|GïPˆ>‰óÑõÙf‰OÝLeeÖÛ ÿþÖÙ¢ŽY†Qu§ckìÄŒ1Ît‹û•÷YÒ4ð>%á±u®>ñ3\ÞŸ¦ÅϼQ3~ÞKoiâ]ÌÝv‘52ë ûWWÜfœ¬˜ìN…|Z| ŒpØqLrœÄà7ŒÞ3<€0 ÚFññam/NŒ!ÜçNµâÙvp›˜¬ÄA ÜAK35oßýºWÖ, qypòè‡øØ¤¦ìÑ $mû¦1f£ÛvÛ4ôË棣7õ |k€æÔÎP+IÄ­aEw'¬ÑI(jý’­¤d¦·‹KWXË’Φ%û……2êµKPÍI”“o½Má×Ñ£Ií4WSÛÖå$—[o£¯Ã{÷"¾ó98R-ÊggGÛ¨åe_ 9hÞIP^C­Ó=Ûœ@¨¡14‡Ü¼ß5ÏLO”=?Îw\|FbkÊCŽe3°¾Bº›wŠ×Ø ƒ÷™çÎnf?°šïÝ׆o´Z(8:ºšÚV”ãptè¶SÊÿ˜b£LÜgË–èU«Ð-9+ÍAóª¡ÖÙžPC 4Í[GF`¦ˆšÈXy2å~!!,¦ÇÍ/§uÜ9îL‹åé°«ÝÓNÍ:ú!Ú}æ y7Ai µÎö„j 9hÞ.âÅ32Ç¥ŸKÉLñb2=nÑ å©gÏn2õYvüÊåLÐ4Í®†Z§{B 5Ð4o7äoî²Ø%}V6%-aI›‚#ÁÉi¿ BÏÇõrÐ4Í;å5ÔºÜj¨A€æ y»Hºš8óp5Ô~}­xm¬zPñ ø– Ûµb^Vtyµ~Í)¯¡†¢ºþCÎñ}óŒ²Ûž@¨¡145§’cÚ>œÍ©ïUè…æ(’3Ó7ûÛò²’µ|9ï[±}è¶Žƒ#ûh À¦%îr?e‘˜œ˜vÅ=$„É4Ê/==!¶h6Îm¡¶ŽŠöÖf,ÎN´‡ÓJsêózj4ïñc,—êÙí64Á™Jë;#O¯Eÿí_©FÞ<ñ à+ÛÖ{‰ÑÌ6„F 4§ò%Gæ}òjÜšS^C­•þ…nK¦Š_¬iw¡†ÄÓ<¯à;z‡’¢×Ý{ýï“£÷Nó>9t¯5¿x¥ðü™º3«ÙF{3œŽ 5>13©ãäì6C'Ä•äØFaié q¥¼8×E͵崳୤(ƒØÍíùwïu†Þ;‘œbɇ¦&CïæÞG.‘Þã F‡‘§ Í#¨Ìÿ÷s÷éÚÊÜUæ „Æn5ï“—\ï4ïÃW{ïÞkƒ®†Ú¯ÆYnª²’Ä·nÇÆ¿®ìx¡†Ä ×¼ãZp›°æ(ÚÛ”ýo£Ôqëa~L¸h'Rcù²¥ìº}`ªo@ «s\4ñº¹š¶ÅäæšéN«µ±Z›÷GnÞªËý€ž+òôõOô¯¾²ÁwûÏ9Šï«¯]ˆœšÿú'äæ0ß‚Æ=íèÃ3 9¦òèÔhN塩Ѽ@CíõE´¡|žé³­§=Ú~+¾µwwõüØQ6óë+ÄQpñ|87.¬ž’Në8g¾¿'£ Vš£ fš›8'_ßhhlÐreœ›Ø8JÇyµ¡©~çWÏ™tžþüÜà´þçŒýo«î^g·¿rºª©Ž²ëæT¾ä¨Ñ¼O^í 9Œi‡1ímssÛrÞe¤í ÀÉΓµœ´QnþÀѾ+ÊýBBXL›_NkÓûŠ︵YWcv¼ƒ°6ŒiïÙEpz{9B»år}[ Cc=c&¼£”Q{ÊåôGë8î22&Œi7_ñs:¢¼âzjÌD›K䋳ÔÆ´ƒæ 9hþ7ižž|±Žƒã‰™ é˜–S”Ç\¾’ØÙþ)AL¦Ç-Z('hWº çÎMÈͱ’X¥×͇¬æªbêXBÍdv¡9­n gç½=¼ήã$Þ nc%Çñ:vòm47‘Ñs¡×qÜmdLš¡Ö2+›>6¶š¡Ö¿óÔ@sÐ4Í•æ(²ÂBê89Q†NÓ¾lié4Ž-ØUó\ç…'GtÓž°¤ùú8)‚ ’Ó~*k[rã-#p«´q𹿸ZfBjê ‡4ìÄ´¤Õ( q†öSuíùt÷õð"8“®•fs‹wó¹u]GT»U¿EŒ@LpuS]C@›¿È)B#¬šC@€æÿžæ(Ò’/=p´/ÐPC·h;5)COZŸÅ›Å윬ÓÍW|ôSrZ­od5OÇi›‘é]§==˜BN¸¾§ ܆úÆfz®Œ:6J°hš°æVRGð|sÞmhýÝÚwYÛMŒ…Ú6"Í;Fjrz¸ðñéÎÓù#×E§ÅˆæXmkN¡›g˯%äøÚFmrO»Ýí4¯±Ú°(ŸiÄ/ô*š0óÌny´ÊrN«fÓ“:œÙ•šûÆé±‡W«ª)£Tô¦þ~Zû-*½érwõŠ"¥ÕFæüº.+ M ŒÍVë:ròEðκ߭8uœ÷ bÍ;yµ7Ä’ÑW¿¾ÚAó~‰ÊXâ$£™¾ô÷þ<ó½&Çb&ñÇYu ù€kn"ØÙ°¦/¯ Ü{Yà^Y-—SëÆ.¶SDÎ* pÔ2Íß{@½m߸°†ý(œ…(Is\ïo¹z®aËjšBH«LDõ\g˜êœµ˜«C‰æm.‚·„Å=k9#c=cS }ÛNsó0q±wS§®›¯XÞ˜”@3Í;¾Ú‘æ-PCÂj¤ý¯š,ÄŒhcVË¡ßßr’Ú±WFJò€0ûhÁ3ﻫoáž´Rëu§ü¾;NI‚ÆáõÍ“ÊÉóÙÉSË)+ÁÖdû"~|ù{ç×Ôõ=𨡈•åWU”¡A†,ŲG@B$!le2QDp[GÕª ­Õ:ê¿U«Uk¨?ûkimS†‚þn|†—Hˆ ç|Î'Ÿ›Ë{ï&—wß7çÜsï){ø¸¢åSqhÞ4¯­Üµmµã…ç*r¸Ö»hŽô‡s?¹_Ú>q÷¸u“&íš¼þ»nŠÕçS]êi§‡Ä–îØ¦.jzèš©|‹Ùy=íTO³Çƒ´×ù"˜»”¨ þÕÚ‡ŸÕ˨Q#BÓˆKó §àôÁÌäè-3ÚlÍîè¸SrìØîú>ÑÃÃÙ5 ¶±ìøºd³=Ñnù؉[L£ÿ%ù¼Gc¦¨5ÔM"@š·§¢äPCZq5ÑÎ?TO‰ˆæõ—éã§$Ü®EFÁ?ß{“åº|‡«çþ眉–ò=ôÄóOøv~k-ˆ’‚­g¢h4—Í#Hál7£\ÊFæÏ/ØÙ„ë/ÿßzÃCžÕ½½^²fAï£9GÙ\¸Òÿ*=1~͆ùfÛÇ|Í›bµ hÎt Y-ÏŒõç©¢†¤É‡®tooÞÜ/}ưÊQ–‘Ë}ܨxEGí5‰Ô"¯qÔÃ:¢p–#Ò냧½›¤k‡„$Ížë4Çà ÙÐäùT*Ñ 5–vxöbÑ׬%DFì\B>na¾sÉ’„¨È.w·ü³ƒ/sŽ^¯õ?WCÒç¥9²Ð%Cs¾»Mó•è¶VJ·§½ãj¯¯Ä›9n¾}WßÚtÝyo±ôž±·ß¯/;ràÔØIÖÿ<ìëwü)2«kÊwÒr}UUb©f£ù<5ëCÿŠ’‚ÿãÕßÈñ›¥©¿âÒË«Ñ3FLõÌmÝ€ŽHë^—•²"˜~d£Kòo6 :½á¿§Ri¸]éZžI_<×ráR¿?§ñ?8ûhÞ›hο\Ÿˆ‚k¬®»y¥dÚŠœô?ß”_Ý;£øÒ}öŽÊ'·²,z)Í‘&Ÿÿ¥ßµÍ¶ß:Ð UÌöÍÛ|zk×МéÁL—Kµcð®ZgÚ…æg† ¤9…e¬U©4a£'{J<Ð׿Îg2÷g;EúyeÌV¯SÒKñoõˇ²¬¨mÀíOeXÒ³d™qK…äy› w̬‹æë(”ÊÊGþÑÀ½¾PQA58 ÇZm)vú²þÕѤsHñ‹>,CSP\ÏÝÞŒý•]‰uÛJi¤¹9Ôª¯¤é%\}Qy˜˜æˆ¿¿l õ°·´²˜¿„±þj7]ZÝË£A!'þA&öVfáã×q,R 6Bt¾{þC3so5ýì“üô:ÏŒvSÅÝÍÞ†êƒHýÕGôÿ ËÚFt:CµgÜÔ''\…>ÉË{›˜1;o7ÍÁ6ï1íuµ»òlnTæ‰"ŒŽë54GºgÞ¹_H×hVG¼6ïrÚë?të0£=Fé'²JJßáA£ÛÙ16.¶·§ÑDBùRfæàд!m6 ¡3â4C3-!bÚ}W©× Ñ)vh.Å鬲úfo{½- ÒÜàÛêŸO%b65jDØ* eDEV9Bù~¬•Ÿ«¨ÄGEGÐÝî&QsÕÓ5òÔ“§ÑÜê“n«“š>û`›J6¦½õnoÀjþJ©¢¹P9Ôª-—›Nöññš§Bjq¶²©ÍSñí?W¯=¬`_¡þÏ3Ác´üÏ´­ÏOÆFŸ¬¸•³ÿ?Í‚¯/R 6è¬}öÍR#í}ߦ۩zj¦™gîWVþû°ÈPñãEˆOÇ7Ôøì^Inrêëîbïœö}y3Ðh.yš×6–ýz\?vuòÍÄSн‘æ[S¿;;øç|Wö«?í›±¬"…˜µãóü‡UÛ<΄eÀÅk–›Ûs%¥2-­óÓ§£× %%T#ÊCÉ!YÃð(Gâ’5˜@¸B­äUöŒá¯‡èa(çxݳ' »3Û)ÂÏ+ÙæÊúŒ Vß8?‘¨ôlÛ<Þ…*.ÍyË1ÅM‚£r²éÞ]dò£Q£Zk¢c–/_ÌXlÅ2$o°Vš–Eˆ…¯ûò]ÚûSÌv# }³iôû6ûÿ=&AšÞí¨ jü"š‹žC­J€m^uØLÕdãŸì)øÊûiS´}¿ÿà´¯¸ÈŠ(HŽ?õ´Ý06QR°~¼¦‡Û˜‘n¥|¸‘ÖœtiTø7Bv݃nª˜]ÐéxBÉ]÷’—ìjÊ ôÕ«šÍ{ 5Ù•ë~|ZU÷¾Ðœ‹rî\9V>xútÜÞ#6y»”VÆÉ¬6°qðð«6©*~ee…Ñ•+”•…²Ðñ‹Ñ²,[©1+,WG@2—Ò}¥em覶ãlò¶?1Rî‰ôvˆö!'†z›+gšQyæyrL–YP˜;»¶ï-'œGåPÏìÕKõi¾£Ô²gÊä”)81i¢}°ÃZ›/ö[˜ž‚€^>räÛA È*oN¸_Œ´cž®ùhÞþ}!syëõééž¶úÏ…KÁÖú–oÞ<ÓiôpÖÏ/o¤ÛiŒ˜ŸvEà¼yÕõ"Oc3G7_ßØà‰Ÿ¡ï’sáéu‚Ó›ËKWóôCîOµœ¯©:iqP…âåºÄ‰öÕ4‡Ýcº@ œOñ†½ñÇ´{†„›„E_éàI_ÌïíJgÐ{ÍSÉä EÅ{g¾ø½>STD5í=Îxz¥,ʱ¥…ÿ¿~bàØ”¥ ‚uMÂGȬßoÃÐϵ3FêÅê9/ÓvìF''d-Zï´>ÇcÍ*Û-çýÌš·óŸ#Íó§ |?=êGô«•QM‡éÑæ@sPPqƺÉ_6Ô´¯miþò;ІvÀᲪÇ´5(gžõ-šß¸[ºf­Ax¸,zEei¦yV¡¤Ä;o¾ÛÒ²BI9eq\ØÂ°ÅÞ‹µSµåóåǧ7H3°‹·ó ÷K2ÞFÎÁŽGeT# Ç798ü¡¦öv‡_oc#¤oœß*G(ß6oVƒÊÏ””0 =Ä;d¥ãÊd«äDËÄhëèà!KÝ–j$éÈWëW(#»IY~Öˆœ©¦1““ªÚ°<¼–GÆEã¼åíÌ›c@G–8:ø¸…9zmß*—,͹w;¢yûw;ÐhÚi^‘6nrÂ:v¼Ç¤Iãèêûͯß)i»$ ÷š#Éts«PVFúùéÓhj¢r&OL{²Kòº¹ëV}¹ŠB¦èÅé)ä+ Ú 7-ZoZ³•fÈ$Þ­uˆ¹$«C”98àB»ùNèdzÑÊ꾺ú‡}âiÞ4ª;5ÞÈWc›@£0£Q)£d dóµWiO]¡ïìæfíï±Ê ÇÝ3ŒDi3o.„·\Ð$x'T²w;¢yûw;ÐhÚi^]j9Ì䫜‹¼Øg¢js¸ºïÐ<'WGsd³H3Í‘„ÓhEööGŒ‹¯7÷Š/ú²èÛ‘ßžP=Á2É ³ŒÒ˜7#Ò@1oè€M×+jäjèféê­Ò3N6¶J´²³'Ç’Ý¢Ü|Â}CoR­üåÍýI7µU}h>\õ ötc ßn>nÑ{4û;°6éî°õ§Æ:N³ÓI´Öb™«¥š(eLN¡ÃRì í ý ¨e©MJ˜äHéå«ã@wXÈ\è⌨Ýá¼yç¼åâ¨dïvŒæ‚îv 9дќ”L"Å‘Hr$R,§Ë)ÇqÊßíâÜí<¶¹!Øæx>‡ZÕaÓCM½ü|ü9JÏÅtlZ¸$hÕ—$.ã.â/¸×ºC>a%((Žæíüæ‚;é«®päAõï´ÕýN÷¥(¸wKq4ÿõÞ1 ¹¨(碖·Ü¾6/ípK4!¯ÜpóÂwó|‹·¡!Í樌j¤áG”8w;FsAw;äP*‡šà­Q>4-J4«Áî+ Ÿ2¦ýMÍÓc¡s†¡·Cç„—>ík+Ô8Q¾†œ˜vÃ÷ŽJϳý“4½z•²¨¼—zU˜Б=ÞΖh"\¹¾ºñXÉ›5«Ñ«V¹tÒ»Û91ííÝí0oÎÕr¨¡·ƒ†¨Ëä´Í#ö—×á;°^”$h@sЮ§y÷ÌIùzs)lZš[‡õæ=ŸæçPk¼¿3§à轿Ÿ¾¼³®«b^Tö¶mŠ”÷âïjÿ~öôÕ;•€3 9Ðh<…nš ¡BåPãÑÚ'[ UmKªÛv HIÐx/Γ蜠p4šͧÐí@óTèjïš>$¦izz!hüŒ”ëM¸% д«cÚæ€hh.=4:‡Ú‹;þÞ>^^Î6vAÅw+ëø;P¸$h—aáë˰v÷Þ%¨šƒŠÓ4¬@ë@siŒ‚ça ÄO;Ðx Ý4šƒ‚vÍI<4¬@ë@s 9Ðls 9ðºh4šͧÐí@óî¤ù{ÁךƒBL;Ðx Ý4ï-4t 9(Ä´ͧÐí@óONs\^€O«@sPð´ÍæÐí@óî£9W°·Ì}‹;€°Ì{n[ û2Ôе9ÔxµåÕÝë·ž4‹ò­k¿÷œºðð'\cÞòòÞÿ`{X 9а­Í{+ÍqÆ¡\˜WþãXèø|ûïÅ}IÞÎnÌâ å"Ñü“ïÿöö¯“yÁ®îAi¥¿ýÛ XšÍ+Ð:мwÚæÒ\;ˆæ¼@Çš®køý»MžËX¯?áäd©¸žKgïêf¼¡$›Jñó£xPw–U¾Sûêbìâëëíëbë²å^e]ÓmÖž•ÀÚ—*om`X¶î×ps]pëîp×,*ÉEGöÓpôõð\æ½ÐÌØmÓo/°Î|óäǽIþ^~‘[Ï?jl8Íæ€hhÞ4¿)ŠÏ›z×Û±Á•ùh®j¾ùAsÛ|÷âb¾óÌ9…WŸTá,nù¹©gÿ¬ãæòÝ®3ýNüÃɧÖTq9\wrÌå"Û\ÐÎíü×D5 Ó²îW×½SóW¡Áç‹×ðögý_×6SfÏ ç_y Žwˆio;ðoÞm‘àóMÌÖÅ¡¹˜M‹ùÝ{u·Kð‹Ks·‹Cs v;ItÁ{Ú;„u;´;o^û϶YŸ/:VCе5w¾ÉYîæEÏ<~÷Y‹ÿyõ±²¸Ïþ1ëÊþJáh.$÷ßUÝ;“âíñ͵ª #Ä´ó1P’=]š‹og‰s…^ÝíüâÒÜíâÐ\‚ÝN⥪Òm1íÈ ®¸ÄÐÑKæË¡Æ£Måg·Åø„l½ÕDDÞÆ›Iú“C/½Äò¶ÔÔ?ެìêãöj³Šž4r*›ªß4¾®;ã®e´¡¼mÂÿ–6Q^Dš7Ý/¢{1 Nݯ;xÚ .{÷a3¡\íôO÷NñOÒzçhþIšîôwïÝ.Á/.ÍÝÞ9šK¼ÛÅ¡¹(aäÂæPã¢<ÅÝÎÉÝÙÆÊ'ÿ·WuÿjøãL »Îò;×qÿôê÷ƒÑ®ŽÎ>¾>ÁÁÌ´]—«_·TœË$ϵuñô÷÷¥,‹Ùÿ ò}íí3k²«‡ ÙÕösÒ0 fá©|×là̰£¿†ný­êv!óC¹P4ïxàƒmF"Øæ`›w©m^&ŠÀ^p @óÎÑýx–àJÌÖÅ¡¹˜M‹ùÝ{u·Kð‹Ks·‹Cs v;×6GCµÃér*•ÚyÛü=l8 Ó1íUÝ1ííÌ›·t.Êæ Ó4¬@ë@óžLóv€Ž¡h 1í@sÀ ´4ïá4':/Êæ àišV u yϧ9è8”ÍAæ@sÀ ´4ï4Ç€Îr 9(ÐhXÖæ½…æHQ4šwz/8 9`Zšw?Í?ñî1@sP°Íæ€hhÞ•4ïô>í@sP)§9H‘Þõ°â€ö4š òba‰†¹!( î£KJÞÝæ@sОIs‘†˜ š£¿òÒ+÷1Á¥Kî«_D‚‚£¹ Q4ÅÑ\¤!FHsæ8?Ф«i.èy‚ããþýûcccKKKæ ÒIó›¢!Í1ÊÍA@@º‚æ„^>"ˆ3fÈ!¡¡¡@sPé¤y'„å@s®£9ÿS…'ór)™L611™íÿSÛ9± endstream endobj 454 0 obj <> stream xÚíÁ1 þ©g O þ½­ìÉ endstream endobj 461 0 obj <> stream xÚµZÉŽ#7 ½÷WÔ´Fû4 ¸ÛvÜô-È)@rùÿK$J¤(©ÊvÌx\®’Ä|dÜþÚäöÓ‹œ¾UþWnjS!ˆàÂæµ1Æíï/ÿ¼OÛÜ2)µŸÚKañÁ·Ÿ¿+½]þ~ù5ÿ9¢ñŠD^•÷Ï—o7ë¶$’×ÞnŸn¸>8¡ÜæR)lŸß·ßÞ¤ÔAJ{Ο(¥óùcN1ß¶þôªÌWÊJ)où;/Pï§ß?YeUIDm擵LöVŽ‚SÛq65zù‰sýºÐ—\œXþ´=INç_…gÝVå3òßå\y;½c ·º¨‘Xð+µsÜr×?æ—ö(/¼5FlÙ–O^dS9Ø<½†·þ4ã/Nö6¦P)#+ ˆ©l¸÷FY+»º U¥;š*QÚ¶lŠßàCJŠ$óp"‘]¡ÜGá£ßœw«w–ñè /Eî¢W¸Ï. $º–õMö ,U»ú¦ G+ŠLw4^U?9n¤¾â]P‰N­X.ð_éœa×­™ÉÒY³¬;aG¾s®´ªqú À?ó+iƒÄ`îûC7QÜ‚FË×±…ð¨$ð=Ù”Û›ZΕ*ØÊˆu†gÅ3Ôdt§DRÝè“›QÔšæ"®K…w0€†°ÈÁм¤æ!eØvôùä@?—ã †Ú1•@$ •/eV Ê •êþ¸Óˆ,UŒbKÎÁ ìQŸÞX@ðÀ¨|S~î•ìã1ͬúBŽw=YÞháu¢ü™0Ÿ%µŸpwWõð„%ˆ¦ygŽÀÏ·[cBÂê£ÐQÍìIÊÇÜzBð©_›÷ú<“ê£ß3ºí}§ŒZɯùõ£S2¥™ðŽž.Z¤L_=ºùEJ#&‡ºç½?é' ÁUï0cZóÈ”{Y!CHô㬠zˆä¥˜ííÅMÖ·Õ3ÑÿÂâå~°GsÛ(\ y”×Ýç^û ÚŒùQîmó ôOŸîskœ~UVO]”øë/t¾šsg<æ‡5;ÝÃŒÞá†Hir!›‘pHTXÌp ys _CVW¡š¢BwkÉ'Ћe‰ã#¢¤ÚStêkg(ù•Æ™ÿ*j!Þ:§m§E\fwéòšB)›G1øÂƒS8Q /^鮿4ze¡@%paÜ .p‹oõµªUb[^Jˆ^hK6®{Ðy܃<Î5^T8ÏðŒÛ…gõ„šS`ø¯}Jav0°CŠr'If#„ZïÛ±¿éÀÀ λ}C=Î1 (Å(%¢ßµHkHÓ4mi\÷j‚ ¹&G5rÈ fFD˜ga3—ÜGØ=Óµ=ù˜’×ó5ÙɱU’å„Ö^Á¦o÷¨ß:Çs-°kY²jpÎ:–¤VT=(…7|8zmþqžÍêf¶ªñB·IÎÔdð!PÙÜW||cwácJ¼W2!P1GsJAã•¶ 2™‘nM£ÄoM=­ïlù öËtRjž·½þò\Ÿ±W£¿Smì噸Û顊•¥p¸ñµr>3ÇgÐ+£tg|¦µÍ±bó·Ê}€–hº$ùùdÓòN8èçžœ¥Ù^_W½N°,ûÔ$(_F7z’Ê’#v3{à )Þ£›ÍÙ£.ÖîfU»t±´v¨èöîÌ Ù±ûì\Œ¼•?XoZæ`P€Ž­üB!²X›T}†vnÈ®Åù¨“9[@¹-2îäMÍ4ˆÚ'ÃG#œÃÏæhn–+ÝlÑ3O&zn׺(;;² l6Ɖ‡Þ=®nK;‡rÞÙí~ÿ”pA-Ûÿçþ“  £&¦™ƒêÀzo8C÷2·Ã,UÊ ï·Dzhrô<ªšËFE‰¯ ñ™óGéÊ>en›ûfŸÛۆÒu¬öÂþMñÑ­>CA÷__"[”jèyæEôŒ…íKf!¾qˆjùXæ(EbvøBDkœ‚eнù9Q[3Nú¬qlçå£ÿ •Ó:;ÌÈ9bô”Eìü¾à@Âe.y$÷‘C’Øs0³ÜñHÚêd)˜iÞ*Ó‚è÷1zÉ`Öu’‹"Ó¢È4ÔCDçò°3K‹>ïˆ/¸û¸2¦]m§]m7¤¦S¯¬ëNƒ ®wX+aãHžÁæiªÔ Üx¼¥=Ÿ&NÆ©yb3-0^˽ÎE›}Õ„Í•ÕÙsèeªE¬NlJJ¯Ö µîú+?:÷&¹ì¥åìÛá„›m"h³lÕ¬ÞïÌàµS¸ûFnðOIæ§J £W ý×óS&½N¹È…c"I"½tGc»*ݽe]1ÇgÇ›-ÛuÜß—¶N0]T‰#|A8ä|¾h¡ã×€J'a\ä…o,CƒÒTrïÜX²î7/9PÐÇ…Ó”ÚñJ¶3o¹>Õ^í¿.Ûï…yÂÆ:7Ä@83¢·ƒç`åòúôñDÈ{Ï((B±é¥ÞQ+¬“.wÂQ‰d¨ª”)œR»s»þ/é… endstream endobj 443 0 obj <> stream xÚìXS]ǯ­ HˆJ«˜Ø6‚ˆ]Š"¡tK (Hw£bb ˆ¨(6*(˜€b£‚¢äÆH¿» Œm¬7ð½ÏÿÙsw¶Ý÷ܳ{îï¾§^ 6Ø`ƒ 6Ø:üVõ·@ PÐ@  9@  9@ nÓ¼"^YxÞ™ Îgk†¸¯N|j-UýÄß*àQ5T4P¯ÿH…ý#4']Ïܧyç{~šw‚2ìˆ"Oǫ̀Q 9ÄFš£Wo«aï-®dÖ/lòƒ·>>ÄÄmd¡‹ð¨®Iß«¹}_¢x¦¼º90h×ß íÆY¤9ÅÜÒ ì(ä1’ë.”Ö‘%b¿Ÿ^3eͱo5œý§Ð‹eˆíƒ–¥WýÈj•ÊÂ;îÌZuŽTD5™;W8>¨iüWra…ÔÌðüj>B'sÐÔ¡iNíêe Íé9[hÞøýÚâo÷Ã×K ©}ÿ›¼ŒBsV¡Üñi~tÉ`¥ð7˜V‰¸'{ÆIj&6pøŸ8YzðÊ„o•‰µŸãW ”ž".À_Ü9¼@rá™b&±_¢§ NÉ'>çÔ~ŒU—P;öáO=Ðâ#šSl÷®}wÊZE¶7z Á«½o–Õ²X[q•OB7)ôC'0lñ˱B-,~néç2s?Ç~‰š:pÅEl£¡píI¢]PŸ]l¢vÔ£Ê:òsš`»{Ä]ñç6r•Ïã\« œN± ر[sâÀîè}†.Ú™úæþ~EÉžø²¹Úÿi)îo;?gCþÛ@W›Ÿzx•¡¡µûá[ïk2ÊéÍ?¬)|vÆßÉïÜ[{ÄÜz_ÚÀò—á?«êm‚õ¼!‚ø±É#Ò¿ÓA™âGÆ™ÞƵ¸D+R´dœ^V¶ó'V?4•aó ‹ÿô×Ç3Q7‰ô/}f7BÞ<­šžsŸ¾oÉÀ)¾/ê )uÙ{&\´?j £mÏ_8ã-Wê ]Uð•¨éç¸êWGÌæHõBî2 =oüa²ˆ¾$,—R=ôŽðüíòò>HïÅI?ðýþ9GrYÂ7íŠFŧXOÙP°4iN­B5ŸÂ8óK†öA¿ ¤°)¢ñÖulšcî#®ê~9¿´øgæÞ2’ÚW¾5°Bóò[fr¢ó½¯Vü,¼¹GE€¼]š5×ï8ˆi^vÃDFDÕóza9ÁˆŒÉŸdçØ[týsiyÕçw%¡±îOë8á›S)CB„—ú\ùXR^ý%ÕkFo¤ô*ÿ”Oo…'x>¯kççlÈ?9Í+sb¬‚’_–W–•¿J ´rˆÍ+ÿK=ôÃÚÜý¶ö3¿–üª.-ÎI‰=󲆭4§çd+S7 ’Ú—]X‹ûþñz ‰u –Ž<üz>WrQÜ×&¹æí!ÉEÇð-<íü‰e)[d¦F¾CýúŠw~D-B¹Pý*bšŒvêOúÎ=®ð¾ÉPiÝ»¥Uë¾ßЖj~§ð|ûWŽpë~±.ˆèª°;ß±•­Š´âîŽá"s]/},-)É:ìèx ËdáÊ/¯—ŠoNÇܳ£°Xa¤Ùýô¬ßL–^ŸT^×þ?E­âS®§l(Xê4o¯T ÏK‚„¬Þòœ/&g~ï' Ô±úÍ?·¹‹VÝ76Ö5×ÈÊÏ‘Ód7_ñЛ\uWWvŒsNã˲]äû°‹æµ%ßÓ£6J ©Æ;Uw¶ÊŒÞ™SI24JVïFUkCý&‡}nìÅý<9KTý|úÍ©•!>“šZ,ëqÅ'g N ýÜüv–!?´~ÎŽü“Ѽ.ïƒk|ac7(¦0ÁÅñhNõôfš¿>do~íÉ›Rl%Kã+(•!'‹»­-9h™ƒÏ%NQÙ‰DèÔWÕdÙ+ Ý~¿¬ÕÕEù_¨+¼´BfÉÙ¯ ¸§žc…Dfíû€mø»Xfù¥8z/Ýêܨâj‡ÞÕ¾˜;`Fô; =WÍûŽó}_M^#ªîêÉvÌ®le”É"*»¾}èä€W¿ÞúÏTr¿ì>uz@ö/Ü÷±²Ûo‘?$Sü§¨U|Êõ”å‚¥qQµ[ªø᤬–縎–Õ¿Y(upß¼"A­{ë ÑEõ,KíÏ óEçž,mz[7[˜eš7g®ÿˆe;¾US44GlÁy†ØÔ8@©0©”!µ °øsi^ý$ÐÚÿ!é ÷ØÏ:ø1Íô&§¾¶ø}ê‘àÝ;L wøžÈ,Âüe«oN×ÉÖ|}¢«¦0°'ÒeàL£3ïËé<ýº)rZ7Šqë ¯l”]O׿Pùý˜Êˆ­×JžØgsÚn‚¢Ï‹²›[F¨)ª¥ÿÜqeɤF™0*±±µŸËÀ_WNáÊ™/Ö¢ °VD%Y–#ƹf~;·l²eZé“ KO}Ͱ!ož…¡õ´Ì åŠO¹ž²¥`™¬ø9n@P‡¦yÕ½mÃ&y¿«bÛX¬ª;:-ÑÑç^ ¾¹H‹[Ó†pmžùetÉ}sj€`KÚ-C:iÎèÏÍ?ÍkÛøàGð>8µô¶£à*??=â`ó²–+4§x²ʳãuei¦TÒYµŸ/¬–UÙ—Wó.lŽÜÚä"ÿ¯÷!³'Z19Ùóye¶û”q–'wL˜þúCçŽ{²g4ZIGíyQNç_/B ßôøæLQí3§q£ "´'mº\ÔPœ¸aÂßMr .™µõtÑœZŧVOÙS°LÕGðÍA´ß<Ýuüàù»òŠÊêË?<=ëªmzÃJ¿yÙ YQu¿›ß1%ßïx© ’·©V^[;hŒóó ‹0ý[zÝPZx¾Wê7LÉ·[ª"ÒF·~ÐsÛaWÚ-C:iÎèÏÍ?y¿9öåI{ËàËÙU¯.YÙŸ|Uö—z:é‡5Ù'Ž$=*(­ø]ùåù1GÛÜ 9ÙÉb®ou;ó² ¤¾,7q›ì tÓ=‘Ç6cFí79n磺ÿ…¿¸§ã„ÄD¦„äUü­Êž*,.<Öóe9G¯²³¦zåTܵ‘™»+9¿¬´äÉa''|¿9óETõ"`’  °òɯ•k?›#Ðµçø€Wé£9µŠO­ž²½`é¯P„æ¾¾Y½ë£>@Öô.ô›ƒ:Øöúωn+ðCN‘>ÃÔ­Ïæü¤s•ùæ8lfІт„Ã-"ÓŽî4”Ütž)‚oþbuŽû8Xk‚0Þ´Èx­ðtl]·&2Ðî|sŠeH/Íü9£ùo;¦½æãµCî–ø±éVn‡n¼­iÓN1ôÃìû‡§üŒÑMƒN?/Ær¡¥ìdJ5™+Ý_Prª–‰ù Ô”š·GTû }TŽåcÿÒý/ü­/Ͳ”î90B¬“>µ§´y–ms)%;kêW®:çñÌÁݤ»ìbï;ø1í,&?JQp,Ñ«­Èó% Ô<ͼ}šS©øÔê)Û –þ ÕjL{ßÑša¤,@|JsÁÄsЀæ OiNq {rÔ— ±’1~¾<Ú®ëÊo—.§Ë¡¹ñÊ._]9(«ôähß@ Ð@ Ð@ –æ°Ál°Á[‡Þà‘@ økr ¿µiŠo¾6Zºô‚ÿ%cë«ʲNZ¨ÈõB„ǯõÍøIŒ…ýqÙz¶8š8`¶mÒÏòÃ6”f7U–Á/9ÕwøBÛäÏjÇGÓÿü¸¸v¬(ãQ¹ÿÖwاKSì¡þÌ¡s Š€YÏå››µ)Õeì³}k†õD^òkcrKÿÖÝÙ&-¥s¥¢Ž7€£´¤dWÕû랦ËàϨû€ñË­c_PXà‘½4gKIRŽOÇŽ?… hÚ—s`‰ˆÐJÁ¿*sN( ê†¡Û %ýSoÊ`Œ¡Ä²ÜÆHh]ýŽîcR µ\N>ýò³òÓ5åþC,Óðë–¦èJÉêÇçU|8£/+¥{ãÙ°×Ͷû^z_R^]q|£ä@Í«•TŽÿ·:ïÐQ¹{Ÿ–50‘Á™>·Òc gÁÜ:Á¿ÖùúSè?>œéÌ'åF!'”oþmêråµuƒä-Ó óïZËÚpµô•¯¢Øì}ï0<9©Nè~Ö~½ª++6Ë*öA^¶¼êÛ‹»‡l6^Æpžæl,I¶ÿ/”AC¦ºï÷í¦)8kn¢Õ›¢1@F/áMQMIö}™k.cá1¾¾ªêÉP9Ãô ²ôÊ‹/KD¯ºêFò Ä0Cå9®cäMïVS6«+z§#¯`û°†Êñë²ÝÆ\‘T„cêz®}„%= Ü?ùèÕ)GGЦR;ÌúçQÞv‡Ö¸m]þymí@<Í?§ÙÈZ{âôúAÃÌoãø¨ñ¹ôÍA­ BèÙõ›°%æ-¶ñkBã-Wê ]UÐïc .XÌ•@ý´îRóo}ÃòÏå]Ÿç7UbÅ…ÂJÊ'«| ^[JÞònSÔ6\ùeM™q®b•ûÖÕ™†ž_Où5ᯚÑökl¦2¸+‚ŒÙû¡‚þ’¤¯Ä¨#£YýËÀ?Ò šÖé˜/ÇÖŒ_õîÃÅË)*º¹YrôÎǵä-!÷\&H¬Šûô}ŽJ\ 6çx !½$v΀Eñêm2½g¸=¯ z|LÒb‘a¶( £ÿ²ô—{E•Œœ…`ßn-O„‰#tà†Ó޳âë`bô ¼â8óCês¡Úÿ‚VÉnHWü‡Cæ[ÿ@à …ºŒyµJ«eȪàXk…ê'?óŒ†mÛ‡K>DÌQ°¿’WöáâŽ1ýçìÍûMøZWdèö™%•ø§úß_/õ߬¯Õ¥¹‰Û†°~À?7vÌ¥¥g¤¨Üâ<ÿéƒÔN˼:oÿ\™ÕgòËð'¨àxõMÙÇd‡q¤³îÖmÒÎ˯*Š_œøo Œáí*ÆÉÛ)1ÅÈhVéÿGZ‚¦¥cX™î2WÑâöÊÚ'vSSl(~æ®Ø“pb=•v?¯ø7§­|䬦Âü·rÐÄ ×­ó*²"—HŽÐûVCå@ÑPû6i× ±É^Ïêê)“¨Þ§¯JðƒOدwƒUEF8dÔ2p"]‡îÄ_“ø;”¸Ó§¯ø8L ¡C»¨›æô¿òO§ÏiNÇ£NmiñóSÖúOòz^G».×|ˆ]2`´Í± |7zÏaûsJy4Ÿ¾ÿž†•…”Ä—'Û¨…”b¾5!{yEŸu£‹êÙ ¾¤y3a[F «û~s«ôÈ÷«ë«ªYcû K8AÅÆ³þÖâ¬ûÏ>VLÏP7G„æiRðÍÛ+1ÅÈhVéüGÈ@CÒï/±['/Ûÿ{uµÔ| 4¯ÏõV”œò0¿²à^ˆÚài¾/êþÅèøô/Cb +œýµEa6”¤ùªˆÝ|üK•Ö9j-íøgªŸ'f‰-Œ' ¹!;~õC“1ªÄ W|r–˜úyFê]4ÿ&CD»"=ÖåâOÑ#tPšwîyˆÂ7§OûÍ[ÖÊÇfŠÀM£.ãî›ôßÉSk‘Þ×_­äšÏ @ó–_Ã&/0)ðS5?^Þõ¯}&K¬Jü†k{ޤú¼€‹bó?]Ô_rìýïFø6!ò …³n·#›vfŠ%F£Í*=ÿH[ÐÐjXhô6AMlNJNÍîD `¶¥½:'lšøÒ¸Ï¤VŽ??®»(ö²ùD«.½ºURVÿÂÌdzú²’:×ÛŒ‚»iïxø~¦û.y÷t‘ñ{žÖQ9þß²k†Ôƒ TÁª¢c\2ò͇¸ ùß"Úé2xw~ºÏè:®oþ/´´óm¿9 »<ï=o÷’À`óœ¦ s#ÔJju¹úõþ¹¢S|ž—¶ìF_…ç4ÿ…oiç˜ò¶üã%û±Â³£ó~µùÚï/G‹Hn:˜Q‚ùñ骗ŽÉ ‚Ë¿¸QbÀ<»sÞUVUÖ—}Èð×—,:<êóêÈȯњ¬`þ¨¢±º"cñgýé²Ã8 gÍ"Í)–bd4«íþ#”AÃȼšLëábjá¾à¾=_ :Üî_ë7'¿ùÔ=wQX—òGõ¡H)æ;þ¡ [”d9S Oϙ։E5ä…ü§ø~”Ö8ü@•ž3õ÷½ªÀQ;>z¨âkö*ƒ» H¯a˽34˜M²{«Ì1q„NÐoÞùf¨ñó˜övŸøä¿ <¦½ñjjU+)ÔeÔ»©¸¶UJrË ´6µèFÎæ}K;~ÜMãúág¿Žß¼Ÿ4 ®õ×°?®8-†Ÿ&>ÓðÄóŸü5Ûû*qçʉ{þ‹A“WÛŸË!Ÿ¡VŸç7¹Kåýx6x¥»u*zOí1L#Œ4 Ž]4§RbT‹‘Ѭ¶ûP Å“¢zÖµ_ï¸.Ãwœ÷”[èr÷{å?†rvÞ|x:—äœpÍ'ƒ¯þ)šw¬5a‚¬Úw‡7.pΪè3õ:PVÿ¡iæÿÄýþDпs…@!t<5z©" £[Œ9äODv ¬vÞao°Ál°ÁD]AÜøñ±r¹‚\±¨¿¬Ý1ÚÍÄàþ¹‚\A®:Íÿ2²ÍA ¶öŒÏïCì¶QWÚ ÅÂIñÐ4R¢˜+îe•‘ˆ9\Ì¥ˆ<<ÏU£Èc:ð8WôÆIag®è¢9¥HItæŠÍ hÓœ›m˜` lñƒ-®Ì)E&#m¢®´Š…ƒj48!\7M«”(劋¥D3bÏrE9"¯sõ·žRL^çŠfœåŠšSŒ”Do®(ÒÈ…˜<ÏÍ8)ÊUû4§)‰î\µ¥9åÄ­-Ð[Òý&'n¡ïØ` lñÜ7î*˜DD!_Û™ÞÅÛ9á„6šÆ÷ÙqÙ4ÍR¢+ž”¥ˆ9¼ÌUÛˆ<¼Î嘥9‚ vIŸR,%й"Käb®¨GÌán®(Fäáy®(>’ñÍ?Ƚ²úKGXŠ‘’èÌUË{=ÐlÍÙCs¦ÖˆàÆ]r¹‚\qàÈôМ•\1½z ¿Ý±š,Ì.:pÙo©×ö€@s 9ä r¹úhÎÐú¬Ü±id€sthûCN“ˆâsˆzm4g蘌 ÂãË%é!W+Èk›‹«]q WŒ–Î["ÛiNÃkf;Í9g‹¡ÕÉ: Í]­CÓœ]ÏsÿðpÚ«©×xh‡çÎÛbÿg­óöÄu/ÛÓþ‚ƒž;qx[Ë&ÿÓ¼øætšàèyqˆæ\xrhùl@ñ•Ñ'ÞÒ<1ñ/ïohiðÐ:Ï·ÅþÏZçí‰#ûîTjöž;ñÞEg3;C4gôÄ;\Ë-—Ï‹kýælj6†ž%˜£9Ù~ËW&lÍ+`hþïÐ¼í­’Ú=–õQUíºÿµÕ9΋9ÇhÎPË}û­¡ ¨C¥y;_@~Ì6ÐhN“¤è%BÛÛèl` ÍéùÁ7ß¼c(vðÍæšæM}ÈxnSDy[ wš3ôÍæÀS(vê4oÑN¨ÔuEý–Ë÷FnÊë&6á6m(!q¾}Ì>s¹^h’ðøµ¾?ñ!TʲNZ'Íæl²Eâ8—iN±1¼Óøæl’4žB±óŽæ­B´ã+uí3§1bó‚R¼&õí5éXE}ëÄ©b#·|úågå§k>Êý‡X¦U×WaR µ\N’%vQpôßÐ`Ï‹'¾97i£à€æÀS(v¦iN¢_©+ÔÄæ4FHù`-ÜMÊ»¨¾UbñÉy æ÷°®ü~hºø²ÄÖÁ×(&˜öº ®§ÇÍ~󶜚Í+`ßhÞ6D;Á7ϲ!¦šþ¹²0Íob7éBˆ+ß_ ÷X×»øÄ°}ûB³5”Ýs™ ±*îÓŸV(&ò=ͰÈׯ´s‡æ4æ›ÍæÀS(ööiN)D;¡R×Üs/…b\Xq‹æ0‘e ˜ÚÒâgû×êÞ£ksbEEVäɺqßZD,j ”Ø¡|s.¬c¶:Ê|s†xkÁͧP켡9¥í­+u]Á¥Uâc÷<«#8òÑÒ‰‰Î§¼Tćn>Þ2rnCIšo›D 9ØâÖxŽ®¶ 4šVÀz˜¡ÖÔµ¹R7à¾<;¨)'ªzð¦9Zºë­Çh¢ð”åûÙ|¢%µÿü¸î¢Hž4[\¤D]šVÀ:м™æ$Ÿ]xì{¼f6ºíÝ{RH$nJ1ßkÛxú„D 9ØšÍæÀS(v®ÑœÝ•ºÃùæ02 lÍæ€°4šƒ-°4šO¡Øæ@s°¶¸LsX °Öæ‘ælÙè¼cƒ-°Å[à›VÀ:мÓÜ€­í;6Ø[<´4¬€u yg¥¹6jwl°¶xk hXë@óNIsŽmmïØ` lñÜUýùq3píXÑÆu¢ÎTÍ+`hÞ‘hÎÑÚ€"°¶xe‹Šªó-•Û¸÷iaYøæ€°4ï`4@xÕe»¸"©×^Åžû‡‡÷7­³BsM³xîºØyxâÿr±³Bs;4‡ 6Øš=wLÒb‘a¶( #Hwé.÷Š*©T|oP¼ý9+4gÝÏbåºØyxâÿr±³Bs{òÍ¡YÄé Œ)š'ª÷é«üàöëÝ`U‘µä‡Í}û­¡D1ýèÎtg‹uæhÎÓLŸ{'(vžø¿\ìÌÑœçÅ4HØ_F¶Æ ²ú¡ÉÕcÅuè>®øä,1õóà›ƒ“¾9øæà›ÍAüEsZ4ÿ[vÍp‚zðÃüÊ‚{Áª¢c\2kÉ=}ÒÃ3oP,Zg…æ,šfñÜ;t±óðÄÿåbg…æ<,v 9DƒæÄkž"ÐI$¶øš½Êà.ÒkØr¯GÅ8Óƒ«Á:ŒišÍA|Có–Ã>ÛÎ hXë@s 9ÐÄ+š·ÁAôfßüÇeëÙâèÛ³m“~ÖÍ+`hþoѼ"^¹—¨òfm=‚LƒUÒÿgžqÙ¨±~«™™epc"íü]úâZ”“ÙJÙ~*­Vâ¢r(ˆ6Í©MÆl ô¦ ²4EWJV?>¯âÃ}Y)Ý?€æÿ8VjÞ*[…":w¦†Ø€Ë̼©ìŽ&öõ¼`›[iÿ8ñnVˆ^ó²jšÃ[§3œ·¦ŒÕPyóö¥±;[}4š3@saòe0«þâ^„*Ë©¤cë(À𼋗ùy¾õ© ¢AsÚë*€Þ4¦ý‘¼‚sÝ/Ïq#oz·hþÏÓÜ©5+QÕ~2;óøR1®¼“‘yEÒåòÕZú¬£øvjMs'Æ!ÞNkó2âEݯì-À´\Ïh4g€æ½Å”¦Iö@dUmâ¾à÷Æt3y)õÍʃºõW2<ö±’${< ~(ˆÍéY"‰tÒ|óbsŽ—R;gÀ¢x ÐhÞ†æMÂýÆ>}zMÞçîÃ_|Cóß?Ý|cVä`qÐÒ4gNµ¯D^|UPTšk:RDu_zyW$ÌïÑu¬mbvI~ŠË¤ª1o~3KsꇨÕú7 9М*+mB»â›¬#‡DÝ>^RCÞÊmçVXM¯õ¶4·A¬ñÍìîQ%X6мæÝb§ÃNž¶ íîïò[ 4š3«ÊŠ–$ ·ÁÊÔ 2³Õ⿚>xU–YšS?Dç 5:V!ki7–vŽEP])®èT‰þÏ[ø˜ÚÒ¤«qbÏ~3Eó¦¶q îù£„ Ž^Ÿ³Nó·êvQ*w >ÕVܽs^Ä+-ãÐhΈêšvêŠîŸìþ¤M,JÔ´.¡}8üùÐlÄ$7|"s4§~(ˆm4ÿ[zu«¤¬þ…7˜gõe%u®Ã(8 ys»zeÎLç ñ5d‰¹³Ú$2HsâqŽ…8/zZÃ2Íë L|ÎÃމ{…æí<Œ‚š3¢’œ(3½-›´7oÚ¼vÑRÃý¹åD¸cKn¸o\ºzãÚEêÚa/Êpt óÀ×b›žŽš("¦ª³MÏ2$½ŠÖ¡@ ŠuáÍ ;‘!¼•!컑 hþoÒS[’|JÈïáSÔ}®Í·¿”}[]^[š|õ´ˆ_úS–|óúÊÚ¼gÉSüÜòY÷ÍÿV];{BýNA~-æÞó¢>2Á7šsøf Äqô3 {£¿.€oþÏP‹½¾¯¨G˜¡vÿþ•qŽ­é¡F԰˹©-f¨õܪŸVTc2o­&£aqí#cºX…öò¸èõ‡ƒ~s 9ÐÔÁGÁ1TþT;p•óýr¿õ²÷ƒSÄûýmJ'J SÜß:Í)O÷®Êʺ­â& û]òͯ¬ìÅÞÒzλÔÎÐWxˆšÍA ÔX=†ÿhÞv‚XÍGÃNTü¬-¿vãlÿ=·Óêù½Ø¯Üð´jå›ãµÇcÐh4Ø_`õ˜Aó–=ÎØìé.‰‰5 ØÁ7šÍA .Õ˜o·4§8Ý»qªKÕ½Ë'$¾þÔÀfÓ;wÝJ<÷ªù‡ç^9¹Þbî|Ÿæ&O³wèëꪈîSnú0òXƒÇ7O¾%½E÷O<šÍæ  9Мïï픦{7Tg¥%Hz]‹ÃÔ±Ý4Šoaã("Ð[î3ª'9 d­ë$ 3-ß72ˆ@o¹4šÍA@sX=†—÷öŠø?ÍC çÕV%6¦´šîÝ€K»qN|ÏÕãåµ*v"Äw»ßa娂¦’ÑõÓY/C"ÄO›eÒ‰r 9МQŒ¡†O$Ì7ئ»i†P¿e‰: b 5j1Ú@ ¶Ž‚kwõ˜Ü·¿Ñ b§b‹U2bi}_±+$VÀùQdš^ëzZÐñšÝ™?ÔŽyéLU†SbŽn`ÆÎ‹—ÎVÓŸ™#gq»ço ÏRö¹*j±¯‹U¨å´óׄ®|î°üá°qaJö*öÆKµÖj­Ô^©j¤ªd©4Ñnâ˜cP w.å)…j°÷`¡`¡ÞQ]zE!(PˆêàßF à!†W¨4< ø)">ʈ×BÄ} ⪋8Y"v»ë ¤Õ´fmœw6ɺ"÷äJ`\B4„{;_@~Ì6¿ÅP«z´ÇØó~í—º‚¤Uò«Ïi ƒæc¨QŽÑ±ùÉ[”d9S }+:Ó:±â›sÄ[ Šh¥@ƒ‚>#’#ÈÓQùdô¾ÊϯþŽaZ!„Ĉˆ­Ð¶9¼Õ¯N;9T ðeô¨çª*èk…¸8š‚¦£¦ [j›¡‘†±¥Š‰½‚¥í@{óžÎú=ÜÖöóPñ(ì7¢kèàîQ=‘½Ýû„÷4HÆ_f¸Ïpϱ“ݦÌp©¼sžºÃÂe¶ËWÚ¬Ò°Ö@µÖj¦ùFT›Ìµ¶šèZ0¶ivÌMm£âÖ†Û­ ´m·¢Ú`¯ùŸÓËœ—-Ø¥®ì6o†ÇŒ‰Þåä‡Hôè×mo7HñÐ#ýF*y(-t]„~ßÐÊÈZ#àfŸô=3OÜïñè®Àý«ƒ¯†, ±2µ2·° &ôÜãâÏñDà›w<ß¼m µæÁ*?/¬§•ZÌ@’G]¡y|ˆ“u¡åŠq@sŽÐ¼+Ò€oTzÕ=˜.ÐSQtHŠòë[·RÐýòâÑ¡Á¨éÍF¦*ÛG;hp[ÒËgz—àÝÂt‰îÑ=ªO¿ÐRþrc<ÇLÛ=mŽ¥† Ùj] ]c=õžý"ÑW²'zdl²„¬¥ÝÂr% æ¶•¾Í¶õPŽ+z*Žð)*Þ#ªç?qy±Ó=f¬6Ô;;(9pæ‘$ÙKii‡8è9r–ægO(4>Díµ=Û6‘ ›ýÎgæ–æc¨5£9YSÉìvU=ó4§}|ˆ+uhΚ7*<Êoç•ùRµÒ+O„3Oódƒí_G$îF†ê‡:+é›n0Òmx·09$ºg·ˆþ}‡IyN™ì2©íŠõôŒõÉ(üŸFDK|£û«ÿ‹`‚æD [X ´²ê±k—£(§(×9Çõ´œ–¸,ê9M&H¶w„@¿‘áþ#Û/öUñ»ßç~üðx/ oÎúæ(¾m[мYgC"E¼Oß¼SŒ‚kޡ֔R”ª£¼ëIÙ_hNóø мãӯ߭ߒ‚˜¤yT`ôÙåK}WO\nµ|Ô®Q¨Û=b pÈ„µ¦²æFSvÅÞE}mæ ÌºÐgåµu‡ŽºëB_…þáý"&;O±\b74.R5ÊÚØ¦%ÍÏÅžLs°¶U;ÍÑáÜéSì§ùÙØÅ‹Žž…–öLsŠ1ÔSJSŒ—û¾©ªb…æ´ŽÍ;Í#ƒv_\$['¹|ïÂx/ãc$šŸÖ?æ»(žâOöyí·ˆpØî i¨9Õ~ª`¨ œ—ØZC;]ç]ÎÁá!į¡Þú%#öýæƒæ-¥»C%ûh¿Ñònò+ ¼ç{;k» ÖS**š0áͲ¥èkåàÁh {i~äPŒ¨Ó!ÿsÐoÞiN-†^•·,6ÈûMoRŒ¡Fëø м£÷›7NFë†:ë†kŠò›½ï¿F¦¢‰XdêsäY…zè‘‘vŒÕ=¹ì”ËJ—z+ùVÜ­¸Îu•·µ_¤?¾ß\\¼e¿yªöfR¿y§§9If掊nŠââÞºÛ ³åf˜›“ ›aaŽ•`ÒC§Hóógvx„ ?} FÁÁ|shþo·´“„zŸt¿%çïôÊ8¦’”¬œ|cø} ût6èŽô))0Õoªf¦kÔ®¶¿ÝéˆâûË(ü˜vÔ+G÷ÑŠcÚ;1Í[Jk‡Öf‡ÅzŒwoiguìÈI"g‹ÆKst`Íccµ‹6Œ…1í@sh4oT@D„å‚sø)ÕnÚo²WòPˆ‹–Sß»Ð2Ú2$*´‘í¡Á—Œ Ó4þC_Ñ}bâ?KsT9º¯W,u Þ5ÏY¥w¤à °ÙF‡¼ß,_öl«6›h~6<<º¿ûñ˜¡4€æ@ó¨ˆÐȈuÞá35ìQôï:[0´ï(ÿ‰[¢µ½£|èÙNQÿ2Í3œ‹Æ'â54îà䨵ݢ„'íì£c¿,æÌi¦f¨µž§v>vSĬƒgNÍæ Ðü£y’±Q‘œ\}¯^è+º¦„‹î2—vSî,44p´f´¦³YÔÍ>éƒâ€æÌêÒ™ªÊÁƒ3,šûÍï[š/,!ß%BlDö®ÃÇaõ 9Ð4š3JóKƆ›—gGj»#ó,Tz„K‰FK,3Óq°mÙ‡NmL;МNáÇ´`%$P?¦}ü8tMAiëxjDôØn‘bÂÞ›6‡`¢Ô¦”J: —¶Ccûñ¯ø_gÚf|‚Ÿ‚€æì¥¹ boNp²È(ÁâÓk’ö: ;rRÉÑ ±q[pé§°N¢y’±‘æjVÈ5üÎEc 9ÏiNÔÑó'V_Ù?¦ÿ¶樇Žúéó7âWøïC(šwHš·qVÿ&XEnAȃO¥o¯ú/ªž]ÏXV¼õ/­•‚<€ælW‹Á=”0Á1Àëóo”æ‰Qv}#î<øQûõÍU'/‡¿8KóÆ1íCäô·vó_-šdbÄQ”Í™èòö>ã'{PvÚÅ}çbÜŸ2_x!ÉŠQ» ýæ™æTbœa¿Ÿ[/F<$ªq´ š¡Äa3<çXºïu9à 4ç̘v\å±çEOkÐgï‡g}TÓquøDÜÉgõ'5§9Q+¢W.Ø»€Ó(š37†íäùÓÇ× ÅéºÛ¢^ùIÅÔÇ]2£¬æÿÂ(¸ægõ¯|gË. Oÿ„ùz/l‘ôLÿuô æÛEs¥Ë£ž7›@@sŽÐ¼²6ïYòT?·||…²œ³¢î<üY[€úæ;}\>þâÍu¢u'í4çOšeç(å!3×é‰ó±—¦ÝÎè– ýæ–æcœánhJMôy‡žVñÎoB‹6sš¦ë~æD­¢æpý+›²QQë2ðâ/š?ÏýÃCš³h½Å µž»BõÓŠ*ˆ•·w-1r°µbë±<ås1ަ)ÒÜ6ÚNz¯4=8>~â iœÂ+š‡…¥òæçòBV%û9žœ~dưƒòqÑ·¤ĺÚ³xɱBs¶\íŽæTbœáÇ´/›§¾zãjó–ÛÒ9¦½òÚ:‘îC—hë"©õ¢åâ!ÍY¼Añö第úŸÕ–æ¾Q~}öõ¡Ç<¤9ë?g…Å<¤9é·§ãÏjŸÜ*#¼ë [†XF’s2hÎâÏY¡9[®v˜oñ'ÍsßþFk(QL?º3]ÇÙb9š³Åt•uÚQš£L§â£Ç’¬?‘Åešûù%¬_å&̓’H¦CYðЙ£ùù Ù$ëç^wǹ£@·´z$ü(>:s4gË%ÇÍÙxµ3wâ@sˆ4o»øæì¥¹ô^iÛh;ðÍùÜ7')ølèÀƒ´vm¾?ôÁ™Øóà›ƒouЖvôᙇ7(¦­?ÍM žfmÝ}E÷¹iš6Í'í¤­Û.ŽÀCšûù]àÍQ—ýæ^¶MÜîàðƒÃ—Ú-»©r‹£4gñ’c…æl¹Úæ Œig¯žä$X5/ÏŽs@çÍì]°"z%ŒiçÛ1íuìüÉqÇ/1[zyÛUÓ4€æÜQ@ÐT2š£:ŸÐ|C´æ¬½³€æ‹æD ß;aÙöe¼.Íæ ¿Ð¼"^¹¹‡œÂdŠMs{‡¾d4GSø„æ&Ѧ#÷Žšw8š>1tÒ2ƒeñ{cÓìŸmÕNsl  h4x@saZ3";4ÍQO¼o®È'4ßµ[tŸ(м#Òœôi£l×ô+?<}„ÊÁƒS€æ(†ZmAš§Æ\åE+*¯´ûZEgb¿'Z¯Y­©«µjÝ…ï5À&Мu=ÍM$£ù³WI|Bó¨Ðûz ¯@óŽHós±' åó³4µ"¦dX˜c%$ˆ:мãѼím°ú‘üXçìJÂq&ãíÏûEG6Ó¢v<û·æÝ1õ! °¸+ˆk4ï†tÅ7³ ™oqü¶3ѼiL»"aL»âÓWy’j³ÌPßõÐæ‘æivEãÇ…‹ Ûå²›˜ˆ¦¤9:Í;$ÍÛÆP«¾o8L@óúÒ—®#„—âoo·q77ÉN ÉÇ»äØü°©²[®A 5WëBmiñóSÖúOòz^שhÎú|sÎÑ|äÞQ&Ѧ@óŽHóg[µß,_†îø…† í8êî£)h:мãÑœr µš/·w¯ž¿l½žÁvÝEƒDV&aé(ÀŠ51å“¥„ýÒ¸9bêçaeW×ëîDZ™b‹â1@s.Ñ|ÖÞY¢5ùŒæFš¦ž½¬¼‘Þîh‚X…v±ôcj¦O×A¶ïœ'‹ë)K ¹áò·„¨îê1<Òˆ2µ-½{[ù,oN±^ká)fŠà廌¿|sû¢ñã‰û‹öu~úê›ßs¢â›×¼Un<‘sgšCõÕä‰+$ ÑHóf™zO­õŸ=øšZ¸ ²Ú3ÝÒ“DsKŸÞ–j–Ö&æüØo^9xp†…9ñíÕÑîr˜vûÍQ¦;µ yíG çƒz/KŠ~á²_^—q¾t¹hÎ71ÔH|/¿c?m„Ö¥ÂJz Ðo¾àÄg|¿ùÑrÿ]€~s×g¨õ”˜©¿ïUî/øæ\¢9â¢2DómFvÃ,<”ÌTÌ=6RÛr’…Js]<Íw÷·t]ÓÞAŒ´ægŠ9®©uXf9ÍM6ܺ·Þ¤-yM-vްôšoa£néÝäƒÛδ fieÆ—-í¨R‚°¨‡þfÙÒ¯ÇNvî1Çca;cÚÉhþëÛß#úÙ%?~ár^^á—–þ hÎ71Ôª³üLuµ·h,]­ëqõc9݈ýžh¥±ZSwãŠÕ6ç¾U›@°zL§§9ýqQ¹BsËi>ŒM¶ZL¶ ÑÜPÏxç@KB±¥¢±1íƒêi$I L]¡c¸mí•2d4·ûoL…ˆ¢)9vÍ,ì¦[úN¶°6³°fE¢¹Ã«€‘–~½¬B»ZùLg뜦9ÞC?}ꞓó­ÚèkбЮQý6îÛÃÍÿÖ¤+î ïŽÓ» ÙsçšÃ|sпIsìËÖ³ÅÑ·fÛ&ý¬šsæôÇEå<ÍMÕÍ|åLͶZׇZz5ÑÜ|†E ´©ÕC“ÿL½,œ6Ðhi7زwä€çÊš&è¾Þò'‚R­hn¾ýÀ0¯sµ­È±k½ÔÒ¨¥ àòV>M4w”³ –±°Ó·°^oáÓÛÊm#ÿÑœL›Ž˜w —ð>~Œ^šÿ.ö>0ÿNA~-æÞøÁA_üšÍA@sæêBiŠ®”¬~|^Ň3ú²Rº7~͹Eszâ¢r‰æF¶’c´HòÆÝh‡´•·š‘á;vƒ­<Ó ¹î¢7-G»á¥cØÈVK}õ·}$cõÌÛ`×IŠÜ4qÀ›ÝD+ŸÅæç}§¤•÷r¾§9ªû¦ øÏ?q®†.š×¼Us>sŒ0J ‡{5ÛùÂù 9Ð4gª.àWHPpÎÁϯ,Ïq#oz·hÎ=šÓ•«3ÔP²[z“úÍ'ZI›Zj™h˜zõ¦£ß¼™ì=%[øæfnóa‡,ujg<JvÒØu+ K?9 »mVß|÷¦Ž@óƒçŽôÞ+2ÜwöO=ýæÖžûÔî~©Ã<¸/êyúÍæ “u“¸@lÎñÂAJbç €j\¥9qQyGsCmi µ®–^Óð½êLÑÜT벨à“U†í!¸%ÍQ—Ü^Ñ*?{ËÊk¶¥¥YG 9*»XÇ^Q’f‰©Tf¨µœ§V÷õýƒîhJO÷ .ﱕÐo4ÍææôÇEÝí&`¶=‚ø6Ò?(|¼ž ýw†[„Ãê1|DsTÓ¯ Ö8öô¬4xÔÒn-íܤ9}qQ#ý‚ÂåÖ¸„i±Ø>t¤g¸WDÄÏ0éÝá@s~¢ùÁø/‡E…w{<*ü4šƒ@Üwu«¤¬þ…7˜gõe%u®Ã(8nÒœž¸¨¡aá“íÃ6†FlÞÙä›G„Þª‰ßif 4ç#𣦽žûL8=w˜ç‘¯8,мÐüOqæ—ë·š™Xb¨Q†Ö¾é†²;Nc‘n¤H.Õï/9¬^ºFkëºÅê«í’?c€Y ¶ÖÄ ;‘!¬#CØw#WîÛßh qBûâß<0„ÆâlÜ}zÕÑÚ„ Åk]â éèþÎ}#‹¯Œ¼ÐÛ&Áå<“[íøôÝ[™ÅÄqÒ]’ËG(þêÝ}E÷¹iš?ŸX/upԺ;+µ/$4póQš·óáÃã)Íq/B•åÔÒ±-Æ.R†Ö®éŸ]–êYNêßDsÜ MéÉ~ðë T¼˜(µ)¥˜‚Õc:¤oþæóŠÊÍÓ+¦úJù Ÿr#bŽÌO~™ƒî¿ÏXär2úñ£÷^í†XEMÜNÖáôw”š.(-¢¡K1/n d ¯dû ©$öDë‰iHÉé“h:j=3û5 ¸w³OúJ¶Ï.¡Ö·ñh#þ㣇ìy]à¡©Õ%ôm|d&zŽè+µ‹]ßœaU§›ÉK©oVÔ­‡¸’᱕S†ÖŽéªG;ç­ˆÉ>ÓeµþM°ŠÜ‚ŸJß^õ_8T-<»˜‚Õc:ÍQI“N}}ûMÎþêfÎ(Ì!|úîáLc?ɾhâOIµ…†Áˆ èz|;NÌ#åê'&iN‚ø1ÃtæPŽª~ÒD2š×MžÔ.ÍIѾÅ>”?M<\ÈþXÐSÍ·ÛH4#÷RßÎUšç}~?9n²qøî}Ò½×_çÊæÌ¨"a~®cm³KòS\& Pyó›V44š¦1ö(Mr~\RÞ*f:öû¹õb„&PQ£°Ü+Vé„4ŸynÖá'Gñ4j‚x³^~]?¸~Ãþ9i…ëÿïÒÚ—‘ug¥kô¬+9¯šßååØÿÓÅ©ðàþ·oriÓüËÛoN}zmúæÞ ÌL$kã¼³ˆu0²Ã±wBœ,—mÈîÈžUˆ×Äw&0 ‰„ ABeð G"ÄðŠFD‚‘.{”#¨ú…¢o» IxKŒt9Õfªª‘ª†–†ñRc÷îûGî¿,r9 É" 5í¸òÒí'™¬Óüö c½Î„Ÿ!ÑÜ’{'£9ªSÏãЧµ íkè9վϔ͙Qeê™Ù‹jÑýÊo‡¦^…~J=-Ó˜¤Å‚5´µ7«ˆ ¢ÊúÞ7Ëëªê_ùΖ]žþ óõ^Ø"é™þ/ê€Y X=¦³Ñ|ýeM÷ûž”iþæB¹Üˆ’Ô¥yCQ¢î¤u •ë>41É Cz44ºLW´ðÍq74¥&ú¼«Â÷›¿ó› ­•aRA0ß¼ÓÑ|Çm»m× ð4ïF¤aŸúYºßÒ^á?Í=ˆQüöœðÍçբʹTƒzå(Ê¿‡’RÐ}œäˆÂ/ùîä'\ñ5ñݲu‹’ƒ’t°tÏ}=%IÍŒŸ¥¶•Îj›ý^ o’ŽÅܸ!˜ÎL¿ùé“äýægbi·´ßxvÇ98Ìt‘ÍÌHµ‡Šì_¨¿t¦ÝéÝá^¯=núÚ“Ìôwá!_mmÞE„>ÉÊ òÇOïúÒºžùøù}]ã-ZÚ»àŸ|‚û™»Î7ØÎeš£øSˆ¼Wæ¹íË[jÐoοcÚ±%7Ü7.]½qí"uí°e¸ÆæqÊÑÐÚ5]þᄞš("¦j転Ž8¦}Ù<õÕÿS›·ÜÆ´ƒ€æ‘æ!á‹—Ïß>K)Ü6æ‚ý§÷ŒÑ¼0f_Õ¬™Äýì×¯ÎÆÆ»íq×Û:h¢“œ@„À!K÷.sºì|êUÜýÏéùÅDÕ}ØßèþQLt£@¯›2¹AP}-‰;EL¤Ýo¾Ó-R_ybf²^èŸi}bû…O– 0¾~3÷\\­Œ4fÆô¢Í›Ð×ZY4…òÑ^>ò:¤|þáCtÿé­ù;6Ò¼iÓÝnªfâÓÓÂqÝv®Òüö=ßÓÎ(ņ¼=þ ]ëLˆ|ôú¡£ºGõ¿[`ÆqMÇë‘Þ¾$~§xÂü’SÇy‚ræhNRr˜–©X—hAù½Ëb\%&b§+½‹mç·(ÙíÉ}s½í&‹ð¾¹ÓÚí< yÞç÷£NÞ·inôk 9ÐâÔ µ¢$Ë™ø¹¢3­‹`†·iŽ ¥ùãçÁM3Ôzüš¢™å’Fìc}ûäðÛ¡ýñs¾†n.xòöNNNÐõ{ŽÆÊu œÔmo±y•Óš¾i{Ÿç>ª"תß<(ßo^˜ßiþÕÖ¦h‹Ö¹Œ+c,Œìgèntÿqš‚¦3@óæj!滕 ¶ñÂ7Gå~ßsA¨ú ­l 9Ðâf]@Zl@sNÓ\!V!þe"y 4ïýæG’Å+)8vhN¿ˆ}åv!þ"‡D• =ø¼ßUê˃üúÿtj Y 4ç šSŒ¡ÆtK{ÛÒ8>Äuš?ÏýÃCš³hš³hšž1í¨?þGP}-8J>à9-½œ‡4ÏÈÂñŠæ7ïü çk¤Ð-wC„ˆÎÖÙ«y“uš]å͉!k‡zõNÛ¸’²Miû5ÿtVhΖ«½#ŽioC ‡yàk±MO‡ Mg›žeHz½4oCrŒ6ˆ'kÁ±ˆcÞþœš³ÞªÐî|sÚ8æ!ÍYÿ9Ó4gâ·Ž©;£eôŽÇ²NsýzŠÿ)díOÍž¶ÄµuC‡´õÐYüÓY¡9[®v˜oñ§ožûö7ZC‰búÑé:ÎëÌÑœ-¦™¦ùÃÇ¥$ëL;kLã8ëy%Éú£'8nÒüVÚ7’é›w‹úíòóëz„Œ»˜þišûúÆ“¬^a#ÍI!k£ìSÚ­DLDS îgïŸÎÍÙxµ3W×€æ wZÚÁ7ßœÏ}sTé/3=*tý»ðÝÀuuc>ñͺ8•éëâ×lÏyÙ;J€çMAÓÁ7ßâÍчgâ˜Eë¬ÐœEÓ,ÒuÖxH󬕼¢ù­´Bæ~˜r:B< kòÂÑVX¾’’ú!$äþß­a»}ƒ±G/KOõíT}|γæ…öWÍžEÜŒ’wº¶¯Ñ7?ÃÞ?š³åjšƒ@0¦ý_ÓÎiý 3ÔÈcµÈH;¹­ê!w¡ëA•¢þý[xèÛµ ]Ä-vM1s[ØLsЉè7o Y;ñÈÓj  ØocÚæ  9Ðhþ/Óü]X0–GU4jâ¤H3"[_KJF¨«÷õ v ³Ø3×Àxž™É7§˜È‘1íM!kÃMæÌ¶ï‹î£)0C hÍæ@ó–újkS´E Ý9p7^0¢ÿ¶­x¶¦Žwvútfͧš{74Ôßf6É‚ÔÒN1‘Só͉!k_ºXôŒèõ"÷9Ì7šƒ@@s 9МÜ7Á|sTšNÆ Œ4úæ nÛf´ÀÔWÎØDß²n9´±‹œb"iNR¯èAÞ7â€æüBó¶1ÎÊ2š,V]¼Rc±òü-Y%8ú °<ÿ¬£¡ž®Þº…ªKÌν/'®$Ó‹0iÝ`›î¦Bý–%b€Y  9ÐhN³ß\V棷'~™¸S?ûõ›?¯±ß|»„U(ÒJ^ꔹAóᇔՎÙ4¾}÷pz£õ“Ñïš¿óäÑu5·pÄ*l`Еyïæ\¡†KÛ¡±ýø×jt¿8ÓnÄ0ã;Õt ®®ìç/üæcð¤Ák.cñqXö{>À/>SW´J~õù/ À,Ðh4§¥ÜógjädQýà K; 1Mý>îä¸E!nÙ†Ú9Fó ‰ÃµJD™îЂæŸ›î‰šq!ëáûWç.ÄŽ9’ù hÎýjU¼õ/­•‚c 1˜÷©A åTÃsê[¤7ü¼°~œVj1 ÄÃµà€æ@óAs¼‡ž•ñ.",G70h±šh€ˆ‘¦Òü@æñ®¡ò/>¼¥Jówç8ÉÃïçå¥ÍØsñü 9×c¨¡¾66Ãsþˆ¥û^—Ó_€¿?ELEÓ=ž•·Zĵ"YSÉìv ¾9ÐhÎÀú3(X—.Ÿa5ƒ¢®”ùþY·½½§¥S÷ÍŸºGÍJ|’þþu|â)ÛSûß͹C óí¢¹ÒˆåQÏ‹+@lõ·Ìck¤F;dÔ6'¥ê(ïzRÀÍæ@si®»]W8PØfµ ¿ÑUÿ‰M§öS¥ùç÷^í†XEMÜNÖáô 9Wc¨Õý̉Z;EÍáúW 6e£¢Öe,cˆù8QbÝ•JRJiŠñrß7U@+Ðh4g”æè6wÇÜÿ¶üg gÀo4ŸrJY>Ä‚:Í›õøvœ˜GÊÕO@sîÅP«ª¼¶N¤ûÐ%Úè…ƒ¤Ö«9.*MÓµßÒ µÖoزná¼% Ÿ*š[nYl>÷hâh]ÀåX""´àlÐhÞÙhn9?¤oH?ßy¾Ä·¦+¼gášë_3êá½¼¹ëœ2ÍßedÝYé=ëJÎ+óÍA@sZu¡îû}»iŠΚ›ÎÍæŽæ(¾U X©[›h› û7û¤£¯ü@óÀô`ш™GÓµ˜¡Öbž)ÑáÐâøÌÇù0ßhšÓª ˜/ÇÖŒ_õîÃÅËÏÍæŽæè¶f‹±´‡Ì ™d. œ~š'd' 80ÔäôeX=h±Xp•é.s-nÿ¨¬}b7e1ÐhÞ)iŽn’žCÂÆ…;Î>Ì?ýæ/>æôŒé=%à(Ðh±T~‰Ý:yÙ~¯âÃ}Y)Ý?€æ@óÎKó±~ËÄýçð ÍQ|Ÿ”ŽŒÒÝgÐæ ‹F 5JÑÐŽ¡Vûúh@äÅWE¥9±¦#ET÷åýfØ]ªÉ+8çàŸËs\ÇțޭšÍ;-Í×û˜t“âšG¯O=à}¥Çþ(͉p^— 4ç«jU”¢¡1C üŠ–$`€Y v×Lâ±9ÇK)‰3`Q<h4ï´4÷vßÕ=²ÇÙ•êg·löuwãyK;*¡ýoôeO;МIQŽ¡Ö¢Ù¼u44†c¨5Ô5ùõuEw ‡Ov';>4šÍé§ùs³2QQEG=k>^&&†¦ðœæÃŽÊÇIÅÍù.†õhhŒÆP+ɉ2ÓÛ²I{ó¦Ík-5ÜŸÛÜhq¬¥ÝZÚæ’æ~în(Ê/®['ï¿PÚ_MA÷KÅÄ8á¡3Dói§#"æ0ßbqÜÕ­’²úÞ`>žÕ—•Ô¹£à€æ’æç6k}’†î,ó1è:”˜ˆ¦œÝ²™·4Ÿ§æ¥è4šƒ@L×Ä ;‘!,ú&CØw#ÐhÞ h~cé’G³g¡;;½Ý{Dõòðô@÷Ñ”K—îØÔÇ:h³'á›>^滆ÚàC‘öÚ4ÏÍg‡i®q~ªÐhq´.€o4ï4G}ðOòòÄ}YYGG'‚o.b“®´]À|‡À-Dš{ùÎr Ðñðv÷ò6Û(d¨çÅYšoMÐ5X®—å¶¾|p¿òK~þ‡ƒ)÷Ý»üe‚0šX?AëåÕ{@s 9h«Ç͡߼LLìâºuèþ »ÆÖ&Ik×–Š ˜få³ÚÃ{}–'”½-wŠí0å°on–d¡¹^µp‘î«cI÷o%<7žôKbÃÓ;èG×_,X»Â'#5>gÅàÚå‘÷æ@sÐVšÃ˜vsóR11Ô7Ü"¿Sc Šrƒ­;f»yyxù̳mAsO¿¡Vø–vÄ*X}7§ûÍw^qYª»”ôö^²3FxVöûwï(”š{ML‹Õ«’ZK@<ÐhšÃê1@óšæ¨|ÝÝÎhoÙ½vÆËñ:¶~£]½Ý ­ëcmÈ|sï=^>:ÎÁ¶þ–¦¹ï5ÿ9¦sß>L}ª;¼NÙ3ýáý»7üËúO|•BHOÙS!<x 9Ð4‡ùæ@óžæDÙ›9ŒÞ=ºÉ'©Mc»§ŸœMÐOÎÒ<$5LÑZ‘€òY¶3ke–ç&ºÈ漎¡†WCÙ§±H·V1Sh™n(ËÉzJêWnÒœçW;Ì7À7ß|s†ZÚQ|Û©ì\¦»‚€ò½Q£ª{ ?»‹øéîýëgýïõAjO5võâÍsýQ+uÝ‘ž‘ãßP ƒo4Í9Jsôᙇ\`Ñ:+4gÑ4‹çÞ¡‹‡'Þn¿ùF+55…§ • ¥•îN˜t†HóÝz™“槺œ÷w³?¾hhÈìC9vÌh"ÄQþwPMG=t^Ñœ‡W;ÐâÍaL;Œiï4cÚñ}åSƒ$wM¹Ù;-SdMò»‹#Ç4ùæ-zØÖŽ>½›S4ÿݧâ"Á4GS`L;Ð4šÍætö›oµ°E‚¤®Z’Þ+}—¶Ï}É‘mh¾û°ªVacˆç|ó1ä¾¹‚ÐhšÍæ@s:Ç´ûmÙÓóÍj7ÔOŸõZH¾5ÍÝö¯…›vÎÉ“s£à²ƒüÉhž4šƒ€æ@s 9МÎ~só=ˇìj¹üª¡M@ßuhñ0œÈä \ÓŽúã(Ñ×ì X=hÍæ@súinçk‡Dˆ4¾Ýµ9¿wʽ\Ž«J׈LŽgåŒÎ7'òÖ‚ã»jøÀg¢Ê›u´õ2 "Vc*†åC@œ® mׂšÍ;Íwú8#Q‚hŽî·rØe’olšw4šSŠ¡Öf 8º b 5ê‡À7šóÀt.3ó¦²[8bÚ×ó‚mnM¬y«Ü"üÜ™šÖJkŽ›þ‘邲aøÂúäχ}œh²pòËÞD€Î©ª ;l(bŸ”\ËN𻸏"ѽùav 9ïiN1†ŠàÞbJÓ${ ²ª6q_pŒ`s 5ꇀæ@s˜®ýdvæñ¥b\y=&#óФË嫵ì:µ‚8-ëØë¿¶ûÖ¾/©ª.¨9¾±a fm%zØ÷®FÓëd6T=þðøqÓa›U“•rLâćïæ@s.ÆP«}}4 òâ«‚¢ÒœXÓ‘"ªûò~1P€­b¨Q?4šóÐ4î7öéÓkò>wþbæ$ÕÕÄé4(ØÖ ?¬Ë®;ðwRQ«Ã6³ÀdÏ!ÃüjZíkrž¤*¹†¡‰Ý\Oë?))šÍéÅj-¾PYx@qÀ’ ½H-†ZÛC@@s 9oL“ÀmãÜ «SlB»â#‡DÝ>^RÓŽõŠø?Ä.éÞ3êŸWàS0I¿…eSÇÈ•!ȯ~ão_(lùý¢·W%½ï?þE³} ö£†óA½—%E¿pÙ/¯Ë8_º\K‹æq[µß“ C ¥¥Ñ} ù¿NsŠ1Ôêšb¯ÔÝ5>ÙXájÔÍæ<4©-Mº'ñ¬9 T])®èT‰þÏ·k½® û¶v׌†É^5èm “ø»OßßÁ°Åy÷ Æ• ØšWEºÍbâÆL¼]\A»}à×·¾Gô³K~üÂå¼¼>Â/-ýUšŸÑÞB6Ë›í@šw¸1ímc¨•äD™émÙ¤½yÓæµ‹–îÏ-ÇÑS€”b¨Ñ84šóÖ4®2w–ó…ø²Äœ™-Û±þóı…µõUÕQ­-Æ'Æå¾è3éAQÓ=¶"[ÙåLty];íë‹ ÒwwœÞMHLL¨3ß0ÔŸØkGÐ<7Ÿ=xÔzHJ“ÑõÐæ0ß曃€æ@óf\¾ý¥ìûØêòÚÒä«§EüÒŸþné°—$$Ÿò{ø”†o޽Yïx¸¦S…}W»{zÃø=xß¼öÕÞÅ£Ê|Ò*JÞÜ7[:Pïu£o^›s7V<æõç†öÚ~{˜§ ¿sïNüà Ç/~×'Æå ãáíîåm¶+ðö¤ p\éXAŠËZ°wD°€ H•R“Ð{‡Ð!$téÅŠ`GAawuíÝU׎"–ßÕ’` 0$A?Î{r&É…H|øæÎrŽ1 #´æí°:ú{Ð4Í! 9hþë\¡vúô¡iž¨Ú%N8šú¤µ¥Ýj ý¿ço“ ÿB†ò|ZdñþJ#íi«Ò¤…>!XÅÖ~Òö Ÿø2t®¾nùîøÀÛÊ>;r[¨-W–øìÙý–q¤=ë#îmÚ¡FIAmšƒæÐ4‡‘vNéøÀÿáCS•Oþ{ÿ}SõÉb±Ð“mçÍC#Ƕý¥§N]êà±Áªƒæé‹ÆÐö7 ‹Xædq¼mݘqßƒæ 9¤ikÁq5j̯Òj»:ûRM‰¨gñη?©æLÇ>¿p«ze ½ WYpƒ~µ ­Ïu÷w ô¿ys?  [ÔþÎÓ¾i|WZü!&òÝÞ=oZ›Ø|Ù‹*zGÚ…†……›ùÄò}©Í©‰PpCê%HKíØjèHÙßÜ/BÎ9V&¾¯I ïøxÐ4Í!?‘æ—o|DïPw¥øö4ÚaçF…ÿC=%ÅOõ¶iä¼+Ùó|£_©Wq¯+Ùóv%_-ºíÐf=µ¾ûÛï=Š©ñ=ÐÙÓÿ«eÔøgò+o¯Ã¢Û–ÑP[ßùûØä2YWʘ¼˜…cÑÿJÚ½n H½[ª<н ÊÿW®Í»3Ëm§Û.êcsSÎñN+Ìë£Môô峡75þJsÝjuv­ùdž G’¼ÖK *~ÝföPƒôæŸêò줣»V¹ø§é'­Í_ÿ÷ŽSA?{þ¶Â‘œÂ|÷˜$AïŒÈÂ|l(y61/õfÏsOÂP¾ÚÙÅ¥çqщ«ä«ñSÌE·¨Íâ£ÐѰN(ÿŒÑAóFŽDýxíhô„¾ ÙèµQ«½ÝsaáüU«hDAíg""A‹³i_@ jû/Í£ßett[¦vnHs[ ú,8úviŽ[¢æÙQ¾ÄÚR÷4¯l„…-{èЕ§«XúNºõõß}6¨Í»f{¨1ïüÞ øöÚÞƒçî?ÛÝnÓ4ØC Òï…æ£Vûo½xÕú°6O_b„Þá× y¿Ñ%//s¢k²KNöÆÇ(¡€ÞsÍ]\7:û,Ä›)n¯ÃÔ×Iõàêâ‘ÅiÓ"gGz.÷ܲf‹ž®žš¹š‚Â|Üü)ÞSd‚dFF Å ¡ˆÆ à!Sæ£ð‘(zKD ÀÄ1ÄÑbáãf¹Ì^â°låSgíÙ‹%Ìœ¬œÛ\¾.5&u1ž.>íoºþëÖ–,[š¾n­‹½Kšù@ß UöpUKÕë¼)öëcÝŒmÕlLOòJ‘Aó_Ds¦{¨1ídñìÀ7ì¡éÃ÷BËû'n7ÿ»ë™· 9×k^˜£•œW]˜çMðʈ,bølAö&µ¹‡“S–†Æ¾åË355=°XV—ÄGÆÅt÷XºÅÉ~5~®‹òBÇ%Ãc$†$ ”2H”$:&~Œ\ŒÜŒHùá CÕÕ4ü56úm4ô62õ2ÛZ|߯ÙåoÙáﵕÀ­ƒ1/ù1µrÃM\MŒM\R&foÖö ¥ia¨ŠU]o;V?bBÀñ(ñAIƒKÁ=]ËRÊÚ@^× „ZÈçÐ)4ÐG…ü5i©3g¢Ûç""¨§šÛn±u•·1;Þ®`§ôƒæ?¹æL÷PcÚÉžæ°‡¤oÞ èv)Ú…´]0@sn¯Í ‚‰)R”…L‰¢¾©VY…yÛ¾£yŒ±ñ ‘ë22'gÏF·>Ôó­àó\¼‡{9 0 [!=U˜8b`Ê Á‘ÙÎófú.Q QÚ`k™>>ÏÎ ¤[#íië×wiOÑXÏXbÓۨо.%E{”-Îa»É? caÙ`Éß’øcFª™©;®vñ_çdàÑõ˜ã¹rÔX–ß-Íi ß5òÝàÁè6Uc=êñ[š÷í©pÊysF£ V© £]ìípÚÑÙ²ÛÖ›X¨š¯.)?d•ƒ°®™®­‰­““1yÊÑ5#Ïòæ=*~u̘c3f ÛgÂÂa:: 9hÞ~¦{¨1ëdOsØC Ò·ï…–gù‹ÅW7‚æ?›æY7¤¥iÂÚ¹âWx›É­U·ŠÌ#/5!bžJš‰—)ÞŹWfÍ}«9ë‰40@|£ ýÄÌ™Hçg”ñsƒo ùÜ*„µr*X•I~“%ñü–8œ?æ÷5[$ôͦ¨XÛæJïˆÙXs‚ï8¢ízf;—kþÝ1ytôŒ&/›‹êq$¬ž£¥d€š@ÔØÑƒ<6`þþª9ªÓAsÐ4‡ôwÍ›ŸÄ/Žî[âºïÙ[М›GÚÛ_¿ÿoívå2Ä÷i™ês¼çŽÊ•{›ø, _—Â?#c†Y®y|aB»9í›7#¾Q=~rölt‹Ú¨ç‡RÞšw=&ŽŽµ²z>T|·œ5ÝÙŒ+/”¾£‚±ÓoÓüÝàÁ 9hšCú¹æ ef’ÒÅ×oï°–4«x šs±æyÛ =ÔöÔaêO× Ê÷Yì÷ŽòY±€/O~ëL«\ëÔ¢ôogÁµ]oŽÅfjj²r½y?Òü»kÁ…éê>¾FÓ~MRò®€bó€).—» µ9hšCú»æ­Õ[Æÿîs‰²6Ñ«K~SÆÛWµ‚æ\ªyLvžša^_MøºÒ\é+š¢é¢2äÌs-ÒŠ2º˜ÓΩpƒæ”Kέ¬’ÕÔŠ/N^ˆ­R“¶Ð¬ƒæä5k@sÐ4‡ôoÍ›JWŠ/Í{A}’EK‡­.n͹NsT’Åo]¢›[ÎÆÂßcÚÖé‚d=cO¯V®PûÅ5§Ðæ´£F’º:ªÇß ây 0Ž sÚAsКƒæ?^sT’OòK’óUs2#˜1aKžmö¶œÎæ´ƒæ,®ìúã>@óþ§ù·Û¥Q6>£^3nmif°PHpMi /`'Û¥½º·ÓÓÆÜÌ\g•’šÃ®[¯À,Èi·ƒ‘vîÑœV’ x¦“× ¦ .É\\ÂÆê1 9hšwfÛ¥½9lZý†²€ÛÃ}ã5wßÿÄšæÌÖtmyÿòumö¦;q3Gil³ ½? î°‰„´ÅžëMwvZHK˜…Yp½–ÍgÏU, LÄà†x&¯KÉÏAÂHiSÜÚuvR’ ˆÆ¬àOPÎZW˜ÀöZp 9hšw•ηK£®Ëúlî4Ãòç,½€]n—ÖÔt«åo®-ÃQÕ1ø$L†K©üñOFŒ¬¶³¥Ÿ%wpX-6P†,O(Œ¢uîÜ}™ƒš“HÇ8¥91±œƒšÇÇá æ‡ŽÜç”æ=|£½ù™öPkûlC™íÚˆëoXýsè{Û¥5ÝŽ‘­sè5˜áØê1=䘳ï‰æèÐ=¬Í‹‹›Üc’½3"jóœÂü\S벓i¾YññòƒÉÃsÕ¤»º0rÌAÍ{þðžXÌAÍ{X×÷Póî>¼5ïùÚÏ´‡µl?æd”qí#«/`'Û¥½{Tcc¨»ÉXgÕr5§’»`„«Ç\¾ñ½CiaûOw¶ßã½rtö4¿xý_݃ =þ§4ÝÇAÍ£¢J8¨9ªÐ9¥yßh 9«Çü:«ÇäìQ¶Už=!ƒàŠø~·ÞÚï¡©®mh¢£ª¢évàŸ&V^À Ž$y9¬—Tl·÷ “ç‡@@sni§¾ss]ÍÀºs#ÿÜðT~ëÌÙ™³·eõ%å 9hš³f{¨µTè™y»µoEËK”½fá|{mïÁs÷Ÿín¿“³ç‡@@óþpÞ<˦¶S_¶ îisììÕ 3ålËëcÊAsÐ4g)L÷Pûp=NQfe|õ݆‡£VUN¼øå°Ã¾¨]ïÑ€æÜ\›óÕè=(rbfÆB¥Ü͹ÛòûžrÐ4ÍYJ'{¨5?Þ¥+N<$¦•ó°µ/`ͻޣ ͹ö¼9_­’aზD¹šÙú$Ï›¡4ÍAs–ÂtµW"–H¯J¬¹Ûôà$qõ˜EQÞ³«y—{´A  9×Îi×¶)&ùSóˆ–öQ#ù׈ëëIÍ]ÓÒ*Gáâ1¸„¸Èi8gûànY{ƒùLÏà I¶ß5¯ƒ §mK‡‹X šƒæ½¦{¨µTèIÊnRvOk¼9cŒaY »šwµGšs©æ]™•oQe½|ŸbÃÿš¿] î—ÑÜg‰[æ4¬ó'œ .D¶¡SyíÊ5NÞàþ½rÛ K‚ Y‰ÃÛ;Amšÿè=Ô(sÚ×,WÑÔß ¼|­+ksÚ[šª#œ,ÍM•Å0âJ¦–æØøš7=?šs¯æ/Þ¿’erÔ}æîYÿ¾}Ête×_EsgOmŸT’oÁbM°Á"¸@ýζßtBHèä&»ïíº;‹s„‘vЮ7‡€æ ùLø±ssÓý%ó%¯7ßélöþ ¹³ƒsàx|</€ÖufôçFµŠG.Ââ:c×]kJ£è¼‡ïí!‹‹ž„äÅ%ü†#,üëL4·s“hû~PÂUí@sÐ4‡ÀZp yÇÜkn Ï^þèx»®ôÍ=â⤜½¶¸¸8G Ç{;²ó$¦þÒX7K,n–0ç·™)»NVãø,ÛŒÿ~¹í)ƒ¾+ÊâÑÁ°£ùD4Í!¨ÍÍ-vÛ:6þbb×{¨õÍ}eð‘k\œQïâ'… 1`ëIfºíTÅ:"X±^ˆÑuÌÌÅYªÜà—(²pdaðÜMGøò„Þ=!hšƒæÐ4g;<~2$FAëˆÞwwDíš{ÍÇÇI;{Úº¸â#ãšl7ßà•*sµÂâôp”RšÙys‡ å#›eÕ½X9ŽÓÆEÊ|)ö‡à Ùi@fr XeGsÝÚOQº…gLŠhšƒæÐüW×|nº¯h¦Ä£·Ï~ Í]윃e(—ÅÆ‡‹à Øz’üÜZ,å$õ@,a!Ïä4·ƒá!±¡hÚ°x ¹#Ö}.†ò„¸°%X¬#»³à¬í°«#x±>ú¶¶ÎfÝ1õÀ„‰É 9hšC@ó_[ó‹õ“E÷ÿsä»û›÷·9íÎvÎ~\éÏ·zŒû(\Ø:cåzñ±Æ9Ò²P›ƒæ 9äçÖüòè éý;ÞÔz•^2‹©ñ*Œ· ÍêgûK>æ\VôH•Oi.þ¹~´ââFÿø¢¡n9gŸ+ôåÞ]®W«-âØ÷ƒüíËgCoj.üGá¾=ÔÞ=<ªµLaõúU ë]·?xÃ’æÅ ¼b F¦›Í©±¥m—öêÞNOs3sUJj»n½³ P›³[›¯>Ù‹©ËÉj•”|9oî],õq²a«sÒ:ûbô³»¹»s$èЗn^ív.WÍ£]Æå±uÕÎ3Õ7®²ó$7¯¢£ß}òSAG n— ‚ì—+Ô]ü"fJ\×À…¢~_“+Bã¶ûwüzvµy«Í™íqÖZ½eüTŸ‹¯ß|~ÿ¤Ênúê´kÿcMóv»§}YUæýËgÔ‡7݉›9Jû ¬ì ͹@óªÊrDù?ÔÞ{¢| iD˜Ÿv«Ô˜ªcåܤ¹¿T›\y‰—¿ û÷ß§Í#“Q¿häÞô¿Ùdº‹l5:±3¡†®yiÊŸÙ&§;8û¤ ÷ÝLùÿ†E·¨Ý5ÊÙ¦§Ñ“|5šÙ²ª9c| î2®+KÉØÞ4ïgš3Ýã¬õ´Í¸ß©šhøÛOND½¤‰5͇ˆÏŸ+1Ã/­ä¼ý~ ãg›šn•Ç®’QJ¼ôÌ‚€æœ×ü"!ìåœÙ´öÌ´M#’æ ê¹IàºÚ¼øö<FÍ/f§¦J¤W•_þ+1=ud꙳Ý÷úÊÅ¿þI!?ötÿ'5éÊÅó>‹(¯ä«¥žìyµ-FyšŸÓÞPL× £‡ÓŸ„±Í˜{wo>ÍÉlð{š›uïÞ-–4ï û±P›ÿºš3ßãìíýãš+Öèš[[™­)ºž¾UJW‡~w5'š¼÷ÊÃ' —Šì'Š*¥Ò+ú7ï’æ`0ƒ„üõ Vv…€æÜ ù-û›tP£¸¸d(Iˆ|¸µQêçvͯÖlµ;{µÿ:{`BÀžmW»Gù­}%便[/za²ݾ—‘F=LAßjVÅTÞwòò4Gúwªl*â9VÕLŸðߊ#ÿ“•iUXÖden?Œ•E= 9hÞ|g³÷o”˜O¼ò¿î½€¯ÿ͘7L^Ñ£4·>ªËÕ–œìQûÌ‚ÀZp\P›G„¿œK©Ç7ºo40¤u¢Úüï¨n×üòÉ%ž9±©í‹'æz$_f>HNCy«á‰U9¢üat$½µßËÊÐ*ô‹g®üyé¼ûß§7TçMÚ?=a™-&d † €‰š‰›€IÄÄ%#ˆÆaøH„ŠPF4n€PœÐðˆá’¡’(ãüÇÉ»É/qX¢j®ª£¯c¦iæ´Êɱ?zBm8Õô,Òòœ3õgoÝ¢Uåˆòç$"wÔþ0n,ªÐ隇¬Øæ»9•N-j‡(mï-¸AóŸAó.÷8{ýê„û\9Ãýÿ¾fåüôþKÝýþI•Í„YA¶Kkº#?ZçÐk0 µ9G4?žUT8Ó‹ˆÁ%ðûf™j#Yiç '<×#uÚhZ=•sœ»Î›w[sÆArÆ6=÷“É-‹ÒÚ._:º§"'6wëªñnÆk7šm\†[6!b‚@’_¿lค…jfëtR-ÎëÉÛ/í>xýHÕí3·–þþ’󆧭0oäÃ<^8ýüƒËµ÷þ@ŸE9r£r×å=™çsâëHAgB]OzlH5Q5_;#rñx9d±ßRñ¤ˆ J”ቛ½ `^à¦1Ö{2ξòð ô·K—<ÍÍ¢kŽø®ä«¡ÎØÍAó¯Uó·{œµÖGÚ›m6ÖR×4 9|çk/à‹KIæÆ› Œ6®V·I»LT÷¨&ÆÆPw“±ÎªåjN%wÁ,hÎÍ«mLÜ}äÄÑ“•[‹ò†yäåge™˜uÐY«¡ýbö¬W#G.²$¤ž<ÙßGÚiˆg˜RÉ“ÃOdŸ¨Ž=|Ü¥¸D;/fav½«ürwI>Ò¤ßÈ⃒Œ9“0SÛMÖÞk¾Ï~ߤš”=•fË»>oþ¤ ·ãyó¢ün7/N©«¹W_ruX5Ñ>hÉzï±ÃÓf N>8™glÈXeוx£éÉ×f—å¨çlÕÎL6IŽZŸ{lHmÈÊm}@9h×›C  9—´;},g{¤ß¶äð="ñÂÕ‘·ì)ì‡wNõÈŽ`o'M:ÖaÜßÛ.•«Ý/v@q³«hìZòl¾”ƒR‡ŒÈ˜8-g…N´b¬lpEʶsÿ¼~‘öT­ÿ“–Üí9í³fRæ´Ïšù¤0¯'sÚŸæd¾]¶”Ö¾ñðîáÚrÒ¾$_3©õ„¹cã¦ð’y'MÖ´Òô]é[:b¦ÞiÅvÿ"c£%%ßóð [ÔÍAsÐÒï5ÿô²¾ÀIQ†Ý™¾1¢öÙkМyy¾&í‚/ç ›½UF&FzI_>{"%=M›S¬"¬—ù®™è;~|0oŒ ¦ah›æ¨BÍAsÐòÓŒ´¿~œ¹`øšÒ&м˔ìs]á5=c­*OÍÌñɨ¨êâ!\¢9ã¶êÚ·÷±acdžònñZ¹ó䮋7¯|wNû—¿ Îÿ“–L¹Þ<-¹³ª¼×‚C•øÓ¼lÊõæyÙß^oÞaN{à…§FiÔKcò´iþž‡4ÍAsÈO¢ù§—'}gŒÖØ~÷?МÉ,8£ÔÒ´ÊG«*ö*>Á­,îxõqbzºÀ÷(çÍ‘¿/L7ÇW–ŽMUã' ®ñ_““Ÿ‹zP¯¯Ç¥+»Rƒ*qâH=Zãá˜1 9hšC~Í?5Ö“Õ$ä̶?z ³à˜^¡––›?Î-AvsÆÖñEÂé£*««¾žIoK†ç1Îk¨Pà¶)~7Ùó6­¾®¾ôw¬vƒèÀdù¹÷ÿuœé¶_Aó"c£šn6ÍAsÐÒï5ÿôâT„âð±Fy÷ßÀœö®S»ô¬Iˆ©^±~·Õ§µù¦„J¾š6Ð)íÚ¸àcª)Yƒ£—ò¦º ]Œ `qÛϪ9 tT#õÐ-ÌiÍ©Ÿ‰+™Zš[[š,l;áØü¸¯­©gf¨¡í¶çñ[Ö^ÀÖ[û=4Õµ MtTU4ÝüÓÃ3WÏvkÛO¬9-H=¸Þ4§äÍÙ`ÛÐê7”ÜîÓ¯¹ûþ'Êq»´d•óî5~{3WEV«äá'^À– ½1³"o·¢vã­hyIƒ2Xö Ò7ïôG)£Ü˜ùéßAmÎ$§Nž›p.=2C*[º»ímÍé—žEmè¤3nή:L½îúØq鋦MÛùçn6æ°æ ù/7ÒþéÙÝi†åÏ©.WHÏ¿G)É›ïçHiaáüp=NQfe|õ݆‡£VUN¼Û¥A`õNkž¤{4+´m±ÖÓ^gªdjW{êïÙÌiÍé|3jþµÓq]ʹu›uEbDuÃèW‹÷}@sмŸiÞx@o¾Ãñ7´v‰²¸BAµÝ°}©¸ÊîF–^ÀæÇ»tÅ©µ‘˜VÎÃV° Ògï…æ§ñK†£»Ã–¸î{³à¾Q^ÉW‹nOTœª¬;Á{V†,GC£Â÷ ÿâ¢%lt%ÓëÍÙã˜Sš÷¼®ï‰æÝØýhÞ݇÷¢æ=CëÇš¿>æd”qí#ã˜y)NKSÏL¦ó®G­¬Ïi_³\ESƒòòµ®0§Òw+»–®_š÷‚ú$/Š–[]üÍZp—o|¤lŸA Ûº³ýï•£³§yYù]Ú.`úËw¢Ûe ªØ}ø>ÓœHЗõÅjìiþéI©ÙL’‡¯?xvÆAnfà°#*¤Ï®P{²»HÝ[„/}W¨1Ó¢w诖Kf1·Öáhmôß#­zP?G¾Ÿÿ  i.×vêùÿ]z1ôÖŸì;ù757þspÛjŸ^Ö娩*©®×RUXaSÿ¢…5Í›—âµ5õÌ 5´Ýö<~ 6A 6ïÝÚ¼âäñnåBxhÜٴö ¤AeUå¨ñrö¬óaÝ}*ô³{ûúô0$$hˆ &`š†P¨ç»¢TÇp*èèO›_r*èèa„ð.‚Ôëú ØÔæýleW¦{¨µœrѲÊ{Њ¾ày›Ü8Û­,­·KKV9ï^óç·7sUdµJ~ž  9'5?^~¸URò’j Ä ì=qಷç›1cŽ•—qDóÜM›hšŠÂ<¦4rôô@sÐ4ïÍ|»‡57"¦1,kaál©4žR’7ß#Α6>Ò.dÀÉi#rõ6±òÐ4Í»3äþÍjŸ?´4׆®SO½úŠ•°±DY\¡ ÚnؾT\ew#ðڜÚ£ Jü|D˜d¸`Y”UyïjN †(idÉâƒæ 9hÎz¾ÝC­éÑ^Çùrk“Î?ÿÄÚ ÈP›7Qjs#¨Í! 97hN˨ðQE•ÛÙ~x/k7Á0Ä4ÍAóÞþæ;ì¡öþÙ¥¤³•=Ž>hj.ÓŸgx°™Õóæ+óÿ¡œ7ÏY)³aœ7‡€æÜ£¹œŸ\êÑtnÑz´ìØ‘¨´tAjm~²"&Ž2 nuܰøý}4 —@9?ž8ãéÂpš¯¹GÄ<å\€€KÄZo_/Ð4ÍY]ЕÙjŸ?¼º·ÓÓÆÜÌ\g•’šÃ®[,­ìú±á‘$/‡õÒ‚Š;:¬éúéå ¯©˜ËwÀZ¯Þ è—¼áms×Í»›zL½XÚ0i/? .Q<8ßõ`eyÛj{u‚IP¡àBBŸ]¡†K@·Ë¢–͉™ «Ç€æ y/„éjŸ?´¼ùìÔõ]ïÄÍ¥ÍÒZpo¯í=xîþ³Ý "Õ~vÎWÝ;S4‡€æœÔ|NþÜðC\±z Us‡Gþd~W?7Ð4Í{-ÌöPkjºU»JF)ñÒ–_@TìwÐüÍYïåëÒ/îøVy¤w4G¿um§Ç™ÿŽæ4Íuwé™ï±äÍQ¦ÆM]© šƒæ yï ¹³‡ÚÇ»¤9Ìà!½jù̶æMgƒçÏô9÷âU1hù±µyc§¿c 9Msïý¾ EË9¨yb‘‡!‰®9jÛiD $ t]žƒæ 9hÎz¾ÝC ¥¹õQ]®¶ädÚwìjÞ´Ou(¿¼ÖæÍFŠ¢1‹ðÊWïÁ,+š_ëüƒmÍÏ_þƒš÷ðèìiž´ñHfð‘Ceÿ ͳÊsF$I ž>Ö<%µŠÖ@|WòÕ [¤9½==nÆ¢èÅ?Nó3çš9¥yÝ_o9¨ùÖÌj~èÈ}NiÞÃ7Ú›Ÿj5†ÁöÛ1ò£u½îÁHû÷þ§…@˜jØùÛš÷cÎ>œ=Íå•|µÉž·‘æÁ‡‡$ò%…”ö±æŒ¥!®¿|'rÔãàÄ—Ìgdóƒ4ïùÃ{b15ÿîc¨æÝ}x/jÞó1´ŸgµÏïÕÄØên2ÖYµ\Í©än# /`KSu„uÏ5 u’<6¾æË¸ý«ÛùnæÔ~›¨ãP›C80Ò~ùÆGô¥…í?ÝÙ~÷ÊÑÙÓüÐÑÛˆr:ÒÝN$M8Ýgš“ÈGè?xJJ[…¨\P‡©ß&[æï@ëQ'¬8ÚÓ׳w5?ûG#ýèlWèì‰üçÅVú¡{R¡³¢yºî¢{Â?c0ïÅåªM< „ð´ôãô£oÍ<ÓÇš.¿C?:Û:{š÷Êíw:::\oôÍyó_°6§…¨ý'4N·Ì¨x³ÁnCŽ×æ‘KvÔ …*tjŽ*tNiÞÃ7hpÁj̯Sû•ç´Ó(G·;–/Ù”{Høo ßÁªÃœÓNÇ=hyY'é„hÕ \܆& h‡i÷‚æ÷Î-lÛ‹­0ý^‡ÏþSU¶]Ä£(ã^·5ü¸x{Ü0ãçTûøù÷9~~aIÛ·±=÷yÏ4 `bÆ;SžÏ5F=˜J×<Àøóeôq§ ˜Ó+»‚æþ=§Vé|N;­½1©ÐÜv×øˆi‘Ý?uÞ»×›wˆ¯—_öÊì3üg¢WE $ h†mèÚ™îÙQó¿ëËGîÃ¥íÉì¶æ÷ër%üó n>ÿûtž”îþ,¢ŒL÷ì±æá‘ =£õƒÃ V~±C\¢íÂÛÕæ„@·mÊÒo$TSCAsÐ4‡ô×9íÍOâ— Gw‡-qÝ÷ì-hÎ4¨<t'ì´Ø°S‹«4o›ç´sî΂qbqb+ +iîµ^¥ ~Os²îݽÙCÍoݨ^¶#âÊõXâŽôîjþ²¢ xrñ­'”"ý–Gh°õù—}¨9CBC£¤cMÃ;Îi÷ÝtŸ_nGhšƒæ~zÞ¼¡ÌLRÚ¢øZãíÒ’fOAóN‚ÊóUÉQ#3Gr¡æ´l"²ggOò4'hNÌ“QÑgò+›¬,Z–}+ûoEÛšßùço|L®åÙ;·^²'lï¶æÏ·'z/:ñ„Ú~’ç­|æ9'4 ØúÆ yDz}i?­¨“éèV¤,Õ:jUÔæ 9hé§š·Voÿ»Ï¥Êå—ü¦Œ·¯jÍ»*ÏGfJ¤ÝÊšÓe½ÞB]6l`¸Î úHûsR‡qc»Q¡3jþïÍ”­¹+Ë®Ý@íþPó-ê—šG°~±B®1†aú,¸LYOy1Ÿ1_KÏÛ ‡ó濦æì¡F ³Ïº:ô§—u9vªJªëµTVÇÔ¿hž }£ySéJñ¥y/¨Oò¢hé°ÕÅM yWåùÄuÓ=fܬ9JÁFÂER£ £Wz®?uæ ÍÖ·K—<ÍÉbGó¯óâè)dôÎGÚ­úz¤=‚`ç+à£+»‚æß¤“=ÔÞt²ñYW‡n9å¢e•÷ µŸ×¹É³=Ñ G·òâ£ë´ƒæ]¦Ãjl|Æâ¡oDLcXÖ§4°îÂ>–¯Pcó:µ¯š‡Em÷TqCAsМé;ãjn|ÆÊ¡[škCWÈ©§^}hj.ÓŸgx°x‚ôáÊ®°zL7ËóÁñã‚#toØÛž'„+/ãBÍ)º§G­Ï>Êõæ¹ÙŒ³ÙënÝ2.ØÉj4fëì¡[æïZàvÒcÿµÃ·ýÓ_jógOÿmÜVð:,¤q{á³gº¥ù£1’4G:hš³‡%L7>ëêЯ舫¶ÙÜšº“/ì é;Íaõ˜îælVFº¢ð\ß¡÷u´æÎi•”D=\¨y×kÁ!Ó-  {UsC ™‹‘¤†¦ .Û£àpÌ)ý¯ÌÄÌC.î‡{®yuýöÈèYîîCÑ-jÓœÝw(¨3ÊóÌke^¢ßEí\óš_ÓpºêãØ±ï•–¿±Ý‚n?އz¾}*¢f½¿Y:]XJ[yj<æ©—Æ ìŸÞ¦ù{Ð4‡ëÍ!°zÌ/¥ùñòí’gÜÝ~#‹FîOA=—|¼ÞŒÓE…Κ3š.♬ºCÈ‘àº5{/Ÿ¾dYP4mø¢Ý‹ ÊŒ¼Oùeü•UyóÄïtKóÌÌýF×é wÄw%- tÆ6cUŽ(oJO¡÷ öÇñ㿭Щ»ÙÖ ÄC aö¶!~‹B•<ÖN™,˜ðÛ{LÎ"L#_›æÿJAmšƒæŸlN;¬ó\ y9{jLMÖ‘MYNëD=ç aýQsFÓ‡ºy¼‰Ø&åg«¾S›ÿwQð™0órKÅ%Ù|ÙÁéƒÅ²Å'MB%¼ÖÁ[*íôá5äú”ìóy».í9tíHÕíê3wΞ¿ Å-`¦ƒs;ÍQ…þÝQtâù[j¿¥¥±(ÿýrú݇Oo¼¸óDeñßE çýyòÁ™=7÷&ÿ|.L3ßuFèÂ)^Syȼ’¡c–9-·Ô²ôÛä·KË‚†8=ÛMMAsÐ4‡ôï9íp½y7sÃÞö¾ÎFÊk‡wó“w•îAmÔƒúû¯ætÓç¹æ À%¸ÌÚW©gšrÁò;È¿“ƒ9®v4Üh¨e¨µÒjåbÇÅònòr~r’¡’##„â„P†$ ”B9=ý“2“ÄÏO$Ë!‰cˆ£0qr˜¨9˜pEL°&Àh寠CªŒ<žnšN ÏiGõø{t»Ýæ´ƒæ 9VùõjóðІ9³im]MzAzmµyDX×Õã¨*÷ò>B«Í{> ÎÏo^‡‘ö¨˜Ù=­Í·¼W\Þ¡Uë;оço–^ÉW²jmÈý]]šƒæç5‡ÕcØ9o.yÉÇ µwå Å òvjÞ¼rkaá,o"— èŸm[ZQBÑÜÛÅ+t¢s</ànäÃušÓ(§!ÎØîI23tÐüÌ;{á¼ù¸qíΛ§&u}Þœ6®/AÍAs¤ïgÁ}wõ˜Ë7>¢w(„žã ç[$äžÍP¾½km< g ‚z¾~Áîûê„÷‚7Û‹_‡%îêY³çséž›¼Sgžä¿‰&•Œúw;—ýPÖ6'"®ÓµÍñž?-Ýß¾‹‹ºÍÌ<øÝ¯'jÖ#…éwQ›¸¾¾‹×ÿùŒ¨ÝîõïÎSqI¿}ùlèMÍ/hôð µ'û°‹ÄÑ]±EøÒ'?íjÞôbšš^¼)Ùõ6’pÑŸ(’ |½ñ6Ó/{Ùp~¾ïÿÝŸI¤É. ¦‰äÄ$rb"i¢;Ñ•Lmÿà —} ç>ÐÑ-̇­©)iÕª  [Ôfú5èèxgõ¾éØþ¼QésJ?'’I*î “ÂHá$²k‘O´!æ?ö4ÍY Ó=Ô¾YŽ¥ðíµ½ÏݶûÛÇ2ÝŽ éµ9í¿ÌZp?Jóo®$\AqüÑ©”מ(z¸°¡ýìÖˆ˜ÄÉ®”]?dýˆÃ\ˆ[@sÐ4ç¶óæŒ{¨!͇ˆÏŸ+1Ã/­ä¼ý~K7^Àoÿèd;6VvåÍ_¾|¸:páŽE¯>´|¡¼ñø‘Ãf?îÒ4§'"Š(èžè“šƒæ 9—iθ‡Ú»«9Ñä½W>i¸Td?QT)õÚÿØÖ¼ÓíØ М{4G¹á|{FÂŒäËiTÊ_Þ_(t0‡JyÍ q‰ó\&…“@sÐ4ç2ÍÛí¡Æ×ÿf̦VÒÄ®æoÇ€æ\¥ù‹Û»¦îž3âZã­Ææ+KÛí¦]ä´óS"‰$G»ëLœJŠèÊAsÐ4ïNÚï¡öé}K[ÿû'U6fýñ¾#í]÷C  9whŽrmã ,§vhÍ·Ÿê0ÒÞ—ÍAsМմßCíÅ¥$scƒÍFFW«Û¤]~Õ ØÒTáDÝ= C$¯yÓö)¦Û±A ?zN;hÞÝ<9õ¢~â¿ï˜š~5 4ÍAsX=9íýQs”‹s.•ï>6·\HPQ‰®i~ß°¥Bo̬ÈÛ­¨Ýx+Z^Ò ì5ðÍûßyó¹ÓذvkéÈpGÁaN€šƒæ y7¸‡ZkÃxI#…‘Ÿo“{ç5K/à‡ëqŠ2+ã«ï6Ü8µj¬râÅÀ4ï÷šÓb—r‘7ÐxH² >Ù4Í™ú{‘`Ð4šç3ó?9•û'êPu\3ó™’¹7«Aó>ßC­±dÅàߦº–^|q¯Ìwæ0¥ôëYz›ïÒ§^$¦•ó°l‚p›æç/ÿÇAÍ{xôžhþçÅ=Ôýì¾ñ¤á¶ƒ’È–Ùäø¸6Ö§´6ì·±INˆï‚ã¼ü?h ¯ˆÄ‰ÔíÑù݉bÉDjg(ëBéüÍ…¸„@ŠëmÍãâÊ8¥ylìajN"UþHÍÏm/Ù5Ï'ýà à+Î"Ÿ®±¬ŽÍPp VX2¡Qd]ÜÁ³gi_ŒLì;Í{øF{ó3í¡öº|“Ô’­OÞ¡öëG™ Fiìkf¥6¿±DzUbÍݦ'‰«Ç,Šºðx‚pלörÌÙ‡÷DstèžkŽ`'“燻ÿFY¼¢qذû“'WRD·Ã‡oóò좸¦4H¤e~‰æ±ähJäsKt%S:g¹$,Ž$E‘ÉþQ‰¢.DR/kÞó‡÷ÄbjÞúþ;š×WêöD¯©ª¯I+ÈôÝEiÿÒyòˆßC9ÜvåþÉÍ{>†öí¡ö¤Ôl¦NÉÃן?<;ã 73¥=ÔZ*ô$å 7)OÒx3rÆòà Â-sÚ/ßøˆÞ¡´°ý§;Ûïñ^9:{šÿ}õýÐ=©Ð¯P³Šðî;hz Cë9j²ùÕˆáßVè9ygèG§Wè(ÄDÒX¢-‚›LRqOXEŠ&“"‰#<=Ƚ¦yTT ýèlWèì‰QL?tLÌ¡>Ö<>þý艤Š=Ò~¶æðtÏ<úyócU7NèÊ¿—°Øm/¡âI_jÞ+o4¶ßéèèܶ‡eÌüEE¾º¦þÆÕ*›‰^²²‡mNûšå*šú”—¯u…9íî[ jó^Ñü€µõõ)rb±‹“FÚ½i&MÜocÓUmÎ×àaŸÄ0j;&.QOÝ6O\ßûçÍ¡6g¼Ëf|ˆ4.½òCpaËñ.8J§³1>x µ“Ï«Äô`MÍ÷å=—“1<îh›æç«/z-}/½¾$8u–]€Ú®7‡€æ½ÞýñÌAŽ{xôžhŽ*ô^Ôü”Ö†¿””Pca¬ñÐD!3W3b õ ~¦š£ ñ®W8QØhI¤Þ%“4=&‡‘ÂHd×°!’ookµ‡Sš»9¨y\üþ.¿ÀK´ïêà즃àÅP;gã´ð.NÎ. ieÃ= Sê»f·nûö¼áþÛ£k©sÚÏŸ¼Œ›ûArMuRö0ß½¨ó'4ïá 4‡@`NûO<§½]mnc}Ò$Z;,˜0Ýgú ÿgæŒÛ¿Åæ»Ô]C‰‚®‰fÄ/=$Òd—ÓDj;‘4Þ…hC‚9í}=§‡÷#l`ìqv!§—KìÎÿ««ª<· [Ôw[ø™zš¿W­§~”Xs‚¸•ÞÉÍa-8Кƒæ¬hž×8|øQ“Ím=‰dWÃåâ1¿ùë%$%vA968Ïrjm¾ÒR›È$·0âP·ÞœwØž¨ëܳéÙ[}·¾¨üýr1-ÓîTÖ3\¡Ö½ëÔ@sÐsÚAó­9J‘·×«ÃQ…~^IñÁ¤‰¨b_à¼@:JÚ‰Œc®9‰$Gc¢-D#jINˆIœâJD=]‰ê1m—­æíks¦£â(8;çàQøE¸0 6)wÞŒ'àC×9;3ôã°În ;D‚KwvV›×—Ïi÷¯™IÓÞ±3 VÍ!0§Öiç^Í)zBüþ-6”ëÍ·´]ož• 0*rÔüøùIA°zÌigÇ:ûNÄ…«8»­ÆÖ³U•à#øqakÚQÞ–’×fzæÆ×ÃZp 9#í½ªy€^ƒk‹ÂÙfFm_Ý=½ÚËsEûΫygÉ7*°ÑÜ"DZ–¢šÎ!Íítí$±”¡i^§àÅvv6¨ÏÖM‚±rƬµíâ,‚”g\øýòˆÛ±~³ÍW c‚qyiãÆ£É›éðZkoñ“p¢1h¡µê³rýõˆa*V=ÖœaTçì±9›2êî1ŸÍ]tq‘¼)÷œ÷5pvvrv JØ.Ôymþã5OüúÛ¾¼þ-õ]ð¶˜Þ‰>Ú:AsК÷;ͽ˜yÝòô†st¬ei¶Þ9.Ð%Ã?sÿÄýº6ºCS†®HQî¡éliî2ÍÑw•ƒÅG ‡p^¬¿v»ÏÚê:Dut6ïâ Ì×›“¾qóí¢æ~#8-Ôéjî® ùZ`BΣ-áÅýîà­lckbi»Ö.Œë«IÓËâÌ5o7*îº5ïæD‡—cç¼ù—óãm‰\M9‚³sè0j˜…ßɺ³,È{ƒLl™:ù‹nQ»×4÷ZÞÑk¤ù—N¨Í¿YЕÙjm¬Öõ ø±á‘$/‡õÒ‚Š;—{-Åkkê™jh»íyüÀ‚€æ½«ùËçYk=¾V•²æ,whŽBJLÚ»rß~©ý+×ó% ]”²È7Ù2Þ67buq_Ž´ÛØzŒÄ…®iׇŸî=ÍÎŽÅ‘v+Ãå·†H' 2Ü|ãQ¾?Wwí³…µëlˆjïjÞqT¼ƒÅ(=˜Çòê1iú•ÑUô»¨]ªK›á†ü¥5ztмÛaº‡óÕ¾÷¾½¶÷à¹ûÏv+ˆ,ÿªù§'»´d•óî5~{3WEV«äá'0 𳫹3Ofä$;T?i@ï³W¯O•çî¸úï«Ö³ÅÑ«¸GsZrò«‡ÖªX %”*4%jVĬ„PÛœ>ÔÜNË!b¨£› cÙm4ÔÉO—Åóæ%¯Cg‰½’Qv¶°´Ü¼ú¯Pí„o0˜ÿ†Jî]Ë”uk ;¿ƒ³á—‘öjãýVX[±«9ÓQqÆ*»×(wwtÈÔX¿w¹B­÷Þúsg: ‹ø®ä«¥Nk?£ÙAsT¡÷Žæ_~Ûƒ’œj_4·iþ¥°­4ïÆ=Ô:ïüþ¡Q]ϨyK¥ôÜø{”’¼ùqŽ´ñXîÒWsÚ¿] ÷ºáUý™âéžQ!·Þܮɟ™rêïÔÿú@º¿"·iN›whì±³¿ÕŬÜá¼ÂS"^VÆîÖN.XšË¨Zߪ©Ñ­9ímº“#z åzsŸ}©ÊKCB)+Ë¡ßyô›šƒæ_h¤½µzËøß}.µ ö«K~SÆÛWµþ<šÿq©¤ý5hŽ€Þ—šwØ£ ‰ˆòP¯×žYÛj¦ÎM%Ë“}—új˜iL˜,(0(iðx¹ ÓgÍV±Ó‰NÞ¬ïnekÅ:åIjjfh×øøÞ`x tÆ6Ó$•«m“æ,¬lŒl¶èmÉY áºNYß@_ÃDCÙFYÞM~Lè˜!‰CÐß*â‡MŒœ½ÌNq>^Åz½š£¡®®¹‡¹“‹S×çÍ‹V¯fqFÈŒ…þ ½Wy®Zë¶vƒó]œ®“™½ÊéaoxÚiþdòccÆÚn²ßDñ&×l™ífëüR&f«™[-v]7ËC}š—ªœÏ*ÿŠÃB fóGý>6P\:Tà7’&‰o@ʱh±±cðÃÕíd”°J*X•ÕøÕkqkutL¬MX?oÞa„Uå¨z~ÄÊ®?:Á¡¿wÐUè 9hù4Çb0^ ?ãAm{PÛ^Ô6CŽª ìŸx…z†0BqBŒ— •dŒl ìï)báãÅÉñÆM#/=[м Xi¤2¶YÏ»¥Ï›ûêÅ#¾=_øþ¨¼âXÇ+”PõüDõúo;]óÎ~ÛAóoþVd¶]ZK…Þ˜Y‘·)+½4ÞŠ–—4({Ýál½úÿöî=¨©+à¸;;ëþQuÆ:ãvVduG¥‹ÎbkuY+ÊR„bJyV³­T¶Åþã0–éúغ.µcÉJ…êc ®vÖîsÔYZ]­Œº%E-­ò& òØ›Dî&77$„$äû›ß07!äpÏpî‡srî9¾° îðµ^ƒñ¡þ‹ýk_©(ÿºOZU1³"ËE¯§¡­þôãÚ­ú¯ÎlV}¤í¶…{¨ûëoî?²ó$œ¡9š£9žRíhîFZm—Öß´/2xÝ{WîtjÿY´â@ÁºuŸå‡ü4§ÆzŒh°¥líTq;éïG—Ý´Ñ\<–}ÎÐÍÑO©v4w=­·K빸qÎ’½ÍƇÍûÃR/ôH*P×|ÔþŸyI IÉ)ª II»ßQ¯y:2ëPùΠ¾kïÄÍ ~ñÀåfqúºqÚ¼q‡µFo”yÍI7æ´£9¬P:š£¹s¿*â>8§Ía…ÒÑÍÑœœ”#íS,Ía…ÒÑÍÑœäss4ÇSªÍÑœ$ÑÍñ”jGó‰Ô|Øþû£9‰æhާT;šû‹æö@Gs’9íhާT;𻿒 Æ7ÑœdN;š£9ÕŽæ§¹9Äó±ù¡ä²Ç–?k úªÄ7*´½£TààÃÆ«õ­Μu÷_RÃÏŒã=惚njY–‘v4‡JGsÕ\B°„ò±|µ}½E†Åjn<²Sî]:±;-yãÍ?ZœÒ|Ü×{¤­>´MµéWEUu÷`ÍÑV(Íý³o>ªæcé§Ëi.de§´{t·/|Ÿš²¥ðäÕV“õmWæWu‹<\y@•™™•¢.¿Ñ>ÜßýðÒ¡WÊŒŒ´ e\Òö£Mí=††Â‹;ƒó/·×~=æñŠpºÚßo{¼:œÌ{–T^ù½9 )©[Ò£#7~P÷X™ý­ÿ:¾;{sæ¯KÿÖ¬7€#š£9¬P:šO¤æµÎ„üçæ²£ëúàöŽm4ÿÑÌij]Ö8ôÝ¥â䈯©iíô¸ðDÔÛŸjÅÞñ@ËŸT™çïšöS3´]É[ZpE'×7··r»í{ ÏL ßw½³g¸¿K{ä™§6œë²¬Ï>íçÈZþsEñ¿ï3ðŽæÖ ¿¶qЋ×77KwGs7‹vóÜýºÚ½xâ\íîhîÅjŸâ|HGÚGÅÚÁ ~n~·:ùÇËŠ›äFÚ»»¾8õÛ×6nÎÙ{®ñ›A;ãçg9Uò»ÿוŠö±i>F÷‡:š.oOS½ò›SŸwè‘9í¶MÆÍ ”wÜÍÝïg¹ó~]í^<ñ@®vw4÷bµO±Tu 1asÚ»Ûÿ^ðÌÂÔ?·v;¨@C˧¤o/­7ÈÉ«¯Ý½44÷òƒž‘gºú¾ýVèewž‹Ÿý\I«Þô¤¡³_ßÛsqÓÜe‡[tÆ.|]ÑÓO8©¹ázIÎæ×ßÿäzìÌi—yÛÆ›B 5§Ëÿº»ÜÆÇ¥t×4—¢]>÷IPí^<ñ@®v×4÷zµ»£ùø¤õjfÊÓÓ/$eUßnÓ¿Cºÿ^,z5sdg´×Þ*¿ÕcþÖÃÛ'ßT%$§g¤oݺuÛ¶E¼Ò¡ïlûë^ETœ25;;#kKAÅ—íÃÝ åYÑ몥B÷Ô”YÏï8òÉy›÷Ô™>a¾›[Z×ÑpdÇȱ i½áÓ7§“Hßœ¾¹Gûæ7œ Ö‚#ÑÜ5Í…ž½xr³tw4w³h7Ïݯ«Ý‹'ÈÕîŽæ^¬vsß\hª£~\®V«=Ò7wæWE’9íÌigV9ÕΜvŸ›;ÝL9š“hŽæ°BéhîËš;]¤ÍIæ´£9¬P:šû¸æ² [RŽæ$sÚÑV(Í}_s èÊÑœd¤Ía…ÒÑÜ/4A·¥ÍI4GsX¡t4÷Í…¥ÍI4wy-84‡JGó‰×|âVAs’¾9šÃ ¥£¹Ûš»¼N;š“®9A„„]l‡ô5Ííb‰ ›§ A¸æK¸)¹›£9雚;ÕÄìi.|×Rsñx’…d»äÉzšáÅhn¯•¡9IJ4wª‰ÉjnþV h.Ç@s‚ð´æö®'+**víÚUUU…æd`j^ëLÈj.*æAxBsÙKŠ¥âóçÏŸ>}znn.š“©¹ !K9šá9Ím¯*;/W)Š•+W†††¡9˜š;ÕÊ$šKf¹£9AžÓ\ra}\¿~}•E˜}—š“hnOsÛÖМ j.¹ÎØÜ·n F“ŸŸ¯R©^2…Z­.))ñ:èhNzúì†3!j.4Ûx4'ÂÓš‹k°[Ž´ QZZ*<¯T*_ …B‘VXXˆæä¤ï›ÛÛX¶ùˆ­Ìt4'ÂÓš‹k°‹>îÙ³gõêÕÑÑÑÏ›B8^µjÕ’%KæÍ›”í ƒíhNNÌH»cÐ-›åà¼t4'£š[n§bÙ7?zôh||üìÙ³g̘1Ý3gÎ4?vì˜Ü³†æä„}nntIó‘|Ôn :šá9Í%;£I|ÔŽ‹‹  YºtéòåËŸ3ÅéÓ§Ñœ ´Yp¶ Û6Û‰s"èhN„‡4·ÝäTâ£F£™;wî¢E‹"""/^,,\¸0<<¼²²ÍÉœÓn ºló‘oÍ ‚ð„æ²û•ÛöÍËÊÊbbbbcc•JåÎ;}g˜ÍI¯Ü¡fÝ^ó±wS›ðú@ÐÜvùz®½áQÍíµ2Y}çs4'}á~sÍgŒ{¨ÕA¸ì¡F’°z Aû›£9é×ë´ÿz‹Ö´ endstream endobj 465 0 obj <> stream xÚíÁ1 þ©g O þ½­ìÉ endstream endobj 455 0 obj <>>> stream xœìÝXSWðX.p* uÔ½êžuã½7²HØK6Èbƒì!{¸qÔýZ[kÝ»®ºP´Žï„`„ˆ¸77G|yÞ'Ïå\þÞÎÏ7÷h¥ÞÈ*+ëCåOUUÎÎÎ*Ï€ÏÑÀ' &1ðI‚I |’`Ÿ$´ZB«óCTu@hÊþõ(ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>I:Ô¹óïˆg"Ž)1H9ܘ$Á$>IR |’`Ÿ$ÄñÀù€Œ)ó qI ó¨C!£ˆÿ;‰ãAJ RN&I0‰O’†Ÿ$˜ÄÀ' q

°ÚJ‰‡»%Á$>I0‰OLbà“V[Q]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨®x¼¸YhdÃRòêã—ÞÿóÇáEž¶4++T>“UOÒßÑh$5¡ì‰ìh<™°ù]ÇÆ’ñŽÃÿKø‹¢ãP)LQ¢ì¼¼~ù‹÷Ûï› 5~?ÉþÕÃ2*Ï &O’“¼ü*Þâ­:Ôïû/z]tÿ‹ƒÊ> Õ'yô*Öü]—¦’ÁîÓÞä]ÇùÔ`Ÿ$ óߢýâWïÓc8ަ«"Ó¥#ÿ%OesVÇßÏÈTæ·NÌz 9Íן&¼ÝJÿªÍå¼Ô§¸›^¶Z|"‰Âã f×o:·}°þÔž¤{G×Obt,Oõgê+¯ÄƒW&8þ»›—|óØê o:Ф~aP%I’]šæ{"äiNê?‡­V¾j½âx²ªT­ áQç‡Ðêü•ýë0äuwn†„xí»úëA¡Ñ±ûî=}tïqQ†G;ñ/—$ÛJ­›ñ¯[ý÷æ#t4D!b‘Àö´^‡ß·º† yq¦cÿÕ›ž"KÆ©©Ó[=?uO2ß¶[öàµdûAüÛ>Û_½¤î¼`òô&9QRDzÜçøLkìù£Š¥…bì;|Pµ?Ýúß6#OçUÜŸyÜqF©ÁÒ“ûª¹?&§“ø$ià†GÜÅisZÀÄ_/ß}ôsŠ÷” <]â‡r¬h ljiÿ»t—?‘dÛÏäŽfïüâ!«×/sß÷u}õšºSƒÅÓãcRå(øuûÐ7z3ÿÊ?®`PÙxÊ)Ü<èµîÔ_SöVóÕLÛ[ýx&¯šbrj0‰OÀƒêrvv®˜ÇïÇó¸c+:§7Šãûñ÷¼òà/Ôyظ³§¦óØži¯yc©MdOêÒÞ¯ÚOSå5i½ñòlÄÚo#.Sy^0yz”’‹GñßLúü§7óB9ªT6™¿¬þá?©ç*ˑϻ¼‚S˜‘uk{¿é¶:¯( àAu}Gwîf¥u [ј.3²ÿ¸ª6*VÇJkânI“!Šd̺¡Ý¼ÓîsŠé+¦Œ*a$«‡?­ßmÓ÷­Ï‘—ï(=/˜<=JÉÅãˆÏ“*ǹïßû «T6²kÕû·ôýû ² ­¦>Ó@Ÿ6)ë;ó÷pÍãkJxP]ŸðPiÉ.˜«¼09/˜Ä(UÚj«º–òV[Õµ095˜ÄÀ' àAu€‡Â$*—ðÀü¢ò ¥€õx “¨\ÀógˆÊ3”TÖ™óY~¼éôfÞ¾ƒO'QæÄ¿©Io† ~¯©‰nѶjñÈ37ûÇÐàšºEÛ€GµIˆOýú?ïÓç­†:ºEÛ*Ä㌧û“z½UWG·hðh0IŠêôï™UWèÒ¨ñãß”ÄU.TÒ¤~¨|ó­ra˜ü$`£” <þð—;Îõðƒ<ÎxìKR?095˜ÄÀ' àAQùú•Ãõàñf𠹟^Ô¨  ä þ“ŸLb”’Çó>½åŽ3ê?T‚ÇÓ^=å’ þðhIŠÊšÓBkkM ðx¯©)ý¡Eg«ªLM “ŸLb”’Ç[ u Oº4Ò[uuÀ£a$<(*?ÞŸuC¨è<† –Í#óõÐ!*ë< äÂüchˆÉO&1JÉé<úÈçç}UÓy >C.É“~<FÀƒ¢:s>K“%)àñoj’ÜOï¿i)ªÂ#ÏÜL.LîvsL~0‰QJÊ5@¹ãü?@%xœñt—KrÚËðhIêª|µÕ°òÕVCN”$S ‡ÌÔm 3nÿÝUñ}UºÚÊ…A·yÛÌE°Úªº$ñúº tœÑíA¼zìÔÕV? $èö´¬¶j8IªKUïó@gºò§ª}Ÿ #ÛÆä¼`£”Ô÷y ã\ïÇ’û>”¤ÞÅäÔ`Ÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<êPçο#ž‰8¿œy… q gpÀƒ”óBÊó¬$ÍØ_p<òö\ÃLž!¤ÄÀ' q

$ãAÊüB<ê½rñ å¼`µ‚xÈö Z<*ïAµx`rrÉú2&Iˆãó!-èù‹oÑÃ¥EPK"xœù_©,Æ/gëÖ‹Gl\¡,I=ú²ð ñ¼|þ‘›¤Þ3þÃ7d1Pÿ¡*<ò÷þ-‹‘·çª ñÀäBb |’Áÿt_åN ó€Îÿ$ÐyÔ¡QÄÿÄñ8ó[)&x þIxçá<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þI:Ô¹óïˆg"ŽGQÉ LðâÀRÎ )Ï?²’4#;÷x¤ì: ˜÷L£®ý¹xøórdI‚‚êÜ…‰ç…àóÜ$õï9òþ”Å@ý‡ªðHÞuV#e×ï*Ä“g‰1ðIBütÐy|•;Î:ü“@çQ‡BFÿwÇõ˜àá¤œRžÇd%!ˆê?pÀ#y×LðÀäBJ |’Çç«­”‹G½ V[Õœ„ ²‚ÕV õ¢ò ¥°ÚŠú<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þIª ð<&<ü“4p<Î_|‹ö … i•gÀ3L.|Ž3>I ÈªzœS„‡Êc×6*†\ãÓylUÝ #ÛFIö>¨òÂ$†4IP@J¡ã\ïÇ¢ŽdJRïÇ¢$Áá¡*/#!% ‡BIT2‡|>¥4äÎð<o°PG?áì@šU G°ˆ"þø%¶— S2N³â›†V ŠC,]m[ZYј¶Óýƒƒë†GâÎÞVÒŠ‰€àx€Ç׋Ghð'Ñ&~h`hÓ¯ÎrÃ$ãî>|M¶`5?DVùþAþÎZ,g3~¨§¯s[¶3STÎÂ<Àð<¾j<*•8XÜ%؆šŒ°cNÐ@Þ§.äc›bãb­·C(’ÜY8ÇÚú§€0Àð<ÀC<Mm¼ºÒhVÍÞÓìíÑ ½›AÅë?¨|mÒÉÀ#,”ëÔÚAì-iGÄý˜AÜùVß±ù³ƒ>*ºÍŽÕÃ'¸|;x“-³¯_(àx€à#®?²=Ù9rœÖr}›3T©îÆ[ýæÚWYªÛ’éµ=ñ?ù7d@ç~ŠoŸ[q ä÷«î\IËIhå¼;ÿàx|x¸Np¡¥dí̓%ÄYûËçÍý^WûµFƒ¯û--ÉÜxÇ#~íO7´› CZ¦7äg–ûn¾Y1Y÷Èõ¥ˆqz¯Ú H–Ê!W’æŸwÒªÇj«µëcì˜;eŸ¢íµëbk¸¿oׯÁPC·hûc#²°6×o?*Ï#èÓWUŠÒý']êGåíjë”Mæ­~"! 戽—ó¹Âéæ°Æuö3jå7²)¯O£ Nß [7 nÜ8XMCܶȰ“ÿ€¦#ú:5wž5Åmùª°Õ›Â6[„Y²Ã8áNnáî¨|ÂýüììôÍŸÚs´m§ÆýÂyÒ»¡r wößUbŸàHgnŽÛ²2fÕ¼ó§EO5vPä ÃÀžú®ÍDÍ55»x wnlb¼Íx›ëb×à-!)®©‰qÉrìöözÞ±ãÝþý/Ì4B·ÏttÐHÝðxp#=-¶•Šä<âaâ5²Ó³V½Š#ÞTÌ›ð²•2ðø&÷xÙvøn·À*_¥ ¸åËnéé¡$èmËùá29áPóÂÆ~›ý‚Ö‰—ˆCCÝæ»qqLW˜._·|Ù¦S,u{9öjçÓ®±¸ BBße¨]»‰Ü®ƒ‚fO¬ZlnfïîÍÖ㚇o›ü5€íõ»æáiÙ5q‹£IìÆ9ÁsGøŽèâÛ¥™°™ž»Þxæø5Vklíì„"ê9'ÍÍd;AÛÏtujÙ|\mU2ªÊ{ãx×)Uðξ|?QxÅhB½ÈîmæJYmUDV[Å¥$øÇ°¼ÙËì—²ÕÑ»£¶Ÿ¦‘Eë 6vxz쌋•Þí^¿¾GÙ¬:_óP]€‡jðø«ÊÚ›Þ¿¥K^¹ÚŸáqµo+Éúݾ‹OgÀR]ð¸Yå8î÷àWZª[Ó‚]R𸥧+Ãã”!M8‘6×T³QN£à&êAmúqô·³rẙÌË<–mrÛDw¦Û;ÚËí$7¥ôI‡•¯yZ¿NîšEâû<ö/_$\8l{a§>ÍDÍ5‚zöã/ˆ^2ªxÕJÀ£aâqîü;ð(*y ûê‡l›ø¬·ç&x•„ ±q§?½lUßÇ#$ôç×ÍšIñx¬QQwÛ4³rbsVÕþšJ’ê耴¸Õû‡ÿM™Œz´Fj?ïÇ'žÅ]éH7޲™wûõ“n'F- etåO6to¦Æo®8|‚ÀÌ-:2^™xÔo!RfT%Íí$ãAŠoÄñ¨ßSGxÔ{'äâAʼÕNâ!Ûƒjñ@{¸¥§'Å£´YE£s³“žCW[U¼ÏC,ܽÍüäâEè¶®=G=Þf¨ D4sæµPt‹¶ âAîÿ÷ñÙ ñÎ#{«é=tœÑ-ÚVUçáP¾Ú u¯›5C·qËë,A<ðì<¤•sÄš}fõ*tû¥uVÁÉ¡+cVë†vÑ ÖÖõ›«n½ÃÐN¸nãäGÔÆu•ƒàB"$ΨJšÛIŠŒÂôLððñɬÓýÅ3gÊ­½A~ŸpÑÿú1™÷ÉJBƒt¹ã\?ˆãú‚{ Ôà€ê?êýXÏD¯Ÿ¢'i†j3mn”]L+ÉWDåB:¤Ì¨JšÛaµ•rñ¨ëǵöíå&5Ô`²Ì “¤àñ¾¾ÜqFýõxU¤ô 8àA¼Â’#VĬl+ìÒ3€³•wê»âãƒÏ\¿x[US A<Ȫ¯`µàAð£¬iSÙ¤EMIø55À£à‘Pþ>’…ìP¯ÞI}º‡ôñøÑ»H»ärÆ5ÀðhÈx >CîòéUè<”Ðy >Cî8CçÑ`𭶺ñðNÔÿvö égàÝ]4^ôç¶ 7ïÂ;ÌЇèã5Y gÍÂdÖÆ$)xdo5•;ÎÙf[†GÂgïóˆü_t¸ž#vŒHžœ|­è&àx4@<¤~ n£¬iSt+$iµàQ­¨Ûx£¦¦ÂÕV€5x ºöà¦O±_‡à3Mgž ,<ˆÇç˜ÌÚ˜Ä âx|ExHë½K[3Ì´´íÌí¯^”´ ·n^yýÄÕéaüÎ[·®€àx€Gõuèâ‘aþÃú8öÙ üÏаlÂøç[6¡Ûÿºv½wä ‚‰âÁƒ‡óG9òiV-\’·]½x€àx| xÜ,¿–îãÕÁ·1wûŒkw*®‚< þëÖMAÿqç×1‡/ݸrïھÙ:¶™)wÀð<oTc£/O6Êmô@çGŽþ,,7öaüÎÚL7î_?üsŽá޽{þ<Àð<¾<ž¸:=7Ý„ZgKKaëµ9.h q•ý)f¼õ·jžRÀC•˜ÌÚ˜Ä<r:¸è²ñã¤Û¡ÅÙMEûDÍy6aôĘÚL×î\JȈ×öàx€àñÍàqëæ•ÿºv}$H?=uí|_®CíšøßÑZÎ7n ³MÞyð<Àðøfð@uïèÁÿºuCý‡dµÕ¸±oºu›)˜×XÔVp2û‹ºó?‹ÔÂÝ×o]¹s))#®t€àx|#x„…:ú `K^µ×àñCÄåãn¾‚®,Éàw,þ8ßäžü ¿É¶ì&VV4&çG~€äá¡f¶V4+Y1†ø‡†¸ùð5™|Ûôr<’½…¡½­%»jÎ ž’‹+¨nݺú0!Fò>„é:«Í{ܾµÚœ\ýCÜØ½/³7ýëøýrý/ܺQã”xªüÀdÖÆ$àAÐà N¢MüÐÀІ'_-ä†I‡0ƒÆú‡„…ºò„ÚLe(¤;;ÍöáûŠB½ü={2ØSÐW+íJä¡Ër²ô Úf; ì¥x$ÆÌðŒàÆ$Æ$%x C´Ø!v‰øâQmœŠnÜjt¸ÝÅ»5]¯Í”xªüÀdÖÆ$Æ7Їƒ£©WWz€ä¿ó ïivŽö’q{k;^ 4ÔÚNÄ®ó Mâ`q7–`r",x:'háâæ/èÈÙ…U½sð:Ö¿ÐÊÙ¸°Û:òøC9üU¢µö›ô*/[Å''øˆB;Ú„¹'ex Jÿ3_-¤µ¾ãÄ¥¿Àð<¾^<\d{.²sä88­åú6gxš 1çñ ž!×ygz)ÇKÐÙ58°Nx„…r݃Z;ˆ½Ë? »ÒËW Òùsr÷ä¸wf9lTŽd²—ÙM ‡ÏàVÂ#qgoébVºhIt"År‚ªÜ‹»[„k·v³Œ):x€àñuâQ©ìíwt¦û¬@vØ»u£û.p°GIÄ!â^œò jåÛ߆#0•ö+a! l‚z{û„†r½ø­mD.²]… ‚¼û±8c|ƒƒ+=Üß×¾Ó|ÞŸ`‰(¡âÁ,¾\ç›Ïõµ´ðý ;ieþ•Ó:R»í¦“ñ¾œJÎ67ìÜÎu'Àð<0ÀÃ#˜7ìJ«ï>ÐheÚß]nåT>îÈ\y¬‹|Ñet Ë ™Xûµd¹1$qÃàuå:Ǥ¿D3¾oZ[9¸žü–lÁF±ì5(qocHùkY!âî,¾™tWaAž½˜ì‘>bqÕ×»ÖÛ2§u“¶Ÿ*QõòF||t/v0ëk»æQ¹’ÿØ¥¥=ÙÂÿ zá.Ñi©µüÓè€à¡âLfmLb4X<8«O™²s»µ³ C4¯ÿSÍ~Q\4ΉÔêßÁKü¬-·~:h­×§%Ãk‰CÅ£XvžÝ$B‚»: Ú3˯^Ô¦{:[°I\™“àiÖ½½ƒ}CCl¼ùšÖÂòkÒ"¤ºÇ¢$—þ:'"ô½ííȰ¿/þñù̹æçta±ìS´¹úç/1pàh¤‡×6[Ý¢m¹¯2Ù»c eŸ¢m{w}ðÈNê'¿^ë£yY¾¢ÖÜHVzv=^ #Y»ÏkÇoWЦÀÅÒð<À<„¾ÉK‡?hNû@kò¢ë˜ƒ<´ ñ2;ÓUóöªëäl/~µ=pö~éØ1ÿnXnß\ß›'7ã#- Ô‹¤~TÞþ¼ö‰°ªrœ&çÒ¢ÍV‘ÔÊÛõ»æñ –¬óÈrçkÚD²ë%‡Rñ@5ÀàT«©I#’ÀKâÞ ïïúË&w´ý¦«áçý‡ÔŒ(“c5ÈÊó¿¨ÿ»Ô w¯L9'3­nxÈw$Á™áÁp`¶´æä+l>ÀC¥„¨UÅC“j382BÔåñZNº«?úä¡™ªÃiQ ^(õ£òvåÊÛ¼ùÁ€IÓúµ+%Ågì=vfÜÀ\'Â+’縃åncn³}ÓöuÖ/X½ÈhýÌ.v#hþ=i¼î´À.´ ]š -MØŠ&ÒV31 ý,H«I0MMDk)hÔiG§žv=³O7™¾já*æ$朅œF6V]XAÌ´}™%g/\¿,Ãã ð…®ÎýA/ÏA·/ôtÑHý›Ì:TËÜ–uðí=6ð<À£ Î+ÿÒí·ßÞaOï¾*육¾ë¾÷›£ë?q°mç>Nm› ;}'jÕ(¤‘ff¿=v´èÒq¤÷¨)¾Sç/^¹iç–µ^Û¬¦°7ZÛ;ôt‰âÎ&fü–“w~oÁ…#'þ.*¹|VZŽÞ}e=Ç6Í”IãøôA÷Éþ=/ñ\Š_QçˆÍ´Ð¥M½ëõj$nÞ\ÜVƒß¯¹ÏÔžþŒåáÞщ‰HŽ&]6•£íçzzµê?¾

Âv$ÝšQd4ã7“ ²É=h~¾ÈîÓ\¶ƒæå׉찰Õ\) µIW:¨æ:´XCóx¸áQ^I¬G­†žJ<ÈÆãÓ%tY}~-4<þÑ×—~—j´=}i¬…´AvÍ5ƒ4‡9[è¾h›“£u æk¨žCZ”Ž-Ym5fÚ¾¾7¿öïÏÊÁµÑB·uz”\Iñ(r°»?h t~OJOµõ²Ÿâ8UÛ¿É@ý-¦[âØñ919Pë#õ£òv*!ag§¨ežv•ß"½ðN \;›ïݾߺr+àx|5xäf„-íñÆptÊxÙJñ8yx¼QS“âq´ír;Iý¥ÛLÖ[Ôfµ¿ü}¨Ï¸.yŸGTxµï󨹜]¾—{© UlâÖzà‘“±ë…žnåk§VÿvÖss1öœ×:¨õ«1~“üsG9ªvJ°`wýäøâ/5¡T[8¦í¼ÛÆÌ[’?yrìâÅŽkÀðP5Ÿ–êVZ˜ûi©n“W½§Ÿ K§xÊV9äã!ßgT¥BùxÜ30~kôô“nÜ34¨ëNˆ¿ÃœÄÎÕ!aÐs=½ŠÕV m4"ýRJ^šEªU¯à^:A:&‹L´8È••‘W79jú¥&ÔâÁßh²pKs;cÆýݵëC--4xtå…ɬI ’ñ P¤à‘³u«ÙffÔãq±ê5‚xHúÌ´BGûÞçÁuœ¹ÎXCÐrÙâÕSׇˆw¥×š© …x8Z³ii‰Loãׯ†aƒFRçÎy¨­-ë?Àð<”…‡ÔÔm §ºÍ1ÛZ=|u¿ÛJv#"'jœŸQ+ÿÖ]¸sW‡H[o0¬á—šP‹GÜ¢E— ÑÆdúä9æs¤ƒh$vñbÀðP½€GƒÇCZèéWïÇ~uxÈ­¶rsŒa;½±¸Eßy‰¾Þuxƒa•_jB5ù“'>m0™,u~‹ öt´FÐ8àx¨€ áL£k:”5mŠnÑ6à¡$<27o¼«¯ÿFM Ý¢mÀƒJ<ªoG²B ŃºîhL·š%» ¢à †5ýRß…JÆ#vqEçJÇ{D{ÏŸ¤GÌè<ÊåÍ4’[õüÀdÖÆ$)xdnÚ(wœëáàA.¨Šìmcg6µo8hGJ¨t°o0¤àM‚6å×<ji¥Î•¼`µÑѼ‘HS0oÖ—¯y¼ú½0S‹›žú ð<”P×Ú·—›ÔPÿɬI Rð¸×¥‹ÜqFýà¡r<~3ÙpÉxnJnÚÐàEš‚–VtzfZ©üC|ð°)_m…´@ÝÆ‰aÃŒ¶·°™«ù¥ÕVw¯üü#ï€]Ìî4À£Ú:wþx•¼À^ÀÞ:Ý¿¬iSÙÚ(jJzÀߨ©QGlÜiLð8^ø<Šì‚eo0 ŽíåÕk¬ÕØ¿zö/´§ºó­mÿÁ±ŽY²8òd· Ó [Íã:}ŽÇÓ_è%zð8<$+¥.x2£*in'R|#ŽŠ uÝ ê3än^%£ó ¥iÀj';{ “;Îw TÐyTÞƒjñ ¥w!ŽGnJiå7¦åel°®ëݘ÷“××}µÿ¥&Äñ¨ß:j:®µ®ŠÇ‹²ÛöüD‹¿Ÿ?ÿï.Û/³NxÕ1(cn'-èù‹oÑÃ¥EPK"xŸ{&‹Q×þƒ\<||2eIjß?^óMj‚Y3‰L¸ÙyÊbdç^Rá¼On’z³} =¼Ð>Oî8glÙD%;cOÊŽ†´ÿP'‹Ë’/"ÔÂ#÷i†Ãç^èV~ƒa È¢ƒ¨ÃÆ•œ8¢V«_jBpŸì€ˆƒÔ鱯îó4xÝ'[ïø„Ç»'‰ ³N>øMne—ç9¥ÕgT%ÍíÐyàÕyHý@Ý sU²Új¦)«­°jHÙ ÁÎC2ÍmÞˆº tœÑmÆæ:ˇ2:é>ƒatNlÈž3<Œ~nsâd“_Bfí­ù—š¨ªó°¶ç¨‹4›sl,mí+ðxuq¼ü»RvÕàÇ·Øy”~4 >õ{ SY ‚³-ú_?&ó>YIâ}LºŽ3âúLð8Yü8jHÒÀ=Å´ß¹5#Dpoý8ÊgTG¯qCÙž6Ÿ/ÕEØÔ$Ççx2£*in‡ÕVÊÅ£ÞE.¤&1HÁCVªÅ£r©RŠ{÷ð<,b€ª„Üäv¡uÜVœ´·ýü÷ï–ãaÃàzè1=Ç1½WLëv+Yþ­Y.æv Yþ-YÎL¥5‚:­YÆEçT\ø«tZ+ˆ¿˜°ùÀð<ÀC•x ŠrÛú—?ºÇç¿%áØºôfxÙ:Ìfzü ‰ŽCþãl$ÛÖ6îík•†Çxï Ãí'¡súÓÊ„ûe¥HŽ"t x€àx¨É»ÕÕÙîðSã ýøìŒL¹ß¿›þÏ8†ïp®=×Îq4ç[çntŸyÒW«l]»Ð½+í•«u.ëÛ Ú£sZ ^ä´ø@-å<Àð<”[Eö¶÷ÈÈÏÖö \&¬øý»y™¯Ä‡ò_âÔ‹®<¸v6"MtN£¶ÓJ’¶×vF<Àð<”WÒß¿‹6cÀð<°ˆx_ª~?:Œq>ÜådVæ$Gz!ºU-½Sú”ÐüßÑ*þ`åÚ„²'€àx€Nx0v±ú /ú®x×€_Ž4;ú»†ä/Õ—iu;¼t»d6·q^?ù¼V“´FO dž1l(ÀC=BýÔw¾ïÚ(0ð<ÀðPY%ä&k„iÍÉ(¦•Ðs‰4cÚs,ùsû=Õìζµán*h§~iÊ:w¶¥hJ·;CW;)®‰]3ÛÛ€à¡ú€àQCõ üÑi¤Çò ©¯Yqé¼ù¶)àØÚ°–\Tï’D/o8èó.µ&â(é»ú›¼k,}ÍJãý$‹²ËÏÀð<ŒðÙåla9ÎψfÈYÌ.¦|Fú¡I§}Ù’ÙœkrX[ýï©ëw°­„Óº¾nÒm'Kéxlüy3w·|f++}p®Œ>àý ÷W¯ç/¾Eû…B…δÊ3à¦>ÇŸ$_oÍ+±qÌíÑá>s/ f:¹tÔën^ÓÐÞíöp¾ß¶ñZ›ÇW¼h1»0Q¹yÐ9]ï¼yöæOƒ1ñZΨáû"~˜®™üwó.Âõ[*0ft}¦5ÜiÓ¥~HºÉó¢+T¢gÊl†¾ïçÜ@:eƒzàx(Lx_ªaiÃiì»ý侯Ä|ÊÀ¡_hWvbsÑÄ¢–jLX¹U¹vHðHº²ë'Óþ—ê6{?ÊäõOj8†€¡<…IÀãKµ¶`=Íy®ûØž·š¡ùú»'{Ç,11EsùúéI'ñfÚ§G36+™Žr<ß;ÖŸÓ¿öÇð T€à¡0 àx|©Ü‹½hžc•.C->Ð9=ýø×®Î]k Bx “€Ç—*ê| Í·¿ªá| száùeÚCÀƒP€‡Â$€àñ¥Úsõ-°‹ªá| szkÂ@]ïFï†ýX–—U›cx*ÀðP˜ð<ª­Ç©I—Æ÷Õ÷htµ}{¡‘‘ åΘÎéuZ뀊_lU?Bx “€G5r¤$¢9ú±M‹W1_«ÐkíÛ£sú²)­¹ " ê?CÀƒP€‡Â$€àñy½<ÍÑ/ÔhüŠùõªÂ£¬iStN%ïú ùø+u[´Px Bx “€Ççõ^SS:MË:4ƒ« «åÇ«¦45áÇÎcø0…Çð T€à¡0 àxTÓy ŒæègÍi-‚>v:¨ ¡‘‘ü5Ý9 !àA¨ÀCaÀðø¼§&¡9ú^+ZGŸŠùš¯ÒkæèœÞ?¨½o#Ôs”åg׿„ ð<&</ùñ׾]w4B=‡@¥rlùø>š@«öÇð T€à¡0 àx|©]ÿ¹»CwÕ²!ý@çô×'Ðøík Bx “€Ç—*çRþöUÃ!ù@çôăS´Àε?†€¡<…IÀãK•òWÚ˪†Cò!yvÝ̧ù÷ªý1<àx(Lx_ªÀs‚Ùkg«É:§aEÒ|¿7PV€¡<…IÀãKÅ>Á1™k¢j8$èœzþêCó˜Xûcx*ÀðP˜ð<¾TË÷¯´k§j8$èœZ2insJß?/8œÛ×6f…jWÊ«/CÀƒP€‡Â$€àñ¥ú1mXD÷UÃ!ù@çtå¡Õ4§åŠÒµ]vßzúø½‚cøíâqîü;♈ãQTò<‚øpÀƒ”óBÊó¬$ÍÈν„)»Îc‚Yç…à¼ÿË™—ÄñhÙò°Æa‚ó>·—<Æd¥Ùš9{…ÍùýÙ‹ZC9YG¿]ýfži1/$‡èÅ‹?FÛe¤Õú‚ù7ÑyH EüßIÔ`‚‡¿xr^Hy“•„ ¨ÿÀä]g0Áƒ¬óBpê?ý[)Á=tOìqàÚa ¦,=«òÕM–žÃ·n•Îæ&[m;XV û8X퇷w)xÌß¿}»}©qSܺVöôç#iÚž'ŠkÑyx^Hùáý< ¬¶R.õ.XmUs‚xÈ V[‘{^Ný«øÎÙv;ÛÝyúàcçaºÉtû¬mžÍ-l—J^¡Ú>Ò¯³¹Õš-f ÌÝ5,l–U÷²‰èœÚÛ#<ž½¸b- kd¨æ–í~ýE WοÝÕV¤àx(LxŸ—G‰÷’}ËÐÆ§—­$l+w#ä„)³³•ÇÓr1LÙºV;f(Ô«ÚCÀƒP€‡Â$€àñy O¹óx)CÌ­˜¢ÎcÛlsO5 »%',Yúw6·\kj¶Ðܽy×<ÈÂãJé Àƒº<…IÀãó׬´¢µoü{WŠÇ3—¶’kšÎM+.o¬5³ïR¾T÷;K÷·šmV¦+¶¯@çÀƒº<…IÀC®ÇÙë L¤ÛU_¶RÍÇÂåæ•ñ(ˆ¿˜°ù…Çð T€à¡0 àxT.ÔpèÄè½q<qÇ¢sŠÌ@x Û"t«ð„ ð<&<ÊtN8>k‚ìSðÐ Ô’à¡Q´|Bj-å(<àx(Lx²ºùä^·„ïÓÿÎŽÙP˜ù› íÆ^ö£vªDŽÕÛV«‰ÔÐ9M[[\L+IÚV\Ëcx*ÀðP˜ðÕÓÛ÷¤V[QQ€à¡0 àx Ê»¼µçï_”~zèâ%c“Ôƒê…>óN©°ó˜ÍšÝž×Þkª—d©îÛ×u:†€¡<…IÀãÒ£ëݺEŸCÛ7ßgdŒ__ ^”ùJ¢Âk}vôi?òP«CÒ÷yÔ©Bx “ß8wž>˜³ÛxõÁµ’þãü…^;g„¤‡¯=.]m•Uþ ÕU²Újó–Í çiÎéé€Õx “ß86…öCv ½ðÏÍM){;:„†<]ù«Ydü5Žú}ÌaÎiïßþxó㜥Àƒê<…Ioѯ!z±ÄEõ]"–ìÌùóÞ¹;¨ž=W¬ZÓ/fKù/F¬ë1<àx(LÒ ñÈÞ:ínÛÆh´×íû„.tibØÜÊô4ÚIõNó ícD³ Ô´¯‹Ûù­âu>¦ãNÑ"$Gʙߪ½ªðXo¶^M¨–ß6ßr­%à¡‚<…I$LZ¾? <.*hëâOZÞëÆÖbsCéw5~p´ Ûkë/Òà„:Ç7|<îÝ»ù81îÙ×ÇIñ÷þ¹…FÄÿ kÑVÛÕnSÊÞËî}éªÂcœÝ¸1–c„£„ÒOª ð<&ixTldždmŸð¬Ó윱ž‚àŽÜP×p„GïC÷ܹ3BŸ)èb-ùsªÍ9âÙâØttjÞ¿(..ïÌGƒ-vd°Î?yŠŽUµƒõê÷ÂL-nzªôïiËÝó÷[ÏcÍßun‚šžgm~ð0FmЮtÏwÿ¼ò[ôN[Ú M({"^“ðäîáŸ÷Œv,ÿF®©Å7o¢ÁûçFKÿd¬´Ø)><~ämWÃ×'”nÝ‚nßvëÊIÝÔ<¤¡·GÞù 5Uá¡ë­ë;Ô×l£࡚<…I&ô»Ò©š~°ÒG2ÒE‹•ðHˆsö¨Y›GÅEÆW´&néJË®nKù%÷Á‹ß<-*Þ­gŸ¿§ìMõƒåÇðä°‹Ù&ÅCîžÖžW7x•?3‰±/rùûËÊž£»½|9å½Áò×gn—¾¯þ¼(ÆãÁùMqÇR®Ý½ñèöÁŸ³uì²ÒT¾Ãý#ÙÑ:Q¿ý}ï&’ãI¨X:~õñíi~ƒû861K޽ñø¾ÂïB%ÛMLÄÓ§§Å^>RÏ]×sš§ìK óߢýB¡BgZåð Ó€ Ÿãü1Éûì¤+'—ŽzÝÍkÊSçÀ”VöÅ„¬š‹?deþÇeµµ=`“úÝ93ó•0쀮í1^ƧýÔf0=åÏ1v9æIÏ,]slҫĨrÏôËýé;yŒ /ºXNý•öçúîØ="åß[mάô{³¹Q3cÿ;e“ù`À$é s©æBƒ–cþ4ºÈ6[ågªr8ûBçûû§\žc9“Þ.p²6ùìœÖåi@Ãå ©8ª²uªGAç‡Â${ ö“Rè8×û±(É «P’OŸnyEÝ0|Êa߉î5o›ñßj]"ÍY+è^VL:Ó¾sÅ‹<Þc˜L”ÄÛÏÇÛׯ[Å`À O_ÉHµƒ>¾S9¼qî¾^¾¾“Øk}}ª¿ç޵ץmPCÛ•ÞÚÞJ“KêmÏÕE£½kÝ㘹³ßÇÇ–ŠÁd±jQ]*¾‘ÏX»ò—¶3=ZX¹®e±r&N<:t(Řg6O#¨E/—¹   ñÚ| Éì–Ÿ«ìÊÍH{¡«{šÉ@Û!)áZ~Z¿¬¦¿ÐÓËÍL—Þ¡w΀à¡0IƒÄcÿðþ[-XÛÍÌGvzÞn¬»•õBºws+çµåxø˜y«UÈ!}Ý’i½€î­nå,Ìüðq÷õôõ5q Ðdû³>Më•}}WÛôqñõháÛŸÉû„Gu÷uç¦L5(í4ÓÚ†§n±ñBSµks· ÝcçvÕnR´Wýð@Ť³¸ é>êV.ëeƒLkcº—ÎbEÍ›·s¬N'N##-ÍèÒ;ü­¯9>>xœ²·{0p€t{ŽãÜuëÐ)r´!y”´5±OÿPy÷öñ3dðÖWQáã ·¬½UÀÚjïùqÐÇeÅMži®~†ôºg»TÜQo<$Å`: ðó?}êØÅÊ{“½Ézó0îïÝš¸ÏžÌdV|5ÉÈè–×Ê <~7ÙpÉØm¦Gk Z%D'£m4‚ÆÕàx(LÒ ñ¨õm†ÓV0™ÌŠÖDÒyøúMrð³ðöñðõÝäÈÓ`û3Ë_‰ªfPV¾~Ýå»§¥ùIKcœÜýÜmR¦é¿Ò5²³ hÎöÒ½2w» ¼óxÙqJd}:» ÇUL¶‹³ˆÂ»¬ûø¥ ŸæÜÍý]µño³rÕÊ€¥õõ2õhÛíÚZ²D Eö÷ Dß‹&wIË;ÀC5x “|Ûx0W0ÜÛ•÷ -è;¦1˜™’k¾.þº É`+kÞb/é5j«ÃCîžžn1 †Üo.iƒnëŽZ¿Æ§uùÃ}\6Ÿü¾%êÞ¶ísØÂµ^×<Ø«˜îí+»Og²åãËìWµõíÛ’×Æl¶™Ï|éQŸ9~Îĉ趖=Õ×<ôtÓÙë‰ZðvÅ¢‘Ó +¸æ¡Ê<…I¾m<ä«â‚¹ª«®/[¡ÚÂ5ï>¾¿]»€vŒéŒÄ‰6ÛlëºJñÈNîWéE¿koQß²ºýe㹨ç@ròew<¨.ÀðP˜¤!á>Þu”ä‚ö4´-d.æíilœ=aBÄhÓÆoõªj÷`m±½È&ëМÙéë×ù{º×0¹ó<Ý3Ö¯­Í=•ÅXê°l¤Ç(Ý@ÝfâfÝý»ÏužëoìLóXÂÐŽ%—,9(Â#'m6W¨)îcà¿òK÷<¨.ÀðP˜¤Áàq£cGHäÇÿZšQ?ŒäH0š!»Ú¾ nÊYà+AÀ8‹C¢ WîœR2nìµ=·kͰò˜šê¼1B6§£m)©hüß¶mÑ}j¾gê î.]^«©¡Û4“õñØÂ5ï´`ŒÇ˜žƒ› ›w ê8ÂsÄb‡%ôe~ž#’³ºg´+ðXáI"”á‘Ùb‡y~g„À—Ùð<&i0x”5m*Å#u(íXwZaûÙÇ›û_sÏZôO Þ±ÒeÉ–Þó×35;ŽÌÊQ ^È]àä@®È^¶Ê[¾ ©°c]úªTt‹¶Ý׉‘諲‰¾Ú{þÚÌïC••Á´Úûáéç–~u‰Ã’é®Ó‡{Ž0äuÕi¨‹4 xèÓ¹ÛÖ¥·ßÃZ€fvÖâ€cMOP+Ü9j'›nMºTà‘—Åòðo,ngàÁªán€Õx “4<®ëèH§é·ßÑ.¶¤,>Ëiò„ë ÚÔóÐk,nò°¥ZÎ »6c­z-_¼fÚæ•œñŽÆf¬×ÉÖÑ„»1>ã±l¿Ö½{úúufÌH‘Ú±n-—›î?¿çív†•åx¬Aû³G'g‹ÊšÇÙ°}C€ÉòÀó‚æMãO+7T8´»¨»¶X»IH“öáú:÷õé7Æ}ì<§y¨í¨<¡#9зð‘Tô]ñ>íÃnkÝ”Á5xdd$¶÷š¦ÆîóŶðPA€‡Â$ Ù5ékVè6lÁü¨1÷£´ÉØÎd,²6g³9hbÇŸÌÆ Ùº|Ù’å3×Ïo6~³S_{-]Ý–¼–è"­æüÆÍùMi"f|ÍV¼VÒjÍSkØTvŸZ–Ö†GC»¢ ÚVT`šÿ4Ÿ!4ϱ4÷i4×y4§4;3šµ=îO“û¡|-ŸZL+‰ù>ŸÅd+Oåã‘à f7µéää“Yã=ª ð<&i0xÐ?®¶ºÙxýŸÚÓ‘ÒkàZ´Ëèe*»OâŒé÷µ´8 |ÑÞ&Æ [DK¤±ñE}}zÕÕV¿÷é³yw ?«í~û9QèmÇnZ~¾o·j: U;ö†r/[ÝÑïBÖsiç! /}ýê+Å#57©• £ÆSFdRÍ÷<¨.ÀðP˜¤!áQmù®Y}¿üýÕG‡ ¹¨ßmûLsšQÃ5üeK¿tÍW¾æQí=Ï5ó—Ãc×FRðÊQqÍ£Òö׈‡q¼‘culDéy9€^³àx(LÒàñô–óæ•¿ÏcÚv'•CZÒÕVRcî˜,YCÕ½{ù*úV[ÑÑW¯õè^ó=%«­ôËW[éwÙe²¬¥º(|e-Ð¶ó¸ø¯Çtç¶áíy˜†&(¼3àAu€‡Â$ßµ7¦È.Gòî Þ½¾ŠîS›{Ö¯êñó¯ ˆœh­p-Ë„Úaj®‚¶ðPA€‡Â$€GåúêÞaþÕá4·À.³wtïµÉë&xG˜nM š·ðÀnv<…IÀƒJ<Äv¹sW/è0,$-}ÌÒ˜õ"4x`7;€‡Â$€àA%“7ë s´Ò2 Ô k#àQ·:wþñLÄñ(*y Aü8àAÊy!åùGV‚fäí¾ŠA&xDEဇ@x÷L£®ý¹xøórdI‚‚êÜ…‰ç…àóÜ$õï9ö\”Å@ý‡ªðÌ“Åàî?ˆLýá‘GeIöD¦þÀÀ|Y âý!×ÓÝâb¬ã¥½&&;; €‡ ð<&Q:hDúrV³>Ãr«},à;9©cØÂiщ9Ù!QQíÙ®9Uz$ÇitôÊ?MÊL™dÓs§Y’[ q6Õàx(LBIç±o_nlñê>¯»›Û x|x¤-´Mß™‘”›¥gP Sövn Cƒ»xvYhµðNÿEŽö€G­¢b8;€‡Â$½l…*Ýæq«OW÷%Àw<òsS’c{ÒËÿŽ!=deJ•߃û»É†KÆÆ™ù9“Ã7hò[qímÑ Aã€G­¢b8;|ÄãÆï&s9ŽÜ®<ÅW;He oF?¼òÓÙWþó8M»‹¶R„ÇÇïÛ¹(±Òyy÷Ï+¿Eï´¥_šPö„ºó‚ÉÓ£”Š æþ——³O¦åîÏ+^ÓûM×õ5vö+þ̪÷\Ù„Î`­a¸é[ ñæVî,+Àƒz»ÍËgMjØÂJNT;Hvçq%º¬u%<>•¹ÇHí'?Ì·¦²ó@t©UÆãåËÈ)ï –¿>s»ô=Õç“§G©²–êVZ°{ ó¤Å”gèÓ&e}fþ]›kˆJx0mÒ]f3XÛ˜ìÅ /5+×€õxd§ b‡°²$óxfVRv¨}ö§™}KŒy[¿ï&±‡ÆfgHGN3¬^èéI×\‘‡ÇëÇWØ~¼Í¹1+NËð°‘7CV€¡Bxܸ" ö˜±ûï’½‚é2'ª¤ó¥GZµúy©¥/[Éáñú·7};¼Í¹§’ó‚ÉÓ£Óߪ+‡Ç§²b8èZyÎ<¨Ç#'m¾-PHZlN–HhKÛŠkâìîáý›ð»¬w4®§wÐÀËÆsQÏä8,ä“%‡çÿÆDzÏ9úàòñÙ%€‡²ËÅisªÿàøÓnüSä5©Â‰;{«¤ë½Ÿh óÚF…_ÄãiÎ[­noWþÜyÊ›Ÿ)U“§Gé×…ƒµœîÓ‚n·ð üܸøØÁÜ šU`nØòøì]y™Ë’V4iÙÜ}]L"ºê3ŠÊßçá@bÏ!Ã#—?,íï^üw:ÓoÆ'<4ºä5+ ‘EÑÃg•ŸÛ€zwÃÎZWpàäu )b‡q'îŸ;Õ_~J<,6…wÓ¸9n 9¾ŒGÖ[õoy'^>»ùŠ÷ÓûœWeÔ,ž“|x0˜kž-è;æ0™Ê“ð¨ÊÅM³Õ‰Ðm'ÜÅÙ#4-ƒ\'ª©¼ôì =ùç3ô¤-Ûá4©j·QöôŹS™¸¾î×ß~<Ô«tÖ§«IÒ}är´ÿçƒdûQV§^ÔÐK4ÙN_ÄãåÉÿzÿTöàµdûAü»¶Sá‚y½ë´»Û“^½ÐqF·h›|<¬t/ +÷YJ–ðPˆ‡w¦_¯¨^]"ºêî OôŽLÉQüçÇI¨l{ôìª:kÉ¿ZõâyL€Ýô3•Bõi©îíhîgHT;¨\<¶¹LèøÌp¦­Er|_mð–wòåó[’Σ·=tõ–Cz…géF=ü¨Öº·%rTÁÃׯ[ÅÒ¯€µ¾>5 Ö\;Ö^¯XAð}ÆŽOã>΋ 5Ñx©áįÚáÁÜÎtéN@ß½Ýu)“R<‚²£cÇ´o?'Ê´µ5SH<lTzÙªâI[ÝuŽçeÎæ åx;_ƒÎƒ¬R!eUÞL 7-ŸÊ·­Ü­­yzÞÊä°¨²T·êªÜûÞLÔ‘Œt›ýæÔ*Ï &OR2ðxÚ«§¨ÿ¨/²¥º•ìÊ úLgPØy -Ÿ9Qí BBÔ+ãá–4¬õÓákƒwØf ×z6Ì4 VxØŒ¢óô6[YÖ+^èvJ–Ãi|œ˜{90K0*f´V¸Ö¯ ,£]m¹BÏ„]TÊñE<>-ÕmæhrìÞ“•žÛ€¡‚7 ZÀ›%!ˆÇ[uu©G{Ð.·“ÔE½æYûrtª,ŠððÜ~ºmÇã,O´íÇšú í˜XÏÚàaoH÷žÍb¢mËQßÊm¥’ñX¾yûó ­EÚ’7úØî:¨^8su|tFÅrdÁ›©/ÀðP˜„ ¨ÏâQÚŒvðšÃÚ(k ¾Æ€Vy®òŒ÷Ê: ’oë¯htÍv-ßv]uC³WÚŽÚàa;‚Î3@SÒy4µòš¯3¬Øt#—™ƒ:jóµ—¹»ìnuÔs~.’cí¦¤ôuú÷̪ËÚhÿoßL€¢8³8>Vep ˜ˆ.YaÊQr a Ô’‚„€n)Ä5£ "×0Ù(ÈpŠœÂÈåDDbØ b&r`9‚%kLtƒˆx0D`ÙÝOÛôÂÄfè¦yš7õ¯®¦¡»óÑó~ó¦¿áƽù¹2÷N)L‹<2Þv’!þRµ`HYýžÇ„)/«¨ˆ>›½9G°Vààá ¯­ž®¾*g•sÜ»q†©>n{(sTªÖå3.øˆÓçïš¿'ŽÜyÂ\󾙇b7Ì%Pà¸{©_¢nàGþ™#ÁÝý–†F—®nµ±1Yöjh-ôo}„;Þ½µ,z™jªª™Ð,Ê2ªê7UÅÅ™¶YQ£A‚õI´3È’{ä|²›ª`ôT]Åýò˜LâLdäAúä1dd(S¯Iÿ1]òøn– é?€Tm Rnå16g Ï~TUêp:Ö*Î}“û2‘‰j²ê‚˜Eö[m\Ö¯ó òV¶î wøä8;—¬^íâ,ôÝÁTÿ›•;fnî7N¨që=VHlè–‹º|²eP×úh¨‚SuC=>oÜ’€Þ ôÄùŽŽô²Þ«©éðáÚÀ?†òSø¾A :h"I·‡m—95ÛŠ.åÄÉ.e\ʃô2ò ý‡‚×öÓ$sç«D0þþ*2ò [88ïŠ ]¯Aå±ÉT¸|(õ KòHÊ{=ï³+su[nñPßûšÚ>ÝçÒUÔökê&½bgçãæá'ÿ8<=oÏ›wEO¯Ö‚,ûæÍ#[¸y `…nnÝ‹Së!Á!ž~žŽþŽKCç<ŸÈ·ñ±ñuóMuM ˆ™^Hùº”ÑòP¼”‘:4•hl>uDÎ2òˆO4ã༣f¦2÷NGÍͦk4žä-? 8$äím%¿öð¶ºJÕÚ´øÚ}çüJ*íŠõ’}ù±Ï%.Ÿ™®9ó€švŽáª‚µ)ÆÖKª®_ìùévÿÐÉþ›£zzÒƒYÔ$d}Ô@ÿÎ^z‹‚!r£ÿæ´‡`Üd˜ö½Aû¬MóÖÍÌNW5™F ªÞ]s_©øA€”²1‡¢¥ìiê<¦úЧ©­XF—ÚOqpÞ§‹eêõƒ²SÓ5O„R+`!©Ìë"Î(?ÔAj7Y‹Pët~¸ßÿõw×Äõ_½_šbux»ÎGµÔWg¤ÎŸ!ž9[<AæJ»¸U¡›t‚«3Š/}} ÚkÄfõÀ‰¢_•<Úú¿•|›ïú·í‡¬TÄóæ$ómê6ÛöÔ\½“ú›[éÉãO‹<èRFËCñR†ò˜ü E“,›ÚK8;/)Ùä þæÎ%ËŸ•LïhüfÚÿ/Ó; 0Iò?¼H:º|sÞZ§H¡oë½!i>ç[‘¶m§µ“POSl83Mkfú¬ùqóWD­p ÒÙ*0f~”üéþãµ'ko4|?ðã„ÇLvi8ÕLq²~hó…É  ¯èȰñÊ«©‘%YŸ´<ò>¨«Èí¤$ëy[ë(Uœ¼ZÛœ°éÜ–å…«ædª«ˆ5I—öRÚçcá™M_ôÜêÕ×”dÓûædŽÜ»×÷´ÈCús){4ÛJ¹R†ò`‘H4í pF  8$CÙalŽ’7ÔÔzïÀ–ÖöÓ¥Ÿ{sidÀ;ÁžÎBgó¿š/[ÌOáó÷óõõ-’-œ2ÞÞ\ð¾ \Ó—ÕqðDwIõ?/üývgòÇm¤õ¡üA–ôº²¹]˜'Óø*åZ·†îªJÿƒD$I¾´×%{£ÅŽ?þ>Ó€ŸÍA²@Wbº0Í^%Êõ•Ôï’â’öË?Þ[úëˆ-Fìl‡|¼É‘u²E©nÈ‚ßóà:(˜$@0à0”ÇÃ{úãïydgÈÜó¸-½ßÛÕßUÞ}.ëË#‰þI»¶ìòܰÍuƒ«ƒƒ¥Èòå„—¦ýVE<{¶xŽÖž…º‰KŒ&æÖÎe.+Ü=¿ðò?¸ëBHlCüþoÄ9­Ÿu/»RþywEy÷Ùšïë©Ô_¿ÔÑÓEÒc±Bª2N=–¯R¿"©ý¡á«k5dßâË¥ä8Ù­’¤¦äÐÚ0ßjÿ÷Înv)[k$±_V´LëÖ¬ÌYÚ¹ÚK2—[m·~#ÂÍû ÿ5á†)±ü,“ …§«) ™>CzòøO±{ÈR©žåñÿ®UöŸÝTŸ`AyÀ$‚‡„¡‰F"Ÿ2nÊŸfâ õDu*ÚQÚ:á:Kw.5™ûšÛyØ9mrÚ°nƒç›žBa¤ydÊò”— ϨŸ©ŸQßÀk RÏkðv(UD,È‚òà:(˜$@0à0—ÇÃþãNïÀ§G÷F“å$æYQ!$Ô§U¹5“þÌŠdØx¥ÌÇVÃ&Æ“¾a^‘ÛI`ò½êÉrìý”‡¼]PL‚ò€I +ò`%Ô¤aæ÷<úŠŽÈÞó8V09yPæ œ1vå1Á.(&AyÀ$‚‡Ž> stream xÚSË®Ô0 Ý÷+ò͵ÛM$T‰ÑÜA°Cê±B‚Õñÿœ×ôŪҸÉé±sœî‡÷a€ÃŒö‡<©8aòªè¾Ý‡_ƒT–‚Ø„eK• Ð_>Þ‘ÝõçðÙž#ÿØŒ› —ex¹kòIIÙ-ß]ÇkôÕ Õ¿–»ûò€&~o#ˆÚs´eÖy$‹àf³ð2]>­•x ~X >H<±$¾eºÂ<’†LžZNÛYã\\3*J¸îÈ¥•£œË¡:gÍ ”«›Çɾ×T™ˆ_[Ü’?(¤ÊlÄMœ:Š©%»ÔÒ°9Ö-ÖŽ7uáê)3ÁuU·ê0õ Í||[‰ë¼×¥0­ >>> stream xœìXIÇsgQ@ïì½÷®Ø°wì" ©ô"½w,€T¢XQAÁr§XðÔ+^S¿S‘¦"~ceÝlF|çù?ûL&»“?3“ùåÝ™Vѧ÷"%&~(+988ÈÜ>­Llàãø8ÁÄ>NX»Y ¾„ÕàKdÕ ,i¿@#ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'èvÞGꞨô47&N0±“¦d'˜ØÀÇ uxàÜ 4Öù…:•4%ø8ÁÄ>N¨Ãç¡Íh^~ºœEZR6(67&N0±“¦g'˜ØÀÇ xàß y|•`bŸJš’ |œ`b'y4@ˆQÔÿNêð Å-݆‰Llàã¤)ÙÀÇ &6ðqB87ì¶’bs71'˜ØÀÇ &6ðq‚‰ |œÀn+¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦%3x¼NøÈb}jZékQk¼-ŽÓý¨ÒLX®2öCÜCæÍdõË»âëîe½ä>±š•Ï´)yYÊdû`2^Öaré‹wÂü‹Ø²œ'5) “á!E'‡ì´ ôM= ¥Ý Õ_ôÝ?%‡¶”4©qøaÒ5˜ØÀÇ Àƒiá¤[;?¶¬¸ƒÔrìûÛ¯™7#yä¾ïÓ¡Ì/«øíŸ%þŸäçÖ8©II˜ i9)ÿ¯Äfhù’CÅÉ ¥Ý /*º)7¾¶á‡I×`b'¦…<Þç½Ó­Ì÷jñÛg%¾³ÊG»•¼cڌؚGiq†mY÷fŸXJ7j•+×ü‰XJÂdxHÅIùë’ ùå}´Kÿ*!)”vƒÔü¢ïŠ òKíÆ—p®qøaÒ5˜ØÀÇ Àƒiá*wŠâ>v˜žbØŒþ[b3¦¼gÕùºÆBi7H/ZöÞ"¢äŸ7EJíÇ•©ùã&]ƒ‰ |œ<˜[u M¯ø”WZ|Ѷ¬GKaI9ï/ý-#3Bž})TTæq±ÆñÒ&Ãf'’í<öÝߥ5J»Aj|Ñ/J‚×l‡¶,Ÿ óî¬y|MNL ¾$ˆ§Llàãø8ÁÄ>NL à§Llàãø8ÁÄ>NL à§Llàãø8ÁÄ>NL‹yx”¦$~3úS›6èˆò²mêf0éLlÐ夯N—Iƒàã‡~iJNL‹ax”&ÿTe¡’%Ã)»F3˜ô &6hqR[§3ß ø8Á¡_š˜€Óú Â?²æ[Zh䊶Ɩÿ{/}¥«‹ÏGš–KÓ–Ù£GI¼{Ñ@YµFf0éLlÐ⤶Ng¾Aðq‚C¿41'Myùe¨^üTženk§ïç²!<(ùp(t¶©ùúÐØçÇŽÓùZäÚoZÔÓX‰p…ìɺ/š ðìtèñ&&Ô§ ¾„ÕàKdö×aˆkyüþ$8ÔeÞ©G¹gç^üóï?^þýÇóËñ΃²î ó´ê݈á¢y„ȼ9•£Öàò¸ ë7 3¿vQÁ¤_0±A8I:BE¯úö‘hçWýú6´d#ê@,E½èõ£„“½z5´Lºø8i⑆-¾Ó^÷ˆ÷ˆØ~ÿ7í ÛÌJxü`ÑswøHs>ËÈnÚ‘[÷§ /ÆH¾{ÅÉ {/–0ºd1&ý‚‰":àqm§½D;gïr <ÒLM$œœ73x4 'fõñwk³®©WC3û_‡Cl§|†GŒŸ‰‚ÏÉSÿú9çäd GîÍi >?P´z_Š% e‚(Ú@fÐq÷’Ũ‹~Ádx|vB?P´Ú³LºàAðEÈ :ž73iD ˜t &6ðqð`V% &|bI\¤‰B~üs:Úiòù?þÎì„zXM«„ }B=-þPVð „̈òXô &Ãã³êð „Ú¹Ñ×ÒBÈI£¯Å¤k0±€Órpp¨œÁÿÜïm1ñ3$~ÉŠäwòôÿî ÈÃÒÉè}‘ÀCVã¯ÑNü<˜V-ðøû·?âùvðYÆsŽýü^rx`2Bh±êðÀ¹Ah†-ó ux ˜À£Ñ•Ð Zú«J(ÂCTƒlá!^ƒláIçÒõ'ÔásƒÐf4/¿ ]Nˆ"-©À#çvÈFCãzááí“$râïßàøƒ.xÐØ/ǽNs¤ÜÙ@ñ‡¬àq(þ–ÈÆáø»2„&#„Fø8¡ü"ˆ<¾ÊJ ò€È'y4@ˆQÔÿNêð@ñ&ððöN´ô -ã˜.'áâàq(þ&&ðÀd„Ðb'ÔásƒÀn+é£тÝVu;¡‘`·US!2÷P»­˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀßI‡G^~ª„„zZæð4Ó„…O;ããD—ѧ2·]_«â"ˆ câ„:\˜ ÜñTmÔU_ÿ+ÃF¦íïmbC+<Äô¶àÎ8›ÄD4­—=wpÛ»ènA¡Ä9ï3; Lþ[8 þ¶uq2|ø¾á#àQÇ%*xTwÇÅÕÃÊ—*þø¾èMbY‡É¥/+êåç ‰ÂT¿`2<ФSñk(™`yö”¬ávr™zÑ(بˆ]·ú÷ʳÙåòsÏaw*9„·­~ßUÜêd·Çô¿€T^”q2¦kØý§(Ô(y4Ï2bMìA%¾_s‡›Ç•÷²Jƒ­'gVä ø[ϽYR¥_êõB:.xPÀã <¸.Ó{–tÓ)ý«âæ2À㳚áq*!Ý`tI÷9×ã’¾<+xÄEœØ2¼¨Ëôôè¨Ø ô©=ßæƒÊÃ-(ö[/ØÍ‹ªrUXt$Ç-PÁ&çvµV-/ν|¼›óÙCoÞ –äÏ6 ž~ñÙÓÒ×—.Uv¾œý¡â4€GCð`ZJxpõ½&©´ö¹q$o[Àm+àqêHÆÖ¡¥]fæF'Vy–yxÄíKY;°¤ÓäKQÂÂ0Áß•ëö" ¸&yadtØÓã TæâòÂËçã;9žŽ~UZYòþ™ëѨ HÞ›h}ì(Q¿äm+¸mU‡L àAÀìJq»[Ùbýò¿ÒÍÝÊuŽ¿y"\0ßrÌ©ÃãÊÚ¾ïUª‘Cð8³¬×»N“/äø¢kÏ Ö|ýüÖ5cl´±GPkëk7y”¿=wò€¢ãé9„*:{$föÅg¿–¾É¸x´½kf·Êx7®›ÃÁc•<É=¨nwà,˜×!€ÓxðxTå#çØwW¼·ÿIú0¡ƒp«îAé?°U—x¼¬ÒÎýnHÛª[׆]ÚáQ5Îèu%$&êÀç]¹;tÒ[õ^²ÃÅÚ%¾U×_Éf7çÀÉ•íúëËöYB÷ï\>1 Úû߯ծοŠê[tÔ¯ŸÏ²òÄžr¹û(µ#Dòµ¤…LÆ*Àƒi<¸ð%A2'tÞ¶jìµð%AD+ëŽ"~`5Bdî¡àÁ¼R'™ÀãÔy'sHÈq׎™{(x0/€ÀƒÔ À£x½.MLxïå^zâXQñ:÷È£¶/Ï3%€ÓúÆá±gñâßTTtDy€GN¨cãÚNûW}û vFG”—!<ÒLM^ôú9AG”' ½žð1:":å½&Õ’[9å½~,Ó˜õÇAÇòÞ½PImhew!1þÞ—&¿gi{¡Žóoæ%zùŒ63oƒŽ(OžIs­ÏšÇÝëi±ù¢‡(§{‰±Zó—ç™S‡G^~ª„„zZæ²m’‰õRd†ÈdÙ¤ÈÜUÓ>í\›“‹ÇiòÙè(‘¯Qɇ‹ »ôºÁ• |a·>ÉGŠk»ÄÝþ¡’~0:JäkTxx²Ä­ªðð4Wƒþ)éø‘{ýÌNØeôE1¥ ÀpË4þ¯“6!|"mÆÓÓŽ%¦’';"'l &6ØNtõô¨è×N$Úùi§N ­ÙØN9Õè„xнØ5M>ËjR8:¢|•\³<þPUÕm(.T²{¦D¡¸¶®uQÔZ¹2Q¾Ž3y¼Îð@%ÕOC bfa^£LµüÑ_a?#Q¾¶Óèrr5÷š˜²ÂÃövô:R¥Pêjâ‘À+x”¶h!šJ@̈hpÔò2‡¨Çu×WJ{c3–ÛDB½M4–­_¾œLë×Ù¸¾7‘ËŸI\;×u¨IOQUuh(onÝõui>Ä%ÒPWÖHçf,çYBíZÀr\ÆrXͲݲÑeYT‘… ËØ‰Ø˜»vÚ‘Vî¥Ká3"\¶ºš™3¬¸¸ÈNvÜ.3J€ÀƒÑôäsä!Ò“N0ùȉ 6‘ÇÓÏŸ÷EzÚ¹³LàQÝÉ“†GÙ–‰jŽ<H#òà XúF¶ñ¶!mlZk¼v•éªÅ‹-'ÎwÒœî:}¬ûØ!^CzûôV PiܺYh3%ߎÃLFŽ6™¡¯ÉhZ† ¿ xáè£A‹ƒm¹vµ1ÀÚØ(rÅò”™3"W¬°61n<®FDE([ÇíÊÈf˜€£ÉWCCb*ñ™=“Yl:à8¾D;ÌŸ/xÌ+áÄÞ<9fˆçkLɇ‹ž+*FÍÖM÷ѳž+)ñõõê&Á ñ|bsHܶbsÖÿ¶•`w´ú‘Õ; ç8Ïc=s"{J•!-T¼ºL6š¬·Hoçô~þžë½ÐÙ¢«ü´µ_*)å÷ìyyôht|©¬ŒJ«¡aamlâœdA€ÀCü@Ÿ=K[´@GßÙ³Q &³6&6ØtÀƒàŠ6P;£c#ÈA<~ˆz< ‚(YOØ/N ”G%µÕ€œ¸h­A´@ñGú°a(æ@yTRG0±|EZ <*©ã|ÄO…ÏoŽìšÈQ<¦ÅНs ¼ÃÔ8 Ó­¶[íZ4Þm|?×þоŠ<;L3˜¶iÃ&ãõÆz戇.]…ò/”•ëTÂ#ëÌÈ*_h³aöÎÀà!ã„ɬ‰ 6Mð .ºàA=!'hîFqÆî ŽMš„ŽuÄÒS æõ‘¾þr›3Ígõsè×Ú¿å83…ezËv蘚˜'<êÑ#rÅŠ†¯yÈL€‡Œ&³6&6Øj‰€‡ÌEâ:¦1-dîàEœEƒlµ ’kåÓû§ù{5†&Ïœðx<ê›0™µ1±ÁxTKM‘+–?êكȳ-&9¬éì>¶‹{‹Ö¾mÝ&Ž°Ý²ÅÌÒàðxÔ0™µ1±ÁxTKMÖÆF/••Å×</XðBYy‹¥Î@gÖ~ªß+4w«f·yž™½¾¹•øµÓbC,‹fðh·ôÐ5瀇Ì&6Øj©éÁÉw«6¢Š?.ý¨G”G%¢gõmvLtÖPöSoܦ…ë”¶–‚áÆ.KLí9æ–_HÌFÌ È!Ê<Ù$Ll°ÕR“„‡0þ01Þ¿rEÊÌèXÛ>+]½ÉnSÚ*+tê°ka+c#Ï-ÛR3‚×§Ê€‡ì&³6&6Øj©©Â£þ2µ0Û`¿a× V!­zyŸ¹cÎñVn¸ Y‘àð}ÂdÖÆÄàQ-÷Wv&Í[³'LfmLl°ÕÀ£žð tìÒ‰).S~ØõC´£]‰ªêë±cÿZ«…Ž%jª?ˆ!CÂÕØøC#­üY|¿Ö¶‘›N\¹ ðx<êN˜Ø`<ª%€GƒàAÈ#й‹{3CöÔŒ«™DÉ#G‡u5’ø#;uMðqÿô«×®DÇÇu²ˆ ÊxÐñ·ó>âìÜBLàáéyxøù£eʦ^ ]N(ÎûÞ>gp€‡·÷iLàúx‡¤3^&›d7yÀ·ą¯ÇŒ~àã…2çÒþªûòÌ뙎Pµ?y]Šð eF•ÒÜN3qàðøzà±~Ö}ë“P]²|žµu5ó+ ‘ºïÑezÊfôõjOtÂC{îÃÊöì¬-ñìv«iê…-U«•K [¦z ð=2SÒNõÔÜõz¥zæŸQ‘C…oºL\·Ý›Å÷kÅÝ9^O›ðIÝÍz=x>,¾¿ÏnY}gyÎZŽƒ*ÏWXo×dÇ@XÈÞÈÝ©Â~ÇwÄåë uÙœa\^3>ŸÅçõæp¶ /çhòÐÃ/êÅfnä:Ëñ]¬*àan±ÕÔY] ¬ª¥À}¼™•É× $Á)ãNaÝ;Úº[k¦ˆÿ;[”]sàðÀ"„´¬ VL3C|Ê–Í WKôG!-%áÁ[2üi§I½û1- Rûó]³y‡ö†Ó{¿’ïíµEXêÕWáe¿9æ›uØŸ÷_¢¿Ý`¡sKžíRá5œ‘\ïn¼È„¢•\—Ž\ÝzÁÃtÏn‡§Ëæ-㺴âÛ¯ª(ìÍóÄáogs6pw¶å9-.áòÆp8Ú†ìÍln7>»J=úln{>o‰.Ç^…·s,w—  »Ñ&»V›Y[Xn1uiÃwÕ2ÿZᤛ¬÷cdMÈóòYûœ/ä¨ç¿Fx<•S¶l^¸Zbúëgæ´ï­µ>B­'S‘GeÒÕÙd7«ß¿ÊÃvmݾ]{é…vÊI+uPùŽ•£þl7ÈE{û6]Þ®yÂSTùγtu+n[Y¨òV5ðF“Dz ßy‘0o4’çYöFÎN%¾ý‰“9³xüžœ*…+¹¼¶l.¢ŽÓ Oƒël™På¶•©…¥Ž©«²Àió× $ÍøÓÍÐ18Šøáµæl=Éðx`ïXåÂ{,Í_ª‹Ø´ƒá)›É—«#Iz[—'u휺h‹Þ¶•§:ª1Ís÷К©_®]Q2÷®\—=+žÝ8+_N-`³ÞR·Ölã Â"ÎpžwwNTBñ*ŽK ¾ó‚†Áƒ³Šã®À5×®x¨Ç±Q!~uƒï6ŽÃ©z¦.›Ó‘ÏW'ý¸¼9ãxnÃ9\¶Ñ(ž‹<ìÕ+«òœbnÁ09h‡GFΕÁ±Ct’¶íZ~*‡•¶òB=/x<°Ge2è¬ Þ±¸ãDGññ­ÀCwchߎ·§j üÖ…7º3yèmÑò©ò¶ÃX[àá²m—Ï~¶®.qò&}ëîÂÕ‹Pî.E¾ó†c-×Yï8'áCþDž—×x+›»ŠëÚšg½þË™zln ›m v¹›§²€çòCåêˆI¯*ð@23±°^mì)/pÔùÊát*ûlûÎvœOõÍÌl~"€ÇW aâèÌ~,§Êà-¬o_–ÐEª¾–.Ex ¤»qæ#9Հͷ­Fÿ®8~ŠÃ¬Ïä%äD‡ã$ϳ]Wÿ˜ƒë"ÏsœËa#ÌÔø®s*AbÞ 1âÌílnw¯‡³£j \Þ´î•á…HG—UÄMÍíUî+ê1ÝëšºË Ü—+–Ü{T,¹Ë \gšY˜Êˆ»ûDµ U:vüĵÖ9`Íàñ•ƒ«»1dTçâ㜠òÂm+òriÀcË“ç;mÐÞ±EËgdçÂöcì„Ȩ\07Û¼a×¥?n^Tˆ5ѱyýx>j\ÞŽz‘ƒ»ŒãÖŠ/FŽŠ5Ó)¢Ó¾åa×,¯<z%Ll°ÕÒ× s˥ƞ½M­Œ+nvõT…‡påýÀeYÃ÷kIH.©n=öô¼Ú#ëê5€ÀàQ„‰ 6À£ZBNúz{45Mš´{&__ïë€Ç—½"y,ûLŽM&î­®‹µÓWªð@š~x†Ž®N¶3Iððx0š|54žtìXÚ¢:¢<À£z¢óç?íÔ µ3:¢¼ á0w®È Ê‹?e=a?{±«è!Ê£’ê5¤ûÞz¡¨ø@M-}Ø0t|®¨èªµFbf·Å[î!zˆò¨¤6 °9 x¼Î|~ tDy‰g—¯ÚºÖEôåQIãn[U‰à39,,×{´¸.iìwD¤ 䬓ʡÊ'¼šðxà? ª›DYˆ˜ÌÚ˜Ø`Ó yó$Ú¹ü sçJ8ç¢Eš|Áñ¼x2ÔÖ.ìÒ+j¶†h6GùçJJñ¢ºœà‡x¾Fr𫬓³$øh¡¨_Éñ¼8<¬"W,O™9#rÅ kãÂC""ñÔÄcÁ\\æ§-‡ÛÏòx<ð€ÇÓŽ%¦`2kcbƒM<~íÔI¢Ñ§~™À£F'â'̰š^#9P ž=ûÅЙx¨ªº{¦D!Á ë)uCxš0æ¨T"qÁŒ•+E䇇Ÿ¶öK%¥üž=/Ž/••Q … »ÈãjÅΫþAý]Wº<XÀ£´E bAf@̈hpÔò2‡¨Ç÷L©Ôî)-­¦XUט­º,‡ÕÕ5[{Øêu}‰üü-[‰“½¦Œu›2«ÆzꨊÐt‡æ³XâšcÛÒv’­Û(7$¿!~¡ýCcÔc¶ÌþÎÔ¶Àî£&†³Œ·{º#°4B1"Ç¡… ES9Ê¿PV®_üñÕÀ)4mOW÷®—¯<²‡Ç“Ï‘‡hR{Ò©&ù1±Á¦#òxúù󾨟vî,xTwò¤¡‘Çœ9χΪ)ò\« y¨° ¶ñ¶!mlÞ`´a±®¡‚±`’ÞŽVÖë{ØÎîà:RΫo³€n¬–í=•´䤹Àv+ßÒ„˜Íõè¹bEƒÒ,ŸY;vìøFá‘—_†ê!¡ž–¹‡,›‰©$Ëî”Ì]5=áÓÎu; ±xœ&ŸŽyq%.*ìÚû?ZTrƒYØ­Oò‘bñÓêS¡ðð xDDTiwû‡JúÁè(‘G ;ò*XG‡¯3¶«ÿü–=Zµo5E`â™=Wûî/Q þKsÅ_åýçÊ|T4B{ý¢è£˜¦~WÛ+Ûê„D›7bJAAæT}­BäQGäÁåq™×žÅ‹í¢‚Ì ãî%‹Q &ý‚‰ ÂIÒ銺¶ÓþU¿¾¨Ñ1ÛÑ¡5 Qb©+ÍÔäE¯^È :ž73Ê{á £#¢‡(ï½0©z é~·Ëûô.›5óS6sÊ—ÜΕh´º×ÓbóEQ>N÷ºø w¥žNs!ò7ó½|Ƙ™·AÇ›÷NHTeew!1þޗgi{è—[÷î< (?e2s²Ýw{ÎߥÙÞ»ù0«'ÅõÔ­ôŸzg"z¡#:G<ß@ýœr,FÑ,Úï§Š‡?¥®\`²L`(JvÓÒÒÙ(o¸º“hŸ*=ÛÄ#i¿@#ôÃ2#ÊcÒ/˜Ø(¢ „P;7úZºàA9iôµÂ®)~Sštü½—;:¢|C›‘Ãʺ#:Rì4‰ÿt3§T]ý77Ñ,ÿ›‹Sáê{C´üÖ*(MLö›ãwnZvF«kaë/6–w.§'v‰×<äÿ“X9BˆCð0Òס¨¤9]Ñ[‘«ÃE%ѳg?WRèë^jà!E<¤NM·jú‚ážPKe?eG­]Q‹.‰ïÑBù½ëÒ±‚J==hc·zǼ%ùS%÷†Å×Á€%<¤NM·jú‚áñœ¤îAÝ ±¯´¸~Гü±dM+ÍÞêx†Õ·ê"XÖEŽ"€E<¤NM5*õö…Þ½µ7nÏþ>'jù¥ºK†ðØÁÙÑ2¸eg#ÛÙK€Óxƒ¿TØ|!<»æñMD„£¨ÿÔáâLàáí„ý¯ì-zêÛÝmE‹R'oâ?Þžvë’¢ŸbÖ*ÑšG-ð`²ÍFTlÕ•ã9,’æV]"¡>½ü< àÁœR'o·ªþx»‰n·mÚ<þ²ÛJÚ`¨OB} ð`N€©€Àã–Ø·ß vW VJž–LüÏ(|à±-CàÁœR'€‡„¶Ô]ÃYsÓò6Vð˜–<àÁœR'€‡„ÎÞNkÐîb‡Œ[§&àÁ_îi;)J¶ðPSx0'€ÀƒÔ ÀàQ]cƒ¦™M³ºüCNâ±—Ñks¾;_ÀUª¨~v¡6·b67Y5é'ÅfŸXß½Vã·Íx´Ú×*«yVýÛàAI€©€À£º|/ yíûœø!ç³›eÎqáéë¸Îî÷J¾¯¿›½cí)e¹‡“WYênõœ¬þÇÆÒ‡GŸC}ã»Æ×¿ ”ðx:x<ªëÚÝíÂÚjÏaåÚLÙ¦oÎŽmNsõoC€%<¤N59h®`–ùÚiGÒä®üÄõ‰ÅúÔ¬K’V%vhU’{0eµ…žŽÇµÒæê¡Rý–`<¶^Úf9Õ²þmð $€ÀƒÔ ÀàQ]½3-¦ØšÉâûñ—{¦Ég-rÓåm§‰»„?teh¶|ì}…ï>±Z=í×÷E«ž!Ò‡‡Åuk½zõoC€%<¤NêÚ».=Ø'Q1\‰Å÷eÞmÅÑ™ó‹œda¶ðÇ‚öã+ˆ"]xxÞñY³fMýÛàAI€©€À£6©Fª²ÏŒÒpߪÏÓÝ8¶KQ‡ñN_8±Ã\kÖõ¶rfnæJ—BxDý§±]£þmð $€ÀƒÔ ÀàQ›fÕ`Ù®sŸÖïYKÖ'V³×]Å®×þŽ•®f>‹%\iÕáÖÄfRß©+„ÇÉggÆÆÔ¿ ”ðx:xý{ÁÔž­Ê4f•÷îUr+‡´ ”ðx:xe3gï_ÕÙ†_<òòËP½ $ÔÓ2÷€§™&,|Ú'_¯>ȵ!˜¡ìS T"'wµ½~YÄ'úTÔ³¨•×}!‚‡Ì›±ž‚È"Y~xi´ˆ<ðŒ<üú‹ U2l(š} äXmD‘‡ŠŠL"=šš>G¬ÐæDû#¤ãu·á×yHû!€ÀƒÔ ÀàQ]Ï"ö!`üÓŽ¥âQ E‹d#}ýçŸ×µÌ±a9Í+*›–ž<ÈÊÅGŠ?\Rk<( àð uðxÔ¨û¿>RS¸(QÖà&Ô§Û3ôX;W>ÈNh¿óTè³7ÿ•“´!Àƒ’R'€G:w/­kd·\VîZ®Cwž/ú¤ß’ç2ŠÃ7NæœMÜ]øÂÂïønƒ¹‚d³?ux,8³e»ÕÁm…õhC€%<¤Nå~Õk~¢&‚Ç0žÍ6w›§ÅÝ¥ÀÛµT8™›õæy âtÙÜ\Ƕ<§¥Ò‡ÇÀ#ƒXæfó,#ÖÄTâû5wH°y\ð¶ö6xPÀàAêàð¨QkN®µºdƒàñyç®ç8*òí×óÆ£xžƒ…ðàlâìTâÛkI­ÃZ³ŒÜg›O¿øìiéëK*;_ÎþPk<( àð uðxÔ¨Ñ=NÜIƒcÞ_±@ÍsÏá³¹>ÇV…(ä)”*Lây©quؼU\WžÍéÃcBâD³Gbf_|ök雌‹GÛ»fæ@ä!%<¤Nê²¼h½*e5ʈݶBÉ¢+ße!‡bu¾ëÜυ݈B)ÃcÝ… …OÌ‚ö~Ç÷kµë„óo…u¬œ<( àð uðxT×ЃÃ"nDð͵\Íæì`ó—|‰<ŒGò¼Õ…‘w ×EŽÇÄš‡Ëm7ú·!Àƒ’R'€Gµ{Vi÷wº÷4Ÿ€ÇjŽc‡Šå žã¬ÏËÛ8vêcç¬c¢‡ÔáœP¬AÓ`êSÄ tLkޤm(º"iŒÚŒæå—¡Ë Q¤%xäÜ.ÙhhüA/<¼}’DNüýÐû…âø£×IãcŽ”û"(þ<ÅßÙ8W†ð ·_ÌkÿÙ¸œÕ°øãç'÷ºFvÿéXø¦Œ„Àë"xð—{ÚNŠjè¤ïåuBä„Jü1Üi¸­³×N;ROr‰ÁƒÆ~¡øæ­Í Dy|••@䑇HV—lf›‰2ˆiòÙèˆàÈ‘&Ÿ…Ž›ú©Gü:¡>=¢“ÃÊ=ÈΩg~‹‘!Ä(ê'ux øxx{'áZú…–qL—Šð@ñð8xÐÕ/á‘yýeC/¹š½}DûSy爇?<¨ƒ]P!ÇvÞö–Á-QŸf6¿ž:<·‘ýBË›·ºØm%]x4Z°Ûªn'á!ì¶¢·_(£Zž¼Rû¬Žèá½§ì—ŸFöm¦ì§2ûSLšVš=ú£>ÍQ¸ñæïâF¯yàüæx]M™D x0-€ÀƒÔ Àã›…‡ÓW•ý]æí݃È‘‘Uã92„‡_§Up«‹m.šn5x0-€ÀƒÔI“„ljsþîÐì‹õ®ÓÀ=+v6çûÉñõf±> 5à¨ÇžfþŸ‰µ Y·7&ò€Gþý;Ïöí~nmù,lÏÃwTü Iû°.íí7G¸õèamÊÓí¦7ÂvÅ#6´ ”ðx:i’ð¸7sí9ß}1þ;V{Ýnâ©°è]¡Ê&¡{·îog½—³'&ÚÊ;¸µù‡Ø&§§’ß÷P/š<é¿­[Ðñ]ÏÛ£Wʇªôpq?œ•S÷µ2„G7¯nÞ#¼QØðR'M•ùè݉œiÝ&EF»†ªXìq܇à1àBX噑‘aêÆjfÂÿK!g²0$:uMyaNNÚT‡TØÆé˜IÞë7¨­j,¬TÉݬãÊ Gˆÿ§-qæÝgo£ ?ª6GAOR—%( Š?ŒÎüøo‰×Êí‰`hZékÉ~©$ŸNkSB9Äé¥çå¡Âü̱•ÿZ¼B¦‡£ïÜAäøËÇ‹¸êÖã;S<ްj¡uçq>é«È ë×+ù(íQùýD€ÓxQ‹¬à1ÞnüºÕ눰à!<¤Nš&<„™˜˜ßÔå}J{®9mêÜÖj¯›(òˆ‹uñ Q¶ØÍ‹ªAâ*CŸc_º¦°¬àæÍ³½\/]ýð¾¶Â7¯î®pO ~ñ߾݉‡Kª´m•3Kò§™í?³¥| I :íÝ÷ƒ:—%ýSG¿Ôÿ®Ôý'÷Ož;ÖÃ1ùøc±ò_r6Úí]Ÿýð¹µå[µóž<4ò1i¨¸à€É½§P *džlÃö^íg:‹JL àð uÒtáQ¡Ý†ÿ¶šÞ×$ÄhO<öÅ8x·C1GdlTLDâOEhRÙ5%ùS‰B“C~þbsµÂÂÒ?mp½}ûáoS¯ã_à!qæë„DÔ¼§ÕzŸžÁéÑOË”,Û8¶ªj¼Ï¤H}á!ºIe%È­²è{ù¨ÊΓIy¶o÷¥Cûºõ›h5ñÜÙÊñ„b‘ga{qƒ‡‘¾þMÍc“&q7l1Pv™Å”øÌ(ïc^R*Ù/õ<òÝ ?¥ì|æÔQá½ ÀÐÇ~ÊúåæúÝZ]Ý›ik=ø¥òÙ¿½=ÞýГØs…<Ü´´^(*>PSK6l¢©BäxETð™R'M)Ú“ÿ“Gö›ôœl¼Åã;¾¿’鎕[u õ^²ƒXUÚNܹªMlªtMáÛ¼‰ÖÇ$îG…ÿ}/¾(^òΕÄåÏc>v˜SòçÝ æ¿ôŸQúâ°ðEìdzµ`.vçêþ¥Q–q{ò+ÞË»8ÚzÏì$¾r ò Ý·¼â-Š&Mî¶š8埞N©gÍÌÀňѳg£¼¶¡vG÷ޱӿ?WRèëŸ×Î=-_wh™ÏÕâ·Ï„‘Ç›ÆD®ëÇ^L¸÷ðΣŸ#E*:9YyäþrK;vE‹`圅ÉkSîßy„ Qœñ,loÅ÷<öÖ3æ`{55ªªùé¼é+¶®@T²gÁ€‡lðx:ù¦áq f§_¨š1 ü•lvo =^±U÷Ê•Sƒ-Pa`W¿s»ÿ).üô¾æB‘Äá!qæ_ÿ¯ÿØÅ:Íþì:A{“w7âògßOï"Œ~\øþÚ‹êýB>³?}ßO¸Ï8 ³û1—›OæÛzv[ûåñVÓcû¿p¯Aá‹ áqlÒ¤ Æ¡ÌZþ6y¶®°• r€‡lðx:ù¶á!)Lº¦A·­n?¹ëqÕ{Ì‘±öwÞ~L/E#åÖ¸Û÷¯’‡xìÑÔ|PytvßÑy"Qˆ"ÝyÈJ€©“¦4S“½~DNwYˆòD¡Ñ‘€ùñŒ9ë×]06ŠŒhð¸õøNàµ)«”•¦%LGùÛ?ßèpãg‹¼OhÀ“ð0Ò×®¨è»hÚwÁ «øz¨$FCÖlŠ99\¿ÝVyùe¨^êi™{ÀÓL–ÌÛùUïÑ"x r ~ÜW\”¿øFIý?ZtÊ?Ràî1¾/* ±xì¿87Ý÷Va—^χi<^ÄCÇ®½Q‰ÿÒ\ôlãÎ<1ÎïUŸ1äÚ c–MJ£ÿ®„Ä÷ñÙÛøO‰\«²ï…@ű^KM>pü5ñBû'çfwþùâ¼ßNþ(óaÐ(•øE+º]ý>X!Ú,ø®¶W¶uRò‘bñs1ºÐ@õßUo«Ò¦S#‘D¤N.e]¡E¨}-²!0PTi‹|¾ãü­V[×ø¢2Yãkbjb¶Ê/³ùõËòW½Wx£‡ÒjË×®JWWSWZ‡¶ß3]5`qmç4ñÈÃÙàð uÒdàñ[bš.ÿŽõ«Â°¤ÎQqƒVúŸ·}m¯q¦ãÔw©7nÑ, £‚w?Mîë6N´šì°aµEhßý›´MÜ´fe ì¶ÃdÇ‘ãÅ¢yü¡ªêÞ… fØLÙO°aß‚¨\bƯ~æïʪ"l¼oÆú¯5ëçž¶ko2Ù¼Ádã3­å+æÙÌŸæ0}ì®qC]†ööèÓݧ{ÛÀ¶ÍB›)û+Û¿dŒÛ˜9»æhÙjñÌx’sz?<ƺö}NR·s6†6R"3ð8“«´Ëåû`eß”\f€ÀƒÔI“Ǿ¥K‰Éš¸g…Ž{—-‹˜´õ¿ïGA†¡1o±…Î(Û•ü•í‡Z üÑbòhÁèVzÛöVwRìêÖºO»V­ÐB¯š‡°”}XJ>,V 2+°+ 3ËOåÓ‹å9Œå:™å4—µsËnËŠÍ2µañ}X’ß=¬Ak§ÉaåFôM61‘6˜‚G†‹WP‹þj^:uœð`Z€©“&‚¿uéòG3íûíçî]¶•˜qØ/Út<ÖO_tιsŸ++™WD ¶Ó£Ð¡%|Éâ|uuô¬è¶OìY´H"ò@ÆC5µê‘‡Ä™¿)«IܶúUE¥>·­!uÍ鑇]…yâþÕ× K“zîÚÖ<°‡çñ“Œf€ÀƒÔIS‚GòܸѱáÒÈùjj(ï1Û–`Fk1³g×¶æÊÅ×3v Š6J[´@Ç‘£nx8L©B‹5¾Sc¿Vxd¥õòÝÊkžÝ‘äºÏx0-€ÀƒÔÉ·ú3&Û:éøäÉ{-220¨crGÏ¢sêsfãDrÛŠAInç<:‡uïfp1;à×ìðx:xˆK|ÍC†úà‘’yºSx§Á>&q‰¤'<˜ÀàAêàð`×2'˜¸à VGËóW¯<°›R'€“ð]“årÌ3x¶_$——º:àÝìðx:x<˜„"GhßÈv!JÁgNÒŠJ“ÏF%ìf€ÀƒÔ ÀàÁ$<¯$·é¼s¬»É‚¤4ù¬úà!<¤NÆàq>ëÂÀ˜AzIúG&]Êaåúk«ç…¦ðx:x<˜GƵLóçš{fbæõïr"\¨ç=+€‡ ðx:x<˜ÇºãëF Jëu9»YN¬ˆ°æQðxÈvü5Ú ÀàÁ<¶Ðíµ§WZ´ƒ/G9¡…pýv[a8;<¤NiÛÂW T=§vîªovãjx0-€ÀƒÔ Àà!Ux'švñí’2òä•cY®àÁ´R'4ÂãUå/ÈŽ¸›ú¹üê¹\û•¯Tš£ò2Õq¿{'f<¾%xèÆè«º©&®8†•z Ðí¼Ô=Q‡Gvn!&ððHÅ´ô -ã.'™q&õY•È#ÕõU1x¤<[bøóѳ—/&ß°ŸSª<û§ RG``&ðð÷OÅAA†ÇÕKîyº?árò¼<23Ò3®e® Z×Ç¡Ïq>Õ»^´Àƒ–÷ -oÞêNh†-ó ux ˜À£Ñ•Ð Zú«J(ÂCTCÍð)ãTήÅ?¬¿qI*ð +v¡Zbêð +vù ÌÃG ²þÃï-–I¿Pur¿U¢ÚýÕØ1j­FÇ×=º/²Ÿ4ÄzÈ™}çhY5¡º"iÌ!´ÍË/C—¢HK*ðȹ] ²ÑÐøƒ^xxû$‰œ u²‚ýBqüÑë¤ÑØ8{þW‘3©Ô TBÜÎj9øiôùÚÔèéÞ×7Ed# ð¼ ááåýe úQ‹?¨Lý~þ'E6¨Ç•Sæ™æ!‹ÒÏd]>”§bí—Y%æ@äxè`G¾É˜ÀÅ8ÀÃÏï$­·­®ž?st ‘ð¶Ë(lûÙ*?¢þ„ËùSk Ê,Šá´ TtòpFyT‚ÊQæ\Úo8Àƒ–÷ -oÞêN`·•táÑhÁn«ºP„‡Hµ,˜ý¶ÉææÉ´ËiGÖô¡—n‘‡µ*¿bzâ»-MèãM‚]ê|_T.Çwž&0æÓ éÁƒa·Û*ë‚Á®à1Ñ©I™—öEGtpL8 yxº?8Bu÷¸ª®)D!ŠEˆÈƒÁn+¦ðx:¡Ÿ·êŠmؽzö¦É¼Bô°Å»!‹¬ÏšBˆ<Œ,‡ v.˜°LW ÜZñ×<˜‡Ç•ScÍÃvfçñŒŒ”aæîW¾ÌìnIÞªnÍ&Ø Nº\ùÕñ‡v6Åjj™ézYÅpvxÃCá#ñÕ½ƒw0ϯ«š}@¬_>þ[âµòc{â©i¥¯™ëL†Gð¸ëåAt(jg"Ó~Ô ãÕ|÷VŒ£*<,»ÞúµàË´^caÒ[˜ÿyøíÕûRÎÛ¶4µ«<*ÛuTðvNýàaÌ5ÙÙ[àËâû¶8®1aç²Òv$(†)MŒ^¨då.ˆ9Î 6ªÂ£ð¬ù–¹%¸$!€ÏâWjZeág<(©=¾ÅvóØtdï 1NÔXHwäñd©¢<¾ÈÐe|û×ý—™1y tµ‡Gqq¸FyµïnþYTÎt¿`2<Šè€GÁ€þð@ñGcá!Úª+¾aW¢Ð}®€ÉÈÑ¢:'j,$CH+qxè ló¿A íô´÷jûjà “zÁÃr‚ÀGÝØr‡©Ùzc·ÎFÖ\)“ÃajLˆÅã3WS·ŸÐS S0Souh'«“õý÷±´ÂãÝOL½|t“£ÖÝÁÃR’"<( Áã÷'Á¡.óN=Ê=8Wĉ ™ƒ‡áš‹íÚe¬1`ô¶•<ÞÝy?¨sYÒ?2éL†Gð(“—'˜q©ëqG¡u—K¿šA!ò¥‚‡ÁšKŠN­7Dyþúq)ó2¨ð°'ðéali`b¶ÁÈ­ßm¹Ôî\­³]×ß«¿\ˆÜTÏõ1j ^«Ï rè$¤ge2OÉcŽ>ú·ðÃã^ó¾ÀÈ%Þ³j½3˜›ý²@|l<(èãïÖf]S¯þ&ÆáÛ)BN<¿}!bˆd!“ðànß÷cë?¦l0BŽÚá‘X&ߦÌ'³¸àŸå}ÌKJ™ë,†Çg'áqÇÛãS•ï²îøx8žìà¼s¡Å"w•.]Ù/rðßyâ|2Àƒæ;?ÕïBZ´è ä9PÝeòp‡s¬µ¶˜mçñE1¢Eܼy" üse¥FÄM û4'˜®îÕÕuBK?õ–A­†XY©»2jʈ”)3ë_ Àƒ7/Àà!Ëñ×h'2'G¤³p1¶Ž5¶‘Ñ#Ó™æúíVuušÕÖ}T ŸXAŠ¬ÐæÍ:·ñ0ʼŸÅ²“mÖ¬4߯1®$J¾šZØ’ÅßÌÄwÃáêÆc15+#HaˆºwÒðÃíÙÁ ë' A4d2Ci:>5ÞQæ ÿG™ à›."Z,ñÄõµ¤=®8fÄ;¬bcÅõÄ·ÂÛG1a^ÂÛ¬Âu¬xtòhÛ_Õ^ nW=‚hÈ@íÕP‘¦ãSãe÷϶ l”©ðÐU‡#ìN78ƒ#08ƒ#Qßó]*<˜ƒ#08ƒ#Qá!»Tx0%Gap$G¢ÂCv©ð`J ŽÂàH ŽD…‡ìRáÁ”@ „Á‘@‰ ٥ƒ)08ƒ#08²K…Sap$Gap$*>>> stream xœìÝTY𬠊TE Ø×Þ{ï 6D”°Ò’Ð{ ¡÷"‚ˆˆ€‚¢XY»²Š½ëªë·E×ÒUÄï…"f2™è\Îÿä C†—ÌMÞ›™Zùç““ó¹Éõ≇‡‰£“xßÉÝ픲wv;)¡m¥53:FûQîxÓ7ð ÚÐT²wv;)<šËõ;ŸðlŽœCã¼ï8G'w·“xÇa·ÃnÿFÇ94N<$g·‚ÎÍñàßU<¿ÜýFâæ°ÛÄ;»”¡qâ!9ûMÄxÜyX¶Å"´Âá!’¡…¾ï"ÜÝNâ‡Ý»ý‡]$C ‡¤ívèÓZ×Ìr®xYxàʧ7;-^vn‹ösõ¯ ÿÍü[ˆ…ƒôK»K7X)<®%wèú&æØ[—îGk}è°àɵ¯N§Î½uÖ¨,æ[Sõ¼b7ýÓ`ëŠ ‘Ýqœx;K¸9Ρqâ!9ûMÄxÜyXSÿñèB éé¾ù@ĸ̇/J?f-¨Ã£â@¬cŸÄÔñ ËcÎ?¹ý€háÿ"ÄãáÝÛû­Ê¥j_A’þâÀÕ&§€3þã.ôŸ¢-è<.½ïß±:ô|Ù»¿ËÃæÔÈ̯,⮿õàã—û.lÿ!\ÑERñrañIѹ³ÿƒÂG[|˜v÷>_Eš\I@ÑoÒ§7.Ãk4w—W×~Ë{5µÝÄ÷׊Düh'¯èäN2$Þq¡ñ´Ý.yǧÿ9Ûu;÷zpWŽwŸUGN´­\äÉs/*ÿºr¦#ÛîM?ðþ-&€Çݼçú”:eܽ~î‘Ó¤CmÜ!¯óøTQvÊ¥º{ëÏ4¥jݵŸ:hTAç»óÈ.è>ýC¯Už¿Í'ÇÕ&VŠ¡óøTT¹°¦¿aå?|ë«ÊÞ=¨t›X3Š]Q%ÒG;tb:悌~óʽ6 ì8/µÇÆßŸßÙy±´ =âKKw†8Ï-lê€ù퇢>æq%¦Ti̳ßïp—.SšòôÊW'ô§(ÁxðRYv@³fˆgyå—•·|$ \¯È ]2\Eÿôê”þ¬=4Ÿ¾É'Ç¥G6WVtþSÁ™QÓ[·êYY7õ¿”jåy•E"}´“Wt2'|£ã'’³Û%ùl+Ômd…;òΪzs;cxôÉóÿUþ:'Žóã¦:üiâ˜GO¥R׬»7Î?r\Ýsc3ÇtÑo€Äý‚Ç[†Uwo‘"):ÿ©éÕPŽw'>8l¯x^\öîa¥û„ša^ü‡íp¶•Øg[˜¯àñ¾¤ôhN” “A³ñ^|øÏ—Í9&_NÕå?a÷öT³ÒîµçJvŸúb×Bç‘l4¸1µ„ðV* ùè²ì£Èä (‚þ×…Û7¯D•5^)<=üªþ­,«~Yµþ“úVºfÒ†ª;E¢Ý€‡øxx“ )!ýÉLÁŠß„7 RotÀƒÀ€E*xPptÀƒÀ€E*xPptÀƒ\½“2–É” {åvŽØžB•¹9ŸÆ­‘“C—]’‹Gen6ïÆ eÀã'®8Vtþƒ–Ÿ{tÀCô¹r;»áº4ñøQy ûsƒ•´§ÛbI›Gì¸1bóƒô'³øä˜Š£¸ä6ª¸øü<ÄÀCô #€ê?Äðüù4vŒÀ³·bØ0²ðh|cÐ_£€ÇÏZq”¢~cWðø‰GA!cð '†çúC7•` åÃÉë<ݘêñ㟵âÜΣÿ8ói¼8ö€YC¢ÏÕ;9x\½s@ ÏŸÊÜgïÓ„8²ð¨Ì͸1‡ö?kÅQ.º¸1•‡Äñ°<Èð $µg[c2¥ÑåÕ;ûÅ9› ?÷PQÑåE×CdÍ#¼³­ªko º¬<˜#9(…‡äTü&ïl«úSyP|{Àƒ”†¬÷y ¢–IÌû<ÐÄCB*~“ï}Øsñð 0€àA‘Šð 0€àA‘Šð 0€àA‘Šð 0€àA‘Šð 0€àA‘ŠýçÁƒÿcÍ)¬¨‰º1?k$j'KÔ—æ ð ý¶ôŽHËåµ÷CóÄTTt‰î;¤/4ôËÒ·XÐá-‹'äNÁŠcE]ñÝlAœ!±è¤?ÞÈúçé<$mÏ–€e*N<¨7:àA`Àƒ"§Ôð 0€àA‘ŠÓêxÀð HÅé€õF< àxP¤âtÀƒz£ð<(Rq:àA½Ñx©8ð Þè€<ŠTœxPotÀƒÀ€E*N<¨7:àA`Àƒ"§Ôð 0€àA‘ŠÓêxÀð HÅé€õF< àxP¤âtÀƒz£ð<(Rq:àA½Ñx©8ð Þè€<ŠTœxPotÀƒÀ€E*N<¨7:àÑ\®ßù„gsœÎ¨ûmŽ{¦~ xà àxP¤ât Á£ò‰ñÎ󩿬*:z"CÑëäÙ¨(U÷ övôÌ‹ýûÝÛþb½¹ÖÝc÷Þ*îVwO;Qô½åF„8_ù)à'€àA‘ŠÓ%¾”–Üšà’“ƒšŒê—~Û–Þ.)(Ö‡ó{|ç>/CË%Ï]}}Ì|øÎr€A<ŠTœ.ixÔ”Ÿ9´³k½§¨Õ¨|´Ð1Q;u·#¬Ç^—Ç%u¯eUæD;O-(«].K w^pµò;Ë xð<(RqzKð(sîÂñéµ$89Þ^½D+‹nM©;x€²gg‘(ð¨©(<›Ý}4ýÝ{î·•çÙFÏ<õ÷ÓªâÓ§²:°Ï|¬½à/€<ŠTœÞ<ŠîoH:•øøÅ³¢ç¹‡Ó=ŸxW‹‡ƒðf4GMÙÙ™½§UÕ­ùð÷NVr-eew';ïËÂ|Ùj ¼lõ]< àxP¤âô†x%nù Þö3V3dEÙéÿñÍò¯Šbæ×(Ì*þãÊ8ç½{ŠDGMé±CiŠ^‡wòäà¦ühÆÎy§þþ³êÝ™SY9ç/cÇç7·wuóؽïßÊ'…»ÕÝÒŽÁóï àA`Àƒ"§7Ä£r­}ÉŇo^Þ{ç5µ¦§YñlŠ/~“Ïø8ƨ\k͵Ýɪq7î•×âÁ kÅ}Í*²gäñ„¿ßâÂãË´Xvo+á¾rURöÄ.jÛ/Œ°¶ÞûÙÏÊxGÎKKd…)34§0fjžïíGÇ[ZhÁ¾œþ+þÇYuÀƒÀ€E*NÿÚËVOc?vZøî¿Úå‡ñï‡,.½yóáøqt—¼”ÿŠùfÿâ^ÿ¹#3YÑÿ\A©(˜NξÃɘdÜIÛ³å€àA™ŠÓ›Ä£üßb‡¡Ÿ–¤¼-{÷úå©ò)c*üqâ@@h×±Ç5àÕ««œ2w õ–EÏ;áƒzxy÷¢âä>ÞÈð 0€àA‘ŠÓãQþ¢(tþ§~ú%OÞ¾.}P¢;â}䥼ý©ŠÎ>OUg”¼œý_ýž³SsætóµwÎ"¹#D DÀƒ"§ àQþw±÷´O½tJ¾æ®|‘†æ’Ï ÒOÓtWÔËb¾Su#UCò"þ|ûêûåpp>îïþàK 2ï:ºþÖL®ÞÉ kg/‡.Ñ2¶òH>ç›r¤m¾”Ÿú÷-ZÞµù’8oM¿s¾îñFÖCð 0€†ÇÛÓúso–—ž|Z÷£'{Ë'vB+?M´,~ú ðÀYñw;Ì^væîä²½Ò¯3DeX7û^ÝL­¾NEçáñÎaLMÏz9‚ QœÖ¸óàÏ›×/J2ÒÊ9>%™»ß¼ùï›xd¦ÝT2‰Ff”×Ê¡dZ·Üd®ÜÎx©ŠçÇ7ƒ´Èo_€ùÁ[óãíË;çëod=Ôx`xThÛ½;wÿÕ‹ÛEžSjzš¾}‰Öÿ¯H·[µ~ê›n¾ÓWû¤›û ðÀWñ*‡K!Ï×kqƨ–Ë ñЫ/"DZÜx4ì3Æ–>-j9Åçªûôþ0{f¥™)º¬îÛ­ù¦¨ó@f¸{žj^”Àà1x þ£åõÅÌØm~™§ˆXoü¼‘õPÿyðàÿXsŠ+ª„„ÿÆìß‘ôFqÉ…´Ï9¿?Qr/â=Zy £DÕâtù7õÇMÓ;[“–óJvfA!ã~óÆ|or÷”—©ö½ÂHá­AËeÝúçfTð_mWVUè®Ìí—ÖÄdO‹äÖÕßDÚK“Æž3Ê|ñ2ýes7Íh9q¤ÍÈN»ûtGéÐQ!D¥]ô/mbièFbiKkM£E·ç&R™Þ•Ú‹ü+-p$3•泀湊æ¦Os²¤ÙºÑ˜Á4F˜ÎŒŒË´ÂüÎWò ^ «ÈÉ×¾Íþ£ìtÜ1£FlÕºÐÒoaKïÑ: *wœ?,èÆÔ/{%ÍéZ:d}„¿Ç›þ¤}ïÚõëþ'ûk†·oœA£’4º_`€˜ƒv2º¬­øzÏ‹ÔgZÔCŒƒÉDA7[Àâ>-…¥Âû-»OÝÉþl_ºô¡š¶lÁd¬µ5ã¨2·Ë\Ë1ÙÓäüGI…ôý%¢ -Z†¶õ—ÖѲm#:+„ªw úu`ðRi¯¹Cm–ɸhMe®Zà¼`©ÃÒv+ÖØ®Ñcé¡2 7ZmD1au2g~i;,™4VgìGèjkmÖ®²[µÌaÙ|çùÓݦó7ÌwX?ÿ~]CºÊGÊ·Žm-®8Ô~ø0ûI–[hØn¼ít—ßsFïOÐÚîçèïåãÝd8în{Ö¯;¶haºîz´üµ«5¶‰S,+p—ÿz´ÛÿøûORòót€‡dãá¿|`I§q{]}¹ßDà‘]î<±Ç[…þÚ_ŠA6H‹|™‹˜ü˼0­X ¦éÆ- Lu†­Þ¨6Üa¸*GµM´Ô/Q Ò¡ê£:Ncª÷ñž=Ú}é\gíµö†&6¦ü¿a“n€’I´‘ޝ™¹ºT4‰Â–›Œ¹Åb—­Ì-–|íʱ\å·»ë~-£-s\猳Ÿ=ÝtV§ Ué­2*Á*S­§/3ö™å³(6jc´7ß¿ÍlËÛŽŸôíûûäIèò²2Zó½xlp ng¨ÝPÀðøéñðLÒè[ÞqtŽ»n=Û¬PYå¬5÷Û빯”''³œxxŸÒŸõN®oŒ–~ƒbˆmË—?SQA7]¢e?ܦ'ŸlWà;;Þy•³ù }9[æ t(&«¬4ÀmÀdÖd£±þ T6o4ÛbfÅ``›£^$^SókÍ ÊªÕ1þîxS<’c媨f @~XY©0Rè²år ¸NI¶ZÀû-£5ûrª-8–ZZÓB¦ö¬® â¯²pãÂ-Ú[|Ö³C­|‘9«W}™îW¯B~|_ÿáÅéÝà íÁ+½Àƒx¤ÎQ«ì0:›'7žicŠÇëG{;fïP2vS°ˆä ,»æª}è¢- ]|x¸äbGÈÑÁæLÖ«NãŒu5 5ú¹ö—Ž’îê×u”Ó¨y¬y«-WÓ- ·0Íx Ø™›¿RRJ]¸·fׂ/•”l-,šÁíö– Ú ¡æzKŽÕjöê)îS»ùw“k7ÏBaÝæu,s–‡»'v…§}ú¤ë®æÅ«F<Ÿg νQ;èÊAëýÝ ïÙ­©è9m›¯¨ä , wrçxm¾SuÅqÂnQ¿±<<Î÷¥…Ì¡-0oÿKd‡VÑ29¿._¯µÄhÃÖþIVÚÍ3 «‹´x ®~zÔ(Ôs e´¦ùM$ þd.Ÿ¼|¨†Æ ·AÒQmÛ…öïç§±mÑÈ£‹€à!øõ•æb 5ñð«;`NÚ×Çvr ßH«”’FÇ7y4ê3â55s¦OG—ßì9$=ë×=éÛ[¶÷q›é«§8QÕ_J&LV)`ÒxïM[<c€àxP¢þã03*¤êðx¦ªú½g[ ‰ÅƒãîöFY™ÿ˜ÇþU+ÑS/³á eÃÕ~‰–“òŸØËc£¦‹/ˋͿ­÷œtƒ­¼oѲÏìtÀð<Ÿ ‹.:¸+DŽÄ‡Jœ¹Òõ¿Ožô´O´ŒÖð~ÊâXÏÒè¡.­ í;GÑÑnœC ¶+ÇÁÛi5ÌþeÀðøÉñÈ0¤ÿ«ÖÝt‰–"’idø¯šZíNVCÓ7Y§óζRU­’’B—q|g[Q¬ÿH×Õ­}Ÿ‡î×γ²äXM &£ Ñ]Å[«Ë¿«MÈjd†çÜÝMÊx?!™†tsoÄæuðÈ22ØÉ¡sç’XtqjñcáÑòxúxøÓE jÓ~Xð´ÉnögrßО4(Žy”Àãyóê?ѦñN~Ò©‰Etàà!º®ßùDWn¾'À@\¯žãÄc{âE²ðHLúD<¶ï( üEzêˆÌ'°°c$âŸpÏæÜ÷TmßvΘñÞã‡{Œ8v<›Ù+¦L~ž˜Ðüìþì­ Ø„X§X_{,æc8gWÎí„àssoômñBöµG|ÅÔ)Ø„W-£¢»ðÍ” Ïw|µó¸XXÄúüïÅžë˜/®c"™]E8·CçtÐyP±óxüèÞ‡^½þ ÁæôKoŒòï;ÊI*úøþæfÿ'W´Bîæšæš–Vã,, ÍÌ Ì-»1#ÌÌþ&æ–VËjWšo²pW±òo齸ÛVÎËÌ-Е´-½e­¼—ÿPx dÞÚ×q{§^Avó£÷>zx€àñâÁ7Ýk1ýÚ2¼t¸+í&0‚Õö›™6kœÎ ³ïïB²3îª2ØK¹³9k´U`-æzžJ wmþ¹ÞbŽ£—EƒÙµ¥•¼¥…1Z6µpègå3ËÂj®%»¾óàÅb…—"Ãm͆JúÍ̉–¦¨ºÆ¯ÉÏŽ.äý-'ê<Àð íë{_¶²b¸vep–s—z2ü4P[‚V2]ÔêDù¾×¯ÃRe-í kgsc ì½o ¿ |ýfs‹N Ë… f‹VVckÛÖx+¿‘–[ÌYc¬|¿àaaßûmV~ü¶””ë»:íèäq"iÖúÔ|™‚¬¨Ë˜h™ßÀð<Š^?•›ù/ùH¾÷é”z_¾‰U»že¼2¿› ZYÚml¬1K‡ ËpÞÌý‘ý8F°:ÓÞ˜i£Ãð“bp4¿O–“£ìt|€;›3&[©YZ™[jYrÚ[9¯¯›åÍ-{Z1››oá›ú7˜[µ·²Ô53·\déß›{€­´éËGíËY¦æŒe–~í¬\Öý˜x Ä]Iè¼£ó›¿­3Ý{Bæb”þIK™,l¦§:÷@Hˆ*ƒ­ÈÄÚ‘–öÈ›ö ¶ížOõ‚ƒ3¿ûn víÑ‹Mæ–Ý­¬XX˜6œúçZZu³@œðÚ‹/á4zåÊ¡+Ãw±àJ<|˜.A2Ì u^µß²}Ì]û°¸¿PÆ:p¡‡'yx xœó°kàµ?oyk½L+ܹþœÐr€QóàA]ĹCëð®¿DÉÿû‹T””BˆB‡à¶ê>ŠÝ}ºÿêüë §AüéãÖ­— R¡E*×%JÝžéz"ð§u, ýN,ý:÷ðî~Ï(›Q-'þj7…æ7¥­ç"÷å´gØh36a=’#yÞ\hõCüýÇʬ}³Í Ìï¥|÷ÿL<Bæ‘oãÑŠVÃ}™Eª¨ßÔÀCäx®_’­ÒéÈÂu†zš¹ÊÝŀǶåËŸ©¨TII¡K´Ì“ÃÖÌ.|Qxv—£;z'Ýl í?N*¬G«i©H%…àþÝ|'þê=w•éø­3U–:êÙšX2뎈 ^$^Sók¹ÖR„51_¶ª=ÚÑðe+F^_BgÒuYºkl׬°_±À̰½Ã†‘ mi„‡÷8… þRa]‰–û%ZF•­²fƒÂ Wy¶º›ëßcø G­‹5~<Î<º ´UéМ<Àðøð¨ 'йoZ×Ên‹â8€‡Hñ0ÐŽì§|uòÊhyýüËí»GKîç/DZ¸I\¼Š£ÉqX訣­3Ðyp»™®¾=5õVͳZ£í¸ÖÔzKóÇåïþ€÷-ZÞl|’÷mcº=ØrÆîRoÏ=«¬éêì¶ý¼»ÒíX)bí¿ÜfîÚ·R›#g³Ïioí·{­;Àžå¸WœÌì*µð~+â¿k«æç„‡n¹H‡du…·®7ÈŰù±\¼.°þJÁÁGW÷3»}UðGB~çñ²‚F¿~ï)iò€9÷kÝì¦×‹ôëc;9 Óýi;qó‡zûçe¯_W¼Û¹±àÈŽ»h ZÞ¹¡€÷-Þ¼ù¯$+½œãƒ.Ñr“×i2Ø3ýö£ãNÎХȞÅåÅ5ýú¾OÙÁ[ó>iû§þýŽΣ)…)-0[6w×éß׿¢(Ì&kמÝß›ø„ø¾.q«¼·Ú¤ñ­OKdÃJûƶèŽûøãÏÆ€MÝÙÝö/ßôÛ’ÅYtƒ ¶Ï77ùy:¢"€G þþ­%äËJ©#V>Ý_ *9(ŠÇ¥ˆÒ;¹!bÁ£¨ÿ8ltôðÃ>ŽÓòÙg°g:Ûw€ÀKU(Ù¹vxžÅ•× kú÷«ž3û£•EõìYh­Á~ô߇7þ§»‡÷à:ÈgÛNc_ê÷Ë‘²3q¢SìÆäTXyx$2¬Z¶õ]ÔýòÔ©Oû÷ÛI­<q5Ñyˆ1TÄëBÞÒß -£5h=àAN(ŽÇ£èȲ¡C>µo.Ñ2àADžl.6ídtyÑå Y§Sl’˜ÐÒw ˜Ó9°•!k&ï(ȳ-%]U›è?¾F…X;¬ó@é4U%`v}çA<È •ñx!pÖ¿Øü Ob£vrèܹ$ðàå´õÁ™½ÛFªÉ†rN ÁV¾:ä´­Í·ñìHš#DTÇ<ÞvRÎ]«–­~‰–[»²™cv!íY!€¡2åC Ìk¨ÿÁjvÁsƒCe<>µoÏ;÷"†`{»JJŠÄ¢_:[ëçC‡bËaáý¼ûÍ´™ùpØàSv¶’‰ ê3²èôß–,Ž4YÙ:ZVÇÛ·ñu|9Ãm‚WqÖØCçAd¨ŒGYýży­lØPèþ ×û̳ ™æÀñ˜e x*ãñ(:R`^{ xˆø˜ÇÖh Ç<Äž&ñ@É ð+骊úû‹^ ‚–Ù;wdj3cæäñ¿-‡,= QxÐC Û…«/v â—C×1t°G›»8Ôð 2TÆ£;ÛjØPtcÐ壘(ñÈA)<0?ʇC;]^t=DVÅé€GSIß™|ÊÎöªž.ºÄγ O‹TU_§½þ¬tA˜u&‡Ðÿׄ8<8~ 1dœX®~õxõ8±x+Íq/àAL(ŽtcÄÆñÀ‚vòuxŸIOófðh2ÛÒ†Ä ™a5ûLÛó±óóðÈA( êMœìÜÄO$p¶¡<Àðhœä=;''Nè>ìt»3¾š9xÌÅ9Ð¥]¬Œ¬u µo€àO¢x€àÑdÂl2—è/WórHñ¤dv(}¢úŒõ5äÒäOx€àÑ”ØqŽÌi‰3:³G—=/iÇ<°,[1"r”²MèFï@ÀC¬<Àðhœ¥0-vîÙÕ;np7—¹‹›9Û*-42FÎ:ƺþ}æ;S“–¸FÐa ®Û<2jˆÃÃ%ÐU&VFÇ›ÓÕ6ÔðgÀð<šO|úvÙè®#ô¾öÿw}TTš ;¢')"-•ʼnPöûÛ“0ÿ†D;cïùˆA##µ°Õþÿ]ë¦?*JxÄ'œæÝñoöò±òöAó÷\¦ú,HÇÌCT»]Ts;tÐy@ç OsœÇmà{‹Ð‚sRˆl„|lLZæþÿÝõk›þ¨(ѽlÕÂ3µFEŽZê ‡zŽBZ!t- 2 Ïæxð@ý‰x°Ù8çýP~ÜgíƒêˆÛö1iÜŸ¦eøêþ¥"õ™Öªbèªs;?‰@éXéBZð3Zݦõ< àx€‡ÑI^7ÃnéeZáé^ù‰»wÆå™M-Wœr"y÷®Ô€[Ýå^èùìMÚzDoDñ¢³!Äã"+{DÑý™LŸ½^ÐyÀð<!ÂröëëÖ_gFFÝkV»âs­f–ôXš—º{×ÛåžKà¾Ã|W‚Å+5«d¶8ðèÝ+¾Ÿà!¦€àx|oGäÏHÅJÓ˜Aa¾—i'Jhc>Kõ¿ĽBªßí®rÏ ØYÉq‡éÃ>J/Ìôc"ǸMÖ~ÖŠVÃ}ÍJª¸ßTÀƒÀ€àx|o°ŠR‹W£9ØÔZ’¶(ý·Õý«zéäîâóÈô\ý¼c«Ï´ö¯§O)“[’!<¦GÌ0_h^»ìäÎÊžÖúDàALÀð<„ËäÄ)47Ý/kâ-^Ê8¹ƒÿ:i™öãªÔÙñqà±8lÉ:­u¼oýÝÖ¢B_L<ˆ àx€‡pÑLZNó˜x{¹éámÉ»“"òW÷¯®]ÛyÔ&}g–¿ÉÓÎr/ÍŸ/ŠVè C l9ÀÛ.cvTè|è< àx€‡pÙ˜²‰æ7îð†iE2´Ï´6¿Î¾R{Ìc‡õ ìdYYµgë=ò²Åñ>£ ¬~­?U·uiÏñp̃À€àx»TZðÀo^MýBk ‡¸x©8ð]®°½ÑýJަ\7YrØ$â‘n /pÌc7Ýð 6€àA‘ŠÓQûq{\uß_PÏqÅ×§™kŠÌû}»)„r{´Œ­< àxP¤âtÀCÔ‰;ßǽÏ7¯&nA\±‡Xð˜6‘æ¹j+d„Cˆ Ú::ð (€àA‘ŠÓ‘Æ/7`pÒàBZáŠÐ4ßGË‹IÞ¡l·Ãÿè±#G³§ÙEkì:¸ïØ‘»’;Û2d‹‘ƒh.ú3Cûºrؾ&®\<ÂöÄð<(Rq:à!ÒèeêkíYƒðÀ¾=|ü𶔤n.;£;r쀶k Â#ûøá»’º9Ÿ7KçÑ5ºÍÁf’M°6»öe+6÷à\à€9A<ŠTœxˆ4cRÆxðäâqtïpFí©M¬môì£u/jíÛ5;߉·~×G1ÈÒ>¶=ÍÚg£cHWŽ#Û×´¶óˆ€Îƒ €E*NB’p¡…×´ð·ìÝáÁ¿çÙVøw;žÍùG'œ›ãÁÏ„*Á9 áăs1ãÿÏ<…z[‘às¡ñàmK øg æÑòÓ|×i‹&Z<Èœù71wVçÔ<ºÐB ‡Ç»ïyC ÷§(ž©Ä×7“7z@ÀA¡çáð¸v«‚7úåëBöÂ]$/œElj‡¨Š.×ïTñ†ÆÓXt¡ñ8xø!otþþC=Q=üP$†GdBRo›0#\Ù3™µÿèaîŽfdìãÈ=·c‚NR¥÷÷³·í7ÞÐñ-è?f†Îœ:GTxˆj· ·aãÑ¡óåß¡Ðyàù â/:t?Mç•­º]õpþQ—­šÙ\è#-Ü–='}g¤NÐ: WÃ8öœ=Ðy|#È(<›ãÁý)J"lvÎy×nW…Ί—ãÃC袋üEÔˆ΢ã=æqø!ÿ·Kv/5ȤcËDãú–\ iÑÝ[Ít‹'Â-çË\D—øñÀ¿ÛñlÎ?:œm%â©ç<‚œ!·èxðøq+N‡³­D‘ìãûâS¦‰Æ…ã*Ýö˜ì9<9ðã·‹êW4•T«8ðE6fmšµkvÔª#ñîy<<ÐrÔÊ#$âaHïÙ'`fÆeZ¡÷üݼõ€<ŠTœxàΕ”cò¶"-òe Ð%ƒ·L"³BgMuÕ8ßæÒ>µ|è<ÄÀð HÅé€îem˜–: [ÆÌ@x4/‡xðè0ÐoTè…¶Á¶!"<æ·‹êW4•T«8ðÀ—Œc™ ñЉG’°oçsYš{™V©}¸ù ‰ÆÃË×»m”ÌÖÉiFæbkDu¶þÝ.ª_xHÐTxP­âtÀ_fíš½1%õà!Mú®2Wã5+1à±)`s÷Èîç·[Füð 0€àA‘ŠÓñ<àÝu{·ýÇsѲ]ræ´µÉù2ãjÍ ý˜Çô°š6š‡nü#ÀƒÀ€E*N<„MÚÑôŽ ƒg><- ±—k¬¿æ!~-È=ÛJ5Juëˆ­ÑÆ1€‡Xx©8ð*Oä KfI÷JÛ§ìµ:rgîñ£ßõÅÃÖÏV!Báhï£Mþð 0€àA‘ŠÓ¡² mÁø”‰ Cv¨:EeæñÅciȲù¦óã ¶âàxP¤âô†x%è!õMùjz*yg2ÎîxO£}æf„“c$¦ÄÉñ~ðê%…ñÐÍÔSOøUÅ9tQHröѯ¾0E"ýú³g|õ§€<ŠTœÞJCïwW¯˜ï8xSôîõ³èûíGž¸þâYÑóÜÃ銞ÇO¼£Çór¯zyÜ7Ù|ÕÛóX÷Àøº =…Øœý¼Òö ݸЇµŸu‡àÛÖÆ$ð<(Rqz“/[ÿY”¢W=ÐüÆ™¼Þ¾ù'KÞ½~‘öAqZÉ îO_¾¼2Î)3èôÑ)CÝɵç/ÐVå¯ÏžoÙʺ¼½r&KÎf_Få‡òš²Ë—ó§{Ô^ÍgŸÍâw5o*·ë]“ošž¥¾šÛ¸WC•úô_eÐêO±fhFU±På®n¨=w8çí´¼ChBç}p,ëÄĘØònÝ^ýçÊè²´G·%‘3¥"»N Ë8ü·qˆÇb÷Å«õW£%Àƒ„€E*NÀ!½HÕ¦—ÓúšMšó“·ÜŸòð(s|²jìiý]ç³þzýüݧÏ×w'ELZ¸²v¸'÷òG^ë{$ ©PõÔ|Ï¥ÜWeEÞ\Îëærèð«cìY&)™oÿ®Lѩ鲶ª•©¢bûÜšž:ï¯þS^ƒ£ÜµÃyì~ðX^Lòe»þGùgö£q±±=|Ó˺u»é`‡­Ì:–3Ú·Ï;)ëøm8Ù ®þ]=õ¼š¹àA`Àƒ"§7Ñy¿þïæ;§ñŸ†;ÉNSö?w±´çoÏý–ÕÕ'/å¿bl“W¥//Ôw'õ-EKV¾x~u9g_è_ÿZyØSù¥ eÕ%W¯íË9}áã‡òʇÓ3÷¼{Q™N¯lS‰®öþÖ‡!]ª¼UÅ?¼-%©›ËÎèc|3û±šŽÑl;÷7£Fbk¼öFKG©*‡OýߨáW½=%O =Ý‹< õñèÍñô<È àxP¤âô¯mõ¿í;Îy÷øÚD§ÌÝESnd¥wò<˜ð¼ˆ{…¢[S°—wxÝI‹W¾*zb–ºåö«—%®vÍ©ÃQQwµt*¸k^Ä^«kƒz:Ny]Yþî@u‡>ÕzãkÐÊs?œÁ¡HåáØp¬môìgÙîÛ“¤ì’zÁxóŸ«V<ž·Ùk³l¤ÂœxÓÃùÇКû&›% x ó·;>é×ïÒäɳ˜òqÓÐÀƒœ€E*NoˆG…ÍÖâ7lÓr¯ÙŽý4ØþXö®œ³Pçñ<åµì §ƒÛ19êó¢èŸÌÜú+ß=OJÙ¹ðô_Ϲ®Ü›d¿—¿óxWõæÀátåÀ‚kÕØš÷å%JÇVõÑçWpýmNµŒ\uÈùŠ’¿*CfÕô·¯¬ÂUñCG±c¶)¸¥Å¯ŸÖOä¹ùEõÝvð²—Gîüþ½9½§ÚOÝ™¼ û)êE®øxI¨ç@rì×ÒBËvÎö:e¯Ôz£¬ìçéñóãÁÿÉ´VT ‰DݘŸ5µ“Ñ9e¬÷®=úc¿Í‹n“ õƒ•ÝNX$ì}Uwª.–~š¦èötËŒl«ìŒûƒl³]ö6øUÍ­L<”ÿ¸47YŽ{›Ý69íµüTËl—´K{̾œR;tÊî×òó ÒðÞkáöí¹;Ì6Ãp÷ßóý´Ô|Û„¯Ý˜³·îž^±L*ëÖ?7£‚ôJñçwÇìWÃgcËKuŒlmÑZSà´¿™B7÷0 IÐc²ù@ç!A‡æP»ó(~_&æ Œ.ÑÐ›É ÝÅÍÝláÛqõšjç³ÁÕÕÑÕ}½}  Ë×ä»Vòââ=Ô&KËÅÅÙÕsŠ·‘‹«ƒ«Û:;îÕŒíõONYÍrp³7ß>½GiçE#¾Æ®vñ£UÎ7òµgÆÌïUÞiZ„#ÚVˆp‡ Îøhim·Šéߎáa`ÍbÖFËΡ½Ï8¹09íõÚË7¿ìÐ᡺úéÑ£ª«¡å@}=fý5qíökwoáÏ?v6/õõÐBzÁaÙ(ù“§Î e´­ÿÚ&?OçAôBð<fã¶ÁÑ¿ “Û7È[û-uqsþ¾•ñp5rðã]m‰³«“‹mô‘÷¤Q¯ÓúŸ®“LéÞKÑJ´…µîÉžr54ÚÇýÙ %GÝp½l¸ÃÉ1}泬Ö,}GƒACÚEȯ_m3%Öšaƒ¦x;+Ë„åË÷Ϙ.Ѳ¨ä!O¢"J&N@ ý·Í¿[Y:a“èHÀƒ„€à!ž Ñ…oÐÐh7µÛ2Çkn·ÐnrQrë ÖåuÉãhsDˆ!xÜ89¶þE¿öæ”Tâ}¬~‰–˾týô™¯OUÏž7®$ð<(…GŠÎÚ[òèÆüÝ­ZFsºãúh¯™ižŽ»´×ž7/U[-ÿLxعÙ;¦g÷ ê×6¦í€Àô-ôO¤O·³°ƒ¢ëëçøÏ:X6\A9DelðX-ö[7;4tȨÌNìûuŸÃGqÊ!*<ÎØÓÅ#[1®÷´fË·< àxPíä0<Ì×ÒÌW 6Xa°Isíòù;&«ÛÙ»XÔÎÁµÜR]zVú¦ºDÝI“Æ 1è§¼kž’9ùF®ÓW®V€ÌÀä@›$Í4ùÜàÌ`ZËý@……‡¥¾·Á2Žæ´ÀéB(D+¶m«¡>>hü2β-FÞhl8§uÑç¤.k{!\#BÌlˆ«!a1­Ú„8qå à!ú„àxP¢þã°iúMëÑÙª‰‰#g˜/Ú¼zó€9Ì.ý=û+*·ŽiÓ*JA&\mœcÇyæÃ6,5]adâ;:XßÄ&ˆ¾¨p°š‡­ƒ»#†ëÕãÖ¯`æ(s\´ ]nk€V ¼Šõ¸w¯Tmmôç?šÐ=æ¤bÓúß]»òËñ¶=íNUkw33”-žf†ÞF:>:Ë}W,ô[8#`æø  ÃC†÷ïÝ!ªCëØÖòÑò="Ô†† 8u¥ï*t}$ ?0Q“2~ouù·^7œ7»"‡Hð¸Rxl„s˜ÔVÍí‘ßµ!àA`Àƒ:x\t9ˆó¸N;óˆŸåxCÚÿÕØ,oïæ¬ëf=ÓÃ8xžê4Æ„a–+4 5&›Oj?´—·R‡à¶ ! RQRè¾`iѺ]„-º½t„,úŠbH[ù°/WÀÒ6Rðj(J!¿ð_§CM)„†®C‹T®K˜-x -`3…ÆžOóZNsס9ÓìœiÌ šàÛ›ˆÎŒŒË´Â¤‡r²?“%‡(ð¸y0#Q*jR[?ïj;bxÔÁ;ÛꦼÅë6ÿêÞ-EGÁ}=JF…ÿ…¦½šËx¯GyÎÙ…½*µK{ÍãÞ½·;×jc¯ka×L™aÜøj7¨oÕ]ätµ&‹âÐ%à ànU—­þêÖM„Ç̱ÎktPÓóãq»`FÀzéØ>ë3¾w[ÀƒÀ€¥ðhòä¨(ãÍH 4é_˜0y€–C5¼ùd`Ç<Ðú¯ÃÌãµ|ç¯\Mà˜‡©É:kE+ßpÖZ!?(9W*&(É»¸~oÛxÀð<°“kQqxÞ 39}¦¢}”màAlÀðO–gÛº“»ƒÏ{üæÝ+¥÷ÚÄT‹´ð p!x€à!ix 9¢$*ÄvH<¿wÊÚ”|™´ð p!x€à!ix¹vB9¶‹÷¸@û¥¹ù2…“ð 6€àx…Ço7ÎôLîé”ï²oòùË´ÂhÝ|áä<ˆ àx€‡äàqñöåa»†oÌÙ|rÔ¥ß[]Þ©yZè׬oäúOx6ǃǕ›ïIÄ#0ð‰x\¾VI8+^Ž«7?ˆGpȲðØw†DAk‡öEåËÚ\Úãwþä™WH²Žyà|®‰pn'œ›ãÁ M"8»œxðo.f<ðÿ9ƒ¡· ø7Ç3õ“ˆή'ø7oÉDáÖ¥qéã—.½ÔérÆ´³˜ضh™”³­Èœù71wVçÔ<ºÐB ‡Ç»ïyC ×àÁÃ×7“7z@ÀA1ãqíVoôË×…ì?„+ºH*^.,7ï})ºýN<üý³y£‡'QÑÇxC£@Ìx4ý´˜ñ ;È=BØþ£%xœ»U0*eô ë•…£¯\Ë¿‰Öœ:÷‚7ôÉ3/Åü²•Hžk"œÛ¡ó€Î:è< óÌÉg‡Ä Yc¸æÊæ«×n5øÑ÷l‡Îã;‚ŒÂ³9²ð@‰xDE%ЃÄá‘}é@ð›Önº’x½ñOOŸ{A"8Ÿk"œÛál+Qâó '8CnÑñà!tê:´œÒ|x-=1hb¨Žá– ú^³úÉô 6ÞBñÀœÝ‰x´ ÖF,ﮌP#ìFÀp–eSxܸzùITÿ'ÈÆåÆ+‡*{x^;'¼Äáÿ‰&ª_x€GC<êc¼‰î>wàFzo<~D<œ~e cÙ™±l Y>ò ßUð¸¿/³JM­dÒÄ—zºè²J]ÝÝgSÇ åx·í×î"àAlÀƒd< <À^Îj­’½zqr†e?Žˆ3n âÓé¥Ëj€ê9Ïü|±9ýü•ß—Ûá"›"ÌÿÊuµ–͆쩿þ%¾mU¤2(iÍã–¼%ˆÇ—l2±W±òYxˆ–ýXFpO–ƒ‰µÍz–_;FƒcYÙæ%nìÜJß}j>°iý™¯OUÏžØ9WDãQZ”¼ÝééWÏm]Rxˆ*žî›³ÃƤßýëMÙŬÀù˜oÞn¼Rœx˜.èûVq„‹qv´3Þ+õ®ÒSƒfºî3ËŽŠRjâQ,ªŒøUmß7Åî›xxLf…ôvð`º¸ÙJ3´ ÆÉ‘/sq“žë(¿Qí"Û/¢/aÀžÉrg4¼š¤àÑxF†³­ðð<Mœ,fÆî´Ç¸y "mLÿÆëK€‡0x¸º°œ|{3¹Ç<ºÛúw`¬%†5s¹Ûò~ÞC‚'Z-Ù£š;[+ž¿á<ÀðÀÑyŒƒáQ)E;ß—:‡¶j“|7v7¹P¹‘v#5Œ5ÖénؼðøÖËVc¿ý²ß‘s–£¿,Ëׄ˜cí7MbOVˆTP÷W7ÒÛ°¿óÑË´BË™»_¹>à?’…ÇÕ;9A!c™L造1¿_Ï¥ÙYkŸ~¬=|J.ÅYéÇŒâÞ˜1£Ð2à!ò”åd}np<‰Q{ÌÃØÈÄ@ß`é¦e£mGˇȫrT'1'-Û¬¹v³ŽþIßyr’¹¦ï[´ì2)é'ÇÃÕnûùÚæ–;G*¾¡ûíæu/^¹0¼‡2C{;¸9¶ ;K‹íššûgÌHX®igeùµ«Û™Ìñ˜Ó˯—\˜üÒ KS{¥î~8yðÞÓÒžÓvæË\äÿ¤¢vÃ^þ¨jßÚ¥k‚ÆHû°·Ø¬×æ>ãbx+Eþ9üéÖ Øý›ÚÅ÷ßÊCõÛÝ*® :/yi¶ <Šo"àÛp$[%_7ä’ðm7ì;ð`A´Wi+TÛ\_\uW,ÏåŸ9f~j‘æÒ_b£-¨%Ñî)6Ô—X™K爜×϶ˆ9—žóÓ¹Šê{LBotr¨Í”uß.¿˜›V¢x‰Ú;—_dš}M¼qOûöE{Ôf¦3Š—­Yv±-<ªšª³ËÏIrÈ\:tÛ{:›†hItM’LæyŽØzýȽ†&˜ÍS&×çduwx0)NmSÀƒ}pŠQ)‡öò9Ä|QÊF7øÿôë‡ö¿ªÌ´Sß$™h/[ñÀÏž~;ßÍ,iÉŽ$yÊºÂØÕÂ}Ïú-8¹hFîLÇl§Q[ǘ ÌÞÜd -ÖÑ3Ú@ÌÓÙàh0—·-tñw’à´Â²šêvÃòwq¢E³óûM«üQÍÚèˆz#Oñzƒßyp(€¸¶¦Ö9!–ÿ™óØ"î`Îã—ûwä¥× ¾?ôà±ÝÛ÷lIÞ*ŠMŒŽXÊ_éíåë5c™ÛTþTÓ{­D+­Ä‘­JþLoi¥=“–X¯IÞh»d£OªÖ€¤úIúH&ëM†Åc42r¤U„•õçÖv«ì¦øLq[ìæ5ß‹?ƒä9)2Î6Nl%N7Oß?xÞ›'}>ÈvO?,8~>ëÚ²Ê{Ïy¼P]m}NV£(¾õi•Zk€‡Úµ <À°55x³jûتéùJq…šlyì¦=T:ÓÉ sbx¨a \°ÀÜ [ÓÍb¨Î¨Ý+ûK(@{Öë¬Ô3ç±/CuÎãÀ^Ì9å6À£àÁ©àNØšncG ©sµ•-¯uµ•-¯f&§«­íüà#€¸¶~àÁNšö;€ÀKp'l ðxÀƒC<À°5ÀàALðwÂÖ€1<8ÀÜ [<ÄðàPp'l ðxÀƒC<À°5ÀàALðwÂÖ€1<8ÀÜ [<ÄðàPp'l ðxÀ£#]-mÁ9˜Ö˜cÇt§vЧvœ4tµ¤™<ŠŠë)£P^Oøa§u½aÂCs’ 'ðÀ<ø\Åùºq£xzw;f¢üª˜U õ°ÓºÞ0á¡9YBÍð(-kFç2bMHvðP‹5뱫ÅnØ)œzØÙ% ’›Êî,o„Ù@þc§þ`ùõî…Å,ëêa§u½±†‡¦%¨<Ôù šsSнN=ìto¡ò vZ×T 1 çtx`ZcŽÓnØ)œzØqÒPIµ9TP„r§ü°ÓºÞ0á¡9IV[iÐØé†ýµuÇÌb˜Â¯hÁSÔÃNëzƒÕV àî„­bxp(€¸¶x<ˆ àÁ¡àNØàð &€‡x€;ak€Àƒ˜ àî„­bxp(€¸¶x<ˆ àÁ¡àNØàð &€‡x€;ak€Àƒ˜ àî„­bzeàñ/D¿>è endstream endobj 476 0 obj <> stream xÚÍZËŽ+¹ Ý÷WÔt]=¨`°Ûö ³›¤wƒY%Èlr1˜Ùä÷£¢DŠR©ºÝyÁE_ÛU*ŠoR¥–_µüð¢†OÿW‹^´W«ñnqɯ6˜å¯ß_~Yöàp…øŠ·œ5øÃ:E¿ýé»öËí·—Ÿò¿‘þ+mð*v¸¾¿|{dªiMÞxXÞÿ¾ÐzWýâ‚]SðËû÷åç“R&(—ü•r>ÿÙsÌ—ÁŸ_Sù›¥Ô#šúw=ÿòþc“zM Hbò/½Û¨&’¯t!ÕóçÚ÷uÛVé¼ÊA¹ã®O6_Õg¿-J‹çWkᤒ{ÐR&à Y¸×ïuKÌŒAÖB'9.SÛR¹ nMaP·Âç1áò/…„·¯3¤]Õü½Hª£øžˆò³ñÀâ}-Ö^‹Ò}Å|a“=ìhÛ5ÅѤެÊh2)+â^URMhÎ$U‰BXº>m›‘·ßì¸ ÓÐEÑ´>Q‡žŽÓxÀ‡.¼©ãåþvë¬;÷Îæþ%¬lÂdÏÖeIþ«òbDA§‰½nT]ç„sQ¸@“¾R„&} —‘rõc"‹\&2¸Ø~³´ÍìÔªVÁÑdˆD-yì`„šW1C”Rƒy¨#s«:s5åmìœúŒÒ¼™6Ù²\­N‚™ºa˜Ýc U+ÊY”\`±×ü+ó¯ïÄ?:^M?…÷ýºF£–Æ­F€Ëg/±žó©ÿAçÕ…6K·[ölô±Uåìü òg d~,æ¾J€–5½ÕlBuŽQBnHf!ÿá››+\ªã$RLÜ ”)‰ŠKÕÌ4dømË‹ ¤F7vemW{Ø¢Lˆ¾c·SìTH;áÚ{+´‚n«Ç¼ª5Z¸êÊà,Q±*Ï Á­X#®(ûAKS¡OSL’¤Ê¼W£›ÁæÎ­ `ÖGÎççaƒýÕz#ÜÑ )„Vö‘î†z׉à(w]Yw“¼ÆÐANp{iá¬QÎZ¸Ÿ…o¹ZMcŒt·ÇZ·Øv’ïw2váîíÌïü.tË:imaúʱ5GÂÂ`ݠט{5 뉅¦Z)žk B\.¹a RÛX(éj»Pºõ°§•_=DuÁɺK¸¼{|õL×]Ô®|®kj~\p.¸yN¡˜kýè¾eýžî€@ÛL®çÆ2¦>ÔµúP×jªk5–†[ß½~ÞmóŠ8äÖÖk..;õT ‹†Õ‚7“™ƒqÍ”žF áüšiœTŒÑùëµÜGVÜ3¥(?óF,›]i;†º›.¬8ûš|fÑ(®gzl<>ñj“;Œ„ Ä›kåðZ‹WþîM‘uõh÷æSîuÈ@!ÿvQ©vCÛš?~­‹ÿüC×ÞgŒ©£e8h‡€Ø5^›vRõA4)™6S"Ú2iÍndöBzæDº2$£ÌqúK8iA-ê®HWNÔy>„FfØ©pL~R¼f9Š »†gÙ產Xu2c³Î“KPKÔÉËÙEê L"'xª+P4„“ĵa’L ó;üD×Å0ß9† a—±_j§ß8<QŠmû20E®mCÈ@HTš!Ÿ+¸Æ¤tÂÁ›˜ž!eæ \ÂDßHò7n ôhy«V­¤ì€5ô¶ð4+Mß8çBaœ}ˆV’ž™z& ý}é3Ü¡«¸ÉÈì§å¦>êoa·é¥ëj/r£Þ'ìÚڵќ±è-¶ùÙ¶àmlú€z%fLœã×!hhRúò‰&¶î\ƒKñÜzÏØwé“éƒÕaU ä Vf¾ úìj}Á.ºiƒë ›Vç¹ß´ª·ã^»Í1ÞT K¸W@Þº§®)ò8¡hŒ-œs»Î9Ž‹ê‹¡×««­ øð¸@vÏ&y\™k«‡3%…ËùIˆ»Ytõó"^¬°#.k?¨#ƒÕ#äôǹ>©Yµ±ùÎBjo!žÙú¡S¾4Ü»k¸ÛÜLÍp®ØŒÏczÖŠ™Ã|ÜÞ¦Ýá>)ÊEí9úøæq=Æ÷Á8ÿ¹‚ô êY”Ü|ï¬ñ°B"pÕNÄ8rÿ´1õÆupæ|¥îZ* þKã!+x›¬ø–S81ÈfêÑ1`8y?‹¨j‰î³TwÆP(C  ir¹yCLû¤Ø[ò>ãØH€û91h½ ¥Nb–•$çÉé`r´ÁꦲDòlµÕõxxvC¼§Ýô0é•Xyª\1Ýìª‚I¼Œ7/5Ägã´Ã[¸Âžý©¥%FÊлWí9Gˆ‘¥ŽV©$=y2nŒ'q8*QNè+)^8ô´:Í¡wבviÌ4 DcÃj#D“I[%xÐC04ˆ¤6IÍ7À¹Ës¹ÙÉÖÞxr•7öµ‚mÍïö?ó6ÆÖ­¼&Ôäd‡ 1+!K·&mÆm‹KLNˆÅèIŒ¢©½s»ô¶­D1Ò뜈3ƒ zZçôpÀÂÇü»·ú¬0 ‡]8z®Ͱ±kl]Æ´_Ãé˜íÞºø?-²cj¥B; ì¹Q™á6H‚Sî>E̓û³þ´ð³dÓÞ@ˆõ³úÐÇodžFÁš›„vlxÖ8~y*Zúöð ñ&bw‰… ôGñÈg—FàKfƒC³A­È$Ä[>¬çÊ—1ã9IàCQõW-pí‡H¾+jnwJX`û‡ÃÀvå ;¥fEîiƒ•U‹¯¶²¼;ikÔß ÜÐáæŸêÊtüð„ÜuW*°§Ã† ˜ Âô…/3é¡Máö/´è=î)džŸíÅ·Ë…ÂK©à5[ò1û×jDO[85i %‚6þß•ñ$xFo"È9Iä:„Õ Mž|kì9ßP÷´B£Žµ¦-`¿Œ1WR×ýýåwñ®¤]U*ïLºä·7þE-Ë7Ì•Ýæ矸ô{îmR^jó÷,yùé¿C„^›œb" ù¼˜/×2]²žÏÒÕ&óÿ¡Z¾Nä)µX½Z`çzÞ§³FLŠ{¤vHýcŒi¼_cH##ÿ ŒI[Z¯W“‘Ñ({âc7ê“JÀÓ+(êÒŸŠ oôšdVçÝ3zµ¾{óÃNÌÎò/|ÿ§ endstream endobj 458 0 obj <>>> stream xœìÝTYฮJ `Á^°¯ õ·÷º¶U×®QIè½Jz„"bÁŠ Øö ¶U쨨ØÅJ³þ/"D˜Éd¢ssîÉ^2yÉ\r?îÌ„Ðr¿},IIß*WMx{{“8;‰¯ÜÍNÙÙ)ûÂa³“´Z%³Óh´_å…WüDªMMåÙ)ûÂa³“€Geq)ã žÕñàsjœ¯çìänv_8lvØì¿Ðì8§Æ‰‡úlvBðÀ¹:<ð»ŠçÈÝn$®›ýW|á°ÙI™'ê³Ý”ŒGÆ­Ïh]Y`J™ókWÊìänv_8lvØì¿ÄìJ™3ê¶Ù¡óPæ#¨Ï¿Ö ‡Í›ýZ:â§JÄÈ(<«ãÁçÔ8_;ÎÙÉÝì$¾pØì°Ù¡ÙqNõÙìp¶•½vr7;eg§ì ‡ÍNJÀÙVà³Sdj*ÏNÙx€ÌN‘©©<;e_8àA`†Ç›„/4Ú7i +x#Ÿ·qé—Æ5¥ãû}Úx“¸'Pf³Wüd óÎn§ñVóëH÷ü—DÍ®ò gö¯9ù¬ŸÔAÛùë_ÿ¦>—~nUvP/¼Ây¿¾Ê_¿üK‹ZÒÁöc?îÎú6;ÙS“;;àA`ÜylJúR¿T½~·ÿ³~‹O‰7óò_æm_üUFÁ;¦.¿Ù!¥ŸLÁÅõ>óNç½{˜ÏûÅêh¡³«r³“2ûÛýŸæ»Ÿã?É{/?pè×ÖŒü¼âÁ‚ Ê ªà…W8ﻃŸ–Üy™›÷(ýܯæ¼ÿõ7;ÙS“;;àA`¨ùi»}Jº™Wð*/Ñük7§ü|¦þ)o?ë .xQ(]~±ás—•J¬k”}3Oýdõƒ‰oËÞZá  ^xùy Ÿæo¡íb¯Ü_?ò7;õf< õÂÅEŸ/µ‹ö Õî÷ñÒ§þyç‘þÑHï³0%ï}v¾hô7ÍqJ¬k”}3K§þš“ïÞýëÔ-y_JÝTá  ^¸Â¼ò˜ý•þëx¨>C½ðø˜ñ±¯ágÁ™¼÷ò£¾ö Ê/$lêŸâñ­ ï„Ççf5¿ÑêY8çkeþQLÙ7sRbn~脯Ffó¿}SÁ  ^xÅóæ¾»UàÙÿk/–rýÕàA`¨eömü¢7¦LS¢Ü©އ< óvMýÚÕW‰¥„¢oæ¯/™ŒøÚfAÁƒÜÒƒùAÃUðÂ+Ÿ÷yì½±Êýõ·ª-i5öãñ'Ä=œª[êÉÈëwýÌ>¦Ü}ñT|3+nä~…O *TÁ ¯pÞ//òÃæÑE?Öþ:`qá58æñËÏxð!A˜"SSyvʾpÀƒÀ<`vŠLMåÙ)ûÂð€Ù)25•g§ì < ÕãQ°;éKß>ßttÐuŠûn²^¸l³—~2hYų“ûÚUj’qÙ '+ãªßìj25¹³†Šñ(Ø•ø­ÌJšŠßÀ¥7;‰O†:ofõÉ8ŠT÷]$>ÀCõx*ÆãKc…w/ú”Ž6;‰O†:ofõÉ8Š×íûødÕÇïƒGéo¦¥f|ÒБ½iQRÕ*dÏ ==Ò7ÑoqC†Ço¥Uv«Z…šv9ïUŸJþ•¿{3õõéd\ÐfÿdÜKáÉ|2îýü}Ž ‚ܤ£Ù)˜qtymÔW1ã}Œ_æ½UM˜tÒßÈšú÷é<ÔmËæª÷‰ñ ï^ÞèѤÔ´ÙßÄoQx2oâß5ãè’â¾[áɼMŠ<~ãÙCÅxȪɧ¾Æ(©è:ÅcYumvTÄ‘¨Û>ãÞo¶ªFJá¡>—%ýÝö8ÔmHŸLãw‰ÛT&àAJ†êñJ*ºF¯Ä:"/åèɨŒ â¡&—%]VÇÑ“Q%€YSàxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³F ¯2OŽsq™ò¦äÝžÿðò¡é®4&Åïã¿K)<Àã·Ÿð¨,.e|Á³zïžÜ´aó'®™“ZŒÄë{§FºzÏ>r÷Þóü–ƒóÿ’XJ8\ß ´‹ùdá3ã¹øðÀœt¥à?é˜ñH¿\@"8“Nn‘!ñ…ãÄC}6;!xà\áñòYtTÐÄÃÙ׎Jþ.î0rÏï4ˆ¸øàU¥åO Â_Jp–!œx”^]ÅxàÿsOâ0¯«<ð¯Žùº¤àAn• quœSãÄC}¶›’ñȸõ9©äëÑ1 éãµ4Qh¼åÚÃWRâ9c‹ñx“æÒ&z]g&ÍÖkdâ EE._+”OíOQ<¥$ `›|v6{7æ:‚ ‹Wòä³§]ÂØ`KºR2ž‹œIlj‡²’ŽKò©ñô$&Ü"Câ ÇŒ‡ºmvõë<¾ x ^„R¥ð<ß~vÀCùq!#Is—(UJÀðøíg<‰¢³­úÚØÔF=ÇYÕÊ¡¥ð ZÆé€õf< øœàA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍþûàQúkÍ)²¤ªI¨Õ“ù]C­6²Z=â¢òD#YxàÌx.><0'])xàO:f<Ò/ˆΤ“[dH|á8ñPŸÍN8Wǃž„¿”à,C8ñ(½ºŠñÀÿç žÄa^W)xà_3òuIÁƒÜ*Aâê8§Æ‰‡úl7%ã‘qësRÉ×£c—¯ʧÆö§(žR°M>;›½sÁ†ÇÅ+yòÙÓ.aì?°%])ÏÅŠΤãÄCYIǀǥŒùÔxú“Nn‘!ñ…cÆCÝ6;tÊü;:< ú¤Cç‡ê§†Î£²@FáYèOQñ`±âpÖžÞêßeדhùÝÿå7?V3Ý€àAP€E2NW7<¾æžØÛ4úú=Ôjäßï3{ÃæúLáŸÞ î™ïŠ÷eå'…¹ NýP´üa“ÈmÜ…üj¦ð< Àð HÆéj…Ç×¼ô“‰†¬[ÞJÌ¿5Æ!lø±G÷ Þ?߀u2õSÑÝ|x€àA‘ŒÓÕ¯N&o3ðÝ·þuAñÈÇGVñëŠøðáÚ@·íñ2$w[YÁn«jàA`€E2NW<¾¾?¸gS=ß}±r9¤‘{ .v̱G÷ Þž8ß0ðtš¬óøöêêFCïÍÛçßMßÜÒsÓA8`^­< Àð HÆéj‚Ç÷3he±9êtÏÕ»wC£j0…uüv°²>Èœ¿·3^¨ÇdÒ\…6ö\½}¨ª‰Vœèû鿪ÿ}#ëWð 0Àƒ"§« 8Éáê¦_ ?Ô£ÈJx!ê¶esÀƒ2§ÿ‚xìMöG=‡BøúµÅqrßÈšð 0Àƒ"§ÿ‚x(tÕ ÀƒÀ<ŠdœN*În‡‚½n~OÁ¶k.G*ÉÑ…Œ$.¿£“ºF˲Áý‡*Ǧ¥ço¸%ÿ-o\zN¿o?ú·+€‡R^Hé¯5§xÈ’ª&¡VOæw µÚȪ2HŽú–aèZa¹ÂX½z—®ªÕ«wWq"‰sæaÍTt­°LxÄ?ø;0ÅqCî–„÷,ñ6mçãÜíd¦X•'áAú3¬ê !Z' tɸ,é>z2²ÅðìýFvÒÓ“4“yl4Èã·û~Î’€Î«hÅ*Ò¢žeèÌÃеù¼`k†õ‚ÉlTîPGãJî¯638‡5S܇®A×h Î U<¾°µp© øG4û“·/I‰ß§ó z xÉ8½*xpùÝ ƒø,.™·@Ó^Ààáa‹Ý YòxN«n7·×` m{íØÝpwx§pïÞV¬fÏž=ÂrD›>\;5óoVWO#¬ÆŸz’²¨& Z˜6-DOâÆ4a iÚÒ¸ÝhÁ}iÃhþãi>3hî‹i.64{Ÿ9Ã7§ÑÒ÷Õ?98ÒkžWR¢ ñ m|„õ\…>%#€þ<Ô¨”TË8½*x” 6WÐÊN`ÎÅ…G0Ÿ·4€ß˃UÇÝJ5§fpïzÜf5$µ´ÄºÍùÍ;wîÃê3Ì{ØßîOs6ÇiŽ©½éÛ%–v+l‹{“fi‡Â£[Q,tXˆî‰b†ËŒIî“ÆxŽâ3¤Ÿ¿îÝÛrÚ64ÑÕû3¬–.¯a/;ãVc—N]4˜=::ÖdC+ìGE?„ÃÞa¾øø?Sw,1s9˜åpôÖs.â<ðà¡F¥ð ZÆéÕÂCÀ³öèºð½d»­l„5Šv[5t,`óÑ„ÁA‰‹ÌŽN™œ¸x‘ 8¨ü#˜³}:,¬<àσ?Ã5šòŒêøn3[*ÄB¿Ê÷\1Sv[¡‘jí³bþL·§ÏX²Ôf”“±Ë°~‘õ…Zb­žŽ=§›O_±de€} @ ’×÷XG‡×úúY;\6 ]£e4‚­çбšðËŒøðP£RxP-ãôªã!àÛûê9L9ew=qy&MG¾ÐÎîµ¾Þý΂®Q©]gg'» ϶ wtMqÓ­F¿F §Ù Ø|îü…1Á^7å%É1ýß°J (ò£1“Y ]W]ƒ×ËŽsÈ-ñ¼^ṽ%\.Z9Ç{î·¡Øô8zƒ™Ø™zy9£—°oÁy¹G˯ ªÛ¬ðjÚ MùŠã€þ<Ô¨”TË8½Šxx oŽ`§¢[¹üÎÖÁÏôôöÌ›'DËGÿªßž;¨fhƒ?ÄšsFÍæ0 ë¢Ù«n€r£Âæ¾þËì¬&2'¶ô×3 ª=Þn¼µ#ƒÍåÊn}ÐÁhÇójà!¶/óßP„sù€àñ;–Àƒj§W ¾•—ô8ùŠäæñ{ gN[tÛÈH6âÊóëÍ^GÜ¢iP­A޽g;ÿ¸¡Q7<ä!=Î1z€)ƒnìb\'T³.¿{ŽÉ±‘ƒÑ8Æ#Ðy(»¶jTJªeœ^5ó‡f5øó–ß´ç†?WVâ¥gåòÚŽîòªvÇ)ˤ'æÎæ–9UW×I°~â”ô¡C}Üü&0ÿÖëÔç ¶<;lÈÑ)“+?Ž¢¶xì0_œÕ¡ƒlÙK4ˆ7_WØE[ôG[Ÿ¶ÿ ^ìÂã˜ßhÊz(ÀCJ àAµŒÓËâqÁxì;oQ çæ‰í ‹ ..ñâ•#·xº—ñö€ àòø¢93'YÕoÀmð¯Í¿þ,–l<ËÈhûâE¿(!¶Â1ýóçe¶ÔÁ™YWܶFh½ºAc†ø»Ûsj¿Ñ”õP€‡•Àƒj§ÿ`·×gn¶N—ø"*xžóo4ívÀÕ}o§®‰eñà l–ÙtsíÖ,À?¶nâüYò›öΛc _á9W¿|éÙVޝ PÿqaذŒÐ2‘Ýä$vé)^[¢S‹ß±®×Òá^•ÁB^ÉŠcãý,ÖÈ-£ÀCéµðP£RxP-ãôŠñˆcø¾›©„Çã2Oµm™fåÏeÛ§6ï$ÇCä²bÑÊ–¾-;ùtZæfÅæs×ÚÛ!-P·q~èt–ÑHår¨9(Ä\NÒ’%Çÿ™Š®ËŸgÅq„˜4k¡Ú¤¾ÿ,{îá’ ¡÷RéçØe~ kù2à¡ÜÚx¨Q)<¨–qzx­™Þù½Áÿ6Ûêc’Ô·ù™.|>χa‹ðˆZí5Õ»O›n¾Ý~6¥%@}ÆöÅ‹ŽN™¼ýŸóøåð¨bX…,ï"é¢^· wrk¶¦­pÊ<©þâ*”ðPJjTJªeœ®ˆ+vRû܆}vz²}–ÄÖ8ufüF{G3¾DKΦYmnÃêåÜ£9·¹9oiUl %û²œ{Iz× ×/þg‹³td\-}Uï=p̃ Úx¨Q)<¨–qzY<6iYP$‡lDê‡f gT©Zç6·Ú<ÚÒ¸‘Ho–hvùkòp;u—t× iÀí ¼ý\´Ø»"j;à¡F¥ð ZÆéeñx@£}û-÷úpÇÆù3eö|“º¡Z.“ô¶Vig•ñàçˆ0ZÛ†Û©qxK+·³¤mïr ô?><”€‡•Àƒj§Wú!A3“Qç(}NóAˇÚ[ñ•ËÆoŒ‡ül+³Eúáú]×tØr°Ë!;ð<~ÏRxP-ãôã1Ã$üŸù3uBê/™Èö_¡kÀ£ºÁñþ¨®½hé¢#Í„ù„Êz(Bð¸”ñÏêxð8ÿ_!‰¥„ÃÙƒ³ŽàÁ#íb>YxàÌx.><0'])xàOº<^;Ÿåu¹zøöøÉŽÙ¦Pú׬=G""ñ!ñX»>­êwv{ttlÇn·¾Óú(ûhœxœ»G"8ßkJ¬í„àsu;›½sÁ†ÇÅ+yòÙÓ.aì?°%])ÏÅŠΤãÄC)IOuß%;BŽžÌ[ Út š!»‘»À³ò¢sR>õšµgUŒ¿S>»H„±ÿÀŒGÌÚSòÙ×®«FÿÂ[ìÛ•ßµ»K÷ËÒ1Ôýóÿåʧ>wcÿ¥¼×”XÛ¡óPæß¡ÐyàyÕ']:×íûÈðGÛÞ“:œö Móª—~è<0Ä4îôü†Ñ“œ—OŸ>ÌÙûÎß7gó†§ÏAçQõÕ Á…gu<0'])xàLú' Ùõ‹OÒýX§NKtÌ ñàñv’ˆGÌšSxVçm8ÛŠÛjsB~›V…Çå.³@ן۶yyêØÏû+¹$âó½¦ÄÚg[)¹”à¹àÄg›t·kû“þãÍ“£'ö ôÓ˜Bß8ë´‡U‹þ7š² ðP£RxP-ãè’â¾û[™ÏÒâ—üüP9à××ç¼L`Õ,¨ÙþƒÉ²Ê^8tHÎæ •UÿKbOn½ÿäÁ«ìä;š¸%Å¿<ˆ™C€E2N/9Û uëÔA× KÌU&ÅñxçïûÁÊUóÐuÝv‡$h ñªð8'ûÄéÝmX½<ˆ™C€E2N/õ9R‚ÊxälŠ-6TVÐ…g·þ!Ñ•à#í<¶lü Ï/ ”}£ýF—[ÏT|ÌÿMYx¨Q)<¨–q:àAOŸ>üܶ͛H‰¬¦oÍ8XW¤ÍžT/ûéêððEÖ–¤ ƒŽŸÌ<ˆ™C€E2N<ÈÃÕñ§n×õÒ³­†¹Ñ»EÝP½³ÛÏŸTiÏÕãô~®q±Ïb&À€‡ œèe[ÖùF£}íúÏû£÷Šoº›Û_ ~éoýæÞ ÀgÆß®YþÜ@º‘?4h½iâ<3”†y#¯»n"š§Š¤dáâé³G9[6J?ç±e#ZN{|Y;ÊÀg~þÁƒŠ«ÿ‹kŒøs²Ÿ=xqkÒ†úÇN@çAÐðá‘7Ûñí©/ž^}í3èk«e9ÏÑøƒ× ?›lx•ýß[“_ìzxàËxÁ\çsü'óg7ÉÕéê½°$ˆÚ€ÇïGù8ó(MgUÆV®ßªàožHÞÑÅIHc†4áíÜyöŽy4†<w[Ý û¨?îÍãœçÏ“óÚtúpî)|qÎéS›¥E¢JȸÙìÁ·5Zðæ—$ð *(g¯Ý ž¯Íš³—ªàxs©ws»}™¸öåÛœç·6ð6«h<+æ£Þ(©(€‡2>ß§GÃ×-‡[›–$ð 0(vÜÙSouÃF~þ>ûO?U¢'À€Çw<ÞeçðÆ|i·àíí¢Ã€OÌuëßLj8,Q Âð­Ïôžk]ºÖa2Û”Åc6ƒ¡Ë`Z¡å W#&kÃv #`RY!V2˜ ~åí—ÁãÑ›gƒ‡XŸ°±´Ý¬™²9ô¼LŽÃZ©èð v xÈðøXæ_¿»óRzSf\^¿†ÒSuû-“ §êâÍø§2Ù`ÕlÓR§êªâ„Ýêá!àY{ t]ø^h™Çé 4òáysy AÁ"n5ñð8Â Ú ó¢jnÅðl"ûà43xƒù½ÐK÷_é3—­þ™Œ¾ )ý™A½6+ö}™¥ñpi.{4FÙGû¥ð@qõùÍ&ëšn»•èî~ùjz€±x<‡ R#ãôjá!àÛûê9LKoø :ºhé&г,®E¦çzh"@ZÍí3¹-æ ælF 6ÓäXÔ[´f2»Z3V–âd‰5S‹Á0±fØLd°Û2m—íªj/?æQ+W0ìþak2<þ²x Øz3¾ézÃkÏoqæI£¥o4KÅ,àAl€E2N¯:Ã[ c'XPÁq¾K ã p¨NÏ!{4‡­_Jª¹sKfàø"!V2\ ™Ò£Ö– Fs£3ƒ±¢léÃ`2¤w.i/¾GP¹=W®†ÌÀ)¿2(–_Þ?jê9¥ªu:\ÀC­J àAµŒÓ«ŠßÊKzœ|ay9<ï ~o;¡‘//¸ªx|´ï§êZÛ3y-™öKÌ9Ì@ éQ £1“ÙÙZQôcc†â^,Ù~*¹Ž}®sŒå ÛiŒ ¦ç‚Ÿááæ/Ô².ý(:²„FöEg—9 §²…<²ñرúB÷NÖ«¼³ö=JmzŽyäjUJdx¼‰ßòɸ—tw¼q/´ xïã?õ1–nä>Æ)î¿~\YIÿy¹çñÛ•ùë^0›[jÐVÐÝ›çSõ¶CñÑ‚ÇUó¥L¯V éHMF`é1 …³r›0Š÷\Íg0µ ‹••áÁ˜ÃôÓ/z|m¦ßèⳄ‡(€-lé$ç&4—á!vš²Eá _¡¦½ÐFH2ë¥H¢õÖè]zšq©ãåƒN—ál+Zé¯5§xÈ’Jn¤ºï’§EOF¶€JéÏê7 ØÈj [¯rÛ¹|ó;†ïN—Å[ã®utÜáOþóD1sƒÛ µ3“?;1ì.橼ΠßJÒ_fU_Ñ:a*w÷ êÚ= •\Ð쪙ˆôÙËoä»úú$&ýêíëdšýöÃ{¤š:ˆÃbsÆ8ò‡øsÙœ6[:(.g…'_×™ëÎ);Ž;Ðì’¨ˆê†(*¤QDãåâgµÎF ¢1<Šß§ó<Ô ‚Zµäu B!ÛÚh³“˜ôâR~+ýgÁ‡¦JÏÃn5øÅªãEã©Ñ/Œ¥'g26¿6£B®]¹˜úÄÙ1+"ìÚ•K¿ lÎWAo«H‘nvü2xp96Þ|]{þ %Ë6Q¶ "ì´cû¬DÀðP#<î•üQ,{©æïqêtå7r¦:t—Ö¾œípÿpZÆ•Ów8“?êMÚ3çXœðð½M>Î ½yáÈ©þM>´]+À‰…-[~8३ º.lÕ”w"zz´ùh9zþ± ñH>¾: ¨»ƒƒ6ºFË–~;ǽëV¥ÈD˶{«·­âÉZ%ÍGQÏ¡cÇŸG€xð@Ñ/òÓ§lz ð<ÔÐ êšxÂÕ”TêàQ~#óF&1銅þZêmáŒÂöæ¹)‡5cnë·}¶÷?TëÔ1«?3óŠbÏäxÄ – åÂÖ­Ê÷èk¦Êü/—ÇãÐñÕe“Ó*ôiQY˜ÌÒËÕÞm%‰­|·ÇÒ“¯iÇŸOŒ8ñ`EêDè$tÜë°ð<ÔYiCÝFA­Zè:DUrXP ‹²9ÅcY§+àq!ôƒÌ³:=Ÿíº(­òA¼W5zžw\ZëYþ¹ †d],CÂIè‡ýœ@#Yaå›™ÑfÇ劔Ç# ð/|ù¥ñ=Odœ>{#½Lç)ÁØyu—÷Ö64K;šgp·“·SŽÜ<~ðÆ‘-ÿm Oò;`sÔnLä¬Ú}›Š:ÖÓª-ÑÕ éP‡;¨K„ÉÒDѱôT$ÇS!_þ°hùc›Ö¥û_ "MzzõÄpØð<©#dP Àƒ¼¤—0}n”™r)ãRòý•=>wdòH=WãøÙvOæ±g gÿ1Ø»=ëëXÆÉ2ÇÿÏéV}#œ#¯%ÝÜš†Zd†LŽÃš)²å_ Ô|4ã7 þ'ð<*ήvxܼž:õìt×éÍÖ6[uvuÕ%À2<||Û)ìªB±~Ó2ÌxdÞºö±uë2Ç<øÜ‡ÝZ¸­wî*èÚ:°µÛx÷]=ÏŸ¨}6htœêåP(ÌÅKz8õ¨ÖasÀ𠤎U@-ò’®PÐ÷›ìÌê|-[~¹|Ëý›Âð‹ oÆnºjªÉé™3ö.·Š <rêYÔð /éY«"òºÿõEK ]'˜Ù7â6²ÛcO4¥ñP8桬¸sûúã5ÑÒÏy¬‰.ÿ9ãMÒ×µ˜°rÚü(ÖÏÊ}¹àx³x-y£]øôÒë–ù°!áxÄy¸qÿ®;yYƒË£F>ìÜùM#4x$Ô² ¨àAÒEþ/~QœlOk̦­æ[©FŽ«äýo+ù1ž“QP¾­z-³u âT€ nwþŒ@Î,§²ÿK…xD…Šßì17iÀkÀuå¡‘äEfo5ª¼ÿ<å_([¾É\<^·ï#“㸭‡v¨3 õ¿= g[Í·eÔç6ù“ûל@7ô#/€•@7=2iR¼Àª úWò¿xUˆÇ>+ËG:¢…™Î³&2'ÊÑÈÞåV€à¡Ò eË7¹³“‹Ç' Ì™´Ëͤ _´´~{.Ÿ½¸ÿPë7¤Ê§.ÝȂū)ÑœÌûÁêá¾l±¶­3J©®J¬íÐy@ç¡„Õ¡óÀ³:t¥#ÆÆùú´!ƒï·o«UÃv†óçÌ´\¥žGé0’ôÐö]ZQóÁ†¶v ™èÇOŒ" Ôˆ‹‡³Žà)‚ÁÁÛqÖP²¦&wvœÕÒ1ãúñ@ýx à°âÍèòÏyxq½[ñ[™Î4ÝÜþ ü¿`¡þÏÿâŃê?~t“Yä"A7v˜Âx¨$ÌØIÑ`ŠãñhMt~î_´µÐ5Z<ˆˆ'ë×ôìñE[]§¸ï&+ãtÀCyá¶ßcŒõ˜”ÕgÕ™³:;ª *ãñ(fUÙóDi*óƒ:x;™\<Ìý̇4ÒV€Ae}ŒýF¶›¨ö_Y›IoJ‰}Ô²Þ»5çNî¿lßïSíñëTÇ(öè…3†ß-þžZ9mþx€àxØâßí³h>Ó‹–SΜ؞±ä¯—_H‘þxv•ùëF|£Õ}ÿ÷¸:“Ö©‰A“¦.œZ´ìîmo¹¹c”èäxÀƒ˜<ÀðÀËv/§Œü>rÈ÷m½þ׎•¾OÊYÁð‚–,¡›*ðø7`æËßGìþA‰NÙx€àxØÂë -¨ãCºçåƒÇSN$f,íö©½eQçQi'ÏmòxÞT÷ùŠ,Oâå@±€µÐØÖX¶ìé´bÝà¦(ч¡ó (Àð<°…ðˆ˜ÆkÙiB®¶ôCa÷©··ó©Ûî¥uÔÞD}Îc‰ßR#¦%§êÖ|×¼ó 0Àð<°Åªã14aËŸÞMe\î³¢¹_óÒ#€x€à-¶œŠ£‰ Ô•>ÖMš* Àð<l±+e/-LG}ð`ø05ýAûSRòON ñãAnq.½º’ñȸõ9©äëÑ1 ‰ Ë× åScë?ðà°M>;›ñkM1ãqæÜ+ùì˜ûl¤]z'ŸOÿ €Ôô×òÙ1ô8ñPVÒ1àq)£@>5žþÛ;])osÌx:ú@>{éþã³–¦¬F7àk4¢\x¬ô±¦…4x,ñ[B5xôç ùNq÷ô¢;7²Ò˜B”h—Àƒ˜<ÀðÀÛÏìÐ[­ŸNKW<ºó»Ó¼æ¯táhÚOrórö€ÎƒÈ<ÀðÀAÉìþ›¨mDmhnËFØ :ºzºÁn+¢ð<ÀC,ÚinºÃ á»mK/W)ÔòXk²ãä é­)Ûâ7wu–î8úÃ9z\äg•àaj@srjoÃëæÀÕ@SÛrP¢‚ð<ÀC Ù2”u(á1;l»ðèéãgO®Û¶ÁÀyCHjêéÔƒ#§&;xît\â&‡=ó=T‡–D‹fçߎ)hãìmãáµÈYЇp;àAL€àx`ˆF1ãN'Èw[:wjcü¦æ^qkÎ¥ž>wx¡WÄ?IÇ;½-q“¡Ûé%ÄãáâéZ3¼&êuúÚr¦{¸£7”hw8`NP€àxT7ö¦î×Y¥s*=EŠGʾ^Ì¢S›lW[$Ÿ‘Ýáð¡„®¶²Áèù?© íXá³²^X=4£‰#·³‡§¬óÿGé¯5§xÈd©I¨Õ“ù]C­6²Z=™_1Ü·îê3- b²d Z@x|‹ÛÚ‰,BBÅ!!ì„t±l0¤‹Câ2‰$,‚ؘ1wpÄ`„GéA8ÛŠÀ<Šdœx(/šF4µ—8Èðë#v‡ BB–ûŠ´Ånè¡!£„X!¡!,Q]—S.á„ã1:bô?ÿª Àð HÆé€‡’Â;ÌW;BG"ÃÃ!@d(=¼!ªç,ž/(¾O WÜÙ^zþnM{Ñܵù¡Ë¢{D÷%KÕàxP$ãtÀCI1]òoÿð²å2»­~hv¢åžÐXØÜ5ÂM†G UlðøÀƒØ<Šdœx()Ú‡YH,Õ «uuBêø¬X…ð@rÖLA×€±xÉ8ðPFø„ùiGhóÄj…‡G„§¾¨ 2cî°8¹€±xÉ8ðPFL”L>4h|kÙ:9h9h\‰xÐ#ÌzGôæML£¥OJàxP$ãtÀwˆÂBô"ô$NH ô>ºFxÈ—IÄcTÄèqÞ³NÕ:»»Ùqèm—……D(`„Ù× Óméé$Åy¼•¯;!èïųWrœx[œK¯®d<2n}N*ùztÌBbÃãòµBùÔØþÅSJ¶Égg³wc®#Øð¸x%O>{Ú%Œý¶¤+%ã¹XñÀ™tœx(+ér<²CÌò ÿüF£}i3ü͆óYhüÖê|í›4<¿õ½èŸ½ðV>u Žþi—ÞËgÇÜü´úovq~£¯ÿ SÇK#†£ëSÝÔÕjïo½î´|öõ±çU‰ÇúØùÔ?ê?š7ç.â‡RÞkJ¬íÐy(óïPè<ð<‚ê“®nÇÛîOS¯Ú³aáÔ>´Œ'¸m±:}'SJȪ¿œÅ4¦°+Þã½»¿{çz$ÇASÙ–"Wm¡æª¡º¨ÿW5ì<<žMšþèP9t?džÕñàþ%+gÁƒÇÅ«ydá3ã¹øðÀœt¥à?éev[=¸¸8:i'ÖÇKOïÝÞÄuûæî_å_×ê±ïTæµ·ã’6èzíÙùHºÊ¹ oIÄõÄá±{éÒ‡;È–ç lk„ÕÀ5C#»,,dƒkן! Ô(ŒDŠ…{—Yžž1}®õÿæYΪ|uœxà|¯)±¶ÃÙVJ.%8ë!üo4e=à¡F¥ð ZÆé0˜u-‰ñ¿Ö/MîÄŒuø/ëþÓÒxÜß·¦qÈÁykÇÞ¸ûQæ¾ä’îäÁÅEU,šîJú¾Á;çì—ªðø?óuÇ6Ýyx÷iÖ£IM\·ÞJx?Ÿim±zMæÕ§’Ÿõ§?ÏBuÿÑcѰ/-fäÍxô{Ï!›Î{s¡ 4Ô)HTÏN´2¤Lewñε4³S‡©®ÿú¸ûÉÆ¥‡¥…Záz$G²™)Z¶ó´ïæÖ -¿iÔ(2Dx€àA‘ŒÓt¶UFh~ƒ!GÖÇ6 <|ø±¬ƒ{·4ñÝuç¡ìn÷ßýÞ”¬[•ÁÌÛg&±â‚®ßbøî\ý½¬?xþà艭ý÷ï{öôaöùΛVß¿ñ4zî§ŽËŸ¢»=9õ¦“~ÞÆxöV)ì¶r 8ŠKÿ[ªaö¢ÁlNµÛ¶åûä8d²ðu#ù15Ác¯¥Å£ŽeËC†Z0-ÑÙce x€àA‘ŒÓËâñf¥ðñ•;YwRžÚ÷þÒÙéÑÍ3}]¶ÄdÉðènÓF=¯Ä°ÛErdë/ÛÃcWÒTyðÞƒ+6¼uæçîÝÍÎø×#©DEñÝ68^Ë–ŽÜàŸ—íCû³M°cRøÇïmʯß:wVï/hÐpØÛÝ8É>ßM6h’ LYgsÄu½ÖÔ·ž93ǠуŽÒ³­PÏäØäê¢9”ˆÇéÓ/‰¼ÃØš!:¾-£4x€àA‘ŒÓËâñ8hF¡ª×µò{Í}väò†øõõ=|sŠOÕ­à„ÝÌ·bãKº“*>º½nÌþ›·¥çÏpJ(ÝyÜœ¹qû††G>—ì$í<º &ðÊ‹:e€ xÉ8½ün«'÷wíÛÞÉ ýU.nÌÙÁÉȺWº{(Žõ¼Ì’=WwKº“RçPU6xKá¡Pl*³çêÁÙ¾®[×–yx3¼ A¦ÝÖµ™ûßwüêÖéà­ˆ‚†Ã_`;`^úl+±¸­È"$48Œ32|”¶D{ñä•a£ÅÕùÿê¤óØ¿háaõL„hä°© ó ­Ž€E2NÇö ó—Vl9½+3ëöƒ›Òî„•œü¸:ƒòÇÉ:×Í>^*Çã+Öq©{³²ï>Îܼ=¶~À‘£w“Þ1Bž]¿ÿè~ÚS»ž-ÿíãwøèóÌç¦]óýögg]•vì0vEÓñâ> BB–ûŠ4]‡†OÔÐʶ£Ù®ããˆdC¹x ØêîÊ_·Ÿ£öå‘#PÏä@#•Üð 0Àƒ"§cãÂî¤êƒåñxñpï¤Î²»qwñnd?x~ëYÀÄÛµißh5³›d8ÆóÑ ´áˆ7¨Ñ7ík«±oÞÂØvM×Ú^HsðªÍZ;\k`ø “›R7ÅfFloár(Ј0­Æ‹­'žž1}Õ²JzÀƒð<Šd\–ôgÖöìž ºFË8?÷W­Àù)ql‘õâqÜõíCÖÎÑŽÐ>Ö?, nζ3õÏÄ8®UJÇÃL²ìQsNXUïx€àA‘Œ£Kªû.ô‡üSš z2²£âÈáÖ˜žÊºwûùÚÕ9^Ï×ÅdÝ¿óà±ûöþ¥G,›¬kÚuK·Åœ0ž84tǘ'ŸŒò]¥29ðâ! +ýyFš¨Y3Ö’ª¯x€àA‘Œ£Ëëö}¤Ÿâ¦£'ƒ®Ñrv«‡5S¹mþÔºUþÐ!ï–,Fןڴ~œ| BªhL…wSwžem»žh}œÙfC[ÌvGï|XtÀ£»õcÏêOÞß`ËnÑ$Ç‹‘¼ô£åLÝ»Ägå#²î‰RÞ˜5ôSèÖÒ÷Ü1yM…w“8gÊ«ü®¨Ëké§_lÞPØ«çWmmt–±‘ùüAü$ÛöjGkoë³üØJ¯«ÑòûD1ïjp áQ±ÊÂ#T¢!nRÇ뇟qÿ̪Ë1Ž'§î™ÖesW­h­^q½­Ž®ˆ½ºùÆÓL9Nh Ùt{.«‘¶­×~¢OÉ%¹â5mǰBB&À€àA‘Œ£KŠûnY™~G3¾DK~J[pªö™ƒcÌóLw›ÞÑ·c-Ií?% DtãÑb–Í`ÆhG¦[Üy?|cjLÀqÆ—f\˾%‡!ð çëbdº¬]r]Ÿµä¡A…½X²»¡ÎôuKSde½°g9Òr´hÙºÎ:‹bßC{oܱYp>Äõ´‡ùá¥ÿìÞ?a€Ñ&#U-c[Ù9µ¢ ¡èž·ŸÝ¯™qÓRÏÕHO{6”…?œ¯VÿWfP••„àxP$ãô’³­²[ÿ{‘v]?Û¸Õý˵ÙÏ;õ“Uùî­OO¶ÙÁ™Ñj”÷°ÎŽã­Ôݱ{g×έýê·`iëòu5Äèµ(7j‡ÒðizÜ´=i›Ó„-h¼N´à¾4Ö(šï4šçBšë š£ ͆CSüàácî°¸4Zúöñ©Iø¾ƒt<Æ„Õ`÷kí.®îŠ€xÉ8½äs G)v‹Î¼­[fGÓK±@¾£IÖO û?_»:Èàò-ųõkÊvüÝM±óèÕSa·Uaï^J|iоô÷àAhù°ûÎÒG2Šy´iý#cÊóhñ£»•>æqve¨â1-›”+Ç÷é4SYËÖý¢xtŽèÜÚº†½(´úëþ>x”þfZЇ,©jjõd~×Pó¼+./ÕmçU3.ºFË¢ÒÑ_ëò[ѲhJúQ᥆FϻʜÌxÑ}$ZF#åï¹qøæªÜ =`Šûî£~Ÿ4tÐuŠÇ%¾œ §#}#cææØÖÑ݇îYzÃê•ÿÖ!£lçñÖÏûÃ2 TÍífé†4ˆ^µ-£4xT%ÁãRÆ<«ãÁãü…$âÁáì!´‹ùdá3ã¹øð¸på“’ñ°ÿ÷®lwÖŸÍš;T^ýÃÓ…·ŸDµkûøñƒÊ«U>NäçÒ«+Œ[Ÿ“J¾³Øð¸|­P>5¶þÛä³³Ù»UŒÇÅ+yòÙÓ.aì?°%])ÏÅŠÇ7>Êg¿Xýþã'»­PØL½¯Ùv]…7¹¹†„Ï~L•xo—OÍãíS1ÁÁ‰ßgçïS1«VŸÏ³&õÇxð:Øò籋6¯-Ÿ^ꘇպøša †‹'¶k[|¶ÕÐ!HŽç'ŽVR÷Ó/O¹ÿÀŒ‡RÞkJ¬íÐy@ç‡ÂóGNc:z8,_=¤Y^£á?é<2[ïáü+wu[âØÚF€Æ5lƒF;»¹@ç¡â΃Ëf/èàÍõäp¬½ZöÅÇø/¿õÙVeŸ0D4ªf˜Ncÿ¹^l,ßa®¬€³­ Àðø}ðpu3sàèØù0è<*Æ"y=‰^n¯^>%{½œx€ax¸º-q ®køïÚÀƒèpä;uí®¦§é¾lž/O>xàÀð "¹;¶îc,=æÑÇ8Å}7!x žÃ‘­m4 ýðãåFÀ˜8oóh´àÉó2D3Tg Õ܆lf¹Ïy8Cñx•yrœ‹óÈ”7¥K|…ƒJÃãSñÓ&¢y%}ÞÈ륩þÙŠ=_Ex|,žtðÛìRUþíÝ׬>5¨è&À£Šr$%Ȳ‰6²laÝìYÊÆÃ}¡Gãgr‚‡…añÙ_c-*¬³q7‹ý Ã̾[šLÜßD¿kÒSh²´ HXÒ—¹¶fðiL–µûdâñ@rì®dŒû¿ÚáÚÆ¾#ô÷ŸãÅV¼›zàñáaÊçÑéùEï‚ü1ýRÒ˜LÊ x£)ë¡ÔwOnÚ°y‹×ÌIýîD…ƒÊî<6%]¯] ï·žõ_·»Œ(;*ê<²7|¬WZˆç¯$ÿ´œùîÔ­ï óÀŸ{+àñа).6Šërév'¹¨¶ó@Z0Ê8QáàO:DHíÒx,âvÔ~Ùiœ³Ùü°Nus:N±þ9Ö½<ÃåÌ…–ËÿYÎÒ[acF$^<Ÿ1â±Ú¡u‡[Œ^>]œ¬™2k~L`E÷T< sî:pùKw­›w^އË0è÷1–á‘W‹v¤#Íg"m˜–¶P»O»1vc8,`º3 ð0›pU£i”iѲéè[-BÌ~†‡£'ƒ×l9ÃÄÂjÚrV-¦ÿxeãa)XÖ#´§v˜ößvã:ÅÑII2:x¢öÙ Ñq‡5SdÇ?Ô Ä„´]â¾ñ·Ÿ}øt>‘;þ;¶²ÝVZ>aÖ©/ßôFSÖC©_¸96 ?qù*èowFz—:‘wûÌúžŠƒ*Åcޏ…æý¾ÓhGUðØR¨©ý10ùå“›9C¿¶³Éy xT;rwlÿVæ³´µsf{ÚyÚ/²_`¶`€Í€º‚ºÍšu:Ëu–•—à ÓeîÍ“×h¥.ÓBÕðàl7£™<)ÁÌŒPþ><¿¼[ð[´ja7Î~oë}ñ#"VFù,^-7]ÿÈrñXÔ;òÌõwè7¿`_´×ÈÒ‡7o?\:›ØÝ™ÃÊúLÈMY¥~xä'Ø3e‡Œä1$åéaùAeûQ ‹f ¹¦Ñ8f¦)‘vTç‡ó:}{ÿ•tù~ôdž#ÞdýøÜ·ÏWtâ±G¡ ûXûxÌ÷X<ñÈe#5Òêvóë6ÂoĬÿ·wîAMegËC@ ¯ˆ"Šy,,Rå¡€ˆ XVƒ~2<|(!AÀã@Kz-ØbÅ«Zª»dÁ.?÷È/·Î/ÕÙ4°š¥ºüêEn¹ÌKP‘§õ­—Éã#nÞ´··ºÝÙÕ]*°jXÎ Ë ñάÒì®JiO¯\og˜´<^,ÕµnîÏ¿ñõ“rn4CÊ´åaÜ€7 RøŸnúòX"’z±"W15ö©óõñ¹z7Ë^éc=H·¶ÙÒï(Ièfç´åT6U¾úT¿î»óˆN¿ïîþ«À@´ý†NoOO'êU?LðM‚Ÿ¿›8œº×Oζíß½qÐ6¬.,¿¬àóèƒ×““ˆ;Ãää±¼G†ÕVDäò0qyhæ9®Ù~Ñ3†¶ECIum̚΀Ú×F¾Mkêi„Eß®7†7Z :8)}=eaï$·e·”Ô‹ëÕgh©­™Ù¶ûg‡izsÔþÆÁÁã³’G§¼»P)U$;õ½e5híݺѭ—uXVØ$ïTÿ‹\äyäF3Ô©@ ‡>òОçXqΣ^Ü hhʪoŽ‹ÞjÉqëH´—EX*|i*Úˆ¥¥Š±YézÚ¯‘³kmjÒ©,^q¡ºCÿÓöíC ë[…ü¢á ÉìψrTy ÅnèßéÐà –æ–w6~Ë`hÏy\Íà =+®¹yèq£êT¦%©{—åÊP‘ȺGòåÝ FÓÆÓKæ>éhnᓎ¨•Ç“ ̅웿˜}¨ ò0Myè½Ú I…/nHnìoÍN/ög‹¼6Ê}Þ8ãb1dÉ1üýâ˶qx>Iü¤ôâô ~F¦ 3¿8ÿµGŽ ß•j¾DíÆˆQ=ä¡:räo[¶ÌZY¡-jëçqäÏ…)RÍ—¨]3T•Ì3ý;¶(¶Z [Ù Ïÿ] ÛΤ€6av‡´]ëÏüVŠ-W[y{k¯¶2wyÜørÝÚUUö¨£CÝÝ =2ÈCøý/-]¾F3Ž?ž~4©óa}‡S%'“çu.Æhþy?ÆŽ½÷((v±#/,*æççä0·ñ¿X˜%ŒÚS·Ç­ÓÍjÈÊIîäÙæÔVY]}¨þ»†"Já”q¸%\d 4úQûC»½&y ²Ù:ï€Y«?òùœSGy…uQMªâ|º|]e;6õÛÛœÙÄP¸¹výØA’dÙ t«hæ NUK_:õÆy'çßçÁ[ù}æ(ßÝ<‡º5tkkº¸åþy轊y ñ‡ä±ü“Ž2TÉc.xŸÎÅ ñÈc½Êc~ÎÃÍ[{Îc”ÅÒ™óàð+OTV§WW¤U”¦•¥qßãrNp¹‰å~M~®2W•ŰÅf¥£WËî]’7ÃËú´ùwøµ·h:Àl`ÆÔÇÄׯ'V%¦V¤¦U¤;u,£,ã§ÿšQv"[˜WÊEñÆ÷V/ÌÚw=êoe ³‘ÒDiIÕIìZvlýá·ÅÌЖÐÀö@ïno÷^wç>;•ň}€¾½wû›MÁ9i¼wòxgüÏÆqz7—ÏG€°%¾´údqÉ+&Ì”ÈCÚ³WGhü¡Û#›‘<®ßø­Ä4"‘µŽ<Ð#p°¶Öô×&ê«B—g„"ÀƒªÇOJJþéâòÐËëfxøCOOÔF{Vs`kskOEŠ«zÿèû¬‰ÉàɉÀ‰Q¯±¿‘¨Ì:Zs.MrœÖ–Bë`Ó:ciÒHZOM¾‡¦ð¥õïœmó³/ê¤Ó†ìP8*i6ªÏ@[ÍI¹®¤£p•ºz´yø7ø‡ŠB™f\a\ZV/…WSÕ¾¿}0`ðüŽóŸ9|vkí۴ۚ¸E»]Àú0át·°¹ìJšþCÝÅiËcy‡ú!*.MŸ‡ <„uä!W†û,,Tg¨þl¿1¸+–‹¡|ä!z‘þýw³Ÿ\ú·\†¶¨­÷©®{pÍîæyá-´Em=r7àÓïµC}ÙUwqKGºå5§‘‡éTvêÞeyܹÿ‰¸³W.ëÜ0³Ÿƒ»bÙ)¼ ofÊѤ«;ku7­Ý^ÝPO¿Õ\Ìú(ûšBÝÅiËcyòп¸HÅh(‡¶S÷?6Ý3è7¬ÿÙÛ£íMW)É]Sví‹™½j¼"`x3SŽ6 }¢è+íµÇ‹¾Òƒn§ßj.f}”}­º¸ç«­Vîâ@„B"‘PH‡^ 7:¶‰CÙ) xŸ‰ò:&hœéØ&ò 1@@Ç3ÛÄA$È蘠q¦c›8ȃÄy4Îtly  c‚Æ™Žmâ ätLÐ8Ó±MäAb€<€Ž g:¶‰ƒ> stream xÚÍ[K#¹ ¾÷¯ðhE¢Þ@Ã@uÛ°· }[ì)ArÉö´?z‹T=¬šéÙÝ.E}$?’R™_þ}á—¿¾ðòþþùò—‡ÒÁ™çáßåó_®ðð¿0’q/.Ö&ìåóÛå×7ή¯ÂG¥9×üú šÇ¿ñ¯ð ÿ)^KþN¹6B^_Eú`ÂK…„á᳎ŸÍõ·Ï_‚6–oj#…aNÉQ›wÎm˜ÔÄ ]x¿g©òçô~ ã$çò=±eFù(3î¬_ Á€›aFñ¨Ë"Ý¿‚K3 êø8£–e­öêÒò¯¯Òèÿ„TÃ?C:ås¥gÜr:û`‚7¾€YqÑòj+L0ÇTÔu˜û'Â# 0kǹ¯®Ö ƒ@ñ\FÊX°Ð,3úbA3 ²9^\¶È/ôÓKs"äZÑÕ´ú"÷rŒzü\÷&§÷ø\ìþùòûÚÏ„ìåß^~ý_þ.þráLzwù# ýÜ"ÇËðù?—¿¿üík„lñnøèŠäà‰Æ™ð<²­JªÌêž½^ø‰+Â_ÉÛU1XPÝâh‰B$ÝeÔ-»@ÁýU˜âuÍQ’Ü6ã’/US#)µdëÅÛ´®“ë|ä«:9oqgîSdgŠ®úkñ]ß$‰¼ÌBóßv_%K”6ui•=òâÛ=PÆ¿w7'€ÒUÔT5€DÓA ßš[X1p¯ã‹Iýi šÛ-9iô58U̹FIÅ8¥Ü† ´ªêæ)|š"…¸®K.€ç±Q½¤Ò­Hã׿$©'(— dåUmõHxEsó@üÁß0ÅGóª¸P7B×(©}¥‰ÜaùÇ[{N­—Z†5Tíjþ’Dxu2Tš4¢Œ­Ô+ai}˜Á«©`RvSG±¶Ò˜ä=’‚aB©¯Ê¿U¨×® ¢æ°>¤l!M˜PŽË%k0☂E¸5¤ßQD©8b· Cô#‹Û³óG‹0p1J0ÇuÓ³Ó j'êõ5–Ò ¡‹â¶ø«k“½>‡.Úb;›fùíØjÚìK‘PÒsöе·$Xnk¿E%ŽÍ¾dê”fä07—¢ªÖV®Ø¦âóQ8[‰ÈÙ%öƒµ«Ù§Ç-.À(ñÈ-V)ž^m?D8d¶¨ ¡ ßǵùÎ 2…R­ÝJ6Ä«à̲EõÊ. ˆZ3M˜âÞý‹š6“fªëUÝU]‡]¿ÄFËíˆkräÂFíH„µ`rGÕÂSÑöz0¾P̆¢¼ÒÊRã ¶\¡ç²¢‡X7Ç%É•EšB5?«fP¥ª³7=.‰Ô Ï•ËÀ[³[ŠÇÚÁTmD¸±ÕõÕ!oBRžêY…ˆŒÚ˜6PiTÎ*ºAç×½X7{³SÓ_ç•æsi6·ƒÍ¹`BÛµÍåÊærmó¹ÄÁ­ŒSÅ^%Ö‚â‰Ø(Ó«ÂB‡2_­4^§·k2Vª~¤-”žÖZ&gâ&ÝFù µR8ÉU™¢p|¯›a[ììçMà­ØâO–d"“ßSUª“œí¿³:Qøu(t¥Íͤ- \†—…çÆRF3cWÞ5´É¸oª׳¼lµÁVý¦]hĹÃõÛ°kŸ½™kV¶¨`Zï_óGoÓ›P¨çu%bý¹!€¶$Ò¤l–lLölûÄzæ­A˜ ©¶ƒÀƒ…ÂW#Žzo[]çj'A±$ö&õ ®ÉYÖÝ• ¥º„ìâ°’ÕÖÊ2)šŽBå›EȃANi×óNTï}ËnË®«SËB|•)&Iœä-?ì |ü´ÑáwêÀ3¤Úãi⯴âjú0Ø\€ºÒ¼uP®v¢&K*¢ŒÖËfI‰Jm·ÛÂXš“Ý›ÍΚ(®ÈÎêv{)Ù¤N¾ïvžô(ñÐ-ñpë:Ãäíü£¤¤@ÆÛ qP{Ë·•d’“s¬|D±Žê›5òªUÂ'¬ñ=U5+¨æ]žûÕ=ÄAùTnsµ?æË“j«õæx—GaÜ}Å=ÙØöÕÚg~V2!¶<ë¡þY€ºÍi3Æo-#1߉Žo5 ä ä ©¨tn|†~dõ`újF0[*ËÂ]Ó IÓ˜Î&UQI€ü¬>ò~T‰£Ÿ8µcµí¥ÿö|¸šVY¦7y –“ÀIÓÀϢ堒¾`g@©Òï·\ãd5ˆš†ðXƒSRQsåæ&{>ü˜¼éäéPÓ9Á¼lµ†ñ)ÉÍïŸ/ÿ§Ì endstream endobj 492 0 obj <> stream xÚÍZËŽ+7Ý÷WÔ´F/êªÛv€ì&é]U‚Éfîbf3¿?¤^%©äztß  Ãî’DQ‡Ô!EŸþšøôÓ Oßo/ÿxX> Î<Ç¿éã_“À|2 -˜•“5† ;}|›~»pn=~4çâsƒßæž]ÿøi ²Ž9!:IüžF=›Þ“Òì̯ }¶ç—Ê2¹Z‰¼q®%çø=ãçq}•À©e‚O-†Zð~__í%þæwì;+H‚dFŠ~¤¹”éÿ£¶¢C¸¯ƒ¶¢h¸F Aà·€ju}„#aWÐÕ©ñ–QV8ÔÕåŽz; ªLCxWæ±ñ (|z§‘¹•Þ2ë-=qK0+%ø¼ª潚¬òŒ#"¨€’%j¥üIÓ¶â›v[‹Ó[¤G" ˜>èÞ¼²ìÐ)ì0Ú$ã…ÑÅHí9õÈ., 6>f ¤ÁA0ÀÙýÖŠ;l”}-N¥'3%é„ Ï»'ÓÓw0„‰£ÂÈ[eø²Cƒê÷—ÿ¼¬l ý‰?Oœ)ï¦ÿ…®ß&%“þ{úõåŸßEE6Ö3o¤Ñ-®œi%&ã-sÆe\\µ¿dËëΨ¢\¹p|ÂêóTÁFóXîàúyˆÄ;îM6Mq‘¯>éèÅœÁ|2>Ëñ -)]Z‰öLÙJYùÆ„R(ŠXÆà|Rn¡/¨‹‚ ?/#›l¸„A$üdÀ0iLÙ _€)FMB  AzÙa´!håôyµÀ™P_ì´ˆ­ä- UŽ…ž‰BÄŸcxØãBD'pa'j %ØÀ…;áAÅlëDIWÅîD}DOïÙäÅÜ !êD—¢Ž_; IH" #õ>ãô#Q¥ ÙŠ:Œä¶§lEí"¹Ÿ?ßC©ÿÚÎ8-âÁc•'ƒ? úyèƒÂ” òƒNÀ Ü1%'@l•„Mø1]2c ~ZÆv0@,1³Æÿ}‚AZ­ö¸õ5ÄÎËØ I*2(·nDÆGÏ+RÓHb¨}˜˜= ¥ÅÞ1m(™Î%¡½¥ÏŽOðH‰¶*çNÂÓŠ: ϶Tm9 O+jžó¹ÿ.˜Ô¶24­ Å ,I‡¡ÜžÿŒ£5’Žy¸†$©‘ôµÁ ïÝc`¶’Ž‚¹=¿¾³•ôÁTO9Y{ ^‰“?!㉈6žYkN&"óéD¤›GR!×ÄdD»#‰H'àÇ%"ÂNZá|›‘–6¶à§El¥!Âhf1 Ñ]Ûê¿M’+%èñ5ÀÎËØ¼RHR±M;õ,ÊìVèN<ÑY+j—Ï8àN6{ŠH†­%s™TÕg*b)p;ÕÃŽò†y¥žëce÷8¨£àìhó´càt¢N\üèk‚-3 úN÷£…0ëí—vÖ'dœ &DIñGŽ–ÖŸ &Ø*ĉ€BE½šëOµ×0¨ìô°½„ïQ֮ʸ€¤€Á¨íÐñ•aKH$G´8‡63úeS7xñ\<ÙÜnÉÃbß#šGY¡"u}5—%¥I-s#ñ‘¼º‘Ô¶ˆÍ5“/b_òòy½’qtÉýቜ‡ßŠ ¹î¾(lW ‡vŸoä2Õ}EÃýU˜KÞ¶½õ%¶‚ÛÒÅ-|Ré´©Y€"Çù‡T ¹0ûÇ¢ ‡ zÁ{´b¹`¹/AïH=âB²b<¦­+µæŒyuo½$È¿U3/ºÈ TŒ¹bÍ9ßÙeO.# ÎdËèÒR ÚjLPó™˜ãúª$Åãv¸Tw„òdaý¦“_gD‹… qeH "«›¾uRΦ Å5œåÐ¥‡Ñ+››{¦a¹v±-hºÚØK©ôÉ–ÚŽ×Jaà•ý„à²[0eþ4 ܸ˜¤ U­VÄãGÙx#w‘²é:·Á>FÆÿÃù@Æuš½3'NKTßMË}bfêóß¿Rç_~ZÎ[xЊ^©8\@·çB¥ˆ–#›jbB)‹cHVÖ®ôŒ^ÉÀ·Þ!F2Û‹¸ñô¥wÿRIÉžýy6¤­—·n¤öÕ±7Má)Ì.Y3JË&ÍFáÛlQñÙvžh5s˜Ôu(ºP•š÷ª¬1º¾\F`âl`%†Ç-m.˪)o ñj®Û½ûŒ&‚¸ Pß É*Ž¿uå„[ͽ§\[ÓÉ~´>Ôù5LK[';…x¡"߸é³o,[·ú•‹uJRZæª^’_×XÉnœ!Ž«);>i(;å]%1/LèGo"Ö.Ù›îCJMv‹%/ÈÿͰ¨b+$"€fÙ±lçX¾r,Û,OÛemÏÞÊÌ‹ °ÐLi#‘Dbb)e¹¹\®®¯(6Õ]éÀ")ˆÚ˜©gµ‡9{õJL·ÅB­²Ïu¾¤Õ‡‰CxYZñê*ÓÔÃÕÞx_ÞEYÆ×¾Ÿ4kui­ËdƒuæÖ&.¯wå‰Êp>%ŽAmžE7é$INŽ•Æp”v¼¶ÙU£v1ê¬É4묶ܢEpÿ”‘µÚ¸V›f5Éms¤R­ý…—Uɵ×u9c¬ò mŸ£©ÝKúžó·j[›&›õjÛ¡ÍýC\X>ÄC_ñ ol¬¢} ‚‚`šŒq1{`Oó-Ôrï‡ÊVÊ£ÞkÚL*bÔ¡vNÔtÛ^S¨¬”ý÷å“̵£³ðzœ+WÐÛö•”LÒ.gB>šaÐTx/ìÚçkÎ0cJÀZŽëænÖ劑­<²!&yíèpOQ”jàÊîR« wÌJŠxCŸTõ»w!F«Ñé3XL™Kõžjè×+CûÐ Ôh)¸TºÌSw¥5ô •Ë 9uE.ïìJPéºR¢ì'O(ÊÑÝŠéñÌ':y„µ¼å3_<‘кè=:*4¹k5 ’ˆ~–§’f(0«l?ôÔ™$@»:“øÆm«)é+mc}¢ê˜=ZK\õ’QfVyɹРÉݘ6÷g”j”Tǧ2å˜}]%´[•”;ß%çÂCèÑx=iŠ)ÐÁ|%Y Û]"!µz-L­òiY²ñ”Ó¤à[Þ³«Ô^7x™ÌgË> stream xÚXÉŽ#7 ½÷WøZCI”T Êc{€ƒ¾¹fN¹äÿ%ŠZÊnW7·«ÄEäã §ß'8ýzƒéûòñöãŽî¤AEHÿNÿœtzéÿÅ+Ü)x¯t8}ü{úkóç¿?þú÷‰£SÑ-#1˜ @3“äôg4Ì@k«4N àÊ„O¤j½(ƒ3•Ã$2[CZig÷²ßÓé/L|ðž>î…6Þ)ãýÄdž¢‘MÆÀËm–%QO~}9¿[ëVˆŽ4ñ…'zÒÑÐëiÓçZOÈ ~âä¼=‡•j&!rfê×|]&wD¾±XY ‹,¢åé½pÈܱ©šÕ5Yð»vÄtíÈBP^u·‰õ~º±õYy‹^ô2“ðߨNXÄo}ÑÈk—Ÿ#ùú> |ŽLßh¿u†þ™ú98—á‹ßqÉpKü°¹V/Ù[Ù§òË•—_ÙÇWö¨aÛ ½…JÉàó ¹¥?Ë^5f"§ªÄ «eG·°  P“°­Ðà 6âÍÌcF «€]Ü;€²j®ŠŽ›ö:ú1ì{töÆÏö­JΰVAÄ꺣·4&%Ê“Jt'éD|¶–¯ßI¢°š©È9Žò£kklZ:´Ó¡Ýõél`]TÎì HQ‹,6ûš‘òà ŸW–êL%eÇ"‡7øï7ýó×ÛHRÆò;¯ö•Çv~iò¶¶ä•ôümè3$˜An¤+ìtÞ¤ÿ‡bŽQÚË ‡A¡vßÍpuªéY4¿>ñ‚V`æ$7ry9ÀT°„ð{I­>!+àkái8ˆÑY¸3ʘYnPu™ÞSù{)<8¥­û²ðT ¬÷nNs;s)Ü€U&|Y¸E9Ø‘!ÏfŸÏf½p«5~Y¸¥Qn'*è–õü0nŠ^ݺíÖ™)3a㡼´+Žë…‡…ãèJîöamû¢6yŠÐ±AO€ÆSN›Þôáår&õ,¦a¹N I|bD˜ÖãPÖe™|qü|ãÀb0†Ô™ÊÎÜÔ> stream xÚÅYÍŽã6 ¾ïSøF•DýƒÎ8Y ÇbnE¯í©—¾ÿ¡”HýÚq¦3»(Þ$¶E‘ÉO$G.-rùþMòçõýÛ/wc-…sÚêåýÏEá‰ÿ» ” ‹—F( ËûßËï¯R*{y±R¾ÊV)»¼h‹¿¤µt—ÆïŽïIüñJoßÓ½²Bã[ ðs½üñþkÒÃ.JŠ(ñ_ÖCHš..¸Å9%´6¬K´w’k Ê4>iaH§ôÝÖhe-îå-“õêÞB]Í-­,:2-[à†]ØðÚÊÓðJX–ôX‡üË?Ü#ZýA,É¢ïÞ^—e“ðõbÓKrc ½fÁ£ÇaYº@ ARoø‰Û9TÄ¢ûàNÛ™|ï¹+q"X?oƒÊuXdKy¤aC6ñ[QÍO+kõ^RU˜#Èxá|Ý5ù§(Ÿ/Æ.ßC© žz”âá¸Êj°S !«®„lrîB¨^é; 2®\7ö+«¯ÇhwVkÛàãÙlÍÆØs¥µ³Ùs'JEÊ€'Å?¡$;%%æ €f¦ U”ìóä…ó7Žû9ßhEä§)¯³T“ò#Q% 7,(bàâù%׳ʖ«Èrù%9üº0Ê/—o5Å$$†µÕ9>o IÜzŠe’85Ez–›6]ÉSçILÙ÷É\¶ }hvêsªfq¶KÛdÃj}¥ËŒ½¬›˜EÆÍgPBÈFl;ƒÒBüÔ|ås„1Ëû©B÷ _²SIê[笶(J~¡Ë¾öbbfÖ´W=lov¡9‡¯˜æ@XSƒLñz¸ör˰jd}s`~Êæ2¾ÓS÷‘‰âÿÁÓ¼óÛ÷ÇñT45Hã:V?#"úN ÝíDP¨âî—ï°2÷ÝéÝr˜Jr¢+"c’ @•Jæ–͆h/Œÿ I÷=TCpµ_6FˆðslÉᦚ\¨R’%ñ‡è/¥€ >g@QX¯|;?S xÍØt/­É޹õ¥r FcÎ2¤YŒ÷"¸JJùº×Œut ô„C­FB¥0Êßá#‡†QX¼Ø¸;4 ú´øK*ð6 êý6ÊFá0D¦}~VEçÆèƒ`„w±E_ .ó‘’ÖÚ4)Y–åF‰×Ô‚¼>Wµ>*{ ›rŠÂ*Ùºª«ÁG8èBI;Qú9[:!É['SâsxAk·“Zº ßY×£T›·êƒ¦Ä¥—SíxâT¬Ô³¢^ZN¢nÈCcª9—¤ê­.]¹ë¬¿,—¤˜ÞvÌðØ ©Am´#ót6)Lô—Ѷºà=úžéÕ¾T§:«kÖ±-=Þ@l;…²fgá½È#œOªº^|@±ØáÎâ#;xãhlæ $»8?ÑÜùr½’­ƒéñ«£ZplEyº–¡Ä±"%[Çьݻk/o_‡u<`S§·kÂïH„CU;´h|k+ÓŽ`×" ѦRÇãø2ô)×sš™5†4 ƒ3–ÉÉê+T™¦˜R„ v¢QÛ9Èí©& TS—•!yÔíÆ)]\Ð&º|ÃÎGåHÖgà=ŸK÷Ú+¨MöÛ“ñÍ©b–ùR64,%»l«\·›a@Kš=.dÎýr”)®TÊ5Úô´Ÿ‡éF¦?°qÆBHlþ‡ÎyÚúIë\ôMt¡}ð$@¾Ö…–?91ªÏmk3aÔ¬UØò‡‚ë¡9Z! !ùL+“.™±;º3ì>ÑÛçuÄN|øŒŽÓʱ+ô|%i5nî„óWt•Aý)]Ç•Gxº2kã“ñ zªh…öñzÎ+'Lg¿ˆ§Â“Ü×jÍsr˜v^îÔ”ë»i–u|hž§X Ù\€DúL)æ¦aö³Ñ£Žm³ ª¡2…‚ÔãJº½û°€ endstream endobj 514 0 obj <> stream xڽˎ#¹í>_áh­D½†÷Ø^ ¹} rMA.ùÿÃR/ŠR©\öL£±ð–»,Q$Å79òôŸ“<ýùCÖçÇç?îÆœ”Ú88}þû¤ð‰ÿwA¸àNÞ9¡üéó§¾K©¬”òŽOs~ïøŒ”ðs­]ÿNïâÊó¿>ÿ†§¸¸:EÙ(œ±Ó1.¤ø¼!Uk/¥Uåvø¬B;¡()¢Äÿò ×uZ´4'¯­>¶SÎo`â{Ev—\e©&a€'›{ùÅ"ÌŸ2½k«Ò[+iÏ­Bº×µªÂ¸–÷†kxØ Õê²:ï é=Á»Ìg™˜!x9ò Ò97 HH(¼#ƒ¬ÖpÌF?Hmg0 ¨\»fl1òÞ2ûµN… D5qÈ.g¾$ŽÊÊ ûÒ! i6HËëØE#TÒ‰m\ð¦}zgÇ{Ccœ0Jý †Æ*a-¬.–¤.T‰ƒŠ™{ ;+ˆa…]Sžv]ã‹_ƒ™Œ €Ðš°½W ·ç°ã•ŒxEa†˜äFŸÃ{U.kFeÁ7¶)“íZúb}y—Ä­¨^ZÕÜÓ^8P9‰6G«±'4Ž“Z‹èg†-®ÒÈ)A¼)—–_ˆêü)F´kRÌ™U¬X&Vg(‡×«ÎÛ]²jÇ£eO;'¡Ï|ƒD+zW¦”¯³•hH´ýe¢M´Ù%º 4áxÌ‹ŽÒ¹¢ŒdþÔQ˜´ EΣ¦6YËø7Z F*93ãgm0n×ù´_óZ¨ú!d>JÚÝvBÝ}]AäºÒå%É{_é€ ]yÉ.ä •(­ÇKTÀï Æ }öMHôd™ß”Ukÿ{jßþÎÙ«­Ã{‚™¿ZÙrLï´=î^øoÄs3¾õ-ôh6Ç0—׋‚b ØZC¦¸¸vò•ÄY oMìtQ]֢墠Î`"•½ fÑÍyçߘâòÆ7«Ýw[WÅÍÛ²£…ŒuuLAñXi³¿á˜qçј&|BŰ®ÊæÄ›§¼?­¼ ø».°®™üËpcžL[ùÖLŸïÂÝ™ú0LêÀÿ<Å÷.(|êçc›{¾{ê¡ ‹zï@(ë*øhïÍ[©}‹³gq ¶RNÌÀŸñ3„Æ¿0%™@ЕeüxJØŒA{÷j륢LwÔ†‚äð TG¦öóN &aÂø 5ÙÚ܆اіÕU1[½¶?¸*{Œ¦šyW§žYß¶mr—z€±l¢—v©+rÓYµÊš®ÁÊ– Ç†§–Ô©ÅFUéR7ë†Á§ôCØÕÜ ]Ó!9Ò‚Æn°"+HïšÅ¸c²{ågâYÙŸÄÆ„¶ËdZ¨TYžÎÙïægó§À$c^MMmÆ{[g¤ºZ`Ú°€Êr\ Núó®v¦ïÆtÕŒ.Rñn€ËÕÈ“…Y6œ‰$î¥LÉN ÔÄZ²¨Ðä·MPUÊ„wæ·Šòt·]þbbÎd–œ\Áô.“Ûû>zÿ@[yfâ?ˆaí¼z²ïJœ5݈îKA–€v!-ko â÷cjÎJ­‘‡úN¼<²ðk„‘GÙêÂkáTÜÇâ¹Ðžƒ4høS5b)ãY‘Gt,ä0nOL†P˜ ÐËÈ©ÝzìFÐÂúÙˆ¨Jót.=Æ ‘Àט½Ä¡ ƒ9Púô _Ç7ÿø³÷MEþ›@VÂ!A¾*±†”L”§öCˆ,zÀ|D>1Ÿ<¼É'ï8f…©—E¢§£.ŽÑø„¯"ê¡.–,ÅkÕ̪örñ˜B=¥Î3 ²ƒB†þ¨d¾Ì9Š`”ÁùÍié„{¥Mî2 åó µá˜)>1Å@鶉K²ÄF®VSÓÍÃõ×9„§ƒÆÃ^äϰYUØÐ$S!{4ˆ`Ôwñg:íE»›ðGj½M|¿ŠC* ˆð]šN{‘Cãî±ùu‘Vxóm™N{–#²Øöq7`ŒbÁV8Éìd·"M¤s¿Î1+‹ú›x3–lEâM6©rÍm„÷Ûr7¿Ã ®ÒPPáe/ÌL´ÓΠ³O;;fd™K…{w"é™\ª£ ñQ¿Óè 0tÜ4<-5<vžÈˆ 7ç¤!}r,p«È_ ‰(}ß!«8s*ÛÒMþC³=G€v(j{V¹ ©[Ü_*šaYÑt¬tÕò/y]UcK"P2 ¤–jÚÙ¶LöÒCë±rlåáMŠpbuòm¹·Qjj.œ Ì•t¾xh®P€¼5ê€ÒíÌïDMÒ Äþ¥a¶"´Ü@é}Àõái9fÔó]û('ëòq|¶VHA|ùlí„ fÞ–ŒŽ—OIª±ZxçSþ:'l;¨ }0˜2Î|ø(v<%5Qx„Ž•Èô 3:—(1 rר*ÛWTÕ*`½ÎQ«ZYC¨P„" r¡‘i#)SP m¤ºÇ¦{¶{äSJF+y f,–l'"Æ YÞÙ*’UÚï õïý>Äl•{Ç·ò%óê€g­â£{ka("Žõí0YXíSwÜóbOá¼.§¸jÜVmŸL½Û™ú}1í@õFózÑœVA 3ãkåªi³o­8@P T˜A%¢BîS—gÛÄÖ­ÒPý†IW!ßyeoh'Õ*ÈÀ6òNx«˜F·:¡êeVª‘ ‚gQÖÁÃ74+PªáÃ…^XIèÁŘh…õ•Wƒ‘ˆ…M ™ORìP6tØti”ߣPùŘEž6(6£^­޾jíOã¶¼±RÛZN]8ÞÆnZñ»Â  Ô¦á]ÐßÓ3ÂvYÅ/{/#jmlÜwšýZ¼CÀ†¦[éÊ?äsÅmçª!ŒõüÀ(è×ÙÆ¥ o«‘-ÕñI´[!óË¡ë:û M·Ð ›¹oYà•à+æ+Ôž×óË_š¡˯e¾Aó¶Q9ê·Iš Ön­ Üz׋TR1ÓEæ“o]XKܰq[êµ»Qk×8ÖºzÇ䡵#Ls©fèWÌ. Ó?ME¦®ü%ì7¼ÛN#_MúË˃Z3Ì!Ä=CB†Î –m«Ú7:ÌÍÆ míž7_镵.ÔWÂUÙ·ô1xÖ7”ˆ¢ù†ò×e„Á}fnÙz C ˆ_÷«G—_Šú—½¢>¦"‚O2R‘GF<@ᆹÉÐCf`±?ÙÂe·—÷Nwœ'Ÿ›Í´þ\6䀭wן“îÓ²7®¨Ûà`½^Ρ·ÔPû†#ùX¡ä-]Šj#w¦‚ÍÔž ƒ0ö2…ÑÚ4½©S@˜†°­SÔ'P½y R:vó¨?uàØTQS3YRË6MZ‡;ÔET+äçxpBöY¢<…] ›º0„~Ðø:ö³D…‘† ©ì’[3>šåêÒni†ÃæÉ™ T¿iX^l¦`ìlc7š¯Ø= O4†)j µ_V5šÍÊ…¥ÔfC^ÞðhÊ—‚Óx4‹)ÛsnoP~¢ ˜w€0|biœ…Ø5õëtø±´8õp>’)ª¹P—”"€ê¬»C)s”£ ¬¼¿¤¡*òýˆÔ®¦bd Ì¨©ÊGaúüKù÷öM-•´&²}ó%M-ò‰nÎKMºÕÇJ÷¾sBÁ(áÝæ>-:HM‰r.­3ΗŽÌ Ý§™Ë{‹~ÖåÉ¥2¯ ®I‘ T¿»:®]¦B 1sœXp,Nuøz$ÇÜNiiª}OGMaEUsåp±%Gqßr0ê+AšÙÃØyÂëÀ1îÛ“&Õ îUúÃZýæ¥íÛ„Éh4‡aòÜro`h§n÷’ p¥¼<Ü:g>ôæn©™n_š0ƒbã4i»¬?nk˜çøŽê•kw-×6¦Õ ÑeêßÑt™ÂI5³àw½Yªà›¸‘ŽI’7MGô^-o@œtŸXÅóUXn¼}þø xvð endstream endobj 522 0 obj <> stream xÚÍZËnk·Ÿ¯ðD•H= €slè°ÈìâNoGôÿ¥$깟ÎI{.#¶öERäâC’—?.òòë79ýÿøöËÃÉ‹’"Hú»|üï¢è \¬ÖÛ‹³V(wùøóòŸW)’ÒÞè¤ÔRJtôèãé;¼ý÷ã·Jû—‡6aúê™v0Â8wq„Uˆ¼½€Æ´ÌÛ‹ÿi }¥Ïƒ¾Ómé?Ö·âSé×üÜ\Û\m;›ò)‡¬™@ZB«H˜¾ÓLf[Z5JüÈÊkä>$®˜_m²êÒ¨Rhž‰oî5 œô{ßz$ŸËDTù^uL*oñ‰-óHuuÕG¦š~/æçMH#ض(‰CO”‰¯•%‡ók‰áò:ËÇÛ b\îãEì[þ­¸ ª™O0þâ0é (œ¸tLT‡æy6k4­ìÞØ,^ÀHf«²ŒÅ‚pZÏKÎî˜G·H’ÁnP! …$›H“bFo:pS„UúŒmú«&•VHkzETì¯vÇ_¡3]žÓù«;ã¯^ T°`⤡åÔ÷(Qô×mŸí$åÚ™XñÙÌ¡®òE#'[º&»¬2©Þ!»¿¯G7K¶\ô¢smÙp^¦:;/ùŽñÑ× wÖê´i­]jm„Õ -œ2žü,ô¶C•0ÂÃbÙÐ'ß¶SÛ.ïƒ{ô?‰¹†™¯ñpÛñ¢fDŒP¦ EXɲ•ÈÑ„éCAVÇçßh7h~Zè0ÁÌüF‘£5D+8™«0R¯ˆü ÖYŠÜ´™_`®ÛØ7Ÿ5øöC¢’õÇ൙¨ä·JÌ®õð9#)kbÂB¶Ç"Ù{VÅåD@œÉÕt%›N“Ð5ÌðWß)¶ãú¾cŽ·.³ðÕæ6u4ÎÞÌk2í%@›0:Óg!ÒŠü~¡®/ˆü0AÊH™fé‹R†&¦ßK'J:¥-³TŠÝ2>úÊЩnð”ÇÚ†óÆT•‚‘'%zÀèó½*î¬ÓšàIئ?2êß‚Xþ$¾ç°ž¸õYÇñwg§y"y1^ íÂàÃNña§zûtŸJ^œÖàÌ„%©Ô{öݘ!ïi$¾‹ËûïÇIŽ4:­*ë.¾ó×üòï¿~¦Rffžš ÈædOë–Îç´$j^#ì7©#dúŽ2™³+—$ΗZˆ3Ëê²ËS.t€'-®ëÆê] ®o9¶ÇžHCáÃfS«4Ñ…~ú×ÞÛ²ø"ô…oÌn2 ƒ«R»i-FƒHv¦; æÁì%×=%@C낟Íígõ_†kÁÑÔôXÐ*ݪ·â+=Þפ¹ÉÓÙïµí˜õ­'X+Viжbé ×Õ¨rítpMñË2ç¦rsôôà=1ƒÜC bóXIfq½h˜:_ˆ2kîEÀ-’[t¼Ljñ»f¸µÛ³Cä·ÎÙÓ Ÿšfw‘õɬΠå%€_ øR†øÿ©¬ÏPˆE‡?7뛘p¬’¸mQ´ÃlÊíüLf4¸¶{=ÿ‹ÕèC0ä_£5¨âÛ³U¬üJ¶÷/[õóÖ*µ]Ä5F±ØRo$k ü›yÄ÷ÃÔEÙÑuP­¥öŒ%j7ô ݧ,Ñ š93QòR‡D'MâAF0*÷ŸoÏTÁÁjáÌ‹¶¦ª-Q(ËTÛ¦SJžÊPFËÆ–K$4 ¢SQv¥By¬{C‘ Ò†ÎåµWèàyÔÕnâ WººD¬bÕiÁ"C‹‡lîãjv-ÔhJ4}ë×—Õ;_ê|–ξ¥õZÑ„×7׊¯ÈAà¾BŒ!29`èj ¿ß¯èzޥϓtñè£ûN]žo%hãššVu b?X…ÄC‚© Ñš {<ò0x*¦è!¦èOy2 ¯aâ¡/BÒÉG§€³EG/(h#ÀÏ’nãTŸÊqêBV싎±.È-,ú™³Rtä}ÐÃÒqÑ‘fåø¨OE#}*ǹèÈóî;]['$­óñJo'dlÚGÁT*äFÒÉþß·û{±Ä)6J?©Mp¬B5vQ×À)Áj]‡uÍ¢ Ë¿ívê¨(£§jö‡T…TªcUõ >êùà‹²¹—ÛuºìPó¨,âü€!,l<¯Ùì—'°ÀuX—h-r)'œª^¹‘}êFÎ,*d)÷EÈæ ïÓ• /È!?$~¸A¯…“úçV"Ÿ­D&2ÿï•HES7ôÇFÍ–«nUÀƒ“íÒz~?mSÑßÐ(aCÍOtJV±7´ÐèP0ô5n©ƒí–\™ûýÕß–çã¾q&y£änGCÕÄ– ‘Ìm§9ºÙ…œÃ–n̉S—K¥N ²´ßfóÀ@×ßßa-ä3³Ò  “-,´ ³Å?yh@ hÕ >šVlè+j®¶%£0!÷‰b<ÖgNý‡@µ¯µÝÁ_6Ä#wÈ'ö”ôæ í›;qzQhLµT¹oеBy¨dx¸¶P…™AÕÅu¦À5”þ }¸ŽQ¯>(Ì.ÏÜ8éÛºÆ=ù­J>È—ÌCñ媘AÜËèšÑóv ßãˆõÆ+X¤ÐåûÈ]Ïe·%­‹Iøé²|ª‡<ààuˆg›X1 UÞ½ýó{éSõ7)¥/ÿ°”€ßóxùŽW>£zäwËr‰˜—Þ=8ÿèûòd¢µ„~â¸ÓOƒJâ^Í  •?…üÆ(P¼ L¹Ú…üt•å° ùi…‰^]ÍcÛ*ä4ûGë’òª&}~Êï^E’®²L+GÄcÅvˆ'ïZ;HèBÕØvÿ°CFíí¬0ï^»ý.{ßïrzc†Æ<ºªèüÄÎç_u­®Âå‘'ñOÉ\ð1ò‚¦Ñò‚õ; ÓšÐh× Ó8ÀÆÕÒ¶YG›.QP€ûjü‹ãîÞP>3OŸò(Œ1gÝ%™4÷°áéãå¤Ò΀Ú©Á½xLcî(çÆxx<´x|2^w³ëRœBÌ€×(´ó…ñvµÝÊËë*G€‡.úü¢¶»“ÚE¬šWÎgfõ Ã0Ø:óº ¡ #*C¾ûXUyfkóꎛðÛSºyí¹5›öe_÷€®·â|ÆRé*nÜøý±ô‚n­â÷MԬʠﵲX“~ÐàÐIéåæ_©põ]íTM#¯ÜÙá"níuôæ5íÄT†)_E†v}óÚÅí“Éál§\,«]yJ묹x%¶«‘˜Žv×&Þ?¾ý pÑŽ endstream endobj 527 0 obj <> stream xÚí\ËŽì¸ ÝÏWÔ´G¢Þ@£÷TÕYwd›Ye“ÿ_D¢D‰zØ®º \4ªÊ–%ŠÏCоâöÇMÜ~ÿE Ÿß?~ùõéÄMŠ-ˆøïöã7ïÄ+7ë7ëíÍY»IwûñÏÛß>…PO!4Ä¿»6ÄO!| adüž>uþn!KcTú„¯¿ÿøK]÷×§6Ý¢ñkðeá`¶`üÍØ,HZö8£ûú#ã/c⯴þžÖ¤«é—~–»6þùüiÑÆ'jñ¾áóA¿d¤\Üë³ioñ‚~¤=~}¸ÏügÙiÕ:Úg.™½p't”úie¢EfÎU>ûYC¿Ëô”x~}(e>E0Ï%GeÖ{ùm»IR¦ü•™µow9}´kämÙuÖ†ã]£Üå&¤Ä«Â&x+ãµãâµtE»ÂügašöE$¤Žøg ¦Š©Ý‚qªlÍ4/–Ì¡)pÕ¨ÏÜ Ã )q ™Èƒç+{÷ëQÖ/Åœ­]ü±qmªúõ!Å'3ìz;, ßiÈlñliA’¶dA5~‹ÔD¢|#ʤ¼syÓ¾º(ñÌ×ó(_­%K»—´ ~Ó —’Îê#ë¶pͶ§çßC Õ"3]õÊ£™$×DÀm‰hrôû·åÒ¨h£ÝôA´ÍÑÇ”N—Î1šu~óÁñèwƒÀ+‰zmå»ú>eÑ™1çnÖšMi_1”pæÕúòƒLÂTô«sUi Ö…Ùçæq\^xÃV^³›C·9v“Ø Ÿ8*ªoPG1./E “w˜ïŸÆ8Uclžå@渺+Z’Ÿ#º,_›1(³˜¾¸Xp€2_2[!Îâµly{&Ä~ò:¸[käæB¨ñóÌÏ4Ÿ8 ãözóbÄM§aðj­ý¼ç!Š9N®C–-jQTöÅ kÚz%‹†v€Hž™ Ø;~ƒÑê} %‡­¡üæ'(‘:&Ta­ò˜ê$†ø Sí ­†.uKïœy,=ó‚‡Î¹"#ýlÈ$Í$;A7†fÌã_Ò݇®noR%ÿâXHeYP{p´¦˜®ÖÈ ìÿŽ1Ý£Eh ËË zs¢fÌ=£Dž.u¨ Ù®^†'‘ž£àz eÕ1]ô'IèL2‘'›5j\9Y†BoUüS {d$ÁÑQˆ\ðZ FûÔróí4s84Àd›u3„®Po§ûÝYrC0Ý1Åtqk™Z' ;1YVœj™Ýx:&RŠ7ÌõÍ “ïÛàæªZ: isJHõ±ê7kä6;/‹xмÔx¸nØÉÀž&\lnuà²FP üõd³b»Šœ¬âZÅ^ï7V–Ø®ÅÊ^·¹ ‹O R3“(6òL&L* sBâG:L÷Šñ§1NåOõÈ×Ò3jÏ¿­¿´I¥Å&…©H²È;éÀ쥫;ÊJä±]A¥òžz«÷Í(ÓõJÛE¡4´;;KÜëó¬åhÐsZ:œýXžB/{KúƒÏéìÌqSî² ÞÇ’¡Ç‡D,·—æ›÷‚+Äí@kƒ;wË-7M[L.“Âó×ôlš+…Uð(u”P®{Õê;à߉Á˘t³’oE²¼Ån>§QµGÐRõ…ƒS#“În`ôDÄ7ßF¯¦ÜIŒ£"ˆCªºØÌ¸HëÆ4µåÌã±Í»ã™:ÇýäX“°ëð9ÇÊ}ƒ˜]¥Ãye?7¥Õì€xoyM~ØN‚à‡Ù†8ag½Î¬!1±·Pˆ*.[›Øsô)ت=h­ÕnÛZ GÐÅgiŒó‡³¡F‘:.dq¢ˆ0ÖœNÇ×|eéút„¦kÄ# „Îxé+t¥¯©Ó½Üç]ˆžÑõ\Ò(ºænžÙòùåûêŠê÷86#6ŽÌóÃç+ƒ%S€6M¤>!ÚŠsgŠYO§ª£îklS‡tÃ%SÚ ¹èËrÃ'íåÙïßð|Ok†çQ„Ov* ›óM«dÕ´¬R×6LÇì¯S—›>ÆI=æéZN÷¼"PX^M,°’«“>Æ5Ô7j •j ๅöÍòr> íd…çù²;Ï”/¼l2·ìf0Ë íÍšñ\*a *CŽðwål©kÞû} öEy-l!:ä¯&%©J~§DU9efš_EI{¸¯};— ŽÎUÅœ}!BÎÎÖŽ[$½Âv¯gþ£obS®.+-1ýÂj¼ïîíÝ=`5¨vº' ÷í¶1õˆN³æi¬ñ×´Òh[ZWmSÝ%ñfb–îŒÿ¬ÉÝ|²´§¸…*’ZNÎŽÕÉ›M 72;©Ó…šø†G b€0NÁöM)LÞ÷U cô+)Lã!Ð[4G')ÒÛÛZUfŸYG½™ß`µÃ¡þ¸ZwP,=l|ÇMš®ãù(Ç»"\TÿD”è¦Íß…ZuB¨Í:9>Z_ì5éƒ$¢+87w.Ÿ)ïVØ’ó1TyíšVJΔ¨§¤Ô7GÏ¼ŠƒRÇZ¼–Žåšâæ o¯©;ûÎj¥Q›3jzCÝÂQ ôü|¨@ÃXš_ÔL«´õå^O•SÂìÅÓ 4øÂ_Þ.`}@ÉyÁïþ×FÜM2Å«W[…ïö´…Ì¢ø{j?Z§ 'G1ÙRÐs²é–Ì¡Õ5ó›r—¹“‰yœ×j\®SI´Ø@è3úàAÿÂÛ4J,—Á¸ÊQXWÂÓkL®;nKï@å›Ü*ŽOÎν[*»Z9Ñ%òá…ôØïë|>F.+ì4‹°Û;óF:Êv€_Í< ÌðʽÀ’YXóâÿ2PgÔ|Ʊ;\í½Sý¿X¬Hï²x¹U“i|‘i_>øøñË¿+ß  endstream endobj 420 0 obj <> stream xÚÍYmS9þίÐÇPWhÔ’Z/W[©"$l¨Ê^RÀÞ¾°|Ì|6eòïïiÙ8¶ÁÛIe/©dz¤©ûQëé–ì))£@'1 ƒ6CÇÛE'x匃=œ!DÌ—%QF‹•I£QÎYB¯“7@#7Ÿñ9¼Eè8uÄ8Ñ‹ ”q0`|\ òF΂F„ÙK 5ÞîxñŸ­S¨RY’–( &‚¬T† ¸€/²À‡Á|*¡?eqBÆÈ‘1²€¥+³Ì'B뀰ÀXÒb¤Û*†Kl°æl¼bòÒ• ”.ü³I¾ŠŠµ;P„ «œ³b/ý]c…˜a!kF†€(`€…•”èD+-ЉPf'Ã;L9•™ƒÌCƒ°‚-*|"ïT°N„ B"8Ã-†ôƒ#ð ÂÈPæ(:I… S„d£0FNA„¬Pâ®àE Q 3mV‘ÐÌ$v‰D'œàŸ~ªFMÝGêE¯î†Š4YÔ_/®ÛöîŸUUZ¯FõÝu¿7ÖÃÑÕ_»»Õ‡Ñðò¾×lôÑË—2Û›‡öç“¶nȵ‘é÷A_ÑKü©~ñŸ¦×¢ý%@ ÇÒ±“Œéþ|2Åÿ•C‡ÃxóqÏì™Â\poTÞâÌ=¨œ~¾kŠzurÑÊ‹´Põª7¥ùݧÇ'ÿx×¼ë_4£¶?hÞW‡ýѸ=¸®G ê]=•±Øe¨×͸7êß Â’2÷›AoxÙ\U¿õûƒqîý²½ŸY0Ϫ¿Î%e~È_Ïàˆ)ÇË“í`&6ØHEË‚#X€%ÚËÞÏb¥0 Z ÚÂFæ¼:þ:èÃÛFiýZÀÿvtx|ðfø£ wæ; ï~ò 9Ì'Œ,ôliflm 3=žäì$ÿ;ð¼Û:óØz_ÀÛÑ3xÁ¨¼þ«¾mV9zëÛþÍgõ=÷jÖ©ÞïV‡7õÕXù¢öêÕðál (OÒO (¹ÌòyuÔÖ7ýÞþàê¦Q¦Ú÷šA«Rö•Ø!òžõ\Ôwo›þÕu[¾ªNÚæöß*™"¼¡Ó¿i¤º°kzµ"‚6u+ qì90zñ*e·¹Sø¨Ã'?õÉï Aò±RQÅ(^¾>C¾/Ñüûª5rJÄZfpss>AcQÕ™vŒ¬åŒ¶¨4V+ʈHšÖzmçÕ¦4zˆTl ýCäCÉìÅÚ¹Äqt‹R&OÆ<ºE7ÕÉ÷Nšö¬úðú°:mÚó¹¥ûP_5Õ¦h@ÝO˜ú¸ïG½f\ 5iù¥¹ìײedÖ²)’'- ó¡ æÎ—p¯öƒ¡ Æqræ ƒ—ò±<]ž¾Ž8Ÿ™S>UÕ«á貕¹Ìyõ¶:ªð‚ˆ>‡i½ö ¼¦Šà²“œ5cIB2šýùÎŒÒ_ÿ­ög£÷ÚþpPT¿É¿Ç4÷þëû‹ûA{¯{Ã[Iqs­iS‰ #ìNå  _–Å¿Ç$ËëC3›@§š lÛuYß´ÃÁm]_mo¯‘·‚7:aÓY"¥ÞsÚ¸í`úˆº¤Ñãzд_lÂó¼Þ–Ó³,Iµ8„è²Y­ÈFgT£ŠÛn¥bHefë­–â¿SÏm²ï$#g­‰,G)ã;ÈAN=Óí‰9ãÙUôÂÁWX"Ð2KpÞ”%f³Þ*Íéḥ“HW+ZA•u¬åd·ª«‘”3ï#Ï‚Ä=ó7 ™–‘ am$}´‹HÆ5‘ŒÏ¤(«­]­‡ÒS8K€}ÈeÀä"!<Æ¥Èݰø$AE¿)`³•h– ¢{&-ÑóÔF“— µ%œŸRDMè5•KÒçaºÅž9¯ö†?©~ž«×êÅøþbÜbÓVƒ©wÏDÀ>®É]szDH†`{N\’âJÅ)ÕxË:âhÖ©g²v¾[‚ÕHÈÛQ×rÌ`ZNÛ‡IòËa2ÙË[í«´fé7¯7D–ÂíÖ“§ëÖs08İ5Ä›”‚Ù.C˜ÍÖ;-ÇÙNKÓ0åoßq6£ÞÉÌ.õ C:¹å£¤)Æ®gwn!¶±Àc¯Gd4b«³Ü}aSd”Y° l´ç3­góz“¸ ñIòT¡çrèÔ󲚆:õ,Gíç}ŒÇ…|öø²}l²yR€ä¼mlò£ˆÍœ¾=&=¡‚#‚¤VÙGšµJÄÖ ¶+ ˆæ"B.~Ö‰ˆ½éJû¤£Kz>Ê ÆÁ(l–‹6[;r{½4qÙå—Évë’S¹ëÔó>#ßvçN]>uê6´õÏnªùRÕò„RxÖ:él$v¹Bß`¶ ;caùÙG*„ÉUë·VÑëÜ9¤‚²È× Ç ªÍù)O©ØÚÀzp«ühÏ-œ²R½99 9Íî+s»ù`׫ ô¦†yczr-”™7Éâ[ç€É? 1ÃÛÇLþ3ߣšAGœÛ¢c-?Û$wxVEäR“ÂÊs:,,XèX°ÿ*’ Ñ endstream endobj 533 0 obj <> stream xÚ½¹Ž#»1߯Ð ïhF’‡Æd†S;râÿÌ£ªX$›’ÆÇb¡©›¬û&åé'yúÓ/ ?¿ýñ°î¤¤H2ÿ;}ÿý¤„Ôù¥<©Sr"¹x Þ Nßÿ<ýõ,¥MùsÍŸ‡”Îå¿þòáËswùÐN—o1nùm^åTÛály«ÎåìÓeîq±A­oíaO;¤ Wæ7Ÿí7Q¦ „ðÒjuùçF§ 9³–¿1‘½)0äÅÑŒÛØ¶À6{ãÛòP¾ .ÊžA@n©$Æ€,t¸}E%¸0ï-$¾©$å×òqùÛ÷Ÿ©I›N ¯¨3¹2*ϸ»ã.Ы*­ ”_JšlHö¤TÆáбdC¼> ý)¨ lþ f¤ ñö7Ó¿aÛ&Ë®(ä°âAÛýãäh¸#>Ÿò;“ŸÉ©/0ÎüѦýÖŸÀq&ÃëöÛKà>?ôiºº‹dv!œ|¢#Ö: ˦ $eÖ·•e´^‹‚YVו”˜1‚x,µ™Ø)pW5o#Zo‚7,ÑÃήw²Z ¶ÑdnîU^Éø-­Fž~i}îÐ6h?Š¡‹`Š$J}¯òßt-R £ÓxoD´Šb ˆ0ëÄ߈@SÞß–Vê£;p£FéD 𤑕…{ŠÑ8ûŒcXÇ"€d¸ãŠÅp„†c %úІd›G ¶ÓÕ<|ãqFE‘’Ÿ¥ä2Býh®Wá‹ðo,F7â27Î ¡ËtQáXk( ŠMf¶¯ö~k_zÞ+oÈuuB9He¯ÂZåå»gÀ¹b—2{N TP/ÏL]W4‰¹ÞT²=7änôd´Ã9H´DÆczß:ÊMbÊ÷€Âõ$Vß6ϾÕõO­Dç€l¤ù.VQ> ý ,% Ù<:×åÙ>H·çÅ4ÌãØÂ ›Ö(=’:z;»)‚wÄDFŠ„>[f©±&>ÏÅä§(“S¤VÔpg´î¨ªOÇj ‚eǃKý¥ô°³8¿­Iâz‰TUÐÖH¡n"¤¬þ`.óÒm‘J‹!­a ¼N[x£”â!‡a*²_œë1}¸Ÿ¤°¶3hÛ«I œ˜…k¬2±Þ º¤MÁRÉ cbÂ3i^á=GGE Ì”¨^-ªyYõë \'$]c®(™®f •Ï.e‰@–BP‘RÊPï*ǃžz–B,á|–ÖÛ¾]th®ö¬—ÐÞYwÝT-vÍ,«²´á š;m½znÀ ¹fѲ=A¶¯àj©²r¬Ø¬B¡XótíQ¡Ñ˜ì`–\tdZa.ݤŒ^Õ=¬%Á2¿½¾º/? ê逾z“SZ:kÞrG¤_¦¹v³‹ƒ[ zIüž zÌÒŽ>Fþ[”æ•þöUã^±¤*‚Z5¶Y.xá|üOÛ¬Uqÿuæ¬Öèm°Ó÷Þ}`,§&ÝÁ³ÈèÜœ9eEìÍ`j>[Õr»Ñïá{I±5ÏCÞ¯5@ê¥u­ôËfmšm8©D.„©YÄõlÑ¥®ºŽlÇ⺡Žnk ³Áº¦¦áhxýuŒµZ]Åœ¡w©)ÅÁ÷t 0¨Ûª*#(¶Ä)ˆ>¯îµËåxšEU€ù¢«ŒÆnj®.oã”PÖ,P0fJo ³[R‹4ôOU“-–Ò¦ûvÀ8 VM4'À)—DFš^(3™¦ÑÆ B융¢(n‹¢t\kÏÖûÞe4%©S¬k¨·N™Ó@AΕ~ër0(õ_K9v|˜ÐF±+q=å.ßlFcÒóMtc•.MùZµÓçŠÞ¬ç5èå¹yrƒ\³iôøF*·“ʃÚÄa4Z @W_•µ«ŠT§~¬:µ‡œÜ—ª„6ýðdµ¼gm äE`çŽà ¹Ù‘Ú&2…ñï`Î0 ¨hOß÷úÞ±òR°÷§SžÎô猔†xôÄ!™ýŽœþn>µ9·+O¹½N]ôÜ?¿È“\t^™%1öpäÞ†à¡4S LDŒ­÷º¬šîì$}N5h‘Y% a ®÷'Ëþ¤^VwâÅ´Ù‘2ãi¯êoû,—3H!“úëƒêß0Ï·ë;“´°!në»HvÓ•A.ýuPÃm,$záƒ;Ÿ-ÅàÅßý°{m…ÆõÒHHʡˋÒnUzjtëàÊ'™¸ÏÈxî5)²=‹žKÊ—‰›lÐc7)¨½À¹Zû…6 0 =¼Qœv¦ù°fÝíXk£B?1èÕ Ìª×~t0cwf܉Ø)Í´<؆.;E«ÙP¬VÚ¡lCšÍ°{ Â÷Ú>@»PÏyà¶e2¥Âv ˆUƼÍõû|Ì™[íÿ§t—çÁ¾¤ÛdÌÒ¥ó“S™‹Gè°ŒUêÃüÍ8”ÙÎå7pŸgqfµ:ž{%Ò+º¼å¾™¸£EtŽ« f+WáÈ ©àú|mõ³à¯B?¼ëÿ~ûa”aù–kmTûh_ún"ï RR®È¸Q¹tëuqv ’ãÅÐòÔ¤-FhŸÚ¼•Nh¥gÙÿ_uR üŒ¹$ •Ìîöv£’0ÒÏ“º–à‡Éá•— –7±_ü`ÆžÙÔVó¾ÍÂ<À-'m½t±ã‘pëè#ñŽs°ÞÐ.Vr郹µ3ëTúÉ í,¡ß ÝZ„zu¤vÎǦž±—L¹ÈKC‘>LsÑÔ%Huc­s"#KNC2°GËyu`lÝ› P±ÈÄÍDü¿R ã^‡(ŒM3fÙoÕ`%pÃÛ<’]îìVÏ` ]àz\¹«çýÞ ½.z §út³æEàrJ~*Yš;€)ûôR’N;µ^$ùØœÎÕ¼–a™µŸŽ<7"k…sf\YªÇ®šØ³¡‚ÌMFš¡ŒñTô…°Ì!Úߪø…5yP¬#Ä3H7Ââ§m}d±‘°õL/¨ë1 þ¶x4¨É{ ÒmP±ÀÊ¥ Þ:±ÚFvIïâö:ÞµWkÅM5Ssbú9ºèµÂX²¸ò]FÍr^öL–•3ÅüÜǬ˜˜HÒ7/vl5¬àyýN\=®2Ïk¿išäso«s«dâWVꉊe3˦㒜ê0?±a>Ú$;VÚôTÚºœ“õ¦§*—Òüd6Æ÷Çiýrv³õÉË#ÿÞ°ã“8gqÙ¶3n¸5m¶cC¹‡Öå¼ïH§eãp÷aßᾨ‹R«NFÑ^Z)‡UÕÆ>±kסV;àÚF_R¦Íê/—V&”ý83žÙ(É’ãÇÔ|’] 7×ÏҘ宕æ¿4\'ÈúðìB±s,H+1ÃÅ95_D_¥9½æ+îÓÅ ;o{óOŸù©†:í¸^®¦Ýë°ó¨´9¬ÅÕv"¯§3ç¡»î’&Î7’F—ñüÈ¥]ya¹01Ô2 ×/'øL‚*§ª÷Ö“z¨!Û‰ìî@™”$:ä®ÊÇøäÕu.2G—í[(“ÿ“òô¯ÃÆ'éáOY#”“{ÝðœxšEþAÈÍŽ<ÄPȯ,ÉÃÈœñ ›!Î;³éçâc¦=:µÎ«nƒ|‘ͨ3È~8Ù§ÈØŒl¾Ü–¢ÍywŠJ$ÓobÛräpéþýëߊÐ× endstream endobj 539 0 obj <> stream xÚ¥UË®! Ýç+øP¶)iÒ&•ÚmvU·íâªÿ¿­Ã<2½Juu5—‡Á>œc;`~0_O ãõqútG4,³'o¿Œ ÈN–›hæñÇü¸8žÎ 32¼Éèdœåû"Ÿ—5µuµß§³§r£Xð.õ?·B½ãÕDZŸŸo/6ƒü¼2M[ÈÌÎzrpÓÙù‹zeõŒe^p8±P˜Òe1.+€¼::S\VH œ½™>û.0#l`vZE2íAbað3ËÈIx¾Êº„Š¢ öÞë¸uœŸ‹kÚô[¹bà‚7­sN6 s»ZdŒ–ã"ÿ*ÓWv2y•Ê+5¤>òê ƒäêmVFB—AʉŠóy‹XÌIëb„íÕSIi¨ÖBw)ÐÉm9+“›¨ªR˜†ûž¦@ɰOÖaõOS+ðAÈØû‡6 µ=JÑ&ŠKÛ+Ádô½ý…¥à¯ÙöšÞÁF¶¨VxÜÉvÏ éÄü±g¸h}ä§g„ÑÅOÔ‡´d¶4ŒªÜ‹ 1±5}4"[Îô× k[[€Ãæù5¬Ž-¾v?™£5f/êIÎæ°Œ5GŽ.Þ§¿Ž«…> endstream endobj 548 0 obj <> stream xÚÍVË®Ô0 ÝÏWônnœØyHU¥ÂL‘`;;ĈÿßâÄyµA+t•ÛNê;öñqõôcÒÓ§‹.×÷Ëû†8­œ3d¦û÷ ø‰æÿ.(Üä5*0vºÿš¾ÎZƒ_ÞHk¾3f±ÈWr¼x #_5/Ë —o÷Ï ›&Ð*jþ{€í(c°b,°ø¼ òCq@Ë›¡äÞÅzlÀËÈÒ·ÃVKL¡­94]bù9Õ»/—¯¢÷ÇðlXBFq%®­ÞW|s•¼%_ËìÌCq,©¯ÎŒ³ é-[†^9ÿÿ&ì^bã‘_BNDË欥Í>Ê«ØçÄÒãl‘WÁÃÑSÉ3-f‚ Å.Ò&Ù¡tB ³^É¿)8kæñyúEPÎ`K.e—]¢/y?]S¾’¯t_Þ.=’ß‹¥BÛˆ˜cXKÆmõɸ” »PLǼ&s7ïÒT‚Èœ3Ùv rè¾;𲺒ÞI> stream xÚcH7PTp`Øÿÿÿ†á8H׈[Š`*â endstream endobj 553 0 obj <> stream xÚÍZ |ÕÖ¿¡L i Ú§4ñ©¦¸+(*ª(ˆìKÓ–Ò}…nI›¶IO“¦i MºRÚB¡ 4È*âeÑP|€ ‹©(¸ ÀDœïœIq{¾å{¿ßû}?¸Lfæž{ïÿœó?çÜ; Ö³'S(BÇÿÆäûµ‘1ÚÈa I‘1aS^¤'/zîò ¿ Oó¨žàž»}<ªžÙ~=îóóqùõ¼ÑOtßuÇ×úsS\ì‡m‰ýïêì7/Ðù ¦;cý†°^=˜‚ `w²{Ø0Å8Å,Eôúì¢Øa/. ‹IŠLZ:jøÈáàóä´àŸ_ ^°484"rId\\ð ÃCc—,y Ï”¸°˜àñ±1IÁÉ1‹Â‚_ KˆN ŽÕëðqljdLxðø„°°à©±º¤Ôù a(naXLbXâ}&„jƒ‡M‹ K˜¿$84yÁ’È…7ŸÞœ™2b’ K[—Ýke¯7ùÐÞwõ¹³Ï7}ão¹Ýß§ß[}û÷  ÜvbÀÐ]wpž?%Ý9üÎoæ©¿¿»æž)ƒG Þ4dÓ½å÷íœ ;<w(°¼Ãg‡ç’JxF,ñ×<¯…Rú͉ÁÂ;ò/¸nçÄYøC¤Gç»þØ •Çôcèu“¯¿XúÙÇ>°òÉŽ—Þ å몸©ÇÓ7嵘ڠ6Û¶–ns~Öt¼ãHÝÆMÇÎç3ª¹¡cB‹ž=íéÈÇÓGä/6EÁb˜nŸîœÁû‹E‚Ź=Eªäã‹:_Ùç,ãv?U9Ú>¯$Ò á07vQqO-“²`Þ3<É;—qßÙsªyË;Ç[NVuÙZ¬ë vwfì@_‰wÔ \—BPn÷Ù¿E‰ÎìšüÊg,…XIrëÙ¬iÙ’tÃÝ™#±]:Iòh;%ÖËÝ)I?º4_·úìä]I«–DǤ- òӄĽ ဨ’X¿@§Ä”Ø‹»4øSÛi7ÙrÕâR_IºŠÏ¤/Iâ9^}«ÓåZsìjœ’þŠâ}ùý¿R…Ç/Ž‹¯MmlkZ×ÜZ{›[p¶ÂFá#Á_uPø–[±·b_qE‘Í&˜95á¡…úbƒ=o[M}I5TBa¢1’Ÿ(çÒ‹ÏŸ`2æå§Øò¶µí„­P_¸½Ð^R\—_ò‚5ÃVy 1é n½M! óD¨ RœKkQFKuñJKiaI¡½Ð^Pf)µ5¬kÿÚ`sBÚý|öÄÅÓ'LáyŽ}ïM˜©åa‡emð”ïÚMfP׿³êˆ½9ß–m1˜£Ç¥$D/Žö-Û~â`‰ø‹œ{׎ÍΣu½ùi†ÇÏžBªé¸"Œ¸pB`“¦<#„zîW)ý5A4[tª”gè¾Zyˆ)Ïü‚×óañ›ž¾© a¯Ð®’¤ïwëa‰)\!ã4«¡ûš¹B,x©g¨jކv lk9±Sœ§:- áìöâzà…YÐ >ÍaRÝuÒ-Óºñª+ÐXØ~åp VQ¬tU{@’NëPÓ7Pj¬™+ÀÇ×©ç ´%I¢'×\ÞœVdæÚ‹þR´: £°­·X,54ŠžÙ°‡žYó7qaÅéμþ!Ogª1-Ï„LÈÉIãŃ׫8ݤXÃ|S> AFzƒ¤K ápò&ï•òoÓÖ_q‡(>ÎÂIÒØ‘õ °.ëÂË"·[_Jè”J¬']òÚNÞÿù­ GR…—]qk<ƒÖž]­¼*ˆÂQô¸PÖWö7Bô¥Ã©†›Ó¢74‘ä 1ñæ®ÐT”o¾lV®Øek*®µÖÚ›—»xSq n…¼1ˉÍÌ\Œfä.AÇÙV9ÊQ+ßú†ò…¥ãùÕ6κÑvJÁRXd†¥¦üÂ$|Ùä«üF‹ŠæñÊ«fsA*§ü¦ÐvàW›ƒ TúVžA ]ëMï*ÐáYŸ.ÐWßÛ'I¥§pÖL먤(GðÊc 0)‡0|£(¢ˆ7™ R¸Â‹¹øõdrþ2VàTˆ.<„Œô…ÜÞÀ»ääLJºY1çýLjÃ7+< Ūë `œë‰ÎŒa— ­U|rBxüÏpÏóª8k–u!ðÁâq¤8rjÅS§ÕïÀî]{?ç-æ¬ùœ1É” Ùfo…ýàr5¾‹jD£büMCg½ô, âtiéŒ+9XÁCYÉêâþð—ñ¦T?C\¬zcä3Fipí¾rJõ…ºVk² w'Läý3´y|¶ óÖ4¦*<ÃOú<'ü Ã1„fº††`7Ys Î06 }ʔșŠÌÅAkÍ\Ei^²ôæeùÉüàë³¹ÌI¯CÄÕ ¶CÝm«$6“¼éÒåL²;½üP‡Þu0óí0^×F,àÍEœðB„J"I¹Z·x;"ì ’¤¨È<”EÝo%‡¼Ö* æ¶íÚ²o;ðÍõI0øŽ1ìĵŠS'…—ùaÕa@Ì4z¶ý€©Ü`ÏEs"×ëÙ4Ôà·ÚNl¿t 9‘ö.Ñ´ˆ÷/Éy‘ò26¥lŒOQȹïóÇ«óAž9×”ßM”2Ý žW´nÈãÓËÓ«šj:䨀ª+Õ³ …8ØNÒÞ9rŸ#ôöajRdú€ãýìÐ+ðÅ&BG:E£ûêÙ‰ÝN=OÓ¼n£·ÎÒÕ êt‘Þæpï?Ö°ÕãÓîUå§'„'?ñ¾¦¡¼2aðQÆ÷v_9"Üûņ†éjHZ6;fÿtOc<——XöŸÛÏBÎé.wýKëðR7rGФ«¯+x8¡¸ì昆0ò…â0q䫎‡ÏªwÂ6×Þ³˜e„ö ×P£§d _¡C-§ðyª+|4Fpâ…{(ñ³:waL#“½M¦*r †CÅÑ*ÁñvÁ1ØÀ7$½5V|n,fÌÊG\/œ :ûÚöÍ_žgˆW^NÊ™ s`É*èÔ•â@Ìiñ|Ñ!è[’bÉ«îNÌwþ¤J}õS c²$©†ìàkm§8 •Xc©é²L¢tu‘–üƒN—r\›¸Ò«×hú½ÉÜò‘[haô> pi’—¤ÏIøU=K[†š\àºq^ÛyP½6×®Ý$±;É †RÄ@¦¡%‘„W*%6™~ÜJð„·úÓ[S»t¼µ Ë2p[Jy°ÕYÍ–|µØ–¿Ë“@™DiÉw»BV45ìßX]õD©:o”%NFÛ¿@DÑ“b×®Ývó9=½» ³IŒ`.¯ ÑÌoô0Râa¤b6H2N-¯aÙèÌ@÷г7$餶sú E…GÅRIjÖEð/š¸´Bc®9·ÐdÊ3o¶‚5ÈÿQT’p®Y0¸¢›ìÞÜ=ó¯Â=æVîÓ £Lªê‚“[2vǯJ†>,r¡FìùÚú]A°}ÿæ†j^y va› šòÚ3kކåv(k¾5ß–‹إˑYøê GMuze’: Q¼ò8KnÄà¥uWâZ0.ˆ=aîhxæÖÌoÂÇõ ñ13! Ô˜1-æñWa ÿ„à“ò©0°«ã› pÏly­òÉUÏY`;Ô:V•UUVWÿ7÷ÞoÔÊìÙ“²^˜29çðöÃ+vumZ9in>úÄ©=^?—X{—î0öÐ@§ð÷þI÷žv¨G,LsZn$&†p¹Q9 Ò–g6ã@[Z·î1•å•fB|tLªA÷PœÄæ´Éžm[YÒÈo4\i›­ªao\í"|îÖPàû€ôv´Þ@†Z®u£‚ŸB)úé÷EZvâ3‘ÒŒ¯0Y‘$»»óz6'{J*å{Î}ÝËÝhFHÝÒDíîÄÌ¢p3š^—núì„èëÕ©W.³/(+„Ùžªø•É+W66&¯ŒŠONŽWKìr@_MˆªLb÷R ï+{Žž¡‘÷ÇŒM¹’èÝ#›0™ý÷nwòXÌ1ÎÊÃ*SÛ™+g.ú’ÞeâV–äaz•–tƒlWÎñ½X~–¸€3Fþ7ºÀˆz¹#GNˆ©¿¸K|½Ý³³{…“0#—Ãðr&,â¢cpQˆMû^"sÔÆ›¸(?9%úû%Q2„kÊ›eüçk2ËëÉ‹å£Ä!¨›¯hÜj®º;µH´à-z–<*réRìñ9j'®g›$é€KClö=™ÍwDwrýU—.jCúfµÐ_ !mn£ejèêÒ@Yœðù蓪ÛM†0È¥¹ðÑMxÝ݉þðo ^½ºtëш£ =•ZíT.vÊÐà”zalµX[NuæÔd!·l“;œc–l„Vh[»n·±´À¦>5&%MrtÆöG®¿œ—bߨ]Y™«©F@ͨIÖ¤Œ[ÎÅe<ïÜʽµ¹©º¡ ³xÇºšµ«“íqê(˜6v"IÌIW‡áà’Ö’žüaLúþ­8,giþâvÃ^Ï9ìüq¡ã?MùþÐq‡]åd3ŽÂU:#ÉØåª)AbCdÇzPÎý!Œi¨©™¨gåùö,ˆJΆ\((ŒK¥Vg™‹÷УOî»:@˜êµvæÔ³c[@†:ª(k«8¦<.¼$üÕ¿ÇÝ)ZþÜaFîèMÜA w £¸OnwË:¨…#DCva¢q ÚîA·[œËu—š䪙–ý‰¿ïüY¼û×Ôä%ê‘Ü¡oÇÚuPå$^_“»„_$Žä”Ÿb?‚óy‰‡ë¨,SHE+"ÇýÞátÀص¦õ¤¹Ìh˂İØ8ò¶kª×~Ò*O¥™[¢µÀ@‡É ³æmÂxNy¼¤¾x-Žþ~ôª%0^üòsÖÊ¢j¨€£«ba,¼4-t4fãØ[^Ž&™½7™èPâ?ZÙPyá¿\ÿ!ŸlûçÉ{ Åt“Püçý¬â'%6†xEÏÎ,;®üØó¼p«ê÷i:ÌKyHd|!ÎÒç—YÞBt9¸Ë[ºKìÏ2ßùÿšõ4?ϲg¹1 fýsÖäI^’')I{ÿ…eõýGQéfŒV~üþÉ]Þ(QÓBšù¿7Ñû‘ìYÌÏ(r+ý6voÿ·b·¿èkXïé×¢øä”ÊG%<£:×! ½Ô ” º½ûlÌŸÌø¬¼Ó@6×%› MäéVúÌAf}LžYb3QØ =›;ÍRÏ0#;ŽÍÇÌÛpYýX®jZ…ØWP!'RiÅ‚¹fHÑKÎ;§Ó°÷Óˆc©‰¤9–¢Ñð‡—žû‰O>…å°_ÿX1»Y˜Þæé¹UáEig˜ªÛœûS¿Þ$0MoTÊ£°€‡¹¹a|V(7#\‹æCÎyÉ}ÓÔhªa嚕իë±FËåÅfdGåói&.¿0¿k6 = 8hkï8h† ‹j9°™-E|š•˰ÄÛJ[ùÍ‚–s¦Kì.=[&W8÷ ”±'0÷e÷’eÝOs¥íüKgÓA8 §c;ï…×A——Î £ÄÛ©|9¨gh9Û(R'¼G9È9BùÝ“ñþÌÝñW‘²†ï¶p •kª7ÀA(oðþÏËð¼ééÕ®øô´`¼äã¹O8¥‚ô´§Ó¦&½¤yLGqö˜¼›¢íüp·àwL詽!j¦÷׳UhìŸSüýž ᬠ¤Ó¤ôkhsH7•{7% ÅŸÐŽotèwÉ›òN+…vEüЃ–ÐE©~O‚£—ÛÝÊ òG÷Tô$Ê9˜Ü`¡Ušk1‘\!PÞ° é.0<ò1 ¸¤uQu €¿[|PôÇŒ©üKõ[ðÖªýŸñÖBÎ_œ·<ÅpyCY'Ä Tò®'„2ð?“U%T3ÿLZýh–)­·Ìª¸Ì(Xð‡Œ¥|ç×9È”e$6Ø÷ t'Cr@ø†lƒ’œ›¬ÀÓrÖ@m’cM2Â@d„ÞÜö¿í>_å`Ë/1Ús+²À7U¯iªËhÔ©gÀË“æG^dhñ([öœNýàô‘×O* ÏTN߯÷üå¯jØ·õ¡}ѵ†jh€¶ÚöMÈk7@U®5ÅšXÛüêÒêÊöé›'…L›8Y WÎsÏå•çß /] )ðê´9hl™6ÓJS}fs4Ä@n"èyÐmÕ*À±íÈÌç;ÂdϳªiT}“ÅÎK®Òi‡7ßE+Æ •áÕ†µ÷ˆIçFTží7UK²aöô¥†t0ÁÒêÒÎ'»,¤—\t¢Aî*¿n…­¬Q_ʃò-œ·æÄâž;Pë&ÈE 6Q8œsPM:Ž÷_(‡…Ç*\þüa™kãcÄܳbÀãfÀRÈ.‡&¨´ÔÙ›øM£\麊1kòÑ0^‰œjÍ)Éu@csKm9ر\„lrò’ñü\ñ)ÎoJÆÅ¿².© >û?ú·šõ‹¸œ¨\™Ïí˜ÿÁôk¸,ÅÃTx0çyAá#)F8œG1½9¥Ó ™\æùìõdŒ§dkÛCû^ 3B’ާ󓤋+Þ˜Þ`Ru#ý¤g«›ê%¦Òºk@®ÆÁ[[ ©º½ÐS1Ë¿)Òn²÷'ÖGÞo"íÜBÒD ª¤‚~òvEWD¢J¯Òé6HléÉ_Ö)5*zS~ü ûÖŒÔç."ÎçäXD™ç 9» nƒå!î¡BÝ%GëÀŠIú„\ìoä®rÒù1Ø® ʲeæ!?¼JzöÑv'¥¬Ýû’®8êsAK±í[9¶}LNPÓAc|B›š¨ù–\ùó¡æfwÙ¥ÁlTéÕË÷{õ"Tg£yõ’7ÎhE´qÌúâw¿ ¡{OÐz¥iÌ#4Ñ$'bSRä­š'Ò $ί^‘i‡æa¬<Ê*Ôº 2™ÉûÙ„;öXQÛ€ànƒ©Ú5b áñwxßCz}Ú‹wÈÿÞè–]´mîÒéÂg2¬ïHþö[Ú¼H¾§«KPOt‹ˆ]šzˆ<+ÌôÙsòéŒôÖÔó*YÓPºhwëtFtszç[j¤Ÿ¯®ëYz.FYTK7Þv8ž’t^ÏÂùî³%…žE ‘8æ%Be)ÿ2-tH ó¿îj<‰é$0{ËgG:]ðþ£ L|KRŒ¥ÙiõLû~€R/D ûÑâî¡ETSSOM mÀÈ5¦†¥+:ïA«)½%·8§Ø`1Ÿœžžß–]¯nÅÉÜAùY?jî§déw'Àó4ÖB9É'¹ù(WІâ Yˆn¯u§·ÒÙrÍÚÞs ïæåU·»Tº;ãgåê!‡l„žúѲñ¬?^FzrÝîq;½paáãvÛ¡*LeÆîüü=ëG«Ýîr¬‚«këÕʺ†8gRÐ ~ZsÓ,P³mwÆØØ³œ|ZöB/šJ·›’ôó²î6ÑŠŽèYD<Ε†¹"Ÿ¹Ñ0?téJé ÷ T’+¤¥ ûT@¹É&!/×±ò+ó¥e}Ksô%maÈçý_³öI=nïV•“·çéÙœÍ&¹Û_bÛþ¿ÐßQjÞ¤ªå$ ´ß¥èöÎjºHÒqŒ¦r`åò$–¤g¨¤9:]´ÄÒÎÌw²êþ sò‡äÜœ¼»NL&;É\ƒèž!™\¿Kϼ0n&æhiy6cIji.ð) ©KoΩR¿ƒhN‘78ÈÊÇÈöU‡¿Øßp,~Ÿ`{ï£Ê`ÏKžPUR|F^:ÆÿÌâYå¼òÖ™¥Ñ¶Xˆ€9/- µË —CÝÖªò­˜aÍÛrÖ€7–bBKV×›f©Ñ¢ ø“€YhjRج‚L«ó»ÂR“Ý\Z¸r}Ce9TASÞºT^©oÈh1¬†MÐÒ°M`Þ[¯yyH·Ù69&?–E†÷¥8=k{ÿž4‰Þ‹¦«8²žÇh}ÏwéškëÊ+q•:a’P¢ú+|„5ž—TË`™i™1ݘ‘“©ÏÐgg2ô™Æô‚efC¡7ò,FÞ’^’U–]–½"§Âè0:MÕ8ájkUI•ÝYæXáXŽ|y¥½²¸ÊR^Te˜ÙÍ%&gž#gyîŠì²,{¦=ݺ9l‹a·p±Cqù¸~ÌÇó6¦‘˜ÈW—5ÿ’¸É XÖ 1¶;Ç# úËy»¬w,³~ÿê?ÈD'ˆáLfdüú´õë»Íë·{?éðRì5ù\ê9°`Ö—‘– ˜‹¢2å­ÚûGq]É*Ì@íB hÅ&ΕCùì*Cl„}Í›>¾™Ç¦fþ*µ­²¯ã÷ Õ¿ä­þv1g}þzÏîaiƒqMÀÏœP†xr<TËÂ3fe¿Ì‹/‚㎎LQ{V"ÆÑ´ôZ÷*:H•Ã~/ 趯CÞ7¥ò £ô½Oxy·û=È‘Pöw‘ŽXzÉŸrPfÐeñMâ ªó¾åôãüàfÉ4„vú”A]Ë›xåûÛVÒé5×–jK±Ç·`Ua¯/[?«mª:^Ñ¿>–Wn\¶^»*šH@>Ì9@S>Þ±3(šÁ‡çKÞª\j¥D€6ª¥/‘ä^÷] ¹Ù¿hÒ‚š<)bO þ´²Cò¦1‰Û§ÑähSÅ;ãÄÛccÓÓsLY° r—ç–ËsÊ—“Ÿ”Ÿº<úCõVxs톃[?“ØC”í'ƒ’Kô3òÙ—0’dù·;B&ògr¦,û$‹>±±¼rIF†E§Cn Ï].‹NDÑ1‡Ô›acSûÞmŸnfo°Ì°ÒéÓt·p¶Ãž*X[<†sÊ‹H8dl/»4ªŸO‘d/ÈlîÒü·NéhΛÓWpÞrGþ*(ÀálüHbÃèQùÂýt…u‚q8ÊOnóÖÅòÉ=¼µû«(ï! tÝ}¼gÜÝÇ?‘©ýà=ÞpÿËãŒ|¼Ñÿ7ÇX ὋÔù˱LÈoŽe>ýãc™‹ñ0Ëø"ð¢Â×ê(?×q¨uï¦bú@nU~yVu"äÃB>¶jiÃÊÆºÖ­ÏºŸ ¢ ž–ó±S)¸œì’·_Ü ñÞAJFÏнvWH&Zü·”¾ qæÈ›ƒ¿% ãÝf+[&véR%©.i{¤ôñ­ž;ý†dŒ=CŸ/ €Û<全+> stream xÚ}Rß‹â0~Ï_‘{܇nØuu‘‚Ö-öTV9Ž{«ÉèlRÒöÁÿþ&»Â"WH‡oæ›™/“ýØíƒ¥4G&Ïÿ„ÖôV@ÿ¬6­èkÐÝ@‚¢íßY#öÐñq^®K­º'$—Z\z ë1ig¥ïׇð;ØëâÏ&øPúCÁvJö "—sPݹÿ£qŒñ‡1N%~m•Ño<~Ž¢ïZæ¦vwkYxÓÇÃAñIiio"ùÑIfqÂ¥Ý Ñ_Ô8$—¼¿¶Ô¥>¶Xððƒmg¯¤ø‰…[+Á*}æã‡ ‘±ï›æN X–q ',Œ³ÙT5ðÐ]¼”UÝõñî‡kw²¤‚‰/˜úòÉ«GS¼ÈtNPëÈ ‰<*š.sD‰+†h–ú*¯©;71ÔÝ È½ó×kˆÞZ| Zš¸›5>Â×¾4¦qYthцuwh[°Rˆ€ endstream endobj 558 0 obj <> stream xÚc````bއóŠ‰ endstream endobj 559 0 obj <> stream xÚÍW}T”U¿Ã0ð2M#2N6©0¦kZ.˜C¥¶é–…©£°«Y¦© ó ƒàW _2x‘o„EDC¥ÂÂiXk[V;ÃÉÕÜÌ(uÛY+ײUîÈ‹Þ}žWû8ÕÙs:ûÏÎ9<Ü÷½Ï}>~¿çy…B14n®ùÙÇŸ¾Ïlµ™­I–l»Õf‰l&nÍ Œ šÈ@$ D)Æ ÀHe`Hp&hœFéÑ_$~ç°þª„(.>ø¼ænXhçhFã³ ù " 2” '£É8ÅŠ$EÎ/û|493É23Ùb³[í«ˆ¾?z(äæ¿×1&­6&¤ZÓ­YYÆ'£ ™ééãÕñY›1.Óf7æÚ’-ÙÆù–ìŒc¦ha;3ÏjK1Æe[,Æy™¢=/1Ûæ–[l9–œ)ê fãØ›%;1ݘ›”n]þÝî8cžÕž 6lößZò—[²ìÖL›1Ñ–lŒƒC?8ýN?Z==Û’h·$ß<ˆ{q™Ù)ãØT»=kJL šñMtŽm³ØÇ©çUãÄ LãQÆÊòY>(ˇd9I–“QÞ?A–÷1ñ§ØÄËLO6δ'B?Û$ð¹‡ïR R&Ÿ××´E.ÓÖYé\šôÞFv2åÁ£¯ÓZ“\–æÌjÉk§í´í…Ú…ÍJîC¥ *EŒO—Æ®ŸUÿ‡Ý){Ä}ë|ô]zºëÐQAk”Š:ÙYËóD8/¶°oYHô]?›ö¼¾¹ìxÚËëÞZYUD3…Œ5Ë”‚—¾t4’~£ã…fA7Àv±?ë鮲×·¸]œhM± < Q¤œ¨½^J—»ô¦¬á¼Oa×4‘ó« ˆNL¥'zW'ƒ\[9 ÷öpr‡×‹ïÜœ_Ä•ÌòÏE1Šó³h‘Š[WÌÞÔ´Ü6Î}fïfÎOxb©LgO£Ó¥ÍÏtÚ­X›DSéšêŒÂ[Ì/LaCW} ¹`Ê}—¢¨wƧ¶<¼ó¹æ’Vίù!4ÁÍ Aq§_¬ßº¥pgÉn*œ?{ìR”n@ ¹cNíãçn~ïð‰âƒ¾È›–ψÒn)<ÉÞ9Îu´å)ñL¯ääœ_<¡ßËI‹×§âäOì™nN&#:£˜íÔµ¦Óõœßð‹…œ n« J±*XbªgM&ÎûÍ^Î?tª!Âù%<Š«¯@Ûpõoi|Ÿp›òå×ÞqÖl[OWfX×N—“ZÙ'X{Äàr Ì1 øx7fŒ| 5¸i3=¶°%™Ê€ÒÙyœïF'n¿M÷Š0ƒ[UûrÝÚB·—4Ú!…˜üe%¥åÏW½! Bý~Cçßàê?Uà¼Æë(€ÌúÁ ¿€I½/!4¨“ ä×f'a ¿ê oA]rÎ;¤Ëµêß ŸêlÊc!lH{‚'šßä l˜®ž- \ЯعÂs°í•¶vû+‰‘‹íiQœ,_7.šbõºƒ` A»s¾ ÓcÆÂ Isr;À·¡€ÿ*LÐ}”F£K—BQ˜}ÅÀ“Ç´ª¦Hð8U›Á…ì)b܇qsL©ß€BW K¥$UIÆ8?Äþ_8ˆ ´”[<ª3äQÛ€u×óLg‹á¤-nHôº˜‘•é9?íõIÓyIn$ Žaª~ü¿ ÜHÂÐä¯ècp³ ª÷{¼óÊÿ}õ¾‰Üò÷=±¹1Ê7©ê9¹õ•èzœ¹™—ù—™¿ŠÔ?00Æþ"ó0ÙPëzU"¤—¼` Çÿ®"¾Ü©æáv€åGL±P½ƒ »Š.EÓ³é0Ø3lªþkÁ/2'ƒûÍJÎ;ñøÛHD:¹‚@ÚÐI£×kËàä.œH™~1RÒëg·I„é"9+c7ôH26¡ÒzÓ§Qÿ> õIQü;(•D'ÄsÒ ˆõ¸»÷ÝÉÀTÆô^Ÿ³w£#séHºìð³>‹ »Ð•Ój£‹iVfnt^†k]Ǻ½ù;2¨°6+?mF¯í ‹xƒ3"9 ®Iz(ùµG÷ º“+] Û躳­e7=@’š¬uy;Š[kWÕ®me/A…ðÕâƒC NÒ1êƒKÉÔL 㪈IجŸ›}ÇW"ÖE/¶µVÞÇC£0÷[mü˜ƒxºþ¸‹áÀuL?TVP{LÐ-DƒãL‰")šÛ•c¬î_TÕXÝÐá¨ÆÒ†ƒª* ×ëÝÂÉïL±P[[)àüœƒŸ½X·}þT¸²‘£^œ:}ÈÊi¯Wx~á§*cIqyñFgY-Ê+ieäñmWáɸ^vèdWì‚Y õüj`:'+<&È}@WAÞæ¼¦ÒK;ïs¹+€ol¯ tt \þh¨i~6Ô¦þl¨ óuy"Wðõ(ê{0ð–wJ,d4‡Éëe…P¦ÁXì:,SA„< rŇÉ_¬Â±ûà¾%j™¾E‚àµÐI,Ü> é4L!¤Gš Òe™'§,FÏx&Ò›eLÆbaÐ8³Ox•Á$'¡N ªÜ ®åÛ É€9«!hüÊ­Ì3ÀØ!%+žK¨,jÌwѶöŽ­ ·Æm Ìl•kò$Š‚E‚IWò&éÂ~ûŠi5ïÎÝG߀ƒÜ­ÿdàPøÅrUÜ)lˆ(î¢TÐâ¯ÅðÀ0ÍøÉGfáÏ¿Ä:$ð¾ )ðû¦f‹hØÛÔÞ"m-h <úÃ+A*¨ ‹œ"Šëb4a5u‡zOuuµFsê¶SU›j«4·Wh´ÿ£f endstream endobj 561 0 obj <> stream xÚ}RM‹Â0½çWÌ=ÔÖÖE¤àW¡àª¨ì.{«ÉèlRÒôà¿ß$µ ‹»…v˜™7¯o^ÒzÙî½)“Gô¢n;,e¥(zó·¬ ­ÖBÒ*G¡×ˆ YÓ-ǰU’îQC{ž.RÁuÇ€SA/Ãõ4Ã3ˆý´øé%ëÕ×âÃ[q±âGTš ÜÌR/°C®/ü/Lž7Á‘¼£*¹cèuƒ 0…¥`s™ÛõJâß$‚߈>qÁÔM'­jÒ qªo™ûÒÜød‡÷×RcžŠ“$“ ø;Ó,µº:ÍâoCÅÅÚÏ%Ⱦ*Š Z98†'ÃlüYg9‚owO™ér}ýÄÇÈáZ „.ïÕr©dXE•‰3’‰± ˆa’˜'&(د~TOOwxÿÕÀM˜º0Å®˜¸lÔÅ¥+¢º8ta:þ†)lˆéw¦,:ռÚ°_3E·!‡²ò¬Ïw3h¥”q†Û×nj<¸ŸW! ;å^wÐͳÙ&!?üí[ endstream endobj 564 0 obj <> stream xÚc``Øò½úûãýÿZÿýÿw@a  endstream endobj 565 0 obj <> stream xÚZ\×ÖŸvQWq×ÜÙX [ŒQD‰ `¢( *ÒÛʲ°´¥. ¤÷ÞäalÑ` –EMÞZ£IL“DM1ÉKòΘK¾ßw—"›÷’|ß»Ì;÷ž{ÊÿœÿebB ë îÛì¶,tvq‘‡Ë_Xºx«_@T¨·Bo?“†3G<¢xVÀËŒøgùY&9æü²¹±ÎÜdÈëžÈË>CQ‚ŠÉäÝh™%X˜Ï"¿É™ÏÑ,0ŸK™QÊšz†šK- ž&,Óÿb_;_¹Ÿ£¯_¸2H»ÌféÒ¯Ê÷Å*‚•²eK—._¤Ifo#sòÞ"WE†ɼÃ}eN62™«\EFƒdÏÉÃe>~Þ¡þ2¹¿ÌÍïMYT¤Ÿ"R Gí‹|ÞFæ)SÉ!2ò©ð õóŽôó•E…ûú)dÊ@?ÙkÛ·¹ÉäáJ™sÐ^¿ðH?ÙâÅ2Y¤ŸŸ,P©Ü·fÉeT€\°ÄŸÌ‰\:2)r‰þ¹Å[\Ý;;¾ºÑuÛFeŒRæ/WÈ|ý”ÞA¡‘6ÿyà±kW¹"Ì;”"/)5“’Q³¨ÙD]ÏQÏ•-¤S6ÔêjµœZA­¢^¤VS/Qk¨—©uÔzêÊ–²£ì)ê5jåDm¦œ)Ê•ÚB½N½Am¥¶QnÔvjõ&µ›ò¢öPÞ”µ—ò¥ü(* ¢‚©*” £Â)9µŠ T$¥¤¢¨h*†Š5&¶#/GÊQoE*žúg$2 6âŒ.Ëσ‰‹É%¡ƒ°‰žIï¦ß-5™N6-ž ™00Ñuâù‰Ì–˜åšÏ41?8ÉÏÂÌ"Éâß“C§È¦$N9eiajùÀjU¸U®Õ-FÍ|=5KZ¤kÝ´p]kuJñ:&†¯êw(¸¼4¡¢ëÛ?ÃsöÌåìÃêã›*ÛJzsPqNN].Ê©(çJ¤ž ÝÀâ™xò[ %L²Ãe§ŸzŠ:O"Æ6´áÝìCÒ¶®“ìø/±’‹öELy\€'—&uñ9øvß½07Ÿµ€Ø÷ù],®N*ÉÊAŠê׺#*€ºh]VT^T+ÉçÚ÷"<åUanKÎûí’®;8˜ N ÏqÌ@˜º,,Qgq©*16!¦4½\ÂàuL½.LÒ$¦«$û¹ðæÜfEd;†KR¹àîn®»¤=ûý¬¤ ò¯»æmßšËKëÊk*YbˆÖ‚§Öêk$èvê˜wøhxY¬ÛyuM-ºÒpüÌ€ä¦ë=lŒp4­ŽàÂB›¹*¶uH½ŽW5·p,dÓŒ„—ï²/À±Oˆã4<Á’fî|ÞàÌÖã·Å¾¯¯@˜h@4còy‡½'Kl·´ Ô ¾ÓA¡Î˜O€P1L^öý³;=cCƒ8‰:Ó!ûñ­Þ*¤U\tÏA®®y9–Ú%ÁwßÃ:L[¸ÑiãºÀû¢‹Î^¾uÁ~²Õ5c8 ~òЍŒë ä“Ð﯈’¸Àž®§ Y¬Ö>™­€‚l¯Ú!îŒäâ^ôd6,¢+›‰c‘k;ÒÁšÔö÷͢Дƒ‡ï±cϪuÆðž·øÉæqÉôQTQ,ú}6^dpíHw•t±ÉZ¾X+8¬ƒ‹dãX+îŽä’S•\xz^³&ÒGºt寰žÿò×ÁKïí^SÁÆååÆwH{¸ú:XQ×›‘¢É@Yû¹¬D…i[ðîº7¥XŒM°;áÍ@>a˜~1øÕ°žïh7u9hÌûƒ@ÜΥǧd©4(1=f—tÕ«×¾~· D ­›KesjÕMÒ¦úêö›³9Ol»Ï\ŽÍÍ+`~_Mœ,° æÃãf±Ö÷m¯½Ê°¿vEwaQNnJpÙŸ´ß4%36C%I¨Œ«îúé!âk¼Z+¸§ƒrèX8'†+až°Ï˜‰+Ù†!uÔøøÐ0ý>È`%±0žðžL\q!¯þ–a?žMÙ‘ˆþ§Þ¬ lt`3Õ‚IäKHhGpjäÉÒÿåHxÝìSµGŠ a†eòð”¯üÚ´µ½ 1®œú0ºIW5ë£Ù^3=ÛûˆxPTË5rÑ*ä€ë ¦‹|¸xâ´ µèáè½x„§ƒÍ¬t uPo[â»Ã’M ôÁ¦WAÇ:l\!”®å.}x ¦j­˜}¼ï¨YcÓ2c4èͨí©r©­í©/âY8M××r½@oþOÃf çãÉ,Ó‹-~œb°>ùU3ڳĸ–¾Yqñ½kÒ3Š9%z…\-ìÖZ׹頑¼1‹x%Ø‹o;]´«G·¾Ów^roÕ]l†Í_\»f뉷>Š@ÌuÛèͯÛJ<\–`õàþwh5ouñ²GL·½Ë;ýgúßýèîùîlÁÇm«³uµc¿N{áò×Î;»tt¿vã­Ä=þÄzø1­ö绹2~£Ëº¹/2é æ’þN &÷zõ(ô˜®è%÷ôV Ö ~ÒÁLb•©Ÿó‰|ºxL³–ãºìR¸šÍxÈ»C0̤ÿÔh3É­<‹é÷Ђ%gÝw_óŽü9ñ¥—¹ø—×ï^vÌ oÐL6øÌ7+4Ñ•$;uFp ì< À±8Ißý€ë@ûK|{ê«ÚÞZX©Ü×A6‰žPØ*þqý÷xb —&ÊÁVЈƟo,\+Šå”]5ùŠQW둚 Ò{ïØ;½¼aË‹òÍÅïÉÙ‚‚â¢:I»²*:!,ÕwõgÁ,ÆÃ§¢´ü3*Üêè7æÓ`ç:®ƒ_ènMq’Ó‘ÙªDÇàß„©‰\–J\¢éDP€):>rôÔ°iü`.@ÝÁNlß)Æ ð“P¸åZ8®ÒA 9œ4úÈM@Øl:ÒØ$Éc×éšW€‚ù°øãÝí¹¬ÄT5—[˜ÔòlŒÎHJ@{+½¥Ø|–bGìü3žfçv4Ö±QœjIJ°VÔÔHbÜÇ^»óï]‚W.…]²j¿£ÛªƒMºˆ ûuo\`¦P|!o-nŒéÜžì‘´1©ÒøÀÚÝÒÅlWí©®Œa•Ÿ& ¬P”$!F3ÅΓ{-Y²òW˜ Sø1v²ÞØSo¶¢¢Dé´D.7MHç*’XfVrrEv'ÉÏ­È?€²ò)û¤nÞd™e¶©íqm¨¾¬)¿<Çt_a£æ€´º±¬Å›°±x«——ûvï“gsµàüñãgÎݵ…±ØËvÏüù¶ÇŽ×”tuÕ¡ªæî¦t„ÜJÖ‚„‹âò´Ò”"„¿?RUdæ¤Jãc’”1d”T‡‰ÎÈ0Y“˜#QÖ&U•äå”T ¸{…%…åŵ’§ÕƒàKËewŒ8‰‚W7ø³›±'Ï?Þ}ê,ÍCj…ë˜ÏRÊ!G+ r©ÙhæFá__F¸!Jˆ "„$Ð?¾ylí&Ï ˜®RM¨½ ʘåt…> É£¬l¤¸uèôÙ ù„U¾#AܪŸµxxÁ©&‚Rzöê‘è:DŠ‹À=J]§ËzFHŸï †È´•È4ìѯj<òñ!D †Ô˜2¸>4<A˜[?XAÐö:FËï]lÜIlx–ÁSB<€'ÀÚ»#«0Kñ,¾AÜÕ —GEÉå Qmm mcøeF];·õoƒSgò£[„ÒøyØ“A$ì1ÚfÜH½4^… á—õ:¨oHía`.xõø„þø˜á%#µú°­'>=ì°Ò:H×—„úlZÇÕðUE“lšÎ«ûE­cr¬2cHí?~Å›Z6uNSØ”·Oúš–èÑâéÕ¯`ÁËshpÊ–We·H;Êò±|a³èšÆ Bxþ0]W¹÷EãÀßàÓþ Is/ @/±ˆšîn¸Îü‡ÀU1¤ccÝ"lpç†V8ŠJÄ.܆äíh[rDô2érEý©$6é4÷å{’'ÐÅòβ{ÒÛ=©n•lÙ.ÎÖU2J‡Îë Y zÎiió˜'›ç°%f¾YF`ôÍ·`…ŠÄ6.¶vv.·~}õêõWœ–³ -XÊ(ƒ<ï: *KùjZ_yĤ'%e ¿UîÉ1Y¦ñÙÑYr‰¢&£²öHá¡ãhhÍRÑxvËTg-dç¯,²¤’·?´û ‹Vþ ñ8‡3áÚ`z󫇄$íØã°= ™¿ÒßsØA …–è3ä°Ã×LÇXÿ'Õf·gUøý17¶ý¥¯ûÐM½+òmGNã¸]\©É-#þüÙn˜&’ ’¯QUiQ~¥¤8£."ïÁÖ¸›x¡ç-döö¶&iKA]1ɲÿ äú’eÁl÷W§ÐͶý‘REº*-¡TSÉÂj,¨Ä+$óý1‹¥KQBJZF‚$­PÕÜ{Hˆ” 1¶ji wĽa-!~ŠÐPÿŽˆ®CÍDÊOऀgù+â“yAʼnҘðd¯<¶{ rò¢Û¤Í5Õ9,^ {þvÂSÞaEj!G·®Ž0æ¾ö¡¸‹pû%–Ò²üãä܉³—¹âÔF”Ô®¬W—š2¿¼ß[«="ùâ•{x"ÂÿåPð]º¶ƒ“w±Ìo Ñ\”·Ä‰ « AaÕmñ¥—›Þ?Äâeð/±‡çKÑ«|ƒf}ç8úÁbë¸Ï™¥|qUåpÅ’Ñ‚âÝò5u5Ÿa@ý¥tpZZ0k/zJÞÏÂŒ!µ»hܯí z$[Zýt=Š ôa³Œèv;X‰k¸úÀàìè8ä’½5E)]Ïif!VPñÕ÷è§Í —VŒ7îãLzá?nÞúäØà0½Ï½Z«ãƒ[Ëa¢n¯Ž î·\ßuѱõÿ£íü9É-û°›oÜéܬ®«o¬n«H?™‡:;¯s%Òž ð KÜņD(²²L·îOàÂ%úƒ¡4sàñéMo¸ns^ºw}éÉÂý‹ ë$M1u eTBȲïÞ ÕÄôÏ<Np™$nA¡ ×1™|èqËh$FŽp*ÍL¹xúÛÛÇ›2/÷Ÿ¸ò±ÌçÝÆxâÚ—Vù·%Wë+Ë(O-B'*Ov¾'½wg÷òo8º±8» SÓÒ3Ô}#1ð€fLŸöDI¼­ƒd¢Þjþîh@lñ#Zæèî¾ÃéÌ¿<êêì¡?ÌzLãÉ_.ùá‡/Àd;DÃ}¼‘Ná€a›p&“0Þ&cS¨ø‚h¦ï…5I!k¹î.ÿÍ!q ½PyóÈ‘m½ˆÙ’SÏÕHG;‡øe=IÄÖCÓ>æZ«pƳÁù#pfîðycgŸ;Vƒ÷°ëñÅÄ1¯hö>‘ѳ¿:µw?ÚÙÓS?ªæõ¹4óðiÍÖCÕB¿U\»´µ–ë-!|ðz¦bQÍOÔ šà­{ð–1ŸÉω ãßFc¾p[Øf@Õ'Œg£Dø¡0¨Œ°3im#×]Jð ;F«š´Ïøp­U)¬H…°‚yÈУ‘þXk 2í…¿HsÕ¸gËÉÁÒ¯ììBÓÆT%—*MQqQ)l¦fÞ•ábšMd×jÎ!w^&4è¬Õ«(4¬+asèCuBæN`AW&-©ãê°yEç 1ÿ°iïyÇæd™*ŠZ¸"iY×SÀÞàë„¥­zi÷§µ‚*Øùvóü\qG$‹°ˆŽ$*iäjÙ>ú-|Z˜MïoI<‘tÄôrlfi 4…ÀC2‘q/FûUDFw8-ìù›”’‹aÇž¯'{\ƒBe~^Âaéá¼m Û|?§"¯HVàÞ‹'䧙ƕÕ¹{óªòÙK0(ì6Ö0žYµ‚ ¶wp±#¿-æ&¯åèJ? 5 ¥°a<-Ï1f#×ÈnÀóÖ“²º®‘¸ŠbäÖX¬4Ò`Ž£ð \-Œ¢™ú§va2&—ËErJöì2™1yOUFÎùÙ°=A$ôÀnàq–|8ƒñâ1ñöÒx*¬ž¦Ç©û¨³5p­¬Ý¼W~¶4ŒJ‡'Œ˜TÏÓ0?‡§à•½4Óüt&Œx€ž9“ñd¡|L,r¯¢Õ “ §þ¹c‰pöØ®Mì,œ¬>½V§ÔÏhj×ÌXÔñE!Þ¬ýgËi´ÛLÃ|¸(¬ux£u+/-¿SkÕoáM÷ÀÞb$`¯â DÿôXM¨>¢kSë5µ6 ±nþóhë¤a~"ÌOá29 §x1QM¸[@VB¶)WPR.al›ckÈà±}q±Þ÷öýðX—æ³°„ßù4&‡-%èÓÁ¢ùñ…ñ?Tøá\…>a}]N^µä`ƒðÑ„¹{> stream xÚ}•_kÛ0Åßý)´‡B÷àÆ¶l©-!& Ö?4e{Km%3$²±‡|ûI:Ç-Œu…6ü¢+ÝsÏ•n/¾|ìy=·FdS.›Êôí¶4ÝÖîM4u&$31]¹ŸYdlõ×:w½íÞ˅»>²ë°k\×É_þÞv><½ qy: ´¤@Y‚3æ  ‘H"’„¤zº†„;Ð h šã BvEZ"O¹GdZ!$S¬ (S$(“× „ì®ä ¤±Õ’§@µd>ªÖ ª&Aµ¼Q5³S5(§ŸÐ’³†k A§‚ƒ9tæð%‡NE¢2žIe$t3‡²: :%óAg†>Ðé¾ Š7¤€×nC x­IЙ!_ÁÞâ¾ÈW€òiòТO“Ø[ø¢Ø[ôAáJtSñþCµâD7z«IpP2”Ô Ü …4 ̰Ÿ] B$‰A§fE$:ˆ¢é ‰O=Ò¨H“P‘ÆÛÔ¼­ _{xÝ~ZøÁ÷>œÊS׹ɦc?~ðÔÖ¼жiý®ð&ïø_ÀÓÓ*ú²ÜžÂ endstream endobj 570 0 obj <> stream xÚc```T6L`‰`XpŽ Šª endstream endobj 571 0 obj <> stream xÚ•W{XWŸ™HMma®Œ½3m­…ÊË×úh]«òT´> ZA—B & Š€P’JyÈû©„‡-Š~µî×§Õ¯KÜî·Ä²õ³Õªµ­öÎîå½la·ûÏNòMrçÞ¹çœßùß™^^„@ ˜¹sûöM›ÅmÞ¬Õhã ‹ÃCÖkÕ©üT 7Ÿ{Æ" 8FÀ±ܳžœŸ—U,@+Äžãb¯ÉÝè“êþÕ*|† •OñçO}àlñsøŸøñþÂEñ „ȃs‰ùÄ"ˆà"Ïÿ6º.U+“ǦÊ5•Á´$4<|Ùm–I§R( ì’ðð¥Áüy»>”Ý(MÉÐõ*VªIe7†²›CÙ-Z#¾ªbµV&WJÕi¬6—ïb³õržUè´ÙYú P6^©Ò³F­.ƒÅ¿:¹Z.ÕËSÙlMª\Ç”r6:aG<¥ÕØ8UŠ\£—³!!,«—ËY¥Áµ:,Ì­Õêaix>L=µHÆßõÚ–ø¸Ø ‘[vD†r lšVÇ¦Ê R•Zú_ñN |РED±„ø#±‚XM¼L¬%Öë‰ÍÄ6bO$2BI¨5‘IhˆOŒ)>æóxt½#ñ@-¸àáïQâqÇs¿×V¯«B‰Ð ü™\BVŠüD‡fùÍÒκä½È»Îû½'ÖÀus,Î '7×(àJû%uÅ5ùG€í°ÉšG#oÎ*|çP^¹’NÓ,=Ä ïÉra~®¹ì0s ¸èàþewÙ pŸlî°:Nš*”V¦qB’Ë…J³©4=@ÑanÆó'ºËû´&JùxL8ç°3Ê Gœ¾çÆ©,®a@âÐXMš|›­@©èZÂZ¸÷ù·ÖªZMõ'«ßµK¯­îʈn«  u¥höëÁTAÄgÑû>ªê< ¨W³ÚΔõÓ'[ËØÎ’\Knz *÷«¤–":>­«oøoÝп’Á†áûNß«.¸È•ñ#õ€SARrJi-Î=X¦/KŒÒMôš˜Ë7δ?‚> 5ë=³0ÅÚœ×Aw¶6žd¨ןµ%¡u[Ð3KГw@ >ê§z0ϰóŽÓ6¸,øã7‡:ÀÙq`™Ö7‚Ë#Å5) ‚ÌÕ˜ÓÝæzÆüÉuZœFAÁHÂP6äómÐ/çN´uj‹¶üHÁ =J6vYûô2\*¡úvÉþ›peüæg_þpø7x»Ð{ œNñ8ìÂÒìB°Ç¸»HGÇļ;fbà)²­Ù2 E±÷Ñ\$ZˆžFOýøô‡óGn·3ËáB :L^ª»pöSúìÅìev3&ð_Á=ôvuºü¾æ ¸ɨÈŤè×0˜ÖI©~z_"º¬Ž~­5—I† Л”Uä YÛ›Á-Q³¹=E^š'ÈOåþ™Ì¶î:mmk¼½Aç#§F{rqÜ9Ég+ÊM«Ö$.É‹E¹š2…¢ ï~ †“¦L³"Ím«žlèÆ¶2­&&B/²ž7…M#¯òÒ…Ê._qLÛK·t4œdæ8!ë„MN_‡ ¾â2»Ò\Ç•ÀI_f¹  Y¤IS¦Lë472½dÐA©4‘^õpÁ—÷¾d(¯Þ²39¶ªüú´µµ•´ˆi4w)rŠ 3óA{ºüX ÄÏ!Å¢¸Ghœ}n ©©…1•¿} ‡¦"†p¨ QmM•Ø!¤ƒ!£c0fÌ·ãšj¼b|âFó5ÊàÞæü%mƾ­Ifõ`7¥×%Ó‹Ö¯]&;žqÜÈÚ_”­ PWŽæêû‚¨=–Ø‚€e7á„ú?¼<1{ag'¨: m^LG‘¦œ’†<¦Ðnn´جGÊ«@Qmï~ú¶sìVgQG^;s¼ªÖf/Ÿµïhk±>ÑQ{ŠAñˆìJMIT ‘(çÜ{ƒƒ#ç¤IÌ#ô“D¡TLAX„ãtÝÛ] LmóQËôø/–µnæ¸Ëà;W’Káºé¢F¹ê~ O „òçׇWÅË ¹zWЍÀ_‹BëæOCõ;&¥Êã·`I}TÏçYƒ«„«È[Ÿ÷±ë^H•)r3¯— "ëð*ÞNЉ´ÏåÉ%`Øà%Nzwš+¨{šCw'¥/Í`T·{3EÇ ÐÊ ¹ÌE}Âí}¼U¼2UÉàû0_øû~DƒXצ‹`hj*®ZÒ£kËÈÐéÔmºÞÞ¶¶ÞÇlœÑàï0Ú‘ÂcDÅ´™‹kRi!\nD¾p Áß!Ôñÿ ä–@ÁE´aŒÒ¡F©àûHˆ„ÁˆB~wAOèy÷.¤ÀÊ*Éòí‘ÑÑÛ¯NÜøøãËW>zm…Ûû•N¨s ¾sA.×näö«ß"o€4ÓX6MJsf@â3\ I>1vë³ÊwÊæ¥ êîß Å%â¢P;!í„gÜøŒïWàqêÜÞOŸð{l²,_—¨-æB»‚GFãF¦ž¡z“få´Àb\êÝiø#»L(Çýï¡¶½tÓ–€¢"ÔfFEßùàó÷£_vGXî”óÀ@\v›Ïç¼%ÍÏ.MÜ–·s'¨Q¬›,I½ÊËCuñÊFÑ`ÖŒ¯#°j:êqÌ”ßÄ…o aT„¾ÅÔÞÞÒÐãVð#N­Ó÷ ',uR[9ô—\R£¦ef½ž åZ5ŽêzËÉc@=r¾¬ƒ†Ë{ÿqþ×juAÒ…˜#oÍ~R~¨0•‰ý&ÞÜ”&‹¦£^3£pR(œ)ô‡ùÔ à‹.È`êì„s%M–ViªYo æ7 sèËÙ&fÃ`Ño› àkd³¹-;mþ$r×B'fÕWèM2ðªüúõñ3߬ïœÚ)¸æ‚éØån”o½X×}fp}Emݸ{Ûù{~Õ$ÂÙéw¸5á?V“Èçfèƒ7¿ƒ>Ž7‰Ü=xªÇbR\Æu›äò›OåqÕî¿(x](ªI3é@I$u~õºM´¹³À:Ñor÷¸˜¨„ Ýw½àhó)@%é«N˜ùžßÉÛCKo¸ ä-9bÍ號b–Ɇ̵ ¼DÖYOã%º+±pÛœ¾§ ú93÷Ü”Œ rº›Õ‘ËQm ¬›Î žw+ßUÛHÈ¢G¥9‘ÙóäFµ!—¶VTÛŽPY]9MunŽf¯#ùÂçá<{€AÜ&a«{'fÿrð4G‹â|b5ÿ°¿Õ·Àέ´Ã•ö ; 6Æ«ÃÄÞñlç®Ù#-Vþ¨l¬8"_-·Z«ðèÄQëQñ“\³ß/’x±‚ endstream endobj 573 0 obj <> stream xÚ}“Moâ0†ïþÞ=¤q$m…"•/)ÚÒV€º{ öÀZ"vä$þýÚ§•*v‘‚xò¾óáñ0úñ¾ž…>B4¹gt­î ‡h¹­2­4ïkPÝ+€1¨í}7šï¡£ãe¹*•ìTüÒ \·M 8Kõequèø¿£õ¯Ýîç6zÙnµÒ/]¢…¾ˆˆ¹ ƒì.Öü_µ"½-RŸäL+µz¢É=c̾X+±Ôµ;^KâÐ"‡¦OR ú¤G×5IR*$ïùo^Û9¹àýµí .ÕI“ùœÆ;+¶¹úžïHüf©Ît|»EkÙ÷Ms×e¤(¨€“ÍlçóZÕ@cwöRXUv× á+äpm€¦žl—kmSq0•:™Û°‚Î7öSPâ›Î0êxB´†ág:$þ§2.Q²°‰›&…§¥§ )E-› m¦ž&)Ò )Ã,RŽZ gÔr¤3PÈùàÉ6áH¡B ÒÚÓ ÙiâiƦžr¤Œ!¥H˜3ÇÙ²òZ œÄ Ï—aõ<Ð5¬žãÙóÇ'í'ë.Åm×ç ðÞ{ÿ~ý-»û• >·´Ñ‹ò_ïáæèmCþ‡”F endstream endobj 576 0 obj <> stream xÚSÈÿÿÿÿÿì˜Á¡‘Áˆ© ìšþoßÞæ0kH±(hØ=Á®4rk85ldäa¢¦ÐÅMóU`ä endstream endobj 577 0 obj <> stream xÚì½ |SU·7|Bšä0X´1JQ@‘A UÀe,³ÌciZèHç6éܬtSJçRJGæy”)eFA&­8>;xªùÖÞ ÕG}Ÿçþî÷Þß{ï÷½¢Ç69gk¯õ_ÿµöÚçàÀ‰D"Å‚±ÓN™8ÐÕÛÏÕ{…çš`o?Ïéô‹‰–—-¯@7¥EÉYT"K¯N–^b‹Âa@7±©›Ão§…Ü—{¼ôËÉ+'jíŽWñ³Ï½Üea·>øc´®Ûkô¾[_NÚ‰q ®'ׇë/'úäïºãá¿Âs²‡§_°wpÄ[CÔC†â×!á½:îèµ"¢× /o^ é5ÃßÇgP—éž~½&úû÷ ñóð\ÓëÏ5¾A½ü5½4øµ˜·ßÊ^×xzöší¯ s[ã‰Í¹{úy½ÓeÒ ×^¯Oòôó\ãæÓkFÈ o÷§ßèæì…møö w÷ öö÷ëåæçÑkúD|è÷NŸÞ?¤Ë¸5žnÁž¶éwý׬ôìõºWppÀ;o¾I›ÒÐO†i†øyè2[í5|èPõ zua×·ØõmvÁ®#Ùu½Ê®ÃáeøŸe3Ã:q¹.\7îΑëÎ=Ë=Ç9qrîy”ü Ü‹\ÎWà%îeîNÉ©¸^¸¯r¯q}¹~\îun÷7Ä æ†porC¹aÜpN͹poqos#¸‘Ü(îî]n,7ŽÏMà&r“¸¸ÉÜîcΕ›ÊMã¦s3¸™Ü,n6÷ 7‡›ËÍãæs ¸…Ü"ΛÓr\-·]×en—y]æwY FõÄJ¸ª¨Ó¸*Žˆ\Eù¢+¢_;õì¤îtVœæÐGÒYrQ:KÖUÏOîÜ©óˆÎ…/wy¾Ëì.wº^îVøÌØgŽ;~Þý³g·<·Îée§ƒÏÏPˆ_èûÂ?^ ë¡t>Þóè˽^>øŠNéÞ«OÅ«ó^S÷íÙ¯{¿ý=ú_{Ý{Àê7ªŽhGŒ^¹êœ÷³†¥…Óò Òs ùiF8VH¸¼ÛÆ­`æú•)ç¶ ¿Ê ++7n ªôó òS: {·!ÞN2°4Cˆ"ÂGyi9Ùé9«6 ‰È:ü—t!ʺ&«µÝXd庸š­Ö'f³•“¶yY­égœÙ,tí;Dx„i<6I>øBŒ“ÃFw$“(Áƒ|¤KOH‰¯÷$%ëð_¡‹ \½Òʉ5«õ‘Ií©]°egl¯+ý̪V“®?Ý#ïÁF—’нdZ˜ˆ¤ï“tË$… FÉbc£ã³âsUdœ0Z—“˜STRX $.d„¬ÐX‘—“œ«S ãɇҼ¸Œx]ðÚ¥c{WÁ¹’ˆï‰È‹-⟿Uø„„ú«Àj½¥åª­ÖÇZn}JIjq"CèÊ%ób@—–p,ÿèn8Ç lqG™å‘ c"É“J¤(4Öä%çaGþÒØ˜à]V\® »Ñ=y$>²íï¤^õ¤g˜¨ˆl“Oz*V€ ûuÎ8 /è-»E-wˆç1‰¶\PúÄí¦À €ÐÞLq];?dÔ¸à‡èÈwˆþøÎªäöŠ+¤óç$V÷ƒn-;jµ~Eר eú –SºšçÀë0XèÂBœnʘëÕ†‚^GEþ6½ñ„–³r/SáߥËÚǵÕjý½¯ŸI ¸°/¤Ö[.ᬼ"&[ˆ£‚<Á1+'r5ǫɥ¬œvký•6ÄÑõl×rØÙq\_ë ÚÅ)Úæ×®fõ |;±)íEŸ‹ €Câk¹+÷‚–Ë*ÞÊ=K›k¹ o•pU#’&¤$&BhV⃕{Õ܊׷ÕjìýMc^{h4ú½ú¬,(KÌš™ _ÐÁƒÙ¢%ýŽF¦Ý Ø(··x)BK"ÊŠk­Üs´ßœ‹”“š•šš˜ 9|UuÓŦ}k*áãày3¦ócÆJôZ3xØ—V§$ã¤u;SA%Xx ï3CmbfLš.5r|äš•À ¥°ûì™ÌLþÇï%rË‘CÛ¶Ãežpêíï(ñÄQÓUl¹‰©ŽD5:íºhåZèJLS·ZÍ&—»r YëoåÒõëߦ ´Z÷›\¨®¶šÍ3­V•_1]ŸÚ4|æjIqÚz(^þðÈ¥(A"8ðR͇¸ŠØõ:cLAð¡¡áQî7Ž‘®®* ¢Q-3òx}ŽÏÊÍBÓæú‹*¬Ü&GÓp¼*¹N (S\ë׸„\c¡Õú-Ó ÎøÓ ¼pÏR,8erÁY÷w¸jm^XecF}‰êÔÙ‚j%SÒ{—å%ÔÊËh5– …°E˜-³rjÔnml"ÅcáY+·Tíµ°E1’ìÂ^T%:²þô.ÌlæSÓVƒ$eñ U«'ttíš-çjµ¶Ðß^ÑK•–^MÎ ¨ž,S KpÐÉmÁB×Y äÔjWV®|O*M Õü—Q¤V®3UÀ×\ÍØÞKôÇ…¸¬ÜÆ¢‰³•f6CArn|f?ß©n³§Lç3Þã…eDæ~…¼xÈoß^rExYˆ‹ò¹sQ¼ÕzGfÿW3µ¾œPËs~˜Ó¾:ùY2ÚR§ “¤ï sßæMñ9 gÒ%GÈèCäâ@ªyysTD~62)$Ñuj…ÔÒò"2ðó=¤¨ô‹´Óãç¡3¢ÊßNÇ߇kýÍ|:ŸÁ_~­>»ŽAÃS§§ÝΓÉç_”_!1hTæÊåKT0gîÒ€0Þ§Dâº%¡6ñ;ë6Sõ0Å…ÙôGÈ_¡Ðäð7ÎQ°9hâþÈéÜ£Àù~VIoT ÿÎyóò{ÿÆ/½HnŠˆ’Ä+È9"“ µk³øöžBo ¶A]Õ}ôwQhÔYýäÚÊ[z }$Æ,}mŒ‘R‘W÷~¯ÈâAN(:XFûËÒ6bqÞùûo—žÇ¾-C‰V!œd’˜µz_c"¶O°oìmø9×VXGÇ çˆBlïIúHÖ&| ×¢@]n¨wÚy¦öÑÄú¯¿O¤–³ŠZSå‘#›gMQÂâh?wÍ”I3`9¿D–“’““›ž­Ü.ƒJCeaUnq麊â] '¶ÃUh›|¬/Ì·µ~%†úƒ'ïU¿®¤´ B …©YÉ™|rfj¡C©m¯þ›p|€¸®Ùj銸¾Ž4)B !µ¹•ÑD´ €¨“É% ¾ª$Âfa¹âé+É,ÌʨD$^ G…÷qÞ]©aÜ êù9ª3hëYªÎÈ8m Ýl8dh-°Yßhg¼—š¤˜>õû‰*õ}ôMÜPTja…å¬$:.@ƒðÖ^/ œjµÞÖr‰VëE-g‡þjä ½LjeG­Øú^}sGëW)€v2-FvB—¥;EÕÎE¼cNú`§G·ˆÏuï{è¨g[v)@ÞÃ}û¾=Ãw¤rŒÔÛá¬Tþ¼rdô°±þÓ„Abª«–[*ÑÈ®coȶ°gƒm$çRŠ“`$ßÞÙMd»iÁ‘½Õ¦Ák_gê_5QŽÓÓµ5õ&Epà܆ï>:äRŧɨNQÆ™|Eµëi¼ýmW3œö»#L/˜“мÄqŸn‹åN³¨¹Í2¥^Lžèß×;Ï|™”›¥…ñïOò‚£‹ îÐZa,"ƒ€ôÃvæR)¼@ÛDíû5êDX7ÃŒEÇÖìÇõT¡QÕo$£&›\Pººš³’ö'ìÖšŸ¹Ô$t‡·a¼ÏŒ9Vë^ S‡)t]¡Ë\âŒÌÑZ`¢X4K­~hµúš[Éj¥ã£ÔËç ¢G·,²ïÄdöM…%XÖØhÜC|Î ã„!ÂRá™BïÚÒ:årËÑÉžDɺÿ{ɺRÞØeÚ [SÿãïM¦"z2ML Ÿ¨ÆÃ'©(/ÏÔzŸÒ¼™¤˜|êÞ"Sê[ê×5ÊGhIùU1”|$Ý^PzPù™ô3Xç^>ÑÊucXLµ² •U'J‘:Sí`rIÚý]j¤é )™¯B͑ʛ´L?qôGµÜ¿=/_©m63Ôã˜WKå5ÚÝׄ÷µæìÃ`ŠÚuêÖ‡ÚN6Goýs”æV^¦ ç5ãì”—º­]·KEÛd· =8}iVbdeé«õèóÊÑÀ 5†CebV($&ò)Ÿ¤Ä¼M½j'4¿Ëõ¾y“ü>i"—ÿÔR¶ôrGKV®7Î õ¯Õ¶í A ,ÈÛ®Ü!}U(ÁÈOËIGe6oAKYÈruo85åŸVjލÉÿF%ÌQ·ö«‘ªÑ}Fé=U0+}Œ#¬x—TþÅj˜õoäÛhØkØ;`OÚØ£²Dæø•®‰Ä7‘KM¢æï,½o‰-Ï`0.¼+Œ^¬VWäcÏZ­¡¨À³U¤ Ü«:sT››”ù<áeÔˆÕêbª ­Ó±mm~Þþ[ýs(ettAY‰h¼tݪ9Œ…´S‹¶^F¶/ –y¯þ(q®ãðä}ÒƒŒ³rZŽt³rÁZNEú–‘Õo1D!PÛí¢ñJ³ýNÕi[_6E]˜ž§iĸ´ä%\Úm[IF=Zù§÷z”ÏÅ™çÒmÒX¡Ÿ¯÷Ä\¥kk=ëj¶øwy .·Ä埞ñÔãS°V<ÿ¥ì·£† í°LÊFÑ¢¹¡&µ~ûŸÖbùVXôOÏîÀ§ÞlóbxIcѾLëÞ4¹üùYGa†²×èVþ:Áezœ––ÃëçlQlKs—fñ¿<ÀPæPlÃ~•…QC1ÝñçT îxQ/"¨B$ÔRª ýëº)œ2öÏí ìý_³÷?M&|4Ï•Òjý¾öOÔùv5·&0ò€Ôò‚~˜ëfneDøµ¾¡!+D”«vÀ¦œ-aÒØ«/Þ¡5vG^å·¦Ö[E ŠñýÐD]L.¿KÌÊíjÓ`×ÛÜJ­œÁ ¥,ÏS¸iÓhx2LX(¡¿›ÙÒ}i,JCfÅi4)x5¥d@)Š«ór \4èë;¼ð]Šœ¨·¸Ër”˜ÞF‹¦òåRˆŒÍB5šF.,äd(‡È6d74ò¤?(ٹǔa² ÖEzKí‚×›ÍhÀà± ›df,l vvÖj½DçtÁ¹F 㱟o©$¿¡ÓùF³’B*Ëuzϯx•k2ý³Â/éСkL{lštuhé¿Ñ¡Hu6ÃοèÌGÔY.ÔSÞÑT/'^°r)¦í@|p5N oož9k?ÒGê|舩‡S„sû™Êñ7µš—‡‡ÓÌè ¼«Ô#¢dŸÊ2üŸF¾Ç|ιˆjÓ©k슟–üeäòÿ䘨_Ŭ·7K‘”üÐjiNòåÖNù&Â+2ßa¡º~JÊSng2ÔB-Ê`³u©7®m “Ò)ÄÕv ä/ê¡Vnú0XºXFá’&—ƒ™Æ3¶ÛyáÅTÁ«=C’¬KIN…T KƒnB¢y%b Ï n–L¡ošÄÖùÙä¬Ô„yªíC%4,B!q.ŠE­mÓÌJ²ÝVk¨3TB%˜ôµö±MÎÄ{©RRÛ¡]p#Q'7[ú¦qo_'‘—¡Ø)±µÐžYrÓâ\”Y‘‘ÓKuH~* ŸöX쑇[XrÂ5Y8h”ɽޯ™¾³L^z:äm)µ^Y|û[2™8!Áþ)Ê|°†ZÑ‹ t^dŒqp›F¿õ©eGf@O>•5@QŽ2 òµÅ!<ù©}ªD¾#?º0nðÆÜ‚•%V_gË~Šö¨È&j3÷(ž¢PÔ?ÿÔçÏ%'ÃPÞñ±®Ér9ÆÉÈ×n>é¤ = §Mz« ‘Oˆæþ­û*rWØ© î«ÄQ˜dµŽ¦À‘N5Ö“Õhç"ayUèNF+­œŸ™"ù|ŠoRy¿MµbŪþÔ9Ž4©Ë­ÜGˆ•7yÇ9èÁ2È¡ÑÏ·HÈ=1™iÙ§ØXÔxáìÙ`A.p󖽡\îiÚtþm²Tñ7>Œi°m¿ÊÒBï‹:2ŠïgePÿ3ZVžP™ÒˆlÊ!ÒõÖ§…©*´†ÕG][¨S¿ÆðûÔ_ ©ãcÁóÈæíÇ,ß7üÉV.œ~”JEU@qêúåa œ·¨j§O¥·\§¿^lÃ[žPóB5M¤`ÚJ‰õ{¶„±è Åü,½P_ÂugXNŠ#5.véÌ>3iÖÊÌ eö<î5 :ßÓ§ûÑ|CB?ûŠ>3Ül°rñþ“°µºå0Y X©ó–¶¦d‡®ïs”Ó]¢SzžÚò9úè tr­Ô¶t6Ÿâ݉xÿÆwèýói=‹N˜·ØƒÏÒ¾{Q Ù™¶ÚňÔq Z:7ˆzŽhò7 ¯Û\O ÈÎ'T)Ÿ¯åï‘*ËoŠãB„.ÂsãýßP-"Òç•#Ûä}ÙMœ¹õw?QçäHÇt[,Œ•È÷0RlŸÅ@úÕ%cÑ1(‚â´¼L[DËI©¬è,¨cKÎY kEøºVÁ‰h$ÛŒ_퇇°7rËʆE;¦¦»ÂbpKX‰QÞâ–Âÿ¨£ÿ¬åCïÇV©/[±7‘¨ü…)uB›þ¶A´ã>:àŒE7ÅV‘ÞXô¤«‚Š}xâœÚ¥Ã82aSÃ?‚Þøc>•ý\ºgÚ4w²rïQL¼G×m2•Âݶ•xg‰Z èΛÍnVk3[ø :$ëaz#jRˆ•s×rˆÓ?›ÔèÔèâÿFø1Uˆ_Ú4£3 žÄY¼Ô¦ F¬`qÇ`6»lS‰^ú°,)UãQZ®ÉžÏ&ÿ»®¢Í5ÑN™’60„G¾>jÏ Ƌј¸¾ ‘>A”=Œjl,Âë;ÔOrnøÑ¦©¥hˆ]èÌ1 ,d;d¹Ùl7dwr ÑŠðŽiÈA/´ˆÒHø-âÞ &ÿ LÔIv*os“²ƒÉ]Å£óÁhÈÍHØ™´O¿ ©izðNÄIïÿ–t4]2=ÓÑÕ¥‚>y©nžvQ^r¾J¯í¬n~´9Ïsšª]ÁîÝ?ì™ g|ëuæ#ú1„þ„{×¾ö­º-”$ß¹Eï“I-ʼb§ ‹Ñ#œAÁ EçÌþi6ã˜= Ø&–[¹x-çaå4›¸í!r2QIÂi4ÃÕŒqØär,ûwÒ{™q³{fæg:H÷SÚñYBq ¼Ã z™à-ôÞW.¢AÖ‰êÂm–ÉnÓ,Ü•z̼ã‘ÜÐ'Òz‘åË/ŠKI”uzQÜÁË·4>Î\F¹Ïhƒ™¡Rî´ÉÅ’h+§_¾IQãYÊ}û™\NÚ{öÕ{éƒ!–V<5oGb±MñÉ>Ë ´Fw´¨ß¦R³j§-‹(˜‡j9Ë;[\̽E?~•QiµKCG8· ÐUàeXmoø@J9º “K.’ W3_1&nÓÄR^¤ƒ8 [¶ØËo g醕…þôÀ¹ƒ?þv•~ôÌ@s9f«h—«Çð"È«t^=Ù¶_›Wcšm «p 6âõúK?ûXv`  cù:l'j•' ÈŒöÍ;·û‘±<ª©tEšោíWÓ.éóܳHþÈrŸâÛ4¥l.™™A7-é³X+xï£Á™p‹¶ßæIÛ.ÔàÚeçgbK,M²xÙöWQ÷pB/ºšÙåé§_­„@XÖáó·à^§HÏò?RÙ\ÒxñŽf[jiüI! FL·óögè¤Ø{g´¬<ÈEÕ¥ëL¿d{4]Ífž¼B&HìCD£¢®­}Œ¹3WóSÅÑ0ÅqëÞájÆ19Q8û…Ä=–GEƒº ã$HË•"`%C °D˨dã gÑ•¨4Ó½kn5Ñ…Feîªv9l—€{tGHXeðµÇVÚíƒÅh(Á8ÊRÄé®­Â2º$t(©ÞS£@öá:ÀtAÓ cæH¡yáuYZoP·Þ¹h5>GUð£.&—§Œ½ÙP°Uoêˆ&/˜ÔQü€Ënåz¨Õ <éA¦ÒE6¹ “¢¼ÒmêÀ¢STŸx`õ µï{™.áeÓp¸0…™ÝÃ`-PÏâ=öæ†== ‘jg:ÌKti0¶æÃlKN21ŽþŠÅÑÉ4p¤»&Ôbéâ>K×úYª²¯ ÊZ¹0„NI b4•Ý ®æÜ?¯°?j]á•üt…»Ó(õqä]f—¥v<%ñ¨‰TÔÛWu=GïFr=šÙÚ~MGô†±8ƒêaáÓµ]©÷ü›µ}ŽEhÔúPymóÂfâqm%vúvǾ‰rCûÄ~äñJ.,~éÇq?濇cœøg¯” ›-Ç·å„9¯µ,Þ$¿bÙªÈ<œ÷iÁþäô1à3~Í'‚(•æ$K"Y¦0žáäBfzVfîÅGÄ•I2ˆfpÄ/Qt¢$EǃVž”±à“ê ¼ˆÑõbx#S“žÝ¸-;»™&x ?£›­^or)E줆ÕÍÕœŒ†F©KÕH©Á0à¦Xc}@ušâõgš.õÓ·ìT‘þ2Òçý cGœ3+¨ ¶bãú²B%dë³S3ôéz !ùM[ó77ìŠ$JHHINÑóo…JäÁƒ&Î…I0êpà9šý5Ód˜R­ÎÙÞÀ—®“8öÕ5XdÛÉÒÚ a¢Ï¯ïÛb2–XÕµ¹?¾wÌ‚tÉ[ƒT>ZVÅ“t”ÙDJ‘¥‹X•Ÿ° ½Þja¿0x¥Ñ‡5'—'®2s† ”ÙÉéqÊ5º׺§¤Æ§Ee%îO)È„|{´ <ô)k3ã3“ pxRÿÔÛwfXËŠk<Û_vm-À颀 ¤xô=ýòšTû…ªö«è¹øŸH×{DM‡}æ‚¡à%ʯh%ÒÇ™ô»º=q½¨ù6™zGléÓ¦HÎψ3x/[²ø±Ó.‘ΤÓîÖVÕ§ã•á•`Œ+¾¬¦pÓ¡Y¦¯÷.ô†'Õ18P²÷ï8\·+ayÐÈ$éÔr›\•ï#?gnçÇj˜?ÑñþlnÕ¬^µæÀìO<Œ¦¢²M»¶¦—BTÅ”óƨôðáµÖß,¬€ó ã_‰â Sѹs&—4VB?äéO7Ф!'q•ÓrYìk^S¾¾±è8e/E‰YgÆ•ÀÞ²à_/‹ð¼,!5•f>V¯‚ɰ,ÄÝsùòÀ0†—ﺟF8e 4—îa…úºnñl Ž(×›d*Ò³¤QQB$çr+a3ì…—Ì@N‹X€nóºð‰Bãé5V‚[™Ï¾°úØp”'%©’‚ì¬ü›¾_ *A2R¤‚ÙÆ9õž .Àe8ØhÚŸ’—˜kÀn7§Ö¡…Ä6ˆ¾»JT×Åd­‡*»'Ë5fäªJe)iIJ;"%CvVÖ+ka]¬Ñ+'"mCe”B±v}èºÀõéžÀ2VªrŸ/‹HŠWÅÈ’ ú åY¡L #£’ç$?Ý•hDc‚Ý»ïg$ÒL„ã !®™Ì<~gIÜäTwvÅ1ÈÂkëÉiÉR§²8\3"îü©sUM‡”'–ŒT Ó…­Šü”u©…#5éFØ‹ŽrcTKHÁZäÇõö¦”?Ñ®±ñŒ Òª66òÄlé­(Y¿¾´,|]€*EzÇæ¬*XøH;|Ôô7U0§Ò§&€—ÿ¬õŠZÞ°²Ô¿:†Ç†æ¬ö_Ëy—WÈK¤Ÿꢫü*=ê&4kRƒR¢õ:}ÐÇý¼ŒÛTPšUVP\¹¶&¡îÂõCðìZ»Á¯6;¯ÔXÙ’ÇgÄêgárXöÛåîU¢¹*&ïZE¯´iÀÒʹ ýr(ívÙÌ6XÄCcA—§¥?ÏãµÌ¶UÆu¥4óç¢<4sµKšÕú%z_^$ƒQºäyII¸"™‰toŒ®H½¾^Ÿ‰+’”5;S›7fÊà­ ‰JíãíFÉ8²Ú…rk³¹À ±á4K­q.Š™6ÉV`imgeF#úIìÓÈÓౕ„Hþ5šMFgJy:y¦]]êé.„¹¸hyP«¾¦ƒµªÕqLu„+(¹Ç5ÃÈsœ¾z ¾*·|eùNXXYS‰4zEt’•¡5Ê ÿ  •üa[{ BÃ1W³ÌÊ 3¹dœeFRz¼’åèÑÈ®h¹¸‰q©‰iQit‹‘>¡ì'„ÄY¼0‡«M™–ôt¨-LŽ›;2ÿü´ ­m|—… í–ãöÞððþ¿ QhT‰2¡G²Ð}R 1 Ùº¼Øu!ÀkCÃ"üšÖ–¨Ê`zó¦]›k.™‰Î[¶·cþZ÷Žñó“òqÀŽ#QL«ÈÈz¢¡:vûªø6´{´½Ú?Úž$F"«ù#0!Ñ¥èGêË’tÍ”üæš TÂXì >iN² }ªì¨×WÙÑgAF\&mX-#õ»ì(lÁ‡ËCðáñº’æýéáFDÛߨ.û2úœZI}%Ͳé-ÝmÓ|’Â2 ‰I©8`*ÇZn ÛÚB„ÑhæÁL[² ýö3J0iš“fWl(À ¼m4…Þq®m-Ћ.GÐveËð¤M“@ãÒ•tOŸÞI—¥³F£ß@ ØÔ6ý'H—<½cOÇÄDPÛ±8ó3u¿/LANîææå-èªËb ‚óÂÒþêè¾m£ Ûø«HÞ¼)²Ü‘žV\wmA¬7©'ñŽCu–î¢-·Iúmñâ¦è{F>J+÷!óECY†›NµQo:ÕA´Ða ¥`L/F³lãûÈ:žEžcûh 4­+ °Z¯iV.gY*šjР55ÓÚ4q°€,RÜ>ð¾ðšà4Ågñ«ÞÄéʲ/¿R9~ ÄÔ“Ù ÉNѵ«D{›Òš›Šê:º5×Z‹¦ð§$£üú ªðÊŒ ™*ýwmšõ¨6Ms£¯a¨N¦Ø˜;ÓpêXi>œoV0 ¬e[’VÎù?µ¤íÈþvw`ÂxN…¶Ò4›‘w¡`$Pa²ÂæÇζ)ƾ's àgºEóÍpüFø£Úø™.[ÉÀŸ·^º¦Âa3¡¥¼x+Ý¡w!5ç+­¿õ21'õ/A“ ÈR%3&çk•¬¢šÅ tˆ}[?&"9%–Õ]#ÂS=Ïrº ±ö„Šdý,ËûcÔÓ­EÊ0ÆÔ/$(4lQ•¬ÚXn‘"E±½Úö—6ªej» =2Ûòx¨Îì>-˧:z-¦[|¬\ð¡Æ+{`5_Y´.ócÝ.òk=¥ÿóQµ|uŠØUºÇ”™Á kÓþ)rmëˆ\¿°E®6.D£Wl“ÕÇk¹?†¯¼=~%ŸÈj3.‚2=%=I™¤ÖGÃjXið¶3£=)…±0™æÈ <5~m¬fµ'ܼïã—*ÄÂõèîd£¦ðÂ'²‰µÝW:È µ ©‘Ï-}“mÆ„1<.åwÔ>[Yåv“«Y˜lîýœ!Ò/¶r85Ûu°rX½Äö6 ™C÷œ‹v³lm+Ì~š{÷Ò¯‚UàË2z,ÿÏ–"Û¥Èö\[)gãbEÂYIVtVb!ämŸW™¦ØYæ’å+5Ò*±m€rõ§gç¢Ã™¶ÃôAú@ìÑÛ°æ÷­ŒAö /à ÿ¾ãA™'…?µijíHo¾I…ÀR—ìÀ#¶±ç\4ûkÓ—%YksóÐÆs²²×ñ?ý?Ã>Ë¢3’sškÅ âõ6M1š·sѾô§ƒ Ñû‚/¸uˆå³dû¾Ç]ÚùOTm¯³½Áz—à!Ñ­I¦§žèÞ9ÍóLôµ&â¢ÿAËíJË;ñtfîØö{•¶½‹BkŸ‚³ú#ºÌTÂQ„ ’˜UXt©ÙÆËÏTä½èß%+$ŒZï6¬ÛÎ;öAÚ,FINaðú ctD2>°Â]Š&ÛhôËØL} öÑ4¤ÔDÖ¬àïr ݦÑÐÝôVJÄØÖR«-| ¬Ž!p{o+•Ê7,†mÓx¥ÚZ¢q ­î©ÑWÛÁ˜úcEi,!ÌàŽñGœÈÉ6º@1«+Õv6ð·ŽT%Á+±íâZÏÒÞÐôöoÔ7Þbù¿ß³ÿõ†& |7è+;ˆ÷yZ“lý‰fâÅìHmx$®ß0"—Ø«,%ûîô&!þæcIó.+÷¢–ËdÆêÌ„æß!4üÖä’ÌöŸìEì4ƒnýÁi --Bê줃c…AÔnÐÕðŽï Ñ×,»pÅ– . {­ùKlã‘n5¿L +ºQ©¼b,ºFæP*ˆcÕл\¨Іät:oØË Öíb»¿ÔGêƒÊÆ?*RœFÚ£V¢š›ÍB„$ÁfñVBñW&s* 9Óä×Vâ!AøÛ5¢ÃsÒr‡ÿ° ¡A­^ Þ`ë ú¶¤BŒi{ªÕÓP“‹„uÛö'¥Œ8YÚÍyç"?b:]—/l¤‡ñ¥Fí£ [·ÖBrºx¿hߘÐÒ¨ ¿›ršN¡ûÈ/Í¢ó–öh©&»à¯*ýÒ$¯8ô±¼ÙlOÈtëàŒŒv2•^ÜDÏ]˜k™àÉóé’I‚´¿ðÚû}˜ÖÙ6.YÍ1–!‰OÈI*RsФ ¡pö^Û4›Z?´Ÿ®Š~­ŸÄæj¬§(*|g, aa-Znågé¥o~&ÃNüD…`¦€îCظa,ž‘”žIàŸê‡ëc©Õz“e‹~fñ:ËOlƒ­ÂñAEÝ÷IVÅý:Qƒ©íùÆ$¶|L|¶È‹å¶í?Ñ<¶u¤ÖFù{Ï~¶Û‘‹?ìª2©Ž@ñªâ%´x23ÝPi(OmK‹,œt—ý‹¿ÔÊM¡R˜Oát´±h¯•kÿ]dånÓeŸon³-/*À~öyšÍbØÕÃõ4=ŸÜƒÊóyªÐìÂ~¥ÛMô3ö ^†ÓÏVÚ¾ Ÿ©„2Ö¬º£Ù•Û¬‘þÚj»þ_Œ‡RI®/Û’´]ÕjuG‘€½ìÍ2G&¿RYW©$Ý詞eÙ¡&ŠÜ¬,ƒÖtµyÙ>£öÄËwØj¸OØáJ–È£ä„í "ûâåW<ôï臿ž8„‰ÈËAE…í¥íýABrž8(¦‚ó«“$Y‡7¦ð‰9úB¥¥JZœ‘–¡‚4}zJîÿÄÓHYOO"±ãÀÿ[O"ý¡@~ö¿¼ ùï Îþ—<Ö5‘’Ãd-¦>QO’êO'&ÈŠ·!¥2¥Á&ƒ—!éÖ*}¨Þ×&²´íÆ[À“¢ƒÒ½írlÔ—@ÔÊ µ¶S—%¯Eñ-"þOh€“$â0‰9)ÚQªžì‹˜”üunè¤YÁù Vp~“•~k6ÿi®ÄáÏ“e‘gÇ¡³^f3=Z¢vùÓä…2²Wñ†ÈôÐë!55^7Vä'Új ¬Vª Ôt8‘Ù\~6«ø3ì«*+ÒfT^v£²ÙœŸÛtßüɘ~uv¨„}qJ: ––“÷lÑfÙjrèÎås…,211òCW£ôCH,9kgztÓÝVåjU«µ‰°Ÿë!‘7¯›T½ª¶CUeùÉÄ섌XˆôIXÁ¶1æÿñ—Ѝy€÷ ·©K€ãw‡pDvìüiÕ1¨ž\1w|_ð %áÉÏG‰®ÞéâU²ðs÷Ûòv k»¶*¬¢“‹Œ 4W¶4-¯·àñîÑþy‘8>zm|dp‰®DU ùé¥y¼ü—‹¡›Ô0&» ²÷Ÿvæø2…±ï©B¾Ìò”a&µ}eH« ÃR:ío\OÛ6°XÄDO.‘ÂÍHP‡Ò©re1¯HofµïÈ@©ßo?S±í\ä¿ù`÷[BÏ„Êöe2žÕ΋ñæ "nl’ä˜ »àSÞq˜Ûb9½É÷´™mÚz@^H²üE³2= €LŠX_cRBEN£q ?µ·Â­dæŽO öRB•îTÔéÔ¼”¼Ô¼ÜÒ¼²¼R…è&)ßR´±¦OJ“'h1ÆŒ‡•mFJ@ìŠþïNYýhéÃå?¢wOÎIÊŒ£u_AÚ1 b˜ZêØ;l´¬NH‡÷C®!Ša]ZѪmCÏÔõá\%1> +a5ïøª®þÉ õNÍ×¢ö‘àkò{$Ú2Vñ¶§ÐiyAüù›äÙGD|žŒPÂæØ-Á¦ÐFß~ü‰üÊŸ®Þ› º°jTCmTÕÊR¿ªè*0Bm6l„õ‹+|‹xïu‹Ê–ÁtX¼¦Â¼ñÛ½u’}nuÂ<^ñaà|¥üÞ÷Ç×Upÿô§W6c½P·IQï´ýêôóäÕKÈúº“g‡ëë+s¡!1øŠìü‚]n¸* –&éQß/_Y~¶uGÖ&U ‡æ‡äEæE•_X’³±ifÓh¡‹×8wúf†3” õ¤žÿ.5ëÁ;7©ùT™üá¸5ásÁfÖO!=à$ÜX¿É~²·‹ÙlÛ‡àdtP&ÜÉÜêàµøOÜLTŽÂ!bË“z‡‰6ß&°YL …ÅO»nVÁM ‹(D =×P˜–˜[…Wr£NÀ%¸´‘t#½È¤KUÛŠ¡ Ök‹!¼ü<ÜxŸ¯¸`ð‡upŠ™²ø8i°nmbXPá¤Ý+ŽB)ÔåTæ ¯ƒÇ N0mï`²äŒq¹ûôÕe„tZchA ðQáÚ5¦OUŽQ M µ¨j÷;}{•̹*ÿžŒ%¿((µ›þ£Û_~ÙøH•ADj@š.#Ò¨«~sÜöÍÈýïk9™ü:b6n-·}#+ËþxÖÜ)*¡KªŸŒÆ•q­A’±ÎP •Ð’²öñÄ$#²Û&)­Ö­Œÿ]fQ,½œ§w†fxìV2œc>‰Õ’C&ïØ[×@6‘à ¢–ÄpCl‘  RQ4‘±7Qðû…þa(¿ÒA/ô]&  £a¦'¯ñ£JBé<êö5¢¸F6õB÷/߀q¾THP: §µ‡,/†‰n^ß$ŸÑâ«õˆ–Û€¬@ËVnƒmÛËšY]­zÏjaÇi4ôˆ…½juxPX¸?â]¼q‹Š¤ÈêRO€2:1*5 ÞC¢OM•{–?ïø±ö¸åæq‘¥Ì¬`9Å\Jè í ÂJ';i4¡aI¡°bë­„SџʵïXoScò°¶.”D…‰Èù±%žQD½- :~<1$¥)åœ"K#Žy×ùõd¨$1uM|D6[Ÿ)¨Ax40%uþëyÁ?Æ“Wx.¡ï0Ñä±ÝŒt-jÅN[›B©'# R×Vß(]IiÞ|æXIž0 Ax† KIî1™E+#Ðuð)éR‹ï—½Yô9_KÞ’äîέ(®áS²‘ÿÆ3þÎø¯nB‚ïxR×lQ‡‰n §É”â'd¦?øëÁ;쉜_Y!—sQ¬ž‹üü^ñ B'?Í8\ ¯Fß³E͹‡ ’¯L) Ôzù(!,MS¸Êg|°¯£Œ€s³qܳ˼Eo{–U°™ Û Ë$‹& ?î /^û•òÔoÚp¡|œÉg>g¾…ŸyÇØÔzrÈD¢iBì§[¤ð«±r3™Nn+¾—’—jÌšêó¶0lFŒ±IåöŽ¢6¥î€ëКyd³•@Wò%Ú%+¹{ÛhÄ5þƒËË"–+Y"•[Y]©$ÏI/Bù¼²ìD ½„“VWp"v¤ÑLöNѸžmǤ¹‚ŸÍæc¼üzjšDþ=¼“¦ÖJå׀߿ÉYî1ÔöÁÿ^;õ—H\jtMdÏ’Õàtf9t÷ã{ò‡Û‰L«JÂ7Õ yDŽ¡ó) /Â-«õUµ)4Û°žAºþLþ¹Òã{à&ܘÝ*¨àCø„šÇŽXÙ^­j=a6'X­§h± +S;å\˜k+¯¡õ÷†µ¦˜æè ~À¯‰ S!ÏOÿ^ùì ”EòÑ62´Ñ騲äÚÔÛò‡Û¾P@HaTYTUD}èUxŸ×Â}8Æ€Ûdµî¤uáé̳¼§å*ØëŸk`?ußÞØáo[%nøœ8>†n5s¼³½ìƒS³¥LØ+IDZ®ähÕÑ›ÀZ¿ÊÝjýLË%°äíǪpˆÌ 2N—•Ÿ”«*ü¬*Šj—Œó—Í`oK]ÍÆ¢š OˬÖô¬8†sb¯-·½ö¤(øˆàè(•c=%RO†Ö‹_%«®Š-A䘾ÈO?n/|óJ]†TÓÜ;ûxrv2*Ôa•U1»ãNú6„Ï黵¬·X$x‡Y÷gˆ#îOæÓ'…©ÿt–ÆDßëÀ¶8UlsÓví¯V뛞Vüf$Њß;d• >™Ðñduøj«¯öÆp¼0¹tíÓC9ÿM#Þ8v&ažH®’Wç'c&4#λƒgG¥Ý¡äÂ$Åä6*&iJÇqÝÿ‹Ó¾ˆï›ÒK[”äis–Ö]%øþíQŠG)¦ØRL¥x~£0óÐÓTù²³ÓüÓ:{òkMØN'Vi/¿þߪԞ—ÿ®ÚY2­·Wþ}½ý¿+·ÿ/8fûËóþ³åy'˜¢›,“ílfË òÞUòÞ ñó2X«A¸›wÖuGU%ºò^Ø" ÷ Y‹œ‡øX$Š/Öõá5ÔE !Y!u<Ù*+¯«Ê+~"qUüËS^ÂYxYP¡ðCß~Kp¸ƒƒ¨Ð¼ ªkx¡—ì?t’Œ(då!å ›€ÿù<²Ô—ˆxî7ýU‹Á?"$àÿVÙþ«²%Ù,êÐ;/ºJ–]•G?‰¡ç¶Ñü¦m(íþ‡zø}IyÉÔeøÊ|RÂ<”B©oLîVºÃì̃6Ø_ÃÞzâ« k 6×°79/IÏùÉ4I1È:¥RMb¾‰>7ò2÷ÿé9/ƒ¿ý¹Cɹv%ßóÇ3…¼<Úv¬·–Ê÷P•}ê­øO2b¨ÓqDjù€´>Y¤›Å$ÎR¬è% €èò¤ Æ[±ÑwŠ ‘^/_+ UÁT­Gœ/| Aý-¯CŃQ i9œñ9âÉ€ÔÂ{ȇ•†Z†?v"•ÇfŸ–ß"7ÉvîVÚÇö5ë—*…5Ø~T~"¶ï–8fEUØ^1Hg-õÃxùYX”±\!492>–Ï—VnϾª‚sÚÓp‡Ú9'Ô2ŠpN‡O“°½ËÍØ|W¢V@]Níº<¾P–”žhH„…ä“ <}:D@TRD|Ÿ­•ìI¯Ü-<”$Ÿ„^þ#i ¯(àAS*˜øJÙf]é\¥ —®ð2:ó¥ cpæ8²ÝRÏ¥áSá}šCuËn†#[Ëçè$;³+êßBkÈUhÅÁñ%¡õc§O÷.=Ev»Ÿ”߳п©¾ß—ù!e8÷:÷bÚÃ|ý”%›¼NªfÎŽïЉÏÌœA7%(6àjÜ£}ž¿'à`ñ–ºJž¤I5KC&Ã{¼ü¸åÐÁ ˜âb.§Á-Ž‹ãqD¸ §H§¾(¨2@p¨#W6É뿳 QD.[»ŸzË$t1ŒçIt+é\õî™:¹nøxXP _ðÜÕcøÊXÉž››JvÀAØä ãá݈qþ3y!HºêrÈY8 Õù[ò›yùÅ,ÈÒgA¤å¥gÓŒ`„-áe†U†È”JO=ŒFUÚ½%ÇÖÍ2‡EŸ×$/³¼L~UÈ@MvQnzQ¦±6ðÕqu3”B’Ô"™Ž,O¿¢Ò—J^F²@"?×~IR°'ëŠÊQèaW\Ùf±EF Š7ü濯4ØŸÌ y§ú&™LÞ_~û5•Ѓʽ€Ê}yÜø¡;UäéÜñƒUŽ“X+Nûvyl'×·zî‘'®–a ÒOzJ½3…×yù—‹ÂWØû•LÒOb8X³ÿqüTpn¦°L ŸkÉ7’$òš£Ðxa¨4¢ èè—ÁÄU«w«6IW,_0Eï†hµ !œHÿ ÓvÈþÂ2EfÚéµ@^áåeQä4Nv¤ï,Ü\¸9» òá³¹é‹ÒC š´„F$ ˃N¥ð-©•q‰!Xlb,>áçÁ¼ãÛÚÉåÇ¢}&r¡IL¶âD¾«šÙ[è=6bÄ”72È6¨ÙÅ“Îíï)¾¿_GRÉÂñ‡_U =©„ŒTBKR'†çïRy͉ø_XDz˜Ñ°»’ù?Ùã]a¢M'Iéi1Mæ+Ög2>ÁÞ¤‚Êj¯äá¥ù§GxÙK©j¡$·¤|#OzHwBClAPApÁB˜ÎǶ/””îÊ:©‚“©¤KrGB$ ¤çšÂPà]P‘•I3¢`6xxŒñ˜°¦€¦0|Cni ðÕPVDß3.©'ãÔ&ßc_’ä3Èøë 0o¹yéÚú’æÍ[êÖƒ1y}\n~Æ6ȃÚ<·ô5ÿ¼ä:¼ßUGuоø‰³Ç¾¿äM>RïJä™p|ï5ôó—æ»g…§ù7xEÃx^>–V¯=¿¶(53Öòòàá;ÜxH•ȇæµO’dH¿«‚£k¯ÁA– 8•µÇ¦‡äy³U4Je/-µ¡é7Vlfß™°½‹µ';Ûê.Ö×UC^JQBnaz j¾ՙ^éQMFr=B§~¬ ¼7úm‰ÃPúÍ+ÎEèt8[­‡œ¼ýUˆLjIDQ\ TSˆ©ÈÙ p4,kQzŒÁ7=±JžàV°wSîo•¼9eœ‚sCÊ¢xÒ¯¯$;1'ây¡|ú“oAR–¹y/l…u ë¢óyÇ–aE‡w]>AÞÙ.nå…EÏ[2ãdÁaÑkÀŸo_)#SI¶öm®ü´ñܶmÕ@äü¹ÔGB7¥0Mêo·ÉùúÉ+ê¼w©È2éÕôËT0a̼˜x¯ Þã:scK+òóË•`Ô!›w\LâöˆZIœÂòº´°°´ 7%G«j]»6,6>=.‘áš%ãWŠ.¶ˆ‰Ê’¡ØT^VCÿ&•– dADzxZdÊ¢¬içþBÈKÍNÈž®¹&ðÓ«=LJÚÄ*Ûßú5ÛP<™öŸù{¿ROÂE'H¸ø‰T¸î›òä¾}'OÎßçê:¾«ÒÑ ;´ØþZ§ï®’¹Wå{È8KO™ûÿú,%£¹3­Ö¯L.ôílì¯:B¦–Ê^¢`/6ø†½ðž½0Ýo /K›Ë>‚#8mßÏÎ2Èô‚”0§õUËmGMkÀYàg{E¡íì;ÊðHãU %€Ê\ëâŠÃŠø°"ß\Ot0K¢‚VûºÇÏ5ÿ7¯¯¡/Õv¼À¦ÁÐdh„FØÖ‘BdO(”ØN¡~u•¬¼*þ %&”¯õ᝚ ;7V·Ð`Çl/Ëìo´øŠ;ߘ¶ª(€¿mYû†•l¼ñ©"qÆûBÅ8•Å0„EÁ…¿Õ­±TÁˆ´@Y)•?ƒÛºþ{í`?¯`Ú‰„Äd.ÓLm€˜9—nÑ/bœ¸$ï%%yÞs_yv,²e1ñËýpÓ÷úîyçœwï9÷þŽÍÞf©o«—åÆWÃ5ÿ‹ŒEñ'’Íx< ú¼°áfBùw†ykâíU‘žÝÉçrS…2 v“v™®šÒ$|¨ 7Ì_Ö­ Ñuö5õÆ+ 8ŒF†Ã‚"=~Ö>‡ÂØ”öá™z1ƒMUh$HŒH®è•ÛtX¤c CH‡}Îöa<©½ŒFúæ¤c ÖRt„&'œ‘#_»›T¢ƒ,z4AÁ»€jH°Èâ¡Ò-8žü[tY¿ñ’Ý9ØãBUìDÎèů°ù/)˜_­ÿÊ\¥±ôÊ]Í&„»\òUÈ%ψWY2áŽÞDÜ!‰.õÉ¥ÖP6 mŒßõ3³&ì®§ÛªIUP?"Z׺•hÉ9ã¼0rûKö<ž¸¹z;¶sfçi·ÉkEt?lDZÓËEé|pMéMÖ}úš-öåúŒf~q^ðŸÇ_v+{ÒÕê³¥*@L¾cÐ0jÝ:DŒ>47ÖvwuwötÒÌZÛˆv"Õ£ÆÎ¦öú†7P<•®P4'ùE‚±úÇ pZ[®‘ð iŸäÈuת,$Šäµñ ¬Ô{ÞO\;aÍ Qb LcO2·Å“X$É5N¶Ì€ä*bÌ¡˜ ¹Vï7zêŠ Ûç!ÿq÷EA,.ÑÓ|ÑÃÀðå*._­Gï6}tŒfîZFµ¡<Ô€NuÛ t5d˜åŠ–ÿh˜2ƒ¹±bp¿7Ô8}Xp7ŸÂú±ÆÁj½…ÞÑ5hæ¦Õ2ö¶mè2Z t§ˆm—nkÛ³x"ÃIÖŒHz£oê›®|À¦§ñø84ÛJü¶Dúºâß*ÇV:jŒïžR=ÿ4EQ¯CÕpOÚ/¬¦·û„|vÈÇï÷̰“EÜæUÞßEã®=™‡¼WEÕ§*e6eV¥Š=;§zòo=ëéÀ endstream endobj 579 0 obj <> stream xÚ}TMkã0½ûWhöF¶l9.!`ù²´Miʲ»·ÄVº†Æ6¶sÈ¿_ižÝÀ6 ïͼ™ÑL¤Ù·×Ý<.›ƒž‹ÎÞtßœ»BÏ“ç}ëÌfiSœOº^´.u9yûGöÚ5ÅNì.Ù¤›ºîMð¦.>Ï¥ž¢n)ýQÕ×[‡Ý½ëŸó_jûû{>ªê§ê »¡ªõvέä½>M袘q±[.F ~讯šú‘¹œsCdu™4'{°ÞYŒÍ±ÅÔËnìl¿Žë±²*†Ñoq2²âÝ¥ôiSgµb‹7ãì‡îBýÞ;‹mWꮪ?ØÝ­MÀîܶŸÚ6ø³^³RM^3——ýI³…=õ¦4Þj¸Ü<þUð~i5ó»hµhJÝ·ûBwûúC;+s|¾f«Ü|ÖŽ®ËüÞ(;¯ñ‘‰7&&ã-×D&@Féy„„"ã»Dú ’HRø’LäÌ@æ 3"%UrIFA.c ¤™ !P‡( 2‰€DÎD£zLÕ}…ÔX!‰œ)ª§$ðEJd†²Õó}*äG$÷#’éH¢BÌA†DÆÐÅd 2I‚ ,)SJ&Sëó¸KëˆdØUåÊlØ®vÚ¡N;-þì;ÚvâaC Ž#BK¬4á„¢º´!eˆTðå!¶‡iFÔ€S(œÎ €| èƈ^D!KaÄ)²dI‘E K¿Äˆ#ŒÑÅ (Ê™‘ H`Ò!F ”IBýW#üI¹”œ‡>1fúW1a$õ™†&•”ãŽh'ö"Ú×äëÒç®37žžºÙöN›»þõ*µMkUô¥çlzQ-ÚæÎ_EHF endstream endobj 582 0 obj <> stream xÚc`ÿÿaÿó{ìßß{À0l“ÙZ“q endstream endobj 583 0 obj <> stream xÚµ{ XSG×ÿDLrUD%F¥Ú÷]Ñà^­]ÔÚRµjµ.µ*p…¢ ˆ ®eË„M îû‚¸E*.¸/­ –V­[Õº”j]ÛZ'ö¢ó3 Ô·Ëûõÿ=Ïßçq¸¹¹™9ûù3sU¤jU¢R©ê½5zÈ#Û„†„N ŽŒ ü&~ÓßÙÈù*õ48 ÄiT9}«8{8ëVmíéa÷¬úâŒò]£ §êW QýX Æ*áuIÔ³ \¾vܳÞ‘=›m¢"õHCÒ”´R½­­ ûÛߊ˜<0(8<*4*¶K‡Nüáû3}+ñë;$$trèÔ©¾ïtð1yr»êƒ§‡ûöòé;<8rÊtßÙW†¯#bBÃ'ùö ö!GÅLˆ †éƒÃ§OïY}ÀßV‚Ã#'Lö2câäÐÀŠo[ûÆ„F…ÀáQíƒgO ÷ä;¸?üèE+žïPý­Èà QÁA®âwý#"'û¶ ‰ŠšÚ³cGœJÆ;¦Ëƒ£ZW³úvöó3µÃÑ_Œ]ÄØUŒÝÄØ]Œ=pìä'ÆNí`èügÙ ö}3brÐ_îøW“x‘Z¤6©C¼‰ŽÔ%zPF}Ò€øW@)¾¤ (¦iNZ–¤iMÚö¤éHüH'b"þ¤ éJº“¤y“¼EÞ&ýH2€¼C’wIyŸ "ƒÉòF†“ÉòEFk>Óì×, {ø×—ôE+¤ª¦ê z_5Qu½ÊGs«f¨»ªŸj~Д¼¤çÕºTû¶ú¡5¸çºšÛ¼VÔú°výÚ³ê4ð6é>¬ëU÷Gý“ú}ëßjpé•Þº¿úŠáMcKã–Æ-ßiÕl^ó¹-·,lÕ¼õ­¶^m϶oÝ¡gÇx¿%JMa]>éúe×{ÝÖwßã›´Øy¿Xc³bbçÏzÖGY¬ÀõæqpÍãgµâË‹O´|‘Z üêU—wnÐ;“Ÿ )OÖx)_(½¶°&¬¦ŠÕ9ïÁª2~šÌù3áü®™i$'uí&Îo9J8Ñ”p®˜LœÔÄ«rø‚ÔÃo%tåü3ùˆó½f2n>ç¿ÃOø¯ø´ÊÇÆùoðRÃ'ž†ÙI³2™ ÞkkËã¤>׿p ø…|p?»‰n“®r~ÍLvs~ÚL ^ÊHvYµ“mó`ëY˜~ÍڢܜÙFe¬&:râ,snÜZ#ðÇŒª¬…Çúàü)v{AþÎ]a›CÂ`ޏTv؃}ÖG@•¸çÃNSµWP\¡sk¡j3kÊz³&,×éÐsÒÂáRMþœ‚+>¯j!‡ßÈ °/€|~á8pYf}¾gIûvÚ‰åßê²z—Y<'÷ìð«…0·`’¥EßB©ªŒUº_Vš±F¯ ”ç¨hÖ"FÅâX=§óÒ³çÚËSCî‚ôxC•e1`ºÿ$NRð( Z¤à‘-ÏwdÍöT•r3“F•-í>&ixr\‘@)Ó§Ú©Y®Z²3éê¸ÌáicÒé5É+ˆ^vÎÛí]ü0]7¸H÷¸Ø9Z¹&|û¦M«·hFÊ¢ä¬äEÉ‹i]ÃIGÉ^P‹ÉDWQ°ÁŸ\N¼Q,wÊB8©eêÌù}dµÞ»à !ô0”ÞyäþK¼_b÷—ºöTƒTÐ2RÀ(øCnûä%O•ÒÜõ¨ZwgÉÎ%¥‹ŽÏËŒO¢3„OG%¥ž&-Ÿ“êh#¯ qú¢AL&‰“žŽ’#jÝcNb` 2 ª%ª¯,µûäÁØIøék†J¹IC9„óïd¹L gÓÙr9?n÷‡Õšöoÿ¾Mƒ­´³ØBïÏq’ÏDûäù1½ÎɬÂLÚàŠuíÀû8íײl¿°#KÇÐ2ŽâÕZt¯{>y–$šL“h\êüÌ…«2—¤æQI÷äй9Ч¢)ƒhôºyËÌy³VËt2FgÑèœ9«ÍÛcÏ;@K镭ŧ¤ÍÛWí¥ÇéÙ±§»e‚Ømy‹WÚò–I:':UgdJvé…lytÝ3ýŒbš–À§ Àï÷²ÎùOHÒ}”É3¼º LÏ£s3¢¶Ò=tÉšÌ|j œè5ÔmkôXŸÜ*¡Á²zûœÍÁ`m¬¶³9SôJ‘ -æd˜™|ÇI²™>+±H¥HßÚÙ¼“Äa&~¾œÕ pXˆÃs”O9^)hO@Jgñ‚L³”«ÎHLOYK%Ö/PC»¿lÑ’°èü—,:-Ú~]kË[±$;)ÓŒŠÛÃŽcš»<ôfX#݇è[‡ nˆ¡3WÎ^7oeä ™N¢s"E${ˆ,z¡wÝÅäƒÞõ ^µÀxwMê5$UÄ²ŽŽ Ìç&S1ÏGo}«T7N¦ §',:”¹?3??ù›”BÐìÅítyêçé’îΊjÝŨ\0ì7Ê ƒéD–94]âü¢É¤äÄÓQ²@}nÃòEÅTÚ·}TK¤ÛUÌÆïVíaÞì öŠ{bXÂõëãP‡*f²œJ'ìœïCꎛ‰BÂFO5|{Ó®»Îš#±|¶Uú=Ñ_€¹^9ÑLªÙr•Æ 3é;õuÎâDväú >ò=Fþ‡ƒ¶•”OYõ ™ß NæââAX¦8¿Š&ãÏÆâ•‡™LOŸÇ¿šÉ¤™¬Ìä,'ÑÞÆ%;"--'÷—fO£ÊŠv.úYu b{€3ˆ·»)Fç‰Á! Ii^6©7çSÁå3çÿœ­>Ã^?ÂÚ0=['%d)·¨:”¦dǦ'S ¥É–1æ6 FJÛ’Õ«¯,ÚŠ†gwnó.`µ:²Z¬%“Ú±Úº‹íÏê¿Î>ÑHÇ/#ZÁé š¾F.†vÑÔäO·HûïúÒÀ†µÖŸqJ©¯4üVo ­æ*Æ“h5— ­2«u·Û1†ö‘šÞÁtÌïü½‹zR&²ÞcÅ G“‡4l«úä²Ãè—’2¦|˜~Ä„·tsò7¥û¥#áê³Á‹‚é©í Yã ÀÄn6¾˜íÚ¥*b¯€]x{°_Ù—zX¥}‡‡Â·Ì$–JrÒUÒËLÉ?°½øhva¦‘³¤ä+`¼åû+FTªú>^i‘¥§ÔsRÕL¾Ýp“7p¢dó |Ĉ¡4Â=‰}ªT/l¡ø}Ày<.¾íb4ð†ãÏDW_›oxšÉö›ނ\©`?.YŠ´\²›†Œé?4YòRŠ)32?Hé§ ¥Ÿbü¯9]Ù_õoò|-€NhÖr»÷úÇ ¬…¯ãs¦Õ=e:çýÆmk÷pÒõP¿LùŽŠ‘C&¿ý.J'Js´38Q›É|H3•ðdµÎ«¥g·mظ²xÇé½ô<ýñíÏ D?ž;%24bf ‘‚·Æ¬Ý¼fé:ÝŸIWIºŸʳþƒfhôbƒ!Œ~²ßYÂèz¶]?ƒ.Ñx `«ƒE€oÉí¯£Œ5e˜Ä>(“•8µ’«Œ×fFuFnf:FÇ¡ô˜ÒMm›è#¤*ÒRÊmy 03vX²î¢»é1ËK&ÄË„L0ú êäÚ8c9()¥ê9ñƒ1%‚»Ctjiò/ÏRO{Ÿóf’Èù93I®˜t¹˜ôèK“^FŸ©‚1½T¤ Y^º[òzœR8¡€-„Zàý3óe}™oÖRו%:Oê7eØ{Ŷî5îÓ· Ã4ª~£Ñ­ÿ¥hP—ÁÑþJƒÁ y›Œý'ôº)Š&•]9àhòÆ$Ú]*oX'âåÌ Ì é íôË”S”M %7èÏôÖ'Ço”Rµº®GÖ¥i)ÐêpÜä¼+¸õ(ˆýÇì¦è J°öq‡œgw«v°¶ÎvŸy8ÇéïÓÛ{¿º˜5k‰™¾Ý»ç´~¤Ž¬óãd©,_ád¾-Õ02-꽾˒$®vPgGfâ¡ûã~”1ήԢÊGTéÁy¬ËyS2çkÐ [¡ígÚlœ Ár2 DúòãK³î#=Q€ÎÒÂO ¼™ÄWÀÚê¶²E¬†ÞÙA{týÊílÔj¥·ÒVyWQ½ÿº¡ß´%gŒý•z;½šbà i•“@„Cõs÷G›êí(Ù_¸¶HÁ€ ØûŠ'k§Xè:ÁRûï%îu,¥ ¬mÞËâ ÃÜJþì«"]7vÁ©Ò÷dhÖ.[·Öð½æ[º*xuð~´Ð99Î€Ñ ’¬†Vµû'îN¼—²˜¦Z¬ÉtVòËtö~n;¥M­£¬.óû:yY"’Ó È™•ÔÏm”’nÒëoV n1_£Û¸ÿ‡j´g”,>Å ;¢Æèò“H›é~hÃË%’.&æ­qÃ^§R ÍŒ™«6YìwÚRºbfڸ̄-43Ӳ͈ ’×066+ˆÆÍ ™“iB‚”<<:þÄpë•{YÎrصM÷%"ªï÷Ÿ³¦l£›é*æ`L¢2“M®YÝ“ödÁ.þ\?þ?èùBðÇ ÝÖî¿àæzxHBœÇíþ©08^l±FwíŸû‡žíÖóV„\W-v7ä’ܘˋ „¼`û¼Ð{+kË®1ß‘{tN§ñY }kÚyrÿ÷ßÔ‰*„vÚÞ¡ôƒÓ^žñ„²ª”‘‚/Äe%Bu!±jZº-/{c’u ™–±–`*ÓÖqHTdf¡¤õI4PRZkÃÂ¦Ç õ¦²n”5 7r/í8¸ëðÑU‡Hs'lýM3é³®ËÒ”¥©K2ã ‹ž…Xö%|5bç à/½ ôdßÏ,*áT§™¯‡ósçJ½â§œf~ZzmcúÑ4¯–·À!éÖ@ëó† )­”Òð´ÅN+£þÝ³Îæÿnm/eŽ—\ä{0 þoÉù×K¬E¯v~åŽ;ÙŸéf²Ÿ õƒ5ÑsWœ2:[üÇ,=,SÄ,3蟥¤+z™0I7“2m*VØ%Èq&“FW´© œ5»8Û‘y€vU»ñª ƒ_±4{Ð/æ-yXTáC—x•»?“ô=Á™Á;ßuGƒ}Ö¬›ÁÃ8iïp€ÿ66ù»SÕ€4=PÖx`°ýÝa|(DÎošü=ý)vÿ#¹_¥»—”S”¡åC©2À9D™ªv-Pš”iYØ~v¡L.÷ƒŸýŽt÷É›µ`™<4ÑõØfk¾u-]KOY6»×˜ÏbŠ|ë 5¦Íîño˜LÎÀ9€*NŽÛòÊãÔÀ=fh'BEQWÃ"™4¾¯†‰Ãï‹>Jl†s}*U¸ÈŠÎFáx3b§©X7óYz4ñ›-FHôö²Œ¯¹(máü‘O.ŒçËB }#Rý€°pY2õ“”-|Qf&óÜQô¨œImX“¿x Õ„ª;‚‰ eò¥[…|>KÞš9M*g%ö[èº{À*ÚJV PȦkô(±»ÅÓoѬ4Z&±bmvjv¦A€/xDÂ)ª¯êîÂBb·Ê›¨uE"Ý‚ÌQ u1ÒÝÄøEÀvw\DU»Šb˜Œ§_\¡ó»BÌòŒ±¶¢åú§ß7Q>á|T™ @v‘O^ ¥J¨ð†°ñ€ìËäkœŒòÉ3²{Š]ÏÆ(­X=å=çK!yr¾’·«Ëq¢lcH»`GQi7‘öSgxp-<®Œf”š¬ýȆ™©¹( P¦½Q™ÝÐ^È«‰*²ôD¶×ç·R Ù¾ÝÝnù>Àûìá³&zÝwà~óÒÿSÖÝÿjѪÃ'ÎLW¼š†ÒÃ0‡F[ç¦Ò™™smñ¶”dËZ â#ÑKé¤RÚ )mŒÔw²ûSO_X»ˆG[Ajâ?c~z %qý®THð[½Ã1\Xu_tçnqYz!Û]ÉÛÇÀ[Wçç$¨Rdù Ь-¯›a<£ùjͪÃAª±¬×…ïéÿWÞY-'ƒ1¥r‘-Ã>óÉíÝ5ùC~RÞTë6l·û“SfiL€ñ²3$Ýg.(8]@i0GŸ¼¤ÅãhÔÚˆBIiÄdõ‘Õ—ýGiüY£Á:¯îVífu ê÷öpöxVC?|qôŠè£ÂÞN mýŒ1ñ[„2×°‘uÙnšÂùmüüµ-úJF§¾„ËÚ’ÖÑœ,‰NÚ½ð„ä…i¢t·*m›&5n—‡³5«¥wÖÖ~™½c»a5@ªÂÈe}rè kVú½‰‡,EÔš’j¡¡ÉŠGâk€‘kúP¥zFpZ MI¡–¤qq#Ìc²“–Y–ЕWv¯ƒ¢á€fG¶<ÈX®C8šØ+ùHDÂØWøï^Qéz¥ÍʨQ˜ÊnO,ƹBO¯åe\Lû#LÛM0–B&€1“—@­Ó§\¸MÙ¥¥m@` ÷¢DX¾‚‚ëƒÖy•=cÓ TJG KbLÇúY $ôå©'3]kÁj0qòÛ¢Z¹ ©a¤Ö†äàZ““÷pvl’Úxõâ4ТUªÎQ|”Þ†1Ô½¤Þ§Âæ•É£÷¥|K’—3"+ú™x3q>€©Nô‹o‰5EG© .Èù49¤¼¥ˆÿÓ˜I¾¢bÏ çþV&CÓÌ'/}¿[X²¥¥%ˆN¤Ã¬²›Ð]Iâ ,†-~Ζ+±!åE_µøÍ=ô ñÍs[^ÍEÕÐ#@4CbSDbm¸*Íá`íù‹i&ñ[pÀøÛê¶e@:Ú|-jÂå\U´x : 7@6„« @ÀõHI/d¯%:K#9dOZE}€ z#¦å« ‡‰tl%+Çy¤F‡þŽàÈ…‹.C2TÔüÅŽŠ–Ä3)$ÐÃRà¼X rö¿­Ç¦&üà;´ ùa@É0·­Ú­ 4î¢çH±$ý€á q¿"ƒ7v)“AÁr› ’¿‹êÎLm-Š«¶Ã±òn^ïp£ …[#ÉdT‹3¶CyT…ÚX0<Å2ÚE£èÀŸ†Õ.À‘ ú°ûÏž3Eš:js¤ü4r÷-¥&30*º×˜p´Óžà´:„$ÜŽ7ÍH¿‹w›ãgµìþÇÜ’´¼5ˆv±N…­°p!,êFð5Ó“öé²`(# Dù¸Ñ•ÉÀoÀ;¡ïa¿†q”(²Zx‹ØRp š3œî¬ØF³ûWÂÖ5Pø„4T¡ó³vÈû1 ²6šS-TÒ«ó!S  ¶@6zàWmžx¯Þ«‰…:Ÿc%XS´AQ^ßäF/Þã<úÙâïÂ]Îè]ºÉÎ7ö蕱šÉ45+w…Äž:— –@#¯º`v.âÊꈉg,­/dèpíyà‘?šI x'ÖPÊÇ]£?EFóë‘QÒM^y¥p/¶É‡i–Óøy ã¤òêå;&£4 ÷¹ØJ„À½PŠËH´Ø!Îz‘²ê‰;“Sij*µ.ÚÌ$÷f¦è¾Ç¥Ï²Î§RL¯1#B–÷u¿SìI¡÷æÉ¹ ‰†FiËcÞº­\ÕÙò3½[BÌdCìà®›ðQéªÛPp Â"öØýƒ!áL’É4/..i&•f$,?`LeÍÔ¬YçM=Þä<]Ø¡,I F<}òf #ƒ¿7Å®Ý+à¸ãoÀ@`ò_(Œ_ÖAšT¸B 42ÜÅ#5P‘Q¨…Ûbñhµ.Šó[Þ§œ&Ëáô5Ú礛t=‘¿u½de}ôJmdLäìX:žÎÙD·P7†ô@à±?šP}ÄŒf(Ñï~Ã>Ê_£:Ïê±îP1žg:=íž2?)xIRNrÍÍÉZí¦,ÅwMä,ËqP;akȃ²jœLù+]$úî(­Ÿ‘a®ã‚ˆê&íÔa÷φzD<™Ž –ØH­#m5d-L7Èó{™ßNNžo5gÄŸN„Jè…€*ûå õ=Ds=JGïÞI›bwŒkÍù6YžË9µå½f„Œ$²àÝ€’%3×H^mâβ;è2VÍÃÙó¦~IÊ ³!PN¥¾CŽ0Oæ±îèaãš”–6uCL>•ò׬ÛRôáIE¥ToÚNi…{w‡P§õENìR ¥^[Šh¸Wð^{üö1ÚÚ î--ÜyTòZWòi>{TÈF¬ñÞÉüMVOw«>A¿ç(÷ƃGRÅnèOxõD5Š)#@-Vy£LÞâʯ¤!ÞlˆSKl}"€š!WÑóÇ_6À x £‡Â«6 A„àjLDkŒMLž$¹v„ø×&“ÞÕAâwDŸ|j§¸Û옮àŸhž·#û”­4+53ee Ĭ/p65Nñ^Mô¸äñwºž'tm¡ýª¹¶<­(Ñ„SN‡ƒÁû˜•¢§ŠZQSŇŠ,L“@ë~4i?|è2äPÝÁíb{n.¸±£„n ç÷¬²I^ïÅÝ`&;Ó¹L )Óy°~l£ÞºÍ]a7ÁÒæ.]¬f+ö’«£)×ÀévL£½h—’"±êJ ýÄ šƒio:¦ˆ> ‹¬é4Cb 5k3–Ù¾ÿôŽÒ²‰âÙAivsBPŒ–q )nƒvs µÕi¿Š vBågÑô¬°õ‘Û©´uíªÏ6LÞר8–›c»õm#æO{Áùƒç—oØeØ·2è5£¢UJô:§™“iJâ9§%(Ÿ+âè‚€¡¨Öëh9äI“Ý;V%(›ç®ý:Ž;@Òº&gevRnÊ*H$EÎnúK—ìX1mS°ñúÁ§áÓb³£SÇÁÜç06ñoÑtÛîN¯¤û…¸×ûµp‡Kv,İÊèM#ö‹C,’î ™,®Æ gb`¹ç@¨ vš†Gò²ç@ݬRO“+sá‘–©óñÓ>JgQlÕ çÑ Š}öÊäÛhoB"Ý"ÒèfFÊLç(«BÝÿ wÉø4Zt{~)À±žóP“ÿ"Èu¿‘Ø©©v#] t™‰-cɪ85-[@nPaáBž¨ˆ&¸A·A{÷A3­‹öÞ+IÒH8±#tãâì­Ë³©”E%¤%¤Ï[½¬²Œ²ì¼+w€Y²×ðŒÊ:´K?-«2¶¸‹+ÀzÑ+Hÿ)¶“³²üïbù»P;½lš@˜¨º‰Ú©£ Õ(Ë•¦:!mNÔNœ80žÖȕدkŒ>^¹¯œIöm±CJ/-í6;~âK³ûʲµbÞnX'“¶€¸ÿìÊltÊü1¿±ºªû¬¡›Ã¼ \ž phEË#ý5äÄgÎ5T t»™,蟒“ @¶+jñw$F4­œàõC%e8ðjN”ø5­¯]¯®±•-ïjÒÍiÀ«ÒЮÿtí§ö¢õÛ×oŽÚ>alT؃×) ±Ÿµ/`ãÝZòx$²û?‹ÓÕtkPbY[ AoT$\þHà0²kÒUíFê®'Ë+[oÍdM(XÚå·¢úCoƒ™‘OçHtZjŠš¥n3üÓ®#"ú»UA;G‰¤Hìul½â3¢${îBaE© 66@ÙðfWQBùbToZá ¸1sAPíZm†%À2Ê/•NG  ¬…‹?ÅáÁñÝ9øÂy,iøG „$ü hôk¼|èpLtóßY³—23¥Àùäߪí”—5ŽöwMrŽý—ë±'ÂOßÍ÷~NÚÅõ¿n#Ýwlf¥½R,G¡ráhŽUE³ªl’늴À«ú⨃ì6VÔ*¸Ïæ¿sŸ|ë~ºŸn©$70mº nœ¸±È 3Y‰áÇár…«ºšs f”WmÿETEÿ_E•WèÔ Æóe£pã+×ÙBÿÕޞʫœ'•Éc9ÿÞ'oR0VëüK¿;cT¦+#uÏE£ž„™z3J-Q– P ‰m…^øU]ÌŽ­‘fÈ_g|¨=fï:²üJOÄËx,z6 kL@¦Ã„m`=Äb;‹AŒ)¢G ’Ã{çðÞ#|ü˜îq,Í7*ó ØÐBöà èü'Ðyæ«»ÿûB_Þíÿ–X5­Hþf1&`§>×µi€¬ N‹±F³ŸÐû >/ùäî-Zq<›^ȨL/œ~1òwc=G l„?Ã3CDý£|÷²Hÿ`Pñ%빊¸¢“›Z":©ñŽªì.éî#t)Y¿¼¨ÍÿìÞ?J©ÖmJ{£™FfFn€˜[Üèì÷¶ éJÙL®ò p A–È® A¹RV4î}! Ñ»òûûÕ„ÔD·œ‰Ý"¤ä7{çEâ$زb·žJ›Üç‚ 3®Ÿ²y’1„Oùx ”¤IÙœx@HMJ'ÈX¥²ƒóR&ׄЍY}ò`t©!ô£Jìì’Ø‚¿ûÐÄì]êÐ|—ÇÚò”RÜ+JOü–K³éŠÔÅ«¤»ŒÞSRÕ‹p›§d…h äº6ZDo´2,×EPNfÁg•Ÿúu0YµÅ9k‹­r[Þ±Œ +@þøÿùhàŸ²K°üŒØ8‰¶?ÑnR‹sÎ i{ç÷×r×h°éÅÚ5*öÞ9ýëLð4Ö+0¢ÅfP»)QoBp¾ÞEÄuTßo+áÊWÍÄ®WZO[ã&§pæÞvËJw˜®Ès"Ôñ uâôšX}l”»ûÐîÃaU%iéÒm†k6c$ª™ˆ¢IèQQüÄ€ ¿{wˆihqËg;„Iô‘Þ{h €Z@>§‘t;nj óáŠðÕŒJ™¼ž:‹¢zÏáPG‹îA.Æygú«´¡ù|)‰Ÿ1õ”O^åêEøêŠü¶hg¢…` v[ѩӰùn x4`ÑÁ`ÅZœ=Yà7í7!UHX¼é༠Ñ1C^YYz>¨,noøäeBÐÅhÙHòÊPæüêÜJOT^ƒB©#V¶¤–h‘”ÉK6_a`ä0«jÛ´yË÷îQ$Ø^8I(Øžä"$?9?qö$©™2[í:I @€ËsEà'\(‡ˆ¨Da‡G© îÀ‚ÕÂKvãQ(ÓòÏ3*üs°e ¥C+ºÌ]+6Q*“ñP'Ó+Ô˦¯ˆ] J»P2æûkžøFŒ4–&§Ï¥ÁtÆ4Cñ@¤ìòDþ·*ªáÕ †ÕÄû>ÂEN@Jk aׄ@¸Ùݨ¯)6;A¨«²üЬ!Údˆ{g²Ø•3‚Åêss –d%ç˜åohæÏ›6;>sN–ÑK9ì|ÕdM¶¨öœ÷`õïéóµÂ¹ëá»iëD`ý "eVEÙŠ×4<Ð ïŠíZȶ«©è ¢h xšèÚáÓ/°Ô­ŽÚ iÅ¹ØÆ{¯ÿ(¶ +Û·ÄûpømŠï+|³Iê!vl&þï¦v¶r¿V×H÷z6è_«sT¾Vç_ùZåkuŽ¿{­Î¯Õá¶‘È%ÂáÿüZ£òµ:ÿ¿y­ÎQùZÿ_^«s^qµøºØǨØr(¬Â £w¬óû†Š>ßÈ—JnlÌó›(¦“"ð‰>ßêóHðÉ Äb2Ä")M©Ò˜ªÿÛ)ŠõîSÁÿË)Š/è¾ÊÓœï p¤‰V ž¢':vn7ü¬áäu‘¨Žä cù;0d?TßS”±«ÏPòšn!Nóš6íˆ=b”CþÚhüÖÕhÄûWÄA»_ªÈNPÛÿš^ø–rmgCϯBLøÞñEoZ×Y¬ŸŸë|Û–kcÞÙÛ–m\¬Qâ×k =ÍÑË:zVËô¬n¯n÷ôdõj°zÙž5­ž^ÿaÿ' endstream endobj 585 0 obj <> stream xÚ}SM‹Û0½ûW¨‡ÀîÁkù3é k§)†ÝMØ„¶ôæH“TËF¶ù÷•fâ ”PC,æÍ›ç73ÊìËvç¿Èö~üÄÙôíhøå[Ýy³Ùªczx §lÿ̶¦;ØCY­*­†GK®´8&Ö}R'¥o÷ö°‡_~ù{»ýþÓUúUÀ Jæð¹«Ù«ál¹ÿ£1›cws %~€éU«ŸYøÄ9·À7-˶q½õ^põÇ‚ÉñQii®&ÙÁYöˆI%†k„oÑØ!¹âÝ¥ ©ô±õ–K|Ød?˜ :~ô‚‘`”>ÙAÜsh»±ëÎàÜ0îå9“p´Âv6ïu,pWÒfÕp¹?[ÅþÒ‹0ɬh%ô]-ÀÔúÞÒ€çl¹¶Oî–ÿäCNe‡ã¿²|ÎèÌE½à‘„3 $f˜á‘F.üJàÁ„4ÒÌHÓª …4³Á”4SÒœ“fJš)•ÏQ3+ÐuV8•ˆ‡ ìyj.™zjƒ p²µ&“Å$ˆJIÄ.Z,è+ib=M¢¨âFênÆçþÄhŒ]^ܑێ]Ûç ëÚÎUá¯æôqÑfíýË¿Ï endstream endobj 530 0 obj <> stream xÚ½YkoÜ6ýî_¡) K|?‚"¨Ç['1’tÓD{â v2cÌÈm³¿~Ï%54eâWº¤Fä彇ç>Hq# Vh¡ …FŠ‚ ŽV‚ë‚[ÖòBxju!¥Æ{^HK­+”R…V¢ÐZîhzgi¾)¬vøŸ^yÌó…wh,8Ô±èt·íÅãªZM/–årUžþ·ú«jÛO“Ëvùy¶hËóY[}œ/?þûb>™-ªçÏöWG/ß¼Ý;>þ–dÈÝRuÁ-TÔIuP»„ïþU§—WêËÜ-Ùíì¶¶äâæq†óÒè›Ç4%³öÆqʲ’²ä6/ȘŸ{Ľ½@¹ë^ Ì½½@³äJF/Pªkõý¼Á™Ò»È(D8aTÉQ×£œ¼£¾Lfóvùø¯ùÏç‹Kpêü~ ߨ£TɨÑ®tH†¨dJáôÕ9›ü9ýùr%×ídq6[œÂƬËÓå—{êÇlɉ‘ uŠ­’Òº²ÌÿÃøôÕÉû£—¿ô¼OÙÛy_>nÔû%p‘\6\"`¡ C*EÛpWS%Œ_#,½i¤ª±ô5ê¿F‰Z8Ö(¬s8›O©¾5ÌÓ£l³¢$’øJÿ°êÙâtInRaÙYûu÷yµ?YOÃÐíFÏ&X–|«¦³E¢êíò÷Å â¦XZki(HÏQƒV냎.dã»pšÙXûu dŽŸ–Xîõô|¶nW_‹G{gËÓªWäá0±x´±ñhrq1Ÿ~!¤Ù“'Dc$j H‹0hH‰0„²Y*ÑXð#0Ð7NÖ U«â *enÁ”×ÇÞõMÛ¥Š €HTA­È=ÊßçŠ{ WFLňY ¿;YƽÆÃ[ì÷d ]à×HQ‡F]ý^6ŠmþÙü¥ëÞ£ŒÐêú_é•ᣯlo©ÆŽ ùÖ¯q.èíelôMBœ9ï³ÐÕ|‘ô¾…¼ûðfïÕÇ/^,KÎv±u—óÉj‹)„\:M'2ɉè!÷"ί¼z^Ä:â¹Iž;‘Ñ='2êN4fâЋÜЋìݽhÒënd6ndä?äF*²NEßѬî{C£]êš8Ô$‚66Îr<62½ð&r92;ã+ú®ç3œÇ17óðٻׯ{Ñvܶýåül+ )ï3ºo ·>£¡ô£4dî®4´¼GCËHà ,´jÀB+ïÎÂ1@¯‘0Þ±úïJB”¡®ñ5¥]ü•j:wÑ•™ÄQ2´%#œý6?!Mø‘ŒÍOÉ Œ×áþECaQÕRRR‡/ü¬Ä’(9è†ÎHªZ]Ò}&ÆŠx“I­‹s4•'Èœ†®ãïŒaáBÕ0Šhí¡5ÄhÔçTKŽ!t%KVÑý5]«¢,á“Å;kœ¨È¦"Y⽤ëÝépr-»áôq9"Å;E7_Ÿþ것nëêp¶ZíÂÚÇté[ó•"¦›3káÈÒñƽ8#)øÉjúgÁ]^ÓwešÈò‰ÝØÍD7˜èüfbô¹‘‰Q›—Ó¿Ûð‰| E')b›”8qÛò|3±KQ[ î>evËG=#®Í:dE†ì®ì­d´¶-WùJvh›MÐZ6>1Â;{D”bÎÆ|CJŽó]LÂÙˆoHÉA7CÐM]»q)ñ&w#E ¤è¨þ :ß:3$®Nèê­èƉz¨J€ª> YâòJåd锉d±¹îÚ¾ð„³ßžã¬†8«„³tãRd޳â,ÎRm“ÒMB+´’ú–Ï…tÞÚ¡Õ)Ñê¶£CKõi+Do+|n¦Z&ÊBŒÏËACE™»Q!<Çx‹&‡• `MÙÌoµ›5À1¥2?ÎÚ):?ˆ¬õ9iE´>_%å½~ÚË=Ó Ji®Ÿåz“2͆ù.¥»~¶ËØ Ó¡)‹õ“XO@ï°RHÙ¬ŸÌry*f²”ÈÌ(py&±”ÃÌ(ˆy比¾ô(ˆy”¹ô(ˆyÚf­”´ô(ˆyúf¯”¼Ô(ˆ*Q@L J‚˜g§arJ¹IŽ‚˜'¦a^JiIn1N—RR?#‰¬Öì|6zsž‚\Ï™y/¥ ÔO@=¹žr€gJEýL”Ç™Mîù†x, endstream endobj 597 0 obj << /Author(\376\377\000W\000e\000r\000n\000e\000r\000\040\000L\000e\000m\000b\000e\000r\000g)/Title(\376\377\000t\000t\000f\000a\000u\000t\000o\000h\000i\000n\000t)/Subject()/Creator(LaTeX with hyperref package)/Producer(LuaTeX-0.76.0)/Keywords() /CreationDate (D:20131109085244+01'00')/ModDate (D:20131109085244+01'00')/Trapped/False/PTEX.Fullbanner (This is LuaTeX, Version beta-0.76.0-2013070317 (TeX Live 2013) (rev 4627) (TeX Live 2013) kpathsea version 6.1.1)>> endobj 589 0 obj <> stream xÚ—]oœ8†ïû+¸lV"ƒ±Aª*U­VZm·]íÇUUU„qfÐ@àÙ$ûë÷¼ÏØRõ" óø|ûøò,ÉV$U•°ðüs;͆œØkzæËÂûáDÚ)ûöâ‚)çBø.ÄųÊw:Ù :å%(ªQ¤^­Úŵò¢qåP:[U°:yæ¥^^2_¼G™ªôüåõ‡¡Iÿ4õdnHݦ”¼þÅè‡[F ôA <À Tlõ~Ÿs_ŸÌpl{“¶ýýpC;ª–建ùç0‘ÿ}ZÓŸÑͱo›ºK÷ÚÔm7“h±š¾ëN:ýoè5`U-D;ØHMý ¦¿ÝŸúæ&‘Œ]¯Óp˜ô<Ÿe²UæXFO?ÙÌdÁxH(]V…ˆvù:$HŠGLS‘jkra÷.ع™Ú‘ ÏÙêû¾=œ&}›Ûp2AŠˆ;_gÈóRT\ªJÀ2€Ü:R<†ÙM"‹) (%"HA‰¥é<(U)(!ªR±„Û 3T‹8ÒÐzÿºûØ>´&ìh_ðkÐöç… I­¾lç6ÃÃ8Ì­±ý'ü•Y›‘­…냶½”å>Ȱ!™OPc^úE…O°2 ØC—ïB°*ðUàˆ(Ÿ JY@P"&}‚”…/ƒ“í6ah€Âw•có‹@&Gå3ØöÒw•cÏ+?‰œ’AÁò$°¬pj;”„Ì;ˆ_TL£"”„äÂ'”„þÞðÄwNçÊ7#1å| {Îo''6œ… ÇÚO£Äá÷«AúÜ%ºŒ´\¹vƬÓý-Cß©˜ab±RY\)´ãåìä Ñ*†èËȦ•Œ!©»i}ðžñ˜bhf*¦›ìÊ'»r¦@¯¼Q5Y~å­¼ äÀ¸Œ)JÈ«˜" ÁcŠ,DdWZ»%)ì–W²°ë.”ùtçUÝÎe¹½Bm­^PBW¼ E¸;)^¢0ÎGK”ãö¥Õ]#oȆ­cæm€±±íãCm®`Œlãd»+ÛPãÛPó׈µ6BkmÄ ÖVÚB¬ý´–p4^çCm‡CâÚÁÔw»ï«2b˜öUBL÷, 6*‹”±Enz;†KEº¸Óˈá²r§Â1\W•.,7pÌQ§·þ›æ¡{è“ê"à¯×c‹ f-l°Ò﬇S‹É¾Æóx¬MªŸêÆtÏ)½k§™ñ ¼&ñØöûáq¶ï µiïÚ®5ϸé×8žÒ£nG¼ 7“®gv8A˜ï"’˜ûzÛþ@þ=bÿðî‘Ëðà]Ÿ§ï[XOã¯í~þ"×L®ãF._IöCìÅ—§±þAÏf¶Ÿq—¯•çQïÞצî†}¦4­/»¼û|2]Û[°~¶`T$rÝ\+ýÛ°×»¿gídwŸGÝ¿³yÓ´,W?ÿ‚å×ÿ endstream endobj 598 0 obj < <745D8466E5CE883D4C422267CAB94ACC>]/Length 1471 /Filter/FlateDecode>> stream xÚ%–[hU…çŸLrΜ¤Mr’4÷{sm.M›4mOÛôš¦MNšK/iš¤I#béC•ªÄRÄ_ŠÐ!v[•¢ x}aã Á¢ è« u¾åË—Ykï9™Ù{ýÿž ‚a„V’ü ü±0óžï8^R`ÔÏâ1‚"¼9<Ý–i¼%<~9ŒA&ùW¹D†Ùud1(Á3¼KÈM`3^ˆ·†,exx«ÈrÅ+Æ»ˆ¬•x%x+È*°o3Þ2²Ôà•á-!kA^#Þd=hÀkÂ[D6‚&¼¼óÈfЂ׉·€lmx]xçí`+^ÞYdèÄëÅ;ƒìÝx»ðN#{@/Þ(Þú%¹ím€ËXôå[º*|8B㈅#/®Ú¢ßç+¼ó~`E×ÞÑäFµè~³$apdÈ‘DG¡qV¸q?¹íòÛ¥ú’¤^ÜHð×#¥º«{9˜]“]yN²p€»VKõ~,¯ ´[êÖÿoNDYs:ã9%DZ#M®ÛÒ‹•šG:g²#Wnô¡C–þ\•∞#˜Ž¬9òçt|êµô·?iir:CI“ÓÉ©£—Ð8²áYúç×4Yg£Cœs€°º Kÿ6®)ØéÌÓ!wÌXúÏ75Jšñq‹@± >ލ¸Kÿý£æ-ó,„qµjqôŒènÍ2|¨%£)Z\[RŸo ¶r¶¸óê£mÄ T- d-îÕäjPê,î»$øAõO®èJrMç¯$£ùÏä5[¼ð„®ZA›Å‹'’ÑÅ{òÚ-~¼FW Óâ'$£××åuY|£\Wú|ëµøæH2zó yÛ,þÆëª XüÝ{Éè÷-ò-üª«! ïºQËd;ðò|.äù>ȳ`ù4` ò¬U¾Ø2eceª[‚ÿ>âj“ endstream endobj startxref 661280 %%EOF ttfautohint-0.97/doc/Makefile.am0000644000175000001440000001041312231004133013524 00000000000000# Makefile.am # Copyright (C) 2011-2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. DOCSRC = ttfautohint-1.pandoc \ ttfautohint-2.pandoc \ ttfautohint-3.pandoc DOCIMGSVG = img/blue-zones.svg \ img/glyph-terms.svg \ img/o-and-i.svg \ img/segment-edge.svg DOCIMGPDF = img/blue-zones.pdf \ img/glyph-terms.pdf \ img/o-and-i.pdf \ img/segment-edge.pdf DOCIMGPNG = img/ttfautohintGUI.png \ img/a-before-hinting.png \ img/a-after-hinting.png \ img/a-after-autohinting.png \ img/afii10108-11px-after-hinting.png \ img/afii10108-11px-before-hinting.png \ img/afii10108-12px-after-hinting.png \ img/afii10108-12px-before-hinting.png \ img/e-17px-x14.png \ img/e-17px-x17.png \ img/ff-g-26px.png \ img/ff-g-26px-wD.png DOC = ttfautohint.html \ ttfautohint.pdf \ ttfautohint.txt \ $(DOCIMGPNG) \ $(DOCIMGSVG) \ $(DOCIMGPDF) EXTRA_DIST = c2pandoc.sed \ make-snapshot.sh \ strip-comments.sh \ ttfautohint-1.pandoc \ ttfautohint-2.pandoc \ ttfautohint-3.pandoc \ template.html \ template.tex \ ttfautohint-css.html if WITH_DOC nobase_dist_doc_DATA = $(DOC) endif ttfautohint-2.pandoc: $(top_srcdir)/lib/ttfautohint.h $(SED) -f $(srcdir)/c2pandoc.sed < $< > $@ ttfautohint.txt: $(DOCSRC) $(SHELL) $(srcdir)/strip-comments.sh $^ > $@ if WITH_DOC # suffix rules must always start in column 0 .svg.pdf: $(INKSCAPE) --export-pdf=$@ $< # build snapshot image of ttfautohintGUI: # this needs X11 and ImageMagick's `import' tool # (in the `make-snaphshot.sh' script) img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \ $(top_srcdir)/configure.ac cd $(top_builddir)/frontend \ && $(MAKE) $(AM_MAKEFLAGS) ttfautohintGUI$(EXEEXT) -mkdir img 2> /dev/null $(SHELL) $(srcdir)/make-snapshot.sh \ $(top_builddir)/frontend/ttfautohintGUI$(EXEEXT) $@ ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \ ttfautohint-css.html template.html $(top_srcdir)/.version $(PANDOC) --smart \ --template=$(srcdir)/template.html \ --default-image-extension=".svg" \ --variable="version:$(VERSION)" \ --toc \ --include-in-header=$(srcdir)/ttfautohint-css.html \ --standalone \ --output=$@ $< ttfautohint.pdf: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \ template.tex $(top_srcdir)/.version TEXINPUTS="$(srcdir);" \ $(PANDOC) --smart \ --latex-engine=$(LATEX) \ --template=$(srcdir)/template.tex \ --default-image-extension=".pdf" \ --variable="version:$(VERSION)" \ --number-sections \ --toc \ --chapters \ --standalone \ --output=$@ $< else .svg.pdf: @echo 1>&2 "warning: can't generate \`$@'" @echo 1>&2 " please install inkscape and reconfigure" img/ttfautohintGUI.png: $(top_srcdir)/frontend/maingui.cpp \ $(top_srcdir)/configure.ac @echo 1>&2 "warning: can't generate \`$@'" @echo 1>&2 " please install ImageMagick's \`import' tool and reconfigure" ttfautohint.html: ttfautohint.txt $(DOCIMGPNG) $(DOCIMGSVG) \ ttfautohint-css.html template.html $(top_srcdir)/.version @echo 1>&2 "warning: can't generate \`$@'" @echo 1>&2 " pleasae install pandoc and reconfigure" ttfautohint.pdf: $ttfautohint.txt $(DOCIMGPNG) $(DOCIMGPDF) \ template.tex $(top_srcdir)/.version @echo 1>&2 "warning: can't generate \`$@'" @echo 1>&2 " please install pdftex and pandoc, then reconfigure" endif # end of Makefile.am ttfautohint-0.97/doc/c2pandoc.sed0000644000175000001440000000031311763563560013703 000000000000001 i\ \ \ \ \|/\* pandoc-start \*/|,\|/\* pandoc-end \*/| !d \|/\* pandoc-start \*/|,\|/\* pandoc-end \*/| { \|^$| d \|^/\*| d \|^ \*/| d s|^ \* || s|^ \*|| } ttfautohint-0.97/doc/strip-comments.sh0000644000175000001440000000041112076547345015035 00000000000000#! /bin/sh # # strip-comments.sh ... > result # # This simple script strips off all HTML comments except in the first file. cat $1 shift while [ $# -gt 0 ]; do cat $1 \ | sed -e '//d' \ -e '//d' shift done # eof ttfautohint-0.97/doc/ttfautohint-3.pandoc0000644000175000001440000000315312077167471015421 00000000000000 Compilation and Installation ============================ Please read the files [`INSTALL`](http://repo.or.cz/w/ttfautohint.git/blob_plain/HEAD:/INSTALL) and [`INSTALL.git`](http://repo.or.cz/w/ttfautohint.git/blob_plain/HEAD:/INSTALL.git) (part of the source code bundle) for instructions how to compile the ttfautohint library together with its front-ends. TODO Unix Platforms -------------- TODO MS Windows ---------- TODO Mac OS X -------- TODO Authors ======= Copyright © 2011-2013 by [Werner Lemberg](mailto:wl@gnu.org).\ Copyright © 2011-2013 by [Dave Crossland](mailto:dave@understandingfonts.com). This file is part of the ttfautohint library, and may only be used, modified, and distributed under the terms given in [`COPYING`](http://repo.or.cz/w/ttfautohint.git/blob_plain/HEAD:/COPYING). By continuing to use, modify, or distribute this file you indicate that you have read `COPYING` and understand and accept it fully. The file `COPYING` mentioned in the previous paragraph is distributed with the ttfautohint library. [Dalton Maag Ltd]: http://daltonmaag.com [FontForge]: http://fontforge.sf.net [Qt]: http://qt-project.org [Vernon Adams]: http://code.newtypography.co.uk ttfautohint-0.97/doc/ttfautohint.txt0000644000175000001440000014306112237364626014636 00000000000000% ttfautohint % Werner Lemberg % Introduction ============ **ttfautohint** is a library written in\ C that takes a TrueType font as the input, removes its bytecode instructions (if any), and returns a new font where all glyphs are bytecode hinted using the information given by FreeType's autohinting module. The idea is to provide the excellent quality of the autohinter on platforms that don't use FreeType. The library has a single API function, `TTF_autohint`, which is described [below](#the-ttfautohint-api). Bundled with the library there are two front-end programs, [`ttfautohint` and `ttfautohintGUI`](#ttfautohint-and-ttfautohintgui), being a command line and an application with a Graphics User Interface (GUI), respectively. What exactly are hints? ----------------------- To cite [Wikipedia](http://en.wikipedia.org/wiki/Font_hinting): > **Font hinting** (also known as **instructing**) is the use of > mathematical instructions to adjust the display of an outline font so that > it lines up with a rasterized grid. At low screen resolutions, hinting is > critical for producing a clear, legible text. It can be accompanied by > antialiasing and (on liquid crystal displays) subpixel rendering for > further clarity. and Apple's [TrueType Reference Manual](https://developer.apple.com/fonts/TTRefMan/RM03/Chap3.html#features): > For optimal results, a font instructor should follow these guidelines: > > - At small sizes, chance effects should not be allowed to magnify small > differences in the original outline design of a glyph. > > - At large sizes, the subtlety of the original design should emerge. In general, there are three possible ways to hint a glyph. 1. The font contains hints (in the original sense of this word) to guide the rasterizer, telling it which shapes of the glyphs need special consideration. The hinting logic is partly in the font and partly in the rasterizer. More sophisticated rasterizers are able to produce better rendering results. This is how Type\ 1 and CFF hints work. 2. The font contains exact instructions (also called *bytecode*) on how to move the points of its outlines, depending on the resolution of the output device, and which intentionally distort the (outline) shape to produce a well-rasterized result. The hinting logic is in the font; ideally, all rasterizers simply process these instructions to get the same result on all platforms. This is how TrueType hints work. 3. The font gets auto-hinted (at run-time). The hinting logic is completely in the rasterizer. No hints in the font are used or needed; instead, the rasterizer scans and analyzes the glyphs to apply corrections by itself. This is how FreeType's auto-hinter works; see [below](#background-and-technical-details) for more. What problems can arise with TrueType hinting? ---------------------------------------------- While it is relatively easy to specify PostScript hints (either manually or by an auto-hinter that works at font creation time), creating TrueType hints is far more difficult. There are at least two reasons: - TrueType instructions form a programming language, operating at a very low level. They are comparable to assembler code, thus lacking all high-level concepts to make programming more comfortable. Here an example how such code looks like: ``` SVTCA[0] PUSHB[ ] /* 3 values pushed */ 18 1 0 CALL[ ] PUSHB[ ] /* 2 values pushed */ 15 4 MIRP[01001] PUSHB[ ] /* 3 values pushed */ 7 3 0 CALL[ ] ``` Another major obstacle is the fact that font designers usually aren't programmers. - It is very time consuming to manually hint glyphs. Given that the number of specialists for TrueType hinting is very limited, hinting a large set of glyphs for a font or font family can become very expensive. Why ttfautohint? ---------------- The ttfautohint library brings the excellent quality of FreeType rendering to platforms that don't use FreeType, yet require hinting for text to look good -- like Microsoft Windows. Roughly speaking, it converts the glyph analysis done by FreeType's auto-hinting module to TrueType bytecode. Internally, the auto-hinter's algorithm resembles PostScript hinting methods; it thus combines all three hinting methods discussed [previously](#what-exactly-are-hints). The simple interface of the front-ends (both on the command line and with the GUI) allows quick hinting of a whole font with a few mouse clicks or a single command on the prompt. As a result, you get better rendering results with web browsers, for example. Across Windows rendering environments today, fonts processed with ttfautohint look best with ClearType enabled. This is the default for Windows\ 7. Good visual results are also seen in recent MacOS\ X versions and GNU/Linux systems that use FreeType for rendering. The goal of the project is to generate a 'first pass' of hinting that font developers can refine further for ultimate quality. `ttfautohint` and `ttfautohintGUI` ================================== On all supported platforms (GNU/Linux, Windows, and Mac OS\ X), the GUI looks quite similar; the used toolkit is [Qt], which in turn uses the platform's native widgets. ![`ttfautohintGUI` on GNU/Linux running KDE](img/ttfautohintGUI.png) Both the GUI and console version share the same features, to be discussed in the next subsection. **Warning: ttfautohint cannot always process a font a second time.** If the font contains composite glyphs, and option `-c` is used, reprocessing with ttfautohint will fail. For this reason it is strongly recommended to *not* delete the original, unhinted font so that you can always rerun ttfautohint. Calling `ttfautohint` --------------------- ``` ttfautohint [OPTION]... [IN-FILE [OUT-FILE]] ``` The TTY binary, `ttfautohint`, works like a Unix filter, this is, it reads data from standard input if no input file name is given, and it sends its output to standard output if no output file name is specified. A typical call looks like the following. ``` ttfautohint -v -f latn foo.ttf foo-autohinted.ttf ``` For demonstration purposes, here the same using a pipe and redirection. Note that Windows's default command line interpreter, `cmd.exe`, doesn't support piping with binary files, unfortunately. ``` cat foo.ttf | ttfautohint -v -f latn > foo-autohinted.ttf ``` Calling `ttfautohintGUI` ------------------------ ``` ttfautohintGUI [OPTION]... ``` `ttfautohintGUI` doesn't send any output to a console; however, it accepts the same command line options as `ttfautohint`, setting default values for the GUI. Options ------- Long options can be given with one or two dashes, and with and without an equal sign between option and argument. This means that the following forms are acceptable: `-foo=`*bar*, `--foo=`*bar*, `-foo`\ *bar*, and `--foo`\ *bar*. Below, the section title refers to the command's label in the GUI, then comes the name of the corresponding long command line option and its short equivalent, followed by a description. Background and technical details on the meaning of the various options are given [afterwards](#background-and-technical-details). ### Hint Set Range Minimum, Hint Set Range Maximum See ['Hint Sets'](#hint-sets) for a definition and explanation. `--hinting-range-min=`*n*, `-l`\ *n* : The minimum PPEM value (in pixels) at which hint sets are created. The default value for *n* is\ 8. `--hinting-range-max=`*n*, `-r`\ *n* : The maximum PPEM value (in pixels) at which hint sets are created. The default value for *n* is 50. ### Fallback Script `--fallback-script=`*s*, `-f`\ *s* : Set fallback script to tag *s*, which is a string consisting of four characters like `latn` or `dflt`. It gets used for for all glyphs that can't be assigned to a script automatically. See [below](#scripts) for more details. ### Hinting Limit `--hinting-limit=`*n*, `-G`\ *n* : The *hinting limit* is the PPEM value (in pixels) where hinting gets switched off (using the `INSTCTRL` bytecode instruction); it has zero impact on the file size. The default value for *n* is 200, which means that the font is not hinted for PPEM values larger than 200. Note that hinting in the range 'hinting-range-max' up to 'hinting-limit' uses the hinting configuration for 'hinting-range-max'. To omit a hinting limit, use `--hinting-limit=0` (or check the 'No Hinting Limit' box in the GUI). Since this will cause internal math overflow in the rasterizer for large pixel values (>\ 1500px approx.) it is strongly recommended to not use this except for testing purposes. ### x Height Increase Limit `--increase-x-height=`*n*, `-x`\ *n* : Normally, ttfautohint rounds the x\ height to the pixel grid, with a slight preference for rounding up. If this flag is set, values in the range 6\ PPEM to *n*\ PPEM are much more often rounded up. The default value for *n* is 14. Use this flag to increase the legibility of small sizes if necessary; you might get weird rendering results otherwise for glyphs like 'a' or 'e', depending on the font design. To switch off this feature, use `--increase-x-height=0` (or check the 'No x\ Height Increase' box in the GUI). To switch off rounding the x\ height to the pixel grid in general, either partially or completely, see ['x Height Snapping Exceptions'](#x-height-snapping-exceptions). The following images again use the font 'Mertz Bold'. ![At 17px, without option `-x` and '`-w ""`', the hole in glyph 'e' looks very grey in the FontForge snapshot, and the GDI ClearType rendering (which is the default on older Windows versions) fills it completely with black because it uses B/W rendering along the y\ axis. FreeType's 'light' autohint mode (which corresponds to ttfautohint's 'smooth' stem width algorithm) intentionally aligns horizontal lines to non-integer (but still discrete) values to avoid large glyph shape distortions.](img/e-17px-x14.png) ![The same, this time with option `-x 17` (and '`-w ""`').](img/e-17px-x17.png) ### x Height Snapping Exceptions `--x-height-snapping-exceptions=`*string*, `-X`\ *string* : A list of comma separated PPEM values or value ranges at which no x-height snapping shall be applied. A value range has the form *value1*`-`*value2*, meaning *value1*\ <= PPEM <=\ *value2*. *value1* or *value2* (or both) can be missing; a missing value is replaced by the beginning or end of the whole interval of valid PPEM values, respectively (6\ to 32767). Whitespace is not significant; superfluous commas are ignored, and ranges must be specified in increasing order. For example, the string `"7-9, 11, 13-"` means the values 7, 8, 9, 11, 13, 14, 15, etc. Consequently, if the supplied argument is `"-"`, no x-height snapping takes place at all. The default is the empty string (`""`), meaning no snapping exceptions. Normally, x-height snapping means a slight increase in the overall vertical glyph size so that the height of lowercase glyphs gets aligned to the pixel grid (this is a global feature, affecting *all* glyphs of a font). However, having larger vertical glyph sizes is not always desired, especially if it is not possible to adjust the `usWinAscent` and `usWinDescent` values from the font's `OS/2` table so that they are not too tight. See ['Windows Compatibility'](#windows-compatibility) for more details. ### Windows Compatibility `--windows-compatibility`, `-W` : This option makes ttfautohint add two artificial blue zones, positioned at the `usWinAscent` and `usWinDescent` values (from the font's `OS/2` table). The idea is to help ttfautohint so that the hinted glyphs stay within this horizontal stripe since Windows clips everything falling outside. There is a general problem with tight values for `usWinAscent` and `usWinDescent`; a good description is given in the [Vertical Metrics How-To](http://typophile.com/node/13081). Additionally, there is a special problem with tight values if used in combination with ttfautohint because the auto-hinter tends to slightly increase the vertical glyph dimensions at smaller sizes to improve legibility. This enlargement can make the heights and depths of glyphs exceed the range given by `usWinAscent` and `usWinDescent`. If ttfautohint is part of the font creation tool chain, and the font designer can adjust those two values, a better solution instead of using option `-W` is to reserve some vertical space for 'padding': For the auto-hinter, the difference between a top or bottom outline point before and after hinting is less than 1px, thus a vertical padding of 2px is sufficient. Assuming a minimum hinting size of 6ppem, adding two pixels gives an increase factor of 8÷6 = 1.33. This is near to the default baseline-to-baseline distance used by TeX and other sophisticated text processing applications, namely 1.2×designsize, which gives satisfying results in most cases. It is also near to the factor 1.25 recommended in the abovementioned how-to. For example, if the vertical extension of the largest glyph is 2000 units (assuming that it approximately represents the designsize), the sum of `usWinAscent` and `usWinDescent` could be 1.25×2000 = 2500. In case ttfautohint is used as an auto-hinting tool for fonts that can be no longer modified to change the metrics, option `-W` in combination with '`-X "-"`' to suppress any vertical enlargement should prevent almost all clipping. ### Pre-Hinting `--pre-hinting`, `-p` : *Pre-hinting* means that a font's original bytecode is applied to all glyphs before it is replaced with bytecode created by ttfautohint. This makes only sense if your font already has some hints in it that modify the shape even at EM size (normally 2048px); for example, some CJK fonts need this because the bytecode is used to scale and shift subglyphs. For most fonts, however, this is not the case. ### Hint Composites `--composites`, `-c` : By default, the components of a composite glyph get hinted separately. If this flag is set, the composite glyph itself gets hinted (and the hints of the components are ignored). Using this flag increases the bytecode size a lot, however, it might yield better hinting results. If this option is used (and a font actually contains composite glyphs), ttfautohint currently cannot reprocess its own output for technical reasons, see [below](#the-.ttfautohint-glyph). ### Symbol Font `--symbol`, `-s` : Apply default values for standard (horizontal) stem width and height instead of deriving them from a script-specific, hard-coded default character (which usually resembles the shape of a lowercase 'o'). Use this option (usually in combination with option `--fallback-script`) to hint symbol or dingbat fonts or math glyphs, for example, that lack a default character, at the expense of possibly poor hinting results at small sizes. ### Dehint `--dehint`, `-d` : Strip off all hints without generating new hints. Consequently, all other hinting options are ignored. This option is intended for testing purposes. ### Add ttfautohint Info `--no-info`, `-n` : Don't add ttfautohint version and command line information to the version string or strings (with name ID\ 5) in the font's `name` table. In the GUI it is similar: If you uncheck the 'Add ttfautohint info' box, information is not added to the `name` table. Except for testing and development purposes it is strongly recommended to not use this option. ### Strong Stem Width and Positioning `--strong-stem-width=`*string*, `-w`\ *string* : ttfautohint offers two different routines to handle (horizontal) stem widths and stem positions: 'smooth' and 'strong'. The former uses discrete values that slightly increase the stem contrast with almost no distortion of the outlines, while the latter snaps both stem widths and stem positions to integer pixel values as much as possible, yielding a crisper appearance at the cost of much more distortion. These two routines are mapped onto three possible rendering targets: - grayscale rendering, with or without optimization for subpixel positioning (e.g. Mac OS\ X) - 'GDI ClearType' rendering: the rasterizer version, as returned by the GETINFO bytecode instruction, is in the range 36\ <= version <\ 38 and ClearType is enabled (e.g. Windows XP) - 'DirectWrite ClearType' rendering: the rasterizer version, as returned by the GETINFO bytecode instruction, is >=\ 38, ClearType is enabled, and subpixel positioning is enabled also (e.g. Internet Explorer\ 9 running on Windows\ 7) GDI ClearType uses a mode similar to B/W rendering along the vertical axis, while DW ClearType applies grayscale rendering. Additionally, only DW ClearType provides subpixel positioning along the x\ axis. For what it's worth, the rasterizers version\ 36 and version\ 38 in Microsoft Windows are two completely different rendering engines. The command line option expects *string* to contain up to three letters with possible values '`g`' for grayscale, '`G`' for GDI ClearType, and '`D`' for DW ClearType. If a letter is found in *string*, the strong stem width routine is used for the corresponding rendering target (and smooth stem width handling otherwise). The default value is '`G`', which means that strong stem width handling is activated for GDI ClearType only. To use smooth stem width handling for all three rendering targets, use the empty string as an argument, usually connoted with '`""`'. In the GUI, simply set the corresponding check box to select the strong width routine for a given rendering target. If you unset the check box, the smooth width routine gets used. The following FontForge snapshot images use the font ['Mertz Bold'](http://code.newtypography.co.uk/mertz-sans/) (still under development) from [Vernon Adams]. ![The left part shows the glyph 'g' unhinted at 26px, the right part with hints, using the 'smooth' stem algorithm.](img/ff-g-26px.png) ![The same, but this time using the 'strong' algorithm. Note how the stems are aligned to the pixel grid.](img/ff-g-26px-wD.png) ### Font License Restrictions `--ignore-restrictions`, `-i` : By default, fonts that have bit\ 1 set in the 'fsType' field of the `OS/2` table are rejected. If you have a permission of the font's legal owner to modify the font, specify this command line option. If this option is not set, `ttfautohintGUI` shows a dialogue to handle such fonts if necessary. ### Miscellaneous `--help`, `-h` : On the console, print a brief documentation on standard output and exit. This doesn't work with `ttfautohintGUI` on MS Windows. `--version`, `-v` : On the console, print version information on standard output and exit. This doesn't work with `ttfautohintGUI` on MS Windows. `--debug` : Print *a lot* of debugging information on standard error while processing a font (you should redirect stderr to a file). This doesn't work with `ttfautohintGUI` on MS Windows. Background and Technical Details ================================ [Real-Time Grid Fitting of Typographic Outlines](http://www.tug.org/TUGboat/tb24-3/lemberg.pdf) is a scholarly paper that describes FreeType's auto-hinter in some detail. Regarding the described data structures it is slightly out of date, but the algorithm itself hasn't changed. The next few subsections are mainly based on this article, introducing some important concepts. Note that ttfautohint only does hinting along the vertical direction (this is, modifying y\ coordinates). Segments and Edges ------------------ A glyph consists of one or more *contours* (this is, closed curves). For example, glyph 'O' consists of two contours, while glyph 'I' has only one. ![The letter 'O' has two contours, an inner and an outer one, while letter 'I' has only an outer contour.](img/o-and-i) A *segment* is a series of consecutive points of a contour (including its Bézier control points) that are approximately aligned along a coordinate axis. ![A serif. Contour and control points are represented by squares and circles, respectively. The bottom 'line' DE is approximately aligned along the horizontal axis, thus it forms a segment of 7\ points. Together with the two other horizontal segments, BC and FG, they form two edges (BC+FG, DE).](img/segment-edge) An *edge* corresponds to a single coordinate value on the main dimension that collects one or more segments (allowing for a small threshold). While finding segments is done on the unscaled outline, finding edges is bound to the device resolution. See [below](#hint-sets) for an example. The analysis to find segments and edges is specific to a script. Feature Analysis ---------------- The auto-hinter analyzes a font in two steps. Right now, everything described below happens for the horizontal axis only, providing vertical hinting. * Global Analysis This affects the hinting of all glyphs, trying to give them a uniform appearance. + Compute standard stem widths and heights of the font. The values are normally taken from a glyph that resembles letter 'o'. + Compute blue zones, see [below](#blue-zones). If stem widths and heights of single glyphs differ by a large value, or if ttfautohint fails to find proper blue zones, hinting becomes quite poor, leading even to severe shape distortions. Table: script-specific standard characters of the 'latin' module script standard character -------- -------------------- `cyrl` 'о', U+043E, CYRILLIC SMALL LETTER O `grek` 'ο', U+03BF, GREEK SMALL LETTER OMICRON `hebr` '×', U+05DD, HEBREW LETTER FINAL MEM `latn` 'o', U+006F, LATIN SMALL LETTER O * Glyph Analysis This is a per-glyph operation. + Find segments and edges. + Link edges together to find stems and serifs. The abovementioned paper gives more details on what exactly constitutes a stem or a serif and how the algorithm works. Blue Zones ---------- ![Two blue zones relevant to the glyph 'a'. Vertical point coordinates of *all* glyphs within these zones are aligned, provided the blue zone is active (this is, its vertical size is smaller than 3/4\ pixels).](img/blue-zones) Outlines of certain characters are used to determine *blue zones*. This concept is the same as with Type\ 1 fonts: All glyph points that lie in certain small horizontal zones get aligned vertically. Here a series of tables that show the blue zone characters of the latin module's available scripts; the values are hard-coded in the source code. Table: `latn` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of capital letters THEZOCQS 2 bottom of capital letters HEZLOCUS 3 top of 'small f' like letters fijkdbh 4 top of small letters xzroesc 5 bottom of small letters xzroesc 6 bottom of descenders of small letters pqgjy The 'round' characters (e.g. 'OCQS') from Zones 1, 2, and 5 are also used to control the overshoot handling; to improve rendering at small sizes, zone\ 4 gets adjusted to be on the pixel grid; cf. the [`--increase-x-height` option](#x-height-increase-limit). Table: `grek` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of capital letters ΓΒΕΖΘΟΩ 2 bottom of capital letters ΒΔΖΞΘΟ 3 top of 'small beta' like letters βθδζλξ 4 top of small letters αειοπστω 5 bottom of small letters αειοπστω 6 bottom of descenders of small letters βγημÏφχψ Table: `cyrl` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of capital letters БВЕПЗОСЭ 2 bottom of capital letters БВЕШЗОСЭ 3 top of small letters Ñ…Ð¿Ð½ÑˆÐµÐ·Ð¾Ñ 4 bottom of small letters Ñ…Ð¿Ð½ÑˆÐµÐ·Ð¾Ñ 5 bottom of descenders of small letters руф Table: `hebr` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of letters בדהחךכ×ס 2 bottom of letters בטכ×סצ 3 bottom of descenders of letters קךןףץ ![This image shows the relevant glyph terms for vertical blue zone positions.](img/glyph-terms) Grid Fitting ------------ Aligning outlines along the grid lines is called *grid fitting*. It doesn't necessarily mean that the outlines are positioned *exactly* on the grid, however, especially if you want a smooth appearance at different sizes. This is the central routine of the auto-hinter; its actions are highly dependent on the used script. Currently, only support for scripts that work similarly to Latin (e.g. Greek or Cyrillic) is available. * Align edges linked to blue zones. * Fit edges to the pixel grid. * Align serif edges. * Handle remaining 'strong' points. Such points are not part of an edge but are still important for defining the shape. This roughly corresponds to the `IP` TrueType instruction. * Everything else (the 'weak' points) is handled with an `IUP` instruction. The following images illustrate the hinting process, using glyph 'a' from the freely available font ['Ubuntu Book'](http://font.ubuntu.com). The manual hints were added by [Dalton Maag Ltd], the used application to create the hinting debug snapshots was [FontForge]. ![Before hinting.](img/a-before-hinting.png) ![After hinting, using manual hints.](img/a-after-hinting.png) ![After hinting, using ttfautohint. Note that the hinting process doesn't change horizontal positions.](img/a-after-autohinting.png) Hint Sets --------- In ttfautohint terminology, a *hint set* is the *optimal* configuration for a given PPEM (pixel per EM) value. In the range given by the `--hinting-range-min` and `--hinting-range-max` options, ttfautohint creates hint sets for every PPEM value. For each glyph, ttfautohint automatically determines if a new set should be emitted for a PPEM value if it finds that it differs from a previous one. For some glyphs it is possible that one set covers, say, the range 8px-1000px, while other glyphs need 10 or more such sets. In the PPEM range below `--hinting-range-min`, ttfautohint always uses just one set, in the PPEM range between `--hinting-range-max` and `--hinting-limit`, it also uses just one set. One of the hinting configuration parameters is the decision which segments form an edge. For example, let us assume that two segments get aligned on a single horizontal edge at 11px, while two edges are used at 12px. This change makes ttfautohint emit a new hint set to accomodate this situation. The next images illustrate this, using a Cyrillic letter (glyph 'afii10108') from the 'Ubuntu book' font, processed with ttfautohint. ![Before hinting, size 11px.](img/afii10108-11px-before-hinting.png) ![After hinting, size 11px. Segments 43-27-28 and 14-15 are aligned on a single edge, as are segments 26-0-1 and 20-21.](img/afii10108-11px-after-hinting.png) ![Before hinting, size 12px.](img/afii10108-12px-before-hinting.png) ![After hinting, size 12px. The segments are not aligned. While segments 43-27-28 and 20-21 now have almost the same horizontal position, they don't form an edge because the outlines passing through the segments point into different directions.](img/afii10108-12px-after-hinting.png) Obviously, the more hint sets get emitted, the larger the bytecode ttfautohint adds to the output font. To find a good value\ *n* for `--hinting-range-max`, some experimentation is necessary since *n* depends on the glyph shapes in the input font. If the value is too low, the hint set created for the PPEM value\ *n* (this hint set gets used for all larger PPEM values) might distort the outlines too much in the PPEM range given by\ *n* and the value set by `--hinting-limit` (at which hinting gets switched off). If the value is too high, the font size increases due to more hint sets without any noticeable hinting effects. Similar arguments hold for `--hinting-range-min` except that there is no lower limit at which hinting is switched off. An example. Let's assume that we have a hinting range 10\ <= ppem <=\ 100, and the hinting limit is set to 250. For a given glyph, ttfautohint finds out that four hint sets must be computed to exactly cover this hinting range: 10-15, 16-40, 41-80, and 81-100. For ppem values below 10ppem, the hint set covering 10-15ppem is used, for ppem values larger than 100 the hint set covering 81-100ppem is used. For ppem values larger than 250, no hinting gets applied. The '\.ttfautohint' Glyph ------------------------- If [option `--composites`](#hint-composites) is used, ttfautohint doesn't hint subglyphs of composite glyphs separately. Instead, it hints the whole glyph, this is, composites get recursively expanded internally so that they form simple glyphs, then hints are applied -- this is the normal working mode of FreeType's auto-hinter. One problem, however, must be solved: Hinting for subglyphs (which usually are used as normal glyphs also) must be deactivated so that nothing but the final bytecode of the composite gets executed. The trick used by ttfautohint is to prepend a composite element called '\.ttfautohint', a dummy glyph with a single point, and which has a single job: Its bytecode increases a variable (to be more precise, it is a CVT register called `cvtl_is_subglyph` in the source code), indicating that we are within a composite glyph. The final bytecode of the composite glyph eventually decrements this variable again. As an example, let's consider composite glyph 'Agrave' ('À'), which has the subglyph 'A' as the base and 'grave' as its accent. After processing with ttfautohint it consists of three components: '\.ttfautohint', 'A', and 'grave' (in this order). Bytecode of Action ------------- -------- .ttfautohint increase `cvtl_is_subglyph` (now: 1) A do nothing because `cvtl_is_subglyph` > 0 grave do nothing because `cvtl_is_subglyph` > 0 Agrave decrease `cvtl_is_subglyph` (now: 0)\ apply hints because `cvtl_is_subglyph` == 0 Some technical details (which you might skip): All glyph point indices get adjusted since each '\.ttfautohint' subglyph shifts all following indices by one. This must be done for both the bytecode and one subformat of OpenType's `GPOS` anchor tables. While this approach works fine on all tested platforms, there is one single drawback: Direct rendering of the '\.ttfautohint' subglyph (this is, rendering as a stand-alone glyph) disables proper hinting of all glyphs in the font! Under normal circumstances this never happens because '\.ttfautohint' doesn't have an entry in the font's `cmap` table. (However, some test and demo programs like FreeType's `ftview` application or other glyph viewers that are able to bypass the `cmap` table might be affected.) Scripts ------- ttfautohint checks which auto-hinting module should be used to hint a specific glyph. To do so, it checks a glyph's Unicode character code whether it belongs to a given script. Currently, only FreeType's 'latin' autohinting module is implemented, but more are expected to come. Note, however, that this module is capable to hint other scripts too. Here is the hardcoded list of character ranges that are hinted by this 'latin' module. As you can see, this also covers some non-latin scripts (in the Unicode sense) that have similar typographical properties. In ttfautohint, scripts are identified by four-character tags. The value `dflt` indicates 'no script', which gets hinted by 'dummy' auto-hinting module. Table: `latn` character ranges Character range Description --------------------- ------------- `0x0020` - `0x007F` Basic Latin (no control characters) `0x00A0` - `0x00FF` Latin-1 Supplement (no control characters) `0x0100` - `0x017F` Latin Extended-A `0x0180` - `0x024F` Latin Extended-B `0x0250` - `0x02AF` IPA Extensions `0x02B0` - `0x02FF` Spacing Modifier Letters `0x0300` - `0x036F` Combining Diacritical Marks `0x1D00` - `0x1D7F` Phonetic Extensions `0x1D80` - `0x1DBF` Phonetic Extensions Supplement `0x1DC0` - `0x1DFF` Combining Diacritical Marks Supplement `0x1E00` - `0x1EFF` Latin Extended Additional `0x2000` - `0x206F` General Punctuation `0x2070` - `0x209F` Superscripts and Subscripts `0x20A0` - `0x20CF` Currency Symbols `0x2150` - `0x218F` Number Forms `0x2460` - `0x24FF` Enclosed Alphanumerics `0x2C60` - `0x2C7F` Latin Extended-C `0x2E00` - `0x2E7F` Supplemental Punctuation `0xA720` - `0xA7FF` Latin Extended-D `0xFB00` - `0xFB06` Alphabetical Presentation Forms (Latin Ligatures) `0x1D400` - `0x1D7FF` Mathematical Alphanumeric Symbols `0x1F100` - `0x1F1FF` Enclosed Alphanumeric Supplement Table: `grek` character ranges Character range Description --------------------- ------------- `0x0370` - `0x03FF` Greek and Coptic `0x1F00` - `0x1FFF` Greek Extended Table: `cyrl` character ranges Character range Description --------------------- ------------- `0x0400` - `0x04FF` Cyrillic `0x0500` - `0x052F` Cyrillic Supplement `0x2DE0` - `0x2DFF` Cyrillic Extended-A `0xA640` - `0xA69F` Cyrillic Extended-B Table: `hebr` character ranges Character range Description --------------------- ------------- `0x0590` - `0x05FF` Hebrew `0xFB1D` - `0xFB4F` Alphabetic Presentation Forms (Hebrew) If a glyph's character code is not covered by a script range, it is not hinted (or rather, it gets hinted by the 'dummy' auto-hinting module that essentially does nothing). This can be changed by specifying a *fallback script* with [option `--fallback-script`](#fallback-script). It is planned to extend ttfautohint so that the `GSUB` OpenType table gets analyzed, mapping character codes to all glyph indices that can be reached by switching on or off various OpenType features. SFNT Tables ----------- ttfautohint touches almost all SFNT tables within a TrueType or OpenType font. Note that only OpenType fonts with TrueType outlines are supported. OpenType fonts with a `CFF` table (this is, with PostScript outlines) won't work. * `glyf`: All hints in the table are replaced with new ones. If option [`--composites`](#hint-composites) is used, one glyph gets added (namely the '\.ttfautohint' glyph) and all composites get an additional component. * `cvt`, `prep`, and `fpgm`: These tables get replaced with data necessary for the new hinting bytecode. * `gasp`: Set up to always use grayscale rendering with grid-fitting for standard hinting, and symmetric grid-fitting and symmetric smoothing for horizontal subpixel hinting (ClearType). * `DSIG`: If it exists, it gets replaced with a dummy version. ttfautohint can't digitally sign a font; you have to do that afterwards. * `name`: The 'version' entries are modified to add information about the parameters that have been used for calling ttfautohint. This can be controlled with the [`--no-info`](#add-ttfautohint-info) option. * `GPOS`, `hmtx`, `loca`, `head`, `maxp`, `post`: Updated to fit the additional '\.ttfautohint' glyph, the additional subglyphs in composites, and the new hinting bytecode. * `LTSH`, `hdmx`: Since ttfautohint doesn't do any horizontal hinting, those tables are superfluous and thus removed. * `VDMX`: Removed, since it depends on the original bytecode, which ttfautohint removes. A font editor might recompute the necessary data later on. Problems -------- Diagonals. TODO The ttfautohint API =================== This section documents the single function of the ttfautohint library, `TTF_autohint`, together with its callback functions, `TA_Progress_Func` and `TA_Info_Func`. All information has been directly extracted from the `ttfautohint.h` header file. Preprocessor Macros and Typedefs -------------------------------- Some default values. ```C #define TA_HINTING_RANGE_MIN 8 #define TA_HINTING_RANGE_MAX 50 #define TA_HINTING_LIMIT 200 #define TA_INCREASE_X_HEIGHT 14 ``` An error type. ```C typedef int TA_Error; ``` Callback: `TA_Progress_Func` ---------------------------- A callback function to get progress information. *curr_idx* gives the currently processed glyph index; if it is negative, an error has occurred. *num_glyphs* holds the total number of glyphs in the font (this value can't be larger than 65535). *curr_sfnt* gives the current subfont within a TrueType Collection (TTC), and *num_sfnts* the total number of subfonts. If the return value is non-zero, `TTF_autohint` aborts with `TA_Err_Canceled`. Use this for a 'Cancel' button or similar features in interactive use. *progress_data* is a void pointer to user-supplied data. ```C typedef int (*TA_Progress_Func)(long curr_idx, long num_glyphs, long curr_sfnt, long num_sfnts, void* progress_data); ``` Callback: `TA_Info_Func` ------------------------ A callback function to manipulate strings in the `name` table. *platform_id*, *encoding_id*, *language_id*, and *name_id* are the identifiers of a `name` table entry pointed to by *str* with a length pointed to by *str_len* (in bytes; the string has no trailing NULL byte). Please refer to the [OpenType specification] for a detailed description of the various parameters, in particular which encoding is used for a given platform and encoding ID. [OpenType specification]: http://www.microsoft.com/typography/otspec/name.htm The string *str* is allocated with `malloc`; the application should reallocate the data if necessary, ensuring that the string length doesn't exceed 0xFFFF. *info_data* is a void pointer to user-supplied data. If an error occurs, return a non-zero value and don't modify *str* and *str_len* (such errors are handled as non-fatal). ```C typedef int (*TA_Info_Func)(unsigned short platform_id, unsigned short encoding_id, unsigned short language_id, unsigned short name_id, unsigned short* str_len, unsigned char** str, void* info_data); ``` Function: `TTF_autohint` ------------------------ Read a TrueType font, remove existing bytecode (in the SFNT tables `prep`, `fpgm`, `cvt `, and `glyf`), and write a new TrueType font with new bytecode based on the autohinting of the FreeType library. It expects a format string *options* and a variable number of arguments, depending on the fields in *options*. The fields are comma separated; whitespace within the format string is not significant, a trailing comma is ignored. Fields are parsed from left to right; if a field occurs multiple times, the last field's argument wins. The same is true for fields that are mutually exclusive. Depending on the field, zero or one argument is expected. Note that fields marked as 'not implemented yet' are subject to change. ### I/O `in-file` : A pointer of type `FILE*` to the data stream of the input font, opened for binary reading. Mutually exclusive with `in-buffer`. `in-buffer` : A pointer of type `const char*` to a buffer that contains the input font. Needs `in-buffer-len`. Mutually exclusive with `in-file`. `in-buffer-len` : A value of type `size_t`, giving the length of the input buffer. Needs `in-buffer`. `out-file` : A pointer of type `FILE*` to the data stream of the output font, opened for binary writing. Mutually exclusive with `out-buffer`. `out-buffer` : A pointer of type `char**` to a buffer that contains the output font. Needs `out-buffer-len`. Mutually exclusive with `out-file`. Deallocate the memory with `free`. `out-buffer-len` : A pointer of type `size_t*` to a value giving the length of the output buffer. Needs `out-buffer`. ### Messages and Callbacks `progress-callback` : A pointer of type [`TA_Progress_Func`](#callback-ta_progress_func), specifying a callback function for progress reports. This function gets called after a single glyph has been processed. If this field is not set or set to NULL, no progress callback function is used. `progress-callback-data` : A pointer of type `void*` to user data that is passed to the progress callback function. `error-string` : A pointer of type `unsigned char**` to a string (in UTF-8 encoding) that verbally describes the error code. You must not change the returned value. `info-callback` : A pointer of type [`TA_Info_Func`](#callback-ta_info_func), specifying a callback function for manipulating the `name` table. This function gets called for each `name` table entry. If not set or set to NULL, the table data stays unmodified. `info-callback-data` : A pointer of type `void*` to user data that is passed to the info callback function. `debug` : If this integer is set to\ 1, lots of debugging information is print to stderr. The default value is\ 0. ### General Hinting Options `hinting-range-min` : An integer (which must be larger than or equal to\ 2) giving the lowest PPEM value used for autohinting. If this field is not set, it defaults to `TA_HINTING_RANGE_MIN`. `hinting-range-max` : An integer (which must be larger than or equal to the value of `hinting-range-min`) giving the highest PPEM value used for autohinting. If this field is not set, it defaults to `TA_HINTING_RANGE_MAX`. `hinting-limit` : An integer (which must be larger than or equal to the value of `hinting-range-max`) that gives the largest PPEM value at which hinting is applied. For larger values, hinting is switched off. If this field is not set, it defaults to `TA_HINTING_LIMIT`. If it is set to\ 0, no hinting limit is added to the bytecode. `hint-composites` : If this integer is set to\ 1, composite glyphs get separate hints. This implies adding a special glyph to the font called ['.ttfautohint'](#the-.ttfautohint-glyph). Setting it to\ 0 (which is the default), the hints of the composite glyphs' components are used. Adding hints for composite glyphs increases the size of the resulting bytecode a lot, but it might deliver better hinting results. However, this depends on the processed font and must be checked by inspection. `pre-hinting` : An integer (1\ for 'on' and 0\ for 'off', which is the default) to specify whether native TrueType hinting shall be applied to all glyphs before passing them to the (internal) autohinter. The used resolution is the em-size in font units; for most fonts this is 2048ppem. Use this if the hints move or scale subglyphs independently of the output resolution. ### Hinting Algorithms `gray-strong-stem-width` : An integer (1\ for 'on' and 0\ for 'off', which is the default) that specifies whether horizontal stems should be snapped and positioned to integer pixel values for normal grayscale rendering. `gdi-cleartype-strong-stem-width` : An integer (1\ for 'on', which is the default, and 0\ for 'off') that specifies whether horizontal stems should be snapped and positioned to integer pixel values for GDI ClearType rendering, this is, the rasterizer version (as returned by the GETINFO bytecode instruction) is in the range 36\ <= version <\ 38 and ClearType is enabled. `dw-cleartype-strong-stem-width` : An integer (1\ for 'on' and 0\ for 'off', which is the default) that specifies whether horizontal stems should be snapped and positioned to integer pixel values for DW ClearType rendering, this is, the rasterizer version (as returned by the GETINFO bytecode instruction) is >=\ 38, ClearType is enabled, and subpixel positioning is enabled also. `increase-x-height` : An integer. For PPEM values in the range 6\ <= PPEM <=\ `increase-x-height`, round up the font's x\ height much more often than normally. If it is set to\ 0, this feature is switched off. If this field is not set, it defaults to `TA_INCREASE_X_HEIGHT`. Use this flag to improve the legibility of small font sizes if necessary. `x-height-snapping-exceptions` : A pointer of type `const char*` to a null-terminated string that gives a list of comma separated PPEM values or value ranges at which no x-height snapping shall be applied. A value range has the form *value1*`-`*value2*, meaning *value1* <= PPEM <= *value2*. *value1* or *value2* (or both) can be missing; a missing value is replaced by the beginning or end of the whole interval of valid PPEM values, respectively. Whitespace is not significant; superfluous commas are ignored, and ranges must be specified in increasing order. For example, the string `"3, 5-7, 9-"` means the values 3, 5, 6, 7, 9, 10, 11, 12, etc. Consequently, if the supplied argument is `"-"`, no x-height snapping takes place at all. The default is the empty string (`""`), meaning no snapping exceptions. `windows-compatibility` : If this integer is set to\ 1, two artificial blue zones are used, positioned at the `usWinAscent` and `usWinDescent` values (from the font's `OS/2` table). The idea is to help ttfautohint so that the hinted glyphs stay within this horizontal stripe since Windows clips everything falling outside. The default is\ 0. ### Scripts `fallback-script` : A string consisting of four lowercase characters that specifies the default script for glyphs which can't be mapped to a script automatically. If set to `"dflt"` (which is the default), no script is used. Valid values can be found in the header file `ttfautohint-scripts.h`. `symbol` : Set this integer to\ 1 if you want to process a font that lacks the characters of a supported script, for example, a symbol font. ttfautohint then uses default values for the standard stem width and height instead of deriving these values from a script's key character (for the latin script, it is character 'o'). The default value is\ 0. ### Miscellaneous `ignore-restrictions` : If the font has set bit\ 1 in the 'fsType' field of the `OS/2` table, the ttfautohint library refuses to process the font since a permission to do that is required from the font's legal owner. In case you have such a permission you might set the integer argument to value\ 1 to make ttfautohint handle the font. The default value is\ 0. `dehint` : If set to\ 1, remove all hints from the font. All other hinting options are ignored. ### Remarks * Obviously, it is necessary to have an input and an output data stream. All other options are optional. * `hinting-range-min` and `hinting-range-max` specify the range for which the autohinter generates optimized hinting code. If a PPEM value is smaller than the value of `hinting-range-min`, hinting still takes place but the configuration created for `hinting-range-min` is used. The analogous action is taken for `hinting-range-max`, only limited by the value given with `hinting-limit`. The font's `gasp` table is set up to always use grayscale rendering with grid-fitting for standard hinting, and symmetric grid-fitting and symmetric smoothing for horizontal subpixel hinting (ClearType). * ttfautohint can process its own output a second time only if option `hint-composites` is not set (or if the font doesn't contain composite glyphs at all). This limitation might change in the future. ```C TA_Error TTF_autohint(const char* options, ...); ``` Compilation and Installation ============================ Please read the files [`INSTALL`](http://repo.or.cz/w/ttfautohint.git/blob_plain/HEAD:/INSTALL) and [`INSTALL.git`](http://repo.or.cz/w/ttfautohint.git/blob_plain/HEAD:/INSTALL.git) (part of the source code bundle) for instructions how to compile the ttfautohint library together with its front-ends. TODO Unix Platforms -------------- TODO MS Windows ---------- TODO Mac OS X -------- TODO Authors ======= Copyright © 2011-2013 by [Werner Lemberg](mailto:wl@gnu.org).\ Copyright © 2011-2013 by [Dave Crossland](mailto:dave@understandingfonts.com). This file is part of the ttfautohint library, and may only be used, modified, and distributed under the terms given in [`COPYING`](http://repo.or.cz/w/ttfautohint.git/blob_plain/HEAD:/COPYING). By continuing to use, modify, or distribute this file you indicate that you have read `COPYING` and understand and accept it fully. The file `COPYING` mentioned in the previous paragraph is distributed with the ttfautohint library. [Dalton Maag Ltd]: http://daltonmaag.com [FontForge]: http://fontforge.sf.net [Qt]: http://qt-project.org [Vernon Adams]: http://code.newtypography.co.uk ttfautohint-0.97/doc/ttfautohint-1.pandoc0000644000175000001440000011104712236427351015412 00000000000000% ttfautohint % Werner Lemberg % Introduction ============ **ttfautohint** is a library written in\ C that takes a TrueType font as the input, removes its bytecode instructions (if any), and returns a new font where all glyphs are bytecode hinted using the information given by FreeType's autohinting module. The idea is to provide the excellent quality of the autohinter on platforms that don't use FreeType. The library has a single API function, `TTF_autohint`, which is described [below](#the-ttfautohint-api). Bundled with the library there are two front-end programs, [`ttfautohint` and `ttfautohintGUI`](#ttfautohint-and-ttfautohintgui), being a command line and an application with a Graphics User Interface (GUI), respectively. What exactly are hints? ----------------------- To cite [Wikipedia](http://en.wikipedia.org/wiki/Font_hinting): > **Font hinting** (also known as **instructing**) is the use of > mathematical instructions to adjust the display of an outline font so that > it lines up with a rasterized grid. At low screen resolutions, hinting is > critical for producing a clear, legible text. It can be accompanied by > antialiasing and (on liquid crystal displays) subpixel rendering for > further clarity. and Apple's [TrueType Reference Manual](https://developer.apple.com/fonts/TTRefMan/RM03/Chap3.html#features): > For optimal results, a font instructor should follow these guidelines: > > - At small sizes, chance effects should not be allowed to magnify small > differences in the original outline design of a glyph. > > - At large sizes, the subtlety of the original design should emerge. In general, there are three possible ways to hint a glyph. 1. The font contains hints (in the original sense of this word) to guide the rasterizer, telling it which shapes of the glyphs need special consideration. The hinting logic is partly in the font and partly in the rasterizer. More sophisticated rasterizers are able to produce better rendering results. This is how Type\ 1 and CFF hints work. 2. The font contains exact instructions (also called *bytecode*) on how to move the points of its outlines, depending on the resolution of the output device, and which intentionally distort the (outline) shape to produce a well-rasterized result. The hinting logic is in the font; ideally, all rasterizers simply process these instructions to get the same result on all platforms. This is how TrueType hints work. 3. The font gets auto-hinted (at run-time). The hinting logic is completely in the rasterizer. No hints in the font are used or needed; instead, the rasterizer scans and analyzes the glyphs to apply corrections by itself. This is how FreeType's auto-hinter works; see [below](#background-and-technical-details) for more. What problems can arise with TrueType hinting? ---------------------------------------------- While it is relatively easy to specify PostScript hints (either manually or by an auto-hinter that works at font creation time), creating TrueType hints is far more difficult. There are at least two reasons: - TrueType instructions form a programming language, operating at a very low level. They are comparable to assembler code, thus lacking all high-level concepts to make programming more comfortable. Here an example how such code looks like: ``` SVTCA[0] PUSHB[ ] /* 3 values pushed */ 18 1 0 CALL[ ] PUSHB[ ] /* 2 values pushed */ 15 4 MIRP[01001] PUSHB[ ] /* 3 values pushed */ 7 3 0 CALL[ ] ``` Another major obstacle is the fact that font designers usually aren't programmers. - It is very time consuming to manually hint glyphs. Given that the number of specialists for TrueType hinting is very limited, hinting a large set of glyphs for a font or font family can become very expensive. Why ttfautohint? ---------------- The ttfautohint library brings the excellent quality of FreeType rendering to platforms that don't use FreeType, yet require hinting for text to look good -- like Microsoft Windows. Roughly speaking, it converts the glyph analysis done by FreeType's auto-hinting module to TrueType bytecode. Internally, the auto-hinter's algorithm resembles PostScript hinting methods; it thus combines all three hinting methods discussed [previously](#what-exactly-are-hints). The simple interface of the front-ends (both on the command line and with the GUI) allows quick hinting of a whole font with a few mouse clicks or a single command on the prompt. As a result, you get better rendering results with web browsers, for example. Across Windows rendering environments today, fonts processed with ttfautohint look best with ClearType enabled. This is the default for Windows\ 7. Good visual results are also seen in recent MacOS\ X versions and GNU/Linux systems that use FreeType for rendering. The goal of the project is to generate a 'first pass' of hinting that font developers can refine further for ultimate quality. `ttfautohint` and `ttfautohintGUI` ================================== On all supported platforms (GNU/Linux, Windows, and Mac OS\ X), the GUI looks quite similar; the used toolkit is [Qt], which in turn uses the platform's native widgets. ![`ttfautohintGUI` on GNU/Linux running KDE](img/ttfautohintGUI.png) Both the GUI and console version share the same features, to be discussed in the next subsection. **Warning: ttfautohint cannot always process a font a second time.** If the font contains composite glyphs, and option `-c` is used, reprocessing with ttfautohint will fail. For this reason it is strongly recommended to *not* delete the original, unhinted font so that you can always rerun ttfautohint. Calling `ttfautohint` --------------------- ``` ttfautohint [OPTION]... [IN-FILE [OUT-FILE]] ``` The TTY binary, `ttfautohint`, works like a Unix filter, this is, it reads data from standard input if no input file name is given, and it sends its output to standard output if no output file name is specified. A typical call looks like the following. ``` ttfautohint -v -f latn foo.ttf foo-autohinted.ttf ``` For demonstration purposes, here the same using a pipe and redirection. Note that Windows's default command line interpreter, `cmd.exe`, doesn't support piping with binary files, unfortunately. ``` cat foo.ttf | ttfautohint -v -f latn > foo-autohinted.ttf ``` Calling `ttfautohintGUI` ------------------------ ``` ttfautohintGUI [OPTION]... ``` `ttfautohintGUI` doesn't send any output to a console; however, it accepts the same command line options as `ttfautohint`, setting default values for the GUI. Options ------- Long options can be given with one or two dashes, and with and without an equal sign between option and argument. This means that the following forms are acceptable: `-foo=`*bar*, `--foo=`*bar*, `-foo`\ *bar*, and `--foo`\ *bar*. Below, the section title refers to the command's label in the GUI, then comes the name of the corresponding long command line option and its short equivalent, followed by a description. Background and technical details on the meaning of the various options are given [afterwards](#background-and-technical-details). ### Hint Set Range Minimum, Hint Set Range Maximum See ['Hint Sets'](#hint-sets) for a definition and explanation. `--hinting-range-min=`*n*, `-l`\ *n* : The minimum PPEM value (in pixels) at which hint sets are created. The default value for *n* is\ 8. `--hinting-range-max=`*n*, `-r`\ *n* : The maximum PPEM value (in pixels) at which hint sets are created. The default value for *n* is 50. ### Fallback Script `--fallback-script=`*s*, `-f`\ *s* : Set fallback script to tag *s*, which is a string consisting of four characters like `latn` or `dflt`. It gets used for for all glyphs that can't be assigned to a script automatically. See [below](#scripts) for more details. ### Hinting Limit `--hinting-limit=`*n*, `-G`\ *n* : The *hinting limit* is the PPEM value (in pixels) where hinting gets switched off (using the `INSTCTRL` bytecode instruction); it has zero impact on the file size. The default value for *n* is 200, which means that the font is not hinted for PPEM values larger than 200. Note that hinting in the range 'hinting-range-max' up to 'hinting-limit' uses the hinting configuration for 'hinting-range-max'. To omit a hinting limit, use `--hinting-limit=0` (or check the 'No Hinting Limit' box in the GUI). Since this will cause internal math overflow in the rasterizer for large pixel values (>\ 1500px approx.) it is strongly recommended to not use this except for testing purposes. ### x Height Increase Limit `--increase-x-height=`*n*, `-x`\ *n* : Normally, ttfautohint rounds the x\ height to the pixel grid, with a slight preference for rounding up. If this flag is set, values in the range 6\ PPEM to *n*\ PPEM are much more often rounded up. The default value for *n* is 14. Use this flag to increase the legibility of small sizes if necessary; you might get weird rendering results otherwise for glyphs like 'a' or 'e', depending on the font design. To switch off this feature, use `--increase-x-height=0` (or check the 'No x\ Height Increase' box in the GUI). To switch off rounding the x\ height to the pixel grid in general, either partially or completely, see ['x Height Snapping Exceptions'](#x-height-snapping-exceptions). The following images again use the font 'Mertz Bold'. ![At 17px, without option `-x` and '`-w ""`', the hole in glyph 'e' looks very grey in the FontForge snapshot, and the GDI ClearType rendering (which is the default on older Windows versions) fills it completely with black because it uses B/W rendering along the y\ axis. FreeType's 'light' autohint mode (which corresponds to ttfautohint's 'smooth' stem width algorithm) intentionally aligns horizontal lines to non-integer (but still discrete) values to avoid large glyph shape distortions.](img/e-17px-x14.png) ![The same, this time with option `-x 17` (and '`-w ""`').](img/e-17px-x17.png) ### x Height Snapping Exceptions `--x-height-snapping-exceptions=`*string*, `-X`\ *string* : A list of comma separated PPEM values or value ranges at which no x-height snapping shall be applied. A value range has the form *value1*`-`*value2*, meaning *value1*\ <= PPEM <=\ *value2*. *value1* or *value2* (or both) can be missing; a missing value is replaced by the beginning or end of the whole interval of valid PPEM values, respectively (6\ to 32767). Whitespace is not significant; superfluous commas are ignored, and ranges must be specified in increasing order. For example, the string `"7-9, 11, 13-"` means the values 7, 8, 9, 11, 13, 14, 15, etc. Consequently, if the supplied argument is `"-"`, no x-height snapping takes place at all. The default is the empty string (`""`), meaning no snapping exceptions. Normally, x-height snapping means a slight increase in the overall vertical glyph size so that the height of lowercase glyphs gets aligned to the pixel grid (this is a global feature, affecting *all* glyphs of a font). However, having larger vertical glyph sizes is not always desired, especially if it is not possible to adjust the `usWinAscent` and `usWinDescent` values from the font's `OS/2` table so that they are not too tight. See ['Windows Compatibility'](#windows-compatibility) for more details. ### Windows Compatibility `--windows-compatibility`, `-W` : This option makes ttfautohint add two artificial blue zones, positioned at the `usWinAscent` and `usWinDescent` values (from the font's `OS/2` table). The idea is to help ttfautohint so that the hinted glyphs stay within this horizontal stripe since Windows clips everything falling outside. There is a general problem with tight values for `usWinAscent` and `usWinDescent`; a good description is given in the [Vertical Metrics How-To](http://typophile.com/node/13081). Additionally, there is a special problem with tight values if used in combination with ttfautohint because the auto-hinter tends to slightly increase the vertical glyph dimensions at smaller sizes to improve legibility. This enlargement can make the heights and depths of glyphs exceed the range given by `usWinAscent` and `usWinDescent`. If ttfautohint is part of the font creation tool chain, and the font designer can adjust those two values, a better solution instead of using option `-W` is to reserve some vertical space for 'padding': For the auto-hinter, the difference between a top or bottom outline point before and after hinting is less than 1px, thus a vertical padding of 2px is sufficient. Assuming a minimum hinting size of 6ppem, adding two pixels gives an increase factor of 8÷6 = 1.33. This is near to the default baseline-to-baseline distance used by TeX and other sophisticated text processing applications, namely 1.2×designsize, which gives satisfying results in most cases. It is also near to the factor 1.25 recommended in the abovementioned how-to. For example, if the vertical extension of the largest glyph is 2000 units (assuming that it approximately represents the designsize), the sum of `usWinAscent` and `usWinDescent` could be 1.25×2000 = 2500. In case ttfautohint is used as an auto-hinting tool for fonts that can be no longer modified to change the metrics, option `-W` in combination with '`-X "-"`' to suppress any vertical enlargement should prevent almost all clipping. ### Pre-Hinting `--pre-hinting`, `-p` : *Pre-hinting* means that a font's original bytecode is applied to all glyphs before it is replaced with bytecode created by ttfautohint. This makes only sense if your font already has some hints in it that modify the shape even at EM size (normally 2048px); for example, some CJK fonts need this because the bytecode is used to scale and shift subglyphs. For most fonts, however, this is not the case. ### Hint Composites `--composites`, `-c` : By default, the components of a composite glyph get hinted separately. If this flag is set, the composite glyph itself gets hinted (and the hints of the components are ignored). Using this flag increases the bytecode size a lot, however, it might yield better hinting results. If this option is used (and a font actually contains composite glyphs), ttfautohint currently cannot reprocess its own output for technical reasons, see [below](#the-.ttfautohint-glyph). ### Symbol Font `--symbol`, `-s` : Apply default values for standard (horizontal) stem width and height instead of deriving them from a script-specific, hard-coded default character (which usually resembles the shape of a lowercase 'o'). Use this option (usually in combination with option `--fallback-script`) to hint symbol or dingbat fonts or math glyphs, for example, that lack a default character, at the expense of possibly poor hinting results at small sizes. ### Dehint `--dehint`, `-d` : Strip off all hints without generating new hints. Consequently, all other hinting options are ignored. This option is intended for testing purposes. ### Add ttfautohint Info `--no-info`, `-n` : Don't add ttfautohint version and command line information to the version string or strings (with name ID\ 5) in the font's `name` table. In the GUI it is similar: If you uncheck the 'Add ttfautohint info' box, information is not added to the `name` table. Except for testing and development purposes it is strongly recommended to not use this option. ### Strong Stem Width and Positioning `--strong-stem-width=`*string*, `-w`\ *string* : ttfautohint offers two different routines to handle (horizontal) stem widths and stem positions: 'smooth' and 'strong'. The former uses discrete values that slightly increase the stem contrast with almost no distortion of the outlines, while the latter snaps both stem widths and stem positions to integer pixel values as much as possible, yielding a crisper appearance at the cost of much more distortion. These two routines are mapped onto three possible rendering targets: - grayscale rendering, with or without optimization for subpixel positioning (e.g. Mac OS\ X) - 'GDI ClearType' rendering: the rasterizer version, as returned by the GETINFO bytecode instruction, is in the range 36\ <= version <\ 38 and ClearType is enabled (e.g. Windows XP) - 'DirectWrite ClearType' rendering: the rasterizer version, as returned by the GETINFO bytecode instruction, is >=\ 38, ClearType is enabled, and subpixel positioning is enabled also (e.g. Internet Explorer\ 9 running on Windows\ 7) GDI ClearType uses a mode similar to B/W rendering along the vertical axis, while DW ClearType applies grayscale rendering. Additionally, only DW ClearType provides subpixel positioning along the x\ axis. For what it's worth, the rasterizers version\ 36 and version\ 38 in Microsoft Windows are two completely different rendering engines. The command line option expects *string* to contain up to three letters with possible values '`g`' for grayscale, '`G`' for GDI ClearType, and '`D`' for DW ClearType. If a letter is found in *string*, the strong stem width routine is used for the corresponding rendering target (and smooth stem width handling otherwise). The default value is '`G`', which means that strong stem width handling is activated for GDI ClearType only. To use smooth stem width handling for all three rendering targets, use the empty string as an argument, usually connoted with '`""`'. In the GUI, simply set the corresponding check box to select the strong width routine for a given rendering target. If you unset the check box, the smooth width routine gets used. The following FontForge snapshot images use the font ['Mertz Bold'](http://code.newtypography.co.uk/mertz-sans/) (still under development) from [Vernon Adams]. ![The left part shows the glyph 'g' unhinted at 26px, the right part with hints, using the 'smooth' stem algorithm.](img/ff-g-26px.png) ![The same, but this time using the 'strong' algorithm. Note how the stems are aligned to the pixel grid.](img/ff-g-26px-wD.png) ### Font License Restrictions `--ignore-restrictions`, `-i` : By default, fonts that have bit\ 1 set in the 'fsType' field of the `OS/2` table are rejected. If you have a permission of the font's legal owner to modify the font, specify this command line option. If this option is not set, `ttfautohintGUI` shows a dialogue to handle such fonts if necessary. ### Miscellaneous `--help`, `-h` : On the console, print a brief documentation on standard output and exit. This doesn't work with `ttfautohintGUI` on MS Windows. `--version`, `-v` : On the console, print version information on standard output and exit. This doesn't work with `ttfautohintGUI` on MS Windows. `--debug` : Print *a lot* of debugging information on standard error while processing a font (you should redirect stderr to a file). This doesn't work with `ttfautohintGUI` on MS Windows. Background and Technical Details ================================ [Real-Time Grid Fitting of Typographic Outlines](http://www.tug.org/TUGboat/tb24-3/lemberg.pdf) is a scholarly paper that describes FreeType's auto-hinter in some detail. Regarding the described data structures it is slightly out of date, but the algorithm itself hasn't changed. The next few subsections are mainly based on this article, introducing some important concepts. Note that ttfautohint only does hinting along the vertical direction (this is, modifying y\ coordinates). Segments and Edges ------------------ A glyph consists of one or more *contours* (this is, closed curves). For example, glyph 'O' consists of two contours, while glyph 'I' has only one. ![The letter 'O' has two contours, an inner and an outer one, while letter 'I' has only an outer contour.](img/o-and-i) A *segment* is a series of consecutive points of a contour (including its Bézier control points) that are approximately aligned along a coordinate axis. ![A serif. Contour and control points are represented by squares and circles, respectively. The bottom 'line' DE is approximately aligned along the horizontal axis, thus it forms a segment of 7\ points. Together with the two other horizontal segments, BC and FG, they form two edges (BC+FG, DE).](img/segment-edge) An *edge* corresponds to a single coordinate value on the main dimension that collects one or more segments (allowing for a small threshold). While finding segments is done on the unscaled outline, finding edges is bound to the device resolution. See [below](#hint-sets) for an example. The analysis to find segments and edges is specific to a script. Feature Analysis ---------------- The auto-hinter analyzes a font in two steps. Right now, everything described below happens for the horizontal axis only, providing vertical hinting. * Global Analysis This affects the hinting of all glyphs, trying to give them a uniform appearance. + Compute standard stem widths and heights of the font. The values are normally taken from a glyph that resembles letter 'o'. + Compute blue zones, see [below](#blue-zones). If stem widths and heights of single glyphs differ by a large value, or if ttfautohint fails to find proper blue zones, hinting becomes quite poor, leading even to severe shape distortions. Table: script-specific standard characters of the 'latin' module script standard character -------- -------------------- `cyrl` 'о', U+043E, CYRILLIC SMALL LETTER O `grek` 'ο', U+03BF, GREEK SMALL LETTER OMICRON `hebr` '×', U+05DD, HEBREW LETTER FINAL MEM `latn` 'o', U+006F, LATIN SMALL LETTER O * Glyph Analysis This is a per-glyph operation. + Find segments and edges. + Link edges together to find stems and serifs. The abovementioned paper gives more details on what exactly constitutes a stem or a serif and how the algorithm works. Blue Zones ---------- ![Two blue zones relevant to the glyph 'a'. Vertical point coordinates of *all* glyphs within these zones are aligned, provided the blue zone is active (this is, its vertical size is smaller than 3/4\ pixels).](img/blue-zones) Outlines of certain characters are used to determine *blue zones*. This concept is the same as with Type\ 1 fonts: All glyph points that lie in certain small horizontal zones get aligned vertically. Here a series of tables that show the blue zone characters of the latin module's available scripts; the values are hard-coded in the source code. Table: `latn` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of capital letters THEZOCQS 2 bottom of capital letters HEZLOCUS 3 top of 'small f' like letters fijkdbh 4 top of small letters xzroesc 5 bottom of small letters xzroesc 6 bottom of descenders of small letters pqgjy The 'round' characters (e.g. 'OCQS') from Zones 1, 2, and 5 are also used to control the overshoot handling; to improve rendering at small sizes, zone\ 4 gets adjusted to be on the pixel grid; cf. the [`--increase-x-height` option](#x-height-increase-limit). Table: `grek` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of capital letters ΓΒΕΖΘΟΩ 2 bottom of capital letters ΒΔΖΞΘΟ 3 top of 'small beta' like letters βθδζλξ 4 top of small letters αειοπστω 5 bottom of small letters αειοπστω 6 bottom of descenders of small letters βγημÏφχψ Table: `cyrl` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of capital letters БВЕПЗОСЭ 2 bottom of capital letters БВЕШЗОСЭ 3 top of small letters Ñ…Ð¿Ð½ÑˆÐµÐ·Ð¾Ñ 4 bottom of small letters Ñ…Ð¿Ð½ÑˆÐµÐ·Ð¾Ñ 5 bottom of descenders of small letters руф Table: `hebr` blue zones ID Blue zone Characters ---- ----------- ------------ 1 top of letters בדהחךכ×ס 2 bottom of letters בטכ×סצ 3 bottom of descenders of letters קךןףץ ![This image shows the relevant glyph terms for vertical blue zone positions.](img/glyph-terms) Grid Fitting ------------ Aligning outlines along the grid lines is called *grid fitting*. It doesn't necessarily mean that the outlines are positioned *exactly* on the grid, however, especially if you want a smooth appearance at different sizes. This is the central routine of the auto-hinter; its actions are highly dependent on the used script. Currently, only support for scripts that work similarly to Latin (e.g. Greek or Cyrillic) is available. * Align edges linked to blue zones. * Fit edges to the pixel grid. * Align serif edges. * Handle remaining 'strong' points. Such points are not part of an edge but are still important for defining the shape. This roughly corresponds to the `IP` TrueType instruction. * Everything else (the 'weak' points) is handled with an `IUP` instruction. The following images illustrate the hinting process, using glyph 'a' from the freely available font ['Ubuntu Book'](http://font.ubuntu.com). The manual hints were added by [Dalton Maag Ltd], the used application to create the hinting debug snapshots was [FontForge]. ![Before hinting.](img/a-before-hinting.png) ![After hinting, using manual hints.](img/a-after-hinting.png) ![After hinting, using ttfautohint. Note that the hinting process doesn't change horizontal positions.](img/a-after-autohinting.png) Hint Sets --------- In ttfautohint terminology, a *hint set* is the *optimal* configuration for a given PPEM (pixel per EM) value. In the range given by the `--hinting-range-min` and `--hinting-range-max` options, ttfautohint creates hint sets for every PPEM value. For each glyph, ttfautohint automatically determines if a new set should be emitted for a PPEM value if it finds that it differs from a previous one. For some glyphs it is possible that one set covers, say, the range 8px-1000px, while other glyphs need 10 or more such sets. In the PPEM range below `--hinting-range-min`, ttfautohint always uses just one set, in the PPEM range between `--hinting-range-max` and `--hinting-limit`, it also uses just one set. One of the hinting configuration parameters is the decision which segments form an edge. For example, let us assume that two segments get aligned on a single horizontal edge at 11px, while two edges are used at 12px. This change makes ttfautohint emit a new hint set to accomodate this situation. The next images illustrate this, using a Cyrillic letter (glyph 'afii10108') from the 'Ubuntu book' font, processed with ttfautohint. ![Before hinting, size 11px.](img/afii10108-11px-before-hinting.png) ![After hinting, size 11px. Segments 43-27-28 and 14-15 are aligned on a single edge, as are segments 26-0-1 and 20-21.](img/afii10108-11px-after-hinting.png) ![Before hinting, size 12px.](img/afii10108-12px-before-hinting.png) ![After hinting, size 12px. The segments are not aligned. While segments 43-27-28 and 20-21 now have almost the same horizontal position, they don't form an edge because the outlines passing through the segments point into different directions.](img/afii10108-12px-after-hinting.png) Obviously, the more hint sets get emitted, the larger the bytecode ttfautohint adds to the output font. To find a good value\ *n* for `--hinting-range-max`, some experimentation is necessary since *n* depends on the glyph shapes in the input font. If the value is too low, the hint set created for the PPEM value\ *n* (this hint set gets used for all larger PPEM values) might distort the outlines too much in the PPEM range given by\ *n* and the value set by `--hinting-limit` (at which hinting gets switched off). If the value is too high, the font size increases due to more hint sets without any noticeable hinting effects. Similar arguments hold for `--hinting-range-min` except that there is no lower limit at which hinting is switched off. An example. Let's assume that we have a hinting range 10\ <= ppem <=\ 100, and the hinting limit is set to 250. For a given glyph, ttfautohint finds out that four hint sets must be computed to exactly cover this hinting range: 10-15, 16-40, 41-80, and 81-100. For ppem values below 10ppem, the hint set covering 10-15ppem is used, for ppem values larger than 100 the hint set covering 81-100ppem is used. For ppem values larger than 250, no hinting gets applied. The '\.ttfautohint' Glyph ------------------------- If [option `--composites`](#hint-composites) is used, ttfautohint doesn't hint subglyphs of composite glyphs separately. Instead, it hints the whole glyph, this is, composites get recursively expanded internally so that they form simple glyphs, then hints are applied -- this is the normal working mode of FreeType's auto-hinter. One problem, however, must be solved: Hinting for subglyphs (which usually are used as normal glyphs also) must be deactivated so that nothing but the final bytecode of the composite gets executed. The trick used by ttfautohint is to prepend a composite element called '\.ttfautohint', a dummy glyph with a single point, and which has a single job: Its bytecode increases a variable (to be more precise, it is a CVT register called `cvtl_is_subglyph` in the source code), indicating that we are within a composite glyph. The final bytecode of the composite glyph eventually decrements this variable again. As an example, let's consider composite glyph 'Agrave' ('À'), which has the subglyph 'A' as the base and 'grave' as its accent. After processing with ttfautohint it consists of three components: '\.ttfautohint', 'A', and 'grave' (in this order). Bytecode of Action ------------- -------- .ttfautohint increase `cvtl_is_subglyph` (now: 1) A do nothing because `cvtl_is_subglyph` > 0 grave do nothing because `cvtl_is_subglyph` > 0 Agrave decrease `cvtl_is_subglyph` (now: 0)\ apply hints because `cvtl_is_subglyph` == 0 Some technical details (which you might skip): All glyph point indices get adjusted since each '\.ttfautohint' subglyph shifts all following indices by one. This must be done for both the bytecode and one subformat of OpenType's `GPOS` anchor tables. While this approach works fine on all tested platforms, there is one single drawback: Direct rendering of the '\.ttfautohint' subglyph (this is, rendering as a stand-alone glyph) disables proper hinting of all glyphs in the font! Under normal circumstances this never happens because '\.ttfautohint' doesn't have an entry in the font's `cmap` table. (However, some test and demo programs like FreeType's `ftview` application or other glyph viewers that are able to bypass the `cmap` table might be affected.) Scripts ------- ttfautohint checks which auto-hinting module should be used to hint a specific glyph. To do so, it checks a glyph's Unicode character code whether it belongs to a given script. Currently, only FreeType's 'latin' autohinting module is implemented, but more are expected to come. Note, however, that this module is capable to hint other scripts too. Here is the hardcoded list of character ranges that are hinted by this 'latin' module. As you can see, this also covers some non-latin scripts (in the Unicode sense) that have similar typographical properties. In ttfautohint, scripts are identified by four-character tags. The value `dflt` indicates 'no script', which gets hinted by 'dummy' auto-hinting module. Table: `latn` character ranges Character range Description --------------------- ------------- `0x0020` - `0x007F` Basic Latin (no control characters) `0x00A0` - `0x00FF` Latin-1 Supplement (no control characters) `0x0100` - `0x017F` Latin Extended-A `0x0180` - `0x024F` Latin Extended-B `0x0250` - `0x02AF` IPA Extensions `0x02B0` - `0x02FF` Spacing Modifier Letters `0x0300` - `0x036F` Combining Diacritical Marks `0x1D00` - `0x1D7F` Phonetic Extensions `0x1D80` - `0x1DBF` Phonetic Extensions Supplement `0x1DC0` - `0x1DFF` Combining Diacritical Marks Supplement `0x1E00` - `0x1EFF` Latin Extended Additional `0x2000` - `0x206F` General Punctuation `0x2070` - `0x209F` Superscripts and Subscripts `0x20A0` - `0x20CF` Currency Symbols `0x2150` - `0x218F` Number Forms `0x2460` - `0x24FF` Enclosed Alphanumerics `0x2C60` - `0x2C7F` Latin Extended-C `0x2E00` - `0x2E7F` Supplemental Punctuation `0xA720` - `0xA7FF` Latin Extended-D `0xFB00` - `0xFB06` Alphabetical Presentation Forms (Latin Ligatures) `0x1D400` - `0x1D7FF` Mathematical Alphanumeric Symbols `0x1F100` - `0x1F1FF` Enclosed Alphanumeric Supplement Table: `grek` character ranges Character range Description --------------------- ------------- `0x0370` - `0x03FF` Greek and Coptic `0x1F00` - `0x1FFF` Greek Extended Table: `cyrl` character ranges Character range Description --------------------- ------------- `0x0400` - `0x04FF` Cyrillic `0x0500` - `0x052F` Cyrillic Supplement `0x2DE0` - `0x2DFF` Cyrillic Extended-A `0xA640` - `0xA69F` Cyrillic Extended-B Table: `hebr` character ranges Character range Description --------------------- ------------- `0x0590` - `0x05FF` Hebrew `0xFB1D` - `0xFB4F` Alphabetic Presentation Forms (Hebrew) If a glyph's character code is not covered by a script range, it is not hinted (or rather, it gets hinted by the 'dummy' auto-hinting module that essentially does nothing). This can be changed by specifying a *fallback script* with [option `--fallback-script`](#fallback-script). It is planned to extend ttfautohint so that the `GSUB` OpenType table gets analyzed, mapping character codes to all glyph indices that can be reached by switching on or off various OpenType features. SFNT Tables ----------- ttfautohint touches almost all SFNT tables within a TrueType or OpenType font. Note that only OpenType fonts with TrueType outlines are supported. OpenType fonts with a `CFF` table (this is, with PostScript outlines) won't work. * `glyf`: All hints in the table are replaced with new ones. If option [`--composites`](#hint-composites) is used, one glyph gets added (namely the '\.ttfautohint' glyph) and all composites get an additional component. * `cvt`, `prep`, and `fpgm`: These tables get replaced with data necessary for the new hinting bytecode. * `gasp`: Set up to always use grayscale rendering with grid-fitting for standard hinting, and symmetric grid-fitting and symmetric smoothing for horizontal subpixel hinting (ClearType). * `DSIG`: If it exists, it gets replaced with a dummy version. ttfautohint can't digitally sign a font; you have to do that afterwards. * `name`: The 'version' entries are modified to add information about the parameters that have been used for calling ttfautohint. This can be controlled with the [`--no-info`](#add-ttfautohint-info) option. * `GPOS`, `hmtx`, `loca`, `head`, `maxp`, `post`: Updated to fit the additional '\.ttfautohint' glyph, the additional subglyphs in composites, and the new hinting bytecode. * `LTSH`, `hdmx`: Since ttfautohint doesn't do any horizontal hinting, those tables are superfluous and thus removed. * `VDMX`: Removed, since it depends on the original bytecode, which ttfautohint removes. A font editor might recompute the necessary data later on. Problems -------- Diagonals. TODO ttfautohint-0.97/doc/make-snapshot.sh0000644000175000001440000000434612227211737014625 00000000000000#! /bin/sh # # Copyright (C) 2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. # # # make-snapshot.sh # # Make a snapshot from an application's start window and save it to a file. # This needs X11 and ImageMagick's `import' tool. # # This script is very simple. Some possible problems: # # o In case the program doesn't create a visible X11 window, you have to # abort the script with ^C. # # o It fails for intelligent applications like `firefox' in case they are # already run, since firefox replaces the process with a new window of the # already running instance. # # o It loops forever for programs like `k3b' that spawns itself, thus # having a different process ID for the visible window. # This script uses ideas from # http://blog.chewearn.com/2010/01/18/find-window-id-of-a-process-id-in-bash-script/. if [ $# -ne 2 ]; then echo "Usage: $0 application imagename" exit 1 fi find_WID() { # Get all windows with the name $APP (ignoring case). xwininfo -root -tree 2>/dev/null \ | grep -i $1 \ | while read DATA; do # Extract Window ID. WID=`echo $DATA | awk '{print $1}'` # Check whether the window's PID is matching the application's PID. if [ `xprop -id $WID _NET_WM_PID | awk '{print $3}'` -eq $PID ]; then # Check whether window is displayed actually. if [ "`xwininfo -id $WID | grep 'IsViewable'`" != '' ]; then echo $WID return fi fi done } # Start program in background and get its process ID. $1 & PID=$! sleep 1 # Get application name. APP=`ps --no-header -o comm -p $PID` if [ "$APP" == "" ]; then echo "Couldn't start application \`$1'" exit 1 fi # Loop until program has displayed a window # so that we can actually get the Windows ID. while [ "$WID" == "" ]; do WID=`find_WID $APP` sleep 1 done # Make snapshot. import -silent -window $WID $2 kill $PID # eof ttfautohint-0.97/doc/template.tex0000644000175000001440000001456412230775663014066 00000000000000% This template only works with luatex or XeTeX if you use non-ASCII % characters. \documentclass[$if(fontsize)$$fontsize$,$endif$% $if(lang)$$lang$,$endif$% DIV=13]{scrreprt} \usepackage{ifxetex,ifluatex} \usepackage[T1]{fontenc} \usepackage{fixltx2e} \usepackage{libertine} % Libertine Mono is too ugly; we use lmodern instead \renewcommand{\ttfamily}{\fontfamily{lmtt}\selectfont} \setkomafont{sectioning}{\normalfont\bfseries} \setkomafont{descriptionlabel}{\normalfont} \setkomafont{caption}{\normalfont\small} $if(highlighting-macros)$ $highlighting-macros$ $endif$ $if(verbatim-in-note)$ \usepackage{fancyvrb} $endif$ $if(fancy-enums)$ % Redefine labelwidth for lists; otherwise, the enumerate package will cause % markers to extend beyond the left margin. \makeatletter \AtBeginDocument{% \renewcommand{\@listi} {\setlength{\labelwidth}{4em}}% } \makeatother \usepackage{enumerate} $endif$ $if(tables)$ \usepackage{longtable} % We redefine the main `longtable' macro to suppress the ugly \medskip that % pandoc inserts between rows. % % We also don't want line breaks after horizontal lines. This is quite % tricky, since `longtable' doesn't provide a proper command. The solution % below is taken from % % http://tex.stackexchange.com/questions/6350/how-to-disable-pagebreak-on-hline-in-longtable % % (with slight modifications) and we use it to simply redefine \hline % locally. Note that this macro also adds some slight vertical space before % and after the line to get better results (similar to `ctable'). \makeatletter \def\LT@nobreakhline{% \noalign{\ifnum0=`}\fi \penalty\@M \futurelet\@let@token\LT@@nobreakhline} \def\LT@@nobreakhline{% \ifx\@let@token\hline \global\let\@gtempa\@gobble \gdef\LT@sep{% \penalty\@M \vskip\doublerulesep}% \else \global\let\@gtempa\@empty \gdef\LT@sep{% \penalty\@M \vskip-\arrayrulewidth}% \fi \ifnum0=`{\fi}% % \noalign{\vskip 0.4ex% \penalty\@M}% % \multispan\LT@cols \unskip\leaders\hrule\@height\arrayrulewidth\hfill\cr \noalign{\LT@sep}% \multispan\LT@cols \unskip\leaders\hrule\@height\arrayrulewidth\hfill\cr % \noalign{\penalty\@M \vskip 0.4ex}% % \noalign{\penalty\@M}% \@gtempa} \let\original@LT@array\LT@array \def\LT@array{% \let\medskip\relax \let\LT@hline\LT@nobreakhline \original@LT@array} \makeatother $endif$ $if(url)$ \usepackage{url} $endif$ $if(graphics)$ \usepackage{graphicx} % We will generate all images so they have a width 0.6\maxwidth. This means % that they will get their normal width if they fit onto the page, but are % scaled down if they would overflow this limit. \makeatletter \def\maxwidth{% \ifdim\Gin@nat@width>\linewidth \linewidth \else \Gin@nat@width \fi} \makeatother \let\Oldincludegraphics\includegraphics \renewcommand{\includegraphics}[1]{% \Oldincludegraphics[width=0.6\maxwidth]{#1}} $endif$ \ifxetex \usepackage[setpagesize=false, % page size defined by xetex unicode=false, % unicode breaks when used with xetex xetex, colorlinks=true, linkcolor=blue]{hyperref} \else \usepackage[unicode=true, colorlinks=true, linkcolor=blue]{hyperref} \usepackage{microtype} \fi \hypersetup{breaklinks=true, pdfauthor={$author-meta$}, pdftitle={$title-meta$}, pdfborder={0 0 0}} % We want the names `section 2', `subsection 4.1', and the like in local % links, omitting the original link text. To do that, we redefine % \hyperref. \makeatletter % We transform % % \hyperref[foo]{bar} % % into % % bar (\autoref{foo}) \def\label@hyperref[#1]#2{% #2 (\autoref{#1})} \makeatother $if(subscript)$ \newcommand{\textsubscr}[1]{% \ensuremath{_{\scriptsize\textrm{#1}}}} $endif$ \setlength{\parindent}{0pt} \setlength{\parskip}{6pt plus 2pt minus 1pt} \setlength{\emergencystretch}{3em} % prevent overfull lines % We want a break after the description label (if there is one). \makeatletter \let\original@item\@item \def\description@item[#1]{% \if@noparitem \@donoparitem \else \if@inlabel \indent \par \fi \ifhmode \unskip\unskip \par \fi \if@newlist \if@nobreak \@nbitem \else \addpenalty\@beginparpenalty \addvspace\@topsep \addvspace{-\parskip}% \fi \else \addpenalty\@itempenalty \addvspace\itemsep \fi \global\@inlabeltrue \fi \everypar{% \@minipagefalse \global\@newlistfalse \if@inlabel \global\@inlabelfalse {\setbox\z@\lastbox \ifvoid\z@ \kern-\itemindent \fi}% \box\@labels \penalty\z@ \fi \if@nobreak \@nobreakfalse \clubpenalty \@M \else \clubpenalty \@clubpenalty \everypar{}% \fi}% \if@noitemarg \@noitemargfalse \if@nmbrlist \refstepcounter\@listctr \fi \fi \sbox\@tempboxa{\makelabel{#1}}% \global\setbox\@labels\hbox{% \unhbox\@labels \hskip \itemindent \hskip -\labelwidth \hskip -\labelsep \ifdim \wd\@tempboxa >\labelwidth \box\@tempboxa \else \hbox to\labelwidth {\unhbox\@tempboxa}% \fi \hskip \labelsep}% \def\reserved@a{#1}% \def\reserved@b{\@itemlabel}% \ifx\reserved@a \reserved@b \else \leavevmode\\ \fi \ignorespaces} \renewenvironment{description}{% \list{}{\labelwidth\z@ \itemindent-\leftmargin \let\makelabel\descriptionlabel \let\@item\description@item}% }{% \let\@item\original@item \endlist } \makeatother % we want block quotes formatted as italic \renewenvironment{quote}{% \list{}{\rightmargin\leftmargin}% \item\relax \itshape }{% \endlist } $if(numbersections)$ \setcounter{secnumdepth}{5} $else$ \setcounter{secnumdepth}{0} $endif$ $if(verbatim-in-note)$ \VerbatimFootnotes % allows verbatim text in footnotes $endif$ $if(lang)$ \ifxetex \usepackage{polyglossia} \setmainlanguage{$mainlang$} \else \usepackage[$lang$]{babel} \fi $endif$ $for(header-includes)$ $header-includes$ $endfor$ $if(title)$ \title{$title$} $endif$ \author{$for(author)$$author$$sep$ \and $endfor$} $if(version)$ \date{Version $version$} $endif$ \begin{document} $if(title)$ \maketitle $endif$ $for(include-before)$ $include-before$ $endfor$ $if(toc)$ \tableofcontents $endif$ $body$ $for(include-after)$ $include-after$ $endfor$ \end{document} ttfautohint-0.97/doc/img/0000755000175000001440000000000012237367737012361 500000000000000ttfautohint-0.97/doc/img/blue-zones.pdf0000644000175000001440000000426612237364642015057 00000000000000%PDF-1.5 %µí®û 3 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xœ+ä T(ä24P025Ô³01Ò¦z†F¦ ºF& …¢T…p…<.  4TÐ5Ð3@&¦ QCSK …ä\.ýD…ôbý S—|®@ 9g7 endstream endobj 4 0 obj 89 endobj 2 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /XObject << /x5 5 0 R >> >> endobj 6 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 275.123138 261.840759 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /I true /CS /DeviceRGB >> /Resources 2 0 R >> endobj 5 0 obj << /Length 8 0 R /Filter /FlateDecode /Type /XObject /Subtype /Form /BBox [ 10 10 266 252 ] /Group << /Type /Group /S /Transparency /I true /CS /DeviceRGB >> /Resources 7 0 R >> stream xœ…U[Ž1üïSø! ØÇÈ¢Q²ùØ|ds)…û1;;^EóуqCQôŸ­Ò¨<œËóŸ·—òõ{-/7®E˜¼Ž"fÄbå 3‰DyûQ~N·UâñÎßÉCvw¥8#üƒƒ¯¤=ÊïÂi˜Åq/<ŒBqHÖ óiÞŠh¥&~lEœÉŒƒAOÓƒªhÞ?ÕF+¯EZ§ñt°ïܯhÌT¢NUGÑFêq!8L¤`E¨Ë ž&2 Ré§]lP1¯ï dq^ï']Ié´¥*‰õ œ(1B‰k¦ä€'p£  Yáî—(,é×˾pÜ´m×I󩦞|™<™“·ó ‚D[1Ï×´»`{l—ø ñî0º£O\§9.ãúuЉͷ2*9'yÆ”‚[r‘jËður% †ÝQí°;ì0#ÖÊvÜ&% ï~%œPA6TvšI¤{›”îÖ(ºm…A•2ZÍtg€ó ÐÆh”.ÔжŒöhœ!ZƒJèàL¢5)Gi M«D¥Ú“¯ÝЃÈGu¨v <ÐO5N++qŠ’N?‚¤f™·ú‡qº•_æ³äoÎÚ^ Õ9k» úkËV?l¸ 1Y €9ÔÇìäsKÕøÝAÖÙ:6K:,‡P±U¿øP§ûü¨?x¡ÝåÅdc¦>{×öoæÊýmûã=²¬ endstream endobj 8 0 obj 800 endobj 7 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> >> >> endobj 1 0 obj << /Type /Pages /Kids [ 6 0 R ] /Count 1 >> endobj 9 0 obj << /Creator (cairo 1.12.8 (http://cairographics.org)) /Producer (cairo 1.12.8 (http://cairographics.org)) >> endobj 10 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 11 0000000000 65535 f 0000001680 00000 n 0000000202 00000 n 0000000015 00000 n 0000000181 00000 n 0000000530 00000 n 0000000302 00000 n 0000001608 00000 n 0000001586 00000 n 0000001745 00000 n 0000001872 00000 n trailer << /Size 11 /Root 10 0 R /Info 9 0 R >> startxref 1925 %%EOF ttfautohint-0.97/doc/img/afii10108-11px-after-hinting.png0000644000175000001440000006107711762631566017644 00000000000000‰PNG  IHDR^R3% IDATxœìXIÇsgQ@ïì½÷®Ø°wì" ©ô"½w,€T¢XQAÁr§XðÔ+^S¿S‘¦"~ceÝlF|çù?ûL&»“?3“ùåÝ™Vѧ÷"%&~(+988ÈÜ>­Llàãø8ÁÄ>NX»Y ¾„ÕàKdÕ ,i¿@#ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'èvÞGꞨô47&N0±“¦d'˜ØÀÇ uxàÜ 4Öù…:•4%ø8ÁÄ>N¨Ãç¡Íh^~ºœEZR6(67&N0±“¦g'˜ØÀÇ xàß y|•`bŸJš’ |œ`b'y4@ˆQÔÿNêð Å-݆‰Llàã¤)ÙÀÇ &6ðqB87ì¶’bs71'˜ØÀÇ &6ðq‚‰ |œÀn+¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦ðÀÓ &6ðq‚‰ |œ`b'¦%3x¼NøÈb}jZékQk¼-ŽÓý¨ÒLX®2öCÜCæÍdõË»âëîe½ä>±š•Ï´)yYÊdû`2^Öaré‹wÂü‹Ø²œ'5) “á!E'‡ì´ ôM= ¥Ý Õ_ôÝ?%‡¶”4©qøaÒ5˜ØÀÇ Àƒiá¤[;?¶¬¸ƒÔrìûÛ¯™7#yä¾ïÓ¡Ì/«øíŸ%þŸäçÖ8©II˜ i9)ÿ¯Äfhù’CÅÉ ¥Ý /*º)7¾¶á‡I×`b'¦…<Þç½Ó­Ì÷jñÛg%¾³ÊG»•¼cڌؚGiq†mY÷fŸXJ7j•+×ü‰XJÂdxHÅIùë’ ùå}´Kÿ*!)”vƒÔü¢ïŠ òKíÆ—p®qøaÒ5˜ØÀÇ Àƒiá*wŠâ>v˜žbØŒþ[b3¦¼gÕùºÆBi7H/ZöÞ"¢äŸ7EJíÇ•©ùã&]ƒ‰ |œ<˜[u M¯ø”WZ|Ѷ¬GKaI9ï/ý-#3Bž})TTæq±ÆñÒ&Ãf'’í<öÝߥ5J»Aj|Ñ/J‚×l‡¶,Ÿ óî¬y|MNL ¾$ˆ§Llàãø8ÁÄ>NL à§Llàãø8ÁÄ>NL à§Llàãø8ÁÄ>NL‹yx”¦$~3úS›6èˆò²mêf0éLlÐ夯N—Iƒàã‡~iJNL‹ax”&ÿTe¡’%Ã)»F3˜ô &6hqR[§3ß ø8Á¡_š˜€Óú Â?²æ[Zh䊶Ɩÿ{/}¥«‹ÏGš–KÓ–Ù£GI¼{Ñ@YµFf0éLlÐ⤶Ng¾Aðq‚C¿41'Myùe¨^üTženk§ïç²!<(ùp(t¶©ùúÐØçÇŽÓùZäÚoZÔÓX‰p…ìɺ/š ðìtèñ&&Ô§ ¾„ÕàKdö×aˆkyüþ$8ÔeÞ©G¹gç^üóï?^þýÇóËñ΃²î ó´ê݈á¢y„ȼ9•£Öàò¸ ë7 3¿vQÁ¤_0±A8I:BE¯úö‘hçWýú6´d#ê@,E½èõ£„“½z5´Lºø8i⑆-¾Ó^÷ˆ÷ˆØ~ÿ7í ÛÌJxü`ÑswøHs>ËÈnÚ‘[÷§ /ÆH¾{ÅÉ {/–0ºd1&ý‚‰":àqm§½D;gïr <ÒLM$œœ73x4 'fõñwk³®©WC3û_‡Cl§|†GŒŸ‰‚ÏÉSÿú9çäd GîÍi >?P´z_Š% e‚(Ú@fÐq÷’Ũ‹~Ádx|vB?P´Ú³LºàAðEÈ :ž73iD ˜t &6ðqð`V% &|bI\¤‰B~üs:Úiòù?þÎì„zXM«„ }B=-þPVð „̈òXô &Ãã³êð „Ú¹Ñ×ÒBÈI£¯Å¤k0±€Órpp¨œÁÿÜïm1ñ3$~ÉŠäwòôÿî ÈÃÒÉè}‘ÀCVã¯ÑNü<˜V-ðøû·?âùvðYÆsŽýü^rx`2Bh±êðÀ¹Ah†-ó ux ˜À£Ñ•Ð Zú«J(ÂCTƒlá!^ƒláIçÒõ'ÔásƒÐf4/¿ ]Nˆ"-©À#çvÈFCãzááí“$râïßàøƒ.xÐØ/ǽNs¤ÜÙ@ñ‡¬àq(þ–ÈÆáø»2„&#„Fø8¡ü"ˆ<¾ÊJ ò€È'y4@ˆQÔÿNêð@ñ&ððöN´ô -ã˜.'áâàq(þ&&ðÀd„Ðb'ÔásƒÀn+é£тÝVu;¡‘`·US!2÷P»­˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀß Àƒi<¤Nü<˜ÀàAêàðÀßI‡G^~ª„„zZæð4Ó„…O;ããD—ѧ2·]_«â"ˆ câ„:\˜ ÜñTmÔU_ÿ+ÃF¦íïmbC+<Äô¶àÎ8›ÄD4­—=wpÛ»ènA¡Ä9ï3; Lþ[8 þ¶uq2|ø¾á#àQÇ%*xTwÇÅÕÃÊ—*þø¾èMbY‡É¥/+êåç ‰ÂT¿`2<ФSñk(™`yö”¬ávr™zÑ(بˆ]·ú÷ʳÙåòsÏaw*9„·­~ßUÜêd·Çô¿€T^”q2¦kØý§(Ô(y4Ï2bMìA%¾_s‡›Ç•÷²Jƒ­'gVä ø[ϽYR¥_êõB:.xPÀã <¸.Ó{–tÓ)ý«âæ2À㳚áq*!Ý`tI÷9×ã’¾<+xÄEœØ2¼¨Ëôôè¨Ø ô©=ßæƒÊÃ-(ö[/ØÍ‹ªrUXt$Ç-PÁ&çvµV-/ν|¼›óÙCoÞ –äÏ6 ž~ñÙÓÒ×—.Uv¾œý¡â4€GCð`ZJxpõ½&©´ö¹q$o[Àm+àqêHÆÖ¡¥]fæF'Vy–yxÄíKY;°¤ÓäKQÂÂ0Áß•ëö" ¸&yadtØÓã TæâòÂËçã;9žŽ~UZYòþ™ëѨ HÞ›h}ì(Q¿äm+¸mU‡L àAÀìJq»[Ùbýò¿ÒÍÝÊuŽ¿y"\0ßrÌ©ÃãÊÚ¾ïUª‘Cð8³¬×»N“/äø¢kÏ Ö|ýüÖ5cl´±GPkëk7y”¿=wò€¢ãé9„*:{$föÅg¿–¾É¸x´½kf·Êx7®›ÃÁc•<É=¨nwà,˜×!€ÓxðxTå#çØwW¼·ÿIú0¡ƒp«îAé?°U—x¼¬ÒÎýnHÛª[׆]ÚáQ5Îèu%$&êÀç]¹;tÒ[õ^²ÃÅÚ%¾U×_Éf7çÀÉ•íúëËöYB÷ï\>1 Úû߯ծοŠê[tÔ¯ŸÏ²òÄžr¹û(µ#Dòµ¤…LÆ*Àƒi<¸ð%A2'tÞ¶jìµð%AD+ëŽ"~`5Bdî¡àÁ¼R'™ÀãÔy'sHÈq׎™{(x0/€ÀƒÔ À£x½.MLxïå^zâXQñ:÷È£¶/Ï3%€ÓúÆá±gñâßTTtDy€GN¨cãÚNûW}û vFG”—!<ÒLM^ôú9AG”' ½žð1:":å½&Õ’[9å½~,Ó˜õÇAÇòÞ½PImhew!1þÞ—&¿gi{¡Žóoæ%zùŒ63oƒŽ(OžIs­ÏšÇÝëi±ù¢‡(§{‰±Zó—ç™S‡G^~ª„„zZæ²m’‰õRd†ÈdÙ¤ÈÜUÓ>í\›“‹ÇiòÙè(‘¯Qɇ‹ »ôºÁ• |a·>ÉGŠk»ÄÝþ¡’~0:JäkTxx²Ä­ªðð4Wƒþ)éø‘{ýÌNØeôE1¥ ÀpË4þ¯“6!|"mÆÓÓŽ%¦’';"'l &6ØNtõô¨è×N$Úùi§N ­ÙØN9Õè„xнØ5M>ËjR8:¢|•\³<þPUÕm(.T²{¦D¡¸¶®uQÔZ¹2Q¾Ž3y¼Îð@%ÕOC bfa^£LµüÑ_a?#Q¾¶Óèrr5÷š˜²ÂÃövô:R¥Pêjâ‘À+x”¶h!šJ@̈hpÔò2‡¨Çu×WJ{c3–ÛDB½M4–­_¾œLë×Ù¸¾7‘ËŸI\;×u¨IOQUuh(onÝõui>Ä%ÒPWÖHçf,çYBíZÀr\ÆrXͲݲÑeYT‘… ËØ‰Ø˜»vÚ‘Vî¥Ká3"\¶ºš™3¬¸¸ÈNvÜ.3J€ÀƒÑôäsä!Ò“N0ùȉ 6‘ÇÓÏŸ÷EzÚ¹³LàQÝÉ“†GÙ–‰jŽ<H#òà XúF¶ñ¶!mlZk¼v•éªÅ‹-'ÎwÒœî:}¬ûØ!^CzûôV PiܺYh3%ߎÃLFŽ6™¡¯ÉhZ† ¿ xáè£A‹ƒm¹vµ1ÀÚØ(rÅò”™3"W¬°61n<®FDE([ÇíÊÈf˜€£ÉWCCb*ñ™=“Yl:à8¾D;ÌŸ/xÌ+áÄÞ<9fˆçkLɇ‹ž+*FÍÖM÷ѳž+)ñõõê&Á ñ|bsHܶbsÖÿ¶•`w´ú‘Õ; ç8Ïc=s"{J•!-T¼ºL6š¬·Hoçô~þžë½ÐÙ¢«ü´µ_*)å÷ìyyôht|©¬ŒJ«¡aamlâœdA€ÀCü@Ÿ=K[´@GßÙ³Q &³6&6ØtÀƒàŠ6P;£c#ÈA<~ˆz< ‚(YOØ/N ”G%µÕ€œ¸h­A´@ñGú°a(æ@yTRG0±|EZ <*©ã|ÄO…ÏoŽìšÈQ<¦ÅНs ¼ÃÔ8 Ó­¶[íZ4Þm|?×þоŠ<;L3˜¶iÃ&ãõÆz戇.]…ò/”•ëTÂ#ëÌÈ*_h³aöÎÀà!ã„ɬ‰ 6Mð .ºàA=!'hîFqÆî ŽMš„ŽuÄÒS æõ‘¾þr›3Ígõsè×Ú¿å83…ezËv蘚˜'<êÑ#rÅŠ†¯yÈL€‡Œ&³6&6Øj‰€‡ÌEâ:¦1-dîàEœEƒlµ ’kåÓû§ù{5†&Ïœðx<ê›0™µ1±ÁxTKM‘+–?êكȳ-&9¬éì>¶‹{‹Ö¾mÝ&Ž°Ý²ÅÌÒàðxÔ0™µ1±ÁxTKMÖÆF/••Å×</XðBYy‹¥Î@gÖ~ªß+4w«f·yž™½¾¹•øµÓbC,‹fðh·ôÐ5瀇Ì&6Øj©éÁÉw«6¢Š?.ý¨G”G%¢gõmvLtÖPöSoܦ…ë”¶–‚áÆ.KLí9æ–_HÌFÌ È!Ê<Ù$Ll°ÕR“„‡0þ01Þ¿rEÊÌèXÛ>+]½ÉnSÚ*+tê°ka+c#Ï-ÛR3‚×§Ê€‡ì&³6&6Øj©©Â£þ2µ0Û`¿a× V!­zyŸ¹cÎñVn¸ Y‘àð}ÂdÖÆÄàQ-÷Wv&Í[³'LfmLl°ÕÀ£žð tìÒ‰).S~ØõC´£]‰ªêë±cÿZ«…Ž%jª?ˆ!CÂÕØøC#­üY|¿Ö¶‘›N\¹ ðx<êN˜Ø`<ª%€GƒàAÈ#й‹{3CöÔŒ«™DÉ#G‡u5’ø#;uMðqÿô«×®DÇÇu²ˆ ÊxÐñ·ó>âìÜBLàáéyxøù£eʦ^ ]N(ÎûÞ>gp€‡·÷iLàúx‡¤3^&›d7yÀ·ą¯ÇŒ~àã…2çÒþªûòÌ뙎Pµ?y]Šð eF•ÒÜN3qàðøzà±~Ö}ë“P]²|žµu5ó+ ‘ºïÑezÊfôõjOtÂC{îÃÊöì¬-ñìv«iê…-U«•K [¦z ð=2SÒNõÔÜõz¥zæŸQ‘C…oºL\·Ý›Å÷kÅÝ9^O›ðIÝÍz=x>,¾¿ÏnY}gyÎZŽƒ*ÏWXo×dÇ@XÈÞÈÝ©Â~ÇwÄåë uÙœa\^3>ŸÅçõæp¶ /çhµÜ®¸ IDATòÐÃ/êÅfnä:Ëñ]¬*àan±ÕÔY] ¬ª¥À}¼™•É× $Á)ãNaÝ;Úº[k¦ˆÿ;[”]sàðÀ"„´¬ VL3C|Ê–Í WKôG!-%áÁ[2üi§I½û1- Rûó]³y‡ö†Ó{¿’ïíµEXêÕWáe¿9æ›uØŸ÷_¢¿Ý`¡sKžíRá5œ‘\ïn¼È„¢•\—Ž\ÝzÁÃtÏn‡§Ëæ-㺴âÛ¯ª(ìÍóÄáogs6pw¶å9-.áòÆp8Ú†ìÍln7>»J=úln{>o‰.Ç^…·s,w—  »Ñ&»V›Y[Xn1uiÃwÕ2ÿZᤛ¬÷cdMÈóòYûœ/ä¨ç¿Fx<•S¶l^¸Zbúëgæ´ï­µ>B­'S‘GeÒÕÙd7«ß¿ÊÃvmݾ]{é…vÊI+uPùŽ•£þl7ÈE{û6]Þ®yÂSTùγtu+n[Y¨òV5ðF“Dz ßy‘0o4’çYöFÎN%¾ý‰“9³xüžœ*…+¹¼¶l.¢ŽÓ Oƒël™På¶•©…¥Ž©«²Àió× $ÍøÓÍÐ18Šøáµæl=Éðx`ïXåÂ{,Í_ª‹Ø´ƒá)›É—«#Iz[—'u휺h‹Þ¶•§:ª1Ís÷К©_®]Q2÷®\—=+žÝ8+_N-`³ÞR·Ölã Â"ÎpžwwNTBñ*ŽK ¾ó‚†Áƒ³Šã®À5×®x¨Ç±Q!~uƒï6ŽÃ©z¦.›Ó‘ÏW'ý¸¼9ãxnÃ9\¶Ñ(ž‹<ìÕ+«òœbnÁ09h‡GFΕÁ±Ct’¶íZ~*‡•¶òB=/x<°Ge2è¬ Þ±¸ãDGññ­ÀCwchߎ·§j üÖ…7º3yèmÑò©ò¶ÃX[àá²m—Ï~¶®.qò&}ëîÂÕ‹Pî.E¾ó†c-×Yï8'áCþDž—×x+›»ŠëÚšg½þË™zln ›m v¹›§²€çòCåêˆI¯*ð@23±°^mì)/pÔùÊát*ûlûÎvœOõÍÌl~"€ÇW aâèÌ~,§Êà-¬o_–ÐEª¾–.Ex ¤»qæ#9Հͷ­Fÿ®8~ŠÃ¬Ïä%äD‡ã$ϳ]Wÿ˜ƒë"ÏsœËa#ÌÔø®s*AbÞ 1âÌílnw¯‡³£j \Þ´î•á…HG—UÄMÍíUî+ê1ÝëšºË Ü—+–Ü{T,¹Ë \gšY˜Êˆ»ûDµ U:vüĵÖ9`Íàñ•ƒ«»1dTçâ㜠òÂm+òriÀcË“ç;mÐÞ±EËgdçÂöcì„Ȩ\07Û¼a×¥?n^Tˆ5ѱyýx>j\ÞŽz‘ƒ»ŒãÖŠ/FŽŠ5Ó)¢Ó¾åa×,¯<z%Ll°ÕÒ× s˥ƞ½M­Œ+nvõT…‡påýÀeYÃ÷kIH.©n=öô¼Ú#ëê5€ÀàQ„‰ 6À£ZBNúz{45Mš´{&__ïë€Ç—½"y,ûLŽM&î­®‹µÓWªð@š~x†Ž®N¶3Iððx0š|54žtìXÚ¢:¢<À£z¢óç?íÔ µ3:¢¼ á0w®È Ê‹?e=a?{±«è!Ê£’ê5¤ûÞz¡¨ø@M-}Ø0t|®¨èªµFbf·Å[î!zˆò¨¤6 °9 x¼Î|~ tDy‰g—¯ÚºÖEôåQIãn[U‰à39,,×{´¸.iìwD¤ 䬓ʡÊ'¼šðxà? ª›DYˆ˜ÌÚ˜Ø`Ó yó$Ú¹ü sçJ8ç¢Eš|Áñ¼x2ÔÖ.ìÒ+j¶†h6GùçJJñ¢ºœà‡x¾Fr𫬓³$øh¡¨_Éñ¼8<¬"W,O™9#rÅ kãÂC""ñÔÄcÁ\\æ§-‡ÛÏòx<ð€ÇÓŽ%¦`2kcbƒM<~íÔI¢Ñ§~™À£F'â'̰š^#9P ž=ûÅЙx¨ªº{¦D!Á ë)uCxš0æ¨T"qÁŒ•+E䇇Ÿ¶öK%¥üž=/Ž/••Q … »ÈãjÅΫþAý]Wº<XÀ£´E bAf@̈hpÔò2‡¨Ç÷L©Ôî)-­¦XUט­º,‡ÕÕ5[{Øêu}‰üü-[‰“½¦Œu›2«ÆzꨊÐt‡æ³XâšcÛÒv’­Û(7$¿!~¡ýCcÔc¶ÌþÎÔ¶Àî£&†³Œ·{º#°4B1"Ç¡… ES9Ê¿PV®_üñÕÀ)4mOW÷®—¯<²‡Ç“Ï‘‡hR{Ò©&ù1±Á¦#òxúù󾨟vî,xTwò¤¡‘Çœ9χΪ)ò\« y¨° ¶ñ¶!mlÞ`´a±®¡‚±`’ÞŽVÖë{ØÎîà:RΫo³€n¬–í=•´䤹Àv+ßÒ„˜Íõè¹bEƒÒ,ŸY;vìøFá‘—_†ê!¡ž–¹‡,›‰©$Ëî”Ì]5=áÓÎu; ±xœ&ŸŽyq%.*ìÚû?ZTrƒYØ­Oò‘bñÓêS¡ðð xDDTiwû‡JúÁè(‘G ;ò*XG‡¯3¶«ÿü–=Zµo5E`â™=Wûî/Q þKsÅ_åýçÊ|T4B{ý¢è£˜¦~WÛ+Ûê„D›7bJAAæT}­BäQGäÁåq™×žÅ‹í¢‚Ì ãî%‹Q &ý‚‰ ÂIÒ銺¶ÓþU¿¾¨Ñ1ÛÑ¡5 Qb©+ÍÔäE¯^È :ž73Ê{á £#¢‡(ï½0©z é~·Ëûô.›5óS6sÊ—ÜΕh´º×ÓbóEQ>N÷ºø w¥žNs!ò7ó½|Ƙ™·AÇ›÷NHTeew!1þޗgi{è—[÷î< (?e2s²Ýw{ÎߥÙÞ»ù0«'ÅõÔ­ôŸzg"z¡#:G<ß@ýœr,FÑ,Úï§Š‡?¥®\`²L`(JvÓÒÒÙ(o¸º“hŸ*=ÛÄ#i¿@#ôÃ2#ÊcÒ/˜Ø(¢ „P;7úZºàA9iôµÂ®)~Sštü½—;:¢|C›‘Ãʺ#:Rì4‰ÿt3§T]ý77Ñ,ÿ›‹Sáê{C´üÖ*(MLö›ãwnZvF«kaë/6–w.§'v‰×<äÿ“X9BˆCð0Òס¨¤9]Ñ[‘«ÃE%ѳg?WRèë^jà!E<¤NM·jú‚ážPKe?eG­]Q‹.‰ïÑBù½ëÒ±‚J==hc·zǼ%ùS%÷†Å×Á€%<¤NM·jú‚áñœ¤îAÝ ±¯´¸~Гü±dM+ÍÞêx†Õ·ê"XÖEŽ"€E<¤NM5*õö…Þ½µ7nÏþ>'jù¥ºK†ðØÁÙÑ2¸eg#ÛÙK€Óxƒ¿TØ|!<»æñMD„£¨ÿÔáâLàáí„ý¯ì-zêÛÝmE‹R'oâ?Þžvë’¢ŸbÖ*ÑšG-ð`²ÍFTlÕ•ã9,’æV]"¡>½ü< àÁœR'o·ªþx»‰n·mÚ<þ²ÛJÚ`¨OB} ð`N€©€Àã–Ø·ß vW VJž–LüÏ(|à±-CàÁœR'€‡„¶Ô]ÃYsÓò6Vð˜–<àÁœR'€‡„ÎÞNkÐîb‡Œ[§&àÁ_îi;)J¶ðPSx0'€ÀƒÔ ÀàQ]cƒ¦™M³ºüCNâ±—Ñks¾;_ÀUª¨~v¡6·b67Y5é'ÅfŸXß½Vã·Íx´Ú×*«yVýÛàAI€©€À£º|/ yíûœø!ç³›eÎqáéë¸Îî÷J¾¯¿›½cí)e¹‡“WYênõœ¬þÇÆÒ‡GŸC}ã»Æ×¿ ”ðx:x<ªëÚÝíÂÚjÏaåÚLÙ¦oÎŽmNsõoC€%<¤N59h®`–ùÚiGÒä®üÄõ‰ÅúÔ¬K’V%vhU’{0eµ…žŽÇµÒæê¡Rý–`<¶^Úf9Õ²þmð $€ÀƒÔ ÀàQ]½3-¦ØšÉâûñ—{¦Ég-rÓåm§‰»„?teh¶|ì}…ï>±Z=í×÷E«ž!Ò‡‡Åuk½zõoC€%<¤NêÚ».=Ø'Q1\‰Å÷eÞmÅÑ™ó‹œda¶ðÇ‚öã+ˆ"]xxÞñY³fMýÛàAI€©€À£6©Fª²ÏŒÒpߪÏÓÝ8¶KQ‡ñN_8±Ã\kÖõ¶rfnæJ—BxDý§±]£þmð $€ÀƒÔ ÀàQ›fÕ`Ù®sŸÖïYKÖ'V³×]Å®×þŽ•®f>‹%\iÕáÖÄfRß©+„ÇÉggÆÆÔ¿ ”ðx:xý{ÁÔž­Ê4f•÷îUr+‡´ ”ðx:xe3gï_ÕÙ†_<òòËP½ $ÔÓ2÷€§™&,|Ú'_¯>ȵ!˜¡ìS T"'wµ½~YÄ'úTÔ³¨•×}!‚‡Ì›±ž‚È"Y~xi´ˆ<ðŒ<üú‹ U2l(š} äXmD‘‡ŠŠL"=šš>G¬ÐæDû#¤ãu·á×yHû!€ÀƒÔ ÀàQ]Ï"ö!`üÓŽ¥âQ E‹d#}ýçŸ×µÌ±a9Í+*›–ž<ÈÊÅGŠ?\Rk<( àð uðxÔ¨û¿>RS¸(QÖà&Ô§Û3ôX;W>ÈNh¿óTè³7ÿ•“´!Àƒ’R'€G:w/­kd·\VîZ®Cwž/ú¤ß’ç2ŠÃ7NæœMÜ]øÂÂïønƒ¹‚d³?ux,8³e»ÕÁm…õhC€%<¤Nå~Õk~¢&‚Ç0žÍ6w›§ÅÝ¥ÀÛµT8™›õæy âtÙÜ\Ƕ<§¥Ò‡ÇÀ#ƒXæfó,#ÖÄTâû5wH°y\ð¶ö6xPÀàAêàð¨QkN®µºdƒàñyç®ç8*òí×óÆ£xžƒ…ðàlâìTâÛkI­ÃZ³ŒÜg›O¿øìiéëK*;_ÎþPk<( àð uðxÔ¨Ñ=NÜIƒcÞ_±@ÍsÏá³¹>ÇV…(ä)”*Lây©quؼU\WžÍéÃcBâD³Gbf_|ök雌‹GÛ»fæ@ä!%<¤Nê²¼h½*e5ʈݶBÉ¢+ße!‡bu¾ëÜυ݈B)ÃcÝ… …OÌ‚ö~Ç÷kµë„óo…u¬œ<( àð uðxT×ЃÃ"nDð͵\Íæì`ó—|‰<ŒGò¼Õ…‘w ×EŽÇÄš‡Ëm7ú·!Àƒ’R'€Gµ{Vi÷wº÷4Ÿ€ÇjŽc‡Šå žã¬ÏËÛ8vêcç¬c¢‡ÔáœP¬AÓ`êSÄ tLkޤm(º"iŒÚŒæå—¡Ë Q¤%xäÜ.ÙhhüA/<¼}’DNüýÐû…âø£×IãcŽ”û"(þ<ÅßÙ8W†ð ·_ÌkÿÙ¸œÕ°øãç'÷ºFvÿéXø¦Œ„Àë"xð—{ÚNŠjè¤ïåuBä„Jü1Üi¸­³×N;ROr‰ÁƒÆ~¡øæ­Í Dy|••@䑇HV—lf›‰2ˆiòÙèˆàÈ‘&Ÿ…Ž›ú©Gü:¡>=¢“ÃÊ=ÈΩg~‹‘!Ä(ê'ux øxx{'áZú…–qL—Šð@ñð8xÐÕ/á‘yýeC/¹š½}DûSy爇?<¨ƒ]P!ÇvÞö–Á-QŸf6¿ž:<·‘ýBË›·ºØm%]x4Z°Ûªn'á!ì¶¢·_(£Zž¼Rû¬Žèá½§ì—ŸFöm¦ì§2ûSLšVš=ú£>ÍQ¸ñæïâF¯yàüæx]M™D x0-€ÀƒÔ Àã›…‡ÓW•ý]æí݃È‘‘Uã92„‡_§Up«‹m.šn5x0-€ÀƒÔI“„ljsþîÐì‹õ®ÓÀ=+v6çûÉñõf±> 5à¨ÇžfþŸ‰µ Y·7&ò€Gþý;Ïöí~nmù,lÏÃwTü Iû°.íí7G¸õèamÊÓí¦7ÂvÅ#6´ ”ðx:i’ð¸7sí9ß}1þ;V{Ýnâ©°è]¡Ê&¡{·îog½—³'&ÚÊ;¸µù‡Ø&§§’ß÷P/š<é¿­[Ðñ]ÏÛ£¢Võ IDATWʇªôpq?œ•S÷µ2„G7¯nÞ#¼QØðR'M•ùè݉œiÝ&EF»†ªXìq܇à1àBX噑‘aêÆjfÂÿK!g²0$:uMyaNNÚT‡TØÆé˜IÞë7¨­j,¬TÉݬãÊ Gˆÿ§-qæÝgo£ ?ª6GAOR—%( Š?ŒÎüøo‰×Êí‰`hZékÉ~©$ŸNkSB9Äé¥çå¡Âü̱•ÿZ¼B¦‡£ïÜAäøËÇ‹¸êÖã;S<ްj¡uçq>é«È ë×+ù(íQùýD€ÓxQ‹¬à1ÞnüºÕ눰à!<¤Nš&<„™˜˜ßÔå}J{®9mêÜÖj¯›(òˆ‹uñ Q¶ØÍ‹ªAâ*CŸc_º¦°¬àæÍ³½\/]ýð¾¶Â7¯î®pO ~ñ߾݉‡Kª´m•3Kò§™í?³¥| I :íÝ÷ƒ:—%ýSG¿Ôÿ®Ôý'÷Ož;ÖÃ1ùøc±ò_r6Úí]Ÿýð¹µå[µóž<4ò1i¨¸à€É½§P *džlÃö^íg:‹JL àð uÒtáQ¡Ý†ÿ¶šÞ×$ÄhO<öÅ8x·C1GdlTLDâOEhRÙ5%ùS‰B“C~þbsµÂÂÒ?mp½}ûáoS¯ã_à!qæë„DÔ¼§ÕzŸžÁéÑOË”,Û8¶ªj¼Ï¤H}á!ºIe%È­²è{ù¨ÊΓIy¶o÷¥Cûºõ›h5ñÜÙÊñ„b‘ga{qƒ‡‘¾þMÍc“&q7l1Pv™Å”øÌ(ïc^R*Ù/õ<òÝ ?¥ì|æÔQá½ ÀÐÇ~ÊúåæúÝZ]Ý›ik=ø¥òÙ¿½=ÞýГØs…<Ü´´^(*>PSK6l¢©BäxETð™R'M)Ú“ÿ“Gö›ôœl¼Åã;¾¿’鎕[u õ^²ƒXUÚNܹªMlªtMáÛ¼‰ÖÇ$îG…ÿ}/¾(^òΕÄåÏc>v˜SòçÝ æ¿ôŸQúâ°ðEìdzµ`.vçêþ¥Q–q{ò+ÞË»8ÚzÏì$¾r ò Ý·¼â-Š&Mî¶š8埞N©gÍÌÀňѳg£¼¶¡vG÷ޱӿ?WRèëŸ×Î=-_wh™ÏÕâ·Ï„‘Ç›ÆD®ëÇ^L¸÷ðΣŸ#E*:9YyäþrK;vE‹`圅ÉkSîßy„ Qœñ,loÅ÷<öÖ3æ`{55ªªùé¼é+¶®@T²gÁ€‡lðx:ù¦áq f§_¨š1 ü•lvo =^±U÷Ê•Sƒ-Pa`W¿s»ÿ).üô¾æB‘Äá!qæ_ÿ¯ÿØÅ:Íþì:A{“w7âògßOï"Œ~\øþÚ‹êýB>³?}ßO¸Ï8 ³û1—›OæÛzv[ûåñVÓcû¿p¯Aá‹ áqlÒ¤ Æ¡ÌZþ6y¶®°• r€‡lðx:ù¶á!)Lº¦A·­n?¹ëqÕ{Ì‘±öwÞ~L/E#åÖ¸Û÷¯’‡xìÑÔ|PytvßÑy"Qˆ"ÝyÈJ€©“¦4S“½~DNwYˆòD¡Ñ‘€ùñŒ9ë×]06ŠŒhð¸õøNàµ)«”•¦%LGùÛ?ßèpãg‹¼OhÀ“ð0Ò×®¨è»hÚwÁ «øz¨$FCÖlŠ99\¿ÝVyùe¨^êi™{ÀÓL–ÌÛùUïÑ"x r ~ÜW\”¿øFIý?ZtÊ?Ràî1¾/* ±xì¿87Ý÷Va—^χi<^ÄCÇ®½Q‰ÿÒ\ôlãÎ<1ÎïUŸ1äÚ c–MJ£ÿ®„Ä÷ñÙÛøO‰\«²ï…@ű^KM>pü5ñBû'çfwþùâ¼ßNþ(óaÐ(•øE+º]ý>X!Ú,ø®¶W¶uRò‘bñs1ºÐ@õßUo«Ò¦S#‘D¤N.e]¡E¨}-²!0PTi‹|¾ãü­V[×ø¢2Yãkbjb¶Ê/³ùõËòW½Wx£‡ÒjË×®JWWSWZ‡¶ß3]5`qmç4ñÈÃÙàð uÒdàñ[bš.ÿŽõ«Â°¤ÎQqƒVúŸ·}m¯q¦ãÔw©7nÑ, £‚w?Mîë6N´šì°aµEhßý›´MÜ´fe ì¶ÃdÇ‘ãÅ¢yü¡ªêÞ… fØLÙO°aß‚¨\bƯ~æïʪ"l¼oÆú¯5ëçž¶ko2Ù¼Ádã3­å+æÙÌŸæ0}ì®qC]†ööèÓݧ{ÛÀ¶ÍB›)û+Û¿dŒÛ˜9»æhÙjñÌx’sz?<ƺö}NR·s6†6R"3ð8“«´Ëåû`eß”\f€ÀƒÔI“Ǿ¥K‰Éš¸g…Ž{—-‹˜´õ¿ïGA†¡1o±…Î(Û•ü•í‡Z üÑbòhÁèVzÛöVwRìêÖºO»V­ÐB¯š‡°”}XJ>,V 2+°+ 3ËOåÓ‹å9Œå:™å4—µsËnËŠÍ2µañ}X’ß=¬Ak§ÉaåFôM61‘6˜‚G†‹WP‹þj^:uœð`Z€©“&‚¿uéòG3íûíçî]¶•˜qØ/Út<ÖO_tιsŸ++™WD ¶Ó£Ð¡%|Éâ|uuô¬è¶OìY´H"ò@ÆC5µê‘‡Ä™¿)«IܶúUE¥>·­!uÍ鑇]…yâþÕ× K“zîÚÖ<°‡çñ“Œf€ÀƒÔIS‚GòܸѱáÒÈùjj(ï1Û–`Fk1³g×¶æÊÅ×3v Š6J[´@Ç‘£nx8L©B‹5¾Sc¿Vxd¥õòÝÊkžÝ‘äºÏx0-€ÀƒÔÉ·ú3&Û:éøäÉ{-220¨crGÏ¢sêsfãDrÛŠAInç<:‡uïfp1;à×ìðx:xˆK|ÍC†úà‘’yºSx§Á>&q‰¤'<˜ÀàAêàð`×2'˜¸à VGËóW¯<°›R'€“ð]“årÌ3x¶_$——º:àÝìðx:x<˜„"GhßÈv!JÁgNÒŠJ“ÏF%ìf€ÀƒÔ ÀàÁ$<¯$·é¼s¬»É‚¤4ù¬úà!<¤NÆàq>ëÂÀ˜AzIúG&]Êaåúk«ç…¦ðx:x<˜GƵLóçš{fbæõïr"\¨ç=+€‡ ðx:x<˜ÇºãëF Jëu9»YN¬ˆ°æQðxÈvü5Ú ÀàÁ<¶Ðíµ§WZ´ƒ/G9¡…pýv[a8;<¤NiÛÂW T=§vîªovãjx0-€ÀƒÔ Àà!Ux'švñí’2òä•cY®àÁ´R'4ÂãUå/ÈŽ¸›ú¹üê¹\û•¯Tš£ò2Õq¿{'f<¾%xèÆè«º©&®8†•z Ðí¼Ô=Q‡Gvn!&ððHÅ´ô -ã.'™q&õY•È#ÕõU1x¤<[bøóѳ—/&ß°ŸSª<û§ RG``&ðð÷OÅAA†ÇÕKîyº?árò¼<23Ò3®e® Z×Ç¡Ïq>Õ»^´Àƒ–÷ -oÞêNh†-ó ux ˜À£Ñ•Ð Zú«J(ÂCTCÍð)ãTήÅ?¬¿qI*ð +v¡Zbêð +vù ÌÃG ²þÃï-–I¿Pur¿U¢ÚýÕØ1j­FÇ×=º/²Ÿ4ÄzÈ™}çhY5¡º"iÌ!´ÍË/C—¢HK*ðȹ] ²ÑÐøƒ^xxû$‰œ u²‚ýBqüÑë¤ÑØ8{þW‘3©Ô TBÜÎj9øiôùÚÔèéÞ×7Ed# ð¼ ááåýe úQ‹?¨Lý~þ'E6¨Ç•Sæ™æ!‹ÒÏd]>”§bí—Y%æ@äxè`G¾É˜ÀÅ8ÀÃÏï$­·­®ž?st ‘ð¶Ë(lûÙ*?¢þ„ËùSk Ê,Šá´ TtòpFyT‚ÊQæ\Úo8Àƒ–÷ -oÞêN`·•táÑhÁn«ºP„‡Hµ,˜ý¶ÉææÉ´ËiGÖô¡—n‘‡µ*¿bzâ»-MèãM‚]ê|_T.Çwž&0æÓ éÁƒa·Û*ë‚Á®à1Ñ©I™—öEGtpL8 yxº?8Bu÷¸ª®)D!ŠEˆÈƒÁn+¦ðx:¡Ÿ·êŠmؽzö¦É¼Bô°Å»!‹¬ÏšBˆ<Œ,‡ v.˜°LW ÜZñ×<˜‡Ç•ScÍÃvfçñŒŒ”aæîW¾ÌìnIÞªnÍ&Ø Nº\ùÕñ‡v6Åjj™ézYÅpvxÃCá#ñÕ½ƒw0ϯ«š}@¬_>þ[âµòc{â©i¥¯™ëL†Gð¸ëåAt(jg"Ó~Ô ãÕ|÷VŒ£*<,»ÞúµàË´^caÒ[˜ÿyøíÕûRÎÛ¶4µ«<*ÛuTðvNýàaÌ5ÙÙ[àËâû¶8®1aç²Òv$(†)MŒ^¨då.ˆ9Î 6ªÂ£ð¬ù–¹%¸$!€ÏâWjZeág<(©=¾ÅvóØtdï 1NÔXHwäñd©¢<¾ÈÐe|û×ý—™1y tµ‡Gqq¸FyµïnþYTÎt¿`2<Šè€GÁ€þð@ñGcá!Úª+¾aW¢Ð}®€ÉÈÑ¢:'j,$CH+qxè ló¿A íô´÷jûjà “zÁÃr‚ÀGÝØr‡©Ùzc·ÎFÖ\)“ÃajLˆÅã3WS·ŸÐS S0Souh'«“õý÷±´ÂãÝOL½|t“£ÖÝÁÃR’"<( Áã÷'Á¡.óN=Ê=8Wĉ ™ƒ‡áš‹íÚe¬1`ô¶•<ÞÝy?¨sYÒ?2éL†Gð(“—'˜q©ëqG¡u—K¿šA!ò¥‚‡ÁšKŠN­7Dyþúq)ó2¨ð°'ðéali`b¶ÁÈ­ßm¹Ôî\­³]×ß«¿\ˆÜTÏõ1j ^«Ï rè$¤ge2OÉcŽ>ú·ðÃã^ó¾ÀÈ%Þ³j½3˜›ý²@|l<(èãïÖf]S¯þ&ÆáÛ)BN<¿}!bˆd!“ðànß÷cë?¦l0BŽÚá‘X&ߦÌ'³¸àŸå}ÌKJ™ë,†Çg'áqÇÛãS•ï²îøx8žìà¼s¡Å"w•.]Ù/rðßyâ|2Àƒæ;?ÕïBZ´è ä9PÝeòp‡s¬µ¶˜mçñE1¢Eܼy" üse¥FÄM û4'˜®îÕÕuBK?õ–A­†XY©»2jʈ”)3ë_ Àƒ7/Àà!Ëñ×h'2'G¤³p1¶Ž5¶‘Ñ#Ó™æúíVuušÕÖ}T ŸXAŠ¬ÐæÍ:·ñ0ʼŸÅ²“mÖ¬4߯1®$J¾šZØ’ÅßÌÄwÃáêÆc15+#HaˆºwÒðÃíÙÁ ë' A4d2Ci:>5ÞQæ ÿG™ à›."Z,ñÄõµ¤=®8fÄ;¬bcÅõÄ·ÂÛG1a^ÂÛ¬Âu¬xtòhÛ_Õ^ nW=‚hÈ@íÕP‘¦ãSãe÷϶ l”©ðÐU‡#ìN78ƒ#08ƒ#Qßó]*<˜ƒ#08ƒ#Qá!»Tx0%Gap$G¢ÂCv©ð`J ŽÂàH ŽD…‡ìRáÁ”@ „Á‘@‰ ٥ƒ)08ƒ#08²K…Sap$Gap$*y6“ñïÌîìŸß¾™ÙÐÞÿû'7²ósyßJU5“¨Fº â¨!Þ<”ÕoÊjcÝÇà þ+ÁÆ«ƒL.ÕoÊjˆ7e5‘ŒÆûÆÎÎŽÄv¤¥ýK¢邊£†xóPVC¼y(«ÑØ4xA²@ ;˜\ª!Þ<”ÕoÊj"9)ùWC¼y(«!Þ<”Õ0HQë|¡¬†xóPVC¼y(«aÂjTjÊjˆ7e5 RÔ:_(«!Þ<”ÕoÊj¤°•š‡²âÍCY ƒµÎÊjˆ7e5Ä›‡²)¬F¥æ¡¬†xóPVkhCo3f¶¤Õoßk=kPˆA «Q·y(«!Þ<”ÕDr0q@ r*;d¯à'ÆÃ¢¬†>tŠsèøßϽþÃÿ¾Ù¡ö:\Ê …ÇRsw:|è¨~èDr0q@ ²¹äVƒ¬‰²>tè”;+‡Ò†êêH¤ðXB䘠ÜY|èQ“U5‘L4ª¹õü3"„bÐæŠ¤&Te5|èð¡S´C'Ô†¾©ÅDI ¤ðX’Ngñ¡Ã‡Žê‡N$Ã)é©áC‡Î1A¹³òqèpFJ¼š(«áC‡Î1A¹³òqèš1#E1› ©)ˆ²>tøÐ)Ρƒ´¡:5©ƒKÍÝY|èð¡£ú¡ÉÁðª=ùWC¼y(«!Þ<”Õ mˆ(”2HÉä€ ~¾PVC¼y(«!Þ<”ÕDr0 Rò¯†xóPVC¼y(«5²¡{Öê4ž­£ÅÃo…¤°u›‡²âÍCYM$à %ÿjˆ7e5Ä›‡²~ 'µÎÊjˆ7e5Ä›‡²~ 'V£RóPVC¼y(«a¢ÖùBY ñ桬†xóPVà …Õ¨Ô<”ÕoÊj¤¨u¾PVC¼y(«!Þ<”Õ0Ha5*5e5Ä›‡²)j/”ÕoÊjˆ7e5 RXJÍCY ñ桬†AŠZç e5Ä›‡²âÍCY ƒV£RóPVC¼y(«a¢ÖùBY ñ桬†xóPVà …Õ¨Ô<”ÕoÊj¤¨u¾PVC¼y(«!Þ<”Õ0Ha5*5e5Ä›‡²)j/”ÕoÊjˆ7e5Ñ@*íëoøáÀYAØdH²É¼§8pà¿ÉÁpF QµG??#1€àõ»·È  öâ÷_È ”OúãY5œ‘¢ÖùBY ñ桬†xóPVÃ_íɃ)NúãY5 RÔ:_(«!Þ<”ÕoÊj¤äA ƒ 'ýq‚¬)j/”ÕoÊjˆ7e5 Rò †A …þ8AV ƒµÎÊjˆ7e5Ä›‡²)yPà …‰@œ «†AŠZç e5Ä›‡²âÍCYMrú­6w¨¡¡ZÔÝ7uoÿ~|õÔ+š¡aK[ÆÞ’ŸßʤWˆô†jŸ_qñ£‚Úvï·üݧì„xMãú\/TnRMÚ u3çeÚ¿4joŽ]& oœ¶úH# ëã“_ºÙ$H½¹oáDt™³¹æÕ—Âß^;•5ÜŠÊ¿·Š^wòÞýß0H)„šLA ;˜\©!Þ<”ÕoÊj’‚Ô¯OlÝÍ5¬k6ôûËÀ˜dÆÕŸ_¾ywél¤† óôoô ñƒÎ_íÏ'{B¾Ô?¿§Å·ó+Î|ýþwaj²ÉH]Kù¥»¤xâZ­™öçéŒ[w„e¤~¹½Ó.˜ RÏŸWM3 ÚPúàÎ//JK²4MâCŸcR5‚v09SC¼y(«!Þ<”Õ$©Oež=B/¦&9uùr?Çon,·t±¾û— z…øA‡©·¿_baóü5´@êzúÏ=Õ‹¼$ü«½ÿ‚Ô‹×7uíCHÕþòâBÉñvÙY¯1H)„šÌ@ ;˜Ü©!Þ<”ÕoÊj’€”ÕìÑ®Çr^ºx¬± }¾q’©åUPý›,z…øA‡©Ÿv·JÚÓÖÐfµ¶øùËšTC ¤n&®ù«Ë†û5s¤€Ôï¯oVç 0ªÿÊÏ(B¿úÙ3]¹Ö•X_Üù¯ó¿~)¼ëý7ïºãf}|õ©IµÿvùK>T”挴®_wl»©äÅ«Fó1¤=œþzü‡Ï†_ÛµügêÞµo‰îÿ©Ý¨ûR'ͧVßÍ¿ÕêºùÇ ý_ºÉSø­ïÍs"Dr0á õ룃GxoòLwF%×ýJŸP¬Úˆš[ŸÓ¾þæ $ DLí] ‡QMÖÇ¡dæÕ:Á¤¸sm9u%V±[/¼ü¹i5Á`TVõ;·y0y)Á U\ ¸ç·’Q-xžt0ùQõ×Ç"ôW}ç_Ò¹øQÔ‹Ø@ž.¥X'ÿ[Vù¶øÔñ_°áôý¢Ï‘é\(ö¨CèÐ µ!^µf)ì`â«ñÜ Ö þaë¬d[Â.ý(tݱl]bÙ«nÝD}¼ÿÃ}è? â?ü-LíÏ'›mBŠú‹¬¬¸5Ó,xKõÏÏÿzw¹*GË49ö]óvV¨Úµ<æý…ç8o2£ªÎ×øw2çg?”üÕ»›H …â¨#âfà_û÷ ݬ˜¢ñy`HÍ•¿‰Âµ/ß¿ºôiíû.Sçœø~N ÇD6)˜yT‚3R=Ü麵úç½»R•ÛË¡ ðSóvV¤jò–ÿ£mýÇǯ境TsòÔ@dÙ­üO7ë£aßQÌH b$6R Re5‘ •UýN"H_xE"HU\ù@.H‘6ê¾Þèð¹§׆Pu<·nO|í¦d÷s"5Ò†5)ƒv0XµF뎵Ìa×ËæÐ5RÎnÿ§Çî?ÞA¨}íò×¶}z|ëÔ /뎣Üúým3wVµO7>ÍÖúÛµú[¹<97>Ýx:é¿Ý¬/lØw™:þ‰DÕ ‰D‚øl‰ Õ'‚¬û9ÄG]ã[7¾…ä¶ ÿDLs JCM‚uDz9t|AêŸWwþÇ¢J­AîíÅÖ!›.½xüé÷òòìÖé±o?!qZÿ¼÷QOûŸM1þÒ}ê:¡Ýä[(SûR5i^>cŒŒZ‚W°à']°9ÔŽîºXs‹[öcw]OMj õ(4èaCÿVR¯`_TŠÚVr"ô*÷-ØÜVB "ï~N¶£Nän6QHiÂÖ,jÖ3‰…\w,›CǤžÇ|VöçÍ÷PjÿíòË»¹Zö…§‰?Ø>Ö·Þz÷ý{ñÚFbO?Þü´¡ï?›¢?4øžQÎŒo7›ê»ÌAêÒÕÔk†Iq"´!@N…J¥Kñî‹¡&zÂù—wU ÃR¼ È t“`)Þ}ÔA ßÏ¡t?'!Hak.µFëŽÝ}`×ËæÐñ¹„?|`ÿg2 ö[ìFì8Æ$dkÅË'ŸÞVTäv39ê÷ºa—¥}Zÿ¨ù´¼Ç?›c\¿MtŸ‚£N@7ô]æ åé=º »:ÔŽ8é‚ͤFðSܾ2±)ê½Aê¡C€ÔÆŠúÕÁOÑú¥bP”l@ ßÏ!v?'!Hakµ†ëŽýQWþË«ší>P뎥~è~þ8ŸwÝñì¿Ö—ºò玟C¨ñíò‡ÊÒÜQ_p”o—¥}ZËþÃkÚêÛÿxßt÷)6ê„u“ß›¥m"ƒ”©YÛ6JP;âR=…’©n+.£•—Ë.η8Ÿ¢‘0(Àa¼Ãᙇw-ÚµfÝšyÛæMÚ?iù îŽÝ»:u¡â­ÒÁç»>40b@üÀ¤ýöàm@{š¿Þ•æÝŸæ1ŠæªCsšO³[M³ÚM3µ¢y}󚯱~Z"èráe³ž¼ø mÂ÷sèÝÏIRØÁä[ ñ桬†xóPV¤ÀÝ[£û¹±¨õ ñƒÎU‹aV´)¡o=+ŒTͳ›)7Ò].ºëŸÜ³8kÉÈÄQ#4ZµìÓgjŠÎò+ô ¶1Þq”îQìt1$¡2)çj^^M!ˆ’›Ÿô‹íŸïêèþ¯ïi`ÿÙ¸Á'¯Ÿ¦V§—…z{[ž²6ÈÛ»:kͤ¤É=¢zqµànã“'l*Øâ\î–z;#!´tö¨Þ…s-.–v«¨ê]}ÛþîÓ›¯)|?‡Þýœ„ …L¾ÕoÊjˆ7e5‘Aª¢&­ U^Ë@­WˆtB-sP”{Éûæ™#õàÕ“‚»'{Nî›™6«kT×¶!mG%ŽÞ»É¢Ø*°’•v3óÒ㪇??…#ÔpŽTxˆàïõjîÞN~z'Óã’÷ÖB½Aœ‘J~Ê8³3æl Þë9Â?ݦä†Þ­Š5 ¯?Hzüâ b …À8Q5i‚v0ùVC¼y(«!Þ<”ÕÄ^µ7¶~ÍËØŠkéö ñƒÔn½ùe÷Ì4Wç³ÜBRVíÝ|^›x=ùðYÓéi3Ú…ªô‰í³øøRÓsa—#Î?¸Ð˜™ÄYµ7|Xݪ½áÃ…‹·j¯ìie䵘ýgáŒnØf`ü Í9[¼Y¾EÓNUjUÞ2«}r¹áOìa’o5Y¬ÚÃ&©‰ëŽ¥vè>f¥ý=vÌ¿mÛ‚W°/ªšä]–Úi£§ÒlYjâu“ô¶‰ý£Åø),âGdÒ‡AîQÎ…HQ;–ú)þZ’þÉ=C†)…(I»«HSÕ“«¤?þ€ôçH=þõEÞý"çr·EÇ·ë0 r ®“žÿ¤€òÙ—îEf¦6È©ÃüéåU“¼ËÒq°Æ=-ŠO‘YóšMM¼Úmà %mµç¼ëooœyFB[ïî^g/ÊY¬ÄQ4æðYÓÔ›™µ/4ߪ½æ)ÞxúÛ«ì{ùæç-'›¤Ìn;Ùn²å«³†Å/-r£Q\LTÊ+™÷‹ôˆO}kl{½Š‡ÁVC÷l2;\šÿ7øè¤oå;;/‡Ï®]|¼¾ÓêJHøOS^,6ÿòû£¥Ö™ ®ÏËMö$ü#óÃBn4îf‰u–LZBØdH²Éü˜Ë_8.•ñºãüvùÑ=¢½‡{[NµÜ?wÿ–[–oZ>k׬q†ã´­´‰EÇš.š*>uëŽU}¿¬;¡Ä¨_w¨TuK»Ð|{Ó¼ÐmÓ%u#W¨éI°mݶuÞÁyãLÆ©yªõ³é·wÉõj™ëÖºy¸öéÔÉËÙ‰[ m¾ ¿/A÷Ó9ì7Ñ£nÿyî ®Ï2:ž~ß*7@pyéj*ËyãÝ A ºùnð uš BM&÷s8#%žÚƒ—OÈ  Æ a²;¦ M‰ÍüäÂ6%îûc‰BQ¨ ‡l6ß¼ÐváD§‰ƒÜu÷éÞžÑþÖmÛtöëÜÇ«Ï÷!c\ÆLvœlp”=ËtÖãË._·oˆõ{×oÑßRÕ£Ó%¶hI«ìÑ ”o1Øê¬8°b‰Ñ’ùÆóÁ¿j1uŒí˜!Cú¹ô6G¡þð©ù«õr°@wÉÌ=«ŽLptšæÑ#£¤UIfŸ¬Ð™¡.z®ffæ¦æftÖŸ@V5'Wç/áâ:éïX°ÿ¤[7¢àÊ"v.jö˜äèü­rAºù“«v®¬”7Þ~u0n7ßÔ NSA¨ÉÄÁ0H‰ª/Í÷?:Ù;ª¸þ$?²4žç<¿;½{f›á^Ã×Ûo0µ0kPG¾AŠ»éêé.ß½|…©NŸFšÜ¹o§³ƒ ÁC÷ûõ;¦»•Dú³U«F÷s­¦{Òå ¤>+)5è&(Á …‚á4‡ƒ‘Rfõe´+슛¥š©í&Û6wÿ£çÇt`tèçÙoœó¸9vsVX­Øj¶uß¡}ÿ!ÜÉocÌÛ`ÀÓçÍã[“wjYÚ¶ÍÒm¤ß\£uÜ'j;ŽèkûãÌíÚýèòã샳 ç²±c‡åÌ rÜå$¤X~>Çõw[±^}H-°]°É|ÓþCûaW@Š`©»êê[´¯ Šâ)vÓbLÖѹoÁ¾NŒ¾µÁZ»u³ç ÷ÞÕ·k«€V=:OÙ?eÛŠmV‹¬ÜWxÙgÇ Rq–濪wz8@»jÆtðú«º:(!¤–zÒ½¸²ÀkìæmjFÞkå ¤–z;xè&x­ñó¤( R2³!I(jgDжcHQÙEâ­À´Ôiiw¿îmÛNqŸ²×zŸPäR(*µH»ß¯A¦îvÃ=–·`huum1ÃdÌn7k²@*m÷®„±rýnyûjï&ïA7o00H¡`8Íá`$‚”_Ì«ö‡éú>,ñ¾ËãÀ¦cbÑXç±~-˜-´|µF¹Žä´Ít$6‰Rbl¼ &æ¦;mv-uX¦c7m Ã@%ºRç.3÷Ìܬ»ÙX×8#ì5 ¨¼­[¸0ößtV//%¤ˆWVè‚‘·Ú€«û¿õž˜bbO”».½ªQ—wÿ¨9"ËÈŽº Eè&± ³Í`ï!;lwŠ:]¡@ ¨…þÒ©Óý~ýʦL¯`”*²ótœä¹²5£Ëw ..+699¹ˆ”‘âàò€á'ê‚u¼P¤(ê`¤PÔ©74m8ÆA7Äã'ë`ëùA 48jlµ©ASwïö ñ…œlNQj¥Û™ËF­8¼r°íàV­Ûøõïx³lÌÉ•Ë$ÍHñ peq÷=¶~¯>“ãèìj4û•’v‚m}¹íæÛJ…ÆŽ¤¤æ`¤D ¯Ì<5 æ±³ç”sAÊÀfÏhÏÑ­™mFyŽÒ·1¡¤y9;ÓÕ-Z´¼6^¯§ë¥ßÕoø÷Ê-Ýt&ØY»4™ ‚©Äåc^(×%ÆßöÕ9~Ä‹(°X}C«õ¿4Ú§.cò­<1HIÓ†0H‰§&9E¾y³‹mWAqÚ×U{al57hž:G½GìX[бjON@Ê"í‘¶6An>‹ýô{ùNïåܲ£u[ïÑC=7êz;z6H9Ÿè×îɼƒ®€¨v§¦L,âsÜw^M¥z÷ RRs0 R"3§°ƒy`tÑ鯵VGÕÏ%ï1a¿õñJaA &,½¬ÆûÍlÁTná9RÓÚx…בF_ùÁ€ÔUIG\\MóFµû«Ïº`??_³RV/æàx:&Îïþ±ËÂH_ RÒ³! Râ©IHQÅ·oŠrÏ;÷€çñ‚Ã#ÄsEЊΜÎùAó­ƒ­EZµ'— •™ðþWuuÞ9Rù[6¿é¬nO?2“¾Q‹>êLåïèZªÓǸè{{ †*Xr2M­þzäZÿú¯ð0Ha’™ ‰DQá§:Z0Ù¹E?:]qvcŒSkf›qãNI‚P¤„†½§Ã¿…ÊLÕ¶¾Ú-¬ö µðÑsô$¾òs™À4¯å2“ãîp·ŸŽ øj/pïðçFùø1¬¼V”îV_î¶ó®’ÖYko RR³! Râ©IBQ¥µwzØ;eŸ!Þ )V{oð¾áœÊlå©A:Á«ö¤ÒêVíYrz¤]·jï‘v°J¸lÄ`ú2M&2wôï÷=³Í÷^C;;mžíä¾ÏË¿T¹ÏKÆe&=Žó¬> åhœ6BKQ \fÿܵ‡AJ6OQGOQ·dzgå7(/©ºh‘g¥ÖyjÄz›=’#)ÈpöpYí»F©®Îè§a»_ÅØwºµ÷a½Â6¥€ŸŠ*lSBìó)_ëBm•ç‹Í ¿€ý£ß«ÏŠñ®/÷6)SW­9èAJj6„AJ<5±)êBí^ö!¶Y§¸%M”{ˆÇü íÙíûrún Öe„øÃ$® ¤êž#E÷Í2Ø]÷)AÏ‘rgz¬gnî0ôV%ßÁ?Ø­ïeå2Ï‘A@•ËžHà`€ŸŠFì7©¬Áí¹ŽKQõY¨ýgÕ[>µË×Þ²n²¹Ælžl.E¤ªjþ&Ñ5 Õ ERÊO'Ÿƒ×ÔsÅZÖ,‡”쟜aöŽì36n\ôù£ipäd2O‘RžžÇáÇ+¹jBñ¨‘ R¡a¥ ]<\Wû®îÈìØË¿ÿhC€Só7Ö=‘Ùq~"_Šâ‚Tdøñ¬ ¿ŒÝRÿž„ åç—>äªÁ€TÁÉg$‚ä%iC„š”AJnL(0•”½m\xé^mÇPËŒ"ÞÂÆ e|dbÐDe¶òŒ ™öÁDal\‰ Åð/ ¤¼½³I©@æI‘@JhDÅ\â}ëÅôÖeéchÉj­ÆÐVw^ÛÒÄ©¯}ûÎ"à]ö?Åñ¥(¤~ç}©ò؇úo÷.®éܲn–§Æð†v΢<þ@†J`@*·ð ‰ Õ&HAú ¹Õ kФ&¤@ìÒ’î¶³„,Þòå¹?›Û5¢«ï):ßU{‰D‚¿9€©)’ ‘ Rª9{¸¬ð[ÑžÙ~¸ÿˆ!Åú3ë~6‹=>³ÉU{>6å:ýÞŒÝúu"Ãj¾$_íÁç™HWƒ)ÕÄ)ÈK Ò†ˆ:R)¹q0¡ Õ¸Nåý»ýç4®I0;„s øà@ÎÀöìö+‚Vø†ø5 $A >qRðY+‚ÏZA‚TSÕ¼™>ÛY;F³Æ´a·é8x2ÃUofp°èÙÎ.|ž·IÌ‘:•J¤çHÉðO H ¨&H5‡ƒ‰R5·>§}ý•>¡X'´"© CMB©s–£Ç>ö´ŠÙôm^Ô…êòù&B;èen;[yž¹³Ã?‡Û<¡y)¡ÑÅ%‰«æá‘%áÈCMñªÁ䥄‚TpÈi® ß¼ŽžN3é³”™í7®Ô¥ON*û®Ã©&ãÌ¥²þ¶ñ›BŽqK"‹£D7&±4¹qî g¤d•‘â†Ýöà¸.éÃ\'t`u݂ܳ/KÕýòob¼íįúo÷ÌWÝÔ¬{.ðŸZ£ ,<üDyüLøš"©áŒ”";˜H©«îu‹4HÈá[Ó:!«§GONÏýÁûQ $œ‘"7#ÅÄ©}N:~Ó”üÛMÙ£ã?4 zQ oj g¤(Ÿ‘"€‰þ©)(’šŠ*®,ç±À/ýBýÛóUt3õ:…u²+p¸P]Î÷K@Bbøg“RÎΉðã•\5¡xnMÈ©àSBëpWíí Ø×‰ÕiœÍÔ\Õü°ýá ¿Úcø…Eœ#ñœ^^éðèC® Hž~L"HA^b6D¨I¤äÆÁ„‚ÔÅÊ߸5Â#jÇÑëÄ×$NÓ#dˆ~°„úš—º@"Hùød’RnnÉ$‚q‚\ŠŒ:/´諾#nv Í6i¹õèo×ßq¶£ÏaߺßÚëVÿ[{ݺeïþ+{ð %Ã?%0 •_ôDjëöøDiUùL¿`¼M(MÒŽÖÖI˜–[ÞpÕž¨ ðD?^ÉUƒ„$A 2Ò¾>GÊá1=pzû€öÞc¼yY ?Ù\B‚ ¼jO ¹Fïúãc¼btc²îÿ·<ûvÞä”)½czû•3RÓþ†!$È€O5‘Rð|¶‰D‚ŒÆ©¦^›zzôbÕ-à~FpY %’ù“«R RÍá`¤Æ…êKK˜ñã<"ŠÁ_—êr£œCB;XçÛ–ŽA )"â ÿA5µÍk6‡Å …AJÎ †¢n¸¨ì¢ï)ºZ¨Ú¾ûùΈ E!"b›á¤^δëšßã,…AJ 6„AJ<5ÁuçÙ£éŒøå!©w_<&J’®¥ Ž2!yRÞ¢•1H!ROºu#Œ«¶Ó׌Twœ‘ %kÁÆ e–ÕÝ–s¼´x{ÖN0Ðsá0…AŠ õ¼G÷¼´c#iœ©_lèy¤0HQÚÁSÔ¬€„Eœd‚¢jžÞܘ»¹Kd—À vSëû0H¡ Rñ[·ü˻ܘF‹ÓÝŠA ƒ”ìmˆ—„R²µ¬Y‘§›06n\^y4•쀷ÑWv‹ê¾.gÃÕ'7šú'¤)‚¥žtïö©eKð¯ 5Óƒ”t ƒT]xgå«[2²ÙÃ4¶eí(­*‰¢0H¡RÏ{ô øédÿ/ õ¬gO R¤(í`|‘èî‹Ç‹8ɳî<{È ð (ÀR‚¿Ä …>H‰¤¤à`¤.±s‹:Z0õRLÔBÕ¸?ù‚AJ°å@*m÷®‰ñTýݤ0HQÚÁøRÔòÔéŒx@QQWb»DvÙ”»ùÚÓ›B§¥c iþäªa¢¼ Š.:ÝÁ<`NÜÚ‘=S.¤‹GQ¤Ð)‚¥žõìùg«Và5M¯Úà EykC÷_>Y–6…wõñÝ]…ú]£ºÅÕ$Â<"ƒ)xó'W ƒåmèØÙs-éÃ"§Ž::ºàÒI±) ƒ%@J¼À % %žZŠZ‘1Á'¶àvñˆ„‘sÒªz|’¢0Ha‚7rÕä¤Ò¾þꞢEhÂÛŽ–>šìa3#u¥~’y{pà 1xÙýH²ÉüP£©iÿ.ô<9ðH¢áÑ8Õ ÎÛú¥¦ý#óVáÀ!vPËÁ(–‘*8s’”8–Ÿ¯nëÔŠ¡2ÊzYir9D5ÒGtAÒÕäã~Nq2RUׯ@Mß@ŸˆaûmÕ 8V¥«®<´’[(sÒGtAì`ü+SˆH¡¨ô‚nÎf­Y§žF Ea’W5Ò± ñ R’€ÔÈý6jÆ–ê>û¹õÛ¶o›…AJ^ÕHÄÆ¿2µlHrŠ:~²°·»q+¶Šm ²( ƒ”¼ª‘.ˆmˆo`¤Fï·V5ß§ìßvü‘ñâ!)9V#];ÿÊÔ²! )*çTQï-Y*Þ9ô4²gL“;¼HT#]PqÔHÄ6Ä70H‰Rc÷Y)Û®kÐf¾Ù|I( ƒ”¼ª‘.ˆŒejÙ$•wºh0Ý %«}@. ¼Å …Õ¤/ˆmˆo`#¶ø_lå<½Cu­ÑZ ) ƒ”¼ª‘.ˆŒejÙ$ 5,@¯%³#'/œx‹A «I_ÛßÀ %j&¤¶ö¡åÕ]oŸžä…AJ^ÕHÄÆ¿2µlHlŠËÚÙ"P-87†[‚A «I_ÛßÀ %R%%¶dô™¶iמ]¤P)yU#];ÿÊÔ²!Hl:™Ÿ]íâtk¯A•«sQ~ÎÌàý?v 8É[ƒV“¾ ¶!¾AJ„\Ô±˜üµV§nMMû‡,ŠÂ %¯j¤ bã_™Z6CQ‚?tíòzÌ臫W‚×ðí[ú+{e…4¨†A «I_ÛßÀ ûÿ/°ãŽ,£ªÿ>G ƒV“Ž v0þ•©eC0¹(@QW­,ˆ·ë£­ÛÐۜٹ(?ƒV“¹ ¶!¾A & ’ߪg;o1Ha5é bã_™Z6$¤ª5’Øßçø]`;Ë?PRåêŒA «É\ÛßÀ %4ôS|¾g¶µÍ¥sK0Ha5é bã_Y ªªù›D‚T{R×wZ?\½ ì0Ùì¶þª†‰`”ÜÚk Hyz'¤€ äð"Q Re5xAE;t06”[ø„D‚¼`!mˆP“2HÉÐÁ„ÓÉ3¯Àëåʲ{Œ'¦‡ïú_®*ß›ê (Ê>Å[¤||sÈ)|Ч/¨h‡N>L‚ôr«½‡©R‹´×£GÅ„UóTsös% ë2Rnâd¤à³V£_&Õ k¢¬&«j5e¨cCª‰aC,¤ u¤ R2t0¡ êÜLMúÔ£ûÛ‰^mÙ^OìÔ"@éH.³qM<"¤š¿šþˆ~4Ã/¡º{÷hA”/j]Ým~ôš¡×Û·‘òÿ¢ÜYt0Ñ@ªæÖç´¯?w,ë„6B$µ÷Â@êD^-¨™ðþ~¯^=Ôyå5–æï»uuŽ”‹K·m0y)¡C‡WÐÃ#KÂ(’šPA”ÕDT´C'؆ò‹r…ÞÕ µ!‘.X¡6Ä«&5’¹ƒ @¨ÓÅÏ {§Ù÷šU Qh”AoÍh•=©óåªr‘@ÊÃ#•Û6˜¼2—¡þˆýîƒÑâ—¡à @01¶´·qP‡CAc2$WC¶³ ë`ò–‘:úf˜u¿ÃëÚ½=êáê•¿Œ (ª4¬á’=œ‘¢–š¬ªAÖ”¡š|ÜÏáŒ7.X¤¾0žØ?œÉøŽÙÖâD(¹è¯()ÑAJ¤ÿTj#öyLfßtÀg¤Ô”¤ˆ‘è/jï!@*?³hêái?¹þT˜Ÿ]åæ\÷)7çÆ¹(x|M.H9;'B/Õ QVƒT´CcCஎD‚¼`!mˆP“2HÉÐÁ„‚Tí¾#/·l;QQ1mýUÍŽ×ñ(ybzX òðH!¤šÿ2ä~µçÛfŸÍämÛàQ½¨·-Ñwí`°ßÚ9vy …jgEV““ŸU{…¹§VíY5ÚmtÎé<¡‰+ù]µ'þ øMjÛ–ê»’8Ã~CüÐÁØd@ÚdàU{|…‚Ô½ÆÛ‰ã“âS:{t ù2»¼.#Å'#ˆs½ÍzúÓ Üþ·ßb)9‚ÿÙ¤©¶i»¹ú~³%z`w‰ ¿!~èäÃÁ䤊NZl°èíÕ'ýd EÉ3H‰›‡ß¤¯¶y»yǃ^mbj¨&6„AŠ—+Ëjµ»j¹©:3]‰’‡®N{öuŽÅAªnÛºípGC§z¤ r7)ªé-×wãÞÙ¡¾kÇViµtAì`ü+SˆøSÑ©“A+‚ÛÓÛGæÇ@R)I6©«ÕÍ0èµë‰3 à7Ä|Ø©o?8qº·S¿…ÞN_·joÂx@Q7Sñ]ß'¿ ¥·EO†\d¤x6œ‘â£&F}:}2mEzgïÎ.™nð%Ï %î øMºj_flÀ6ÄOM>lƒ¥…‡Ø Ùî³ãrUù]¦Ýs¤˜þsQr R›·›·û’¹ñQÞg3EŒ»aã£&Fy:½þÌ`»Á;wŠDQò RĆg¶!~èäÆ0H¸t¦r¬ùØÕ^k„f­ä¤¤#¨8j¤ bã_™Z6Ô†Îí,^¼wÉ´¨éùgŠ0H5Øð ƒæožìÕäÆ0HU_Ye°JÇkZŵj RÍ-¨8j¤ bã_™Z6ÄKBg3_bÞ'´ïñÓÙ¢R”¼ƒža@Ú†ø¡“RtºxÅbE?ßÏ])¤( Rbo»6m*µH‹;–>k֮͛%TœC×jòá`T©36çŽ=ÚžÓ!² Z Š’WÂ3 ° Qц¤*¯°qÔ²*NÀS”œ”å„Pƒ…NÜ·`ßr|˜$‚Mm¶K–¼h×îåðÙyƒÕtéòBE”H¨É·mB{$’š$v0)8%Aê´ÛÙ3]Îöäô4Ë´¢ä¤¤#¨8j¤ b⊠RÕWÒ~JïÈèV!EÉHÎ(lSBï¾Ø‚|·]›6Š š:•«öŸ«¨H˜—âÛ6¡=Iôæ¡£&F=:Å8SÖ±l!{Ñœ¸ŸÄ¦( RXM&‚؆ø†‚‚Ôå+§çžééÕóH¡½¨%g ¥û•6Ì'óeRšÇ˜9óš–V5PBŸ5KÙ¦Ú&¸G¢ª‰½ÉüÌ V“««J¡8îóþ¢j•…Gx×íøÔ·2oFfÂûR‹´«z^¥–陉dÞ|ƒpª4@’Mæ‡ZÌHùçôÔÚÉ–3—Dɾ1hDØŒŠ2Zùúi‰ Ö—ˆ‡ii¶[iKi®:4‘4omš_w£SkF %ú´À6`p‚ø!ð•ö>-»;©tuêÚǶÏ@˃ÍOÚ?i¡îÂÍ+7Í6rï800¾k|žJ^Ùweå´rQôÈ|AQjê?2?¼Ô j9Xóf¤î¿xBbd1?žQ:c¼Ü¸u@ëWì”lKC›ÓXLøpŸ—ì²'šûìƒÞ @°¢¦Zò¸žœø±{÷—Ãg¿ÖÝúnò¤O={Öf¦ÕÔÞ”$@ÛrŠòDÀÊœà#ÙÜ·`”4®Ö8€š‘ñ!ñq"÷sÈf¤žýúŠÄ‚{öî%âèÀ8½ÕzšÞZúû ¸…"éciyPK=ž!R„î9Qö]yôä‚Â6¥V ?‚¯ÞýÚ8ž½ý¹àá)Ï Ý¢mS&uë Ñi̱±K²—œÞëRît54ñVrÞƒ¢‹Ï*îŽøiò_µŸ?üöìÝ«;¿>xñÓ¤+ ŒK/ªÏ>-)|t:÷aaÂíäÀ+lû2Ç=gö­Î[;=}Æ „Áê[·ê§½8{‰añ!ÖÕ PùþoO€P+¿RÕ8Žzž}¡oÌ/hS²X/.éìy¾ÕP3³0'1°ƒIÁÁ(Rw+^ètÙ}†»†·ÆD«‰R”œ §Â6%Kñî“ RU—.Šºïê Ôzìåñ©W¯ë5Õ¤ƒ 'àAKñîcj &6¤h 5,Êsœ—’¿ÒfÃ-âQ”œTQÖÅïÊŽÍ+û€¢³/Hxʸ{Âðœñ¤ÔÉmCÛŒ¸±`³Û%Ï”;7~¾Ã—·ˆøùå³Ï}úüÌ!@ ÄÛ Öç~}_¿~A¼¼l…]²¼`³"wÕÐÄaJ!JÝ¢» Ÿ»ë„>ó,çluIН`?¶~꺨=Ñé.WbâU“£Hݽö¨²_UÁö¬'hyjINQrR\~r[˜Ü˜¢È©Z†ßïãÇ.Hx7qÂC‹tâò“ÿÚxŠÂ EQR( –Ø+±£ÝBóEbS”H™öX1þ–êÿþ¥Ñ>v웿þ€)Œ uïöãªáÕ×Ý`&ßjÐzí¾µ¤økr& 3 ¹ÓÌLiÖ;iö+h.3hch^ƒh¾=i õÖŒ–õ3 ”Ì0èá¤ÚÕ©k?›~-5:i_Ý ƒ-+¶šuÈa¼s SÒ‹2² ò0HñU“RâLàä©åõrï5Êq”$%? •™qvü¹33Φfñ¯› Ñptø•P•¥ÙËYW‚§„ÆÏ¯ž—Ze¼wuúýXU}–ÈHUݾZr£ìñ´1炜r¯¤Vg$U¦ÄV$°/»žs7.4Ù’­»8}ÉÄÄIýcú«…ujÔ²wtŸÙ)sväîr>ëW‘Xz³LhFÊkÕ‰‚6%³7F{&¥aj¬&6¤ U°ãE‘jÑT«©ZÞ] öîÁ âÔÂÓ熧¥g6þÈ'Íon̼¶Am'DN4Ž{ðëSIø‰7¸_í‘|çH•]©Œ-×?±gHìP••¹Éó=Oùœ¯¾>Ê»xq¦_lo» ðÂ3âµgz€1»ç[­ž¦¤dï`hƒÔã'—ç^½²²æþó'GÎÛÚ±s©Æá¥wñ»²h,È9RY—²Í ,ç%Ï× ×êÚaZÒtýì=^§}2.e]ª©4GªGÞ9RO<ÝàçHðJ¯Îò+aZ’¾tÈÑ¡mCÚÀ6cMâZ» ‡„ücMÏ‘*™¶>jŽwDbŽ)çB@êЧ%co¨Ô%ÆÿèÐ'g•¾1)lH@ª6àÞõË[ t•”¶n•¢ä¤ u‹Jz•¤'fñ¦O?œdÚ?L[=¤óƸÍáQ&›# R¼‘_qÒ2ßz\üx@T R1Ïrfydæw²dn9v®²B42Û}¢ 8Ø¿-{ßnŒçH¡à`ƒÔó'¡Hœ:}÷|ǰŽÌä[dQ”<“Î.l>idŽàU{€‚χnÉÚÚ+ª7À—%©Kí‹SË3D[µ—’ô±g—ÃfÕ­Ú›8PTmVº$¤N^;k—·9ië˜è±ÊAÊ]úÍ9úÓTC«­ì #'x¹Š¾"g¥t{³€ƒá‰ÙbƒÔõ9Ã&‡êî19¸›®Óåc»‘>1HÉÞ†ä¤î†Þ¯ìR™Æú]ÍOm–õlÉ)J@*÷pþõ ‘ßæB%e¥ìIܧÒE;l€Å1+@TBWíQ¤¸‘WQhšg>0ff¸æ®úñç³ÄuµápòN‰š‘2?¼—5£ç{ÕQÌädï`è‚ÔU½kÕ“/ß»ÿìë¤L³8g 1H5ˆÀ@Vþ°üœq¹Ì&똲̗Fk„khGkdï.=* í$|í^ÅÅR«ŒçfƒØ®×k0Ù<»(— ( ° *•`•YGg[¦['|ûR•–9È!Ø‘è«=CïÝ×Ôq1Ä %{’oº÷°R«òáù§«¢-z{ô!…¢¨R'\r/ª^Ì Ìæf¡&©«Œå”âÂgBº\€7â/$­M_¯Ò~zÒŒ}©ÞV¬ìÄÓ—D[µg´âNKõ,}S R2w0DAêÚ¡UëïÝ®£¨ ªPí£jŸ?À Õ8Žëœ(Ò. ôg5þț廖µ® »‹:[}MŒurY)’j°jDjÑyG÷§=N)HidÔ(ƒ”=á¹Qõ¼•0<±½YÀJÿèÔ¼\‘AÊH/SHŒwÏØ²Ï‘BÁ†ä¤î§=ªP¯|xòÉñÚœAšz·aü( °ñÖ.Ù±OXŸþaÚM®ì“/"âlu‰e¾uŸ¨>}¢úfïÕ° dd )ËÝóOO_åmhbyH?X§ÛGåacœ‘’½ƒ¡R×oUö«º{íQÝþÓ;]£ºÅ]Mû¤DʲÔ3]ϰ|8 ÊíXö:ìiÊlå‘ì‘X†þ¬@“Í‘©olTi›a77n~‡à=Ãzm;¶#6/>1'gŽwDg‹@ÛØd12R‡ìô×éþ^eý)ÙÛ¼‚ÔƒÜÇjàõÞëG}cû™Å#‹¢¨ R‘ÇK;_ȱÉû¡#'i…h™³àý"OA@Š;-y–3.~‚Zˆf{· :nÍ-›ž µ7tJߟ·‚ßÿ®58]×ÐÏ‘BÀÁÄ©ªš¿!m›Î—½å}{ÓÿNE×Ê»•‰·N.ÎZJìÀ”·w6‰ åéy~@ÀTƒ„©x½„µò —ÞB+–ÍöØvìvóÙ œY®0«ö¸Qtú%‰ uºø5Y EDVö½ì¢\Ÿã~ â¶ n76zœUºkbROÖx×ÐȬ"”¿¡ÑÞ%·ZvJÛn(9H‘;NDRƒ±¡ÜÂ'$ÚäåiC„š”A ÞÁ`hébžåO>©P¯¼ŸöìœÚ»"{eϓ͛ _¿<AJ¤±CH^^'$©ôĬ’^%ù{ 6íJÐW ê¸öèúĬd¡ª`@ª¼ê#‰ U^ý‘\*<õBp…ˆóÑS¦·fuje¿j©©­`< dž‚ü;˜L‚Ä4Hâ­v+ª¶¢sEmÉâ-1Ǽôþ%x‚ÏZÁ xú†¬ _M0EEÆ”´-=NÿÀ-±eÙ`Te«.c-÷fù4¨RðY+‚ÏZA‚oµôÂ,Ó4ó¡‘ÃT‚U—ůXÆñhgâ¯Ç‰Ë*È R‡·Í)šºÌmïÁŒ£wY“»~T°Ÿ„Œ¹ãD$5PM ‚¼ü!mˆ¨#e‚w0â[íáù§•Z•÷â‚ý‚û§Ô#Ô¯¾¸R0uàAJ¤±IHbƒTZzæ¹áÅE«OqÒC„>8àØu˜Å} Ÿµ‚)ø¬$HAVóNºÔÅ·ÏÿºØmØgn!H)ì`:˜h UsësÚ×_éŠuBAêBÅo\µ’²··“ïU¨UÜ)¸Ï­03m–ÙY ^äFnnÉ\5˜¼”à“íâ’ÄUóðÈ’|èˆ$(¤Â¬#JÛ•g;üN¨1£‹tØ:mÙm—³Vø²è|ÿ‰`H:uî·mE§_HRçJ_qÕ`òRBA*+û6W0+ûïGṑ’6ué¬>DÛë`O¦sÄc¤v¥Îû®%í_Z‹ý66I?$Ù)rljj‚m(¿è!WPè]PéòjC¼jR)QL0B]ºüŽ«Æ›—zTñ¬²KåÝÐû`ÿé¯/ÇëuÉçÙk¯qxz¦sÕ|}s%)1Æ’`6ru=Æôô<.2Heeœ™q„Q¢±Jª^œYjÚ×ßñ͸-!HU^ýƒÛ6˜¼”`HªªùøM "/%”Nž}Ê,<-$/EÒû mýº}ïÛsªÍî`ÄðÏæª2OJRØÁHq0©d¤žÝ8ìH<8›½¡âËwv÷Ÿ^3´ÿö@íy×.©WÜN½ÇŦè+q}búÞyö¤$#äRܱ8V?®nŽTÚçU¬ÕíØíf°gº±<°—`¢\FªAœ(Ì5O·ìÞW#¨§Šã®‡õ Å#˜oqFJìË_a3RkžWv«ª ¸G¼õªð pJ(HÉwFªhõ©‚Ñ…Ó#gtíî›FçâÎHñ)¦fS ÚÎc¬ž•aøêÕ´´>µl ^Á~ÎH¡ä`â€1Ñ@Šˆ'W¶ úH9…l¯zx±â·ÚÓ*´*o•Þ—¼ IDATE×r+ß{ñxXÂpfEPƒ/…â‘›[2‰ åìœ? `ªA 6R,Ι®g’Öûæ,‹ÞAµÙÚGXvB'TÁ@Ò©sÏH©s¥¯Èž#u[p…ì¢<§L—A¡ÓZùwhi¿b¦±…aÓxäã›E"H‘;NDRƒ±!pWG¢ A^þ6D¨I¤à ¤.]~÷¢n>¯êSuÛý.ñ¶æÅMõõ‚û§¸È%<=ÓH)‘Æ !¹¸$‰Rù{ “‡'÷î=3zV|VÒ·2¯‘R•Wÿ ¤ªjHž#uòìS‘@Šˆƒ–‡º¹MiÅh6‰öÏwõËë#CßžDÂ&¡ƒIqÕ^ U[ö°¢kåMæÞÊ¡Hœ¤à7xj†äª5†¡@V‘vQÆÜL?c{Ž [e3k«?+f}|¶‰,‚H‚  ¶Îj}w¯¿h§â¸p£°Ô) %Ò™%W Ɔ Ò† CWí=¹ó¼zPõ-›;Ü’õyvÔçÍ]ABY %ÒX‚!$Ȥrlò&tàtØ‘° ›jÕž`""{x§1´Y†´ÚN_@ê‘–‰ %Ò8!WM>L¦ åà×qw`jûszË =®=¸÷µfíó½cúD_‰k<-]qAŠÉÌ— šiÛÝ}{„àïò¤Úl±EÍ»ßwŒN}mÖï36^¾ì¦æÇ-À+ØÇ …” ¡R¯k;LNØtåù—Ÿo;|›œ0<¡¶zä囯·¹Øt¢6W+ªËŸï+2Hpɵžmݑݑïc61HA‚Ô§–-ÿúžv²?1ã H Rè8˜ì@êÅ“{·W ¬ºbr™ÖÚ!7÷é—r— î““§ð]ß§° •17³H»h]àú¶ì¶XáJaAŠˆ…6+[Ñ5Õ]´*ºËŠƒ€g)Älj|Øê õ…œnì´ þH9‡îº^÷öé³——'\¹¡“·þ„䉾•Œ³© ¤²³ –h1µ˜éI( ƒÔ#--¸ÀeEì<ì‚3R9˜Ì@êÞýÇUc.×è_¯KAÝ>3Ø4–ý°®üÆÓZ­H­Œ›'0Hq#iý±‚žã&tcw³…˜…AŠ7 Üæ«vu£­ßN{Ðñ‹ =ÐÔÄ …Ž Q¤ž¾xyeúÕk›n<{ó­rÔµØq¿y®° •™µFwM_zßðŒH ) ƒTøêÕ @*lÍ Rè8˜Œ@êñãË3¯\]Wsÿù“;¯³ê3R9õ)ëâ#ó36õÄ)©Xý¸ä>É=zŽeóaù‰AQ R >¶hñ¶­¼-jü%¤Ð±!ª‚”£_‹tŸ>y>#ÎúÞzö”;åüÍsí¸1×ã¯ïSJ?ú×bƒÅÃ<†ÅfÆKNQ¤–zØE \Và5lÍjHŠÂ %“H=÷§s'|oW°¸¦jÖù^‰B†–W¦Wý©ÛÏîkEj¿™‹AŠ hÃÎ Õ@Õ•¬Uâ!)45ÜÏáŒR6DIª›;õªfåõËs«C¢#Z;ýü¥Ü§‚>9e ß%(HíÐݱäÀšáÎÃÿ³@ƒ”d E¸¬à ƒ”ÔL꿵÷üÉÕ-ת§\¾ÿøqãOÝ/zMKÑÔ< ¤Â¬#Ü'¸«ªìeí—„¢0H/_Ö¤‚V,Ç …Ž Q¤Þ¼º¶éÆ•éWŸ¾xùøAñÓ£¡ÏëÊï¾~¨Õ%ûnžâ€”þ–-þ³g'Œǘ=[ëÖÙú³‡Ù‰ËH$‹¢0HaBÜÁ¤ R5nTª¾w—EÝ}þ¨wLŸ„šc¤€ZKˆÉ|“ŽŒŽf, ) ƒÁR45Áµ^á) ƒ”tlˆŠ uCÿæå Wž>{ùèù¸ðÖŽ…õ)ëÛ%'–ò}>‚\‚”ݲe/Úµ«éÒ%ð`ðj´RiU¯¸ø7$R) Rˆ;˜TAêºõͪU÷®?âËIÌŠ Q‰£›¢(…©Œ£Ÿw¯ÙÝÅ»‹ËArŠÂ Å pmÀ#)©Ùò õ4&Áœ@;”cx»jÈ…Ää„.>ÇýîÔÍ‘º÷úQçˆÎ'œUÒß²PT°Žñv•ÞªN®kªf&~À …A FM>¬Aо¬<]ÉÅ üçÛ•Ý­|Ø' RŽAjû–í»õŒºytwa¹’BQ¤0H!nCȃÔâ–ÍêAÕOj3Ó¼¶°M)xûñË®_ü®2?`[ ÛålM¢/+÷;œü„å·¹ÄHæ IQ‰±Áš¶Gí ¤bÂB~ÑÔèåÔ¥ý'¢äìî]¿ijà %¶v0Ê9˜42Rë§Õ½‚ý¦®Æ¥aËf‡ÎzÑ"> Ä©úhû&æ&êîêN.Π¤Ô2ƒ”Øj؆(gCh‚Týä„‚¥¢–Ÿ¸ø]y°nFS´?æà€(J.A Äp§‰S·|4dе¹sŸ(*ÃʼnPCÙ%PVÃF9kF"lðÍÐ *¾,ÞžÓÁ%ÊUAªxÕʪY3ÁΆ…2CÅöȰJ®êya[ ÛålMíU79arnÙwå!›2@Ò!ýÅV4ú‰~èí}ƒ} •mX^£ÃB¯Æ %¶v0Ê9Xó®Ú#È €xûÞ Ó_Š{#ösÑ"> ÄÉHíÑ4`€‰¿û÷íçøí ë2RV¤ÄVÃ6D9B¤ýø,Ï,£•‡èä $ç87µ NщG ¤ ÙŒïTw…˜òõj Rb«a£œƒ5û).H5ƒDìULâøÓŸkvÒpí4ÄoQR¨»õ×Îñ)IÔ° QΆ)"#ELNøÏ|©ÿÆ´ðk£Ö ¦(9)Ÿ°ðÞCdzæ7åÕ¤ÄVÃF9“1HyFy©pTCb¤|Y¬nNCîkõp@ݪ½Ç´E%ØXj(_ê(«a¢œ ¡ RÜ9RÀÁ¢âËRì„à¶œ¶àUq@*(*RÍycGf¦¬ƒ”$jØÁ(ç`2©•a«`¦™Ë%HùsXÝ]7µФxßkP¼j%xå0ÀG¤$QÃ6D9B¤¸«ö€ƒW°ï³˜Ï4© Q›¦†ë¥(¹©ð˜¨‘N®-˜í£œx5)±Õ°ƒQÎÁd RšAZÖ‘¶Š R£­þÇlkÁ¶iü)IÔ° QΆÐ©´¯Ï‘"@ŠoÄ$Æ©uv<ê¢8 µÒ“£ì;baèÁ^AJl5ì`”s0Y‚”]”Cç Îá1‘ R‹\}`h­fmâû))IÔ° QΆ¨ RV±6½‚{ÁP”|€”a@h;û-Áó10HI¢†Œr&HUÕü 9 ƒÔ¼ÐyKÖ%$^%¤<=ßBrÕ`ø):¶¼êz¶rŸ>Œ5¦©j y" /u”ÕDu06WE¢ ÉpÔÁØPnámòD@Ú¡&e‚KBAJ'|šnŒ9‰ %ñ$Ô]‚ÃULéªl5ËH+¡^ R({v°¦Æ ¹jòá`â€ä¸ Ra1ªU·(wø”2Ì)„çeÒÕ`@ T;àØÆú@;V{OŽ—„ ÏË05QV©Œ ®&ª ÉpÔÁØ€jbØ䉀´!¢Ž”A ~, ©ð„HeŽrDÊsAJ†cI°ý2##5Ìü'²÷ ãÕ0 …²ç`»¦:˜h UsësÚ×_éŠu‚AÊ$Ò¬OÈ ®Z|â AÊÅ%‰«æá‘%áÉCM0BEÅÔfVÜ›æØ] 8{ó–`éD:(«‰1êÛPtìE®Zl\¥„6$óQ'؆ò‹r…ÞÕ µ!‘N„PâU“H‰:–ƒÔþX×Ñá µ¤äk‚”ÌÇRxTøvç€öF~ ¿4ó ÷hžûÞè¨av‘s}RT‚:%ßj×BA eÏÁ&ÍQ'&³ŒÔ¬ÐÙ«ÃÖp/9EÈH¹3™],"2¦O`Oš¸Â)±«áû9ÊÝÏQ4#5°ž„ØÌ…¦ôaÞÌ>ª‡évþLwާ2[Ùžã€AJ j؆(gC”©ñaô£ ä ¤Òþ ™aŨ[+s8 ¯»‡¥PTÝÜói¡Ó—„-Õ«1H‰­†Œr&š2E/|›œ¸Ÿ[eNïåÄtf±ê3R³¼™m逥ÍdϚƞIQ¤$TÃ6D9¢HE$F+q”Ø ÁrR\§5a†ªš0|Â"À¾t 2G¼b’šv0Ê9˜ @J£æå.o •ö/Ý?pŠV?GjŒk`{º®GE¹q<”ÙÊ.7 RÒQÃ6D9¢H™Äš (*EQ¤ÜCÃUL–ì/?¥·"lå´Ðébx5)±Õ°ƒQÎÁ¤ RžQ^í9Ä (ôAŠ‹A^,V3úR—âí\ö¼©lxŠÂ %¡¶!ÊÙµ@jAÄÂ5‘ëä¤X‘‘]-üu}ƒ Ë ‰÷½ŽQΤ¤©†Œr&mÚ¾}BÈD9)›¥mU÷Ȩ/PÅñiËnëÀq %55lC”³!jTàžöGå¤,'„,t"ÔÂc¢–nŽ>43…k¹‡"û÷Ï«1H‰­†Œr&m{‚%@*€Ã{¤î‘QÜgr.ç¬Ç/Ea’P ÛålˆB ÅNVâ(G%ÆÊHŠ*lS^ÚÖm1mJ< ¹–;*dÔö𤤬†ŒrVWµ¹Øw_=¸+ù¶þSé}Y9Ó¼–ûVogÁô̄俈·©iƒþú$Uȼ8ˆ ® E™÷T¤H²I£/<fŸ4&|¡l-¹¬°Mé‘E§Eù˜Üà–‡§õ­Ì[ˆƒ2¿®§§"5 y3RÖ¶6 € ;ûí´ lKì‹iè‘5ïýœ•Ep¢ßÒ[ïÁ*㌈É} @ ¼¢|Ï„²¾Ÿ£Üý²)›#¶ €ƒ; FûŒ™ãñ÷­HìX2Ÿ\F+gl>Yûä7lÎYy|5o |€¶W”]e5ì`”s0©‚Ô*—ÕýýúËHé~e)»ÅgE…xóòÐÔdÏ RRVÃ6D9¢Hu è´Ói—<á`å´òÂ6¥iÌK\™0*¼2 ƒ”ôÕ°ƒQÎÁ¤ RS<§èxN“3Òýz?ç»±† nœR S«¹ƒ””Õ° QΆ¨R‡ìÛ0ÛX±‘âæÔHŠâ²Ô™;ç;†©Ý|\‹AJújØÁ(ç`R©¾ô¾k]ÖÉHñÞÏ%”qaè@¡áÖ=1( ƒ”„j؆(gCT©u.뀉‰GQh‚wÕp°:b^ Ûr옟±\Ÿ½Q<ŠÂ %¡v0Ê9˜TAJ‰©dhg$O Å{?(Š—¥zFõL¹’AJúj؆(gCT)/©^Så ¤¸RÜ“86¢*ƒ”LÔ°ƒQÎÁ¤Rûí´ l'6E¡ R¼÷s}E…n>v/'÷é'Ea’P Ûålˆ* Õþã×µrRïV´ i{ýÑm R2QÃF9“H­rYÕßO[Î@Š» ÅÍ9[ŠŒ1HÉD Ûålˆ* ¥ÄT2²?$÷ åYêýSÚ<±) ƒ”„jØÁ(ç`Ò©)žSu¬ÕŠÐʹ–AJ&j؆(gC”©ýu9u±)ŠB µ c!`) R²RÃF9“H ô´Üu¹"€TÊ•ô>1}Ŧ( Rªa¢œ Q¤V¹®Òö ÷ uûñ=ÕPÕ w/a’•v0Ê9˜ô@ª³¿ÆÇŠR{ öíÊ×Ç %+5lC”³!J€Ô¯©Ó<§Ë=He^;Ñ/¦Ÿ$…AJB5ì`”s0q@ªªæoÈÁ)+[ëX?˜1kŒGlÎAÊÓó8ü)$Q¤úÇj']NáKHçJ~%¤ O䥎²šH£ƆbãªH´!Y:HÊ-|B¢ AžH"Ô¤ Rðc‰¤ø X麪1±9gI):Á@6çŽlÌÙÜ!_øDBÙs°ƒñݰƒñU¤ Ç /Hí³ß¯¨Ò‘Rð¼L®¤Îß¾ ªzãá„DHÁó2LM”ÕDªcC‚«‰jC²u6$ š6y" mˆ¨#e‚K¼ ¥ ¾ÛQŸ/‘R2t0‚æ¤ýÄ( LHdÊžƒLìš è`¢TÍ­Ïi_¥O(Öñ‚Ô:çõ}è}€Q@`WÅž—|z\\’¸jYžlQÕ¸ åUêûSÚÜÆlt¾ì®à¹R!y)¡ %Ò‰:tPVcÔ ¶¡èØ‹\µØ¸J mH¶£N¨ å=ä ½«jC"¡6Ä«&5u,qAÊêH]NÝòˆ/2ó¹jlÎ AJæÐçΓûíÃ:”Þ-oÌF¥åo¸‚BóRBA eÏÁ&µQ'7&¥ŒÔ÷ŸÆxQ„ŒÔª¬ÕGÎÚ &$œ‘o8AVÃ÷s”»ŸC?#eวc@ǦðHn2R…·Nuê.”pFJ¼áY ;åL 9 ¸ 5Æ{ì\÷y|ñ( 0DrvN„?…$ªqAªkdW>8_öšD‚<Ce5‘FŒ EÇ^ цd5ê mÜÕ‘hC'Ò†5)ƒüXâ‚Ô×µýýúóÅ£@f‰ %CèãwÑ~ú„TZþ†DBÙs°ƒñݰƒñU“Òª=m?íÕ.«%Y²G‰U{gnïÖQÔ5zbƒ”HçBqÔ`l>Pu66r¶jo¦ç¬I^“$Y²G‰U{Ûóvš¶užØ %C—@Y ;åLJ ¥å¯µÍq»ÜƒT`{fÊ, R²UÃ6D9B¤FúŒ\è¾HîAjl⸘ê8 R²UÃF9“H)3•%ù¹bª€Ôμ݆E‡0HÉV Ûål}êCï»ÁeƒÜƒ”rˆråý+¤d«†Œr&2òþëV¶ÖrRãLJWDa’­¶!ÊÙú ÕÔ³ä ¤ÎÝ)шМ¢0HI¨†Œr&29¢¨*!E¡R7Ö‚û¹òÚ* R²UÃ6D9B¤Z±Z™Ú™Ê7HETEMNž‚AJæjØÁ(ç`R)‹ƒÝÝä¤NÝ<«¡)9Ea’P Ûålu:ä@JBŠB¤¬ÏÚnÍÕÅ %s5ì`”s0©€”î@ßrRAå¡:ÉÓ0HÉ\ Ûålu23WP—{ZŸ½Ñ¡Ø ƒ”ÌÕ°ƒQÎÁ¤Rv«Gy’{:|Òt[î R2WÃ6D9B¤¬v÷¡÷•{šxlRdU )™«a£œƒI¤Mòš$÷ µ,s…ëy R2WÃ6D9B¤Žlî;\îAª{T¢[§1HÉ\ ;åL* å2s–Ç,¹©Q £ãª1HÉ\ ÛålurX6Þ{¼|ƒÔÅï/¶ jyãÑ R2WÃF9««ÚÜAs›¸ç(G ÿ‘ €TÇ .¡ÉdÞ‚¸6!dÞS‘ É&¾8Í]c/ÛãÙÜq¢Ã µà®2oÁ!óëZqz*Rš7#ed|ÍsøÂ#‹ˆ}I" a².nQÜ:¸õ/ÿõÓ;É´ ¼¢|Ï„²¾Ÿ£Üý²©/æ:u†ã ùv°~!ãRÆÿúç{R¢ÎÁþ|²K ¬†Œr&òî¿Âf¥|ÛP’fÒq?’BQ¤$TÃ6D9B¤0D[ȧ‚Óí¦ŸzZ E i`„#X¯‰ÔÇß?(Í]¿Ž6Ÿ‹hjg¶_Ä Œð< fÙÌ:ñø)<¤A Cø)‘š ŽswõU)<¤A‚Ž`½%R–—¼™¶âËÂxÂ+°Ñ®:"eÛV¡Äš‹ÚÅçW Há! bˆp£H‰ØTPÅO忝­P¤ð F8‚õ–Hýô`3Á‡x¤$²Q;kÖQMM¡ÄÐpŸá×ßÜ‚"…‡4ˆ!Âa‡"õÝT0þ²-E¸§‚²¡²<"…‡4H0ÂŒ‘jiýmŸ?+J_O[ùuEŠ„ltbh[¸DG×`ˆ!*õúCˆašÿøúSZòãÆ²X—ª€+R< '”Ýà|Žpó9®H}D1$:Á¢V¬¸«¬Œlƒã…8Ð?Ë5?–Á)H°^u]z Á¸) b(‚©p)S;³žà~C ùù¡?„<¦uÅP§ý³LóciaO†tëÞ_ŠÊrèà9£Q‡CÙ¹×0Ä?G]—44³: 1„ò@ Ä’Æg‘B?–ÐL‰K° Ó“'#Ût‘úÓÒüsP@O†të–çHá™9`½4꺤 Áøñ'b”ü•„ò¾ÀŒ–FèO ³ÏA¼þ­”"Åѱ44B_xu]ÒÐ`e¡ÄÊ"úU{&*cbo"|‹\±¢•éŠTy1Wêq!R¤žÓ ÁG0(RÜ?º`èí_↓H•A‘`Äá0„s‘V‚ÑNN‘ANN Å |òáŧԤžÎ‘‚"Å·4H0ÂŒ"¥ê¥ªç¨/üzÿüSJ"ës¤ Hñ! bˆp‚"ÅÝÑç=ÄmË–—22`B80ªß/k‹zßTÏ£EA‘â1 Œpã‡HMvœ¼×eŸðch5ÀPçÅüY)Ó †‡!œ‹Ô1:NºBI0ð0‡Û)o/P±“bÇDA¶y)<%’ÇÞÝUÚ`xHƒ#Áø!RGŽŠ$ä"å®»éØˆ!<¤A C8©båâ!1C„\¤\Œ––-ƒÃC$áÆ‘ºÚÿjßø~B.RΖsŠ5 †ð1D8 á\¤ÎKœ‹(ä"å`¯–7 i`„#?Dª‰Ô$'açã Ì"eç6,k8ÄÒ †‡!œ‹ XÿøN>.Â,RÖR)Ò`xHƒ#Áø$RCbýL…Y¤(abÉb÷Ÿw@ < bˆp¿H Žlîg)Ì"E‰O|í§ë`Oƒ#Áø$Rc£Æ8 Ô"¡–§VÕ^ 1$ð4ˆ!Âaÿ"5:j´N ®p‹Ôœb‚;%`Oƒ#Áø$RsÂçl nn‘Z_¹!¦9bHàiC„ÃþEjfø¬MÔÍÂ-R{ªöú×A‚ < Œpã“H­¡®6_¸EÊ윅u­-ÄÀÓ †‡!ü‹ÔªÕ  ·H9\r>rÖLài`„#ŸDjoà¾ñ‘ã…[¤"›b6Û1$ð4ˆ!Âaÿ"¥´o|Ôá©ô›Ù‹K—@‚ < Œpã“H™ùYÈÇÊ ·HpiD–*ÄÀÓ †‡!ü‹”©¿9`B-RoȦÊB‚ < ŒpãF¤ZZÿC9 è"åêíÞ/¾xî®G‰I—1)*õúCˆaÀÐ×OeRe®?¹Å‚/WþÀC(Ê:žÓ8uh0”›ß‚!†5êPbètÍ3 1„ò@ Ä’Æg‘â€`_EÊÕǃF0÷îz”˜|C‘ Ás”2”j;®B‚ažÆÑ¨ƒ#Á¸)”ã†Q¤À3˜Ï™ùY0Õ# E ½/c›†`hQéâÌ[¹lù‚†Ðû2šžxN㨠±îÆ)†5êPbˆE7.0„ò@ ÄÒ‡Ï"ÅÁ¾Šx;ØÔßœ©a(R‚%Øê£kã®'A‚ažÆQ7H0ÂŒ3‘jmÿ·âë_éc«u]Dj|äø½ûÅ(.þ,=-1é"åï_LO >ÎãÁæ4 ÁÉ93« 6LÉríú;z ÛY[ qt Ø<§q1êXc(;·ž–›ƒG vÔ±ÅPõ¹'ô@¶³:¶âè@°ÅcßDŠc‚1ˆÔ„È {‚´Å(.‘`ì×¥ð<–‚Y×ÚÖ˜@‚A‚ñgÔ Áø·"µ0lÑŠ½"•~3{~É8ŸÃ<£np>G¸ù!V¤–†j‚î©ÂÖÒé…3 Á0Oã¨$áÆHC9 EjgÖ¤ÈÉÝõ(.¾C‘òó+B1L#‘#&R"HÖA¤81’•dûˆù¬C ¡<(‡žÓ8uh0”{ C jԡĘÕaˆ!”%†4>‹c©=A{™^¸—pC‘Á:EªíùCÉ©;?ßï M`Ü¥q4ê ÁG0>]µžÍüÌñvázÏEy1LC0jvÑœ";ùèúæìqÃ#†8:¢“†Cè Ï£%†PJ ¡,!»jŽÂ-Ræ5F³B×m©ûé!· ‚â1 bˆp"„H’Œ“´òµN‘úJ0« 6Ú9àTP€i`„#ÿD ÔˆèºzÂ-Ry‚ûE*}Ê=ƒ †xLƒ"†ˆ"Rã¢Æiín‘*¿“'£§‚Lƒ#Áø*RsÃæ®¥®j‘z”–ß7iHuÇ(R‚Jƒ"†ˆ"R=o.L"u»±â‡XùØ6H0¥A‚Ž`|©-Á[§GLb‘êè¨[â”>óèçËnC‚Jƒ"†ˆ"RÚA{ÇEj‘z”ž ¾ÓùŠ'$˜ Ò ÁG0¾Š”©Ÿ/ç›ãy@tbèéåª,ÙKa-9sŠçB * bˆp"ŠHÙù:ŠÅtóöV‘B¦‚Z—Ò”,„T$áÆW‘r÷ò”ˆ“´ö±N‘z~ÏÎ/né…ŽûÏɧ¾ô°bH iC„ÃQD ÔÐ¥ÃG„T¤¾L/üÜ!›*Ûðø$˜@Ò ÁG0¾Š¨I‘“´‚´„S¤8¢sFߦÖbH iC„ÃDj^ØüU!«…S¤¾N;^þ¼ëä7¾Ýƒã% Œpã·H­¥®ÓÓz‘ª¼rTö¨‡/ŸB ñ? bˆp"Huž&5^8EŠA¹· §Lƒ"%4H0ÂŒß"eèo¤£(ô"j|î„â»åCüOƒ"†$Rö¾N\Ÿ&…ç±Ô…`/ž(e*WÿxŒÿi`„#­koÀ}»¬â_‰DÙì²_øðßåCEnkŠsìCàlGnùòfå†-ÎØ#ð=„ÅXÈgCJààåÁ‡÷ÂH0P£Sg× ö׋ýñê$cíÌvÜšm#ðƒÅXÿ\‹Î;åhzwE*¿¸À²ÔôÔÖ¹6Œ-(«fm²Ñ·F¼< Q)…`<§eg‚ŠÉŠ—L” ÏŠD^rT`ßÀ3žçLxNƒó9ÂÍçp»"UT^  Ù@jsÖ–Ý9ÚŒ-( ‡cÉy~*À—^çŠTf^N˜uQè¦J°AÛΉ”J”JÎKC^rT`ßÀ3ž)ç4H0ÂL"u ëàÊŒUÂ!Rz_]j¯f£E!µ*uõæÔ-P¤øœ1D8 K¤¼‹|G§Œ‘bœ ‹Ûà™îC³RfÎ4€"Åç4H0ÂL"Z¦¤ 4"Ž “IMÉ «ºøof€t¢tBv2)~¦A Cø)mçÎ?èK‰^•YRP^,$XšÜùÓjD,‰µ<£„ˆ"¥÷ýTÑ¢@ÙfÙLEŠÏi`„#˜D ÔÐä¡ÁTá)CéË®7öiJÛz¬‹ÍJž½7m?)~¦A Cø)ÚFiþÇ R`[3c™Až!ØÈÉIe-gM\‘Òû:L[tª‹eäe«$©8d9A‘âg$áÆ'‘Úíôe>·2­´¬ËX¯µ·ó§Aa´ùܲÔ"Š}a¤%î­.•¹é8£yfzJÄé¢)^Ò †‡!‰”U¾Í¬ôÙE%ù»\£$ält"°H1N3¶ï¢DF™&“S&C‘âg$áÆÇ©Âœõ_DÊ)ÏE-e"ØÈÌHi%gET‘¢Ÿª‰¨OÂþŠ«¯•e´¢É3÷¥€"Å·4ˆ!Âaˆp"•Y–-‘(á>"8/½¤`3aEŠq*˜¼ï(p©¬Í'•(=/sH’¢k¶)¾¥A‚Ž`‚©¬¢€¡äü„.Ñóc³Ö;FT¤ÓÊ *¨“¯«8TI·"L/N¥ Hñ’1D8 N¤@MMVW0 *í)Æ© PŸÄƒ´©àQÓJF+ÒË84-e:)¾¥A‚Ž`‚)PsÒæìŽÔ”R»IˆD TNhþU…ºÊƒß¾ã[²pkê6(RüIƒ"†(R%ÚÑûIÔig,|©ñ E…D)Æ4Ä BŠêäë+ ¾}Ç—š—1$iˆS¶+)þ¤A‚Ž`)£Ô#’Ó ó‹„M¤@eGä]Qºz|÷ ä%5+L*Q:4+ŠÒ †‡!ŠÔ—o÷ÒK3 ½"ŘF× üˆÂº!uÇuNÐ[L2ÍÆ$ÍȈ"Ň4H0ÂLP"UàBŠH²ñÿ6Ÿ‹ËÏ‘¢¹TtîåaWNnýrO„Í©[¦,‚"Ň4ˆ!Âaÿ"åäýmå‰d•àPBkŸŸ±À0ÏXøD T^TáU¥«'´«è—ïNcšiEŠi`„#7"ÕÒúÊÁbE Ô¼´ù†9F%¥ ®HQ©'ÐBlÓºûPV\Î¥‘—«ÖŸNËÊŒÏN”O”wÏMÃP¤P”u<§q4êÐ`(7¿C pÔ¡ÁÐéšgbå@‰!$Ï"…~,}·"Õ­ì '§©—V´±U(ô"%À±ÔE†rã ® »Rµý4òÒ)ËeHÒœ¢ëŠž™ ÖÓ8Á6M8ÆH¡7Œ"åàÅ8Ÿ‹·+ µ[åZOMZQöC‘Bï˘§1U¢ÌÄœ‹ã.^q¸9ÃJ%y|bv V"…Þ—ÑôÄsGÝÐ`ˆu7N1$ÀQ‡C,ºq!”%†>|)ôc‰µHå•J'É$—þ„¡H p,u÷¡œÄüË£.ŸÞp&3—ör^ê|­lg E ÏÌ㺧Œ3‘jmÿ·âë_éc«u]W¤ºU^I£d¢\FÙKг¤ì"åï_Lß·ààã<l.Òz²¢ŒäìÚ‰Ïi6U”ýߢŒÝZÙNE·y)ŽÛ¡ƒç4.Fk eç6ÐÓróoðˆ!:Öª>÷„ÈvVÇC¶bLã›Hq:–X‹TiùµYFrýAÏÒŠû<Š”ÀÇS%ÊIÉ¿4îÒ™Ug Šn¤•=“MSr·°ø"…gæ@‚ñsÔ Áø´"Õ“-I_j˜ÃV¡ˆ»"õÅ¥R³ÏO½pv~Mfñ ™D÷L/¸"ÅÅpBÙ Îç7ŸÃçŠT䶦(‡ ºHíð-Ç»¸‘Q rò¸Ârö'HqE ©ì´¼‹/ž]Z“•“p­–<‘íYçlEª7(ç4ŽºA‚Ž`܈1”‚­H9æ9MQÇP¤üüŠÐBlÓX»QzzÖ¹Yç/Ìi2I5SJRŽÏNâ]¤P”CÏi:4Êν†!†8êÐ`Ìê0ÄÊCHŸE å[ˆs쨯þž‘íîz46u²K¡V"%À±ÄBŒ²3ò.L«­Yp.¿ ilò8 =LD ÏÌëiœ`›&ëÅ«öÀ|.Ò®”.R`;|ó±®ßî I„•H¡`žÆö̧ôŒ¬³ókÎO½°8iÉÒMxÕ^/¥¡ÁúÂù¨Cƒ!”…C(K8®ÚCü ¬'‹e’g6']+‘âèèc›ÆÚ²2sÏϾ*8#D:Q&('^µ×Ki`„#X/Š2Ÿþ0ž‘íîz´;kÏêŒ5¢ R4—Ê̪^r¶jÚ©¡ CMÓÍ¡HõFÄá0„[‘ö¶ãX#©ÉgkeOz”S–/•$W’(Ü"Es©ìÜšç.L«ÕO=4:yLZ^&©ÞHƒ#Áz÷>Rˆ?!ó9¦*®0A*Q*£(KDŠVY™§WœI^œ,“ ã—E bˆ—4áÀnE Y‘òØ\qV¼ÎǺGCÚ˜µy{öN¡)šKåäœ]ZS;±vzÒŒ-é[¡HõF$áÖë7äü2ŸÛ\ÁÂæ¤Í1Ê1‘êt©ªõ§6;+'(Çf%@‘Â6 bˆp§HÑÏ‘deZ\*І¹!E–ÄÈ&Éå• ½HÑ*7ç̪³•Ó*åä­³l¡HA‚ñ’&ãÇŠ”û¦Îù¥¸'C²Ïu—2N„Dª³Nn­ÚyXkVܬÔì (R¦A Cø)úU{H1Ê7Ò,Í(.f*IÓÓf˜ä™‰„HuºÔé g%È&Ȇä„C‘Â6 ŒpãÇ9RÀLòKY—05¤¼â…$¶§œã|@p*R4aÒ>:Ûaöæ˜-P¤0Lƒ"†ð)R_ï#E¯­¡iÜã²K™ÜìÀ£ÐK%Y…õ}p>–8©ÎªÚ~š²2*aTrn) Ó ÁG0~\µ‡”®AžÉ²ÒŒBæw0ߟu`qúQ)Pz…c½ÆêE‚"…UÄá0D‘*,/]âŸ4Ç'± Œ‰'O`o+:"ê„vÕ:“usãæu¹³)^Ò ÁG0~üÑâ¯ËN…‹ýg{'ä1‘¤Ô¢4©D©èÂXQ)P©ÆiJJaä¬Ôä³Vä†}ÚõÎG3S“ñüQÇsÄá0D‘•WZ2Ó;ay`ra·Ù8ŽN#R"Es&Ý£sìçlÙE «4H0ÂŒ"*»¨@Ý#nu`SOÚ”¹”ЍJÔ Péòyƒž©«·®]ózúªwC‡~¾ÑˆÛ:žÓ †‡!‰¨ìÒ’ñîqÛÂÒº­W•ŒHQu)t)‘•kœ?ÜoøáHƒÜŒ´s6Vû÷©`NFž)ç4H0ÂŒ¯"*£ `œ[¬vxj÷EÆJ$J¦¥‰ He¥&×L<„*åàŠ|µWkløãÇ}üôŸu<§A CÄ)P)EÅ*Î1‡c3»´[ä“ÕÓÔEM¤@%P¨²Ùš²Ï§L¹»n-˜ þ§‚ܦA‚Ž`´®|®ÌâO*NV‰÷ºÿhy¦Ž^.•ÿ»$ðºæTþfÚŠPïSƒBä©'FÐ&vß7a*ä³! %ðwÊÑðòÔL-|¯àÚ…c¥ÿ(%õ+º Ø_>ÿëXáÇk‡ ¡J{†— -Í”¬*ã}ø¾ S üs-:èÝ©çoß0­«•ܒНßîÒ~æá¹¡™Cÿúœé¿&Ø=*ðäé§'O:ûu$"¤uÓrS’n­^U·{Øà½Àîµv´aU íÅ»_°*öãÓGXH ¥öTà³Áâ§L Wã¤{špÌçp»"õúÃ[UÛñp°KBé­»Œñw’ç”j0í-É–Xæcéè•+ï*+î1”§Êï×ÝÒ2s³_¨O>gc6x/øèÅS¬ ¤½ûçVÒžýú «i¡‘á=øX±ø)Ó‚ãÁ#R Žß¹7Ô5ñÔݶ.í«*Wû7ŠšHE®XѪ¬ŒlÏ'ïê+³!æÐ³‰OY˜C‘‚"Å"M80DP‘uân›"àØýé-/ßÿª^8%ã^¶H‰TáܹgÔÕÁ†Þ~=0ÔKËöswݺÆýû HA‘b‘&˜Hʨ¿tµã!c㩇g•³TþòT¤DÊðÀW22IK– /-ÓÏI…Kl–N…"EŠEšp`ˆ¸"*«éàØµÇOè-í%jùj/Þÿ":"½jÕ]d{¾˜ JïH0{¡>¹ÆÆŠ)iÂA0AЍ€ê«£¼So?û™±qݱ žõ>"%Ràá¶eËK™Veå3“'¿™¶âúøÁâáƒgÅ®ˆOI€"Eª§4áÀ¡E TØ…†1>i·^<£·,,_q3ZtDÊXGL“—.E^š¥Ÿ’Œ^+““ž E Š‹4á ˜€E ”yIõ,jNÇëô–šŸ.*f(>xóX¤D < ŒX¹²@C£Þ¥25>Ö<*¼oØÄ‘q“ÂS" Ha%Rù[g½”$ýÔ÷ý˜E•ÎP¤ð€!¢‹(ד'd>øåòòÔOÕó‡?}÷RDD <<¶mSÁ»**Õêê´ e&‹”]š°=#7 Š©žÒ„ƒ`‚©goßìH­X_òô·×ôÆ­'·;]u5‘bLCÈ:2®ÀòAñŠžÉ^P¤0©›‹·ç;{‡{[WÍþgô®x*)ÁcHD ”^^Õ’¨Âgï~E^n<¹Ù©ÞUtD <Œuu#W­*œ;LsÒS-ÂûFŒRO˜Ÿ’›E ŠÓ4á ˜àE Ôã_^-Ž,ÐÍ9Ao¹ô¤N!]¡íu‡ˆ‹(›È„^Äã¥t’t¡HaøÕ^„ÑÔOЫӂ H CÂ!R¯>¼ÕJ¯\ŸXúâßÀ˦—-òéƒo¼º-:"ETt^µÊ.!±?uö°„±‘9ÑP¤0©Âís^!kêc—w§B‘ÂÁp!R Ú^>ŸäŸá|ì½Eûô^³ZK(RˆKI89+ÄÓHœ™E ‘ v<3AæÅFÛPøÕ0$"êÙ»_—DêåU!/êœ7žÜ,Ê"Ê1!UÌo£t ‡,'(R¼‹Ô­¥ZEîþQþv§fIÿ3F;)Š”à †‘Õüø±Š{RÌÅFäeË‹Vùtù«O¡H!.%e:=véÄ!6É6P¤x©`×£s›½?!žlŽ HzðË«Y!9v•çÁöÓw/GçŽ)ú±T”E ”SBš„›¹T‚ÜÖ´mé¹™P¤0ùj/Útú'ŵ™¡P¤O0‰í4ó¶;ÇÓoÔé|Õuݱ P¤¾¹”MäŽhóA òK“49Zš‚"õM¤‚œŽÏR@iQP¤øƒ!a)P÷^½í“|®lç¶ŽÍ÷ó/EY¤—’rð ®–<1$;Н"ærVMæÅfÇøÕÆHµ´þ‡ChäéZó'Æ—À¢€K£Û?ýúL5[µ¸­½H…‡ŸÆP¤¨Ôèšn(™ŠÝ¥Ì#×$-œ0Ø*+Œ•?%'yÇŒ´ Q"úØçm«lnf©GµW~ÅP¤®zñîÍ“ö$i …ä°ëÔƒŸy©Ëõ¿ÿøø¶•7íí(ñÚ×p'R§¦z;û@aê54…R¤°'¥¡ÁÐéšgbåÇ%†4>‹z‚¡Ñ¦Æ–?»7^{üDÙ=)£á&Ø^w|½ë5”"U¡Hq4–ÐRHÈIîD q)iÛˆ• {¤¥¤ÌÈÍ*,¾ƒ¡H]møC‘º~ûlEêZÓGÌD*ÌãüÒQ¿ÍÑI ÃædsH0 ÆH¡Ô4”"Õ½[ÌÅF÷¤æÇ´Û¤ÞΘ”?ééo/QŠúU+4½}£ì‰¾[Oz„¸x¶J¶‘2Y=qJOô%$ÄO²Ž\–™œŸ|FÑ.;¢•a(R´>¿^,ö• ¨8þàͽƊéÎw~ã^¤¾u{tC×=‘k‘úƒDú½¤æåb RØŽŽÒÐ`ˆE7.0„òãCH>‹z‚¡©žºÑÿ€ rÖyý‹&4"…~Õ ó±„Ò¸©¯.i” –¬*¶ä>+ÊɈˆe÷e*¨uêî]vz„¡HuöùøËÓ¨ÔÚT0pïùg¿ò"R´n¯8ø SÁ„7Ÿs)R¡®'g+|X–—ŒÂ¢PŠ$ãL¤ZÛÿ­øúWúØj[‘j¾ùžvíúwëRn'.NòÏh{Iû£{‹Ê4³©àà zZxø)EÊß¿˜ž|œ÷¡ÃQ ‘B\JÚ6Ö7ãiiÅ?Gò¢¤8‰Ž IDATåV&­ Mé¶:•” iˆTbBrõp÷²Ü6æbt¹þ }ßЬK±©æ[‘¨ò<‡u—^u¶¿ÊvšTñð"U×ø}÷hëR¼‰TJÚEzZZF=+RØŽ.ÒXc¨úÜz ÛY[ qôñg‹!Æ4¾‰§c­P7î|¦§5¶|îÞXp)`T¾MóÊæ—WüÇBŒBÃ*éi‘‘ì×¥0K¬Ý(  „H¥žàN¤è.å–\Ø%›¤¸5Û&­¨ŽiÏŒÌÔ)6QKc2r²ÀTp¨]^ÜCæbt­ùwú¾¡Y—b-R·îÿý%­ìVº‡tЉêg~ºub¦C Çƒ?¹©¦–÷ßþŸ®ùã³W÷ <“¹©Ë³•>,+8]JKËÈlàQ¤ Á0!W¤2/©^Yðø—W5jÒn½¼ÇZ¤DdEŠq] ¸Ø µ®H ž`܈1 EªùÖ¦íÈ:A ³ZËm'w ‘¤ààr EÊϯý€@Ó e [‘úº.ž‘—þ)‹“K%HmIÚ–Nûj/1~†MäÂݤ¤¨ÄÓ*Nùwî³Ð£Ëõo0©æÛ±©ºÆß0©”ÔZ E ÛqÂQ Y†BùñG‰!$Ï"…ž`hDêÆO¬;Ÿ«í“zæaL’‚Žk= ­ÄP¤8Kh Éß¿˜w‘¢»”{òy°íí«–¬6,i˜Y¦EŠ‹Oþu*hp­£ƒ¥]kþC‘º}ÿï7÷ö¸úØ´}îlù\_⣜Ñþ†k‘jºù‘B6RÓ/¡ù^¥HA‚ñH0|]µ×¥uš—T?üå騜Ѯ…ÇQJV"…þyškñèçKÑ[|“ý%-–LÔLÒt‹ö³‹qJî¼j¯ìå>·ø—ïò~ÉJ‘õ죷ãjƯöʹúj¯kq%R%‡^Œ>àl£´(”"ÅÑ‘Å6 †PJ ¡,Q¾j¯{ÙUžŸ’£“¢¦bA¶@©J¼‹Gc !¡|°©ïÖ¥:_ÚfÚI;"i9Ó Ñ©ŒÌÔÙ¶QK¢2â²³ÀTp˜sQ\Ç^.ÖãH¤@a+Rß ‘B_`| ®Eêù×uº¸XÜV6$YÕÀÌŠk—EM Ù´Q:AZ"dêä‹Ð¤„˜¤j%Ût·¬V¤0©¿ÖúJTœèøå>ídsÇÛ<œl΋H•>„¬„ƒÏ²Þ¥p>N„CB/R¯;ÿ€ÌT¯å0•¥^K¡H1u)P”LëÑÉ£•“”õ2ôc#åì<²;¯Ú+{©ãž°§é?Eê·gn¾Nß}µw‚‡¯ö H1M‚á]¤ž3ܨsUæ¡©¾S¡H¡q)PÑ)1["öŠEŒ"ÅÈ‘v¬«8v ‹â@¤Þ½yÜ”è'I¡ìýwƹ\»y”7‘ú1%2’ôe©?‚d›ÔJ¤^ŒÞE¤^ŒE ?‘zñÇoó|+ÇØY‹ÇŠïuØ Eª'—åœå2;e¶L¢´œÿšy1!qÙY`*¨l›ésŸ¯+Rï>7”ùI8ûüãcÚÉæn?ru²9&"Unxä…ª*mM]UlC‘ÂÁ RϿިÓ)ý¶d´äv›íP¤PºRÉ[²­äÓOÏŸawÎáÌsü©ï X”“óàî.ÅñŠ»sÒ»˜_¨_›ò€¨Úñ_Dê/11(RøÁ(ˆ¨’²‡SF¸ï5ÈÄÊŠ —œM]»²o¬)tB/3­Ó7îaaQˆÔ?ß< Oñ—¢Mö$–yÞ¼Š7‘ú9;&Ša*Xù•H•t™ ¢w)H0>Œ"õ¼óF²v‰ 6ÊEÊ1;EŠ#—7´&7¤iÛ%Ÿ&?%o*å¬uá’Û÷zO¤Ê»u)OïQ|)§0g½½õ.ë'zM_d+á¾™T£Fú8à †ž«Â)aHDD ‘)ƒ)ÁŠ3'Mb£JæB†«ø•ݦ_-M½7ξ'Ó´ÿ£²±bö!ìÆ’ DŠ…KJÍM7Ë´˜¾€kç‰]É7Òî?{À/‘ú®€E9» îîR¯H±,¦"õRuD×5uUU(Rø!aD ”Uâ=)rȘ€‰ê~êP¤8r© †[Üzp7¥1]§Jo\ÎxÀ¦MG7û_ <×Vß”D>M™±N6BV!XAÓ\SO_ÏÅÈ5Ô#¬ÄàÐÿ¯&‘Jކ"… ‰ŽH:L¶’µö—ŒTXë¾–ýÊ“™öéo"eº»jÊü䃆Öfu}–œäu³±$@‘bíR™w6¯{ØàyÅ{^É|™T™MÇ6G4F7?néU‘:~Æ»ûTÐÛg4ŸE*Ø7¤]Y¬ËšúßbbP¤ðC0"‰œoî"oå-%½Þa=)¦.5uÐ&•Þâj›©«ŸUÑÃ=¢ÎÝ­õ¾è»¡b“r† ª•e«ìÎ9¤5f^½ßÀ‹H]n̢δ·—Ï`û‹0ôäî©4Ke1ô—Å1õGòS®§»^tßsR{FÁL‰D ••ÅnKôwélMØ‘o•@ érÕÞsÕ‰‰ç´EŠ?)‘¥C¶è`+#Áön]EêÛzÕ‘ ‡—¿S˜ã¨ƒÙX¬H±v© †{D5ýtÿ.píÑu²©²Sò§šž3Ͼ•wçé}¡Y‘ vru>D9¼Ž²nŒ×ÉÉåV^Iç'|[S1®Háˆ`) @êžC$b$t-tY‰’¡öQ¹/ ã—¶Ó¿ <â¾væ]ézca£¤/i܉(`Q}ȈK‹’3ŽÏ=‰cÕ´^ ^ =pRgváéé¡Jš%ËŽœ6ò¾è—Ñ” ~z§ã>‘ºÜ˜×eGw)¦Õ“Hµ>n;ßv±àf±U¬¯Ñ‹ q{4K—)Ç3`h¼Ê¢¼Å{£÷¹š»¥ÎJ»8åÒmƒ;÷2ÛlÈôds^ bˆ5‘µ›l7ÀSK.b¨©U7Ib-R:Gå;É&¾¬pË Ç’ÀE q)0ÔwÈ ·x9åéäT0»Ùæƒç?•´–[œ'kÏ•L‘œ”?yß©! a§Úª|Îêú>¶"Õx«Œ:ÛÞA <ƒm¤ñdµwçHeê_=žt“þlgè]¥¿lõðtÇÙøºDëLÛ!›FŒ‹SóP[k³VÏVßÁË‘Znx¤Ëšz™±!)üŒx"elb2ÊÒWÞGS•ªÊ~ÝéˆÖ9©o"e°ãøä¹ñÚ‡,èb¾0ŽMÐ×4®EŠîRޤ!Õå«=”uæNMT]¬åYʶÊ@­Ó$ =F£p®fæ~Ãó&×¼#[bÒZ3‹ÚËN?ª¹úsã­W÷î¿yàAjjýÍ¢,¬Hž!Ó@;RõÏš/?­ýKÚ+rî$ÝN5ËOv¾èjrÖLûäÞ5k5ŠæŽÏ ®Ð?©ÿðÌásŠælªÜ¼%n¿ÙZ+2%0gDÑé•u×Çßh|ýæ–Û­¡÷Û:Ø^µE çA‘µìÐ7HcdðDVw–êaEŠlvè’îòR}1R)œˆ(`Q_ˆK‹ÏLEб€9UÜ=æyÅ{Ëñ­ãrÇ‹'‹OÌ›´íøv‡‹NqÍ ÇîWÝ|ÒŠR¤o•v™ Ò]Ši±)`N5õùIÏ=¬õHŒ±Zé h¨Uµ{~îB¥%±8± ¾V𮿠ãØ}MãE¤@‹êC‰°™YÙDjª®ô¿R¬Tœ4!Ég®õJë;lÔÛ¸Ìx™†•Æ$çI#|FÈËË„É Œí3 ŽvR$R}ãIb±$R¬Ä—ŠLŠR$EŒ …#…N"Qgç“ü5I>Hž»Hnú$gs’ƒÉÖçÛµ-µW³¨‘ÔtA¹áŽÃÝûU?þøíU{P¤ð!Ñ)P«)ö}#Fhx÷|g©ž¾Ú#[Vä”ßí?('6ÃHÑ]j“qbQ]¾ÚCS÷Ÿ=òÒfxÖxÝÑõ“óÕ¥R¤äÒäÔó§¬(_¹"SϦÎ>¨%$õ~FaG鉧§/¾¼zó·Ö‡ïŸ>þðÜ+tºÃTl{‡Mí?}xú Õðæzí‹+HùÏ¿[”x39´)Ü»ÞÏá²³Ù‹ƒÕºoZPºP-OM1C±oB_©péáácæY.ÜäºÃŒbîµÚ+qIbõþ³m~:÷ôÙ+6·?ຠÁø@0ZW"Vfñ§!îâ ò¡ÅM¬z5v ñ(èã·–ÒöÖ_ÆïD|äep[AmrƱ¦ÆÁ3ØæóÝÍM£Ë|ÎÝ}.™qŽ5âõ‘;¯ƒg°-ðß0þ ¡Qv€—‡ÀÕ<ÖþØÓ}cålóŽ2ïð=Á*ã’ðsd™¦ Áˆ-R ¢«ªûGŽÛ]vH5u{n~«¶®áʱ+û–P£êaâQ8)>ŠNæCLKÄE ÔŽ¶aq«¦´ðsd™¦ Á/R ìJòúÆò=þ}ûŶŠã?Ìo»Ü|­©ê¾ñâ?¿.ŒçoÓ5ÄÆ£ H gæCL Ѝ¦¶VÙè™ãR–µ>le‘âC è¤a Ƽ3±0ÔÓ¹PÛ3úÅÉæ^)ëñd©î_íUü#‰‚"%´i˜B 1-(RH]¼{}`ô˜õAK>O›úŸ„x~’šE ó@ÑIÃ<Œygbaˆ…ÍL8,;ìtã(R½(:i˜B 1-(RôªçCŠÓüvëÅž\ ŠLã $óÎÄ 1ª»Ñ4,zÝà8õK7ê¡Hõj è¤a1Ä´ HÑëóÔ)?!)“ŽNÿ"RŸ§M…"…çÝÃsæ`Ì; C¬Ýè|Ó5騋f}PWÿWB<·EGB‘ÂLá~E*4´ [‘¢RO ^¦¡ Äsú@QûÕ¡ÁÐéšgbå%†4>‹” ÆÖ¢.^ý­KK5‹æRg2¹©ÈÈjlE ~ ¹KC(j¿:á 7"…’/ØvûˆN¤ê\ÓÆON¡-Œ—Ús-RèW­PŽ~tCÙÏi‚ꆲ§ÓÐ`ˆE7.0„ò‹CH>‹” ÆV¤˜öÉðÉ”“®ŽãT¤Ð¯ZÁa¯¦ ªÊž`<Œ3‘jmÿ·âëŸ;f«ulw‚£´ìDª¦ö\êÝÄ™´«ö¦¨Ç12$ïl!§"XJß74ëRl‡Ž¿1=08ø8‘£4¶xNã4PÔ~u¬1T}î =í¬Ž-†8úÀ²ÅcßDJàc¡P—ëßÐÓº¯K8)†(ºT¹¡)Ûù”­’ÖdýºEÐÖ¥(;,}‡t¶K‘½ÖY’9)ø1ä.Ó@QûÕ Á„mEª{Ÿ«À!aCŠj»ÞôœµHÁ)\¥ ªÊžLŽù\‘b½"…T•ù©1cô+#C¦g‘BÊn:9ˆòÒ”ìªNvÝaI1¶´]E íGvч+R|LT7”=!Áx$7"D C¾ LûˆN¤jjîÚx£ÙÃÈshØÐ‚+ÅœŠT``)¶"åçW„rxa˜†2ÏièEíW‡C`V‡!†P~`QbIã³H `lEêòµ7=þ´£ý¢ÞåYž³Ö•nhypHÍ8ÚýGF–~â}\‰ür—†>PÔ~uÂA0a»jy56ûhûŽœr9^µÓˆy ¡,”BYðª=¦h®ÚcUí ZkÖÍ)ÐÈ)û•­HM±¤tk·YFJ¶5…Wí‰@æ`Ì; C\Ѝúæè 1òÑò¡ç#؈”¡ùKä ƒÐ‰FF_[7™x*ÐÃ%-ÜVB‘…4Ì!†˜)êÇöëëZôm M£m¿—C‘²^O–#;ëÁÛˆFæ`Ì; CÜ‹¨óÍYs³bܪ=Q¬HYL±¤ÒEê°‘ýD3‡MFÆú†šæ!ý,ì÷A‘4Ì!†˜)Ϊ­ý†f‹·NœxŒø*÷U¨EÊz 9„©EA‘Ö4Ì!Á˜w&†x©–æ†cÍeêe*ñÃÌNZp$RŒ=cï–.ZP¤D ó@ˆ!¦EŠãjm¿¢Þ¼”*)¯ nJ6e#R6+ÈTY²S‹‚"%¬i˜B‚1ïL, ñ(R4—*n>¥zj\ÂøuY&‡ s,R†f‹-B†˜š‚"%i˜B 1-(R\TeÞ¿UJ§ç%N𠮍k£÷ÕŠ(›Éá¤/w@°ÉÒÒÄÒKê[ (-(R"†y $óÎÄÂï"Es©¤æZ¥Úyq•B”˜àD¤LW™ÉšÙîíÖσó@ÑIÃ<bˆiA‘â¢@š­¡]õàê”ù)K=5%b$6¸ld{ãÍž Ïãó@ÑIÃ<Œygba‘¢¹Thsý› JFIn£lC'RfË̓iÕõDs(RB›†y ÄÓ‚"ÅH²3°?'w.~iü.‡ÝrQr'QŒ HÁ´^ „cÞ™XÂJ¤@5~]#S³‰¼ITQËa)QNÃ<Œy犯uOD«ìÿ.Í}pQóaEùÿLó’d’ óbÊ+þOð; …P€(;ÀËCà¿jüT¦^{cŸ¦Ì%×kÄëã; J'[iUö¦·ÿÓ°`a[Ä"ÁV¤°M{ðì1¨üÔ²àæmÃV°]Ý~aZÁôeeËë6#?EY -*6«i†FFV¾'%ئ™˜šbX8³Â1Ÿ)lÓÞ|ø½K•n»ÖHj²ÝrâDk;xùðíS£ &Š™CÃ[¢^xÛ½?½@ZqEVÒÜ==0,hlbŒU´ÃXH#S(XHsptÀ° Áø@0(R.uÿ§ËƒÎn¥ÉÓýŸ;Ìj,%(ÉAP¤zýxNƒ"E8 A‘â.­‹ U¥µÖHÔ§ÖՈׯÕÍŸ˜TSßñËë O/k”ÎÓ({þé%(RP¤xd¶iÂA0(R_ªÒ¯¹¡OÓi}šK•Ç5GNNRLPÙurOóO7¡HuýxNƒ"E8 A‘â.­»Egúv,µnkj…œSÜÁœ“gÛD´D+f5¼`ÒþÛ#(RP¤¸f¶iÂA0(Rßê˜Í¥J×ÐæsÀ¥n>¾«{Z_!]!äZøÏ~‚"Å8úñœEŠp‚"Å]£ eþbQt¯Ê:T6Z_¾p9qQÕ+e&5ÇÿÜY³‡äÓ»^óxúî%)¡){»iÖ…Ò‡b=ËÖÁŠÿ Eê»*Üzµ‘Ôd³éXaÃu¤¥¼õ˜zþ”…%‹Î¶_€"EýxNƒ"E8 A‘â.­§ïéº×«÷oó¯ßY›P:È)~W^êòò *Y*-Ñ/ÞÿEŠØ"å°ÌŠ2ØÆÎØÞÑÔÞF™b½ÚŠß Eê[•Ç5׈×'éׂç5:yýÒ½ŽŸ¿ñðAÛÏ].¹ J“§œ·¹÷ô)œ§A‘"† Hq—†^¤èÕòì™ÍÑóJnIS¢|&dÏ™¯–y/ŠqEÊÞ~œ•Õb»/RµÆŠ¢dë`EŠÏƒ"õEgúv˜_í†øbYÇØ=iG¯ß¼ô neÅê±9cÓndA‘Âs‡ªdhj1‰L¦-Œ“ÉSÍÌŒ HñCP¤¸KãB¤zþî·ô†›ËcŠd|,§Œ™Z0Û½° ŠEÊÁ~ù!«Ý£¬h7‘@±œOQ²¶·qpt4° P¢ÐeÝÏ/;¤!s°ŠÒ"‚A‘úRiº—‹¢{UšÎ%°Q×ÞfSzf¸GÒ´ÀÌÀScSÇåŽ_X²¨òîI(RøLãL¤ÌXRY˜01Ó1³P$“—B‘â?† Hq—ƵHÑ«áñ³Ò3Ò~‡ÆŒTLe•o[TQ EŠH"åà¸ÐúÀ²„9EAÛÚyE{¿½ƒ·"%dŽ ÅÑÙ'" ¹­vÌÁ(éKšp Šªjÿù§”K +¢ äãdU˜ŸqU̺óÄ®‹ê Há-3‘2E!Ï5ý"UšdŠ¢¹™ )>cŠwi¼‹RÏ~ÿÕ*ñÞ“~‘£¤ã•t²M *Š¡HC¤èßñ9:éÚ:KPvv´§Ø´ò9ÜÙ^Vxk09`!F‹R`Ì;‹2†Ð‹½.Ý¿o^xJÑ5aVhòêB]ÙT9Ó‹–Ç­P¤ð“ÆáŠÔ"=Ê.ÕÎ5ðd‹y4‘2415Ó¶ðB† ã|Â)îÒ°©7_Ï‘ Ï-œf×7|â€8ùÕÉ:ÙeùŒzTV˜ÅÉñ¦¾Þg§²¢(R¸)—eVÈßµ\b³ÏÞÁÁÖÁ{ˆUÈ\{g+Gg¿È‚(ÔɇaÅLrèiÂA0nDª¥õ? ©2 e GilµéʵwLÛï?}{¾nqDÞ ·@µÔ5r©ò:¹ÔØP¶†”•ÝŒ¡H…†ÂP¤¨ÔèG?ŸÓТ©ððÓ_·-5,÷n¦-ŒÞMv@ÑÞmfddæ2˜<ÍŒ|ØÌ͸uh0tºæ†BùC‰!$Ï"%4c«GM-r$RHå”–îŒ÷” ŸñCœ¤ZìZ¿ü(ÐXú^IéÕô…í›7½š>í½²2háQ¤“.a(Raá§0©Ð*lE**ê,†"wþë¶­‰B!‘)*»­ÝZùèü¾Oß.`M­ÂGœJV?Ìj6 Æ#Á˜ŠÔ»ŽÓS)”ÁYßv¾üëíó˜ô@p¨‚öÕ¾|‡’/ØvCÙ“£4¶"ŶOMëÝ#y'ä<ÜE,—^·)(–ÊÚ0)ô WhF?ú©ÿÓ8ê†òZ¼nZŽ”mÌL›ûŠ‘Ý´;ÛÑ,Œ ðW‡C,ºq!”1 }Ï“oŸð§qŸBQÌ}ô;Òk‘‚¡Ñ#.DŠ^NY1£"7ô‰•–š”·D®žbIïÖ@!¿WQîi] ¥H1ëæ½ÜY\ ŸåêIoÜïŒ4†N65e¡GŠúU+”"õµ›Ý ò^¦P¬¿þ”lJqS£„v —S뀱)æ¾åà1’²Âþ»ÆâÜ«2_MH°Þ$‘úý™{ãPWÛ¡_$È- IDATþÙ?×+ý¥ƒ«Î½úóiMî,ß¼rÚ_éc«ulw·µýߊ¯ó$²ä"…!Õ5½¥§õ´.E¯»OY'ÞWus@Û?NR3v}`lp7ÊȺJd».ÅÖ‚‚Êéi¡aU<Š”¿1=-8ø8ŸlÓ8 d+RÁÔ zÚ×u)Ê|2‚6‹Å–Û@‹¡™«<%hº9ÙÀÔ’õ¸Àu¬1T}î =í¬Ž-†8úˆÑ1Ô•'Hý]—â6"(ë#’†­H‰ÁXˆÑ;ŸéihÖ¥˜ŠR©ÅùºŽkÕÝÅûÆ ™KN(zVVÑÚ_M›zÅÙ‰;‘Н¦ï^Bb÷u)ïyÖa "…¬HQ¦’C˜ŠTpð7¢Y—b-I¥ô´“¼‹TXØ1z`ä—u)ûäP‘²›G W¤8¡ØøGä‰Yùô¬PQQUô´Ø¸ó¶^ólÝ m\öØ ìûÖÙÑÊÁ}·{¬¸©Å>ì˜ Ö`ÝDê¯ÆJªjjCy±¯ òÏþxéé缡ùSgŸOåñÎêÑùl>á(1ÄQ7”=9Jã}EªËU{ÎáÑs}<ú-ì'93jµO¬?£Å…‡Õ;U\Ú±ý˜‘Q\D8\‘â¨'ún®Hí5'# ãÊZdW1²ÇvZ£ùnsïÁ4» C³0.À_ÞçsÝxBÇP‘÷ð^Y‘%‚õöнnêëµoÞdœî§µf`Œä2çe®îw·líX¯Hq#R„Z‘¢t)sЧ<%`3¹³[qÇXJÈ2v‹RßV¤œvÙÉu®áIZ¬²wì¼!§ËÒ/gM…ª·nÓgs–'$ë"R.ªf”œúõ¯†’¯ÿìm»¶«¯Ýƒ:ûüÓXæ«[ûC¾IÄC¥±Õ£ú¦·‰R!11[ƒ¼¥©KúÄI ‹Ð0‰¶ùNŽ¿+(vçI !i؉”hŒ­ݸó‘ºâäøjÚ4°QZq';;âd5Ãu†BH?mëùA)Á\‹Tl\5†"\†¡H”`+R¡aÇz)SŠŸÅk"Re¯ç[…N±g#RQQ'í쵬¬•)”àl³P.l™ƒmšpì;‘òpÓ ‹ôxðÀ + ev¼E³è§Vbˆ£4.®ÚC#Rô² ¼­O´¼täÈäeÒ'õÐtFWç­âžÖ¥Ð/5a(Rè8Oãèª=C3§öÚ¦f†¦äÍýÉÞ[Íè?530³e½0ÎÅîa”ô% †PJ ¡,°¥ÙîÝyÒCÈK¬DJÔ†R’x©²Âü÷ÊÊ 2½¥ÁÒâ‡Éº£¼Gq0@'¦(»«ö¸)B]µÇ«HÙÙïì¸;îrlBŸ¾{éáëôÝÂxÕë¡Þ)¤¢£tÈ«f:Kü#;9l“[t ÒþTmÂ1##ŒEÊØRãËé>¡“LLè_OÕ ™`€ÁE°‚üdêϲìþ^ô²cŠœª¹ÌÌŒ—²Ühá'Cû¥…K½›™wž55÷˯1ÍÂxo½YixÆP^ä„î<ùÀ C‰”ÈŒo"êLDØ{åWӦѮڛ6lƒÐ^RTé­eª5˜:xlðØÝq{‹©åÿE ½H™S<}ÿÕž&»¯ö¬¬•nnýe¨[Y+C‘Áz¸ý£ýÓ\á/\uþõ_?·VÍrôxô¯¨ÑâHº´cûåË÷‡9*„Í-±Äq Å˪yÅ2ÐÞ;+Rä)–!ßD Y‘Ò7™lA%¼H!®ïÅxºEØ`c³=zþyÈ®Ú(ÊÌ|#™¬H¡ôÏ`›ÅÙT~³,ÓX`è–Õº÷²¤ÿ‘úÿ5s÷ýŠK´ö†Ú¦àƒo•ûÿDúWuѓت+½‰¡oX~­H‰Áø)R´u©¢‚Ë.N7õõÀs÷ëõÊŽF‰ÖÝ«;Êo”B´²FˆÆ¾€ýÎ^.P¤ØŠx9—¦Hq‹L ¢]<¨}þÅïAÞÀßD긑á55d›J 5 ¨¹©)õßO™çå EŠãóý{Ñ9ì Kö^Ù¹læs#ÉAóÙ-J™™oè2ÕèÉ¥ÿfY¦±ÀÐË=v·+ÎÖUçü¸Zþ¿éÎ×ê/_L}²ÝènÑ™«—OÜ´˜öïÐÝ-—ù¡_®'öÿö›·^Õü¹—EJx Æg‘BUee'ܪ V×X¬·P÷P;pRĤ ÁL|MÑ)”ç^»pÒ—D¬¨Ú´F7ï¨o¿õ¦Ä)ë­†7H Øòõö:o0Ð¥j­rÂx×2q1›ï³E:ý‡X)©H‰~ »*ˆ#mµ#NñÓ6_$d"E ‚Á;›óC¤âÂÃ~2䌮½¥úàÁ:5-ÃmòTyu_u]ª>ãý<¡H±y|ÿ^öñ·tÞ‚¤•½žIQ3g#RkQß-Œƒ!)úv]Ìò¿G¾~•¡ÃÕS-6³ÿžlÑ|•/bWØ‹þ€ÓãH}=GÊÏÎ?sMV¥j¥ëJ×¥ŽKå£å%ã$Õ#Ô7oD-U߯Hñº…‘bqß·¡ítÝu—ù­FÖ?Z¾O¬ä@êôqÞÛv:[ÚÚkiQÆ‹^PÆÙÙï2‘"Á HñC¤@å9;½UòDM­eù²§jÀ6híñ‰.]—š/•ˆ’˜<['V786Š›Ï"µÀjùÅÑ!¤þq$ßM¤™>ÿ#‘>Ë<¾EߌÖÁÐkùÄÇâ´Æÿ“}iá6C¾Y–iì1tµôÁ\…÷æùW‘—uÅF“ÀûúŸÄ¬Gyzõ (R½M0<‹ÝÂG”Í,¯¯K››¦c¥3#|†\¬"Uk©kõüõ½œ H!eI!Ç—þ¸Í{Û‚ Ê#ûƉõTê¸`¨—Öbs³ïOœ²³×Zeºƒ-·sûè6ÙÀ‡úOù±ÕÚN´;sZ‡®Ÿú³$ŸEŠO"E[—Š?flD»”q×ûHņǥé¤;mp^lµX"FbNÊMçe:fºP¤˜?¸ýjï Yg–ûr©ÐÑýâúö¥N™ç®D*}Π]]Í^ üYjZ ¡©é¡uwûK^Y·ßÊÈ Ú^ÿm?•˜½‚{³,ÓØ`¨®òþ摟Öû4Ö}÷Ó+—*oYÌþGYëÖE\`Šwi„)¤¼½S¶¤V¨¾,}9oiž“­Ó¶ ías‡G?@!Fajø4^…¹H™èéE¯^]8ox6ÖÓ”HÙïtÖZæµlJी£þr‰#dC'‰ù­‘t=2ÝÎm·½»#óÏMôBecHÑÒóVÆoóq±5]6üO™ÙѶäíí¤·¹ÛR Áø@°/"u½µ"$lŽ•Õð ¶qHÞÀŸE MeXe–ϯðYâ¯a«!#6Œ:l±Ë’½û H}÷èú^L¦[ÒN6×Öÿr²ùy223Þf·}º—†Tø°>±ý‚æŒuÞsÐbÓ—…ñh±vv`ÛÜdMÀâaïz™šÙQ+#Ó)RGª½–šè{@po–e+ ]-m[7üÓzïÆ«Ìúœ ú]bìÃò+½!À°66R(y»H‰&Á$Rô 6§.(º"uåÔèSI;’¼\½]=Ý̶o²9H÷ªAC&x̘º`cðƃþ:+lEê|ø×22­Ã†UO™ž_ÉÈxnßÞ«"å¾$ËhŸ×n§Ýk<ÖÎó7ÑsÖ0ß±cŠÅ‰©„«L œ>Ñs½Š“ÑkÿÉÅš¶>‡\˜Ÿfî`nk«I·(£ƒRô ýz`ÛTÇ;j•ê{ååT;›ur² @¤ì¬ Áø@0šH5ß)ïrâ-&$Â?†p(RHKÿ;aNâ¹3N+œf:Ï”ˆ–‰”쫾Æ~­ž©>K…2YgÁx&£ß:cZã÷§jú¬äír~ŠÔáUfáÝÞ‹þþö£-¿œª©ifüIÛjïb·%#ƒG÷‹¡Ò×o…ª“Þs+c†«öVšnZd¹¤\¾s­¸ÿ°²Ý†?5±Ý:ýYŸÎÆ>SN­Û‹Õýø‰¡—+}ÞàË8“»Zêü³yÈõšKW/”Ý1žþïàÍ·k±ŸÏ!<;€ž'<Š”ÈŒˆ"…ø_Âî„ãO^•¸Z<·8xCfxóÁXð#G茑…Zd£UÔÕ3ÃgŒ)'90QJ!\a\à¸Þ3¹-Zí´z›í¶– M 9µ(Ë#”Ʀ,[F7!°ýRV–ëu)ºH™Z›²; li£Û&M¯esüæL š4"l„|”|ÿX1™PY¥`Uµà‰óí×8-ñÐ>l¹ÍÆbÅS‘<6â·–âbD±®`ùG‹mlgY[·±™¡¥ådx`Ø3qÞ]&× «ª'Ywö´÷Ú«ñŒ_£‰5tv  Ã5zC¸)ä)ã#&«ƒŽ)» uÁuÛÇ%éÃûÇõW Ušã1g«õ6ã#(ר¿†Ôûi:ú:›Í6åÅN˜ -%-=(`V÷ƒ*V.+Í LÍ¿®Q˜[Ìú{ü;ÆI[ú€mSCÐÃ>HO¡?[Û".]·ZÛöÈ¡+Ý_ªÆhëb²“üÄÐ_¤NŒ"5hë­Kõ—뎵Yôyhé÷פu™g{ãâa„'ŒbËEJd F\‘¢—¿u@ÎòÜZùÚjùÚKý¯ùkæÓбrËÞî°Ù±Òyå|ùS}§Ž 0(%õCüâ1âÀ±T©ª@³&ûMžé=sžÇ¼%®K@ç €oí´Þ¹—²wy(KÐÍ+~ÔXªc¤Ã(Cׯ(m\vÀè ¨ýÆv›í¥e¾k«å¶V›Ö[¯_a·r™Ã²EN‹ç¹ÌŸã6gª×Ô ¾FŽT QRMQ—Œ‘ìß·_\?éhiåpåqÔq3f,òY¼Æcív—šX›Zi…ÒÞšfæYñºZ ”Py u6ÅK‹âhÑÃÉæLne%oe%mk»ØÞÁi!ÅÈš¹tž=ec¿Lõ£ì¬8GËmw$dš¶ö²±„ãÁHžžžVVº`´xÂn¡¦¡¥¥uâu•S*C‡ 8¸0t¡R´Ò€øªQª`{wànAï¦vÞv{ö. Y:*j”X¼˜bŒ¢zجI¾ZƒœlÂV:Z¹{wù'ÎÎ;ìì&ZDÉÇX è\ß Œ ´x:j?zšìîhÖ²s“];ÿë‘k²Ò×¹ðÿÝñòÔá #†Øò„‘ò„ŠGŒNL¥Ò¹FRÓ^Í"†%geëCr´%¹’ÜuHž»H>›I~+I‹HÁ³H¡“Há£I#HQ ¤èÁ´Š‘Õ_"²)n ¢Hõ‰ï#6@6LL&L”l¨ì0ßa T½T'9Oši;s.yîJÕë­Û±Ǿ]ûô·é“W“ݺ‡ÌIŸ\¨RX%WuµÿÕ&RÛoÐ`YÑz§r74¡yxxØ98,prZEooÄÉÛéË H0,\Œ¶"l«Û|NoÓ¯Þ˜Ïá9í?w©ßýð$âÙ-µÛ·§Ýyšðü÷wŸ~}âéi÷&¯ U›2†eÛ~z‡ÿ ÐøÓÇgŒÿ>yý«i:Ú^¦§üêîú2#õÑÃö‡ÏŸp]è'ÖÏÿxSûôJüí$‹Kä•«”2•dÓdÁ†í‡Ì»…!k5£‹dì7†g†•Ÿ¨>Å´|ýç†GîØjª·ÇÉihŸ(ñs·¥:ç›Ä\ÓUÿG~mÝÑS'³Íߊ)>qI>s¼¤ÆæÐ¯}2µt°ša’CO»ÖÒÌ´zúQO…¤ñ>zž|?ŸcÃW¤ Á„ ­&§½F¢>ß¼<ƒíÞÛ½?+J_O[Ù¥ñßËÿ¬,ïÕ7Ëú 2¦<{}‘bûß4r¾X~üTeæ5½)€`õ•§«rÌS|êšR}¢ŒÓâ‚`4‘ºÞZÑC7îVò¾7C¼¤u©/õÏç—§ÞÜßÚvcðÊ£_ï½¹† ÕÙm·ÞÞM¹ŸntÉtJòlÉXé!™C4+——w¢Š.Ý~v+‘:~ãïQ#?-YüÎàxþ{Ô¨Ÿ«Oa.R­oÚN<:s+xÒ¿µ£' L8!_mkÕv½dеuèõW·_½[qû¾vÖq9§¸µ ¥©õ-Åeÿö¤PH9» ³·— ¤®È/‰/Á|îœÞìkÅNXÑSr’Öíh­ÍÚße‘‹‡5jmÇíÅÃ8ÄÂF ±å " Fô4D2½`Üî•Ýûøûåqe¥Ó[þÊHý¿ñã>~Bõ§¬¹{³lß cg"7ð¼>`+[cK«h핵¶`\c¼jO£óšëwb2^!†xIëQ¤¾Ö¯>ØBÕ=¯¯–º@:UfH†âìâ9[Žo59gêSïŸ~+ë̃š;ÏîsdQOw|Pû:*‚nB`ûïÑ£¹[—ºõänLɽʇ'î$û6˜Ôšm8±qRÁdñq…Œ!sJ4vÞDÊ6% aBæÑ´ë@°ªÒZÁ̉i¶9z~¸gòÔ ,Ÿ3Wî½zI?ÕƒµH­*Kɰ÷ X› ˆTÑéRýñyB=­;MÚ¢#?¨« €g°Í }üîšT<áQ¤>B‚<-ϰQ,À6˜öÞîhæôïÊÿ-þ]±lniêÕ7Ëö 2¦q*RÅgÊXt€ã¢8%˜HßG ÏilE ©w?ýœñâŽFkÃë—û74Ö|5ªî_í]{Ü\vïhTs¬ã%çƒgtWV¬VË›(•* jBžšFñÜÕG×ìªÚs¤ÆÈ_}@Ìõøœ;ùÇÛªN´Ÿ:ßqñò£:P÷3"ÔXzãñíŽçºýäÞóóÚÒ£ݸðà2R'îŸ*m­ÈhÉŽiŠ÷« tºäbqެæÖÉÝk®›]4G5{äÀäR)RÃS&.([¸ã”–ÑÏŸô»ÙçŸ^zôöç. Tˆ?¥ÖÕˆ×o?R¬èšh\\}±ãQ÷sfY‹T—2‘j‹Š@ÎÍ@6ГC }„÷‘â %D$­WvïÓ»?+Ëÿ ¢}£ÇíZT/í›(‹A E §i(EŠ^¯¯ýV3±‘›S5AYHÎ$×Ã$½$ï­$¿ÕgkÎ$…ªÑNÕ¤­99[SLžÜC`V‡ A‘‚iÄÝ=(R¼¤ Á Há4S‘B¾ÑË3cµ"…I½ÉJ=me—oèþŸ½ók"éÃxî,Té"Š]PQPl b»bÅ J‘Þ{Rè"½Y°cEAÅÂyúéÝyzg?{Ár÷mÄHI6É&Ù„ñù?y&“ÉëììÌËogg6æ=ÎÍèbóö;z{.A¯PšÍ.n˜ÕñjÜXy桞”– ú*+Ëpåäv‚rÐoC¤€šøVOT Õ 9X湎6”– S …R5(ªÓ)}Ô`­ÖHá’y^#¤Åà'Ö4Ï ÕÞ麧'–/‚®Þ cùò3²×öë9]1¸ž ÔÄ·z"©Æ¨ˆÎÖK‰£ƒ}7 …R5®@бk•«ò­/ îñ§qÍ9}˜cDßµ7ÇJ?<‰ü®=ÖÈÛý9Aé¼]õü€Ô«±c;Ùtm' u›€§‹ F1¥c…1ý6@ ¨‰oõDRÝ:˜€”˜:)”ªq{k} RÚï¿Ýyœ›EŽTn–О#óÍp@꫌L'‚r$¤Nô÷Ôñ )ô+¹Ûip=€” µ \¢—¨¡¼z"©nL@JL €JÕPRü@ ºz£OKaäðí6ôrü8É)(ªŽaÒàÈm€Pßê‰fFªÍÁ>öÃH:f¤Æ“ G㤚[¾!ؽ`ªÁD³WM®Þø‚ HÕ5¼E¤.^zƒ,H56B¤.…eBÖó\£’ÔnC—£#y©„„jøÆ¬Z·†²ÿr5† Ì|{òôcmf†iC 5!ƒp0A,h:~šH1ŒõXCLÏ ¬kpå`¼€Ì~ƒl1˜%ѬÆU1˜x„ HÁŸµ‚Rðg­`‚übp@ *ÖqcÆèá1?½?®'Š‚ Rð¯ÒWëÞP.ÄT:ù R6³ô!F!ƒp0”´ šV„M¤èy{ê˜Añ?½?ŽÏ]{ÀÁºWÆHµÜù }±Žc%¸Rã(ˆf5šŽ=Ýøõ SíêMÎóRì!©áê¦Z=Œy)öTßôŠ©vñÒkþAêêÍLAŽóRAêàáÛL5bÕñQa£8"#ˆ‰)eªÅÇâÓbxPëÖP .cðƒ¡DÍÙ¿˜‚¯ê8ÚW}˜£ ±ª ¤€ƒ ç`AÓñÓtìêàá;Lµ¬µ1‘ 8'‚+3RÂS㪘‘ôŒôšzˆ86°ûÍzb=#Å´!q¹ž3Rb¡šN8msF z¥Î>‚âÁsU“ 㤠C°ßÀTƒ)ˆf5®šݸ䩆«o©KM¯©«7?"R߆^ã&é{éóRÑÑ%ðYµn %»6ƒÁ|[sö!‚6³ô!†šA 8˜ 4?M¤¾½’“µ‚µø)ô9Ø^ n¸9ص‡R5˜„„ HÁø³M‚Ì€ RŒÛ1Ûi6ÿ ÿâjÝ é“¬Çzx°!˜ví Á%z‰Ê«‡¸bDÊ!¼®¯.ÿ Å•ç «Ö­¥Ÿ£Š—ƒB©)!€”C™ÓÆí%¤âN%`&‰‘ jâ[=‚TBÛœºäöT"&AOŒ €JÕH ¤6™:-w’< 8Œ‰›)F6@ ¨‰oõDR‘¢g;Ï–< „ k(F@ ¥j¤„RsóçÅL‘+HÑ#&~Œ{Êʨö·Ñ1ñÚÉ; ¿!kȪuå¡Ì¦£²9¤ÐÖÏ1pz‰Ê«'*Úam@5”<ʽš?³t)t/AôWXôì÷G9އ÷ûƒù6Æøuùn3÷âCMø 5Ž0n[ÒvHÍ ÆºÇÆFÆbw%Ky$ÙtÌHù„&Ëø$dT¢Ú†ºòPDmôæê­¤ÐÖÏ1pz‰Ê«'*ZE[µ6c­äTô…¸ ‡6H÷D…RV¿¶ð}~áÖÇמ„ÎøWÓúÉÃn2Ï”â]MÈ † —J— ņ1@Ê2(Y¥írèd} IDAT1¼“ÖDÆE·Ã.õÂi‡ÅV¢Û†ºòОn§<H¡­Ÿ bàô5”WOT 5•:Õ.sä”ÃI'—7Ré^‚è¯ÜÝ¿{Ôò$Úèë”GºÉþßý‡¿_zægð¯ú¶§t“Y[f¤xWH…`CeÒeýã rª‘©ƒ^!b¦%¤Š¯—O,Ô…¤ÐÖÏ1pz‰Ê«'š@à’éúÃŒTf†/– çCògÞÚËÊt KEù“ð:ÁPÅã tî´9)ä»— ú+¼RWŸù‘Âü‡é÷UãË·»Í?àGMh µ·xzêôv¨jã'ȆØP”ØTDmôÆC¦¤PØÏ1pz‰Ê«'|¢fÓ¤ÉÒ©ÙV¢Ge¼a3¹ý-F™è•Šò'áu‚¡¸‹ñë®ï ÕÜò ÁîS ¦ Wj)ª¾ñÌ»~U@êã˦ƚ…áú¦ú¨ ߛϞµå7]oýçÓËóÕy·ô¿¾ä¤DØtȪÁ!¤æ›_ù©@l \ºœO¼/”ÎȬƒ^½7`#—ò¹F*!¡¾q «Ö †ÌŽXž îRçë^!R0Ï,Lb¨ ¤$ÆÁ„¬šN8MǤü3FÐÆ1ÒH-ÇR"32Éqi¯4ïŽ)lbªl ΓðDè``hçQ+Ÿ3~@ª¶î‚ %ã¤`öd‹Á,É•<â¤Þüæ[p>ÿÏçÞ>=v¬P>ôDÍÛvBúû÷sz~u/ ÿ %¦CV &!ñ R3ñ³fãé’Š¯ë·ež”© ZRÄÿŒü«4ÄÕ:Áдâé¹W÷u©®Åø)˜g¦ 1ʤ$ÆÁ`•ù÷õ‡r¯¯#ûÿ‡Áü;våçéuÉÜ/Š6A{Ó!§ÆU1Ž µš¶fã^?&H¹ÅºÓ×H)ú·3hí÷õhüðShpž„'BëC3Kge_ÉëR]‹ñR‚p0î@ªåÎתŽ_éãˆu+Á•GAÔØ€QCó¦œy©Î Õ/Þ?;US<0éâ›ô¿ñUåO·eWܱ¤ñR"o:dÕØ³ÑÍÛ¬‚æ¥z)ǧ邱!TÚJÑë¥;JOÊÔÇ:Õ0ïññ¶F*&¦”Y·øøC|Z j`h@Æ€Ë÷®0AêbÃ?LÁóõæ¥8‚Wg–£ ±ª ¤$ÌÁ`©Õ?6øÔòøý‡??bgÿ;Ìéã‡ÏïßÕ~¶ cÍ7(Gƒ‘3RüúŒ»2­Ä-øwFÜÇÖÏ]3O–)ªqUŒ=%f%ÉSä+ª¾2g¤ø)<Y5V:§N%K…‘–ä)F@ †`¿©S+5vUGØ&K°g©n@ª-ž¿y\}¬X9üøÑ7oÿºwvrì…3oÞþóaÓ!«‡nÞá}Ô"ÜⱄqQq±ó•»Žíî R0&HÁ ðø¸jlÀè_99?½•j)(>H=~Øä|´¥þå«Ç¯UVÊ>øš•š‘aÓ!«&8ò÷ƒ(jYÜ®)ÆA ÑÜ ”ØÔœòyé TRèìç‚8\럲¯t[ï~èšyƒüµGŠŠ¦¢ŠŠÍŠS (P³i9ÕÈÔA¯H1ÓâRÆ•Kð—¤ؽÑ_ÙÍHMÑgðÓ´ÌÅÑÛ˜ÉÁÒ¦êþl„5#õþq顊Q^8Œ[ªz⡸ÿ½øaæ €Ôj©plÄ¢¦6v5DQÖXnJ¼@êÖýÿ1WšBa?ÄÀUò6ùslåÇoß¿¾ó)Âè_ ËoºÉ¬-D¯Eˆ¬éD¤Æ¤ÖÐLÓŒi?1ž„×E‰Hýúç]ÅL¥‹ÿ» @J€ÝKý•ýJsHA­ÉH$Å{*ã÷I—›g@¸B¹÷ô>Ü[{Ü)þA*2.jAK)aæHŸd?.oç‰#H•ݨ·o<ó-)´õsA X%?ÿñ)tå¿Òô§ÿ;}{ëå§ÝfÂ|üAïj:©õ„DÔlš2E9"+’™º²¢Ó˜°¦’Ï5R\y²jL :ÔrdÔÞÑÌ·¤Ò½Ñ_9îÚk:jMèõYQ>”óçóGy—/O$ºöÇéÈP·ÙyøÇHñ¯†B½{ù±²¬5[°?>2‚NQø‰ýôçÆGñŠPâR>güÍî …Ú~.ˆÓKÔP^=¡”C¦#㇊ám·ï¤LÄR’1#r>lsõVR‚í^‚诟Ԛ]3Oýz{]n–TÜ*ЦFަí©=ØÒºŸÞâMOŠúpåò·1£¿/úìêôt²ñ_*#âGöMÔÛÁB‰H-ªXœz™@ µý\§—¨¡¼zB)mªöžL{VŠ‚^™÷øÄ}ÔŠý+ëSH ¶{ ¢¿ò RŒ¸öçž•'UƒG’6 ¤hÉÓ\±51+ÿùÇ× :šskïîzRÕøœ‹‚(êSnã-µô¡f¬Ú&i¿°þ)J\@êcyÁÝR¨íç‚8Tû÷ÃkgG´ýÈUtUÀí×o¾úáÒ±½7²ùoïAÓ B­[òÉôDDËΠSj5¯ŒAQÌõRâ¾kO5Kõì ¤Û½Ñ_ù)FÜ{òWRÍÅùcb“vÑR¦¨YŸ±ËÊ>!b)1©nMóË〨ïOjwòÙ+ˆî éÛûÍg:jUðëë×mùo?=N/.Òðl«Xì¥?ÊJ¿.ZÀøJþ­“}ÓÔ4±K~3¦Ô¢÷€TÕÍCcòµX©€”ÀG¨9ª}:TõmÆôÿäå¡W(ÍZ냀â‹Åß¼øüêTM±|Ø©sŸÛ?zþ×…I~ÔA^TRRë–‡&Ru­2¬%ï…‡^Ù¬‹;:òËñayÃY©€”@º— ú+" ňʪÿ*oÞ6N/[°c_Þ°²!öcƒÆ+QTÍOí̽ïõŸ¨©nM©¸lç¸Vã¾n݃ԧ?¡Z=zý¼õUÍI¨V5g[!ºz]¹:W{àù;Wµ&`?»9¿ý÷SLfœBšòJr D?—çÕ¬ZÙ{@*à\ð¶Ã;Hõ6có駃•)Ìž¥zR{÷õuíÙRõäË×¾¶å´þ±áò§()©u…!ïLŸ”äl ·%. QµáÐ&Rï^‚诂TUÇbóº?ø®=Ò€i¬ØpÚñL9rqá…L…å¾õÇÔ<ûø u Õ?˜¦ÈAª#Þ~yuþL T«æ/­o^ß0òÍ zôùéÇʲ+æÅÏ× ›tùRSUÛ®½?ÆŒ)ÝÙ‹f¤f—Ȥz›ƒ±ùôÛôi ~º¯ÒRßfLçNí볨XÆ\•FÿÅðì›PöÛ_­»˜Z'¢egŒ¤Œ²Í´ã¢Ä¤Œ+—$ÕãH ¼{ ¢¿ ¤ŽæÜª‘­ßg{é¬ô¥³f×oï¸s]çú%ÅK™ë³l¢l&Ru•3TÖ]¿žvóů(©®¦ T4CÿQñT”céß¿؉葢¾<ì¨UÔÃ÷Pγ?N ,µÉË—‡2ýó¶Ô>¢žÎ˜ÐÇÛvé?¯ß2pÐÔô…šZ|doY#Õp¯Y>CþÚï¿êmÆ®Iåå;=RÊáAímëËã5¥Ê55­ŸŸ=¸`ˆ¿p±2RTëDBÖ™6Hy(ZXù†½òÁâ÷õþU7­ëö,ù  ƒ­,C(“÷;Wþ=³´ì…OB^ÿ‹ø ÑœÖZçRvKÕÆ=È(oÌ(n8AŠ©e•£°îÒ8Ýd—]‘ÙLJp+N\µ€” Aª)/û£¦æËÓn1}:Ù8ÑXV:Ei©Ã¤þš ë`‚ThñÑ©åÓº7±r0Rh)ú®=;[ˆœî¢ïÚ»7j$”†rºN;y‡¬ öž¶k`Ôê~XÃ>)#úeû’¤UR5geoYN\n‘fáFp'D0x(viY¤]6 tÜÒ2Þ@ª4$èõÀtt®/†^_©«C9ðAÊÛ×Û,ÄlnìÜ)#ú§IÅŽ6Ž6v p‚ÀÈ{+.G«ºV®¿Ïys_/©iÙ+³îäv?°ÅʆHñ¦†H1"$ë!>C"gH0;vYtnDQôŸÂu+ %Pª=}¢¨_CƒoͲ²dSd/ŒVØci)ñ e”cŠoIëÞ@ÄÊÁH‰HAîï—¿uËÑ%K W˜ûõ\ƒBMý# ýC†9K…]ª”ä>ŠéŠCÓ‡Ž%Õ'éÏ&Í6&›×nMÛº3ÍÒ6ÍÖ>Í!©´1„I‹N¤%'ÑRÊœwµLÖN£‘”JKƒ2›¦ie{˜AÅü¨þTÇT³UÔÕF”9º½Á”!ýÈýSO§ÌXG]T|ˆ1ùÄ ˆ¢ –J4(¹üSCɘCþžþ0)ªW”QŒÑª<§¶XÙ)ÞÔ)¥çæ¸/-¿Ø·ÎgI°vÒØé×gmHÊÃHÝsvz¸e3”ˆ'%ʧ*ÚfUBŽëêJ6H-ˆ^°(wg"V@ªW€T§5RI©8ïDÜÖhÜìÜ®…% ˜ÆÆŽ¨ïSDéȾaûˆ:Ęé1þóüV8˜m43±01¶1ží4{†û Ñ¡£5£4’’“¥”’û÷!õÚŠéý0DY…äþЉr¼7“87µ¶dƒñõÁ¸'vzDr§Ø6Ÿ^+šÎøÕ«@ÊÃËS ˜RzµÇ-V6@Š75A€ãŽ^òªçú_ª:w|îz»õôÓ¦8ç¸Â\@ ~ܤÏHM÷#ù«%¨ÑHŒ?%·† I]ºT²AJ5U5¶ä|"VÆ H5·|Cð¨`ªÁäJ#U,H%&A¤È”s|>þ Ò.2͘•%tët;ÃÛbó#ŽuÆwºy÷h¢Áa'GÞví1f¤Bæ1ïñAA$žF¤ªá²j!‰vŠc™M!¦ƒðlF« ‰dÀ´!†šAJbŒ#¨¾ÇH±®‹b¤]KJüÊ,?b¢ï¯¯‚W3IX‘H:ûAjhþ„ H5]ÿŒ,H=ñ°§5RA›†G©Kζ=þ sþüÇŠŠì×HÁüS¤¸r0Ž„”–vŠc™mÁÛTRU$ÆÁx)˜ÕE¶Ì’\©ÁÁ#dA ~1˜xÄH1(Š±Þ¼-]Ϻöœ«5R¯ÔÕY×H²²|7DæÞ½N Å (?±¦»ò? ÿ* NI®Ô8Bœ2cÇGô!‘ X˜6Ä(#d’ƒƒG\Tâê*ÖÕåvíFçì:kaa¡«1:n´y¤Erf÷·ü`‚ü‰+ õöùåË'õýôG G–y_{ôÊ|õ»wÄ÷IïÿÅ HÁŸµê¤Î–ÍL…þw¹àì­ÙïO·åŸ©=éGÈPõh«XHÉ’‰nà˜?Fy9¾kïÙ¤EE…m؀ȟ˜ Å•ƒq„$8ettçGÏ—ã¤Zî|­êø•>ŽXDZ\©qäA Uìo©êøåÂÊýwø©Ø¸rfõó RDâq¦™Ìy^ª[bîÚËΡ_‘üîáMsòxصWüjúCñ×?š8ù³ÁùW¹©°ùùÌY(KÅ-=Âé|]ŒÞÜ%à)z<¿6×''üÁ ÖÌGëõ| ³Ÿ‹îñgMöI™\¸Y‰¦0ÙݺVñr-ñâÙ 'w§Uží= åâë"K”ݰ€”hŽ qAR¤`²jü€Ôì#Ýx]ÖÕT=l7ü±3‡õq7ÂÔšÜçY>ýpéØ^ŒÙü·÷‚_¤-ˆrb2ÐC/ÏËæë¼ã}g†Î”"Ê ŽŸ™mVdm5ùåM IDATü‡—;R õ×ýËŽ‡¯×>{þ׋e 䃪«þaùôùYm3Rg„;#Us¼r[VuÞÙó'ÏÕl§íþ‰¨<«xMuÚþZÙú ^'ËΟ-*/îEµ?~¾÷€Ô¨…ãDZ®¦êÑ@ÄÊÁH ÅÁ8U㙢œ}èsVþ»àβüÊÑçoŸ¾{DÎ¥Êà¯ÝùÖþÑó¿.Lò£ò¢¢Ç†Hñ¦& u/÷f¦!#]så¢}EÜxЉv„t¿´þêéÓV8ÐΗð;#õú¯¢e#½èË¡ÔÄüúäñ»—ïÕŒhöA3ùH*—k¤˜‘ºp*–­dIÙ—0fK%ù<ñbƒRÙģ&iôŠùÒVœ<ÎÓ)q)wwù4yó sx %N@ €)ƬÏ ek8‘e: þ­½'¿P¹Ðð¥ímëß .ßqŠ¢¡Ç†Hñ¦& uµñÒ§áÃY×HýùiÄðÂS6ø !.ü9MµiÀ0ꌥ´ ¹u×øºµ#„Rgê·‰ÐÎ;*gtÐáèmmEÑïè±½ (Á 5/zžv’6kŽÄ8)R¤8²j¼Q”µŸ Qf¯=× õõ9žD›vòÉ?ô·.Ù7¡ì·¿ZÿvE“ âMM,@ Š_ÊK!rz3Ó¾kÏÐJC9ÌOn4'¯4ÎöVÃÿŒÞ']zhÆÄõ忉gSª›Ž‰H¹pÜëföP½½zqÇâ!„¢?¾EI0HÙûÙËe­¬¹)qp0R¤Hq0dÕx©±‰ãŒ¢çtÊälC__æähçÿòëWzæ³ ñ.¶~~ÿ]6@Š75q)ú¼TÓå»i©ôçH¥¥²Ù¯wº©)òà£ôàñ«¥qzÒde9ªâô™÷úeþ’Óø¸Yp E_@UVôó®¼øÕ«g܂ԉ‹§¢ŽÆ,(Z(G“Ÿ[8/í$‰ÉFð)J‚AJ/^Ï Î S¦Ä8)R¤8²j¿ñëË»K2ž.5úóÝ#'=x÷øÎëßï¬6¸XŒ=þ ¦ô^Eòu¼s­ëê#&Kte2d5ò¯=º.îj¹GŸz]Õe±9ƒ¥òOsKQ R&a&êxuOoOî@J¬Œ^›`´&"‰¼ŠgÊÔÁ‰¥ Ü~²ÑÖœ«ÃÏ?‘Ÿ#”‡¤:XeÕÉùOw¦6î1>Ø€ilìu}ë+Ι›2)%hNОU{vlÚ±Îl±±¡«¡®¯îèÐÑšQšjX5Åd)¥äþr89¨­èA’ÂåUã¥Æ*bRFb’Æcâfa"×`‚­0¾Þ¸Nw—ºmóK ZåÌ»"ò†mV¾HYrŠÛ/Š—ƒ)Äf¤¥~Õì=j AäþAjW~¹?–”/µ8dÙÓ§lF„x=ÌHñ¦Ì~UTLßlô ¥ySÃ/ZÔ2xp§2¿ Œ[¼˜·ºñV«žÔøü'Z[_µaÃþï`¤zµ 58‚¢²!ìÙ„Ñycêo6J¼ âM­—;ƒW¤ÂšæVÍÖÌ쉂uî\fmÎœÇ ¶ææ<¨ñ\«nÕøÿ'B#Ô’†æ ­½Q'ñ@ª÷ÚPƒ)(:Ñ|J5K-ïR›2]GDíåšü;ï;lJï³½,’ñ@JЂÀÁff²2 ”0ÌâM-ØÄ"§–ÁƒO˜ðËàÁPÊá­n<ת§ºñùOTvæzí ìAÔ‹™½ÁÁHõ^j0EbC Ëï>lþL×ùNl=ô Ù3-’ñ@JЂÀÁU³57Ç-^\4cô s.ŠÏÿ$ÆÁVU®Ùzp{/q0RÀ†€AáÛPÔ™­½Ú—Zš¸µ¡÷N´m~ W„øø %hAà`@ ¦ ð,é¶>Hù»Y£ùÎÖ»/o¿eîya„¸ìy Å›p0 GPhX¬µW‹ãÒ(És0RÀ†€AáØPúEªj–Ú‘«'`zЕë×OØ?½6ìÚm“;ÿ\ƒ¶ñ@JЂÀÁ€LAá8Xv}žJ¦Êþ¦C½ÐÁx©æ–oL5˜‚\©q4—Êýwµ¡„„j˜]A5˜‚hVƒ/(ˆ¦ãh.IIGø´¡ê«ÇÔ²Òê² ô©sO9ÐÍëM±ÍÚjõXü ¦ 1Ô„ RÀÁ€ƒ Y ¾ ˜:رæšAÙƒµ¤Þé`¼€Ìê"[ fI®Ôà˜ ²6$’b0K¢YMTÅ,áÙük¾nm¨æÚY­½Z>'ý˜ÓÝ=PËõ¦”æÆÑMS›®ì½&’‘³Lb”2H&d5Q³Šƒ»~q|þxæó^è`ÜT˯U¿ÒÇë8V‚+5Ž‚<¨±±•Šý-U¿\]ÕñoC11¥ÌêÅÇâsp¥ÆQÍjÜ ¢éØØJ\\9S ÎU]W‹9£NwŸžUõn(}¦öS­ëU]©¹q|S£^ÓZ3Ó°P;`9Ú«šÐ@ 8p0!«q+(vvñæå)…SÏÞìµf¤Àõœ¨‰ª˜¥€¯ç.µ4Í(20=°…u“KW«º’u­Q¿©qlS¡º¤c-‰Ú f¤x+ Œç’hVU1KÁ;ØÜ’y++V÷r㤠C°º0Õ` r¥ÆÑ\ «:dm(:ºÁAS ¦ šÕà ¢é8š tUǃ 5¶4Ï/]°¼b”`5èªîûÛ}ך ¯4ŽljJh¾r³ó<9²C Y5˜6ÄP2H&d5ø‚âå`+*VB& ìÚã`ÏKoV³Øžènu壒9=þLÙµ¦ùW‡45E6_¹Ñý‚ÄG‚j`מ ƒ5˜‚r0Ó[fôø¸–Þä`¤8ÛÐQÿõOÔûþ‡Á|ÑœþKdn”_™{v÷‚—0ÿaú~˜¸êµýc ¨ñ,ˆ¸ 5ýÒ¼åÀVý‚)o^îÆ_^kZv¥Q½©)°ùʵÖlJ– âM €Pƒ#(»¶ã¹î>½ó7ꀃ½ dž~Y¶ý"1¿ª,û´¥ÎµÕ§Êª*Óí_mwŽºo>®q®ÒW§chK@gAdmèRKÓòŠÓ‹ftãAÇ®5™\iTijòºzå*;’0 Å›) GYkli6©\;¹@ÿÌõZà`í…YßbgCy56zŸ´-•W3³ôýð7œle§÷ÌOš[N•ü3Õå`ÜÇZïâ¿ë#2„$Ø{Ô,‘¶¡¢Êw³Š–.ê<~êZÓæ+ÊMNW¯4p6 ³!R¼©jpt°’ÊóKÌ-ßy6½w;)6TAº1 óóŸŒî |qyeñæøߢТªò|¤óH¥¿Í ½ßÊ~‚s)‰Q³DÔ†,ì-Æf®«ÚðÃÚÌóכ̯6*56Ù\½R×€$̆Hñ¦@ ¨ÁDÊÁvîÙ9!kîªÊ5—[®û¡0ë`Cll¨¢4ó¬¥^«úÊ3%í•UP÷ÏÒøŸž}NE‡ ’,5Ë®6´Û,~¦Ö}i¬~©1‘ºu=sצ m¨ÝlÞÓѶ;nWÆ)oØëû}ŸpÝuÈzèd~2#® HÂl€oj¤€ADl‡Ã•“½îÀÁº)ÌúØ*ð*3â:µ¼¼ªÔÜ7Øl¼ÚÝy•ßmÈÊfÙÊçü õÅ C«–ne •ÝÚYuJýè™Êc²Ö›‹d,5žYÝÄ~óœó·ît2ߘ3Zæó y>Öm6¤¬xb½UOWr\7ȧÊ2–j^i¸Þät•> ¾ùÊ•S°~&]²m€oj0 l—éµj–9ØF— xƒ`à`Ýf}l¨[ºmx|_ieåü/ÊÆg‹«ÊËHM³¾]àAÀ“åý²b*;@Ê|Qw™ý¦6æ[¢¦«”Ó ‡¨É|m•b¿ßõW¸ìØ£¯úAyj€…ÆPãY°'sq^9ê­âÔ°]lhßé4éÅ>‹¡ôþ’oM^Wé‹1M®\9Æ»I˜ âM ¦ƒí2½VÍ [è»r°E¾‹€ƒõX˜õ °¡nm¨vÛôwý¡K·>µ4'탮窒M>`¾O„þ§°ä\ñ·ö¬,¶†h¼V›îgai½~Ê_RCqÛÛ:õöÅÍRÊ%8°!”¨Y²±¡Ý[ò5eŸ±Éަ͆áçWêãs6YÙ2ŠØîž9A§¸Éy“Ýn;ülü%úÆà+ù5 ³!R¼©q7§¶Ëô>5K¾L7BW¯°Ñe#p0v…Yß‚³Â ¸hïZB¾¼²¸¢,45]Æ'3¢’e”£o¼R[ì§QlbåÙ-ýZA/„qCÏܤZA¶v…™ðÇPãY°;ÚN«ôXk‘ïî²í-6‘'*}Vœ]äípØ1(qЈ¸V¶VIó’NËŸ®^Qô’0 Å›\Ûez«š%¦‘¨1;ÜÒÖ8‡ÂU¿º¢Û`´æQù6·_útKU>j“÷©’žß‘Úv=GŸh4ó…­êŽçŠþ;¹ýÓ`ßÓ%mß-¹zGCãɪ­¯è«úœàÜ@ùÔ&ûá¤ó®— ?AŸÆ9]¦µŠüÀAô¥÷çi½[Pp¼¬›O÷Óˆ¯¤çSsÏ«Ò4wäGóx^?äæ…I·ǽ}Í…Ý œžƒŸ"?R”óDì/~p~g»)1r*Ëþwp¦æÿôbò˜=¹ü¾Íújýé ª†¬ú5üÉ~zþ¿SÓ W gŽ0»šöA䂯€á`´ÜZUÚÐmùáÀÁ`f¥ªÞv=÷àù#޵&œbZQyÉ‘ëýDføUba ~Ëkù©çr™¾Ë*¿˜ouŠ”]–pÉHñëø=JKJf/¥4oû§•ç§Ÿ2Õú¤CćG„G"Põ‘ HÍÖΩ€Ô¼¼½ Hš•`@‚wÿºÿ=~;ót…æçMiÜ¿ÿC>=þ¸÷KÍŸ»ÇXN˜=š‘yu|só´k¿ße–A¼£V ÌH á|µÜ»Í1 ñýíâ;¹±OÿÒò¿«ž!mÛe&8DÕÞ‚>‚ÔHT2)Õ'gò*?ÿ$ 1¾bã˜Ï*‹Êˆd)¸ACúé¯B|åšá­šk IdzážRó @0 Á=ÈýƒÔ¬‘û©yxz"%ƒŠ`ðà`!jYjÔŒ à`p ³¾ém6Äžžîm¢µ&ô ¥á€T Áî–™ïáÜ}%{ÓNoÿEiaM~IQQBËé6GTÐj6þ—Yg@Jl@êЭ£²&Ì ž|â‰_ð·ï>è±$š€”@Dç‹ë[{mÑÜT³«¤ö`Ë­æ[ÍE¹re9¿vž‘JO‹­Ü8î“ê‚ Bgºª*ójªiUL -9øÔ …/Zæyd29rÃs)kNQ©±ûWü¤CŒ÷ %6 uø×ãƒÍ žwlâqà`Œ W Hý+'Çà§“0Ã1×41­Ò²5²õ –‚^™i^@ªˆP7W¢¨ƒÅÝ|Z’¼ñô¢r?°FJ @êúý[ÖŶ*x•ðá¿`oßífÙ°!Î@Š75Þ@ªå×(ÃEB¤þÎËþ¤?ù›œô ¥ï<ü=æ V§¾Öv홈ówûÎü9š€”@Dç‹Gê.3R”H³« SÒ(©QÖj}Vœ]•J_lÞ¨!õtW6!¾Ø|ˆIc±9)ò¬Žâ“ ¡è‹ë^ôÜìM#`«ÖŽú†Ñ¼°Ë€ª@ 8W@ ®û•æÿ±®!À`j³°îd­ðqªñªºþ˪ñ7þÆ,_tè…Ö˜/ÒÒÐë¹?6 U¿êýó\|² ¤¨8åú¶·}”ž/±¯)úAŠ Å?H=ÊÍbí Gc&Æ Ó Ô+ )ûßXlˆMâM=ÝÏ |˜¤èJÃ)RzÜ¡5z¯ÛVy¾ax> %>ó”N Ùú¿ÁRPÏÿ<ÄàLXj[ÉØcF/gZ祷A_¼Ã๠ôEég†óŸË<@ M ÕÉÁêFaôb†CVZ¬Û W󮽩Sþ•“ƒ^Ÿå3ïèaKlW9©%û‰$7$}õ!ìÿr)¨‹=Kq ¨n¤PRŸ&ObœÙû*˜m»1#b09ÆÃîÜú¾b¤xScFÒÈVy²g©v‚¤¨“_Íܽ·»ç PBW½“^Tèæ@ = ŒÛ W ΢XW—wZ#E%5­ôRIוÃÿljƒ)œŽy-ÝîY/´Æ’$ú&'÷XãnŠQI„¬Á|è‡r¸õ `C=)ÞÔØ€Ñ=ÝN õTu|)¾žYJg˜å¤ˆá§§¨¼bÎEý$Z¬Kã(©‹G€Åæ()ȯžÀxn¤;X0p0@ ®W •cu¡§]{OÊfÍÆ¬rÄ(¦`ÖÚcò 0/”¤HI H]¸Ûhg­¢š„qÝŒy¤ÐþgéÓ}`Cl€”Îú&+Û>;®…¹§F'ÊÒ52õ –‚^™inAЏø-ëü€9id)ìã¡ ?+<žkQSô/‚@ŠOºt¯ÙÅJB(ç-˜¿ƒÁ ƒTsË7 ¦LA®Ô8ÂS}ã;8ŒÅ\™þZšNQK)âžž=ÃiŸsvY.Îøý£¥gL¢Ò. R8ÜqA*)ù(² •–v A*(º§XtfÜ4ŠÅÏ$¹iÓþRúáîíß{s™æráÒkmÙ!ª Ó†jB)‰q0v3R“ôõ4¦xýnŽRríÈqÛMÍ<+ža¥((ê‚=9ò³”ôZíìØEå\…[UðÈIJ?‹ H%'E¤’’Ž RÂ)Aj_a3œbñ‰3)v?“äõ£&ÿ© Œ 5®Œ‚Y]d‹Á,É•GB‚9kÕueú‘ ˆ¢ –’£È1ˆêh üuT0A F±È] ƒé? Hs [êìÔFBÎÛ]"¶mrþÉ-n¼‹»]!R6 ³´ïÓoqö9X—ºÍÊܳ}öÖcÿY“²“k‚_ŒšEóŽOîEßÝ­H²!·Sd+;#Šîm»»£2Ù!Tpf¨iF’¼R‚ áܱ»Œ=/Sôé{^¦èÿ½7§“¹ hCÈŽQƒiCŒ2B)‰q0ö+Í;ÎoDrn¯åvÛ)^Sú¥I¤êZÄŸ¥4ݹÆ\PÅŒžX æÄL‚Q,ÐÌ'NýÍÁ\BŒííÛ@Èa‹S8ÓÁÆ9ºZwà µkGüL­ûRm¦1‘²Å ʳÝ2³“ƒ‘͸)øÅ §òÂv8XцÔNEd*egx*ÓÁ"iì*š3…4ÿg’¬Bâ’ä3ƒq[Œ+ã¤Zî|­êø•>ŽXDZ\©qäA 54¿aªÁ™—¢ïÚÓÖ¢Ï6ik ôg"QvY.ƒ¨ñ}wýଣâHHéäfõ¨´ÚžŠ…„ÇMó‹³ ,*}¶È5©¯«ÿN: ùsKÔqv³qr6sŽs‹µˆßÏTKÁ㤶νfd[Kyy0ïÚ•9ƒ¾Œróµe-`l¨úvøO[.@ ‡¯fVã¼ÝèÓÓçD¥{’iug¾_`:–ÎL4×p¼tÉ/ûRE‡ZAQs'~JÏ¢ØeìIÛŸ¨,½Ö"WYù/[©k|ɬœ«:Äû0j,GbUHI˜ƒ±©Úúg)ý£mðEZþÍ„©÷3©Ì;zT˳‡ÏlEZ߯õSºÔ´@éà5˜:˜÷ýÛÝéÉÈ‘Ø(/¿žY=ŽóR ‰vŒ©FJ?ÓS1Ÿ€ÈÉÞ‘;![àœØ×ÅÏœBÞCÝÇ;ºìÚã°Í1\Î5Æ<®’©g^Š Hí1Ó<Ûæ»ƒtõÞýg¨¼¶Ø%“#!¥à¾;Päˆ$ÒœH’'‰’J!ï Å÷ ŵ1“ ÝÁˆ~YõLÛWxµ+ByÒ¼&¦OíK’“‰]²= Œ75® ÌH!0#õÆs¤^(I·ßõKÁ¬tÂPç`þR“üŒÔ÷’6ÎQÒn![é$ä¥ëš0RNH)¸†oDpFŠ\V~«4-Ìš%ßzÓQEÙË«¬ì¸¿µ¿+¥âÓä}I¡™*YÛ#um:¹ò©BÅg&®¥­S$+)´¥Ã¬6a‰ÄŒï‹Í9š ¸žë`FŠ·’\©Áy:ëêòn×HU_¹td²T fŽFO… êȤ~8jj'<ªvv|©=ƒãí?Dg¤¾—Üí)í´™Bî]ã!Ú½Ça»cø—°uÎH±à‘ÓŠQo§„Z±äZ­?¢ si…… ÷·öàc¥"<Ž ïK ¥QÉdä`&D såS'~JË ZP-†‡ÊIE˜®Ã¦¤Q¿/6Æm1ÎH11« S ¦ Wjñ¨¡ù b ¥5†uÉÂVkú’…IᓬÃmyDÞ@*|.HU¾šïš¨îâ¾§„v;‡ª´?«ïììЖ™X… HacHùš²¿nv`Ét^«óü„¸Ý¼¬‘Â᪹©LÚŽ üH,•”•A$U¼ ÂR¥¡£ö$áN2Û§ 2œ&S'Ë’åF¥Î• ð]ML¡Ñ:íÚcõ/´!dG„¨,4uvEžIDATLb¨ ¤$ÆÁ8‚Tmý3f:ÃülO»ö˜ ªÞ÷§ÏKA e$-E–CÖZIYåBqƒ ªÚÉæí?ø EH; ¤*_ÍsITwrµi#!+‡`¦ƒMrp´kËŒ¯@¤b£ÒöB6cÓ–LÇÕãÿ‘׉µìŒ\p)%å× E£Ð,ŽB„8‰Fw°P†ƒ¥B–Úqk/€8:r0 Â$é`‡%QiÉJ§]{ÀÁ¸UãÊÁÀ®=d‚#H ðëdC§¼ý"#׸¯QIPÑŠÑÚµ››PX^,€]{Q>q¹J.~mäàì;Ú5a¼‹ûn'—mÎ\£—;#½kÏÆŒ‹iÆ mÊX#üNEŸDƒ°´2µÛÇ ˆ÷aÔª]{B8_A ft]PuÈÅ‚'¡ ‚p ‚*à )Ž·ÿ¸)¸Lw0g³6 ²³÷åš0ÎÑÕjãfÇð®QKíalÚµ-}¬Òc­…>»XsÍq£džLÞ°çDz0A f|)Å. ?(4=¶ ˜©i n¸‘1ä8*5:…¨á‘ºœ„5¥š¥ H8¿VÁ/bF(!šDé4SŒ·?€«&Lb°T·ë¨Š÷–&ø%nuÜ:"b„JŠÊBìB÷Üïh¤(j£Oò¸_-:0È–¾.*lSû[O=·Ä í‹Ð)ëm™ZŠO´ûÿ@Qvv‹[¤U˶Úãñ™Ô]a©êaäØŽådrú0ÔšW¦÷BêBi¢¢túе´uøÈÁ~©ã‚ÄÎ@ŠŸ %„ó…HµïÚÕ¶koÔÈjg§N`AÕ‘Iý šã…‘Ãcfù`¼7`*§ôOJKØ7ul !€@fó)à`Ü)¸jB)ŽQ²·,Ë+ÛÛÌ{±ƒñÜ€¡‰Cç&̳ÀZG…ðHQQ&>É*¾±´ÊïëŸìÑáÉÝÚÉe»K„¼[Ü|Ÿ#e½5oÔ€'cœ‹¢/3÷Ÿ;è½Æ¼מ ¤2i!xõðö¹(:EeQ=3<µæô!) ¡ _’f¢æ´8… ñDQÎ82Çrâ6H á|!RUœ¶ã=9’yûïôXLø*ÌBw9Y¼ì¨¨Q+üW:„:Ʀa‘©€àžIÊ^áƒ11ÈÖÞ_Ý-a¼}Fj‹c¸¼[ì\g¤¬LsGÊ?ÑZäÓ™—vù©¿4Çgwço R4Š9ä`a¤X–}yq´Ø©1›d:Rdi=â4¥ëÉi?Aå”’ÎñœÀÁ¸ RpÕÐRÌ8Pð•jJM^˜l»ÖV7XWš(=?faÒ¢ØQðA*84^ÁåÝÝëʶ;G¨36»ÆMèxü" å¸aÒ?¬÷¤u°ŒQ6[*U¤n[Øuù â EL#*3Ž×+º“` K0‚2bmúº!Á˜¶ŠÞx‹Ät2Û‡ â9H á| ¤ª;¯‘:äâLJ#GúGY;[Ïõœ«œ¨¬?È(ÔhKä¶È}'݃=ø)o¿˜?8c]¹ýVǎǸÆwt±æŽ£Ø”ý:Ýl|ûЍ]›*”¥n.ÚaÓå+ˆƒT!­ÝÁÜ1Ž˜˜åäòdù™é³&FZcÜèæOPôÂ[$ÒÙ>€Ï@ ®jAйF*:(&cSFÙä²Äi‰›¬7iÇi÷O﯑¦a˜2sS¼©GŒ'ü]{\¡ÿ‹Íá² •_ñ}†ÃÚB Šd=Ó©3Ì2,b2ãT”B£-‰&Êyâ×Å‘4ö@ŠŸ %„ó%Lb°›Ûä4j¢o²—·©õæ)ÞSeñ² S#¦G/1‹0ó ò⇨ªzÍ“Í+ª¾úÓü×S7èPt¤ÉÒ£)£WRWzÒ¼Ò3èwî’)”%Qt[KL¥rñ1ÀÁ¸ RpÕÐRÌ`UµNõy¹óI‹’6{nž2Qž$¯@RÐÃë'-1Çš³YV%Ù eïg¿!tƒa¬¡^C–¢ KÕÝD3 Î ¥d}G%bF†)6]Þ ¿ ’˜H……P¤ø RB8_B)ø±¿ø[òö”¸UX¯•Þ›·mÖ Ò‘J“RÅ©j'kÏŒŸµ&ÚdWØ.ï RŒpõr3 0[¹H+QKžª<„¢¹˜ºØ‘æ„ÏHýþt*uSIÞ¿ "-ÜyE9)ÄÕHÁU#êJTuÒuÐk´E´iÌæÙ)F£ £eÒe ´ÒJÕž›Õ0ÄB® –ø-Yé³rך!ö‚l‹ã–mÛÌíÌѵù¯Sª\8˜g4Æ'ãï† ²¡?ô$b&rU»}a 1 ú˜$vKUo7±4%¦ƒ)%Ó‹á`}:L=Nr0(6Égä`sç¬Þ¹zǦŽËƒ‚õ3´2J5JO 8ÑðSp0‰ ®¬WÏHI°ZMþÙúB§èJ ºzßfLï41þÍ`†ð›Ž~Ô2ß%ç¢wª)ñ:_hSL´jàÖ^oWcxc2Ò$¿{­Þ§CUlèÓáBn:Ö#emÑž‹^«@J¼ÎªÔ€ƒ¹©Þ®V`{™uBi¼I£ «9t ÷Ÿ¼<ôú©z¿ð›ŽqÔL5(½Ïö²ÈÏE¯U %^ç UjÀÁÞµ) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³) &NÕC³Ê«‡f5Râu¾Ð¬†òê¡Y åÕC³šÀAª¹å‚GS ¦ šÕ@Ó¦ë=MÓ†jB)З}° é@Ó‰{Óqå`¼€Ìê"[ fI4«¦CO› ù`%£é`Ú£ŒA ô%”´ š4JÔDUŒ+ã¤Zî|­êø•>ŽXDZ\©qD³h:Ðt½­é8Ú«šÐ@ ô%á,h:ÐtâÞt\9˜‘žh:ô´ šV2šÌHñVÍj éÐÓ&h>XÉh:ÎH11« S ¦ šÕ@Ó¦ë=MÓ†jB)З}° é@Ó‰{Óqå``×ÞÿÛ»ƒÔ6‚0ˆÂ÷¿’79K Cvšq$ù«ñ3½¯ë𢅬ëÓp=™†ëÉ´¾µ·5/™†ëÉ4\O¦õï¢-éÉ4\O¦U¤¶æ%Óp=™†ëÉ´ŠT´%=™†ëÉ´ŠÔÖ¼d®'Óp=™V‘ж¤'Óp=™V‘Úš—LÃõd®'Ó*RÑ–ôd®'Ó*R[ó’i¸žLÃõdZE*Ú’žLÃõdZEjk^2 דi¸žL«HE[Ò“i¸žL«HmÍK¦áz2 דi©hKz2 דi©­yÉ4\O¦áz2­"mIO¦áz2­"µ5/™†ëÉ4\O¦U¤¢-éÉ4\O¦U¤¶æ%Óp=™†ëÉ´ŠT´%=™†ëÉ´ŠÔÖ¼d®'Óp=™v®H½}ü|q«Õj=jÝŽ¡ƒëþ¾|§­VëzëÔ ÖÔõi¸žLÃõdZ7R[ó’i¸žLÃõdZíE[Ò“i¸žL«HmÍK¦áz2 דi©hKz2 דi©­yÉ4\O¦áz2­"mIO¦áz2­"µ5/™†ëÉ4\O¦U¤¢-éÉ4\O¦U¤¶æ%Óp=™†ëÉ´ŠT´%=™†ëÉ´ŠÔÖ¼d®'Óp=™V‘ж¤'Óp=™V‘Úš—LÃõd®'Ó*RÑ–ôd®'Ó*R[ó’i¸žLÃõdZE*Ú’žLÃõdZEjk^2 דi¸žL«HE[Ò“i¸žL«HmÍK¦áz2 דiO/R?Þ?pWi2­èŠîûDwðºÑ^\¤z—ž½Ù¢+ºõèN`Ÿ)RuûØÁ'eZÑ9™È›½Ft¡Û3/.R½KH&òf‹¡}Õc§N°sEêý篷_é»[ëîJœ¢ÝÊ´¢+ºïÝÝcè_ÚËŠTïÒk6[tE·Ý©¬©×ÑŠÎÉDÞì5¢ëFêsOÊ´¢s2‘7{èžx#u[‹ØuÒeZÑÝ÷‰îà1t£½¸Hõ.={³EWtëÑ:Áþ;ÙOP:0IEND®B`‚ttfautohint-0.97/doc/img/afii10108-12px-after-hinting.png0000644000175000001440000006244011762631566017640 00000000000000‰PNG  IHDR^R3% IDATxœìÝTYฮJ `Á^°¯ õ·÷º¶U×®QIè½Jz„"bÁŠ Øö ¶U쨨ØÅJ³þ/"D˜Éd¢ssîÉ^2yÉ\r?îÌ„Ðr¿},IIß*WMx{{“8;‰¯ÜÍNÙÙ)ûÂa³“´Z%³Óh´_å…WüDªMMåÙ)ûÂa³“€Geq)ã žÕñàsjœ¯çìänv_8lvØì¿Ðì8§Æ‰‡úlvBðÀ¹:<ð»ŠçÈÝn$®›ýW|á°ÙI™'ê³Ý”ŒGÆ­Ïh]Y`J™ókWÊìänv_8lvØì¿ÄìJ™3ê¶Ù¡óPæ#¨Ï¿Ö ‡Í›ýZ:â§JÄÈ(<«ãÁçÔ8_;ÎÙÉÝì$¾pØì°Ù¡ÙqNõÙìp¶•½vr7;eg§ì ‡ÍNJÀÙVà³Sdj*ÏNÙx€ÌN‘©©<;e_8àA`†Ç›„/4Ú7i +x#Ÿ·qé—Æ5¥ãû}Úx“¸'Pf³Wüd óÎn§ñVóëH÷ü—DÍ®ò gö¯9ù¬ŸÔAÛùë_ÿ¦>—~nUvP/¼Ây¿¾Ê_¿üK‹ZÒÁöc?îÎú6;ÙS“;;àA`ÜylJúR¿T½~·ÿ³~‹O‰7óò_æm_üUFÁ;¦.¿Ù!¥ŸLÁÅõ>óNç½{˜ÏûÅêh¡³«r³“2ûÛýŸæ»Ÿã?É{/?pè×ÖŒü¼âÁ‚ Ê ªà…W8ﻃŸ–Üy™›÷(ýܯæ¼ÿõ7;ÙS“;;àA`¨ùi»}Jº™Wð*/Ñük7§ü|¦þ)o?ë .xQ(]~±ás—•J¬k”}3Oýdõƒ‰oËÞZá  ^xùy Ÿæo¡íb¯Ü_?ò7;õf< õÂÅEŸ/µ‹ö Õî÷ñÒ§þyç‘þÑHï³0%ï}v¾hô7ÍqJ¬k”}3K§þš“ïÞýëÔ-y_JÝTá  ^¸Â¼ò˜ý•þëx¨>C½ðø˜ñ±¯ágÁ™¼÷ò£¾ö Ê/$lêŸâñ­ ï„Ççf5¿ÑêY8çkeþQLÙ7sRbn~脯Ffó¿}SÁ  ^xÅóæ¾»UàÙÿk/–rýÕàA`¨eömü¢7¦LS¢Ü©އ< óvMýÚÕW‰¥„¢oæ¯/™ŒøÚfAÁƒÜÒƒùAÃUðÂ+Ÿ÷yì½±Êýõ·ª-i5öãñ'Ä=œª[êÉÈëwýÌ>¦Ü}ñT|3+nä~…O *TÁ ¯pÞ//òÃæÑE?Öþ:`qá58æñËÏxð!A˜"SSyvʾpÀƒÀ<`vŠLMåÙ)ûÂð€Ù)25•g§ì < ÕãQ°;éKß>ßttÐuŠûn²^¸l³—~2hYų“ûÚUj’qÙ '+ãªßìj25¹³†Šñ(Ø•ø­ÌJšŠßÀ¥7;‰O†:ofõÉ8ŠT÷]$>ÀCõx*ÆãKc…w/ú”Ž6;‰O†:ofõÉ8Š×íûødÕÇïƒGéo¦¥f|ÒБ½iQRÕ*dÏ ==Ò7ÑoqC†Ço¥Uv«Z…šv9ïUŸJþ•¿{3õõéd\ÐfÿdÜKáÉ|2îýü}Ž ‚ܤ£Ù)˜qtymÔW1ã}Œ_æ½UM˜tÒßÈšú÷é<ÔmËæª÷‰ñ ï^ÞèѤÔ´ÙßÄoQx2oâß5ãè’â¾[áɼMŠ<~ãÙCÅxȪɧ¾Æ(©è:ÅcYumvTÄ‘¨Û>ãÞo¶ªFJá¡>—%ýÝö8ÔmHŸLãw‰ÛT&àAJ†êñJ*ºF¯Ä:"/åèɨŒ â¡&—%]VÇÑ“Q%€YSàxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³àxP$ãtÀƒz³F ¯2OŽsq™ò¦äÝžÿðò¡é®4&Åïã¿K)<Àã·Ÿð¨,.e|Á³zïžÜ´aó'®™“ZŒÄë{§FºzÏ>r÷Þóü–ƒóÿ’XJ8\ß ´‹ùdá3ã¹øðÀœt¥à?é˜ñH¿\@"8“Nn‘!ñ…ãÄC}6;!xà\áñòYtTÐÄÃÙ׎Jþ.î0rÏï4ˆ¸øàU¥åO Â_Jp–!œx”^]ÅxàÿsOâ0¯«<ð¯Žùº¤àAn• quœSãÄC}¶›’ñȸõ9©äëÑ1 éãµ4Qh¼åÚÃWRâ9c‹ñx“æÒ&z]g&ÍÖkdâ EE._+”OíOQ<¥$ `›|v6{7æ:‚ ‹Wòä³§]ÂØ`KºR2ž‹œIlj‡²’ŽKò©ñô$&Ü"Câ ÇŒ‡ºmvõë<¾ x ^„R¥ð<ß~vÀCùq!#Is—(UJÀðøíg<‰¢³­úÚØÔF=ÇYÕÊ¡¥ð ZÆé€õf< øœàA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍx€àA‘ŒÓêÍþûàQúkÍ)²¤ªI¨Õ“ù]C­6²Z=â¢òD#YxàÌx.><0'])xàO:f<Ò/ˆΤ“[dH|á8ñPŸÍN8Wǃž„¿”à,C8ñ(½ºŠñÀÿç žÄa^W)xà_3òuIÁƒÜ*Aâê8§Æ‰‡úl7%ã‘qësRÉ×£c—¯ʧÆö§(žR°M>;›½sÁ†ÇÅ+yòÙÓ.aì?°%])ÏÅŠΤãÄCYIǀǥŒùÔxú“Nn‘!ñ…cÆCÝ6;tÊü;:< ú¤Cç‡ê§†Î£²@FáYèOQñ`±âpÖžÞêßeדhùÝÿå7?V3Ý€àAP€E2NW7<¾æžØÛ4úú=Ôjäßï3{ÃæúLáŸÞ î™ïŠ÷eå'…¹ NýP´üa“ÈmÜ…üj¦ð< Àð HÆéj…Ç×¼ô“‰†¬[ÞJÌ¿5Æ!lø±G÷ Þ?߀u2õSÑÝ|x€àA‘ŒÓÕ¯N&o3ðÝ·þuAñÈÇGVñëŠøðáÚ@·íñ2$w[YÁn«jàA`€E2NW<¾¾?¸gS=ß}±r9¤‘{ .v̱G÷ Þž8ß0ðtš¬óøöêêFCïÍÛçßMßÜÒsÓA8`^­< Àð HÆéj‚Ç÷3he±9êtÏÕ»wC£j0…uüv°²>Èœ¿·3^¨ÇdÒ\…6ö\½}¨ª‰Vœèû鿪ÿ}#ëWð 0Àƒ"§« 8Éáê¦_ ?Ô£ÈJx!ê¶esÀƒ2§ÿ‚xìMöG=‡BøúµÅqrßÈšð 0Àƒ"§ÿ‚x(tÕ ÀƒÀ<ŠdœN*În‡‚½n~OÁ¶k.G*ÉÑ…Œ$.¿£“ºF˲Áý‡*Ǧ¥ço¸%ÿ-o\zN¿o?ú·+€‡R^Hé¯5§xÈ’ª&¡VOæw µÚȪ2HŽú–aèZa¹ÂX½z—®ªÕ«wWq"‰sæaÍTt­°LxÄ?ø;0ÅqCî–„÷,ñ6mçãÜíd¦X•'áAú3¬ê !Z' tɸ,é>z2²ÅðìýFvÒÓ“4“yl4Èã·û~Î’€Î«hÅ*Ò¢žeèÌÃеù¼`k†õ‚ÉlTîPGãJî¯638‡5S܇®A×h Î U<¾°µp© øG4û“·/I‰ß§ó z xÉ8½*xpùÝ ƒø,.™·@Ó^Ààáa‹Ý YòxN«n7·×` m{íØÝpwx§pïÞV¬fÏž=ÂrD›>\;5óoVWO#¬ÆŸz’²¨& Z˜6-DOâÆ4a iÚÒ¸ÝhÁ}iÃhþãi>3hî‹i.64{Ÿ9Ã7§ÑÒ÷Õ?98ÒkžWR¢ ñ m|„õ\…>%#€þ<Ô¨”TË8½*x” 6WÐÊN`ÎÅ…G0Ÿ·4€ß˃UÇÝJ5§fpïzÜf5$µ´ÄºÍùÍ;wîÃê3Ì{ØßîOs6ÇiŽ©½éÛ%–v+l‹{“fi‡Â£[Q,tXˆî‰b†ËŒIî“ÆxŽâ3¤Ÿ¿îÝÛrÚ64ÑÕû3¬–.¯a/;ãVc—N]4˜=::ÖdC+ìGE?„ÃÞa¾øø?Sw,1s9˜åpôÖs.â<ðà¡F¥ð ZÆéÕÂCÀ³öèºð½d»­l„5Šv[5t,`óÑ„ÁA‰‹ÌŽN™œ¸x‘ 8¨ü#˜³}:,¬<àσ?Ã5šòŒêøn3[*ÄB¿Ê÷\1Sv[¡‘jí³bþL·§ÏX²Ôf”“±Ë°~‘õ…Zb­žŽ=§›O_±de€} @ ’×÷XG‡×úúY;\6 ]£e4‚­çбšðËŒøðP£RxP-ãôªã!àÛûê9L9ew=qy&MG¾ÐÎîµ¾Þý΂®Q©]gg'» ϶ wtMqÓ­F¿F §Ù Ø|îü…1Á^7å%É1ýß°J (ò£1“Y ]W]ƒ×ËŽsÈ-ñ¼^ṽ%\.Z9Ç{î·¡Øô8zƒ™Ø™zy9£—°oÁy¹G˯ ªÛ¬ðjÚ MùŠã€þ<Ô¨”TË8½Šxx oŽ`§¢[¹üÎÖÁÏôôöÌ›'DËGÿªßž;¨fhƒ?ÄšsFÍæ0 ë¢Ù«n€r£Âæ¾þËì¬&2'¶ô×3 ª=Þn¼µ#ƒÍåÊn}ÐÁhÇójà!¶/óßP„sù€àñ;–Àƒj§W ¾•—ô8ùŠäæñ{ gN[tÛÈH6âÊóëÍ^GÜ¢iP­A޽g;ÿ¸¡Q7<ä!=Î1z€)ƒnìb\'T³.¿{ŽÉ±‘ƒÑ8Æ#Ðy(»¶jTJªeœ^5ó‡f5øó–ß´ç†?WVâ¥gåòÚŽîòªvÇ)ˤ'æÎæ–9UW×I°~â”ô¡C}Üü&0ÿÖëÔç ¶<;lÈÑ)“+?Ž¢¶xì0_œÕ¡ƒlÙK4ˆ7_WØE[ôG[Ÿ¶ÿ ^ìÂã˜ßhÊz(ÀCJ àAµŒÓËâqÁxì;oQ çæ‰í ‹ ..ñâ•#·xº—ñö€ àòø¢93'YÕoÀmð¯Í¿þ,–l<ËÈhûâE¿(!¶Â1ýóçe¶ÔÁ™YWܶFh½ºAc†ø»Ûsj¿Ñ”õP€‡•Àƒj§ÿ`·×gn¶N—ø"*xžóo4ívÀÕ}o§®‰eñà l–ÙtsíÖ,À?¶nâüYò›öΛc _á9W¿|éÙVޝ PÿqaذŒÐ2‘Ýä$vé)^[¢S‹ß±®×Òá^•ÁB^ÉŠcãý,ÖÈ-£ÀCéµðP£RxP-ãôŠñˆcø¾›©„Çã2Oµm™fåÏeÛ§6ï$ÇCä²bÑÊ–¾-;ùtZæfÅæs×ÚÛ!-P·q~èt–ÑHår¨9(Ä\NÒ’%Çÿ™Š®ËŸgÅq„˜4k¡Ú¤¾ÿ,{îá’ ¡÷RéçØe~ kù2à¡ÜÚx¨Q)<¨–qzx­™Þù½Áÿ6Ûêc’Ô·ù™.|>χa‹ðˆZí5Õ»O›n¾Ý~6¥%@}ÆöÅ‹ŽN™¼ýŸóøåð¨bX…,ï"é¢^· wrk¶¦­pÊ<©þâ*”ðPJjTJªeœ®ˆ+vRû܆}vz²}–ÄÖ8ufüF{G3¾DKΦYmnÃêåÜ£9·¹9oiUl %û²œ{Iz× ×/þg‹³td\-}Uï=p̃ Úx¨Q)<¨–qzY<6iYP$‡lDê‡f gT©Zç6·Ú<ÚÒ¸‘Ho–hvùkòp;u—t× iÀí ¼ý\´Ø»"j;à¡F¥ð ZÆéeñx@£}û-÷úpÇÆù3eö|“º¡Z.“ô¶Vig•ñàçˆ0ZÛ†Û©qxK+·³¤mïr ô?><”€‡•Àƒj§Wú!A3“Qç(}NóAˇÚ[ñ•ËÆoŒ‡ül+³Eúáú]×tØr°Ë!;ð<~ÏRxP-ãôã1Ã$üŸù3uBê/™Èö_¡kÀ£ºÁñþ¨®½hé¢#Í„ù„Êz(Bð¸”ñÏêxð8ÿ_!‰¥„ÃÙƒ³ŽàÁ#íb>YxàÌx.><0'])xàOº<^;Ÿåu¹zøöøÉŽÙ¦Pú׬=G""ñ!ñX»>­êwv{ttlÇn·¾Óú(ûhœxœ»G"8ßkJ¬í„àsu;›½sÁ†ÇÅ+yòÙÓ.aì?°%])ÏÅŠΤãÄC)IOuß%;BŽžÌ[ Út š!»‘»À³ò¢sR>õšµgUŒ¿S>»H„±ÿÀŒGÌÚSòÙ×®«FÿÂ[ìÛ•ßµ»K÷ËÒ1Ôýóÿåʧ>wcÿ¥¼×”XÛ¡óPæß¡ÐyàyÕ']:×íûÈðGÛÞ“:œö Móª—~è<0Ä4îôü†Ñ“œ—OŸ>ÌÙûÎß7gó†§ÏAçQõÕ Á…gu<0'])xàLú' Ùõ‹OÒýX§NKtÌ ñàñv’ˆGÌšSxVçm8ÛŠÛjsB~›V…Çå.³@ן۶yyêØÏû+¹$âó½¦ÄÚg[)¹”à¹àÄg›t·kû“þãÍ“£'ö ôÓ˜Bß8ë´‡U‹þ7š² ðP£RxP-ãè’â¾û[™ÏÒâ—üüP9à××ç¼L`Õ,¨ÙþƒÉ²Ê^8tHÎæ •UÿKbOn½ÿäÁ«ìä;š¸%Å¿<ˆ™C€E2N/9Û uëÔA× KÌU&ÅñxçïûÁÊUóÐuÝv‡$h ñªð8'ûÄéÝmX½<ˆ™C€E2N/õ9R‚ÊxälŠ-6TVÐ…g·þ!Ñ•à#í<¶lü Ï/ ”}£ýF—[ÏT|ÌÿMYx¨Q)<¨–q:àAOŸ>üܶ͛H‰¬¦oÍ8XW¤ÍžT/ûéêððEÖ–¤ ƒŽŸÌ<ˆ™C€E2N<ÈÃÕñ§n×õÒ³­†¹Ñ»EÝP½³ÛÏŸTiÏÕãô~®q±Ïb&À€‡ œèe[ÖùF£}íúÏû£÷Šoº›Û_ ~éoýæÞ ÀgÆß®YþÜ@º‘?4h½iâ<3”†y#¯»n"š§Š¤dáâé³G9[6J?ç±e#ZN{|Y;ÊÀg~þÁƒŠ«ÿ‹kŒøs²Ÿ=xqkÒ†úÇN@çAÐðá‘7Ûñí©/ž^}í3èk«e9ÏÑøƒ× ?›lx•ýß[“_ìzxàËxÁ\çsü'óg7ÉÕéê½°$ˆÚ€ÇïGù8ó(MgUÆV®ßªàožHÞÑÅIHc†4áíÜyöŽy4†<w[Ý û¨?îÍãœçÏ“óÚtúpî)|qÎéS›¥E¢JȸÙìÁ·5Zðæ—$ð *(g¯Ý ž¯Íš³—ªàxs©ws»}™¸öåÛœç·6ð6«h<+æ£Þ(©(€‡2>ß§GÃ×-‡[›–$ð 0(vÜÙSouÃF~þ>ûO?U¢'À€Çw<ÞeçðÆ|i·àíí¢Ã€OÌuëßLj8,Q Âð­Ïôžk]ºÖa2Û”Åc6ƒ¡Ë`Z¡0 IDATå W#&kÃv #`RY!V2˜ ~åí—ÁãÑ›gƒ‡XŸ°±´Ý¬™²9ô¼LŽÃZ©èð v xÈðøXæ_¿»óRzSf\^¿†ÒSuû-“ §êâÍø§2Ù`ÕlÓR§êªâ„Ýêá!àY{ t]ø^h™Çé 4òáysy AÁ"n5ñð8Â Ú ó¢jnÅðl"ûà43xƒù½ÐK÷_é3—­þ™Œ¾ )ý™A½6+ö}™¥ñpi.{4FÙGû¥ð@qõùÍ&ëšn»•èî~ùjz€±x<‡ R#ãôjá!àÛûê9LKoø :ºhé&г,®E¦çzh"@ZÍí3¹-æ ælF 6ÓäXÔ[´f2»Z3V–âd‰5S‹Á0±fØLd°Û2m—íªj/?æQ+W0ìþak2<þ²x Øz3¾ézÃkÏoqæI£¥o4KÅ,àAl€E2N¯:Ã[ c'XPÁq¾K ã p¨NÏ!{4‡­_Jª¹sKfàø"!V2\ ™Ò£Ö– Fs£3ƒ±¢léÃ`2¤w.i/¾GP¹=W®†ÌÀ)¿2(–_Þ?jê9¥ªu:\ÀC­J àAµŒÓ«ŠßÊKzœ|ay9<ï ~o;¡‘//¸ªx|´ï§êZÛ3y-™öKÌ9Ì@ éQ £1“ÙÙZQôcc†â^,Ù~*¹Ž}®sŒå ÛiŒ ¦ç‚Ÿááæ/Ô².ý(:²„FöEg—9 §²…<²ñرúB÷NÖ«¼³ö=JmzŽyäjUJdx¼‰ßòɸ—tw¼q/´ xïã?õ1–nä>Æ)î¿~\YIÿy¹çñÛ•ùë^0›[jÐVÐÝ›çSõ¶CñÑ‚ÇUó¥L¯V éHMF`é1 …³r›0Š÷\Íg0µ ‹••áÁ˜ÃôÓ/z|m¦ßèⳄ‡(€-lé$ç&4—á!vš²Eá _¡¦½ÐFH2ë¥H¢õÖè]zšq©ãåƒN—ál+Zé¯5§xÈ’Jn¤ºï’§EOF¶€JéÏê7 ØÈj [¯rÛ¹|ó;†ïN—Å[ã®utÜáOþóD1sƒÛ µ3“?;1ì.橼ΠßJÒ_fU_Ñ:a*w÷ êÚ= •\Ð쪙ˆôÙËoä»úú$&ýêíëdšýöÃ{¤š:ˆÃbsÆ8ò‡øsÙœ6[:(.g…'_×™ëÎ);Ž;Ðì’¨ˆê†(*¤QDãåâgµÎF ¢1<Šß§ó<Ô ‚Zµäu B!ÛÚh³“˜ôâR~+ýgÁ‡¦JÏÃn5øÅªãEã©Ñ/Œ¥'g26¿6£B®]¹˜úÄÙ1+"ìÚ•K¿ lÎWAo«H‘nvü2xp96Þ|]{þ %Ë6Q¶ "ì´cû¬DÀðP#<î•üQ,{©æïqêtå7r¦:t—Ö¾œípÿpZÆ•Ów8“?êMÚ3çXœðð½M>Î ½yáÈ©þM>´]+À‰…-[~8३ º.lÕ”w"zz´ùh9zþ± ñH>¾: ¨»ƒƒ6ºFË–~;ǽëV¥ÈD˶{«·­âÉZ%ÍGQÏ¡cÇŸG€xð@Ñ/òÓ§lz ð<ÔÐ êšxÂÕ”TêàQ~#óF&1銅þZêmáŒÂöæ¹)‡5cnë·}¶÷?TëÔ1«?3óŠbÏäxÄ – åÂÖ­Ê÷èk¦Êü/—ÇãÐñÕe“Ó*ôiQY˜ÌÒËÕÞm%‰­|·ÇÒ“¯iÇŸOŒ8ñ`EêDè$tÜë°ð<ÔYiCÝFA­Zè:DUrXP ‹²9ÅcY§+àq!ôƒÌ³:=Ÿíº(­òA¼W5zžw\ZëYþ¹ †d],CÂIè‡ýœ@#Yaå›™ÑfÇ劔Ç# ð/|ù¥ñ=Odœ>{#½Lç)ÁØyu—÷Ö64K;šgp·“·SŽÜ<~ðÆ‘-ÿm Oò;`sÔnLä¬Ú}›Š:ÖÓª-ÑÕ éP‡;¨K„ÉÒDѱôT$ÇS!_þ°hùc›Ö¥û_ "MzzõÄpØð<©#dP Àƒ¼¤—0}n”™r)ãRòý•=>wdòH=WãøÙvOæ±g gÿ1Ø»=ëëXÆÉ2ÇÿÏéV}#œ#¯%ÝÜš†Zd†LŽÃš)²å_ Ô|4ã7 þ'ð<*ήvxܼž:õìt×éÍÖ6[uvuÕ%À2<||Û)ìªB±~Ó2ÌxdÞºö±uë2Ç<øÜ‡ÝZ¸­wî*èÚ:°µÛx÷]=ÏŸ¨}6htœêåP(ÌÅKz8õ¨ÖasÀ𠤎U@-ò’®PÐ÷›ìÌê|-[~¹|Ëý›Âð‹ oÆnºjªÉé™3ö.·Š <rêYÔð /éY«"òºÿõEK ]'˜Ù7â6²ÛcO4¥ñP8桬¸sûúã5ÑÒÏy¬‰.ÿ9ãMÒ×µ˜°rÚü(ÖÏÊ}¹àx³x-y£]øôÒë–ù°!áxÄy¸qÿ®;yYƒË£F>ìÜùM#4x$Ô² ¨àAÒEþ/~QœlOk̦­æ[©FŽ«äýo+ù1ž“QP¾­z-³u âT€ nwþŒ@Î,§²ÿK…xD…Šßì17iÀkÀuå¡‘äEfo5ª¼ÿ<å_([¾É\<^·ï#“㸭‡v¨3 õ¿= g[Í·eÔç6ù“ûל@7ô#/€•@7=2iR¼Àª úWò¿xUˆÇ>+ËG:¢…™Î³&2'ÊÑÈÞåV€à¡Ò eË7¹³“‹Ç' Ì™´Ëͤ _´´~{.Ÿ½¸ÿPë7¤Ê§.ÝȂū)ÑœÌûÁêá¾l±¶­3J©®J¬íÐy@ç¡„Õ¡óÀ³:t¥#ÆÆùú´!ƒï·o«UÃv†óçÌ´\¥žGé0’ôÐö]ZQóÁ†¶v ™èÇOŒ" Ôˆ‹‡³Žà)‚ÁÁÛqÖP²¦&wvœÕÒ1ãúñ@ýx à°âÍèòÏyxq½[ñ[™Î4ÝÜþ ü¿`¡þÏÿâŃê?~t“Yä"A7v˜Âx¨$ÌØIÑ`ŠãñhMt~î_´µÐ5Z<ˆˆ'ë×ôìñE[]§¸ï&+ãtÀCyá¶ßcŒõ˜”ÕgÕ™³:;ª *ãñ(fUÙóDi*óƒ:x;™\<Ìý̇4ÒV€Ae}ŒýF¶›¨ö_Y›IoJ‰}Ô²Þ»5çNî¿lßïSíñëTÇ(öè…3†ß-þžZ9mþx€àxØâßí³h>Ó‹–SΜ؞±ä¯—_H‘þxv•ùëF|£Õ}ÿ÷¸:“Ö©‰A“¦.œZ´ìîmo¹¹c”èäxÀƒ˜<ÀðÀËv/§Œü>rÈ÷m½þ׎•¾OÊYÁð‚–,¡›*ðø7`æËßGìþA‰NÙx€àxØÂë -¨ãCºçåƒÇSN$f,íö©½eQçQi'ÏmòxÞT÷ùŠ,Oâå@±€µÐØÖX¶ìé´bÝà¦(ч¡ó (Àð<°…ðˆ˜ÆkÙiB®¶ôCa÷©··ó©Ûî¥uÔÞD}Îc‰ßR#¦%§êÖ|×¼ó 0Àð<°Åªã14aËŸÞMe\î³¢¹_óÒ#€x€à-¶œŠ£‰ Ô•>ÖMš* Àð<l±+e/-LG}ð`ø05ýAûSRòON ñãAnq.½º’ñȸõ9©äëÑ1 ‰ Ë× åScë?ðà°M>;›ñkM1ãqæÜ+ùì˜ûl¤]z'ŸOÿ €Ôô×òÙ1ô8ñPVÒ1àq)£@>5žþÛ;])osÌx:ú@>{éþã³–¦¬F7àk4¢\x¬ô±¦…4x,ñ[B5xôç ùNq÷ô¢;7²Ò˜B”h—Àƒ˜<ÀðÀÛÏìÐ[­ŸNKW<ºó»Ó¼æ¯táhÚOrórö€ÎƒÈ<ÀðÀAÉìþ›¨mDmhnËFØ :ºzºÁn+¢ð<ÀC,ÚinºÃ á»mK/W)ÔòXk²ãä é­)Ûâ7wu–î8úÃ9z\äg•àaj@srjoÃëæÀÕ@SÛrP¢‚ð<ÀC Ù2”u(á1;l»ðèéãgO®Û¶ÁÀyCHjêéÔƒ#§&;xît\â&‡=ó=T‡–D‹fçߎ)hãìmãáµÈYЇp;àAL€àx`ˆF1ãN'Èw[:wjcü¦æ^qkÎ¥ž>wx¡WÄ?IÇ;½-q“¡Ûé%ÄãáâéZ3¼&êuúÚr¦{¸£7”hw8`NP€àxT7ö¦î×Y¥s*=EŠGʾ^Ì¢S›lW[$Ÿ‘Ýáð¡„®¶²Áèù?© íXá³²^X=4£‰#·³‡§¬óÿGé¯5§xÈd©I¨Õ“ù]C­6²Z=™_1Ü·îê3- b²d Z@x|‹ÛÚ‰,BBÅ!!ì„t±l0¤‹Câ2‰$,‚ؘ1wpÄ`„GéA8ÛŠÀ<Šdœx(/šF4µ—8Èðë#v‡ BB–ûŠ´Ånè¡!£„X!¡!,Q]—S.á„ã1:bô?ÿª Àð HÆé€‡’Â;ÌW;BG"ÃÃ!@d(=¼!ªç,ž/(¾O WÜÙ^zþnM{Ñܵù¡Ë¢{D÷%KÕàxP$ãtÀCI1]òoÿð²å2»­~hv¢åžÐXØÜ5ÂM†G UlðøÀƒØ<Šdœx()Ú‡YH,Õ «uuBêø¬X…ð@rÖLA×€±xÉ8ðPFø„ùiGhóÄj…‡G„§¾¨ 2cî°8¹€±xÉ8ðPFL”L>4h|kÙ:9h9h\‰xÐ#ÌzGôæML£¥OJàxP$ãtÀwˆÂBô"ô$NH ô>ºFxÈ—IÄcTÄèqÞ³NÕ:»»Ùqèm—……D(`„Ù× Óméé$Åy¼•¯;!èïųWrœx[œK¯®d<2n}N*ùztÌBbÃãòµBùÔØþÅSJ¶Égg³wc®#Øð¸x%O>{Ú%Œý¶¤+%ã¹XñÀ™tœx(+ér<²CÌò ÿüF£}i3ü͆óYhüÖê|í›4<¿õ½èŸ½ðV>u Žþi—ÞËgÇÜü´úovq~£¯ÿ SÇK#†£ëSÝÔÕjïo½î´|öõ±çU‰ÇúØùÔ?ê?š7ç.â‡RÞkJ¬íÐy(óïPè<ð<‚ê“®nÇÛîOS¯Ú³aáÔ>´Œ'¸m±:}'SJȪ¿œÅ4¦°+Þã½»¿{çz$ÇASÙ–"Wm¡æª¡º¨ÿW5ì<<žMšþèP9t?džÕñàþ%+gÁƒÇÅ«ydá3ã¹øðÀœt¥à?éev[=¸¸8:i'ÖÇKOïÝÞÄuûæî_å_×ê±ïTæµ·ã’6èzíÙùHºÊ¹ oIÄõÄá±{éÒ‡;È–ç lk„ÕÀ5C#»,,dƒkן! Ô(ŒDŠ…{—Yžž1}®õÿæYΪ|uœxà|¯)±¶ÃÙVJ.%8ë!üo4e=à¡F¥ð ZÆé0˜u-‰ñ¿Ö/MîÄŒuø/ëþÓÒxÜß·¦qÈÁykÇÞ¸ûQæ¾ä’îäÁÅEU,šîJú¾Á;çì—ªðø?óuÇ6Ýyx÷iÖ£IM\·ÞJx?Ÿim±zMæÕ§’Ÿõ§?ÏBuÿÑcѰ/-fäÍxô{Ï!›Î{s¡ 4Ô)HTÏN´2¤Lewñε4³S‡©®ÿú¸ûÉÆ¥‡¥…Záz$G²™)Z¶ó´ïæÖ -¿iÔ(2Dx€àA‘ŒÓt¶UFh~ƒ!GÖÇ6 <|ø±¬ƒ{·4ñÝuç¡ìn÷ßýÞ”¬[•ÁÌÛg&±â‚®ßbøî\ý½¬?xþà艭ý÷ï{öôaöùΛVß¿ñ4zî§ŽËŸ¢»=9õ¦“~ÞÆxöV)ì¶r 8ŠKÿ[ªaö¢ÁlNµÛ¶åûä8d²ðu#ù15Ác¯¥Å£ŽeËC†Z0-ÑÙce x€àA‘ŒÓËâñf¥ðñ•;YwRžÚ÷þÒÙéÑÍ3}]¶ÄdÉðènÓF=¯Ä°ÛErdë/ÛÃcWÒTyðÞƒ+6¼uæçîÝÍÎø×#©DEñÝ68^Ë–ŽÜàŸ—íCû³M°cRøÇïmʯß:wVï/hÐpØÛÝ8É>ßM6h’ LYgsÄu½ÖÔ·ž93ǠуŽÒ³­PÏäØäê¢9”ˆÇéÓ/‰¼ÃØš!:¾-£4x€àA‘ŒÓËâñ8hF¡ª×µò{Í}väò†øõõ=|sŠOÕ­à„ÝÌ·bãKº“*>º½nÌþ›·¥çÏpJ(ÝyÜœ¹qû††G>—ì$í<º &ðÊ‹:e€ xÉ8½ün«'÷wíÛÞÉ ýU.nÌÙÁÉȺWº{(Žõ¼Ì’=WwKº“RçPU6xKá¡Pl*³çêÁÙ¾®[×–yx3¼ A¦ÝÖµ™ûßwüêÖéà­ˆ‚†Ã_`;`^úl+±¸­È"$48Œ32|”¶D{ñä•a£ÅÕùÿê¤óØ¿háaõL„hä°© ó ­Ž€E2NÇö ó—Vl9½+3ëöƒ›Òî„•œü¸:ƒòÇÉ:×Í>^*Çã+Öq©{³²ï>Îܼ=¶~À‘£w“Þ1Bž]¿ÿè~ÚS»ž-ÿíãwøèóÌç¦]óýögg]•vì0vEÓñâ> BB–ûŠ4]‡†OÔÐʶ£Ù®ããˆdC¹x ØêîÊ_·Ÿ£öå‘#PÏä@#•Üð 0Àƒ"§cãÂî¤êƒåñxñpï¤Î²»qwñnd?x~ëYÀÄÛµißh5³›d8ÆóÑ ´áˆ7¨Ñ7ík«±oÞÂØvM×Ú^HsðªÍZ;\k`ø “›R7ÅfFloár(Ј0­Æ‹­'žž1}Õ²JzÀƒð<Šd\–ôgÖöìž ºFË8?÷W­Àù)ql‘õâqÜõíCÖÎÑŽÐ>Ö?, nζ3õÏÄ8®UJÇÃL²ìQsNXUïx€àA‘Œ£Kªû.ô‡üSš z2²£âÈáÖ˜žÊºwûùÚÕ9^Ï×ÅdÝ¿óà±ûöþ¥G,›¬kÚuK·Åœ0ž84tǘ'ŸŒò]¥29ðâ! +ýyFš¨Y3Ö’ª¯x€àA‘Œ£Ëëö}¤Ÿâ¦£'ƒ®Ñrv«‡5S¹mþÔºUþÐ!ï–,Fןڴ~œ| BªhL…wSwžem»žh}œÙfC[ÌvGï|XtÀ£»õcÏêOÞß`ËnÑ$Ç‹‘¼ô£åLÝ»Ägå#²î‰RÞ˜5ôSèÖÒ÷Ü1yM…w“8gÊ«ü®¨Ëké§_lÞPØ«çWmmt–±‘ùüAü$ÛöjGkoë³üØJ¯«ÑòûD1ïjp áQ±ÊÂ#T¢!nRÇ뇟qÿ̪Ë1Ž'§î™ÖesW­h­^q½­Ž®ˆ½ºùÆÓL9Nh Ùt{.«‘¶­×~¢OÉ%¹â5mǰBB&À€àA‘Œ£KŠûnY™~G3¾DK~J[pªö™ƒcÌóLw›ÞÑ·c-Ií?% DtãÑb–Í`ÆhG¦[Üy?|cjLÀqÆ—f\˾%‡!ð çëbdº¬]r]Ÿµä¡A…½X²»¡ÎôuKSde½°g9Òr´hÙºÎ:‹bßC{oܱYp>Äõ´‡ùá¥ÿìÞ?a€Ñ&#U-c[Ù9µ¢ ¡èž·ŸÝ¯™qÓRÏÕHO{6”…?œ¯VÿWfP••„àxP$ãô’³­²[ÿ{‘v]?Û¸Õý˵ÙÏ;õ“Uùî­OO¶ÙÁ™Ñj”÷°ÎŽã­Ôݱ{g×έýê·`iëòu5Äèµ(7j‡ÒðizÜ´=i›Ó„-h¼N´à¾4Ö(šï4šçBšë š£ ͆CSüàácî°¸4Zúöñ©Iø¾ƒt<Æ„Õ`÷kí.®îŠ€xÉ8½äs G)v‹Î¼­[fGÓK±@¾£IÖO û?_»:Èàò-ųõkÊvüÝM±óèÕSa·Uaï^J|iоô÷àAhù°ûÎÒG2Šy´iý#cÊóhñ£»•>æqve¨â1-›”+Ç÷é4SYËÖý¢xtŽèÜÚº†½(´úëþ>x”þfZЇ,©jjõd~×Pó¼+./ÕmçU3.ºFË¢ÒÑ_ëò[ѲhJúQ᥆FϻʜÌxÑ}$ZF#åï¹qøæªÜ =`Šûî£~Ÿ4tÐuŠÇ%¾œ §#}#cææØÖÑ݇îYzÃê•ÿÖ!£lçñÖÏûÃ2 TÍífé†4ˆ^µ-£4xT%ÁãRÆ<«ãÁãü…$âÁáì!´‹ùdá3ã¹øð¸på“’ñ°ÿ÷®lwÖŸÍš;T^ýÃÓ…·ŸDµkûøñƒÊ«U>NäçÒ«+Œ[Ÿ“J¾³Øð¸|­P>5¶þÛä³³Ù»UŒÇÅ+yòÙÓ.aì?°%])ÏÅŠÇ7>Êg¿Xýþã'»­PØL½¯Ùv]…7¹¹†„Ï~L•xo—OÍãíS1ÁÁ‰ßgçïS1«VŸÏ³&õÇxð:Øò籋6¯-Ÿ^ꘇպøša †‹'¶k[|¶ÕÐ!HŽç'ŽVR÷Ó/O¹ÿÀŒ‡RÞkJ¬íÐy@ç‡ÂóGNc:z8,_=¤Y^£á?é<2[ïáü+wu[âØÚF€Æ5lƒF;»¹@ç¡â΃Ëf/èàÍõäp¬½ZöÅÇø/¿õÙVeŸ0D4ªf˜Ncÿ¹^l,ßa®¬€³­ Àðø}ðpu3sàèØù0è<*Æ"y=‰^n¯^>%{½œx€ax¸º-q ®køïÚÀƒèpä;uí®¦§é¾lž/O>xàÀð "¹;¶îc,=æÑÇ8Å}7!x žÃ‘­m4 ýðãåFÀ˜8oóh´àÉó2D3Tg Õ܆lf¹Ïy8Cñx•yrœ‹óÈ”7¥K|…ƒJÃãSñÓ&¢y%}ÞÈ륩þÙŠ=_Ex|,žtðÛìRUþíÝ׬>5¨è&À£Šr$%Ȳ‰6²laÝìYÊÆÃ}¡Gãgr‚‡…añÙ_c-*¬³q7‹ý Ã̾[šLÜßD¿kÒSh²´ HXÒ—¹¶fðiL–µûdâñ@rì®dŒû¿ÚáÚÆ¾#ô÷ŸãÅV¼›zàñáaÊçÑéùEï‚ü1ýRÒ˜LÊ x£)ë¡ÔwOnÚ°y‹×ÌIýîD…ƒÊî<6%]¯] ï·žõ_·»Œ(;*ê<²7|¬WZˆç¯$ÿ´œùîÔ­ï óÀŸ{+àñа).6Šërév'¹¨¶ó@Z0Ê8QáàO:DHíÒx,âvÔ~Ùiœ³Ùü°Nus:N±þ9Ö½<ÃåÌ…–ËÿYÎÒ[acF$^<Ÿ1â±Ú¡u‡[Œ^>]œ¬™2k~L`E÷T< sî:pùKw­›w^އË0è÷1–á‘W‹v¤#Íg"m˜–¶P»O»1vc8,`º3 ð0›pU£i”iѲéè[-BÌ~†‡£'ƒ×l9ÃÄÂjÚrV-¦ÿxeãa)XÖ#´§v˜ößvã:ÅÑII2:x¢öÙ Ñq‡5SdÇ?Ô Ä„´]â¾ñ·Ÿ}øt>‘;þ;¶²ÝVZ>aÖ©/ßôFSÖC©_¸96 ?qù*èowFz—:‘wûÌúžŠƒ*Åcޏ…æý¾ÓhGUðØR¨©ý10ùå“›9C¿¶³Éy xT;rwlÿVæ³´µsf{ÚyÚ/²_`¶`€Í€º‚ºÍšu:Ëu–•—à ÓeîÍ“×h¥.ÓBÕðàl7£™<)ÁÌŒPþ><¿¼[ð[´ja7Î~oë}ñ#"VFù,^-7]ÿÈrñXÔ;òÌõwè7¿`_´×ÈÒ‡7o?\:›ØÝ™ÃÊúLÈMY¥~xä'Ø3e‡Œä1$åéaùAeûQ ‹f ¹¦Ñ8f¦)‘vTç‡ó:}{ÿ•tù~ôdž#ÞdýøÜ·ÏWtâ±G¡ ûXûxÌ÷X<ñÈe#5Òêvóë6ÂoĬÿ·wîAMegËC@ ¯ˆ"Šy,,Rå¡€ˆ XVƒ~2<|(!AÀã@Kz-ØbÅ«Zª»dÁ.?÷È/·Î/ÕÙ4°š¥ºüêEn¹ÌKP‘§õ­—Éã#nÞ´··ºÝÙÕ]*°jXÎ Ë ñάÒì®JiO¯\og˜´<^,ÕµnîÏ¿ñõ“rn4CÊ´åaÜ€7 RøŸnúòX"’z±"W15ö©óõñ¹z7Ë^éc=H·¶ÙÒï(Ièfç´åT6U¾úT¿î»óˆN¿ïîþ«À@´ý†NoOO'êU?LðM‚Ÿ¿›8œº×Oζíß½qÐ6¬.,¿¬àóèƒ×““ˆ;Ãää±¼G†ÕVDäò0qyhæ9®Ù~Ñ3†¶ECIum̚΀Ú×F¾Mkêi„Eß®7†7Z :8)}=eaï$·e·”Ô‹ëÕgh©­™Ù¶ûg‡izsÔþÆÁÁã³’G§¼»P)U$;õ½e5híݺѭ—uXVØ$ïTÿ‹\äyäF3Ô©@ ‡>òОçXqΣ^Ü hhʪoŽ‹ÞjÉqëH´—EX*|i*Úˆ¥¥Š±YézÚ¯‘³kmjÒ©,^q¡ºCÿÓöíC ë[…ü¢á ÉìψrTy ÅnèßéÐà –æ–w6~Ë`hÏy\Íà =+®¹yèq£êT¦%©{—åÊP‘ȺGòåÝ FÓÆÓKæ>éhnᓎ¨•Ç“ ̅웿˜}¨ ò0Myè½Ú I…/nHnìoÍN/ög‹¼6Ê}Þ8ãb1dÉ1üýâ˶qx>Iü¤ôâô ~F¦ 3¿8ÿµGŽ ß•j¾DíÆˆQ=ä¡:räo[¶ÌZY¡-jëçqäÏ…)RÍ—¨]3T•Ì3ý;¶(¶Z [Ù Ïÿ] ÛΤ€6av‡´]ëÏüVŠ-W[y{k¯¶2wyÜørÝÚUUö¨£CÝÝ =2ÈCøý/-]¾F3Ž?ž~4©óa}‡S%'“çu.Æhþy?ÆŽ½÷((v±#/,*æççä0·ñ¿X˜%ŒÚS·Ç­ÓÍjÈÊIîäÙæÔVY]}¨þ»†"Já”q¸%\d 4úQûC»½&y ²Ù:ï€Y«?òùœSGy…uQMªâ|º|]e;6õÛÛœÙÄP¸¹výØA’dÙ t«hæ NUK_:õÆy'çßçÁ[ù}æ(ßÝ<‡º5tkkº¸åþy轊y ñ‡ä±ü“Ž2TÉc.xŸÎÅ ñÈc½Ê ¨Z·ÃIDATc~ÎÃÍ[{Îc”ÅÒ™óàð+OTV§WW¤U”¦•¥qßãrNp¹‰å~M~®2W•ŰÅf¥£WËî]’7ÃËú´ùwøµ·h:Àl`ÆÔÇÄׯ'V%¦V¤¦U¤;u,£,ã§ÿšQv"[˜WÊEñÆ÷V/ÌÚw=êoe ³‘ÒDiIÕIìZvlýá·ÅÌЖÐÀö@ïno÷^wç>;•ň}€¾½wû›MÁ9i¼wòxgüÏÆqz7—ÏG€°%¾´údqÉ+&Ì”ÈCÚ³WGhü¡Û#›‘<®ßø­Ä4"‘µŽ<Ð#p°¶Öô×&ê«B—g„"ÀƒªÇOJJþéâòÐËëfxøCOOÔF{Vs`kskOEŠ«zÿèû¬‰ÉàɉÀ‰Q¯±¿‘¨Ì:Zs.MrœÖ–Bë`Ó:ciÒHZOM¾‡¦ð¥õïœmó³/ê¤Ó†ìP8*i6ªÏ@[ÍI¹®¤£p•ºz´yø7ø‡ŠB™f\a\ZV/…WSÕ¾¿}0`ðüŽóŸ9|vkí۴ۚ¸E»]Àú0át·°¹ìJšþCÝÅiËcy‡ú!*.MŸ‡ <„uä!W†û,,Tg¨þl¿1¸+–‹¡|ä!z‘þýw³Ÿ\ú·\†¶¨­÷©®{pÍîæyá-´Em=r7àÓïµC}ÙUwqKGºå5§‘‡éTvêÞeyܹÿ‰¸³W.ëÜ0³Ÿƒ»bÙ)¼ ofÊѤ«;ku7­Ý^ÝPO¿Õ\Ìú(ûšBÝÅiËcyòп¸HÅh(‡¶S÷?6Ý3è7¬ÿÙÛ£íMW)É]Sví‹™½j¼"`x3SŽ6 }¢è+íµÇ‹¾Òƒn§ßj.f}”}­º¸ç«­Vîâ@„B"‘PH‡^ 7:¶‰CÙ) xŸ‰ò:&hœéØ&ò 1@@Ç3ÛÄA$È蘠q¦c›8ȃÄy4Îtly  c‚Æ™Žmâ ätLÐ8Ó±MäAb€<€Ž g:¶‰ƒ¬½X˜˜Bb7Õ¾>ýæ&Œp1aÇ„V3æ[Ì_¶uÙr³åkL׬3Yw¾§ÂKIʇvß§gÐryE-C-tÖ:Óuèb ·-ÔÜ®9ÍfÚ|¤ãÈ®{xöPòS’ –ú5üWtÚÙ§s?·~£F¡+_f¶LÛ@[ÿ¿ ]öðòä}¡¾·ßçHå„_BÐâ.¥ÅâçÐrnèËû»tÓšʬ*Lõ=}ûíýb_M¤gõëÿw5f–|uá%G-çºR´%ãÆ‹W¯ŠtºŠ‹Kk¦<®ßdˆá±úMÞ6ÖÝé¶²«ªVLnÄy )Åõ…Ox(½=¸I¥»NÖÕ×7Ótº«lúá\Â…{‡@ Ìhøz¹oˤs“ ´Œ4Ó¬i8 ÃU;V#¾hxjtèÒ.¬L°ŒšoÏ¡žC'»LYà°pí[, o‚Zë·yóš¼ä4o^Kþ9ë×/6_Œ¸ƒÀÔǽO'¿N¿‡ý.(£æ©6|çðm©©–>Û4tÍ ÓšmWi^¤/ h^gÏT˜”ðü#Z®{¾æÄÿ>½ÿXé8XiQÞ“ºÏ:È[÷,iœ´²ró3˜+ë¯ê§·ôdSvÿRªV¯Þzö2*þ_£‡Rú9t®mUZ~Ue7°÷ç.Ü8a@Ã×ûËqÐ$dgëMË24Lg¬Aš \ZÀ)ÐÐÌÍ6Xÿ5Óiæ@ï²Á²bab]ý»ñ‚Ö¬Þ±ÆÐ¨Íkh4tÓÜVRú§];tÌŽfšÞ½µ¦kgoŸ=ÊaÔøø²a²ÒáÒƒBiÎÑõÓsòv ÐÄm½“7W®×š c:R(¿þÞ®§é¡Û çJ·>˜þ’Ò/¿÷²¾y{5Y«[»v¿6ZÙpUorYâïÔæÙSÐX;@ˆX4|½¿Mƾܑ.‘3¼bö²paV@³ÅÒ`ÎÎ9ý½û·m¯¨4Ò}äbû%M^?"PxAÓ¸œ½]´ý´§MQ Uo?8D}µÿ{o~Íãû—§W^‹»!  aÔÇû– Д}üôþg Ng¼Ò4Aavæëús; vª?÷[ý«N4³~\IÉɶª®þ5©Ž½U{¶ú’“!¼äY4|½¿œ BÌÏè1®‘Yù,]¾Ь·Ù0Ömœr@çöaíûúô½s¶ž¥>G¸á7Ð4.;o{¤` $›Þ!½,²ö±á[ÐÔì¸Z¥]#H ùZw¯,zmyš7õk^Ò2ÛïÌwNøM—h}ä\ôZU™ó|ŠŸ¼yõöz¾ÃX9 ‡£çë7™}³~“·E–VaA«»ªþo5\Z®£Ò_‡›|`c×î:{¯½¹•®Ó½«Öa8(²høz9š%þq#RórY¼üϠѲÚ4Þu¼|¼l°ìh÷Ñ«v¬¦n£qÐ1|F¹x»jùi-.Õ;¤Ï*ÿUŽÞ;ù 4×Ý*ë_. y5…~àKÇÁ˼Ž3>‡æíóC–Ó:ÿÒðŽíïçzìùS]ýð»c¥“ëøŽSÓ^zÿåù©Ð?w ŸA‘fœýäCý•ÓÏmx(½}’G¯€Î•o–ƒÎåÄîàÀ!3¾Þ_Ž€fChbaɹ9¬oÂÍæíºS\¦(*I…H ÷±ÎvÃb„ 4LÙx¹nðûK=D]"\bHðP¿ÍüšÛï_”½tóò]M“sÙý`½Fdiý\.=„qà„ _ï/yИD%+[‡Dgíeï%ªœÏKì—öôí)*¡á©±rÇ*n;Fà@Ã(oÇeË»†vU S\°ÐÑÛ?h߯˜Wy5ìºðƒ÷C÷@˜Ððõþ’u|jGËà°Œ,Ö7‰ËKüsφNQ=:t™³s®É6SÞ8FpAÃ(C_ÃáÁÃ%Â%FÙêcŽ4WÜ®UþQ  áöC÷@˜Ððõþ’[r:ÒŒgJ«—ßë9)q²t¤´æî9þe&Vrò®£ÓÔüŒå)+d"e7¦j¥åg²xmd@\„4~~q&&¶„ÝMܽ<–,• —Ú˜ìyãQ‹ïEj½ÎœÛú®†_¯˜[ÉqйK“ >„qà„  !³­£ÃÚ Zñ2ßkÌ©·ÿ¼ÿöÏóv¡;ÅÐóšûn<®ã§ß™ä¶¬øc}H¢ÚO_n€¶µÍ´SŽVž–4=>/‰õ—®H‚†äìaМÚ!ÂÛZúl;sXÚðõG €¦ÍÙ›•w/Ê^ºý€Ã !s—&>|ãÀ!3bÿè!6:T×~FÒ‹X_b¬G¾/®ýe4ú»vw± MÈÎf®ÜW“u|ür•èþN‰lQ† hüòûDtž†€K<=³}ýüð4QÑÅŒÖæiPeç|u=ë.§°ã”ý­Ç÷X¤Ì¹‹¯}[Ÿ§)X~ýÀ-N†ü]šhøö!Œ{‡@ ÌÚ ‰O æÃÞ±²mëò°ŽßÓäË ² r´S7ËDʬÝ협ÏÞW8Á gh<þ;(øäͳÃÓFÌÈžyñnß’ÍÖ ª*ÝšÛ«0C34ˆÐhÐ?zoK4dúâÚßÖAã””&cÆ<2&"7r@Ü@8°Üˆì}5Ä4C4~þùX@ãé¹h¢¢“ ªîl)2ì’ÐuOe:ëó4m^æZÂËS+8 2wi2 áÇ0î0#0ïrºTãã7ÊÌL ¢ewçÃw9ýüåÆé¦2‘²›RuXy÷@C²Dá]NÍ‚†^‰—“;Çw¶8±õ—ŸZ¯[×î]”ºxûnÓkƒw9q¤pà„ÁÍŪlÚÇSxl~MXFVGË`ëø=ôö%M×3¦W`NIÊhð‚UÉí ÃÓF,Ø·¨úAóï¸f·ÊG\®Ý{@ëÅ=€C f4Þ¾#›€ÆÇo/¾M“/7Ø‘e/%·Mã/7HØ—¤§1<~Dâ¾dÎj@Ã' A•py·BœbTY,Ðܺ]Í­?F áHáÀ!3‚šKÕ9M@SV“ÇË_€@“•Ÿ7Æ5jŠg4ZðÌöVˆR\²†üñ¿~ ª¼+û•ã•ÝK<ɘæò„ŠÚäŽî0# yÿý]N£Þå4úRM.»óh_n —¦/)k›iÇ Êhø 4¨ŠožVKR£3# ššíW« ~8Œ@ÑÂ=€C f4ô"ó94|8²Ò—.Œ•ñýÂs2§'ÍèÓ+<7’{šÐðhP]¼[®¾GC·PŸh®ï»U®þÃGöh8R¸p €†¯÷—ú—„e% ŽSŸ0!5?ƒ«šÐð!hP•ß«ÒHÕÐ>²™ÈGÔÜ¿Qæâ­š»Îî0 áëý­‡ELJ'«·ôðn1ª‹“—ré  ÿƒUŽšaiÃÿ:¤EÀ43+¯E3£Ðp¤pà„ _ï¯SÜ=Ëà­É Q ›Óôx@ ?ƒ†nšQ飑iØMõ*­ g ÷@˜Ððïþ¿s¿£eä†KÙHYëÌ<Ó €†ŸAC7Fª†É1*[[]/¼]Ö‡y €†#…{‡@ Ìhøt+ž?W¶‹œé¦¥àíËKÍhø4·ŽVKêépz'[=¼QîÒͲ»î0 áÇý­}õRÍ9vm¾µR”·ßРDР:{ë|—„®þ¥AlLí,¬ºr@ÃÁÂ=€C f4|·¿?Ô öLÒÌ0î•Ò+*ëï5 Р*¼~¬S\§äÊT/Å£¶rM5€†ƒ…{‡@ ÌhøkŸüß„ ´q»7õKí£înKß¶  ÐÐ+­*S>NáHí1V.|ãÔK*eî0 á£ý}ûåã‚èœ1«ÕÓ5nÿïþû¾m@ i\~çÔ’Ô.Þ-gå—º”Ý8s@éÂ=€C f(ÕµŸÑC {eç|›áqXÙq¯èáI{_`ÿ} ¨V$Y Ž’™ý±ÍKž˜vûˆÁ3Œ¿*MkçRZ;— ðO`††ÕýMÍJçle¤$ÜnQ¶qÃI+ËŒ=»—øFË{/P‹î›ϸ ê«…#¨¯)ÕK¡Öž>Þ¼/Ô×GP_K«í$ËÂʲ¯_¿aÞÃÚ¼dØ‚ðìÙhõ­ûú‘÷…@ƒN[z Á ! «ûËYÍôñz×YùÉk æ£Ó'”ØÎìÕ52#ºñÅ4‹fc¦¬°Àeaës4ÜyZò´åv g ÷@˜аº¿œ›Aš)15¦ÿhž0Ý`‚ªÇoÉAM.  а^Úv:’¡’›ìµ[¿Ø1¹ã®ÚnŽî0 au9š“Û-žh¨Ó—·G%JïÜ,³«ãÙIýNZYh4dj‘ó"ù`yª ­•ˤ Kž  áHáÀ!3V÷—ƒ )Û¸áÚÂõ^ñÈ5Ðv–Ú%ã•æƒÖ õ Éî=b€ï€V.¼$$¯O€†#…{‡@ ÌhXÝ_NÏÐhd…fÇjÄÊ„Ê8§º¢•O4ÔOXoÐhHÖVksÅ N­LcgjVülÎÞ¯ò…{‡@ ÌhXÝ_C£Ô¹¨—‰\°œÅžú—™JLŒÞvé’±g7€@C¾6Ùo’ •Ôß±¥¥ *î÷¬Ð/Ü8a@Ãêþr4i)G„ôvùÝs]×úw9i¨#Íôõþù’ ±šî6£[@7 +ËfÏM“R´þ1€†|áÀ!3V÷—cšIË8:òè0çaKã°Þ^¶q:ýyn@ !Sˆ2=zLvŸÒì¹þ«N¹ !_¸p €†Õýå h2ÓN96Ûbö¤¸É{²ÒÚ¼<€@C¸ l %B%tì6ÿ|–ÍVÛR‰²wÿû@C²pà„ «ûËÐYV¸^{ƒz´úîÌV. Щٮš**;ðtfÀÕgE/4$ ÷@˜аº¿ä5s@ï Ý\».»º6þr €†{ A”éÐm–Û¬ŸÏ:ºêámÛ{’…{‡@ ÌhXÝ_’šÙg•Ÿ88±cDGŸt?Ö·ÐhHÖf;]‰P‰-; š¬?àü¶zB €†dáÀ!3V÷—ŒfrÄÔf‘¡‘žñjc')ªÓb¹õ6¹`¹;W6^‰ú^™yõɾ2…{‡@ ÌhXÝ_bšÉŒÜ[¢X²ÜuùÐØ¡)Y©nƒÆ{Ǻ+]°²-0x/fh1^k´S–j¿JAƒjÕÎÕÈ4H6As×åþ­­w4d ÷@˜аº¿4“ž”y¦Ç[š­r”rtF,‘תø4¿Ô¿Þä'CÛ9¿AãåJ=ÙKõ¼“—ÇÖ³*8C‹®ôWܨîcŒ8íU_¿¾Sܧ6Íó3¯*‡VhÈî0ƒ4åÕ_oK4dúMZZÆI“»—'ËDÊ{¤y›à!oïN€æ{RÍçS=ÅiöÚI`Ð, ‰)È¥r}åvô£«Þ5Ù¾œ›¡1Ô74]hâÞÞÔvmsgûûšаc¬_XljP [Chêþýç’lÙ›gïÙEIyÕg, !ùæÆÐ{‡@ Ì` ™mÉ€†äïÌžE2ÓM9~ṯ~Ñýt’ý‰i†$hHnû35L¨6]hn‹Y Ðä¤äÜ¥P¾ýP½Y7 ïr²ìBsoØN}Æ.JÈ|S7ÐàvZÙ÷@˜¡ûG±Ñ¡ºö3Ú^Äú ù¾ì‚æÈ²ÂS}O¯ŒÓ77;ç+Ú<3û Ï@ãæ–ÁØ_/¯|Ž€Æ˜j¾˜æ)F³_ß²E|ýò} ÎÓMTÌ Fߨ¸’ú•.Zw%ØÐL‹ 1Ü:ÒxûJC=CÓEÆîâÔMfh¼¼r­ýýò 4A}YŸ§¡ÚÐ$C%µít ¹ç÷ð†þ-Ö9Ru­ñC‰È< 1Ðpä!Ì¡÷@˜V·e]!ôžéqfgŒ“\¤Ü®Œ(2ïâƒæÛ¶¥hγ¨4¾¡i¼!§@c`´Òh§BýîûK™îœnØü14‚2CcÙð¥•}ýú2@ówù›Š¾•0CCx[Ü8ahÐ?zoK4dú²Ž’|ó‚’N%ñ‘‰Š‘ŠÖ{lК̽X@ãêšÎ а]¾¾yX@SLlC–_rj1^^ÙX@´ŸÝM¶Z›Ë„Èüéðçw”|ùXÖ©üÕÝ:¶PRU‹ç’an ¸p ¼Ë‰ÕýeŹŽûÎÉœÛë—36nìü„„ÃÐ ÉY, !Yd@C&<{—£æ»,èÐ1ËR»æúø'„ÂKÐ|sãjqà„ «ûÛ&>cfi¨)fÝ¢UYüúI €†Ç ±°²T VtL;DƃðÇ×7ÜÐ+Ü8a@Ãêþ¶.úèP÷GgÄvŒ”sIu%¯Œ ÑÓ?¾ùO2Ðòò•¡ü šLíGªªÅÅÑ)Z& šâM—z2~DËhЀÕ"çEc'Ñ…ñ²ö]y·Ëb…{‡@ ÌhXÝßVØAÿ½Cë£åÉñS8òb^Ðx:\“ÝB7 :e,ó'h2µµ|·6…€iƒ ¦Hâ,Ý4—…4V–*Ñýóï¤#ãr÷Ë/¯¼Ð(Ü8a@Ãêþ¶dúèÍ;Š–­÷Ø(G)'d& :hP_ºcV­ å¥fˆæ±j·& y¤ªJò%'ºcl&ÇrU3¸@ƒŠ¶'qRî:2®kÝ|ú@C pà„ «ûÛ¼9>@ZˆËLPŒê´c§4ƒ4È«—‡ýÂüªm|eæC±´¥Ø˜Rìÿ¢8-£¸Í xަø ø«QT)AŠÝÝ~‘ó£HQГ¥¬?¥›;e ã¯ƒ­¡Ž™©7sÅ+L昸r‹ïXæðÊÖ«”raëäîi#h²rþí½§ÏáGEˆŸ^[y@C pà„ «ûÛ,8Šæ=©q2---ÏI˜3=~5ƒ}†¦ã–£ñé<ž¡IÍ®3õ£® X;-hú Áòa í"Ú)„)ö í94dè¤àÉóƒ suüu ýÑ%-ý¶ŸSïòR’R'^?7óJ’rOŽr|Dgc]½?6, \65xÚ!ÝÂT¥Â¥Ðµu ë:*xô²Àå&þT7Vfhf %În\æ'| A}ïDÎÊŸxñú~]™BYÝg Û…{‡@ ÌhXÝߟµqhýá3=Τ'e¢e·4wÙHÙ˜Ì8á ý§q)Q¢xp Íæ­›ìX0ÌmX§€NíwIu S2|nм¿6Zømw÷ñlóˆà&/9elÖiéÂ~´å+ÆíÖE,\L5Turð§ô"}CýÆš¡¿Ò„4ÃUÓ`ÍËÏïº$v¹ðw9FŀʗÞhØ-Ü8a@Ãêþ6¡Fu‰bIfä^´¼'+m@̽d}Îj#hèïr*T(tZãdÊw9ÑŒÛ.VwW—”ïéÓs¢ÓÄUV«²r>|—S÷†w9uWÍÐiQ3?—‹¯›¿‘fМ¾1£Ñ¯ÑÇ£Ï,ëYÛ¦…6>nifÓ¤Œ%FæB » Ž›Žë …›†·ïy?а[¸p €†Õýmì ÆèÑ4I1íݱFh@ƒúnß¼ýtûÓTS*gchf8Çüþ^ý‘TüT¦ìœò‡å&T2s¤Pߦ§î˜ªæ¥F—Í‹% v Í´§úrÃ4xAs÷åâäo½¿ÿ8ãÙÕù×4ìî0 auÈ`|€ýÇøÌDùHg}ð ÿ€&@3 «O)³ÜÂÚ¨ IDATzy?¯~babÝ}»Ïp˜±yëæf/Ƭ§c¬3Ùn²|€¼\€Ü$»IèGî™/hPéën?oýæùÿ.É–½ûø€†­Â=€C f4¬î/]õ ×©$ß¼€aŽ%‰K'ÅMæ†fð‚&}@zÈŒòŽ103˜î8]!PA>P-èmÕkýòüF–l[ÒÇ£Oûö#wŽÜl´™¦ÁšŠ×5:½ø÷MÕðêç§^hØ*Ü8a@Ãêþ"^dÄeéqæ€ÞA8‚Òƒ;Dvˈ>М”:i£eC†2›¶mæ6¬}hûÞÞ½—[/gq+¾ =L7ôwë/"1ÉnÒ"cgMƒ4¨fåÏŽ¾wkÛ»N÷4lî0 auÓR2Nõ=}dYacpŒ‹¿6i—4ƒ4Aÿ;&{Œ0et·êw.*1Òu¤¶¹6[Ûò!hèYm¶º»Ww™ ™Ñ6‹8h~Íž[ãr&<-xQ3í €†­Â=€C f4 õ¡vÊ÷qËHûÀ\ÿöÝ ³À]h½œÝÉ}#OÐ?@¡ 4¯Ž‘rü\`þM¡ö“b/0s‡(3Ä}ˆŽ¹kà[ÐгÄb‰\€œŠgñ­Î1 ?€æõç÷*I*gï•^’¾ôîý ë…{‡@ ÌhbucÐÔL‰ê¾§öꇗéãE÷>ßðzŒ;rÓnmîi#hN¼î»À—]‹hÚkJ†Hð°qÛF³;|=C½¡ÎC%‚;ˆÙè‘7 ?€•M©î‰-Õkžþ@ÃzáÀ!3šFÕ4ŸlqI´}üážûƒ3ª¥ý¶Æºd0©á”ꢩ˜”™,| ÑÙ s^²ÌBß‚u…h›k«ù¨)(®Ý¾–0e4ô,¶X,$ó›ûÄEÆ4ª®nøÜ¹Y&„Ï›gª«+ˆ ©}w[.N¾ÆþÊmë»Ö ÷@˜¡T×~Fu¨úʺ©¾-Ó:ë¿3o ·H1ýûœbžˆkƒ-²wd2/<$v¦Ñž(ü¿3ê€ëÛ3}¯°xá윯Æ{¢e#;ý±Û)+çö_ž—•’ýzPÔ:ëæ"*:­ëÒç˜öß@[bæv¦«zb…@ÓÚ¹”ÖÎåÂ@ üÁ›¡yñþ5·êeåD«Ô¤—ÌõþÈ9Û¥üIÅóœŒÚÎTç9›¿g¾Ù|™@m]íÍ\º©ÊÓ¶Oã¶fpæ`çƒ\ß¶ys»¢ûîî´S[ŸÔ½àà_A°@s?"¬nü¸õ9濆vt8K_‰ÖÜ 8М©8/#Ÿ§¹¯4ø€†ÅÂ=€C f4̓æIÅó2å²C´4Õ¤ÊË/ÙxÆHS76 c!m¡l€¬Îf¡…¾ÅY±³¹_[¿­"ª"âck8þW,Ð<µ±ú[[ -P ¼:wLIJCËh Z/p Aµ&w݃ ë/hX,Ü8a@óe¾¿m»¾äô3Îôº|;àîÓ§U†~áhMûsuuéÈèáÑc’õ$h h|øæªå¢¾-ÝVOëþÞRlÐ3¹×©‡%Üø[hîï ¯›0ž¾’¦ä¥”¿{Ýøq÷¢"ÚÚöJÞÜqvAèÞ%fâ0ZGg#€&élJ·Èn¥}/hX,Ü8a@Ó´ž?U9ºêºùÍ&ϲta¬4Y),©¥§%¬ IÑH‰˜Ñh¿{¾ôÀ²i¹Óo¾ºË¥Û_°@sµºâc}½é?z$xuñ½Õ¯[ÛÇÐ\=ûGxA@IUjÖ»y[\ÄLmnÂT½{Ç ‰)-аT¸p €æÇzûºfÁ•+k®½¨kú,KF—þ#íFòF3X@s\ö¸Ãz‡fAóøÝ³ù ææÏC ÜûhPÝ*Èû¨¦V7aüß›6Öç²²c?GÕ’äó¬¿ä´QÛ¬Õi6€Æø€éêm«K½¸u €p)šêšîõêÙ5Ï_½úùYñâƒ?ÄCÄ7èoVÐØjÙž”:‰~Í£·O5óç.Ü¿ˆ«šDÐÔÏÓÔTÜ‹Šxjc…NÑò¦X1c*RªYMö§…[Ü%hkxê™A“]ºO!T¡t·^uÐ@ .E¤A“´¹ä`\5ãÇâ—Ov*}þ¼©f ê8t°Ó`ži†÷  š> ýgÐÜóxFÞÌeWpö MBš&Uuëê¤èÉZë´ªR®´uá«A¡9’¦v3´y;?Ó2hP Œ1)@ÃJáÀ!3" ¤™"Éï¦9þ×åó¿” ªjéYVKO«}Hûµ†k…4{ûì Ô lšçï_-?¸iæiÝßÜÖŒp€Õ™kçU"Uü&úµjššôô$Y«CÓx®™ÖAc|Àt¥öÊÒCš¶ ÷@˜iÐ0L“3ï|é/Žx4¯ú³ì«)Ý=ºóR3< Í”vºýi«ÍVM@³õô¶‘™£½}ÊÍ hP¥—ï•Û%ŸÛ;·yÓܬIJŽë`Ÿa‘ö…÷ši4¹¥ùò çœÿ{Õé¬ÿ[ å[}ºÞô3÷ÎW8NúWzÜOë4„×uРÚmp®”r!kù¹ÖŸe•|”4Í5…4Îkœ  éË ÐDTEöLîuíï¼ÑŒ0•]±Ã€¨%Š%͘æê©1>)€Bs›¤Í/ A5(xp¸Vø+k:4Í¥K‰›êÔW>œ·@@°GÔACŸ¡Y75ñÚS³˜Y!$¥£Ë‹ÓÚ¨ QIÓƒ¦àö!…xÅÏðL3BT3²fÇ™^”»ØÒkO|õÁzÌWÒL×n\Û:h.q}ÙwÚí‚·&MÐ@ ìiÐ0Ž¡AÿDn|<ÍÏ5?Ñh„ýk†Ç )P)ðZâÅÍ•¿k;'tμ‘ÍKÍhŽÕœ•ÏÛ]Ð’iø4é粺xv)Íi4ç’ŽT[|ábú£4{D4Œw9!ÐÐ}“¤Ý̧ß>xû¤C¤Â:ÃuB sCó³bgÑ)4šùs·žÞÆcÍhPÙ;ŽHQ‘Rݬiø4¨ºùuÛã˜Þbô-*~Â3ÐÿsiÈÂ=€C f`†¦5ÐX—Øê×ñß—S ÿÏМ”:i«e»Þr½dˆ¤þV} ióvæhÈ߯Þód†Õ”‹þ ©?’f‚ßîèãgH¾Ë‰Û34µ¡AÅKû´¯SŒ–a†æçÂ=€C f0€ý£‡ð¶d@S^ý]Ðôß3àÀÃ$Aã4¾¾y¬\Ìa½ÃqÙãhAÕWušã4úJ2(iåvæ*hÈܯޓÍ©sÏY¼dzy–j‚jõ­k‹#2<ö#y «k:÷@s=$ð…B]MqŸûýp`†iŽž|ˆ4dþÄ\²pà„x—S‹ 9ûè¼J’Êó÷¯H‚†Lxð.§ˆ)))Km–ÊÊ›ÐLȃ†d 뻜50yPLiü¦Ä\ËÌC$AC&m‚¦n𠄘uÊ ³ï ©SLØ1 É¿/7®÷@˜д§R—MGuϲ š\µ\ß¾ÝüºÍ±ŸÃX  á^Ù;ÎÉž‡4ƒLÃÏ ù")YqJ‡Ê{±zР5š&…{‡@ ÌhZͤœÉ{jÓ„4fÆfgÅή7[ß!¸cz@ÃÕ:_{I&FÖ!?wqD?ƒ¦N}0}bfÜvʱ~ 34êš&…{‡@ ÌhšÍ­×÷:Ätxðö‰ð‚f)•&A£Q,ׯêãÝ›qô €†5#k¦nžã¿Ý5—ßÿ´ºÎðhjCƒè Ù¶‚â<¿ášðM“Â=€C f4̓&¦&~Ö¾ÙŸe… 4Tª4•ºh×8Ž’!âF4# Ï@c_ì8-}~—˜ï34̸"Æw ¡›¦NC}ïh±‰–µaÁä5 @ Ü €¦yЬ=²Îí¢§ð‚f •¦@£ì|p”c× Î›œ  ájÕ—‹‘W° ãsÐÐ+÷\á/a§Ë/h~.Ü8a@Ó hžÕ½TŒïtáI™ð‚f1¦b®oqDöˆxèïúæÝ4¼ ª¾»ûýnk^uóÿƒ•XhWÇýQšŸ ÷@˜Ð4šãNöIéÛäYVø@ã²È×`©A_¯Î4Z A£sPWÒsáɪJMï]³¦Æëh~.Ü8a@Ó hÜ.zjÕjÐÔ¿ää=.±§KÏŶýi´¡ƒ&àltÐðìó4kÓ¶+†ŽÐü\¸p €¦Ð,Ú¿8²:Z¨Ac@£J뮡u’2¡u ÑVhx šƒUGÄÃ;E?# ‰?µ÷׹󚦅{‡@ Ìhš‚æùûW ñŠ•Ï¯5h¨6›ÖζíJ¡ÑFШ©ÔL ávUݺú{„„cúŽÿÞ¶Íë7o³šó•—~ —ˆ(ÊÐ4)Ü8a@Ó4gë±[íçgY!MðÌ`9_¹¿,þjøi&ÑØ4”Rä€u{¼ùöƒõš”bÄ •»4M ÷@˜Ð4O™ßGþvÐLtj¨ê!K£QE¥ÊhxYÃ㎋ÕÐLHZÞ'd €¦IáÀ!3š¦ YqhUpE˜pƒ†fJûcõí'þ·fh0€fAša‚š­ûÅüFhšî0 i š®‰]Ðf1¦lFSô[c5ù¿•“àƒæ^LdØÒ®ë6ÿöªïhÿY³ø4éç÷þÒ)ëÔMãÂ=€C f4?€æÊßµrqrÍ>Ë hÓ_]ÚdA‘ ¡Pë_fZÜìå4ÜÕLô®oÊ‘”YÔï‡óÞ4ì‚æ\ÅÅß#ÚoËÈÐ4.Ü8a@óhÒ®gNÉ™*¬ ¡Ñ”é ™¶“¢îA?tF@øKó 44Ôb.«P†Ø}Í-EE> ªn1Ç…ÙÿñRáHZ¥¾â}.•ý´òÇõÂýPªk?£‡ºˆé ë“]—&mÃþûp©ÌÍ¥é éáKY´£~­Áþ[‰`ýÛ^!æ‰ EÙë;hÐì¿U›59v“´ëúVfÝTß–iÕÂÍMkçRZ;— ðOo†æòÕ*Ž }aVÖlÏÞ?_ ß‘›¼6E„ã­”ßÂ)èy {ýö47qÌÐì;¸Ÿ­ÒK×÷š›Ë\™Ÿ®a¹#¿…›+´×èfh Ç ù4ݺå•+htug5~Ÿ6*´†}ÙŠpÜÔ­ÇÖ¬o?|žÅÇ14ì‚Æ)Û¥cÈ@óØÔÖ@cðKýëMÊÎ Û÷h Ï a‚ædÕÉ(Éò« ­Ó˜˜(R©íÐiKšáF_Ö#47uëA¦¹©¨øO»v/ûŽñÃô.'vA—Ÿ !7×7®EÐüWYû²­Â¥ìwGÐ@ @ÃMtIìð=#š½€ˆ<Ëbµöe4¨ÄwI¨Øû¶ Tyy©-#í: @@¸ 4ÖE6kö­Ð`싱µö%š¾±ý$íÌwçík49¹ŽARvIa0C@x 4H3–…VŒ}1¶Á¾@3c÷Ìž>ZÖ éõ”a¾CUk˜+å㨙yp áU4LÐŒOz&@ƒ±/ÆÖ"Ø—h6¦iiD,\äO`[ áj4LÐt‰ïº¿ü€c_Œ­E°/Žlϲֈ×Ë>@ @ø-šï 9WsA z³²h@ÑhxÍwЬÎ[cS´@ƒ·/ÆÖ"Ø—hÆ&ŽÓ6ÜQJ¹¸ Ž¡Ð@X €†'Ð|Íô̧‚4xûbl-‚}‰f–÷Rýù&(`†@a5ž@ó4ƒ“§”¦hðöÅØZûÐ Œ±¦ù4Ÿ…4p €Âj4< €æ;hc‹*ŽhðöÅØZûMÐò[\mÇ&ŽC ÙïrÐ@X €†'Ð4€ÆÌ¯]d»–>„@# ­E°/±—œürúÆõ£ƒ†@h œ¯·š­dMJ³E‘7k¶4Ä‚4åÕ_°€æØÉç-‚f›£rœr+Û’yÖñö. ó¬#R}É´ÆÕ—dkŒ}‰‰$.?Q>J hÈ \²pà> €k0€†Ì¶d@ƒú¶k3õ .¶åÍæ¸ú î¶ÄD’s`ßï»ÄJ)å=hp ;­l‹{‡ðY4XC!öb£Cuíg´!½ˆõ%š§Ÿ0úonž†b§Ýʧê›[£¯—W>±g‘êK¬5®¾i±/Žäå_EvŒT>$s(7ÿ&Ï@C~èàÒ…{‡ðY4X34  qX·,NýMwño”ß>3¸QÒô`ý'¸ÀmKfs˜¡aw[bS,¨zÇŒLêž34HÓh°hÐ?z°€æÄé'-‚Æq†þfñwV{ª/_·šø¿?+9W×t2Ï:"Õ—Lk\}I¶ÆØ—0hFÇOóâÏ{Ð:¸4dáÀ!| ÖÀ»œ@³s¸ÍŠ®wÏVÖÿxÖû]Ÿõ×Ë92µ¾[‹`_ ™“<×f² ïAC¦à]N^@ƒ5šиp]!ñÎ&­úÒÉZÛñ_ÚOº}@ƒ'¢¶Ë‚šµ©è-ÔÐh M ÁMh꧃–+«"fþÛ‡Šþ ©Ö"Ø—0h,²,gëÎÐh M ÁMhüzÅžK¸|¥¬:ÛåeWÙw.G*®hðDÔvYAãœí:†:@ 4 €k4   ;«BùF¡|“éûÚ"©ª¦éDðÙK_Œ­E°/aÐäõ·í Ð@š@ƒ5šÐvɼ˜ÝÊDðÙK_Œ­E°/aÐÄå'vòè Ð@š@ƒ5šÐ˺|@ƒ½/ÆÖ"Ø—0h²䈅ˆh4¦Ð` €@ÃG}1¶Á¾„AƒJ"P"}€÷á³h°FÔAs{WØ{ ue¯_n€–4xûbl-‚}É€¦³[ç˜ü8 îÂgÐ`HƒævDhýÀЬ?åµDýBK¦Ág;,}1¶Á¾d@ÓÇ®Op^€÷á³h°F¤Aó?õÁM@ó^C@ƒ±/ÆÖ"Ø— h†Z õÌñÐàÀ!| Öˆ4h¾HJÒAó[åó¯õ h €c_Œ­E°/ÐL0ªÞðI”!¥YÎ:~JwòÛÍ }4X#Ò y¯¡Nœ}ü¥¼¢ ÁØckìK4³tgmϲޗeÿBº±Zöš ÿ¨4½Ûa鋱µö%í%ÚëS7üÇgbÏõüg§œÔúIeuñ> D” ÁJuígôPñêìÖ9*ë.ö_ JPÊdŽÉ²$Ëœ”œçRÓJRþ[Ÿ~þf·¥‰_ë—÷¼è É<ë¿B iåjh°ï[ü ÖÞ MÕ«/šÃUG[¹@¾F›˜šò¾P_ÿ ,…«µö=~æ$Ლjµ$céñ#‡Wa¬?\¶´ÏߦQgŠò.šŽü¤¦UZÜtCt*<34z+.2j¶(ì†Í'ȇ1Sš-n÷m1·o7['c¦4[lÿž-d@âÝf‹ígTL 9cBi¶¸ý÷â·û€¦¾úØõÉ.ÏÐhDª/Ð8ùs¥ö÷÷6ÔwÖ¼;B¾þºN¼}ðç 4 €†K¿€@ Ѿd@ã7ÔobÊ$h4 —~M} ±²ûâ €F¤ú’Mxÿðá»Gh4œ}BÐh4dkضa‰’4‘êK4‰j‰ýh4œ}BÐh4dkœé¸]ç¢4‘êKŒ2•>^o¬îܾ¯»ZÐh8ø„ ÐhÈÖ9§¼4‘êKD3Þžô£€t¤tõ¨_`×4 €@Ã¥ß@S_«×®¶>f  ЈT_ y;`4oÚS:Ô/¼8@ Ð|€@ƒ4º‹t h4"Õ—h>KH0ÞªMÿJW´@ÃÆ˜¨eQB³uãÛ·fëÛ—Âfk›¥ÙâvÖŸøÖlá Û€`÷öç6\Ø ›·€¦¾Ìg˜¯/Ø ЈT_"342@ƒhR?C3fh4-@ ! rë´0g€@#R} €¦ÒÇ« h*|½4š Ð €†@©Mʘ  ЈT_ ¡›æí Ÿ%$MØÕ €Fä Ð €†@Å÷Œ×H ЈT_b iB €¦µh4d !PÙJÙÝ{ˆhôÖ~É [¤>c½‘ãÛ’¿ÔdçSs6æhD /)Ðq§¿äÄø'úÊW”F_ð$1ír!€@ Ð €†@IÉÄȈh¬oš-Ë.It8½`£…á– Ô_Jô=½@#ü}90CÓôÛ¶u¬TGíãÿS0C Ðh@C .P.ˆEŠ]¬-QЮ;¬ÐñÔÂÛŒ¶8.Pª0êX:€Føûr4G#tíü0ª^rÐh4Ä !š‰=ò+ˆ(hLMÍ׿ó[ÃË¿uÞ÷‡!C# }¹šSÁsÿé±±´Ž¡ùé ¬ýœf+ôηf«Å°ûÄÏ©¾˜>8ŽSa÷‰™íÜãÐíÃö-rêvf÷~Å!0}»ÙlÍû•ÒlµM  )¯þ‚4ŧÿn4ãÒÇGåh¼½ °€&0ð« 1þ+[YêÊ”56›½§¨¾QšT˜IüY6!±Ë<®¾$[cìK˜2ßo 4§ó«&Ë¿3M-n‰ADACfèàÒ ÐpãöÐ hÈlK4¨o+ Y–·Üé„ 7@Cr[ imÛ& Ñ_t·:ùç IDAT¥}×8]“úeݹ7Úw/I!þ,KrÊðæ¸ú î¶„ACß¶%ÐçÙ¾’z-§¸Åy¢ Á5ì´²-€@ÃÛ@C4ÄþÑClt¨®ýŒ6¤±¾Ä@sòì3Fßfçih 6â,hÜÜ2}½¼òyßáº4o™ðÏÐ0ß¶ÝøÍÛ&V+ÆÖtø­þ«y:ô(X¡—‹iÚ€Ìæ0CÃfh˜oÛþñÍÛ'o÷Txê ¥ma†@ Ð4à‚ý£ hN–¾yd0Dø™26þXàêK²5ƾ„As¨ðöq¬GfèàÒ ÐpãöÐ hÈ÷Þå4Én§tŒjɵª‡³ºX¥F_áhÈ„[ïrâ&hH–¾ÛW_ iL^‚†LÁ»œ4ß4Í&çÐ_w‰•\«MÄâÅw••ÿi×¢e ô%æ˜ú/§øýË)Ñ2€Ï¼ ô夨MÑ–f«Eà »áöíÉ¡ÛÛiéï ùšmîá²1c|ÎD¤f&ur;PP+T ‰X´èÛÇSZ7 €FúÑŒ·'ã.D?(˜]Óh4 ÉhÚÍ«„Iy,ŽZUVi•Z#T ¹«¤Ô4w••4"Þ—hÞÐ4oÐ,4ÞnÜ€¦ Ðh;„öN¶^˜»–@3>}BĹ(¡ ½&o×jØÚ‹MÑéK 4$ @ ÐhH@ÓLE¯/N,a€-ϲ[iqÔJˆA³Jû%¬½®™€úh4‚v?¯¥|{XdØl±ûÄÉíÛgŽ&¥ÙâØïÙRØü€;\Ð4SH0E%膾¬b½$·™¯¨Ð›šþê;@Óv€úh4ÍÐ.h¦A ¡Ë&«.X˜@3…fý[¨Äæ­›4"Þ@ Ðh~€FpAÃ8†&÷ü…©$Ñ—õé6bÐ,7µlï­1Ë~6€FÄûh4ÍÐ.hïrB5Ño·½ÍÁè?‹CJÂ'gLbÐèšÒ~wX×Ç«/€FÄûh4ÍÐ.hWXáÉÁnqhádÍÙÙÊW„4¨¤ÌÅBÛQ4¢Ü@ Ðh~ˆ ƒ¦ºö3z¨Cegíbï™ø-+Gõ ͼŠýWâ^pÊî¶k„CÚAì¿ ”¨MkçRZ;—K``!( a÷ Õ¼¸Ùjñ÷góƒã¸šþ.‡?5[ÛÄ(ÍVKYâ[³Õb¾6[-öåÔýŠC¼š7ÿþKåuüü²¸<´°â𪰚]ÏBû»Å` ï õ5äB†›8ôpÔà> ¥  ¾wŸ=ÄR¸îZû¾ûü÷…ú>yó7ï ¶tkP`†@ Ð €†YêÞ(ØFT?æ}Ùoã1-!ÍLc+µ­–â¡âúFú¼wiMãÐh4ÂÐüP¦ÙGQ]xQÞm·ªƒfµ‘™ÕKÅGe¾Õ| Þ»4€¦qh4 áh~¨êçÏl#Õ½A A¬VÐèýFóŸf;CÍK @ƒ÷.  i\ €@C8š¦µ,.ÏëøùÇ6y]öVРÈQ½–›‹‡Šo¤nÐ`¼Kh€@ Ð€¦iÞ¸ÓË%6¾v÷œ‚¹B š>¦Î3­Ô]ÕÇ:ŽÐ`¼Kh€@ Ð€¦™î“{éœL¬Ìó¯…4cMv 7qXm¾Z:X¦«™…@¡¹Ï3b‚¦ºü˜æÎ -P9àpÚÝîõÐ0 @ Ðh@ÓLE””Ï Ï½wLÁ½ƒÂ šùÆ–ÝM]Ñ‚ŠŠ¦µ¦¡‘¥JcÐì}Au ›°¯ò⃛¹ûR%^¾ áZ_ £4ø`·!Åí¿ »·®6ärZ‚€¦™zþO]ûH£ffg· +hÖQ¥¨>hažÕyåé£Ê—Ž¿v7øûi +4| g Ð/ƒ&½âªbðL§K®B mC“v4?ÆË,–IKëëÂëñ¶¯`€¦qÕ†~Rœóê +4| g Ð/ƒæÕ§÷]<-ú§ JРHQ}ÖQ?öwï?Âi€†Ç} 4¯ïým¡þeAܳWm­Ðð,4\~Bm鉰Åëg÷÷Çõwaó[ Û$Èm€²yûhÚ(ã%â»:îʺ%” énê:ߨ’ñ£–©–DˆÄÚ­k4¼ì+H yýà…Ïì/½×¿ºö¬•¾‚€¦!šÖ a»Ê«¿Þ– h.UþK`«GuoÚûL]‘°“0Jüüb¿ÿ¡VÎÝ11Þt©çp‡±&;ÐhÙnbZ˜¶cš’ŸRVο„Er¶ôй_a¼K“MYå¿<Íë;ïœô¥ÇšÞþ¼òuÍV®„ hHÞÎÜøû ,4 д O·%ԗ؆ËÓüdÂz‘A д¾-L‘ÄÙuËû˜:Ó—Ñ)ý¬îÞÝÿØíLF$X@CòŸà¸îÒd@Cr[ö4óêæK‹_»×Ã…¹m£•,^Ð`üµt–ÀÀ@ÓMëxÐûG±Ñ¡ºö3Ú^ÄúMÅÕOŒ¾eìÏÓT=úk°òÂmËÙ列W6£/±yb ñöÎaômež†î˜SÒkå/ê_²‘JùµصÈù²7Œ¾„çiܵÈ߯0Þ¥‰¡¤òê¿Ì¾UDæiØÍýÝ)”oÌ{«ðýO+G¾©}Î ÐpävæÆßW`` i€¦õ3íùˆª³d=¾|UE%lÞ\á =G Ÿ_R¼TcxåÎíH3Šqr®îÐp©/?ƒæÓðaM@óiÄp £pà„MÛõÁËýÆ"âÅ:c‰@)===´\4¤þxa ê{ûêýª5Õ—º•ÕÆßL¬Ü­§w­@þü š¯RR ÊÜ“«?Ek4ŒÂ=€C f4,ÌÐd¥?2“.ŒY†³æÌûo†fžƒ†Î‹¹·Ëû—WhVÆWˆS̽š áx_~ÍÇÞC y'Þ0C3r€†Q¸p €¦íª?†¦KŸ¸™õ¯:mÑÚ"ë+»köTa=†¦ hêëáƒ+;®]”»é…LW‘ ál_þ̓²'Uójjzø{iRÖéPŽ ¤¬Òm8†&3 @Ã(Ü8a@ÃR (G‚¹ÒM¥hˆÆÊÍw.rY½ŠÛšáÐ4Ô­‹÷*4+“§$+E*y—úh8Ø—ß@óøé‹ZË¥J\½Ý»$t];¶jÆ ¯RRÈ"¯2RÉh@@¸ K…ö×Dwsؼy™Æ{k.Tð–×5Ô)ÐЫ6þf®F^ÿZùÚ7ŸÜÐp¤/_æöîûU/y˜xöJì=){òÁÛ…M, i\¸p €†UÐ0þG·Ðt¡‚ÕÛΙœŸl6yTè¨ wË4äûò h\xR1«Ò}™{¯èÞöNʾž×¬E4 ÷@˜а T´å´Îîõ ôE4ôºqüŽž’¯RLA<}ͽ»7ž%ƾr´–wïÞM ë}±ƒæñ£ç5fW]g¹ö í5.kÂÞŸ( i©pà„ Иl6ÑØ®±Èl‘È‚¦¾ž>ܢ⮲ÆuÍüÜÕz|˜2ù­ÞftúoOµÇGhXì‹4Wb¯Û,¶Q PŸ:!³6§M‹hî0 !T¦KLU]U¹=IÃ× i¨Êê+Ëì÷tù}·…cå‹Ð {õ$6O áhjÎÔR·Pý5“æäß<È¢E4 ÷@˜Ðùsu+uÍíš"TÏbö-ÔýÇt‡é'Ïž¥¯ü0yâ³Ä8 +}y¯™ªû5k,õeýd—…,?q÷ [Ð4.Ü8a@C4¨œ¦8Éûr÷íNšWŽöoõuoÜ¿Mó4“ ‘°îâ+h Z a¥//)søAÑ‚¨…ý;®Ûª_ZSFÀ"šÆ…{‡@ ÌhˆƒÆ~¹ýÓ ì&ˆ8hž%Æ~˜2é;GªŠ»GNù-´càJµÇ‰±Í×÷.›¶3˜B èè¹Ïãλw ëß¾»a¸ ­T ,Î{÷‘oŸðXéË*Gþ}{þüÑï7…Gžû­7oÐʺ+“i”úJO­kqÛç_íº=4qXO¯ž;þ²»{æëß¶  i¥pà„ qРŠ)(­m¬-Ê ¹w÷Æ¿=Õ^„1Ö$yŒ°m×>¸íßgHæÃ-ý¤Ó»¼~öÏ«C…é²NÇN~Bëë¦DußS{õÃË´=Ñ*)wžòë+}YMÝ ½Ä“I÷^>yÿâàá4Y§¢âŒ³®L¶n4_”2QˆS˜â=5trèýȇï>}?†@C¾pà„JuígôP‡"V‡©/ÒV­H²Âþ›à­cåu]û>2óæ"êó!3Ð2Z³6:Z,HM"¸—N|RvÎWò]²Ókú[æÚg~ËÙûduÒÚäú»nfrIwëcÞ{ñß¼,æMA_“uS}[¦uóÙÿlMM;U.²ó:gZv¯ýÇçÝÍK&õ`G!ÿ›·~%4Øo[¶ ðOo†K_´¿‡5S…E½ :ìêR˜ÚüÈê«…#¨ïf6c ¥¬©™>v,:EËô•Ú›uû[-ý5 «X`§1ÖÓ6énjózPk7×fÊÝÍÀÖ¯Ãv+´ìêÑw«ïZ—†õ.žj[}7¸6· ;…úzúxñ¾P_SSöÊ„¶ÚÔSŠj­Ã\i­BóXа¼jû*uwu‰P‰î>ÝׯÉï’¿¿Ë~‡uŽM®õ=t¬­Baw“–®¤¥ÌÐ@ Âаº¿-™ã¤Î© Û6ÌM'â i%uõz[þñ«Ï€vÁÒÃìG­3XÇ6hÜÝLí|eÌ}þtqsqИÐþ¤ºIÓœ˜R­·îlaÕÏyœlPG¹@¹ Nõ¶¤¨ï9!}"@3ÀĤ™ëÐp¤pà„ «ûÛ’9Žä=¦tL>R!ø`(€¦•¬Õ5PÛjØÎ}üï¡í»{ô˜c>Gg³K qw3Øá+µÕg-]3õ qgî7éþÇNÞJæÞ[D4&´5Tw ªËÜÿ4³É|Ó¤“;ûwý5TJÍmè˵¦&Ôi¡§$N%O4×7oéª4)Ü8a@Ãêþ¶ÂŽÓ ÏØ[Ú÷‰ïsðøMëY¦gÜ™ê i¿BÖOY2XRc§ÆRÓ¥­ƒF×Ö·½y#Í4”¶•G+ W·õV~2Vvä4#  1[aê!Ns™gJÝh®5¹Þ1]$B%»«/±^«Bs[`jê¼Êùp§ÃùÝòíÖÛµ~mŽî0 au[aGQ±óŠçG$ŽØ’mÈ\_˜=ôûûiÊ<Σ@ó=sõiM=;m£õwÕ!°CÇ€ŽÃí‡ÓeÓ4.ž=ߌ4¿Îõë]<&Yø£5’Þ´Ž°‚ÆØÔª“µÅu6%°+%Tšâ1f¸Í#êv•†[FA7ÌqÐþ‚§¬æú±rmŽî0 au[—ÇÙ1%Év)²QS Ó~:÷HTD¸‚on6ÌÐ4ŠöfÝ –RTï~Fö³iˇ8‘ •’^˜hªå½ÉÁÝ‘¼Q„4›·nžc7w Ç ÉIù@…‘.£Vn_elj¸€©15|Jø)‰Sñ#ãÍ ¶²È# G ÷@˜аº¿­Ëã˜GqIÿs27NJžÜôÜ¢ü¥6a‹³ á%§Ÿ³QWo˜¡­8Õ¢å•&+×'»©…¨‰…‹õî3×o®‘—±³›‹¨FŸ¶e±Í’á®#ÅCÅ{y÷šê8í¯m¾¤ër·B…¼y¶v°q,€†C…{‡@ ÌhXÝß6ðq¬èœÊùCaGºÅvsÎwý% Š;Rv…chZÌZ]ƒ~FRTï –YÙ_/ìÜíÿôY?6`\§ÐNâáâ}ƒûÍòŸ­ã½­ç%hüÜ]÷nÚxtѬMZ¾î®\ÎÖÍóvÌê6L)@©]X;?•qÎãVm_eD5nV$Ûu¬2úew(ö^àÃe4,Ü8a@Ãêþ¶‰¦'ÏL?ë¹ß[9¦ó¾cûÿƒÎ!GÏ>Ñû÷³¯Ñ =ËôŒ»˜¸ªÚ&ntôp™j·iÖ6«·NÚºP5DU,\L>L^=Hùf½Ïz  î&n+핂¾}/Lž„N_**¢5¤ŒãÿÛ;¸&ÎôÏv‹Š( xk­®x€U<ñÞ*¶^€ÅTî $äÀoKÅ QPëÁ‘Ôv»µÝu»«»µ]Ûþw·Ý­ÕmÕý¿MQÃL&3t~ßÏóÉg2ÉäÉ}¿yç(M Ê ò?$vÉ`›kÛNÕÎ)Ëi\²çÂm‹Ö…¬7˜GÜøýaó³ wÉvâ¸Û=·_¶¾œï±;t] ›Ð˜+¸nà#Së}©|œ+­ÒÚi+ ÏO/˜1ïð[úeeG]·íØ\JÇf„&4zâwßê‘=Ãgw¥uµÞiÈ­a;%=5$#ÔWâ;Q6i@îÀêŽÖëþ¹ý=ežÞÒyïd­ÍK%1šlQ±™Ó~¾†=d›8 íyš4Izhv˜Ÿl‰—Âk¨r(Ѳ¶š¶N*gïa3âf.‹XÞxYLã CÊ×; ¹½Ø¦¦ªãÅNEÑþ1ôTBcÆàºŒ@hL­×ÿ¸ìs…Äñª“Ýó{¤•ˆÊ/TìËßn/:~„–ÍShHêäô´¹q™ž‹vWXW'L+0ØL³)ŽZ‘03{–»ÜÝ%×ÅAåðªæU;µ£Òq„|„WÎÔÒ…A™ADƒ¢ÄѦ ÍñïÜrqi"%dϱ€/u—i"q™ÿ›ò7ßÈ;P5°‹º‹UžUuáJ×éŠËdË#²·ˆ%Ï[CÓ¬Ó¤9Xýëºó.exg2Qƒë0¡1µ^Sü£¢ð¼ÖN{®´*ëŒÔa—ÑŠÿ8ÕäÂò³š–Þ0âÓÒ7yÖR:] £î•ºÓOo¸=~\|àÜÀßüÖ-ÂÍ1ÑÑ^bÿŠæ•NYœFDŒ˜’ª³Í ÍŠ3ƒ7X×_³½éµ5KXö „BcRpÝÀF 4¦Ö˪Ðxïì»ÜᣠËó4øa= „Æ\C˜—庌@hL­—m¡!qºª¬‡ÆÕ:{”úd1„B¡1ïfãe¹nà#Sëµ€Ð(9_æ²k´UöÐ-‡Þ…Ð@h 4fÂl¼,× `Bcj½–¥ÊÇî›ÖFîWÏBhÜ@]¿ñ€ u‚(KTT©tˉõ(qqîdÏ[1”µŠš_/4ñqœ¿I„`ƒ¸HýƉÿ\XìzoÌ‘Ò ûß-ú–¢þG¢ÍØOewM}‘ç=J½èQ€?`††Gõeùö‡¿+5ÓHk׋ô3˶Qö ÊMD÷É©©ÕÖ|Èzz“R’9 ’:ˆ Џ›)‘)–’÷æÛ- â"7ÿþ§Û"¯Î~_ÿî¯úâÖçÕwÂG=}û ^äÎíç ÌÐh¡áQ½¥iäö?ï+ONuþüK]~þé”Ô!ícÒyìêšæzfliM%„BÃÐ|;îAß…ß\»ÕÌ®+ïuš|ç„À žÖ[}í`Y¥ˆä5HFõ‡uÁ§×vÍí¶óµG 4Ë ÍW׉‹<|íi›ùüØwe_þþóúšˆ‘oà €+ 4¼®·±ÐèCqAÙYÓ9lnX¼B¡±œÐÜÈ'.ò?Ê#¾ýøo7¿úìKñ‚ÿv$w­Œ^òí¥?™tÞ B` ¯ë}VhHœ¬=5xÇà‰aÏ…WBh 4–<åÔÒC 4‹¡áu½Í ‰Ëת—,ïžÕ]³RSS¡Ð@h¸Â\7p€ ¯ë}žÐ<>ýT®ìšÓuEpÀåªj „Bcù!ÌuÐðºÞ ‰²ºrOñø!ñCŽ>¡Ð°!4wî»ïæúÐÆ†¸Ù†Ð4®8À„†×õ¾Thj®~ —Ft–vŽS'@h 4暯ì5,Ö/ fè4K@hx]¯)B£C{ & ôÌövwNºšòùßÿÊPb 4 ¡áu½L„¦ÞiNkµýuåË*æõ[Z¥B¡yМùøú`ñg•_§ÝËϾsío›Qe 4VÐðº^†BSW´ZOv¬nçÙüû¸x\-„Ð@hšÍ/ÿ¶áHY‡´åvuóÔÜ ¾lv•ÐX…¡ùèúCÚÇ2&y¹ª—‰Ðœ;ÿ÷ÇÛhë–é´Žº«Å5¡¥›;çwž|AI])KB³cçN„F*-åJhäòsœ;:³ÍÉ>C^Ÿ‘‡ÇœøìÔK¥äjÝ¿9a®8ÀBÃäX&BÃÕ{fx,m¡irl]œVç «Ý©­ÐU-9¹Ìv—mpÉÚó¼ov¡a8»C[hNí0†Ç2‘†BóÙí[³$¼ªèÛ{Ï€üß™úÀ4þ(³ ‡0× `„¢÷¥‡^w¸~ã9PôòÒæy¹ª—žÐT^¸mÈkœ§ùPKl†8 1²}²öÔŒ#3»ìîS÷ì¥Ýô¤D“WiÈ»cçe‹ X|Ì—ö< =)‘H‹ ©e´æièIÉž}W yéÍÓœ(z´µ"§­²¯mž“´fû_î|aŠŽÔ^ûÞ—Þ< =¡áíæºŒ`††ïÇšk†æ±ÓkµŽººeºšêïî¹¼o代œö9¥UŠk fh~Á349J¹¿j•ÚåUEßà‰‰*ƒšfƒë0ÂÐ/=´e"4LòrU/¡©¼øEó½¯ÕŽÕi=u5WïÉ9/rphÿýýS+ÒõZÃDJ4yœX|Œ+¡‘H‹9š=û®´èù™JÉ"õb;uW+™ÓPIÒ7ÿLOJj¯}ωÐðpsÝÀFp•¯ë5ÃUN͆N[ç£Óö×Õž6î”]P =8ÌyŸ3ÑšE™H 'BÃ_öUN©Ê´™êYò:v‘¹vˆ Ê3™ea¸Ê À^×Ë–Ð4D]”V×EW»û©Dk†öÚ®ß,ÈZš¡iíB³Eµmœz\û¼öCsÇÛGÇŽ‰—‹OWAh˜× `BÃëzYµšz§©Kjº?áp™³¢¿­ÚvºtzdZ„¦Õ D)]ª^æ¨qìœ×y¦jŽ{RZ§ÙšL¹á ³× `¤µ MRôMݦܤ¶¡¡TdÆÂò[ßü èÑןž_(ЦÈþÐÐIº{­£š’—U¡©wšZm_]Ý;ºškÆú54ëDëÝdnÖkôЧÌ#5e}l¦óf*³Ïš•’Hv&‰Cë÷4„Ô/ Bc6¡‰ÉFÔ°í·ÊÞ’(r=—.k¿Y¨x|7F7Eíe“góÍo‚TkVgæ•— +žzA…FWØtß;¦¨¹Äg†ðÖ·?¾ß:†0× `¤µ M‚ÿ{bkoÿí_÷o~R1129äÆOdÿ_ÖL‹Nò{ÿö—ß?b%ï/Xhêã¢Vë¡ÓN2.n¼(xKÚÖIÙ“lÔ6ƒƒ–gø'¦$ÕïON÷Ø–á““œº2ZÒnsæšä¡ £é1š…B1>N Ud(SdÖ[äá¹ú‡rÅy¿Hù¬Xù;ŠŒÅj_'SǼŽÓÔÓãT "…bL¼Üa‹l]V3¯É¡ÐìÙöÌ~Dhn– Ž?PúÏV2„¹nà#­MhrúáßùÙ±o~tï§»~FÜmÇ'w~`-ï/\hHhµu tÚºÚÒ¦B£ØÔ8ï¬y½”½ìUö^R¯ð´ÃC‰Iâ×6K–Ch,rÊ)G®p —¯i˜nÉ–ÉݶfOT÷ËÑ&ÏÚM3bµ*XªÌ!eÈí#d䙹ͿN9‡ð“¿ðDh “û½wë»Ö2„¹nà#­Vhýó%Ããw½÷õ£ŸîÞ+ÖD9ï9èJmNœvêÏæ7›_¾Ð4D]„N×UW»ïE—m‹Öz䌱ÖXT ôË\’š´:ZÚqkúý)§0Ù¯êÏ7åtÚ’¹§œXšÍÉ2»y²R¶A¹±_Öø6[GÓàTŸe ±þ irŨ8y×-²ÍMÌðHhá'á‰ÐħGÿågV†#”ë0Ò:…æÑw7/ÍŽO Ð~¯þî½"Õ–¹®|}ÿ‹?^˜•¶íÏænˆµÊú_.ûÇ‹µ#.5þí¬ùýrûÙ¨lÛˆ'LO_ýԣɩ>‘Òvâ³ ÍÖ´l›øuƒTžò::äöéž3'R+Ë•»FÈV5Ìو嶲ɉò¬çLÌðEhš a}<úŠMÆùÏþÍÎPbc„rÝÀFZ¡Ð<ú¿“c’—Õüëîãý?]-M©þá¿dû‡æÄLÿ‹‚™8ÍQmMß¿7éðKä#5eM´Ä:rëPÉÔnÊnö*ûñÙãƒEk?š,ê»Y²4Bc¡+3T+‡È<~¥²é¢îë­ž—›àb\­¹S¬¼ûVY¨Ä$7âThþÐt7ľÛM„æýÝci(±ñ²\7p€‘V'4‘×KÜ#›¶Â~R8\uáê7÷oÿñ”hQ¬Ù§¬%4$Š÷ÿ\Þ¯üôÓ©qiÏ3•ÑÒv›³'¥èï®­Ÿ˜=ÉAå@bBö¤Y‰!í"Ä0CÃ@h¶©"‰»ô׸´Ëkç¨øUêÂEò¤f— ÷“µ—MK’K^61á¹RèöÌ&ñãG¡ù¦U­ë續´6¡IðÕ_Þù$<.ÿû>ÙÿŸÎ){„…R)sÊþú-ÖÐ0 ’7%1µhdQe¯ªŒ-™Í˜ÇSWh×_¤ývÒ“‘TÚ´W=Ûªm\e®‹2·è—l.4qª„%ê¥û<{ÃõÄÕªàL…äéùùùãç'ËÃbämBeóL›˜áƒÐHšÂw|tJÔ“ KKû!4üâimBƒÖ³”ÐèõâÀ̃—ì.˃å4–÷nNŸ#™ûºâõ¶š¶ýr§I§Šƒ^úëÚUœŸz‰»Æ£S^'»<»‘šQ‹Õ>ѪؗJÉR‘¼C¸lf²\jòÄ „æ&~XÀ^×˹ÐÈ[–wÕæêŸ4œFq©ñË3üßÈÛSÙ“Ès®ó©W€x%Ù/L¡ šíí‘âÑOүÎÎÄcFiFû¨}cL}$ʃ£å}¶É¶J[¬23× `BÃëzù 4$²7ä\²¿ô®Wm§1DtjôÒŒeã³Ç¿–ûZM›¾¹}ÇæŒŸ5½hCBJ"{B³> @5cFá˜1Ê3ÖXRh6lÚ¸,bùìØßŽIã’éb›kÛVÕ¶¯¤¯{ªûœ˜¹{ßi©‹ø¦×OÌü6EžÝò‰yƒë0Òj„æÚõ"Iöè°°6ä–l[8»À…†„8R|îµsk&]©2ì RúúÑŸ¹‰M ÌÎ&æ r ~Ó'·Ï¬ýk'DMðó^¾v¹¹l&yþüolm?íÝ»bèPrûµ­-ÙÒЬ öÝê;+vö¸äqƒÄƒ»Êº½ª~ÕNaçœåL †ì'rC§ñ)§ç9‡xÖÑÔà}†»d;eúÑÑò~‘²Èlú*ÕÐT]Ù'Êp%BCnŸ7„!4Ú´¡ùà“¡O-$¤,ì4)‰©™ÇíרÂýóô6c¬$·Ì§mô“»R¼*ð]ùÀ´Ý¤ÝÚ*Û¶Qµé*íê’î2*~”×6/ïPï%ë—¬Z½ªE6³> €ØLþäɆ=dûk;»&ó4-b$+7¯Z¼ÍgNÌœÉ “ÝS<^ÏÔ#§‡µÊÚJmÕEÖ¥fÿ‘i£¦ÆO%Ï ]ûâ54Ïsb0•ÖÕz§Ño[´g.³‰®„¦êò^ýÈ%Bó‚! ¡ЦuM–tT¡‘d¶ä€Ðµfjqšwæï6¯Í4»†fùÚåóBçMŠœä–èæ,r&–c“kóŠæ•ö¹í²úfô”:hDˆ1±c&DM˜ºuê¬ðYÞaÞ 6-ð[ïç쯬7'kz4±œÏzõRΘhxÚžã_ùG¼³dËRŸ­¾oGÍ+êíÙ±³‰‘x&yŽJ=T4Ô%Ó¥´OWYW¥Í¯5¿&·Ýsº;e9 #åéqÓF.\µ9°¥3:/þ½Ç$Í>Za]=ÃwOtŽT†¡‰]›M³CB  Uuéb"ï kÓDhȮߔpY9w߯šþª›e#"¥þâðØ *чJM¥O¡Äã¨,7J:ˆÊq¤ä=©ÜN”ª½>Ú)¬Ú)~Mþ}6ˆÙfÛêÃ!Ó¡wjïþñýG6Ú#ÄcZÐ4oïå –¯›½.jb”h”H3HsèµC¥ö¥u¯Ôé(ÅBKéB½ ¸þsg‚a„¦Ù!L„Æâo\7p€‘Ö1CC¾Ì=3CãnÉ7Àá ßòùÔ~­*!é¹%Ûü/ù~ѱS½šì|à5å~ñ žÔ$*Þ¨l_S°AKnÉ6Ÿ?ç‡a7š¡ifc†@›Ö!4×®5š?-¶äàç¿v–Ï«·½Ç4ÞæuÉw¿{äÒÿ¿û÷öüwoþ£.wüžÏõÝ'6£÷˜ÆÛ<ýœ_†!lšf‡0„@›Ö!4w_åäÞp•“ûµOOZ8;ÿµã$ot|Ucƒ!ÛQqUü/ùÞG:b0¦zý²ñײMöðü£&ñîêºÆC¶­®ãóçüâÐáú_ ~þ†ÐhÓj„F‰ÂûAåe1õßß/>ñ“$£þLÓÓs3Âü¨¹ÊK„æEBhtÐðº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,¡áu½BË+À’…–B`  ¯ëZ^–,´¼K@hx]¯Ðò °d¡å…ÐXBÃëz…–W€% -/„À^×+´¼,Yhy!4–€Ððº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,¡áu½BË+À’…–B`  ¯ëZ^–,´¼Kp 4]HûX&BÃ$/Wõ -/“Ô\åm¥5Wy™ ë庌p 4LŽe"4\½gk™Ã¹Ê‹c[L„†‡õrÝÀF(z_zèu‡ë7õA//=¡až—«z…–—^j®ò¶êš«¼ô„†·õrÝÀF0Cƒcyt,“Ã1CÓ*ŽÅ €%8ò¥‡ö±L„†I^®êZ^&©¹ÊÛJ?j®ò2ÖËuÁUN¼®WhyX²Ðòâ*'K@hx]¯Ðò °d¡å…ÐXBÃëz…–W€% -/„À^×+´¼,Yhy!4–€Ððº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,¡áu½BË+À’…–B`  ¯ëZ^–,´¼K@hx]¯Ðò °d¡å…ÐXBÃëz…–W€% -/„À^×+´¼,Yhy!4–€Ððº^¡å`ÉBË ¡°„†×õ -¯KZ^ €% 4¼®WhyX²ÐòBh,ñÿi‰ç":ÀäÔIEND®B`‚ttfautohint-0.97/doc/img/glyph-terms.pdf0000644000175000001440000003657612237364643015261 00000000000000%PDF-1.5 %µí®û 3 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xœ•XËn]É Ü÷Wœ¥´PO7û½ Å$Ú f¡\ËöWvÆ$ùüT±_G²!Û0 ›<ý ‹d‘}7îàŸ¿ÿåøéÁï>gs¬Ç¡ÿ+þþËüòëá¬;Þ˜xüíøýðºüŽÿˆkÖGñ!—'#ɶØ_¬„z<1{ŠŸŠëñãg.¥µ€ó_9*â!ÙVé'‰•Ú¦¢ŸôÍí9Û|ÞÝåïÝ\mõù¼»+–±†š_÷æ†$‡Ç‰9”ÓYSóM[æ ­Úå|ÂÐ stÿ§wÇŸîw6ÀM*Æcñ6ÕbÁ6o›KRä¸2?½½swXvÜ¿5¿Ü<|¾<~xóøé¸þöáñö×{ÿÎÙ–½wí¸ƒ%—‡?ûpn­Mú×ÿݽüíÝû?Ž·åæ?·íæñÓç÷oïòÍÇ?NçI•úŽ§Ç‡Ï,6‰/°Y?ÿóáóã³ÏÑÆ[Ö¼yüÂâ?ßïlþ‘Ló)YŸò³uͳ-R‚û ¾Ëà“¾Š­·8yü…ÞÆX¢õª1ŠuÈÍL¥§CÁ< þ;ˆÑŠKQòÑ’u%;?ðÛ‰ãWìß°WJ±5‡CŠõ,Ð)ÿˆ¹É^¢«‡ÏøškýŠ½ÌØoZüÛJ9QÛÀ`{Ðm 1‰!}ií,AµUP©Õã–;°’Jê³´¿ 7cá—N½âI¨Ò²üé˜ Jôõ¥+¡[Br¯L­@Œ¨˜àPÁgKÅþ Øß 7-¨@nˆÇç;›\5PE[@fC'aéÜÑdP7ØQ&qrW&›BSddŽŒ*SÁ-p§–´4!9¦Ö:õÐj=ß=¢`¶*oç†íFl6µ®áüàh”àÆV`Tv6b©o+úQlhéh+IöT«–­CF„RmÊÂr“ZôkjæhÑz ܼ|G¼è~xé`( ÕB‹(L øÃ.ÒW"WÍCPÌS>R¶àϹNTüvŸxõ{¶âél¦h¦L۠ɹ`„hnGK8j[—wi›ÖW/ËsQ&á>nEöÅ$óedWn@­Z´)€TÁ}@­".I¥ˆ¡¤a¨1Tœ†sj‰û~DÁ„„¬¾š~ÚœȨVO)t?›èŒ³lE?-¨‹éÉÕO³V/¢sÊЦè²>@ŒÎqƒ•’Ò‚=ŠØàöv¤^¡ìãÀÈå! ËÆZ³,:ê„¥òÉL¤åR: :nÕ•”É‹”t5ê+³ÛçDeåD=Nš;<ðtÍ«÷¨5üÏà  W\Ozb‘´éñª²ˆQb>Õa” Þ«R·¬…lö–Uë„­Ö²Ø4e \ŸdAÜû¥“N¢ã RÌ^⢲ã"Ô´ &O„¢¦»“P–¬vš½e»â0"è|öIÓ¡l&²Ã•ô3“Ÿà£‡} Ál¯š¿{[b‚Ãr8 ²QNÊ1Ø3*—ŒnpÆ[Y\OÑä åDû–.Ÿm›i:5#··‚¬!'n-!Èì)<“<6‰’—Và0ˆtŠdçâNÁF §Gó2Çì“àå©‚{âë;h¸åfV#yº;)èN9¿wÒ!Íö3V¯î„Øâíf¦k³*ºçÇ‹ª¿€¼¯uCæt(dh†/ÑR1² 2¯”ÅYÂ.ãÚ’2DaöL-|ªzøv–Ý0d”*;¸ §Á^Æ)d›ðò.b5É€ÏÃ<P1BŒ!hÇQ««]Õöϱ ŒK|h¾”Øæ†| ªñVÔõã%‚ƒŒ¸ž4lUEOTÒÆ[ G„üd§3؈íK3¨Ÿ²«yÑ €¼ãÄvÒ{^b|HBƒ:Î^ez†AÞbäžxS¾èßWhKÂam6é-B–@œuªÎè‡ ×¢–`à>ôj£X‹饮ùÆ· £ï ^¡£<¦ ïÓ–N Ewt h¾6›µ¤rlÞ'eÏ‘ØÓÖégh>7ÜS„M^GˆµÞ ñd"”ƒâ›²cãÕ<Á¨"ÕOñ¢O#T§Y pMäc¨ïÌHÕ¥}:³¿õóxû»qc¹ÙÖ37»1ÍeåA÷}ŠŠÍ)qF±cÆZ4o¦÷ÈæT4½yzB%>£Õ"‰û%Ò4 rÞõ #˜Ô¦!q1ÒÓÂT̲Ãa‰4G‚O™¿‚¨+øŸ€ÚÙ«8Û FðˆÄ¬lˆKâð§4Àøc(Ø0G þº ry§os9+ô§ŒõW§‘*sÑ?žÅ|¦Žîà÷£ Ìgô7«vsñÊû«¹xØÔÂÚ\ð€Í§×g óí2¤ÑYæâÙY<ñê21ßL®ý«gz¦2 ah‰g¨"9¤^Qþ’Ëü(œ!Á·•£¢„ÿ.Yv¸L…Ñxb‚Ò4ƒ„´Ç˜5>w&—u¨øà¥q¹rðZ(:n¡oýBC©È ޾C£:Ë ›ýÝJ0 YhÊèUŸ¾Ãè€ÖÚ€<‘S¡(\ LôgÈzËv™v"ôµNшátù˜T¹îƒq·SžVö æìÇëÖ]Õ3#RÁ剅NeÚ£‘"1ë4œœ£.|¿\ûË®îYþ2Ãû)x.S1èÉ\§bŒkã´ñ`¶Í‚¶ŒrÒ`™±t:œäÃ}ðÀ€`pD•ùE§àd˜¦-dÈÀ~ȈN¿vJ“AÆj5˜¤0‚?ܹ2\}NÔ¤îŸÍÿÑ×C“ endstream endobj 4 0 obj 2571 endobj 2 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Font << /f-0-0 5 0 R /f-1-0 6 0 R >> >> endobj 7 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 563.095825 209.142136 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /I true /CS /DeviceRGB >> /Resources 2 0 R >> endobj 8 0 obj << /Length 9 0 R /Filter /FlateDecode /Subtype /Type1C >> stream xœíXiXTGÖ®¦iúÞs*¸`›#F£FÜhTŒ1q_‰û¾DQiA‘w‘}éB6E–¨àŠ(Š‚‰qßb¢±1ÇDIÔhcŒšÄèmmâýªtæ›™o~Ì3ß¿¹Êynߪ:§ê­sN½§4ÄÙ™h4W¿ ¿ ™QA!#ˆÆ™¢á½lÍˆí ­¹“ÍCk38??g_ýÆkÍž=Õ5çN5²¼¡qIr!iÜŽj+©3qvâJ\4-5&Mÿ®M;s+Ñ‹<_òœ¹Øsd`PpPX˜çàŽž#Cƒƒ½`DX@ˆçÀÐ(ÏèÙžc"æGz†š=ͼ9taPÈÏžcBÍQ ý#¸ºY!‘‘ïÀ ‘~žm„Dø{ŽŒž4ëEk;Ï…AQ\GHT‡€E³¢‚BC<ýCf{ŽÈýÕè‹þ¡_D€TÀ캢m`hĜ϶QQaïtê$T™Å—Ž‘æŽ!Qí` ×êéݹ³ÉKH‡ìêݲ»Cú:d!»tvÈ.^\xÿ=6#þáÇ·‰$ŸÞìOŽÙ¢s¢BÌŸIH_2–ô'É2€Œá˜@†’Qdq%CÈ`2ŽŒ$ÈpÒĆ 'Ñš¶š^š©N£bµ“µÓ´áÚUιΛ?q¾¨; ³êîèžèô½ØaÛÝ#.[Ö¶=4(ïÙsìüOWú!WrÄoÝS9êøÅj³tö©ü‡ý=%[ù‰éj}ÿlf°¥>^›êâj÷ˆ;8e¯ Ë—_vYézÅ-JÙ¯,7DCµÝ×àV¶Ü¢‚«Ý?®ÌæV¦9óµÒâ[íAÅÃ99c*óÏ]™›žÅrX6ËIÛš¸5e7;É~ßÊ0•ô÷«š¬’6•¦A*q7™$U=i­RIS¿*U½l2©¤A,a'ØÞò;Ùv*!¿[vRQzvvFùÊÝéeÁYS &0©Ïà)ÃŒ¬oYðåyׂÖ/`3Øä) Ìl6SÕŸ¹"òŠŸUUWrmPé½1v_Òæ¤ìE–¤$ÉÕÞ3îM[¦Ù}Cùà¦Öֲư„¯£mÜ!%`§âÊ¿_W¦ÜÐ* •]†ð½}¬!\ǧ•)¶£š{ÕÊŒj­â§<3¨êÓs¢ª>3ÏQÕ? UUÖd³Ù²•ïoUú¨ª]ÌÄlþ¬1«ÄYô|î^¨­ÙœÀBcÃãƧ%­\º2éxòšd6J²Oгq)#’“’Ø‚ì¤ÒôÊôJVÉJ-¥–ìlVœ”=1+.“]•_=+^·jõžÝŸn¨`E¬8&/*wáÊ06_²{9tLHNæ:²¸Žå\Gבœ=&+Ö¡£žH9µ}Ɇà¼@6™£wÚ¯*FU?ã»#¹zÇHܪ<Ü¥|XºuaãŠJXµÛå¾ÒаbÕç6?«a¸Å,·#1ÂHÒƒ3š‡¡þ„žûUUriæëvÿ·±ð]‘òAJ»Ò+ëØoÙUÅ€¬욤õlKÞÆ¼uk>ÚX–ÇV³Õu{BôV‡xó·‚Â8• ‰Oãw>ÒÈlfÒ¦›7«Äͽp±JÞ¨1û§²™Ó£f'Åò¹šL«øžZ«²¸ÇÜwµ_O+³=á0h~®Öþ¬¸Òø‚/ó?)Ù¶Piô°ñ퇦j7ÛmÛ=C¸ýQSnH×÷í1eʘ6Ý~ÍwÕJ,÷ª~ÊuC:,Ú-Љ%¥\ ÿ÷Щ}Ÿ£›<<õ:»è´”Õ£Ó?“ï2G‡èY>WãL}î nSµ‹ {-–¨êaăÛäÎÌ  y°^»·âÀþ­gØ÷ìqïû­¹g\àa9QUoˆ!—…¸K¤º1êSÇ„ÂÁVUÞLä‚Bɵ%‡Çš2”;D‡,W‰üBS©¬Ñ*›”HÃÛà:ÚYÓüX­˜¹óôT5Ík̆Dpõ²ÇïVF¾¹]IÚÞxÇù™WûS&·î„ÛãX墲Ãöö kR?JËgÛYIF;Ì>¶l[Z·œ…KýZtñp{;§û¶¯ŒlçÊÍÛvIŠÕÖ°~ݺ¢âE…ÃÙ”%áA+VÍ-É$®Ö»ÇˆNF6nSpI˜äö(6øèqóB§±’ÏÕ°ËJ3å-«B<ØŽe›C6ÍÞ1 Ý̳ˆ´ÈÔe–8K2cB >1²¢ìâ¼µ›–—$V°Ù÷'Ø}v`ùÖҜܢ‚|žsR³ã¥Ì„ü¸5Œû׎¸Êý Í­jí'¶>† pí·ËÖ`—fï %ã†v¯âo°€2I™b`àÚnõ[GŽè[KC&¸*êRÓÝjeŒø¯mâË“»#úÄV7¯ôI+ÿw³PLòØ”Yh÷¸ŸX«^f"U­2™ê3‰#©„úYW©DÖF È¤µp‡&ܺð2&í)‰l´÷å’Ç¥Ô¥¨ÍõÎ[fÙ\Ÿ¢&eÆg Å&=+`–¼ƒÇ>ͯàƒ7DóÁýE~KžðwƒwYJê­ì­¿µì‚ɃDZÕÊ]ø„ß9U½/rÀÙóØTU­µZ“’Óø„ ObÉ^U½"&ëi6O`£øˆ³DõªhýFœO„³Û…x&âå)‡°NpÏ“\[Çí´é÷Õ9ó•j%ˆ|_E5,‚Äí†Åàº"ÏÖ']žÒ$wW~i®‹=~þ’ø'¹ªÑÁÍÜXÛƒhרTΦPNiu}Ek¬À‰h‰3Ñ¢'‘ $-HKò&iEZ“·HÒ–´#o“öÄ‹t I'Ò™t!ÞÄD|HWÒt'¾¤y‡ô$ï’^ä=ò>éMúpbÒ“œš âDd§%ȧ'Ã9UÉ)ÊhNWÆr‚2ž”‰œ°L&SÈT2|H¦“ÄŸÌ$³Èl@Ìd $Ad.™GR5fŽSC§QN™N_i=´]´Ãµ™Ú,í&íçóÎ÷tcuãtãuk]d—(—h½·ÔT>(’ËGä£ò1ù¸|B>)&Ÿ’?—¿OËgä/å³²U®’ÏÉ_Éçå ò×òEù/ò%ùù[ù²|E®–¿“¿—¯Ê×äëòò ù¦ü£|K¾-×ÈwäŸä»òÏò=ùù¾ü@~(ÿ*ÿ&ÿ.?’ÿËOdE¶ÉOåg²]®•ÿ”ŸË*ЀhÁtàz@ ¯€+4€†Ðƒ44…Wá5p‡×¡¼ÍÁŒà - %¼ ­ 5¼m -´ƒ·¡=xAè 3to0t…nÐ|¡¼=á]èïÁûÐú@_èýa „A0†ÀP~ð ‡0FÁhcaŒ‡ 0&Ád˜Sa|ÓaøÃL˜³!Ì0!æÂ<†ù¡á‘ѰÂ"X K`),ƒå+ â  ’ R ÒÀ Òa%d@&dA6äÀ*X ¹°ò   >‚µ°ÖCÃØ›`3l­PÛ ¶Ã(ƒ° Êa7ì ¨„½ð1|ûàSØà ‚ÃpŽÂ18'à$|§àsøNÃø΂ªà|çá| á/p ¾oá2\jø¾‡«p ®ÃpnÂp nC ÜŸà.ü ÷à¸à!ü ¿Áïðþ€Çð°ÁSxv¨…?á9¨HPƒN¨EgÔ¡ êQB)¾‚®Øb#lŒnØ Ø_Å×Ð_Çfø6G4¢'¶À–ø&¶ÂÖø¶Á¶Ø߯öè…°#vÂÎØ½Ñ„>Ø»awôÅøöÄw±¾‡ïcoìƒ}±öÇ8á`‚Cqúá8GàH…£q ŽÅq8'àDœ„“q NÅiø!NÇè3qÎÆ4ã Ä œ‹ó0çc†b†cFbFã\ˆ‹p1.Á¥¸ —c ®ÀXŒÃxLÀDLÂdLÁTLC 2LÇ•˜™˜…Ù˜ƒ«p5æâÌÃ|,ÀBü×â:\EXŒp#nÂ͸·b nÃRÜŽ;° wâ.,Çݸ+°÷âÇø îÃOq?Àƒxã<ŠÇð8žÀ“øžÂÏñ >À‡ø+þ†¿ã#üãTІOñÚ±ÿÄç¨RB5Ô‰j©3ÕQª§•)P¤”¾B]iÚ6¢©mB ´)}•¾FÝéë´}ƒ6§ÔH=i Ú’¾I[ÑÖô-Ú†¶¥íèÛ´=õ¢hGÚ‰v¦]¨75QÚ•v£Ý©/íAß¡=é»´}¾O{Ó>´/íGûÓt DÓ!t(Fýèt8AGÒQt4CÇÒqt<@'ÒIt2B§ÒiôC:Πþt&EgÓj¦sh —O~AI^nJnœÑê²"&jq\vüj#þçûkz“”˜¾ (*”MbÑ•œ¨}Z¼ÿÒz ³ƒ9))( S‰7gãœ,øYYùZN*}ŠDõ`uð‰~<‹"ëA%\Ä)lìó© öÅYþDˆG|¬b©ØoTÚè•–½¶öíá;ntdÞŠÛÖç{°KNZ¦%Ã’ÍÖHÛ?^³gç%vKLMIµH]è°}äÀñlëq2üŸJKk• ;¼Ø·S*úH‡[6–®ÞƤӇû¼mw™ÖÕËÌlX¸YR28ñáŒJ)Y0*šÍ ZÌÙÃ3A»jÓTú°Õ’â§·fV2œ”Œxˆ¸ÞËg¥¦%¬\št45/‹u—j—éÙlËâÔåY Y)y|.B·NÐuYè–…*½ w’ø ~Uy|QG-hÉ/æ'èþ3AfÞô«bÒo þ¤˜×.ßøUõ’{!'7WjÌK‚C%LYŸ4}Fô &õ~I‘§ƒUUÆÏÙªÀÌÀŒ°‚øb&—äo?1º²}ÛÞö–vÃEo¥±ñ vlý᫲EutRµ‰Êâ71‡GÖ*ó¼yK#Ø86æs¦4b * ‹·ø8£ˆ•³Í1EQRÁÒŒDÌq"Î|/‰¶f_œ˜°F¬„Tú$ªÄIlõñQoWy ÂV¥fñæX’íh–pú]…§s8%-LÊ–¿ž’l“þ5Æö&úÄ´´D6sí\6„Mž0cFøHÖGB{ƒ3]8ů`»‹©¤­ŸUÂõŠîÂêMlûtëÎâSDyè+ÊCÞhY:ŠÍaþÅÁG–­ØÏNIÊú4]^NöšëóoÛ>v¯ÝËÈÆŒ+ Ø9ë@äEö-;¾«òhjnRÖŠt ±ãÔEæîñ_Ÿ½°¹ü„Ç—;§ù14ré Äæ…n‰áøªÄà^ø·ôzgÕ">¼…ËtÛBM¸,æ%®Ã m½ë^˜Ë=Âä³RUoqü—%é;ë™wÙ?¹žËÍtàÿ$Ìxˆ7vTõ«5/»Ñ9NêUõ3÷˜áƒxaµV„äÓ‚^|s›ß/k•­û׎?„׳<ÎM¦”QõuGYºJZY«ø÷ðÅyòÚ£äokÌxQßbø¦ðM%›TòzM *Ó‚’0ÈÐÈH#÷­/ü¬z•t©ôÉ<Ë<2“3x5ðc,‰u±/Ë•t {æˆ(ÇÑu±©Ã“_L§îbÏË[^WcóT÷Ïjñ¿vž›ÅûÙüÿÇ<•’ÊzKØú+»Nié¡’ÞŽýì,*ò¦"ž[Š,ÐBľ—õœJÚ‹qÔTï øI/äF+¯Ø;ð½8b2qy¦Ò¦ªß™çÌàRd¢Kf3ÔSÖs¼ñ˜pÝÇzÙ[Ù žúfÒøòÍâ[·¸e‡J:X«Jy áj¤³'úÙu=BZÛ‹Y`Öb•4‘~¯Æ¼Žïs]jâµiå^()Cë’¡˜´£.H\Eáò” Æ}rº%Óãsûq—þÛC÷{ìg‡7TìKsd1¾ºJS\zøÂù áL K*=cT²és 2W‹ô™©+“=ì´ÂÅÏŠæÀTžÌ³Õ-ßT;Ï ªªˆÍ«u_Ëó¡#ùÖÌ'‡©þŠâ±HŠvñöÈÑ/–¬›'äZ&й|.ÿ0fp â=›¯ óCH'û‘8uî ªL>’ª–ûYíu<"ÄwÇ­È3±;DXüUÀÐÎZÅ»í«1+ãx·î…ÅLy*éêW•Sçs-–¹l.›Ÿ>?½ÎŽ9æ›Ãõ ‡l" Î*~¤¨dEA¡ý¼.{YvR>Ëgƒhw†ôb+òNIf³R¥SIc±í.-„»{áɬ:‹ -‘–pn1(=¢Þ¢8®î:\Läb½¸•Òˆ´ë%|Ϲҧn\˜eºe>ãÿÒÃëÇíL-YR2SºiwãEæ· ŒUq­x«­/™¥îv¸ìX‹ð®#QÔ˜Óê4¥oH/e¥¬Ä²¥>føy @Š=u\_‘¦Žâœ'ý/k¸9IDŠ¥i…Öç/ ‚ÂÍê©Ç8ß–óÂÚCžÔç&ož¶çq¥Ï‹›²ôrž]¶Z6½Ì,_Wúdðc¬@\š‰±ß ž5f©‹ÂW©ÚB:±TÇ=—èâ@HºþD·û€J^%ü€jK2^€å-ô%h¼µÒ‡»:œPhº#&z»ÚÐÎ:„qõ7tD4ØÄ#w¸ÿ 3ûïóßçÿûù1Û› endstream endobj 9 0 obj 5121 endobj 10 0 obj << /Length 11 0 R /Filter /FlateDecode >> stream xœ]’Mnƒ0…÷>Å,ÓE¡‰I$„T¥ýQiö8µTŒeœ·¯Ç¥R0ŸŸß³Í˜âÜ=wÎF(ÞìzŒ`¬Ó—ùˆëÄ®mU¼ò[MƒE ÷ëqꜙEÓ@ñ‘&—VØ<éyÄÅ[Ь»ÀæëܳÔ_½ÿÁ ]„R´-h4i¹—Á¿B‘ÃÛN§y×mŠý9>WPåñޤf‹†Á]P4eÙBcL+ÐésUɑѨï!ˆFî’µ,SMý˜9•¤3ËÌæ12#ñžyOÙŠ³UâªÌœJò(ö(âó‰üì©ÉS™”ÕœÕäg]’.kæšü¼oMûJú!]².Içud^‡Ï– 5äöåÔºÃ{ÏÕ5„Ôî|ѹÏÔaëðþ/øÙS*?¿‰% endstream endobj 11 0 obj 315 endobj 12 0 obj << /Type /FontDescriptor /FontName /LYTRSC+LinLibertineO /FontFamily (Linux Libertine O) /Flags 4 /FontBBox [ -1082 -256 6171 1125 ] /ItalicAngle 0 /Ascent 894 /Descent -245 /CapHeight 1125 /StemV 80 /StemH 80 /FontFile3 8 0 R >> endobj 5 0 obj << /Type /Font /Subtype /Type1 /BaseFont /LYTRSC+LinLibertineO /FirstChar 32 /LastChar 120 /FontDescriptor 12 0 R /Encoding /WinAnsiEncoding /Widths [ 250 0 0 0 0 0 0 0 0 0 0 0 0 338 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 457 492 427 506 447 0 500 538 271 0 0 264 790 542 504 519 0 371 390 316 0 496 0 489 ] /ToUnicode 10 0 R >> endobj 13 0 obj << /Length 14 0 R /Filter /FlateDecode /Subtype /Type1C >> stream xœíXyxTÅ–¯Nw'÷œƒai£ä)I«ˆ€È–²È¾JØ÷ºItv$ÝÙèP$„„@HØd‚¬"²w@ ¸*QEÅÛÐðîT5OœyãÌ÷f¾ùcþx÷ûú|uoUõW§Îi3˜N§«e ‹šf‰OŒ²Y† `:cL'~ÝÝÏ1÷ó:w#wÞ`xT×ãz¾ásê‰gëJz ž¤ß×”õÄ·{ƒô:>Íêè«ë˜ÁGðñÕ½¨ë¤Ø®e›–í…¤¤óaæisÍC#£fEÅÆšû·4™5«‰µØÌ}cl‰æ$ÛtK¼y¤%~v‚9Æj¶Šé˜ä(Û sßx‹Å<"Æš˜oì",¶KB'ì74ÌÜ´ŸÅf‰Ÿeš4mVTÄï³ÍÌÉQ‰‘‚‡-ñ5KJ„%61*Æf·M7é+6ý!ô÷õ-±W¼%<Ñ2ýñF9×7&~†ÅÜ4211¶S«V’•U~i™`mi³$6«¹mëÖ!-$ õÒv^ÚÞK;xéë^ÚQÒ6­½´M AÚþ£o†˜$† þÓwáéº)¯EZ¢f$F„ÇšlÓãÇüÙÖ—½Éú³Q¬7ëɆ ßdCX6‚Õ“Ìâ™]·NwXwÛ§¹O'Ÿ!>3}œ>Üg«¾¥>ÌÐv0?äþáNÐÆ‡ô‡ÜwÔ®ž"ø7OcµH¾=fõˆ÷?,4z&ŠœºÉ_àvÞúÐéëßÎqv໚®—i,ÌÎÂÎ40ÙÕhõtÀ 4 -AÓÚRô÷¤¨ 'uê95! 9ú‡;NªWO¨S7U%ë4¶£Öz!@cMËÔNÆ3W\'vðµ¼4›Ïâ rS2£‹'Ô˜1§ð”å 6óƒ|ß¶ý'œË²‹ð¸Ù¶d×4w­UÐGe|…—T,­Rvª!Æ¢íëx9?»fº˜w…„ z6Ì¥i·BB5­ÒU£iÅa.Ec]ªC4]];3jÌ_Ò½6Rc(GMK8ç…Îü ëè•6Í©8ŒÎŹK‚¶äKв“‚¹]ˆ®µjÚ—àì ,Ó´ïCBM+tÕÔ«ªÛ7 =C=Ýægî“·7–$ß»Õ@tËT¢NrŸ X€k!¸j¾!¡ihÚ—Ž¦ËvôïàÉØªÞج:ªgonPxîc>Q_úd´ËtÊ®¶s¤ éS ÕsÑô›‡¦ì©húœõxf¾U(DÝÜ¥S»{‰÷GèuÅ«—ÅþÝGUm‹îÓÏÕŽŸêÝ-Ý}l8Î33 ý{yÒ7«c¶» ûuînWôêjwÓ€|TÛyž X"¸õ÷Lwlu›¶68q-ù쵋c¯˜.«=húx)šn¢ÿT¡À•“S66P;klŒôÕp;ûrÞg¦Ý}Ôzÿä1|êœV¦,Z¬1½×Ç!¡"¦O‰ °Æ"FL‘£æ.ÌßKŸªHp‹ð3?«ˆáÏ"Šiw®Ð`‘p 68ö»õ;£õ‹ÏÕΟêÕÛêè€|Ã(l˜º|Ž»Á9¡ i­§îHV¤Ü—¼rÁœ5°`ŠTýE—KH¬X&h])M•rAj åFóiY³5í~XM¦ÆtÕ!ö¥JµÓh:²bÑÒ .þ›è?–eÅ€rÕxòL`NH 8´3±è§?€¦Ht  mâÛùâ=Bb­u—}#qäÀxðëc7×ñb^³4«0³$­”+Ê7mX;¿Ê<Ž4¥¥âŸ^âî^R^zsù¹’ÍžžŒå~é+Ü=ž|Q<éE° /‘÷j0ñ§ÝÇ‚Poµ¦×¥upW:—ê<¥o$3“Ó332_æÇ ±"…õ‰¬HjýDR RÛ@Ɖ<6„ ém¸Hl#E²Íư±"ŽgØD6‰MfSØTΦ±6Y˜•Í`‘,ŠÍdÑl›Íl,†Å²8‘ X"KbsX2KasÙ<–Êæ³,¥3;s° –ɲØ-êHWGwßçŸÝ>7õfý úîúxý½KMÿ³ÁßÐØ°Î°ÞPi¨2l0l4l2l6l1>gìgœo\`Lóíî›í»Ö÷¨ïw~ËýVø•ø•*~J>4‡W¡¼-¡´†6ÐB ÚA{è¯CGè¡ ¼]¡t‡ÐzAoè}¡ô‡ð& „0ƒa …a0FÀH£a Œ…q0&ÀD˜“a L…p˜0,`… Q0¢aÌÄ@,ÄA<$@"$ÁH†˜ ó æÃHƒt°ƒ2 ² r`!8!‡Åù° `)B,ƒbX+ J¡ VÂ*(‡Õ°ÖB¬ƒõP U°6Â&Ø [à-Ø Û`;쀷a'ì‚jØ ïÀØ û`?€ƒð.‚÷à0÷á(ƒà8œ€“p NÃ8 .¨sp>„à¯p>†Oà"\‚Ëð)|ŸÃp®Â5ø¾‚¯á:|7 ¾…›ð|·à¸ wàGø îÂÏð ü ÷à7PÁ ÷áxà!<‚¿† uèƒz4 }ÑD$¬ƒO¡?ÖÅzX  ŸÆ|ŸÅ†ˆÁçðyl„AŒf|_Ä—°1¾ŒMðlŠÍ°9¾Š-ð5l‰­°5¶Á¶‚¡ØÛc|;b'ìŒ]ð ìŠÝ°;öÀžØ {cì‹ý°?À7q †á ŒCp(Ãá8Gâ(cp,ŽÃñ8'â$œŒSp*†ã4ŒÀéhA+ÎÀHŒÂ™³p6Ú0c1ã11 ç`2¦à\œ‡©8`¦£˜™˜…Ù˜ƒ щ¹¸9.Æ<ÌÇ%X€K±‹pãr\%XŠe¸Wa9®Æ5¸+p®ÇJ¬Â ¸7áfÜ‚oáV܆Ûq¾;qVãn|÷à^܇ûñÄwñ¾‡‡ñ¾Gñ~€ÇñžÄSxÏàYta žÃóø!~„Å ø1~‚ñ^ÆOñ3ü¿À+x¯á—ø~×ñ¼µø-ÞÄïð{¼…?àm¼ƒ?âOxÆ_ðW¼‡¿¡Šn¼Ѓñþ 5b¤#Ò“ŒäK~¤QzŠü©.Õ£úÔ€Lô4Ð3ô,5¤@ú =GÏS# ¢`2Ó ô"½DéejB¯PSjFÍéUjA¯QKjE­© µ¥ ¥vÔž:ÐëÔ‘:QgêBoPWêFÝ©õ¤^Ô›úP_êGýi½I)ŒÑ`BCi §4’FÑhCci§ 4‘&ÑdšBS)œ¦QM' YiERͤhšE³ÉF1KqO ”HI4‡’)…æÒ-¡ZJ…TD˨˜–Ó *¡R*£•´ŠÊi5­¡µTAëh=URm ´‰6Óz‹¶Ò6ÚN;èmÚI»¨švÓ;´‡öÒ>ÚOè ½K‡è=:LGè}:JÇè:N'è$¢Ót†Î’‹jèÉ#îNy‰›äun–hݰšBgAf°g®¯¸!å ø¼ðn”ŠÑVkf~Fa0ý<±ùiù\1{^ö´ñ´QÒåZð~ìèÉo”¼Ü´pcV¢3™§ó”¸mü4¯®®ú@Óü~÷{ïhæggi<Öš’êàNž‘ç-V—n\²ZùP=kLàqÎä…Æ·éÚ!š+QŽêc÷®ªí¾ ^Ë+²V§sîx!~ "ô¸ÀÓ;;xÎYì(ÌàÓ§DhÚ5;ýø¾ô¶¨,™AVw…X鉻^§…„ˆJ@zÎd!ª.V«¢6ûèúåÒ93ƒxvn¦3GT³r§G–%äÎ{a.ž­¤§®ÚP¹¦r—¦=´3a[‘Ea‡¥y7¤Ç/ÊÕ$9/‹ì³²¾*_wÙubáoErUJ÷µ³É{Vî¼&õzZ®º.G/ÊM?È5MK˸ôÆð~Ó¹uüؽ‹ê+ßî¬ÌçM²V(+Θ°0åëõ{îc™«¸úŸ)ð%·;¢+ÐÌTŸ¼®4Yúa¹ì3®ÖÎèæ­þEm(k²¼À²£¢“ea3QÔíà%ܦZúÞÂË|§R™øn/OÏ^¢)3µ¯î5è?µýÄ¥œåÙé|ø°ÄŒ |2Ÿµž×ò¾vq‘@EùÂ’¶Î?·>‰G*–¨ˆaÔÛGƒøÁÓ{+Ë….²w,XSVZ¹¼/ãù9ù9¢Æô­µfh¬ž(H•ò’ÒÕå©+ƒã¸Å­PR•¦}æZ)"ZÊ=>¥ï̧¬ß &ããlx¤(I«æ¶uɇ(Týœ/ÔFµ»îqׄ­£Vv^ß3OtkkJ×/[µÒ±>k#W¾v¼LƒÒúœqáà…Gk‚öTŒëLqIUUUUIqAqIIqÁâ˜íá+%#é¶&²¬•Õ³BOÊöÐ'e»+ˆ¢ùä?­Ÿÿ}õ,")R†¬ ½ëb”‰žiƬhÇÿ¤½Ô˜Q"õ!˜%RKË”'Y"šOÌž˜õßh¡ÖZÞã˜-kø“ÔðÚ$ÒÕ$þÞ2Ó™+G÷Ì9¢gÖ´_¤gîKòôÌ}‰ÀëµVoMÿ±‘>øO5ÒÞ”«—y¤¾4¤ÙA2+ø*Gq4·p>%Ó¢¤ 5Ž›a#úf½tó]—·Ã•n )ç›*Ê7®S?œbÌŽ™Ÿ£¤89‹r‰ÌÂSòrü|ÁŽ]çsyP^_cä¹y +)ùÆùyqEÛ”½j˜±,UcÏÛÙ<ï±Pè'ûyÖ)¤­@‰¼^•:¶ «y¿fÃy~_‹©y…åÖ”ØTïYº(¿]–£¯\5ÇcKælRjÔ}ÆÊ•›Êwòó¼¸7¯P™ïíïÌÄîoujöG9¯äÛ×ìØ#ÒT%_•™?'?aULW6•¯Ü1fï ÐÑ󈊩®) ™Q4“Ïá##R& œÎu 6Ïæ6ž™Àí ·î·~¸P¡ÑNcÊ¢¬ÌÜÌENg:ÏUróy~ÐG|°§Òø¸OÕ®•>Æ®ÐÖjÁœQîØ"üÐBø¤f·H vvÚY’µ4O3ב*Rž#ïï°ÕËÐ=-±ë']õ‚@Å uåmn\Q°¬Ê^¤4åÅûD×jI³<[ŠL¤Dú±Î±–W†®´l²@¨UÜoã—dB,—d$sä¿(Ú=©äO2—ß“~}šÅ3¹=/sIÆGžƒ+I©©IqÛÓ×o<Êó]W’W%lººj¼ûHÐGHÒDòÍ|…´:Õ¡Ã0Wê6ÑÍî]½å°—»ìô…o~s¹ŠìBGWMÜÌ´L;Ïà¡r›˜U¥9 Ãj”Qj»KªA˜ZWZù¬\ÐPœ¦w¹ y/q.Ëú{by çêJc<.W1WJË׬ ¦ÊزĠq‚÷5 $ïÿ>ç$ÙªŒësÝè-<4*§•¾6¹\ò`ßô¶æ{¤=í,2N¨*¥Ü“1‘GLû¥ÖZ$âæZ!rKuèÖ•"`bO /vìL8Æàíô¥¾¾Òª¥Š¾¢ñWþ¼tù×ó¯çÿÏóoŒßQG endstream endobj 14 0 obj 4377 endobj 15 0 obj << /Length 16 0 R /Filter /FlateDecode >> stream xœ]‘Moà †ïü »C•¶a•P¤©»ä°-ÛHÁé‚=äß㪓vHx°ß×€]œºçÎÙÅ{˜uFëLÀe¾pÆ‹u¢ªÁXo»ü×ÓàE‘ÌýºDœ:7ÎB)(>Rr‰a…Í“™Ïø  x ƒuØ|zõWïpB¡m ÇTîeð¯Ã„Pdó¶3)oãºM¶?Åçê꼯øJz6¸øAcÜ…*ËÔ8¶ù—«l9ú{BÉÇ$-Ë´U›ÌiªáxCñæÀ| >2‰%³L,÷\gOñÇwÄsEš’5%Å\KÖˬGÖ#1×l¨¦¬YSçGÝnOÏ£9Üû¦¯!¤–åaå^Q—¬Ãû<ýìÉ•¿_š·W endstream endobj 16 0 obj 295 endobj 17 0 obj << /Type /FontDescriptor /FontName /WIFRCE+LinLibertineOI /FontFamily (Linux Libertine O) /Flags 4 /FontBBox [ -634 -311 6171 893 ] /ItalicAngle 0 /Ascent 894 /Descent -245 /CapHeight 893 /StemV 80 /StemH 80 /FontFile3 13 0 R >> endobj 6 0 obj << /Type /Font /Subtype /Type1 /BaseFont /WIFRCE+LinLibertineOI /FirstChar 32 /LastChar 120 /FontDescriptor 17 0 R /Encoding /WinAnsiEncoding /Widths [ 250 0 0 0 0 0 0 0 0 0 0 0 0 333 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 485 0 389 488 401 0 476 519 276 0 0 0 0 518 0 488 0 356 352 306 0 0 0 474 ] /ToUnicode 15 0 R >> endobj 1 0 obj << /Type /Pages /Kids [ 7 0 R ] /Count 1 >> endobj 18 0 obj << /Creator (cairo 1.12.8 (http://cairographics.org)) /Producer (cairo 1.12.8 (http://cairographics.org)) >> endobj 19 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 20 0000000000 65535 f 0000015009 00000 n 0000002686 00000 n 0000000015 00000 n 0000002663 00000 n 0000008979 00000 n 0000014586 00000 n 0000002814 00000 n 0000003042 00000 n 0000008260 00000 n 0000008283 00000 n 0000008677 00000 n 0000008700 00000 n 0000009411 00000 n 0000013887 00000 n 0000013911 00000 n 0000014285 00000 n 0000014308 00000 n 0000015074 00000 n 0000015202 00000 n trailer << /Size 20 /Root 19 0 R /Info 18 0 R >> startxref 15255 %%EOF ttfautohint-0.97/doc/img/afii10108-11px-before-hinting.png0000644000175000001440000006221311762631566017776 00000000000000‰PNG  IHDR^R3% IDATxœìÝXSWðX.p* uÔ½êžuã½7²HØK6Èbƒì!{¸qÔýZ[kÝ»®ºP´Žï„`„ˆ¸77G|yÞ'Ïå\þÞÎÏ7÷h¥ÞÈ*+ëCåOUUÎÎÎ*Ï€ÏÑÀ' &1ðI‚I |’`Ÿ$´ZB«óCTu@hÊþõ(ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>I:Ô¹óïˆg"Ž)1H9ܘ$Á$>IR |’`Ÿ$ÄñÀù€Œ)ó qI ó¨C!£ˆÿ;‰ãAJ RN&I0‰O’†Ÿ$˜ÄÀ' q

°ÚJ‰‡»%Á$>I0‰OLbà“V[Q]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨.ÀÏ$˜ÄÀ' &1ðI‚I |’TàgLbà““ø$Á$>Iª ðÀ3 &1ðI‚I |’`Ÿ$€Õxà™“ø$Á$>I0‰OÀƒê<ðL‚I |’`Ÿ$˜ÄÀ' àAux&Á$>I0‰OLbà“ð º<“`Ÿ$˜ÄÀ' &1ðIxP]€žI0‰OLbà““ø$<¨®x¼¸YhdÃRòêã—ÞÿóÇáEž¶4++T>“UOÒßÑh$5¡ì‰ìh<™°ù]ÇÆ’ñŽÃÿKø‹¢ãP)LQ¢ì¼¼~ù‹÷Ûï› 5~?ÉþÕÃ2*Ï &O’“¼ü*Þâ­:Ôïû/z]tÿ‹ƒÊ> Õ'yô*Öü]—¦’ÁîÓÞä]ÇùÔ`Ÿ$ óߢýâWïÓc8ަ«"Ó¥#ÿ%OesVÇßÏÈTæ·NÌz 9Íן&¼ÝJÿªÍå¼Ô§¸›^¶Z|"‰Âã f×o:·}°þÔž¤{G×Obt,Oõgê+¯ÄƒW&8þ»›—|óØê o:Ф~aP%I’]šæ{"äiNê?‡­V¾j½âx²ªT­ áQç‡Ðêü•ýë0äuwn†„xí»úëA¡Ñ±ûî=}tïqQ†G;ñ/—$ÛJ­›ñ¯[ý÷æ#t4D!b‘Àö´^‡ß·º† yq¦cÿÕ›ž"KÆ©©Ó[=?uO2ß¶[öàµdûAüÛ>Û_½¤î¼`òô&9QRDzÜçøLkìù£Š¥…bì;|Pµ?Ýúß6#OçUÜŸyÜqF©ÁÒ“ûª¹?&§“ø$ià†GÜÅisZÀÄ_/ß}ôsŠ÷” <]â‡r¬h ljiÿ»t—?‘dÛÏäŽfïüâ!«×/sß÷u}õšºSƒÅÓãcRå(øuûÐ7z3ÿÊ?®`PÙxÊ)Ü<èµîÔ_SöVóÕLÛ[ýx&¯šbrj0‰OÀƒêrvv®˜ÇïÇó¸c+:§7Šãûñ÷¼òà/Ôyظ³§¦óØži¯yc©MdOêÒÞ¯ÚOSå5i½ñòlÄÚo#.Sy^0yz”’‹GñßLúü§7óB9ªT6™¿¬þá?©ç*ˑϻ¼‚S˜‘uk{¿é¶:¯( àAu}Gwîf¥u [ј.3²ÿ¸ª6*VÇJkânI“!Šd̺¡Ý¼ÓîsŠé+¦Œ*a$«‡?­ßmÓ÷­Ï‘—ï(=/˜<=JÉÅãˆÏ“*ǹïßû «T6²kÕû·ôýû ² ­¦>Ó@Ÿ6)ë;ó÷pÍãkJxP]ŸðPiÉ.˜«¼09/˜Ä(UÚj«º–òV[Õµ095˜ÄÀ' àAu€‡Â$*—ðÀü¢ò ¥€õx “¨\ÀógˆÊ3”TÖ™óY~¼éôfÞ¾ƒO'QæÄ¿©Io† ~¯©‰nѶjñÈ37ûÇÐàšºEÛ€GµIˆOýú?ïÓç­†:ºEÛ*Ä㌧û“z½UWG·hðh0IŠêôï™UWèÒ¨ñãß”ÄU.TÒ¤~¨|ó­ra˜ü$`£” <þð—;Îõðƒ<ÎxìKR?095˜ÄÀ' àAQùú•Ãõàñf𠹟^Ô¨  ä þ“ŸLb”’Çó>½åŽ3ê?T‚ÇÓ^=å’ þðhIŠÊšÓBkkM ðx¯©)ý¡Eg«ªLM “ŸLb”’Ç[ u Oº4Ò[uuÀ£a$<(*?ÞŸuC¨è<† –Í#óõÐ!*ë< äÂüchˆÉO&1JÉé<úÈçç}UÓy >C.É“~<FÀƒ¢:s>K“%)àñoj’ÜOï¿i)ªÂ#ÏÜL.LîvsL~0‰QJÊ5@¹ãü?@%xœñt—KrÚËðhIêª|µÕ°òÕVCN”$S ‡ÌÔm 3nÿÝUñ}UºÚÊ…A·yÛÌE°Úªº$ñúº tœÑíA¼zìÔÕV? $èö´¬¶j8IªKUïó@gºò§ª}Ÿ #ÛÆä¼`£”Ô÷y ã\ïÇ’û>”¤ÞÅäÔ`Ÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<êPçο#ž‰8¿œy… q gpÀƒ”óBÊó¬$ÍØ_p<òö\ÃLž!¤ÄÀ' q

$ãAÊüB<ê½rñ å¼`µ‚xÈö Z<*ïAµx`rrÉú2&Iˆãó!-èù‹oÑÃ¥EPK"xœù_©,Æ/gëÖ‹Gl\¡,I=ú²ð ñ¼|þ‘›¤Þ3þÃ7d1Pÿ¡*<ò÷þ-‹‘·çª ñÀäBb |’Áÿt_åN ó€Îÿ$ÐyÔ¡QÄÿÄñ8ó[)&x þIxçá<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þI:Ô¹óïˆg"ŽGQÉ LðâÀRÎ )Ï?²’4#;÷x¤ì: ˜÷L£®ý¹xøórdI‚‚êÜ…‰ç…àóÜ$õï9òþ”Å@ý‡ªðHÞuV#e×ï*Ä“g‰1ðIBütÐy|•;Î:ü“@çQ‡BFÿwÇõ˜àá¤œRžÇd%!ˆê?pÀ#y×LðÀäBJ |’Çç«­”‹G½ V[Õœ„ ²‚ÕV õ¢ò ¥°ÚŠú<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þIª ð<&<ü“Tàx(Lxø'<¨.ÀðP˜ð<ðOxP]€à¡0 àxàŸð ºÀCaÀðÀ? àAu€‡Â$€àÀƒê<…IÀÿ$€Õx “€þIª ð<&<ü“4p<Î_|‹ö … i•gÀ3L.|Ž3>I ÈªzœS„‡Êc×6*†\ãÓylUÝ #ÛFIö>¨òÂ$†4IP@J¡ã\ïÇ¢ŽdJRïÇ¢$Áá¡*/#!% ‡BIT2‡|>¥4äÎð<o°PG?áì@šU G°ˆ"þø%¶— S2N³â›†V ŠC,]m[ZYј¶Óýƒƒë†GâÎÞVÒŠ‰€àx€Ç׋Ghð'Ñ&~h`hÓ¯ÎrÃ$ãî>|M¶`5?DVùþAþÎZ,g3~¨§¯s[¶3STÎÂ<Àð<¾j<*•8XÜ%؆šŒ°cNÐ@Þ§.äc›bãb­·C(’ÜY8ÇÚú§€0Àð<ÀC<Mm¼ºÒhVÍÞÓìíÑ ½›AÅë?¨|mÒÉÀ#,”ëÔÚAì-iGÄý˜AÜùVß±ù³ƒ>*ºÍŽÕÃ'¸|;x“-³¯_(àx€à#®?²=Ù9rœÖr}›3T©îÆ[ýæÚWYªÛ’éµ=ñ?ù7d@ç~ŠoŸ[q ä÷«î\IËIhå¼;ÿàx|x¸Np¡¥dí̓%ÄYûËçÍý^WûµFƒ¯û--ÉÜxÇ#~íO7´› CZ¦7äg–ûn¾Y1Y÷Èõ¥ˆqz¯Ú H–Ê!W’æŸwÒªÇj«µëcì˜;eŸ¢íµëbk¸¿oׯÁPC·hûc#²°6×o?*Ï#èÓWUŠÒý']êGåíjë”Mæ­~"! 戽—ó¹Âéæ°Æuö3jå7²)¯O£ Nß [7 nÜ8XMCܶȰ“ÿ€¦#ú:5wž5Åmùª°Õ›Â6[„Y²Ã8áNnáî¨|ÂýüììôÍŸÚs´m§ÆýÂyÒ»¡r wößUbŸàHgnŽÛ²2fÕ¼ó§EO5vPä ÃÀžú®ÍDÍ55»x wnlb¼Íx›ëb×à-!)®©‰qÉrìöözÞ±ãÝþý/Ì4B·ÏttÐHÝðxp#=-¶•Šä<âaâ5²Ó³V½Š#ÞTÌ›ð²•2ðø&÷xÙvøn·À*_¥ ¸åËnéé¡$èmËùá29áPóÂÆ~›ý‚Ö‰—ˆCCÝæ»qqLW˜._·|Ù¦S,u{9öjçÓ®±¸ BBße¨]»‰Ü®ƒ‚fO¬ZlnfïîÍÖ㚇o›ü5€íõ»æáiÙ5q‹£IìÆ9ÁsGøŽèâÛ¥™°™ž»Þxæø5Vklíì„"ê9'ÍÍd;AÛÏtujÙ|\mU2ªÊ{ãx×)Uðξ|?QxÅhB½ÈîmæJYmUDV[Å¥$øÇ°¼ÙËì—²ÕÑ»£¶Ÿ¦‘Eë 6vxz쌋•Þí^¿¾GÙ¬:_óP]€‡jðø«ÊÚ›Þ¿¥K^¹ÚŸáqµo+Éúݾ‹OgÀR]ð¸Yå8î÷àWZª[Ó‚]R𸥧+Ãã”!M8‘6×T³QN£à&êAmúqô·³rẙÌË<–mrÛDw¦Û;ÚËí$7¥ôI‡•¯yZ¿NîšEâû<ö/_$\8l{a§>ÍDÍ5‚zöã/ˆ^2ªxÕJÀ£aâqîü;ð(*y ûê‡l›ø¬·ç&x•„ ±q§?½lUßÇ#$ôç×ÍšIñx¬QQwÛ4³rbsVÕþšJ’ê耴¸Õû‡ÿM™Œz´Fj?ïÇ'žÅ]éH7޲™wûõ“n'F- etåO6to¦Æo®8|‚ÀÌ-:2^™xÔo!RfT%Íí$ãAŠoÄñ¨ßSGxÔ{'äâAʼÕNâ!Ûƒjñ@{¸¥§'Å£´YE£s³“žCW[U¼ÏC,ܽÍüäâEè¶®=G=Þf¨ D4sæµPt‹¶ âAîÿ÷ñÙ ñÎ#{«é=tœÑ-ÚVUçáP¾Ú u¯›5C·qËë,A<ðì<¤•sÄš}fõ*tû¥uVÁÉ¡+cVë†vÑ ÖÖõ›«n½ÃÐN¸nãäGÔÆu•ƒàB"$ΨJšÛIŠŒÂôLððñɬÓýÅ3gÊ­½A~ŸpÑÿú1™÷ÉJBƒt¹ã\?ˆãú‚{ Ôà€ê?êýXÏD¯Ÿ¢'i†j3mn”]L+ÉWDåB:¤Ì¨JšÛaµ•rñ¨ëǵöíå&5Ô`²Ì “¤àñ¾¾ÜqFýõxU¤ô 8àA¼Â’#VĬl+ìÒ3€³•wê»âãƒÏ\¿x[US A<Ȫ¯`µàAð£¬iSÙ¤EMIø55À£à‘Pþ>’…ìP¯ÞI}º‡ôñøÑ»H»ärÆ5ÀðhÈx >CîòéUè<”Ðy >Cî8CçÑ`𭶺ñðNÔÿvö égàÝ]4^ôç¶ 7ïÂ;ÌЇèã5Y gÍÂdÖÆ$)xdo5•;ÎÙf[†GÂgïóˆü_t¸ž#vŒHžœ|­è&àx4@<¤~ n£¬iSt+$iµàQ­¨Ûx£¦¦ÂÕV€5x ºöà¦O±_‡à3Mgž ,<ˆÇç˜ÌÚ˜Ä âx|ExHë½K[3Ì´´íÌí¯^”´ ·n^yýÄÕéaüÎ[·®€àx€Gõuèâ‘aþÃú8öÙ üÏаlÂøç[6¡Ûÿºv½wä ‚‰âÁƒ‡óG9òiV-\’·]½x€àx| xÜ,¿–îãÕÁ·1wûŒkw*®‚< þëÖMAÿqç×1‡/ݸrïھÙ:¶™)wÀð<oTc£/O6Êmô@çGŽþ,,7öaüÎÚL7î_?üsŽá޽{þ<Àð<¾<ž¸:=7Ý„T* IDATZgKKaëµ9.h q•ý)f¼õ·jžRÀC•˜ÌÚ˜Ä<r:¸è²ñã¤Û¡ÅÙMEûDÍy6aôĘÚL×î\JȈ×öàx€àñÍàqëæ•ÿºv}$H?=uí|_®CíšøßÑZÎ7n ³MÞyð<Àðøfð@uïèÁÿºuCý‡dµÕ¸±oºu›)˜×XÔVp2û‹ºó?‹ÔÂÝ×o]¹s))#®t€àx|#x„…:ú `K^µ×àñCÄåãn¾‚®,Éàw,þ8ßäžü ¿É¶ì&VV4&çG~€äá¡f¶V4+Y1†ø‡†¸ùð5™|Ûôr<’½…¡½­%»jÎ ž’‹+¨nݺú0!Fò>„é:«Í{ܾµÚœ\ýCÜØ½/³7ýëøýrý/ܺQã”xªüÀdÖÆ$àAÐà N¢MüÐÀІ'_-ä†I‡0ƒÆú‡„…ºò„ÚLe(¤;;ÍöáûŠB½ü={2ØSÐW+íJä¡Ër²ô Úf; ì¥x$ÆÌðŒàÆ$Æ$%x C´Ø!v‰øâQmœŠnÜjt¸ÝÅ»5]¯Í”xªüÀdÖÆ$Æ7Їƒ£©WWz€ä¿ó ïivŽö’q{k;^ 4ÔÚNÄ®ó Mâ`q7–`r",x:'háâæ/èÈÙ…U½sð:Ö¿ÐÊÙ¸°Û:òøC9üU¢µö›ô*/[Å''øˆB;Ú„¹'ex Jÿ3_-¤µ¾ãÄ¥¿Àð<¾^<\d{.²sä88­åú6gxš 1çñ ž!×ygz)ÇKÐÙ58°Nx„…r݃Z;ˆ½Ë? »ÒËW Òùsr÷ä¸wf9lTŽd²—ÙM ‡ÏàVÂ#qgoébVºhIt"År‚ªÜ‹»[„k·v³Œ):x€àñuâQ©ìíwt¦û¬@vØ»u£û.p°GIÄ!â^œò jåÛ߆#0•ö+a! l‚z{û„†r½ø­mD.²]… ‚¼û±8c|ƒƒ+=Üß×¾Ó|ÞŸ`‰(¡âÁ,¾\ç›Ïõµ´ðý ;ieþ•Ó:R»í¦“ñ¾œJÎ67ìÜÎu'Àð<0ÀÃ#˜7ìJ«ï>ÐheÚß]nåT>îÈ\y¬‹|Ñet Ë ™Xûµd¹1$qÃàuå:Ǥ¿D3¾oZ[9¸žü–lÁF±ì5(qocHùkY!âî,¾™tWaAž½˜ì‘>bqÕ×»ÖÛ2§u“¶Ÿ*QõòF||t/v0ëk»æQ¹’ÿØ¥¥=ÙÂÿ zá.Ñi©µüÓè€à¡âLfmLb4X<8«O™²s»µ³ C4¯ÿSÍ~Q\4ΉÔêßÁKü¬-·~:h­×§%Ãk‰CÅ£XvžÝ$B‚»: Ú3˯^Ô¦{:[°I\™“àiÖ½½ƒ}CCl¼ùšÖÂòkÒ"¤ºÇ¢$—þ:'"ô½ííȰ¿/þñù̹æçta±ìS´¹úç/1pàh¤‡×6[Ý¢m¹¯2Ù»c eŸ¢m{w}ðÈNê'¿^ë£yY¾¢ÖÜHVzv=^ #Y»ÏkÇoWЦÀÅÒð<À<„¾ÉK‡?hNû@kò¢ë˜ƒ<´ ñ2;ÓUóöªëäl/~µ=pö~éØ1ÿnXnß\ß›'7ã#- Ô‹¤~TÞþ¼ö‰°ªrœ&çÒ¢ÍV‘ÔÊÛõ»æñ –¬óÈrçkÚD²ë%‡Rñ@5ÀàT«©I#’ÀKâÞ ïïúË&w´ý¦«áçý‡ÔŒ(“c5ÈÊó¿¨ÿ»Ô w¯L9'3­nxÈw$Á™áÁp`¶´æä+l>ÀC¥„¨UÅC“j382BÔåñZNº«?úä¡™ªÃiQ ^(õ£òvåÊÛ¼ùÁ€IÓúµ+%Ågì=vfÜÀ\'Â+’縃åncn³}ÓöuÖ/X½ÈhýÌ.v#hþ=i¼î´À.´ ]š -MØŠ&ÒV31 ý,H«I0MMDk)hÔiG§žv=³O7™¾já*æ$朅œF6V]XAÌ´}™%g/\¿,Ãã ð…®ÎýA/ÏA·/ôtÑHý›Ì:TËÜ–uðí=6ð<À£ Î+ÿÒí·ßÞaOï¾*육¾ë¾÷›£ë?q°mç>Nm› ;}'jÕ(¤‘ff¿=v´èÒq¤÷¨)¾Sç/^¹iç–µ^Û¬¦°7ZÛ;ôt‰âÎ&fü–“w~oÁ…#'þ.*¹|VZŽÞ}e=Ç6Í”IãøôA÷Éþ=/ñ\Š_QçˆÍ´Ð¥M½ëõj$nÞ\ÜVƒß¯¹ÏÔžþŒåáÞщ‰HŽ&]6•£íçzzµê?¾

Âv$ÝšQd4ã7“ ²É=h~¾ÈîÓ\¶ƒæå׉찰Õ\) µIW:¨æ:´XCóx¸áQ^I¬G­†žJ<ÈÆãÓ%tY}~-4<þÑ×—~—j´=}i¬…´AvÍ5ƒ4‡9[è¾h›“£u æk¨žCZ”Ž-Ym5fÚ¾¾7¿öïÏÊÁµÑB·uz”\Iñ(r°»?h t~OJOµõ²Ÿâ8UÛ¿É@ý-¦[âØñ919Pë#õ£òv*!ag§¨ežv•ß"½ðN \;›ïݾߺr+àx|5xäf„-íñÆptÊxÙJñ8yx¼QS“âq´ír;Iý¥ÛLÖ[Ôfµ¿ü}¨Ï¸.yŸGTxµï󨹜]¾—{© UlâÖzà‘“±ë…žnåk§VÿvÖss1öœ×:¨õ«1~“üsG9ªvJ°`wýäøâ/5¡T[8¦í¼ÛÆÌ[’?yrìâÅŽkÀðP5Ÿ–êVZ˜ûi©n“W½§Ÿ K§xÊV9äã!ßgT¥BùxÜ30~kôô“nÜ34¨ëNˆ¿ÃœÄÎÕ!aÐs=½ŠÕV m4"ýRJ^šEªU¯à^:A:&‹L´8È••‘W79jú¥&ÔâÁßh²pKs;cÆýݵëC--4xtå…ɬI ’ñ P¤à‘³u«ÙffÔãq±ê5‚xHúÌ´BGûÞçÁuœ¹ÎXCÐrÙâÕSׇˆw¥×š© …x8Z³ii‰Loãׯ†aƒFRçÎy¨­-ë?Àð<”…‡ÔÔm §ºÍ1ÛZ=|u¿ÛJv#"'jœŸQ+ÿÖ]¸sW‡H[o0¬á—šP‹GÜ¢E— ÑÆdúä9æs¤ƒh$vñbÀðP½€GƒÇCZèéWïÇ~uxÈ­¶rsŒa;½±¸Eßy‰¾Þuxƒa•_jB5ù“'>m0™,u~‹ öt´FÐ8àx¨€ áL£k:”5mŠnÑ6à¡$<27o¼«¯ÿFM Ý¢mÀƒJ<ªoG²B ŃºîhL·š%» ¢à †5ýRß…JÆ#vqEçJÇ{D{ÏŸ¤GÌè<ÊåÍ4’[õüÀdÖÆ$)xdnÚ(wœëáàA.¨Šìmcg6µo8hGJ¨t°o0¤àM‚6å×<ji¥Î•¼`µÑѼ‘HS0oÖ—¯y¼ú½0S‹›žú ð<”P×Ú·—›ÔPÿɬI Rð¸×¥‹ÜqFýà¡r<~3ÙpÉxnJnÚÐàEš‚–VtzfZ©üC|ð°)_m…´@ÝÆ‰aÃŒ¶·°™«ù¥ÕVw¯üü#ï€]Ìî4À£Ú:wþx•¼À^ÀÞ:Ý¿¬iSÙÚ(jJzÀߨ©QGlÜiLð8^ø<Šì‚eo0 ŽíåÕk¬ÕØ¿zö/´§ºó­mÿÁ±ŽY²8òd· Ó [Íã:}ŽÇÓ_è%zð8<$+¥.x2£*in'R|#ŽŠ uÝ ê3än^%£ó ¥iÀj';{ “;Îw TÐyTÞƒjñ ¥w!ŽGnJiå7¦åel°®ëݘ÷“××}µÿ¥&Äñ¨ß:j:®µ®ŠÇ‹²ÛöüD‹¿Ÿ?ÿï.Û/³NxÕ1(cn'-èù‹oÑÃ¥EPK"xŸ{&‹Q×þƒ\<||2eIjß?^óMj‚Y3‰L¸ÙyÊbdç^Rá¼On’z³} =¼Ð>Oî8glÙD%;cOÊŽ†´ÿP'‹Ë’/"ÔÂ#÷i†Ãç^èV~ƒa È¢ƒ¨ÃÆ•œ8¢V«_jBpŸì€ˆƒÔ鱯îó4xÝ'[ïø„Ç»'‰ ³N>øMne—ç9¥ÕgT%ÍíÐyàÕyHý@Ý sU²Új¦)«­°jHÙ ÁÎC2ÍmÞˆº tœÑmÆæ:ˇ2:é>ƒatNlÈž3<Œ~nsâd“_Bfí­ù—š¨ªó°¶ç¨‹4›sl,mí+ðxuq¼ü»RvÕàÇ·Øy”~4 >õ{ SY ‚³-ú_?&ó>YIâ}LºŽ3âúLð8Yü8jHÒÀ=Å´ß¹5#Dpoý8ÊgTG¯qCÙž6Ÿ/ÕEØÔ$Ççx2£*in‡ÕVÊÅ£ÞE.¤&1HÁCVªÅ£r©RŠ{÷ð<,b€ª„Üäv¡uÜVœ´·ýü÷ï–ãaÃàzè1=Ç1½WLëv+Yþ­Y.æv Yþ-YÎL¥5‚:­YÆEçT\ø«tZ+ˆ¿˜°ùÀð<ÀC•x ŠrÛú—?ºÇç¿%áØºôfxÙ:Ìfzü ‰ŽCþãl$ÛÖ6îík•†Çxï Ãí'¡súÓÊ„ûe¥HŽ"t x€àx¨É»ÕÕÙîðSã ýøìŒL¹ß¿›þÏ8†ïp®=×Îq4ç[çntŸyÒW«l]»Ð½+í•«u.ëÛ Ú£sZ ^ä´ø@-å<Àð<”[Eö¶÷ÈÈÏÖö \&¬øý»y™¯Ä‡ò_âÔ‹®<¸v6"MtN£¶ÓJ’¶×vF<Àð<”WÒß¿‹6cÀð<°ˆx_ª~?:Œq>ÜådVæ$Gz!ºU-½Sú”ÐüßÑ*þ`åÚ„²'€àx€Nx0v±ú /ú®x×€_Ž4;ú»†ä/Õ—iu;¼t»d6·q^?ù¼V“´FO dž1l(ÀC=BýÔw¾ïÚ(0ð<ÀðPY%ä&k„iÍÉ(¦•Ðs‰4cÚs,ùsû=Õìζµán*h§~iÊ:w¶¥hJ·;CW;)®‰]3ÛÛ€à¡ú€àQCõ üÑi¤Çò ©¯Yqé¼ù¶)àØÚ°–\Tï’D/o8èó.µ&â(é»ú›¼k,}ÍJãý$‹²ËÏÀð<ŒðÙåla9ÎψfÈYÌ.¦|Fú¡I§}Ù’ÙœkrX[ýï©ëw°­„Óº¾nÒm'Kéxlüy3w·|f++}p®Œ>àý ÷W¯ç/¾Eû…B…δÊ3à¦>ÇŸ$_oÍ+±qÌíÑá>s/ f:¹tÔën^ÓÐÞíöp¾ß¶ñZ›ÇW¼h1»0Q¹yÐ9]ï¼yöæOƒ1ñZΨáû"~˜®™üwó.Âõ[*0ft}¦5ÜiÓ¥~HºÉó¢+T¢gÊl†¾ïçÜ@:eƒzàx(Lx_ªaiÃiì»ý侯Ä|ÊÀ¡_hWvbsÑÄ¢–jLX¹U¹vHðHº²ë'Óþ—ê6{?ÊäõOj8†€¡<…IÀãKµ¶`=Íy®ûØž·š¡ùú»'{Ç,11EsùúéI'ñfÚ§G36+™Žr<ß;ÖŸÓ¿öÇð T€à¡0 àx|©Ü‹½hžc•.C->Ð9=ýø×®Î]k Bx “€Ç—*ê| Í·¿ªá| száùeÚCÀƒP€‡Â$€àñ¥Úsõ-°‹ªá| szkÂ@]ïFï†ýX–—U›cx*ÀðP˜ð<ª­Ç©I—Æ÷Õ÷htµ}{¡‘‘ åΘÎéuZ뀊_lU?Bx “€G5r¤$¢9ú±M‹W1_«ÐkíÛ£sú²)­¹ " ê?CÀƒP€‡Â$€àñy½<ÍÑ/ÔhüŠùõªÂ£¬iStN%ïú ùø+u[´Px Bx “€Ççõ^SS:MË:4ƒ« «åÇ«¦45áÇÎcø0…Çð T€à¡0 àxTÓy ŒæègÍi-‚>v:¨ ¡‘‘ü5Ý9 !àA¨ÀCaÀðø¼§&¡9ú^+ZGŸŠùš¯ÒkæèœÞ?¨½o#Ôs”åg׿„ ð<&</ùñ׾]w4B=‡@¥rlùø>š@«öÇð T€à¡0 àx|©]ÿ¹»CwÕ²!ý@çô×'Ðøík Bx “€Ç—*çRþöUÃ!ù@çôăS´Àε?†€¡<…IÀãK•òWÚ˪†Cò!yvÝ̧ù÷ªý1<àx(Lx_ªÀs‚Ùkg«É:§aEÒ|¿7PV€¡<…IÀãKÅ>Á1™k¢j8$èœzþêCó˜Xûcx*ÀðP˜ð<¾TË÷¯´k§j8$èœZ2insJß?/8œÛ×6f…jWÊ«/CÀƒP€‡Â$€àñ¥ú1mXD÷UÃ!ù@çtå¡Õ4§åŠÒµ]vßzúø½‚cøíâqîü;♈ãQTò<‚øpÀƒ”óBÊó¬$ÍÈν„)»Îc‚Yç…à¼ÿË™—ÄñhÙò°Æa‚ó>·—<Æd¥Ùš9{…ÍùýÙ‹ZC9YG¿]ýfži1/$‡èÅ‹?FÛe¤Õú‚ù7ÑyH EüßIÔ`‚‡¿xr^Hy“•„ ¨ÿÀä]g0Áƒ¬óBpê?ý[)Á=tOìqàÚa ¦,=«òÕM–žÃ·n•Îæ&[m;XV û8X퇷w)xÌß¿}»}©qSܺVöôç#iÚž'ŠkÑyx^Hùáý< ¬¶R.õ.XmUs‚xÈ V[‘{^Ný«øÎÙv;ÛÝyúàcçaºÉtû¬mžÍ-l—J^¡Ú>Ò¯³¹Õš-f ÌÝ5,l–U÷²‰èœÚÛ#<ž½¸b- kd¨æ–í~ýE WοÝÕV¤àx(LxŸ—G‰÷’}ËÐÆ§—­$l+w#ä„)³³•ÇÓr1LÙºV;f(Ô«ÚCÀƒP€‡Â$€àñy O¹óx)CÌ­˜¢ÎcÛlsO5 »%',Yúw6·\kj¶Ðܽy×<ÈÂãJé Àƒº<…IÀãó׬´¢µoü{WŠÇ3—¶’kšÎM+.o¬5³ïR¾T÷;K÷·šmV¦+¶¯@çÀƒº<…IÀC®ÇÙë L¤ÛU_¶RÍÇÂåæ•ñ(ˆ¿˜°ù…Çð T€à¡0 àxT.ÔpèÄè½q<qÇ¢sŠÌ@x Û"t«ð„ ð<&<ÊtN8>k‚ìSðÐ Ô’à¡Q´|Bj-å(<àx(Lx²ºùä^·„ïÓÿÎŽÙP˜ù› íÆ^ö£vªDŽÕÛV«‰ÔÐ9M[§ÔE IDAT[\L+IÚV\Ëcx*ÀðP˜ðÕÓÛ÷¤V[QQ€à¡0 àx Ê»¼µçï_”~zèâ%c“Ôƒê…>óN©°ó˜ÍšÝž×Þkª—d©îÛ×u:†€¡<…IÀãÒ£ëݺEŸCÛ7ßgdŒ__ ^”ùJ¢Âk}vôi?òP«CÒ÷yÔ©Bx “ß8wž>˜³ÛxõÁµ’þãü…^;g„¤‡¯=.]m•Uþ ÕU²Újó–Í çiÎéé€Õx “ß86…öCv ½ðÏÍM){;:„†<]ù«Ydü5Žú}ÌaÎiïßþxó㜥Àƒê<…Ioѯ!z±ÄEõ]"–ìÌùóÞ¹;¨ž=W¬ZÓ/fKù/F¬ë1<àx(LÒ ñÈÞ:ínÛÆh´×íû„.tibØÜÊô4ÚIõNó ícD³ Ô´¯‹Ûù­âu>¦ãNÑ"$Gʙߪ½ªðXo¶^M¨–ß6ßr­%à¡‚<…I$LZ¾? <.*hëâOZÞëÆÖbsCéw5~p´ Ûkë/Òà„:Ç7|<îÝ»ù81îÙ×ÇIñ÷þ¹…FÄÿ kÑVÛÕnSÊÞËî}éªÂcœÝ¸1–c„£„ÒOª ð<&ixTldždmŸð¬Ó윱ž‚àŽÜP×p„GïC÷ܹ3BŸ)èb-ùsªÍ9âÙâØttjÞ¿(..ïÌGƒ-vd°Î?yŠŽUµƒõê÷ÂL-nzªôïiËÝó÷[ÏcÍßun‚šžgm~ð0FmЮtÏwÿ¼ò[ôN[Ú M({"^“ðäîáŸ÷Œv,ÿF®©Å7o¢ÁûçFKÿd¬´Ø)><~ämWÃ×'”nÝ‚nßvëÊIÝÔ<¤¡·GÞù 5Uá¡ë­ë;Ô×l£࡚<…I&ô»Ò©š~°ÒG2ÒE‹•ðHˆsö¨Y›GÅEÆW´&néJË®nKù%÷Á‹ß<-*Þ­gŸ¿§ìMõƒåÇðä°‹Ù&ÅCîžÖžW7x•?3‰±/rùûËÊž£»½|9å½Áò×gn—¾¯þ¼(ÆãÁùMqÇR®Ý½ñèöÁŸ³uì²ÒT¾Ãý#ÙÑ:Q¿ý}ï&’ãI¨X:~õñíi~ƒû861K޽ñø¾ÂïB%ÛMLÄÓ§§Å^>RÏ]×sš§ìK óߢýB¡BgZåð Ó€ Ÿãü1Éûì¤+'—ŽzÝÍkÊSçÀ”VöÅ„¬š‹?deþÇeµµ=`“úÝ93ó•0쀮í1^ƧýÔf0=åÏ1v9æIÏ,]slҫĨrÏôËýé;yŒ /ºXNý•öçúîØ="åß[mάô{³¹Q3cÿ;e“ù`À$é s©æBƒ–cþ4ºÈ6[ågªr8ûBçûû§\žc9“Þ.p²6ùìœÖåi@Ãå ©8ª²uªGAç‡Â${ ö“Rè8×û±(É «P’OŸnyEÝ0|Êa߉î5o›ñßj]"ÍY+è^VL:Ó¾sÅ‹<Þc˜L”ÄÛÏÇÛׯ[Å`À O_ÉHµƒ>¾S9¼qî¾^¾¾“Øk}}ª¿ç޵ץmPCÛ•ÞÚÞJ“KêmÏÕE£½kÝ㘹³ßÇÇ–ŠÁd±jQ]*¾‘ÏX»ò—¶3=ZX¹®e±r&N<:t(Řg6O#¨E/—¹   ñÚ| Éì–Ÿ«ìÊÍH{¡«{šÉ@Û!)áZ~Z¿¬¦¿ÐÓËÍL—Þ¡w΀à¡0IƒÄcÿðþ[-XÛÍÌGvzÞn¬»•õBºws+çµåxø˜y«UÈ!}Ý’i½€î­nå,Ìüðq÷õôõ5q Ðdû³>Më•}}WÛôqñõháÛŸÉû„Gu÷uç¦L5(í4ÓÚ†§n±ñBSµks· ÝcçvÕnR´Wýð@Ť³¸ é>êV.ëeƒLkcº—ÎbEÍ›·s¬N'N##-ÍèÒ;ü­¯9>>xœ²·{0p€t{ŽãÜuëÐ)r´!y”´5±OÿPy÷öñ3dðÖWQáã ·¬½UÀÚjïùqÐÇeÅMži®~†ôºg»TÜQo<$Å`: ðó?}êØÅÊ{“½Ézó0îïÝš¸ÏžÌdV|5ÉÈè–×Ê <~7ÙpÉØm¦Gk Z%D'£m4‚ÆÕàx(LÒ ñ¨õm†ÓV0™ÌŠÖDÒyøúMrð³ðöñðõÝäÈÓ`û3Ë_‰ªfPV¾~Ýå»§¥ùIKcœÜýÜmR¦é¿Ò5²³ hÎöÒ½2w» ¼óxÙqJd}:» ÇUL¶‹³ˆÂ»¬ûø¥ ŸæÜÍý]µño³rÕÊ€¥õõ2õhÛíÚZ²D Eö÷ Dß‹&wIË;ÀC5x “|Ûx0W0ÜÛ•÷ -è;¦1˜™’k¾.þº É`+kÞb/é5j«ÃCîžžn1 †Üo.iƒnëŽZ¿Æ§uùÃ}\6Ÿü¾%êÞ¶ísØÂµ^×<Ø«˜îí+»Og²åãËìWµõíÛ’×Æl¶™Ï|éQŸ9~Îĉ趖=Õ×<ôtÓÙë‰ZðvÅ¢‘Ó +¸æ¡Ê<…I¾m<ä«â‚¹ª«®/[¡ÚÂ5ï>¾¿]»€vŒéŒÄ‰6ÛlëºJñÈNîWéE¿koQß²ºýe㹨ç@ròew<¨.ÀðP˜¤!á>Þu”ä‚ö4´-d.æíilœ=aBÄhÓÆoõªj÷`m±½È&ëМÙéë×ù{º×0¹ó<Ý3Ö¯­Í=•ÅXê°l¤Ç(Ý@ÝfâfÝý»ÏužëoìLóXÂÐŽ%—,9(Â#'m6W¨)îcà¿òK÷<¨.ÀðP˜¤Áàq£cGHäÇÿZšQ?ŒäH0š!»Ú¾ nÊYà+AÀ8‹C¢ WîœR2nìµ=·kͰò˜šê¼1B6§£m)©hüß¶mÑ}j¾gê î.]^«©¡Û4“õñØÂ5ï´`ŒÇ˜žƒ› ›w ê8ÂsÄb‡%ôe~ž#’³ºg´+ðXáI"”á‘Ùb‡y~g„À—Ùð<&i0x”5m*Å#u(íXwZaûÙÇ›û_sÏZôO Þ±ÒeÉ–Þó×35;ŽÌÊQ ^È]àä@®È^¶Ê[¾ ©°c]úªTt‹¶Ý׉‘諲‰¾Ú{þÚÌïC••Á´Úûáéç–~u‰Ã’é®Ó‡{Ž0äuÕi¨‹4 xèÓ¹ÛÖ¥·ßÃZ€fvÖâ€cMOP+Ü9j'›nMºTà‘—Åòðo,ngàÁªán€Õx “4<®ëèH§é·ßÑ.¶¤,>Ëiò„ë ÚÔóÐk,nò°¥ZÎ »6c­z-_¼fÚæ•œñŽÆf¬×ÉÖÑ„»1>ã±l¿Ö½{úúufÌH‘Ú±n-—›î?¿çív†•åx¬Aû³G'g‹ÊšÇÙ°}C€ÉòÀó‚æMãO+7T8´»¨»¶X»IH“öáú:÷õé7Æ}ì<§y¨í¨<¡#9зð‘Tô]ñ>íÃnkÝ”Á5xdd$¶÷š¦ÆîóŶðPA€‡Â$ Ù5ékVè6lÁü¨1÷£´ÉØÎd,²6g³9hbÇŸÌÆ Ùº|Ù’å3×Ïo6~³S_{-]Ý–¼–è"­æüÆÍùMi"f|ÍV¼VÒjÍSkØTvŸZ–Ö†GC»¢ ÚVT`šÿ4Ÿ!4ϱ4÷i4×y4§4;3šµ=îO“û¡|-ŸZL+‰ù>ŸÅd+Oåã‘à f7µéää“Yã=ª ð<&i0xÐ?®¶ºÙxýŸÚÓ‘ÒkàZ´Ëèe*»OâŒé÷µ´8 |ÑÞ&Æ [DK¤±ñE}}zÕÕV¿÷é³yw ?«í~û9QèmÇnZ~¾o·j: U;ö†r/[ÝÑïBÖsiç! /}ýê+Å#57©• £ÆSFdRÍ÷<¨.ÀðP˜¤!áQmù®Y}¿üýÕG‡ ¹¨ßmûLsšQÃ5üeK¿tÍW¾æQí=Ï5ó—Ãc×FRðÊQqÍ£Òö׈‡q¼‘culDéy9€^³àx(LÒàñô–óæ•¿ÏcÚv'•CZÒÕVRcî˜,YCÕ½{ù*úV[ÑÑW¯õè^ó=%«­ôËW[éwÙe²¬¥º(|e-Ð¶ó¸ø¯Çtç¶áíy˜†&(¼3àAu€‡Â$ßµ7¦È.Gòî Þ½¾ŠîS›{Ö¯êñó¯ ˆœh­p-Ë„Úaj®‚¶ðPA€‡Â$€GåúêÞaþÕá4·À.³wtïµÉë&xG˜nM š·ðÀnv<…IÀƒJ<Äv¹sW/è0,$-}ÌÒ˜õ"4x`7;€‡Â$€àA%“7ë s´Ò2 Ô k#àQ·:wþñLÄñ(*y Aü8àAÊy!åùGV‚fäí¾ŠA&xDEဇ@x÷L£®ý¹xøórdI‚‚êÜ…‰ç…àóÜ$õï9ö\”Å@ý‡ªðÌ“Åàî?ˆLýá‘GeIöD¦þÀÀ|Y âý!×ÓÝâb¬ã¥½&&;; €‡ ð<&Q:hDúrV³>Ãr«},à;9©cØÂiщ9Ù!QQíÙ®9Uz$ÇitôÊ?MÊL™dÓs§Y’[ q6Õàx(LBIç±o_nlñê>¯»›Û x|x¤-´Mß™‘”›¥gP Sövn Cƒ»xvYhµðNÿEŽö€G­¢b8;€‡Â$½l…*Ýæq«OW÷%Àw<òsS’c{ÒËÿŽ!=deJ•߃û»É†KÆÆ™ù9“Ã7hò[qímÑ Aã€G­¢b8;|ÄãÆï&s9ŽÜ®<ÅW;He oF?¼òÓÙWþó8M»‹¶R„ÇÇïÛ¹(±Òyy÷Ï+¿Eï´¥_šPö„ºó‚ÉÓ£”Š æþ——³O¦åîÏ+^ÓûM×õ5vö+þ̪÷\Ù„Î`­a¸é[ ñæVî,+Àƒz»ÍËgMjØÂJNT;Hvçq%º¬u%<>•¹ÇHí'?Ì·¦²ó@t©UÆãåËÈ)ï –¿>s»ô=Õç“§G©²–êVZ°{ ó¤Å”gèÓ&e}fþ]›kˆJx0mÒ]f3XÛ˜ìÅ /5+×€õxd§ b‡°²$óxfVRv¨}ö§™}KŒy[¿ï&±‡ÆfgHGN3¬^èéI×\‘‡ÇëÇWØ~¼Í¹1+NËð°‘7CV€¡Bxܸ" ö˜±ûï’½‚é2'ª¤ó¥GZµúy©¥/[Éáñú·7};¼Í¹§’ó‚ÉÓ£Óߪ+‡Ç§²b8èZyÎ<¨Ç#'m¾-PHZlN–HhKÛŠkâìîáý›ð»¬w4®§wÐÀËÆsQÏä8,ä“%‡çÿÆDzÏ9úàòñÙ%€‡²ËÅisªÿàøÓnüSä5©Â‰;{«¤ë½Ÿh óÚF…_ÄãiÎ[­noWþÜyÊ›Ÿ)U“§Gé×…ƒµœîÓ‚n·ð üܸøØÁÜ šU`nØòøì]y™Ë’V4iÙÜ}]L"ºê3ŠÊßçá@bÏ!Ã#—?,íï^üw:ÓoÆ'<4ºä5+ ‘EÑÃg•ŸÛ€zwÃÎZWpàäu )b‡q'îŸ;Õ_~J<,6…wÓ¸9n 9¾ŒGÖ[õoy'^>»ùŠ÷ÓûœWeÔ,ž“|x0˜kž-è;æ0™Ê“ð¨ÊÅM³Õ‰Ðm'ÜÅÙ#4-ƒ\'ª©¼ôì =ùç3ô¤-Ûá4©j·QöôŹS™¸¾î×ß~<Ô«tÖ§«IÒ}är´ÿçƒdûQV§^ÔÐK4ÙN_ÄãåÉÿzÿTöàµdûAü»¶Sá‚y½ë´»Û“^½ÐqF·h›|<¬t/ +÷YJ–ðPˆ‡w¦_¯¨^]"ºêî OôŽLÉQüçÇI¨l{ôìª:kÉ¿ZõâyL€Ýô3•Bõi©îíhîgHT;¨\<¶¹LèøÌp¦­Er|_mð–wòåó[’Σ·=tõ–Cz…géF=ü¨Öº·%rTÁÃׯ[ÅÒ¯€µ¾>5 Ö\;Ö^¯XAð}ÆŽOã>΋ 5Ñx©áįÚáÁÜÎtéN@ß½Ýu)“R<‚²£cÇ´o?'Ê´µ5SH<lTzÙªâI[ÝuŽçeÎæ åx;_ƒÎƒ¬R!eUÞL 7-ŸÊ·­Ü­­yzÞÊä°¨²T·êªÜûÞLÔ‘Œt›ýæÔ*Ï &OR2ðxÚ«§¨ÿ¨/²¥º•ìÊ úLgPØy -Ÿ9Qí BBÔ+ãá–4¬õÓákƒwØf ×z6Ì4 VxØŒ¢óô6[YÖ+^èvJ–Ãi|œ˜{90K0*f´V¸Ö¯ ,£]m¹BÏ„]TÊñE<>-ÕmæhrìÞ“•žÛ€¡‚7 ZÀ›%!ˆÇ[uu©G{Ð.·“ÔE½æYûrtª,ŠððÜ~ºmÇã,O´íÇšú í˜XÏÚàaoH÷žÍb¢mËQßÊm¥’ñX¾yûó ­EÚ’7úØî:¨^8su|tFÅrdÁ›©/ÀðP˜„ ¨ÏâQÚŒvðšÃÚ(k ¾Æ€Vy®òŒ÷Ê: ’oë¯htÍv-ßv]uC³WÚŽÚàa;‚Î3@SÒy4µòš¯3¬Øt#—™ƒ:jóµ—¹»ìnuÔs~.’cí¦¤ôuú÷̪ËÚhÿoßL€¢8³8>Vep ˜ˆ.YaÊQr a Ô’‚„€n)Ä5£ "×0Ù(ÈpŠœÂÈåDDbØ b&r`9‚%kLtƒˆx0D`ÙÝOÛôÂÄfè¦yš7õ¯®¦¡»óÑó~ó¦¿áƽù¹2÷N)L‹<2Þv’!þRµ`HYýžÇ„)/«¨ˆ>›½9G°Vààá ¯­ž®¾*g•sÜ»q†©>n{(sTªÖå3.øˆÓçïš¿'ŽÜyÂ\󾙇b7Ì%Pà¸{©_¢nàGþ™#ÁÝý–†F—®nµ±1Yöjh-ôo}„;Þ½µ,z™jªª™Ð,Ê2ªê7UÅÅ™¶YQ£A‚õI´3È’{ä|²›ª`ôT]Åýò˜LâLdäAúä1dd(S¯Iÿ1]òøn– é?€Tm Rnå16g Ï~TUêp:Ö*Î}“û2‘‰j²ê‚˜Eö[m\Ö¯ó òV¶î wøä8;—¬^íâ,ôÝÁTÿ›•;fnî7N¨që=VHlè–‹º|²eP×úh¨‚SuC=>oÜ’€Þ ôÄùŽŽô²Þ«©éðáÚÀ?†òSø¾A :h"I·‡m—95ÛŠ.åÄÉ.e\ʃô2ò ý‡‚×öÓ$sç«D0þþ*2ò [88ïŠ ]¯Aå±ÉT¸|(õ KòHÊ{=ï³+su[nñPßûšÚ>ÝçÒUÔökê&½bgçãæá'ÿ8<=oÏ›wEO¯Ö‚,ûæÍ#[¸y `…nnÝ‹Së!Á!ž~žŽþŽKCç<ŸÈ·ñ±ñuóMuM ˆ™^Hùº”ÑòP¼”‘:4•hl>uDÎ2òˆO4ã༣f¦2÷NGÍͦk4žä-? 8$äím%¿öð¶ºJÕÚ´øÚ}çüJ*íŠõ’}ù±Ï%.Ÿ™®9ó€švŽáª‚µ)ÆÖKª®_ìùévÿÐÉþ›£zzÒƒYÔ$d}Ô@ÿÎ^z‹‚!r£ÿæ´‡`Üd˜ö½Aû¬MóÖÍÌNW5™F ªÞ]s_©øA€”²1‡¢¥ìiê<¦úЧ©­XF—ÚOqpÞ§‹eêõƒ²SÓ5O„R+`!©Ìë"Î(?ÔAj7Y‹Pët~¸ßÿõw×Äõ_½_šbux»ÎGµÔWg¤ÎŸ!ž9[<AæJ»¸U¡›t‚«3Š/}} ÚkÄfõÀ‰¢_•<Úú¿•|›ïú·í‡¬TÄóæ$ómê6ÛöÔ\½“ú›[éÉãO‹<èRFËCñR†ò˜ü E“,›ÚK8;/)Ùä þæÎ%ËŸ•LïhüfÚÿ/Ó; 0Iò?¼H:º|sÞZ§H¡oë½!i>ç[‘¶m§µ“POSl83Mkfú¬ùqóWD­p ÒÙ*0f~”üéþãµ'ko4|?ðã„ÇLvi8ÕLq²~hó…É  ¯èȰñÊ«©‘%YŸ´<ò>¨«Èí¤$ëy[ë(Uœ¼ZÛœ°éÜ–å…«ædª«ˆ5I—öRÚçcá™M_ôÜêÕ×”dÓûædŽÜ»×÷´ÈCús){4ÛJ¹R†ò`‘H4í pF  8$CÙalŽ’7ÔÔzïÀ–ÖöÓ¥Ÿ{sidÀ;ÁžÎBgó¿š/[ÌOáó÷óõõ-’-œ2ÞÞ\ð¾ \Ó—ÕqðDwIõ?/üývgòÇm¤õ¡üA–ôº²¹]˜'Óø*åZ·†îªJÿƒD$I¾´×%{£ÅŽ?þ>Ó€ŸÍA²@Wbº0Í^%Êõ•Ôï’â’öË?Þ[úëˆ-Fìl‡|¼É‘u²E©nÈ‚ßóà:(˜$@0à0”ÇÃ{úãïydgÈÜó¸-½ßÛÕßUÞ}.ëË#‰þI»¶ìòܰÍuƒ«ƒƒ¥Èòå„—¦ýVE<{¶xŽÖž…º‰KŒ&æÖÎe.+Ü=¿ðò?¸ëBHlCüþoÄ9­Ÿu/»Rþ®êž.IDATywEy÷Ùšïë©Ô_¿ÔÑÓEÒc±Bª2N=–¯R¿"©ý¡á«k5dßâË¥ä8Ù­’¤¦äÐÚ0ßjÿ÷Înv)[k$±_V´LëÖ¬ÌYÚ¹ÚK2—[m·~#ÂÍû ÿ5á†)±ü,“ …§«) ™>CzòøO±{ÈR©žåñÿ®UöŸÝTŸ`AyÀ$‚‡„¡‰F"Ÿ2nÊŸfâ õDu*ÚQÚ:á:Kw.5™ûšÛyØ9mrÚ°nƒç›žBa¤ydÊò”— ϨŸ©ŸQßÀk RÏkðv(UD,È‚òà:(˜$@0à0—ÇÃþãNïÀ§G÷F“å$æYQ!$Ô§U¹5“þÌŠdØx¥ÌÇVÃ&Æ“¾a^‘ÛI`ò½êÉrìý”‡¼]PL‚ò€I +ò`%Ô¤aæ÷<úŠŽÈÞó8V09yPæ œ1vå1Á.(&AyÀ$‚‡Ž> stream xœ¥X;o7 Ýõ+4ÚÃUô~Œu›¦Ð!íÝ Åu"°‡¤Cÿ~%’ú’[mÄ)‘:<$E}ùl¼¥?¿¼³o~óöãŸ&¸ØìréÑüŸâ}¾.ßç«6Ï3³ÿÇ·Åõr]\ÏWåôüu9Å\i6”†Â(¶¢ Ÿ_~·OfVP±­Í` om.ã×\OÝõëýŸ–Ñ;¾];£ºæ­u½\:eö5c^}ídêWjàב׌ÀÑ  ®D$×—bQ^=gʱ(pŸ¤}€ŠD¢Â¦Hí1V%_@,ú"4cQv%æY"Ì©«V ‹´­ˆ<ézÕ«Ö¨Œ»î࿸ԓž‘Ò,èD\è/G5‡Qs”Ð÷ÝÕb›Û×ñPÐ'àzŸ/à—hæþn˜Á«9“³Ý yëtfÖ0¸o¨§†E>eÒ6ô}Ÿ'âhiJ [©=P®„¾¡ŸZ{ '¢÷ èÕÌp3Xl°¢ö*‹—ÙŠKÖqh`kH¸ø€r9_ÁTOß§WÛ›Š¡óî)G$ ©±iPDz݃ƒšÌ<}]gŠ ”ö¾±/ñ"±™½Cs¦f»gêäøÅ«€#É(vJ¦Ÿ£œâg£»OäŠcÇ”G ¦CÀ ßiè6×èê%™Nì.QåÔI¤ dV³HÛQ®ºŽñ„Y³¬!zº»¦o3wãíỜ{¿’í&Ò‚}QøÚئH¡u˱ 2OÆýŽŠR\„wÞÒEƒ"ÑìŔٮ™±y´Ò)¸di\«>î ˆ¼ |x͉4)%1¡³ûÎ=‡–H ËãH3ÐÓsLÖZÓ Ä„ ÂÎÉS/gGçSÙÈX”¨bËÖF¨ï”¾˜Th“vEÎIXq]å¨Å”IÙ®™49y1*¸H27%!¡'æ;H² Š,‰9i1&tÔôÅi 9áAi˜É„þ+E+]ÞŸšãƒ8äõJš&yHjê O—Ÿ^¡o % Gä-›jØ÷æJÏ^\*²I´ç4p\F—WØb+¬¨oaÏNÚ¿ÉD ¡úA+ÜæH]\[Sª ¶5<}$ôr% Óüð×D`£]Û^^T5NÎçdÞã¼ ä츢 cQÂQÅŠwk&ØùfK_l*´IµçDpXFWWÔjʤl×LšÍ” °)^µÚÖ2£2 B*…†‹Ç$‰Ø¦3š*§Æ 3šÊª“ñšÁòŒÕMe‰v×åæ =DçˆNµâ93#š44Ðälˆ¨`¦Rè¼—Ä5ÕrÎG³}ËÕ£ùsƒq­é«°e}qâÎ=Ž]7?LxëàɉŸÊ·¤Ä‡÷7?ÞŽÊÍ;u×SÀ†QY§áOdøöl>˜¿jσ2 endstream endobj 4 0 obj 1601 endobj 2 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Font << /f-0-0 5 0 R >> >> endobj 6 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 629.494507 174.777817 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /I true /CS /DeviceRGB >> /Resources 2 0 R >> endobj 7 0 obj << /Length 8 0 R /Filter /FlateDecode /Length1 3976 >> stream xœíWkpÕ>÷îCZ=WÒʶ,?$¯üˆõðC¶e;¶¥H¶ãfò´ÝDNM'Q‚MBB^C)&vû-MMš2)¤4ÓÙ¤-“¦LJ` ¤ÓeBK[B[¦ ¡þP $^÷ìÚq(I˜v¦?{×òÝsîÞ³ç|çÜïÞ&ø20à[7’Ýú‡>¾ @X @W¯Ûy«o[áŽ7ÌGHÞ†­G¨ãù,€å9”·qxφoî{-0Ê­ÏmŒö\°=†º¦*¬/0ËQþ5ÊÜÈ­»›2ÌA”?Ðäá-ëÐVùkö”«F²»·Âûð ”(û¶n[¿uåy;Ê”+€jÎrx¡·(Kxƒ”ž ‚ÊŽ384n ÀSÁÎë Xëwø•ø#À‚ÿR’ƒ‹àgO]L¢ =hë wj b‰°D¬¨ _íËcŠÁ„fë­õuµ¡Ê€\V"´P‘Ýz$ ÖFË›¢õM±¦:Ò4ŸÔ—·KÊϋֻmDöëc1ÆÏðniVçò3ƒ’ÑÙ·'ÄÒ7Ä|/on¤½nƒàRÁeŸ0•ª†Ãö®jÉ`tÝFδ{ÃÉ.–}53óŸüFpæy½No8FzÕwóŠ¥Þb‘zè70D¤€·p» ó1¶T¢­G¤NÙ,Ф‹8 5¶“Ü"òµ„ÇðŒ†m K6Ê9J'“UU ,Oa€Á`µ]ÕË‘¦Æ†Ê YWøëK¨gôžgår u¤±!‚Q3¼kF¨@xÉð&SëÊ’;)` *GP6éSwoY°lì¡eÍÛWÇŽªoSoî&åC'¶D3ê-÷“ØÚŸìØ’VÏÇ*¬^®@äB„]/ó£—óØý=7-\rÏÚ¸=´xsûè/w¤Å-'†ÚGâSgŠè¾¡£™[¥z ›>ËKÜah†h" ‰f¶ЉŸ4Ê-#ôÒ©²ÔFªl¬s €'­"†Çì©„D1–˜–Û<·d°V.«  ND1Ûù±}„‘‚³­PÆRJ‚7þxô®÷¿WÊZ³xäsŠåÓ¨‘9Ôf™­ƒÎ¢V7G‡×«Uª³œnkúÞo VwX¼¦cžƒ·;Ýc‚Å)q¼ë?²—³7N"#J׉·Þ0CÆíŠN}(FVõ¸¼ˆ‘×]Ô(Í÷M½+06¤ÉY.ÈG.X ñDS2A{ÜBi$=d/ ¸í”/GÚ¯D-eBg²-ßaæ‘´%´T[Bñ+¼Ð'ÍÍàB4\lT.ãÑ rD%FüŸ1ÅúSc·+ jx“‹Šn1;ã–p+cw$¬ ß»ãÛÓû¿‰¹YòtçØM:w˜¿ªsǃ¹ïªo?Ÿ#§ïüYnû°Â[Y7Fë‘4ÂÌ«Qþj,íïŸa’eD˜¬îC&±u&i_|ø)õ=õÄåº1ˆX77BG"ûÙ…B­%ßÂ`ze_ïŠe_HÅÛ[›CU®¿Ô£—La]½V2Ù™’Ávíš™ÃÆ€•âw]SOp}}j㜵áÒ÷ÎëVî‘´RGKSŽÒc¬§rØ…B+çžUÏëJÞâ˜ú½›eg”û¦Lp¤2Üx?ST…. =›)¢ºÈ‡WTÚ35'%ÁŠ·×nq­œzÕÃj*¯s†ÅÐ)`éRìK@D î„iÒG²d7¹ƒÉ•'㮚ÿXW9œù-áÐi Woʧ99Þ¥0©ì¦Lg&uùFN'”KíLÉ©qVN(f-V´VеIId}ºßÊ/Þk·J·WéP89‰&ˆœÜ¤P9©Xª Â!_W®3: টK¢Çh½ÏwŒ2ãIY!Ùd7–èO+‰Ì€ö¾p‡RŽº[áP$z1Š+RuXgQüªÙl¿ÑÞö`®&žé“*×ò3«ƒê3ô9Üa¿íŒ8~I5®Õ_i*œÕËÐË=9þ ,çÎÃb®ó‹P~RÛõ†=)ÂÅZ\mxÂbΡu¾® ÷Ë´öÍ«[`2¤Ö(2?yx÷,Ö- $Qd˜Ç8¿XÄÎKÛ¬öû7›sÑ4›N‡­°ÿÓ¶·8ø¾&º¾ endstream endobj 8 0 obj 2544 endobj 9 0 obj << /Length 10 0 R /Filter /FlateDecode >> stream xœ]¿nà ÆwžâÆtˆ°'ñ`YªÒÅCÒªnÃá Õ€0üöåO”J€ßq÷q|G/ý[¯•úá ЃTZ8\Ìê8ˆ“Ò¤¬@(îQÚùÌ,¡A> endobj 5 0 obj << /Type /Font /Subtype /TrueType /BaseFont /LYJRNA+Cmmi10 /FirstChar 32 /LastChar 72 /FontDescriptor 11 0 R /Encoding /WinAnsiEncoding /Widths [ 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 750 757 713 827 737 643 786 831 ] /ToUnicode 9 0 R >> endobj 1 0 obj << /Type /Pages /Kids [ 6 0 R ] /Count 1 >> endobj 12 0 obj << /Creator (cairo 1.12.8 (http://cairographics.org)) /Producer (cairo 1.12.8 (http://cairographics.org)) >> endobj 13 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 14 0000000000 65535 f 0000005637 00000 n 0000001716 00000 n 0000000015 00000 n 0000001693 00000 n 0000005331 00000 n 0000001825 00000 n 0000002053 00000 n 0000004691 00000 n 0000004714 00000 n 0000005050 00000 n 0000005073 00000 n 0000005702 00000 n 0000005830 00000 n trailer << /Size 14 /Root 13 0 R /Info 12 0 R >> startxref 5883 %%EOF ttfautohint-0.97/doc/img/glyph-terms.svg0000644000175000001440000004535111760640200015260 00000000000000 image/svg+xml ascender line cap line x-height overshoot mean line base line descender line base line overshoot x-height cap height ascender descender ttfautohint-0.97/doc/img/a-after-autohinting.png0000644000175000001440000020700511760672276016656 00000000000000‰PNG  IHDRš²Dd9sBIT|dˆ pHYsttÞfx IDATxœìÝwxSÕÀño:Ò‘î=¡P -{OÙ ÙÃÅR¶€ K™¢  S†(ÈAàÈE6Èh)£”¥¥¥{¤#¿?:HKš&mÚ&p>ÏÓ‡’{sÏ{î½9y{νçJ‚ ‚ ‚ c&I yyÇ!‚ ‚ ¼Dd)Få„ ‚ ‚ðr‰¦ ‚ ‚P*D¢)‚ ‚ ”Š’'šq{ ´ïÈq:ˆ¦¤ô)}%ö‘öRþcåø¥\K)ï@¡Œ¼ íÄËPAx /Ñ4„°>ŨO±†ÅÎCŠUô¹¾ú› ¯õ‰fÜ^%Rdù~:ò]9ðì0]lK12•e甯Iãi«cIÝ‚±¹P¿Û\ŽDdhö~[-ö—®cÕv¿•·Öåˆ1ŒWù£g=’êꩼ¬,Ï5zöã`Œê™Ð2#v2°Á»ìHî\úíBarÏûJÓ¸\ð8§\â³JZ|4ÝÚhïÕ—ýÊÇ õ ó»Íärêó—ÑðŽWkÖÇ–ß±()M?‚ „¢{4íZ³=VN’"÷§ ¯Ê.ãòUÆ’JÔÃ?m±žþáqf9ÄR}Úoelôš,Y³‚%ߎ ŠeU†|›óÿ5ã¨iQÞÑ®)uNñå–P^üÓJNȺùüSmÜŒË!2%–.ÔËØÌWŸ’•÷bOÌckF}œ-Ë16pŽuFåÕ-3êäì“ÜF(‹ÈCßqÞ$oz›”W˜‚ ùè~è<í>»'¼N€…™Äžº=¿æÌ³,+–œ"ñ?Öõ«‹›DŠLæOï¹'‰Î-*7ư½Úõædì Þ¶ÓEÏž–îyÿëϨze'דŸÇ²~Pc¼¤ÈŒÜi>h×ùc‰Ëùݶ!³f ™³92‰¿¾,;"N×±j@Ýñʉuæì4wµD&‘âT¹+óÿ¼Ç¥µÃiãi…L"ÅÙï-V^Jx>ó¿Û,ëú+Òñ÷_òÙÈ1Œ9…¯ü‹Çi —?—Iìå]¬œ61»§tÂWl9Fji=ö ÄçN:wO¡s%ûìžm§& ]qx-?’oÎ~‹§ß.ãbRþ×q±øû,Mk‹]|v¡°ó å<ŸT©ÁŒÜ®¸ŒpþXuŠØœ}˜zù3êV™ÈEm{ ¥~|0½gæþÄÝôœ×ä!lüü_êÍ‚ŸTiÝÂb+l?Æí%жÓ¦ö¥¾™ñëÙm‹R})·ùå£vT3—"3õ¥çüÓdŸöº9F×çúêƒDä䕉ÿíçFÒM^Ï~!óûW]§þ˜Ž¸&hxÞäl[m[Ššö­´Ž¥¦4ý¾‰ÛK m}>Ôš–Rd'õ[ó¼¡Ôèø®ó®|Þ/·å» h¢"3Áâ;||”8ž“8;µŸGôgçÃX"CÖÑüÂ:®ÇXͶ+bwÒ*¯—OW={¥g*%rfJf=èöðgD†ÿBï°éô™òIªÞšp•/7æë QÏVðí? €‚øS‹Xÿ6S»¸*5vjb³Qs&üǦ›íXOBæ¡çf2ftc•¶¬¾ÍÓˆ]¼“xëIèì8´ùwÖ±/<Háö¡;Tz£2w…¤‡îd}èkŒhãˆ¤à› ;oäPt[ª¦}³(­c© -¿oâ¯ñÃ¥–¬¹KÔÃݼ1›·¦ý«ºAgŠN4óþ²×àZ¿äÿذ͈‘+&Ò¦¢5–Îuè÷å<Žoå¿äbD÷BÙJå'_eÓK>\6––Ȧu%¤n4>†z2?&-ûˆ–>Ï_«þð·S4Ýf)׿ ùCþ½"¥å;íðµ3ÃÌ® ­ßméÕ3<”k°<#LŒ²Hމ$:>©S5Z¾Û_óbÄ¥ò8I‘Ùõædl!ïÑvßIL03ÎàYØmBŸ¤bY© ®üŠ–ÖZÆjâMßY¸¹àBr÷Iêu¾ÿæ>oÎèŠ{ÁQsµçŒZoÕ%rß%ârînÿ‰;X»û!™Š8.ï{B¾µ)ÎH·DVŸÑ“¼øãóÝùfÜÌ_l8“¯°q‡ #V}B»JÖX8ÖæíŸóš5:;»f íô„¿†’žñ„3g­yû£·±>÷3äÜÙ²èÀ‘4µ{!ÍTÞÕ–ªmßJéXjòÙÐö8ZVáãœ:Zz¼Æèe£°ø}cñ¾›AИn¯ÑLâNØuæÖ°Êkl*Žáüƒ‡Äixߌú²•ÊOá~¢îÏÇÃÌsœÜßàÛøAlÜôÆ@ú3$9SÝýyáf5qN #6]ŶŒmp³}þÍ,‘Z`’%Gg—{jz¦&ÇËØ;¥XM-05µÅÝ6ÿk&™9ñk´ÍR®A™I<“[ãnûüº5[O¬ÓbHÎÔ`¹2³JtÞ ëë{X;c“&-æ·ó1*®]Ô€Êã$')v'­ì y¶ûNÖ”ù¿~ŠËÁÏèYÕ ;×ÖLü%ìÅžÚ"I°iù ÃŒà›Sq(P{lÛlÆ0¶±Õ‹««=$Ø4ìƒïí}܈ fÛÏF¬Jâú_¸{ƒwªÑ»‘틽r1¡â»Ói´e›¾fñíŽL{·ù®X,n;eâˆc!×>¦ÇšèLM ÎŽõGt#qãÏ„D]áDj3Ú5í@“”c\¸ÆO›Sé>¢2UoUwÞÕ–ªmßJéXjòÙÐö8JÝòÕQê^§¤û~Þ\Ë_'¢°!L (J2|Ÿ¯á‹âò³yÝ=çKÇÄoY7?/<íÑ5¢,½±3-FY%US¥q¼t±M]×ßH†½4ÇJß>qIÚci¬ÁòüÃÒ·5oÿŒÏW|ô~®\Û¾‡ûe5t^”ö1ÍG³âÏËÜKyÆÕïüÙ7v:ÿ&cÛÒ* œ^SóvžÆŽ/ÎÐxz?*©:Ç‹8ŒœZÐÝå2û÷~Ïné; ì2Þ™[øaÿ~®¸t§©cñ›&‰}>!aù°ÕH?ü”–{ø49G 9%…eL¦øXEq푪AwÇÀ¢æûôáÖíÜËÀשj_×ÂÙ³e»Mße`qîx+ª--¢}+Íc©>n-ÛyÄ u|*«ˆ}qÚhA4¦ÛÀ²Cúe²lÄW Ž!-=‰ˆK»ùrÐxN¼v²ÄeÕ¦—$¾¿’3)¤Düͪq‹¹£jÑØ i$ÿÝO¦Tò7Y-úuNdÕØeüý8…”DZrìJ’Þ@-mÇŒJ;Ve¥q¼JºÍÒ¨¿™j¥qrû1îÆ¥“w›“ÛN ¯Õ©Ë•¥óÛ†ÿqíaéY 12BR̾7Sµïâ1éý/øã¿HR2— ^#œÞ˜FŸ'Køö§oXÛÉíTo­¨óÀÄÖodòã¤mX ìƒUezõ7cãøõd¶Á­D7MKñŸq•$…œ‹3(x‹Œ­8ç eõNgͨE»ŸHjôlŸ6‹¿Ðí10«Æ;ƒ,Øòél:×F&±¦VgöNÛÍïQµ8#:Eµ¥Eµo¥z,ÕÅ­e[“|›¥yuü‡Õã¿#¹ë@íÛhA´¢ã?5-¨=ãV·ºÌgÍÝqÚS³Ï:»|HCm¯ ƒ"®5´¢é—;ùÌáGº¹ÛâTy0'륆ŠíÈðáP;VÕµÃʨ4î䶦ù¢ß˜é¾¾¶8yôæ9üº°*ÕÓE¬š^£©ë㥋m–ʱ2§rï‘t¶=Ï÷ŸŒç“OÖrÁ® C{ûb¦Ñr%fiæ—À‰åÓùdÔD¾Úö”:ý{àSZ—lhCÕ¾³nÈm#YѹNRŽ»CÏ5 hªõ‰™Ã¢#?ñ`ãˆxLN@¡×¦uH©Ø›_ö¬€)¦Tè5ß8+Ú½áóbr¨SEÄV¬sÐ’ó~ç뚇ZÅG·žüb݉2t| Lñé;ŒêxòFŒ0±I'¼Íë2¬¯Åëœ+ª--ª}+¯c©e[cS“jghe[œÜßd£ã ¶/hªúRAtF(’Ú_-$‚ !n/>ËújÌ',úB&‘êºGSAA²©½zF&)|У´{AÕ•]V1äÒ§XJª`] %nM1FåëKÖ¬(ãHtC_Ž—&ŸÐÿørâyÿ*Ô´«§¡ÖQ^%bè\AAÐ91t.‚ ‚ ”‘h ‚ ‚ ¥B¥?]£ ‚ ‚ðê1×g ‚ ‚ ¥A ‚ By‹ÛK } RQÒ÷ B)Ñ8ÑÌ7åDÜ^%ž¤¥yÜTn» Î"rÕäÜû¾;^¶ÙWh\iÜÛ:†¶nÈ$RlÜ^cìÖ{¤é¼/ÍRÛ®PÈIRÈIR$r~vî=†ÓÀH8˺6 ÝBdÂ=¶¿É‚wæs9 ¿?ÎNÿÕÅÞa¥ÿ/|8å4‰ª M¼ÀÆSÞL>ö˜gÉáü9Ó‘­ƒ§ðwbå“Áƒ ýè»Ü”1>$&KN’¢dOƒÈŒ4¢é‚£ü³¶ à«cºÙî«FùK9)çø‰$SµâîCÞŸE&mzD&‘æÃEžÇv­Ù›»®r›QH{˜ø_̺L×# =ÔK3>çlÌ6LÞEşѶ¸Ïª/#ùê+ÚÉlYÄüo íÞÝû¸m\ŒçYRGVôDòû*Î%½…RWZÇMùû:v'­ ý<è˜Ú\Dñ§çðþZoFuv)<9J8ÍÌq¨¹ú)O¹ü]-›Æ?úp õT‘‰f‘ ò~ؘL·1Ͱ°iÇâÍ3éYÏ ™•'Íß„Òm¢Ó” vŸ´eÀøNxÛzóúøAØœÜEªo݆¯ÖN ¯ ¦Æ&H¥fX8ya[pŠù‚åËï°mñUZ,_€zΘé M–ö9ÊÁ Î\z@gÛ}¨J.•— š)l_½,ûPùÑw¹Ifîï@ñþhRÓ*rz¸$F “§‡f³$ú=æõ¯¨þ)z,õÖO ¯ã„L"ŭ愤f/ˆÛK m¦MíK};)2ã×ù#2þÁÔV±‘H±õzƒ¹ÇžRÈø—þKeëôÿQgݯÌ}·Þ¶æH-¨Òjs·-§MÞsåÄJµ*“9ŸüüíŠØÃ ©PŸ/ÿÞA MmÆ|Љû*ï²þ¦ÒhæSŽO_c)2YFüü€ôâÆ\Œã¢Ù1+Y5>/Ôå"*d<ØÆ˜ƒø`ë|bã ?×L©äjŽD‰‰D‚¹[L5ا¯(µ‰¦& g™ïØmÖ!õ,_\¨HäÒÊ¥„5@+ =ŠÛ±ø¹eoWê€cÜmžöIÈér·2s£þûA Ø::æE”Ÿz3¬°üµ^)¶ÞYp*¦ˆîrõLÿ׳Z̾ €•޶û2*8œX0¹T^OÐŒrbS¡÷ çž+†ØÃ­ñ¥ 'x×NŠLbGö“Øy7'Á*¬=4kÊ´Y5ÙÝÖ“Šm£æ”^\œ{”ÚŸO¢¬4k¤#±'xÛ®Àðhô¶žÌ¥7¶s‡ÍÏ3yðä~›'þÇžè>l¾“@bæ!ºXE°søT ÜKhr4WVVæ—‹ø/µ\kV|)!œxàC÷æŽEôîH°i5qNÛøü·Ç9ÉNá¿|Éé3`IAüë6—³1wù­O03‡o}¾“ƒøÇf2Gc¢¸²ÆŸCSr)¹ðÒò)xÜìzs2^‹ã’©é1+A5.£€‚¹È ‹/°¨ß <—}Ï@ïXnEf¾-ó:|º¹?WßòÃÕÜ‘šo_å½ÍS©m^ø[^u…žó…6žò«ÏW<åøÒÃ8@5³ë)’¹¹ªïloÀ’ïºãRœÛŽl»r@‘F\ü-ö|Ë?XÉ-åï[•åg‘™É“zK¸ÿ€#2Y9d ×KpEŠó*83õÞ2Âÿ,ñv_6š'R2QÞr÷iÁ¤Fù_CKÐr)Ÿ/†(7nµñÛvå@†œE*ÑQ3¿Îq>꽜µU¶ÀoÔ¯ÜH—“”~“Ån›Ø”5þQã©k&EfæÏ€µ·ÐÛœKÕ¬é ܪƸÛámïM» ð ÞGPRÎ{¬3uN_ª;š!Hþ]Ç‚Ù5¬!Þ–ŽÔèñ=wo_æáËÒÞæ»n±ÀuЦ•ðÅÏ]ÆÕ å?Ö|û”·gâlX5bÜØ¶xÙ{ÑzÜ8ªåÛM?¾mm©Òùmª%Þ"JÓ.Í‚Ç-v'­l´8.Ú³âÖ±8çEQ¹Hf{ÆŒâRÿŸ˜ÓÆ#y$!OÔ|@ÓCX7| Ö_ýMhB8'¿²fÍÐÕÜ6Ìf¬L¨LÿÔ~i=ù5ï×ÌÇÿcÕ™ªŒxˇ|½ÆŠx..ìAà7Ž|yd]ݳ_7u¦Š] ÁÙGDq“h[_œÔv9K0±ö¡Ý˜Ñø…à®ò(ªòM]¨êÓˆ4ÄÅÚ•†s‘ð´ÊŠÖ3¬à€±ÜNv(ñv_E†˜•§Ü$²`R£ü¯ºO}¤Ü‹Y!$ÍÊ1*¡«?F˜;U§û§©þà$wRѬ=LºÀ·Ó/Òrzö|y…®GrÿH®Ìüœ³*/n×gj®72²ÀÖRùëHA–¬._ßK~žødäMC½ÖÓ¢ -=CÙ{&&{âêÜëcwÒÊ®àÊlZNeœÃVæî~Däá¯Øãó)#k™ç-W^7ÿ[M07ÍyÍØ#EVÉ&ÊÖê¸hsÌŠ[G-Ï‹Âre‰çX½ñûF`/‘"³ d÷ã¼mWÈJÉ·8r·2ƒú7ÀÙÊ…úýã{ï!…^û)¨L4Õö2xÏÍù%ƒ°«¸Ùp oz(¼¬gœžH—Õ^,>±†ÞÞJ­¦…?Ý_‹eÓ’C„LJsxÉFâZöÀßBE9 §˜3u3—ž¤ O¸Ïñ•+¸éñ•òÖ-¤| º·Šfó¦ D%FrqÓz‚\šP±ÝÚ’ãó³CŠF–Ä‘ê²ì!ô’n÷UdÈ=X奨ÞaCÚŸ†Þ‹™+÷˜hsSFÂ]»ŒëîͨdŽíaa[¦²Åîcf:!)1”÷ÊZ±¬N`µ`–/;ÎÃØpŽ/ý–[Õ:ã¯âŠ«ìõkÓ§á}¶•ÿ¢SH =·|̉ø2ZwL+ñîì6œú.sv\âQb:Yé‰D£j”Ö´ýçwâÆŒ‰LŸDçÙÝÉË‘ϲlÙqÆ>ädQûQ×ÔmYqê¨Mêreùn.V¾a©•̼¨m“Ÿ~¾LtÒS®üü#7íëâYpTWȣр¶Ê/ù-¶­yH›±ípTÞJÂ_Ì›wޏÐÍ È™šH&y-Y€5-¾ZMÏÃð³­ÌȽYõeK¬àÅ9Àdµéæ}„‘Õl±·©Á°C5Y°},Õ¤E”Íæ-¢Þž^T²ö¢ã 7Œ# '[ø<6Å(@Á/Ì*w)ñv_6¿|5I& =á(+ê®Ñ4Úœ†Bù2‘B) ‘ÚÚÔfÔñº,üåãœvLM{(âNñåçwxsáPª8¸nsÖ š¨¸ÖLo™xóÞ ©ýG_ªÙWæÝõøêÇþxvg“±½7naг/hçd‹kãÏ k?œ†ÖeµáÜm G¾oAð¼®T·–a-u£ù‡çèüãJÚÚ\_‚MËOcó¿Xct}¥LRæGãÇŸÑо=~­Æœuý ߺ¦î¸h}ÌŠQGmÊP—‹h3çhÁuÍk1áûQH¾iI+Ú~cĨõ¨): %IRÈUþa¬ýÐP Åí%Ðg£Cõ{*Œ—í˲<”ù¹e€Š»Oôq_–d(\ßꢎ>î{Á€¥Ýgûrgâ¦5ÈI ä{Rc¯BÍgÊ(õÔ¶+žu-Ý2½$¾œ_TÜ}¢ûRc½·—@»ÞœÄž×Wâçe5.^†^…: y$Ø¥>‚ ‚ ‚a0)ëÞÙ)I³ ¿‡CÔC¿ˆzèQâ³”HIÖq»¬M=tq׿èÅ!—¡>dBA(% Eñº$ñØ4Až+Î4êê©›ˆ ¦¿æ‰L"¥âkÓ8õüAO™‘‡ ]¦/rcd6z#PäqPW½:ŠDnn™Ä›>ÖÈ$R'¾È¬¤û™ÉT+ï¸4•Áž1£¸Ô+›ÛØc”p‘'r–w\ÅaÛ•r ‹Ô§Aü꽜ÚÿN¦jyǦ•,2S#yRo—VV ìûô²„.ÿÍ¥–ŽJP•dæZ»v-@¡ÃèÊÌÍÍ ÝŽ®Ìž=[ãuE<ê‰xÔñh®ä‰fÎsB5bê æ!G)òˆ›DÛúâd àL»˜B–é S¥A?cÔ„ÚzèáqPÄsqaz­ñâ›+èšû@\C«L¬}h7f4~+7q7e2Õ¤RÄs¬Þx‰“°WêÈÚm×1ûLC©G>F˜;U§û§YñÓVî¤N¦ª!W¦.TõiD“ q±–à<`ó7ž µtp<Ô%™¹´I6¡ô¦>Òææe"õD<ê‰xŠV¶ýBþP6-9Dx|8‡—l$®eü-²—u-Võ2}¡#iègŒšPW};YÏ8=3.«½X|b ½½•¾ © §˜3u3—ž¤ O¸Ïñ•+¸éñ• Ī×õÈù£2ïß±;ie§4Ša(õ( #á.‡¿]Æu÷fT2ǰêaáO÷VÑlÞt¨ÄH.nZOK*ê š$™¹´FáÕ¢³y4e’œçüæJ‡“vRž©[CGèù×0ül£qh6žvµÌ¹[Óš_­¦gÏð³`wDË"ïäÌ+·LÖ{ãÒõ0²Yo¥øõ!¾ü뵂BCáõÈr‘kyÕÃØ•V@çPa3hÌÚÇ'éçf@õ°iÏ_+û1²Ú`®ÅKqo6€ÛÇRMš?V½¯G±?úWçŸìã±ð— ðx8uz}{QiBÒÊ]˜ùó8ÌŠ_€9sæÚ•å¾O!—Φ7Ò¸aœ£Ù*Ê3AõУøD=ô+>}| IDATQR/×R"E‚fC`¥Q(ù„íÊÓå-ó÷÷/Õ¡=åĸ°é`´‰GÝpaQõ(xÔŦñhslK;mc-Ïx ‹ÑÐâ)Œx2 ‚ r“'}x„eQ‰“¶‰•.–(•ç~KRÈË=MBŒ/›b%š…ý•§ÑÅ¢³5¿¨T¯×›­çñiºÞl=OÓõfëy|š®7[ÏãÓt½ÙzŸ¦ëÍ.ûr-rhþä ]×Êç1’Ê €¾'¹ûR_â,¯xTSú²OÊ›6Ÿ·—}ihêä$šUø¢ÆT­®ØSïäŸÇh¥h[ÞaI£ý©æx”óR®G™›%¬‡Þ|†^‚Ïù˜ýÓY¡˜§Ñº3>ýŒ¹_Î×MÁZ¶±ºüœË$R†®Uù¹&L˜PêS¬è}ë½+xô±WUßâÐôò—Ò¤¼}åóDÕ¿Êëé’Þ ‡†Äп§ÿ¡UýO4 aBŒ âÔ%CˆàÇ Yf‰æâ¯é.ÑÔ’®÷§‡‡³fiÿOppp±ËÔ‡Ä@YQñZ¼¥]ž¾$wê”eŒš$ÿe&e”æ+†8íµ ‚ðPîE)ªgG›uEW ÈùÑ?o´²OüÊûRM™RC)‚ (ˆ?=‡÷×z3ª³Ëó†4íK-$aÔîŇ²­SwÌê²1VNRê%¦Ä!“³¬ý¦.ާÿ®"î±ý½H¼3ŸË)@ÂYÖ°a¨ªe/å/@å©”ÿU·nYÄ£‹uE<¥Oö¶%9?BQTÝe^Ú4J4sfygÅ‚ ú ãÁ6Æ|Ä[§àOÞýÞ©¡œ `ðÀ†¸X»Ò඘dDñ0UŲáã©ibC57dVž4þI·‰NlÚ±xóLzÖS±ì%—û=#¾o 'öM~Ê gÁasà…aò²6WNìÊ{»<ˆ¡sA-(/°¨ß <—}Ï@ïXnEf<_hîM=‡›lØr‘§‰Q\Úq”„̇|æ&Ef÷.çSγpÙ™ìe[7páÞ-¢ÒE"—V.%¬ùêX½P`áË^R¯Ú± êzê’r$”}’©Ê{DZ$š‚ šÊŒ`ϘQ\êÿsÚØc$$ä‰Ò—YM>^? ɢרh]ƒ רhÿ&¿Å¥õ »ØüeÛìeçp17ÁH‘ÌÍUýxg{–|×åVYݲ—XyMSzúOY kª¼&ù/8"]ؿץW¤ÙAÐÄs¬Þx‰}#°—H‘Ù²ûáQ޶똳‚ö-g°7<…$Åv½•B‚G|Ì0wªA¿å idÓ‘q¹Ëê’¼²ß8òå‘tuWš6NÏÅ……,Akúš„¾ìD¢)‚ )Û®Pê!HŠÝI+»Öl=œ=…œèË›˜4æ5Ç÷£²2îrøÛe\woŒ}ð&&9w¥?µÎ‹Å'ÖÐÛ[i̬gœžH—Õ*– ‚ –¾^z¡¯q•6‘h ‚ èJÜ^%RdFVTh»„´!Iê‹­DŠ­MMÞ^pøksi÷úÒ†LÆì+Ä…nf@YÎuT¯±%" þbÞ¼sª— ‚ ½{Ö¹ ‚Á°íÊg]óÿ¿`¯ÅŒÉ…¿¿Ðe*¶ó )‹ëÆ´!âQOßâQGßã{‰MAA¡TˆDSAA( ‹»´A]зïz"õD"õD<ê‰x´—“hfð`C?ú.wfþŸy»®3f’ò LA0lú6g¡ˆG=z"žâÉN4åwضø*-–_e@=4Í1CnSµzféE§#†§!Ä"N]2„AÄ©K†£.ˆ›FAÈ•h¦ÞãÌ#+lí†W·³$zuàÓ­›™ÒÒAíEœ¡!FÑhBœ†#ˆ8uÉb§.BŒº ï=-2‰Tïc} ‹?sòÈ,2S#yRo —âpdB&+‡,ázšê7…†qøwSÿnJÈ ãR !NCˆDœºd1‚ˆS— !FÈŽSA™B¡(öä&š¦.TõiÄâbíJƒCˆ¹HxªêB}ªfѱ{:»§ëí_膧!Ä"N]2„AÄ©K†#dÇ)‚ ©#F¹Nv¢iáO÷VÑlÞt¨ÄH.nZOK*šg¯$“Hó~”ékcY!Äi1‚ˆS— !Fqê’!Ä(‚ ‰àà`Ö®][d²™3NbE³y‹¨·§•¬½è¸BÆÄ ã0Ë^š¤çý(3”¿~ !NCˆDœºd1‚ˆS— !FA„¢ãïïPd²™7¦±S[f cVéÇ'‚ ‚  å$3Wî|žkÖ¬yaý¼D33ò0³z½Ï’ÓQ8µ˜Ä»æÒÞY?/XA^aq{ t}»á“{E—E-F/úˆš@V7v,eñö[H=\03®Ìc²—i*3ÛG¶±mïA¶lŒgуCù`¢‹2ÁÀ¨J2s–læ$š üýépvú¯&h_]®LlˇSÞàâ­°*ÕAGRC œºŸ“y/x²}Awº˜ 97.üËÄ}×9›…•SFölÇŒê–JÆ*jû{¹|¼7Ç´¦ÿ‚Ø?_¶~joîæ­\`y‰ë£T—\Š4Μ8ÎØÃw¸ž\È:‚ð2³¨ÅèkU<½NÎíå½é³¯+Ûvn¢¶u1Ÿ>’EhF#>œéÊéÍËK§ A0 ê’Ì\ª’Íìk4S‚Ø}Ò–ã;ámëÍëãasrA)¥° 蜅'ÛŒ"iÉ(’–(%]ò(6ÞµfòèÁ<[øv2gëϧù»é»T2ïJÝ6 æ/ØIeU=­é¿@Îü%ræ/)a’ `îÃ%£HZЙV/”—ѳ‡è{Ò˜1£> fqú « õßtðÁNbG@»OÙû ç‚”ÿX·üÕ\÷ÒÃÞ Ÿ&±ãž6öæ•éй.ŽRI¤®Ê¡I’™«à5›Ù:éQÜŽu ¹[ö„Ô-ǸUkðùÛMéí˜Óê+E›¸1{|7êèòìO;Á–©RXb_u(ÞžG-ÇRêbLãLœ ¶—÷áõýí¼ùt@G¦T6Wû$/Axi˜ùÒw’oÎ\è:m2KêüÆÍäÁx[áìÖŒ÷&½AeG#|F}„ï÷{N~/k•_e‚ž˜5«ø·‰Ïž=;wÂvgªØÅ‘=ô ¸I´­/N¦:‰QJŸ¹¾EÂ’‰ž×‡ùá|ôãB2•–/EÜ—ØÓ–o½Ê-]MihÞ•!ßÈ™·$•9óþæ ãìþq9OKmÊD™)<ñjÉ¥/ßçH+·]ázFi•'zF¡@ñü?$Ý>Ï3ï¦T0dµx·CÿyJz‰·zxšé°ü²(C^Ù}:þt-–K1pq]®,ÙH\ËïñÃæ‚Á‘`.s {‡z¬8‹;éõ©ª4”ebfM»×já÷W0wÓëSM§Ã\F˜ÈªS£ÃDþ>¿•èôÉ8•Æ0š±%U\iÒÐ3pnX€ÃA„g@-1F!¼Rn|ÏìÅgˆÉP@V*Ñ1ŽLÞ<?)€í}Í•†3àKRžZ2fãç9Ë4§ˆ?ÇŠ?r+þ×b¯±úãQ´­Á°/FSÛR7e‚!HJv–‰lNÎ'ÃØÖ ?[Àxçu\ç¨xÇì•'¥.#-ž£'®pݦ•L´GÌ9œ@·Ö¾Ô¦pú¯«Ü´ñÉ^¦cYiw¹}b6]q(­S{ºû¦ðõùHZ7µ&ìü ‚¬Ü©(’LáaQc_­VèrcÇVLÚÚªDeHlñÑÒF,ÿ±tÊC0|øðb½o„ øûûc’4Kéi? ‹~£L"EÌê.è|ÓãîãÇÂAu³{,œèfƒ‘_áZjö²ƒêh×›™oz#¸;U T¦ã°5´©¯4½‘ŸtôqÉz3 L×trê*žOadJ³Î-¨·a?•v'#u¬ÄÌu‰¦ ‚ cźN388˜痧¹tgîoXÒB†Óé¬í9‹NQ /¼Ñ²Àc(…—˜Ú¹)Ó¹yñ,“ö]ãø³LìÜ}ùôí6Œ®hV>7¤ä\ƒ©’DJ½ø·E‡l?{z£ŽÝÓó^ºwû[7¼KÅ÷fÈ.ÔÕ0–y1kôûâo>AA¯™$+ä@§×fÓG¹X³.W~ü–!]v©œ°=Y"‘l¾:,<Ù>SÅiOXwSÊÐ!øÅIÁ¥¿óÖOçiñi ê¿„7‘8²ãǧçõh*ûmÛ&N*ó˜AAße¶åNØþ{'¼m¥¸Ž„M÷]¥´¢¡¸!HPÅÜ‹Åý½òþÛ¼qþÇï ¼„‰fëöŸ OüLef¯w^|¶« ‚ ¹OÊ™°Ý/ß„í·³'l^m9sSÊÆ¯¥ÆªÓìŒV1g"K§.æãG2œÞcþ¬¿8¼ãv¾×ï¸Í¼™鬌àûùnIsæ|êÀ… ¾±?oYxØyÞ{ÿg*Ui­“²~q™3[Bó½vfK(»G\ÖÉöA¡¬‰ù…Â57%€"ƒ›§ñÎe–ô­ŒK>¦¦q-7Þ?z,/Ù<¼ã6ï=F“Ún:Ù~Ðõ}ü´®áaç‘§%’pŽŸÖõÈK6[¶›¨³$Àµ• ÉK6Ïl …á1¸µ²ÓY‚ ‚P–²‡Î•'lw”Š Û_q{1·ë­ô—FkÒb“i[pYöëæ¶*æ¦Tȹxô½þ¶â›ZÓÕ¦l†Ø±O6ï=Ƹ‘,¸Î†vm騧ŠN¶ôà¼B_÷«ÞY'e(kÚχ3ÃcØs&—2a­Mûùè¼,A0hq{ t}»á“;w¥E-F/úˆšò½ºÇøÝžT’‚"ñ;÷:òSø.:ÚhQFf·lcÛÞƒlÙÏ¢‡èb«Aùâr3AȧX¶‡†r£ôèzøwýÏpëÖÅáßË; Í¨ÜŸÉÆ´µáκcDXæ¼vOþr)¼è0x<í¿þ„º– ží}‹“ɨ¯í£!Ó£Íhć3]9½y¹æå ‚OÎÌ{Ö´øj5={~€Ÿm4ÍÆóî–/ÜqžË§j>U³J% Ã¿›æ»áB_-šó“gM+ï0ŠtøwS®xqAÊ4ÌzÈÓG++ì/ð¤ÿpËgÁ©¥ün¶æzºF“õè,aYðch&Iÿ;š˜1©¹ U-ËadÁgM¨Uzƒ «Ƽ:ƒçÎÁþÍ4qåèÌ^|8¨u Æ[ùÁñgù%´ #šë¸ÛQÓòA@£D’Ò¼™"é|IXÔâ·åËƉT:¸‘vëŽóô“Ž<ÓaBPáf ŽyI¦\‘ÉÍŒ(vÔ–R+]ÁáØUܹ¿”ÌÚ1δÀ"ÍÛT;¼“ìpvÁJn‰Uº&Y/žªQQ5ék—Tf™‚ýzÆ@lº-.”<ÑÌ̬@š<S“ =ÃÆ¦±qn(>%Ú®e†%––¸¦¸æ{ÝîbCV¼ÉãJWˆ4äBµ?ùßôm˜f˜ášîD•§¾´9Û–®?wá‰ç‚jáQ¢XŠÅØœ™-=³“ʳ‰ª—  <,’ù)–øŠ$SÐ%3_úNòÍù ]§MfI߸™<o¥ë0ÎíàÑQÇRåVJ½|A4L4…—™„L+wî¼ÞºÿžÃ6]w‰¦qŠ1ɲ%À‚¿BbÂ]×{(Œí°R¸áboI§ì«-áÁ©˜fiw™³óµ^“Ú?ÐI’™+3³™™hÓf5GŽŽÓÙ¶ Š­P%¾ UâŸßÐoÏ#ËG„9„± ×¤÷IÇï±?­.¶¤ÅÞæ<õ‰æŽÿ2L3òmÏ8- ·+W±Šˆ Ñ݈:µÉ”–ኙü¡ q€ºþž^q  ‰„ìÑpI·ÏóÌ»)ò 0$pù·§tþØϺ¦Qù‚ €H4À(õ)ÞÇŽáh[›‡=HðMĺf|Þò„›6$‡[aÙíQ¡ÛÆJ‘?‘ó0%œûF÷ ± !È#§fæ4 ËÂÉ´>u¨ƒc¦&Æ& …ž.çrÛFdZ¶""kkYTÕ Ù¤Û`gƒœ?‰¦‰„[†s°ÍAÖu^‡{´;í/´Ç'ɇ$¯ì!u»{¡´øúk’\\‰óöÂýÒeênØÈéI‰­äS&q§$$rÖÈ’Oee;ðòK¹ñ=³Ÿ!&CY©DÇ82yóXü”ÿŽJ¼Âþ„îŒò-ÞMRŠøs¬˜ñ#·âïq-ö«?ÅAÛ ûb4UïiP¾ €H4_])ÿÑkÒZ²9IªÔ„SCÚó4‘¦?úâ‘:.@Ö{ò&Ë9Ù±÷Ì%˜G™# ·$+BAñM®8]álµ³¤ù¤Q5®*>Y>´´hÅ[&ocmiÌ{¿}ÉÙÎ5~>¿eÀ¿ÿbõìüýð(¯}` ¬Ò­ðóÇ?Î Y>äRƒKì’íÂ$Ý„GD1áØ.®÷}›Ð6­òÞçsâ$Í¿YÌÁÅ_—~Ϧ"‹kR±qwÆSÌÖ+è˜Ea|µ~˜ú•¬^cÁ¦×Š]†Ä¦-mÀò ,Ô¤|A‘h¾º,jñÛʧì°v‹çÌwhºa{Ú<¤ÉQ/î7‹$z„Õ³g:„ ÓWlJ“ Á3Ù Ïd/šÆ4#Æ4štÇû´ù רã´;cLýê 1³1#´u+|ŽÃíÊU6jXªqeÉSù_¼ |M—g ‚ ¼ºD¢)¼@Z=ž=-Âé QNq\÷ø‹ãǹæp g‰3Õ$~*ñQTÂØªè4â©§'?O›ŠwP0v‘‘<ðó㿟H2KCº##bêñÙ #¶´mȩ蓬IZ‡m|]zZ½I½Š±zü¸”£PðôiáVV4(ÃG’ ‚ úG$šBž,œŽW~Õ‚À¸{ žñ-w¯à%÷¥±Uz(zb¥°…öÛÎ05å^­šºZxA¢[|Îo¤fŨY±=ÓãØý?Ö¥.äLí4êf´£yF6&Åüø˜ÂèÆßÉ7Í‘"ƒS3©ák†¶sd ‚ /‘h¾b|®]§ñþ8DDãæÆÙ΄֬ÁÍdÛB°4ºB\ãËD4ô ‰e]ºÝxvëësæý[X)Ý $诨º©ñãH|Nœ$´u+ÜLm™âö6^'œ ¾ö3{±1r Uäoò®}ªÛjù̼|S© 1¥wCÝ\N½ÉƸíÌOÞ‡uD'ºXµ£«5V&âÎAAw4J4Å$í*(‚X?^ÊݼZÓÁarçQS<ãþ‰Ñü~xO’U,/÷=ÊÍS+ø®5|× ª<=ÃãÁTW@À‹ï³®/’LëãÃÁÅ_ãzõ*Öó¤v-žÔ~>f]óêšÏ&8=ˆŸ¤¿°#ã ¿ÞìBcisÚ»Yáo+>ó‚ Bɉ'•„EkúÏT•(¥´«"ùÅí%Ðuôí†OîW’E-F/úˆš<þc“¾»ÌÙˆèGéÔ·”éoºk7„§HäÆOÓ™±ñ.R{ˆu¦ÛÂ%Œl`ƒ4ç‚`0ÄÐyiȼÕãWñé}•úžzÓ(Ÿ¹ázÿ>F pL‚iÀ7 žøˆëé^u~¦þ|å°ã©ÇøÕxžÔ"8¦+;Ï%PßÁœV Ýr/®ñ×&™<ùטšËݹöQißÁ.…°¨ÅèkéRð1æI3ýÃC4;qš1•MH¿³”Ö­§Ò>h-­´Ø~òu¶íI罟~£·— Éç?£ù[3hxm)´¼¬Y^e€’H;Á–©R>oÇ׫&ñ_tjöëé÷¸g…éånÌ/eƜνSœ›µuêlçÀ¼ß}£àŽsöïÿvî\N úD‚„¶æíXì°/s[‚æòn*Y™²Áú ó{Ü¢ærwl6ÏK2•{8¡L¥^ã›>ØIìh÷){䌼I½i\%†Ã{.Ê?¿&Þ¿)žÚNµ%kÂç;WÒÛ+»?ÆÔÖsy<©Yº­† ¼ìDfqIüòÈ"#)ˆ ÃÙõãrÜÇOƉ,²2"IôÚÄø>ˆ=3 Û–Pý“¹¸•ã­Yƒ½ޤñø< çJ5[ÒÚ¼ÅýÕË/(Aï˜KÌé'@3³¬NX‰‹õf¸#¢Š »£3pW.µI¦P~Ì«3xîìßìA×XŽÎìŇƒªQ÷Ð`¼M+1ôç¯9S³•ƽØpu(•K0m¯"á"+F®Ç{úšÈtV Ax%ˆÍ3ÂDV&â{’ètÀØg‡F4lØ+3W<Á%ù"±åkv²ùËäID6y“CêZ£Fy‡$è©Ê&•ùÂî+*Wä“g“¸ÿà=N¹Üèu:}JL¸/”3_úNN‡¬ªÑuÚdªü÷;7“ôÛ¬ê3‘ØYÿp/î'g%1½ï nˋܪJ0µÃÎô(ÕDM IDATþ•Ã}w)‚vD¢©Yiw 9±Œ›f8˜¦þT÷æâù $¥Eòðüz¢¬š`¯GýÇŽ8ò”§å† çL$&¼%{›frÈh;³çÌE1%Š' i°Ü“'ÿŠL å@¡PºIAÒíó<ónJs@þˆË¡ö´ ¬‹+µ;·ÃáÁ§k]I××1¤Ë2,çeË€Æ6ù€ã º¬ˆ ¼üJ”ú„Ü0¦juý>+•8óMo$ÅÆg]}Œ“1€;/ÂsC/ìŽÀر ŽÃEÍÞ.ë}é„S±M;›æÄÆÿ] é–Ÿ_O‚ƒw•wjUñíÊí;{Ë;Œ"™ÕÂãªcð›× fÅÎ`ü¤‰È&ÕÁëwÒ›D•wˆ€a´G†£!H¹ñ=³Ÿ!&CY©DÇ82yóXü¤€´9óV¿Á¸¡=ø×Ê„Gé¼¾z%Í´òN<Îè–ã¸Ðô=lvÌaüÖ{¼šAq¦ h¥D‰fhˆ‘A4š¥§ÄŸ!K ‹1’µ¥ãè0:j¸¹²Þ—N '¢¢µ~Ÿu}ƒH4}+wÒûD³bņ‘hJüpø`ÆÇLà@Ê>fÄOcììé<å "/Z\¿ü§82„öÈb45†ñÕúa…,5Á½Ë\~éRÂB¬Ú²!&9ßKË,á6áT¬¡óÐ#ÿž}}ÖáßM ¹¡ŸÃg†gyÅh‰%É$±f6ëTð@Ï1ØÙ4+µØJ·òt\ @çÀÕøùõ(çˆ^T±bÚ·[ @ûvKñõíZΩf"ñÇܸæÆ}01ª‰ -º0Îf<˲¾eëÔm¸®tÆôIù]">çº"®¦A·4jUdiÞ€OÕ,:vϾà¥c÷t½ý Ýâ,ÏŽ<•h6|Ÿp°‡+{¸‚ØøJ3´b»s÷ì?0€ýF¼»œ#zÑýûräè8ŽÇ=íÕÌP‘š¹€ÔÌdd]Ë[`Z™v³Ùfû3ËÆ.Çu‘ ’´ò™1V|ÎuǧªA·4J4“ò¼eúÚX¤Ë8ƒoìç»%͉‹û‚ï–4'øÆ~l·<öeq®Ó4„as@ï‡Íƒ6ÈÈúOåëƞ̵›Ï¿ÎðEŸ/pZëPÆ‘ågí‘!Ä(‚ K%'1”¿~ugÐõ}ü´®áaçQ(䄇ç§u=t’l–Ǿt‰h´»N3>áb)E£[wî,ïŠtÿþŸå‚F2Á….³5²e†ÝlÂüÂøºæ×XÐæÑ+ºeí‘!Ä(‚ Kâ‚-=8O«×õ£Â‰h ‡Î¡0f3&ÛM!¼F8«$+‰™A„lÙ‰fÜ^•®Ã”I:òG\9G¦‡¢"U÷ìD> *ãHt#{.Míï<„‚Ì$fLrþ„ðY-¦‘éxž=‡ßž½xž;±¼˜³e ‚ íù­¢v­Ùz˜.¶åžsqõ'<켊×Ê!š’sR8ñÔH?æ@ Ÿ™ÄŒ ^“Xž0—þÁ¤[•ˆ«à…û¥ËÔݰ‘Ó“&[ɧ¼Ã^q{ t}»á“ÛnQ‹Ñ‹>¢¦EÏþúš±Ó‘doN µµr]½´’UfÄ~fÙÀc)ñ Zñ9ÜôsÆAÐWzô¬ý×®Ót~Z÷ât9íߘQÑüŸ½ûŽkêz8þIBHØa)SP'®*îÙ:«U»¬ÖUmëhkÕ;Ô¶¿.G‡£Cmë¨U¿Îª­V«ÖÖmëBp‹"²gBBr€ˆŠ ІÀy¿^¼„{oÎy‚Éåɹç>çþ¹áFY˜1£@œ<…û§1Âúi´¥ÂäÓ‰ˆN­úk­fÎbˬ˜UâÒºP0fÎ÷·Žèÿ壡¿¶n“ë«ÈÚ5ž®/,%|ã0üËòOJe˘×8Öw'k{“¸øqºŽÙÌ?«zâf ‚`“®ÏÑÌú‹g]Uhe®Ôë<‘Õç V «bª]·Ï\‡_@sd2~Íy~ÔzBúY;´{¢@N¤‘fíP„JÂçèQÎ^¼æ÷Kk,!êpAI¤˜öíÈõÐásô˜•#* C$3»á*s%¬Ó[lˆ½6=CB’®-P)Cé¦Ã°¿pô²È=ÁÚCôjçÞí{¡;´†emGª¸‚DÓ¥7¿çÉ’ ¤$íáÿíd\ÿٜӪnQ»n^¿—ɼ<~7µÃº[;¤ûâ!y–º–¦ ÜcB"x9zñ†Ý[Ìôú‚ƒYÈ Ä1>ÞÊ •‚}]†8w 6åŸÖÝÈËC–›84å…OrâÕg6b,o}q€L™вŽBæg’˜£ÁÓ©àjÂɇœ²òËýÙB¥vÓ…9öuéóÖæ,^Æ9Ã$j‰«\•šº2—8ªxddÚù±V)£ƒáÒµmÞl·såªL†LÒS'?ŽVù¦2N°àqr “÷Zˆl_¸)ï<ã¾ÛH­â‡)k2wDNÝáý’!óa¥LFK<5ж*ˆGǹcáÿ‚ž–+—)ÆŠ#ÛLJjÿ Ð?ˆ6Iù*k&³ÔŸârñ"‰ êß¹C Ýßþ]ø²â“>ô²¿¶ÓÌ…ÿþaøº(dI(œ¼Ú·+Ó›8£~pOI¨ˆÔ!<91¤ð/zOžÄÖ;gºïðs‰ŒÍϱéD[j:”±;g¼µ¹$e™Á]A~V"z­7Nb™ ”É-o™ü¬ólÿòkNTëMÂüµ„ʧ¨Ä‘t÷c+&F¹'Û&ê›å ZÈ4°sDg:G³ƒÂ›J/Ìqø–á¹:$dd”#ÛLx]Û¨fö+¯þ`¦Úþ_Þ€K·}›HѱE–O#éÆŠbY2/6’Oké"µ-沺T0 ¾h1Aí"¦};†yvæÔ•SÌ;=•!ÉF6¼söAüþÅè‚„óƒ£7îË‹çý5©ÿôsüfORôz¬ØK¿zÑAdšU‹$!Éd…ïw‰œ³‡HóoI€ý‡YÒ÷òå{Gé8嫲ÍÏÐÔã‰fÉ|÷÷UFzquç’›Ž¦ž¦|ž‚ To½Œ twí_8Š ¢ZÄ`>_ù¡…8‹¯$’ÎÊE‡Ž#\²v÷Ì"sb—REc"r¥Eå°%3Î’…<(úc¤À„}’LyöýÎß¶&÷îë‰fqùÉ´ŠÎçX·jèo#Nl—)©gIA!ó(–Ó«8%SQ]J$L² ³ñ$À¬V³{ÒZ͘EÐŽdøó÷å«<Þë =Gwdìýܤ°§†“‚tYÁÿ© °wvÅ]ÜÇVåè£0uÖ>Ró%°HIÕ1ié+ÔVúcÌ™4—™$g¹ñáætó,{Ñh™;Íý’Ýc^eÔvrÒ2c^7q# ”QA¢éÒ›ß%1!³*º—e(+{ލÜq4ÅR[²ã <‹öhbÊ`£ª&?ªIOsã%t¥lYfJ¢ÇöHÒ[÷`·c6}ô%/hŒpEm¾ñ,y¸DBÍ!™3ŽR"uQ°OÞE™¦‚x,¨¨Æ|¹zšK‰4—,Øòß²ô  ¶Ìš÷±c8]‰'±a…VcRö{ø'µ¡ç=–³óà­AuèñÅR¼Í€Â›)¯÷¡¡¸”Yå8ÔÉg GÞfgCÆÎù®\úQøôàÿV÷(—¶¡ª*úg¾º•wÛø¢•©l3™?“Äš¼U‡äAŠÌçhÚqAY$sXÌÈdv¤ß0$¨"JéŽ*?†ÁúÓ<‘oá„Ò•ŒÒdpR.áÿì" V'ÖVW#Y xëKX:PÒzô"YõÃH,qTMÁy™'W¹Jfd(H»!…”!¡@/%3Èr‘8*sµù³f•Š+ÍšqêñÞ\iÖ _G_žÑ e…ñÎçÜãm»æ 毌ĩ÷b>Æ®Þ*¾[ÉYqªA¨° DzØóÖ(V×ù–“›Â9:¡#/¿Ùÿ~h‡õV. ŽrÉ-úÞ&È8agÏj² Xæ ö˨¡ÏÑÿѧ˜º)±:¥ ÜÊN;­°€²°¼µ]à™GñžVÂ#¦BÌ9g¢ÜõЭë+þPjxø¶®·v¥à;öŽûUæs¬JÝD€çÌWYyl;uŸà)ç,~NÙõ>(K2õãWsXþ}œHŠßÌ¥|ö>} ¸Ë$Ý¿-Õs¹øÓ¿(ë¸Q½åõE¯ì;)*ÀáMKÕÆxÚDÓpŒ&Û?Œ“OO!±YÏ¢ý;}eõKÃ^1à¡ôs?êÄL %ç'ZLdÌèí }âqä…%ªöïëNÊr>²æ¹ËΛåÇÈÙÙý°©7ËW/¡¡S±‰ÒR*[ƼƱ¾;Y;Ø›ÄÅÓuÌfþYÕ󞊭çšÅç‰]w0–êñ÷+î\87Þ¦˜uÑ«×|ê7Žå­ÄW™iú’ï'üÄz÷M¼2¾.‘R©ý•™ô銻¾v¸ß)ÓùÈZç.[9o–ýqæÏ>GhÄúºMÆÒt83–Ï`@ 5äž`í!zÍòFïö½Ð½·†¹=i£-c?¹‡ùrÒQúÎÄÒ5ÅÞ»*©™Êo¿æ©ç=9¹f+™uzá+–B„[ˆ‚ív2;<Ôž\Ñ_¬mø†ZôõŽ×î±ÉÏ`Ù¡<6ªõCpk÷RÒUFÏÝËŸF.¾¡ü0²§Æwc~¨™G7üÊñ–³Æý½ÉýÒÍkzþœ|Ík…IfïûnÛùó%nwºÍöÛ íæDÂF|ÞWqxz>ï$™¡Ýœî;Æ’IÄ:Nç%ÇØu-×9³É±> оjp±.7ÔÕûQÜÜ´¬ýt O|çÁêIçpTdÖï]™ï¿î‹1¨Kñ\ñym‰gXòè~&Œø…Ëf ?“Ä žNWÝNÞ8ä$UæëÚz"gŽã·6ïÑïæ“˜²/ü2÷ZSCJ÷O™²è‚«Ò ² ”’(Ø.  6÷"jÀ¹%WöüLöÍy‘Ê‘•ékñn;“ ïÕE=íI–ì‰à×5}hwÈ¥…´¤8>ÞžJíˆú[dX®×£ù{7Ê‹1˜‚‚ÈiÛ¦Ô1ZR,˜æQó¨=INFê~'cVûóü}>ÎENáWîMÿ~É 7‚¬ðC”Ü2KÑ÷®Ïç {Ò@*LÊœ `g9ŠyQ(Zƒ§ƒN8épÎuÆ-Ë ï4o|R}ðIõÁ/Éï´‚„·vañûÆ‹YýxÙŠ®‹uœxÞ@DoÏ»?X¨ºŽxúD0pb7‚ur‚F#dÁ¯œÊŠŸ3ÞÚ\’²Ìà® ?+½Ö§²~àÍü‹)ŸE"=6‡×Ç]âxúqæN˜ÇŒ ´ÔžcÞ€ ¤OÙË…!~ÄþôŸœCã¯QóWo¡*Ûü5Äê/ƒúà gqÜïDæ‚ö˜œ”äë‰bàÜ Ã@y~îö¨èöHs¾¬ëP´þ‹:*Šê/Áäï1´Ú»ðüècâ^]m«ÝÒ9&ã~#†ý¹Äžˆå’ùW›^å´[ ‰½ã¸P'Ž4K<2çTÜÕn¸©ÜpU¹áVø½›ª:®*WÜÕÜqR:¡±Ó ”ü%p´Ób'·+üÞ ¯~O£:vW=È “³,{ÈmÜ€”5ÿc÷ß}dåg‘•ŸEª)•ļö’Ï%ýEò,y„hjâ‘HÓÿ5Ä¡V(]–…ð¾ö$-ú¸Ñ/¬:ʲ)¿ sN"ïΡo—Z(÷ž¹Í E[3·æøäq9n;¹>ý©±BIä#©bDS¸=mží’ÃÏ{“yº¯ú˜Ã¤ú4.¸t­¬ÇÍ’ùî頻ôâêÎ $7M½².|æÜÕÙéßgl fã׌™9‘–.@Ύĸѱ{C¼œ•¸õè„ûô£Ä›‰¦ ܤà¯laÁöV7l_TP°]$šU‚¿ÆŸØÜKàê 9û¨^?pÀÔê’?›DV€òSQfº¢÷,¸>$U§šü j9䨼Y<¾w‰íËõzª¿4†”×^!³ßEÛ׬¥ùô§Èè¿Ãyˆ>Eä…cœÈ9Á)ŸS\ñ¾ÂÕˆ«x´ó$Ð5M²'þ¿{Ó {[Fwh@æ_|ÇkÑ¡¡ñã÷wùÜîÕ7q{vÐ Ûœ `|í-\T.x)¼ñզ߱Œü vì8Jú–‹ìzj7ç4ßòU3‰æ‡š³ûß0–Gòr“Út ö*Zõ\n0à¼wö—b1Ñ‹ú$S?îŒÃ+¢!}´y|£—¨Wü™–mÚúHXp2§Ñde¯réB*µ‚¿ÞÅ ¶ëT¢`{  àRîÅb[äHîµÈ=’¼ÕëP潈ÑΓs:ª$¸)‘%EᄹW2ΜdS]5s¶¾Ã9ÃäË.˜@EMdµ ®Ið“ï਼ó 3]fß²­qïûN2¯1<Úã]î«&o»Ý𳯽//wÄË "+?‹©;Xtq%¯œY̸¿òyl؋螼~·»nÃ&‚'¾AÔê•·ÙÌÏbÅ™,þ=s€Vÿ\ß¼}ñQÞn~á )¦d"•®dJɸÜ׳+m>ô`TÒK|yj&ícÛR¯µ21š)‚`ó R„‚í/~ñÏÏ çè‹Èh»@l¯Bü5þ\Ö_¾a›,çš…?¢Zµ-•À¾5Énž‰÷‚¿8ÐÜå·+¨ñÈLŒö7¶eÈ7s4!…-—÷±/e/—ŒG‘‚ΦQ¢U=θ€Wx"¨®ê‚ëLî½G"ëÚ Ã]’ÌÊÀÉΉÞ^ÓÛëq·/ãÏèîóÁÿœâÆc©åìCJïžx¬ÿç½ûHïо䆔:¾QlŸ)…—–_æÙgQól,v¨E¦"NéA𔉓 ¨`#š×´ólÏÌSÓ9Ôû_Úîm‡]O1ÙMÁÖŽE9Ñú³oyâ‰aÔvIÁ=b0p«YEÄîV"ÑA¨Š.z*¼»ññžx>.á ­Lœð«??båÁ¸\ÍxÁÿ«Ö×Âäõš+ßÎ¥ÚËcq^µcíPT'OaÏž7ÖQËþ¦aÑ*Ààóßÿ¤­ÆO-?$!69 _1`G_>OÕñÈ+¥oL©ãÛÁ:âà†9š¶äñê}˜©ùœÄ#ñbípA„û$¿û!#‹¾„Ê+@ȥܒGÑê÷p'·žDøZ–uŒáïÚ¿qÎñLÑ®n:ï5Á¾®ûù¥õ<ðä-I&@^X7o"}øPLÕ«‘>b7o"#¨Ñƒ~jRfDKÔññè6lÀÇ߇žþ„YñÝù¤ù%^¾¼Ž´S©VŽòáÒ(4ôôíÅÚºk±\~0« ‚ ¸ë\(â§ñç²>ö–íæÿòÉ“E‚&š™ï¯å_ׄ›òF³±´öhƒJ^úoÉÞžì.Ë3l›e±·çܬO˜„ný¯èkÕDsæ,õ›þ#_ÅüÉsžáÍoÑþ™NT¸»x§žååV£xyÏXÔOU½‘nA„ÊD$šÚí;hôÇ&Žª 8¼…”×^!»YRg$³*ù¬{a=†jFÖy†Á'Æôº éÓ¨z‹i÷#·v(Q«Wâ¼w?ö/’Ø¢™-°¨ÕŒ «GûøŽLV¾Éßý˸€×8~.mS»–³<½9‹ìÿòi2Ùí=ÙŽ0纸©Ü8p|mé`íp„ŠÊ’AÔª¯˜µâ4ªê^¨ÁŒød,õUYœýs9Ë7láçE™Lýƒ^÷ó!MÊæà;méð¹+R¶^oëvý‹›há"ÑÐþ¹ßá# ­ ëû£ÇpûŸõèÆÒvû MkÂ0Ý<Ù£2d ‘¤Š:‡åÄ¢V“~››¡êWkÀÏ_˜êü/ÅŽä“C3ЮÕrš,B»9qzsVáZê9謇o/6ÿû;m¥P×h¬ÍÈÙÙý°©7ËW/¡¡S±‰!‰˜üæ¼ü¾7»—ξïžrÍâóÄ.„;)]ÿ‚ Ü Ts4…ÊM÷åׄ$ÁIx³„~ÙžXÙe ‹‡|ÏS½:$™…ê÷v§ÍG¾Ö ¹Jq±saVó¯hÖì^œ0œ«þq¿åÀ‰)é…I¦ñ†ÎÊ Gžl¯¿ÓI1/\(þ8ógŸ#Ô{}Ý j1ŽUò öÙÓ¥G8:U9$¹‡ùrÒQúŽo…sñæîÔ¿ 7‰¦€ê\Á]æ©iz%ù,2 ã’Jà IDAT °rt”þy)`4Ckàå·G±·ÓQê­q"²_V¥K2|üð5û±çßÝÖE¨ˆŒ D]ŠçŠÏëlK<Ã’G÷3aÄ/\6—g'z"gŽã·6ïÑÏ曆¥A¨D¢)`¬Y¥ν_¯¿40ÖªeåÈ„›=î݇¡™ù౉Ì{þê­qäôæ,k‡õ@ôpìÁæŒß­†P)ñô‰`üÄnëªÓzô8B¢7q*·ûÈü‹)ŸE"EÏáõq³9ž~œ¹f°/]z8ý B%!M”×®×kô,–³¤ŒÕ ÑwrzsÝ'w`¤b2ëÚÀäç·áó¾ªR&›]ÂÚ²[· ·oà¸u2ƒÁÚ! …¶ÏvÉaËÞd,€>æ0©>ñ½ÍŠ­÷Ĺ«³ÓÙ³zßÌG׌™9‘–®²‡Ó¿ T÷•hž‰R”W”-ÄiÍs:u$îÇÂaÑj0„7"î§…ä”°üáÕ+¶±þôå ]«Ì”êe~Löá|>0òT—®¼Só=N6û‚÷î%ó_Óˆ°@XXÿÖöí¨£¢h?äe4ùyœŠ9ëO‹ z¬ꨨÛ>Æ^›¶p.² 2w:MŸAý•£

}ç5k©6z7oB*a%)[xmZû}^™(t호¬„j ÎÍ÷Usfÿxÿý¨‚Ÿfê§™º°”ý ‚pƒ{Z(挜­ë•l]¯¬°ŸÒm!N[ˆ þˆG úpp…=JˆÕrèooýíM\LÅÙÌJ÷&î\8qçÂÉL­vÏmõ÷y’Ž^-Y’ò1W²õå"5kv§W¯ùôê5Ÿ:uú•kû·£Ùõ&__2û=A{ßümÚ@f¿'ȯV íßÿÜp¼-¼6må}sF̦¡|ÝÓY%¨–…®} .Õuícª°ŸÐm!N[ˆ@çNXãó„5>_aGŽ|üshÖ6€fmñ ªx£šN®‰ø†Ôäó 9‚³{ü}µ÷Nèèóycÿ—¸îØIÍõ3itñ"Êüüûj÷ìÙßÙ¸q$7ŽääÉ5÷Õ^i)/]$/¬Í[qÌ+’ô¼òÂê Œ‰¹áx[xmÚÊû<¨–XöS„òu__+êÉòf¶§-ÄTÈ?â%©è—Í2_6¿;™?9Ž!Õ´ŠS¿Ã!9–ÎQQL]³ÿ””!#KÈmo)5x뾇yÙÀ„úä)4NZTcÝ…=¨£ObªQ£ÄÇÙÂkÓVÞç‚ åå¾M[ùôk qÚBŒP0zd |ür¬Â]9¹^-—väÞøŒrzóDïlûŒYÝ»³¡I^ܾý¦‘MF…7Û•&ê™óoZt§ä}çÎm.—8K+·mk”qq8¯Y @MMC¶ÇïÁyÕìâãÉiÓºÄÇÙÂkÓVÞç‚ åELÈç¼g/ÆêÕé×*NrŸ^™À¾š5IÓj©Wt¬EîÌ?ju I8¡@*ÖÎö=L®|;÷¯çà7p0#&aµ÷9s‰ÿfN‰7 ‚ “H4ÁÆÙÇ^&7´ ¸þgõß猴 «]vwÇ;3³ðHŽªuhóâµ(ÈϼӾ‡//,Œ‹›7‘>|(Ü›pÐßÄÉëÈ ³j\‚ BÙ”ª¼‘ —!ÀçÂ;±Ã݃é}e 1š3™‚ðKMådõê€1j_’ó/ÑÙlF&³'Cžp—}Ö#ÙÛ“Ý¥3j:#Û´‚Mñ'é_«¹•£* KQ«¾bÖŠÓ¨ª{¡V3⓱ԷÏ&jñ»¼·è<*7HO÷äñϿ०Δõã“ñâ:>ûd3‰¦,â.d:z6@•±îÞ£P<û5T eG²zƒŽÅ—×ÒÕù<[A°Y"Ñ—Ñÿ³ÐmØDJïžô®?Ñ µè½É„[NQÕ«ƒLà ¥=ñ„òC±ÕK.hkÐ5'åû.h­kèÅø«kógÜ뉦1‘çç`?ÌAçbå~³ÎñÆï'ù3]ÂË¿3{†òˆƒuGi…òdäììþ ØÔ›å«—ÐЩØÿmÎ –ÿjbàâ5ô÷³#÷Ð;´zê=šE~Es‡²õ¢¬Ö…×çôEkùæÐ¾Õ›ìyì:(ýè2|GhÄúºMÆÒt83–Ï`@ 5h[ðÁêE‡*]tد`¸‡û°d*G´@~æ%¬ÝLZX/íec&Ìk\p”Á¥çh9¦=:ñYFnQª9šZ™ªèK„Š'·v(Q«WruÐsè=üñÉ ç:öÄ«¼¬Z¹èâÛŒdËY ù¥(dÎå¨Þ‰§ëº¡SªiP×—Ø+œ»¿²¢BEbL êRHTá¡‹“]e¢mÀ³]rز7  9LªOc|Õ9'æ3¢××h>ÚÎσx¥Å0vfÝ{w BÛDà‘qžTSñ=YY“Lç꠾݃¡Šs4¡’RH Ä7à‚Ó<-žXä¶=¤¢­Åþ«'€.w9R†‹o(?Œ  ãüAº_uÃOœí*™;¦Ïàè¸Q ^©AŸ¬a좨­²w2¦í«üÛr Ϋ¦1~Ù¶˧o™_þ2öÍaÚœ¤Ë%Ò.eÓ~Þæbå`ÿÜ •9¢Xé#µÝiΗu(Mj*‚ ”¯¢D3?v9c_>ɰ5_¢÷*¥¸·S„ .Ïû<ºÜZ¬j·ŠO¾ÿ†êÉ:ÖtÙAž÷ù»?¸‚ q¬‰Ü>—“‰¨SPÞ¨DÞwØ'‚ ¬é²…ëUœõì©ýþ&CÁ]ç6v ÝõüV'?0‡—“q:*Çu’¦—qkAá¡)Ue¹â+‰¤SlGb½=Eß×L â?ד¼ím.ɨßÛw¹?²í™H{L¸î2“>]AýÞîÖM°KQ«¾bÖŠÓ¨ª{¡V3⓱ÔwãÅu|öÉfMYÄ]È&tôl>PæÕnÛNƺ{„''èZ£ 3}õÅçA¸Á­‰¦Ko~O»ó›1g䜉zpÅB¶®¯øÅoÃç°u½µ£(èÃÿ2é¡¿½­B©Ä ·v¥Ò«×ü[¶µ¶$0"¡&õ:þJ°¶š¢ºÑ½¼.«¹·eGýE|?Õ=ýåú5&ú𮘲œ¬yî²…ófù1rvvlêÍòÕKhè$»a¯²Z^ŸÓ­ä_˜CûVo²ç±_èàT¶^nÛ$–s¾/ºò'BÉŠMóÕ­Lé7”/v'áÑz"?¬ýΞ%'“Aµ,Õz0«Œl]¯¤kÓÝ´²éÓ>fÒ”ÉÖã®lá÷i 1‚mÅõq‰û4VÄL¦·¬ÖCŽêFõëNÆÍ»ìãíÿN¤O@ÔÿÍHl“?©Ñɾü¼&2ýŸ[ëõa+¯Ír£?ÎüÙçØ@_·ÉXšgÆò ¨Q°¤LåˆÈϼĵ›I ëEà=¼LnÛN.`ˆdf— J§ZÇ—ø|ÑôöWüáf…uÙ³ØóÖ(V×ù–“éç˜[g%/¿¹›lëÆ&B9 Ì«ÃyåYk‡qO.l7P÷k¯ûn6þ9ra»ÁÊ‘ 1¨Kñ\ñym‰gXòè~&Œø…ËÅ‹˜ãXÜ©&]ßÊà…Yƒ º×ß’Ú±¯Ëð§ñÎâĦàÓºyyÈRbEe@A¸EA¢©?ɺ]. ÿþ.þ<:~λÖrRoåèA(Wõ,¤©/X;Œ{’{TB?ÚtE 5:Ùûn6¹G$+G&æ0©>ñUßx˜ÂÁƒÐ6xdœ'õ>^ê·´#I\ÿx#‘söiþ- x€³8ÁV•ê®sAlŸw|<ý^ÆÚQJN*ã´÷]~ûÕŸ%±šõo*-¥É.ÉTÃÏÚ¡Ö"s§Óô7ŠÁ+5è“5Œ]ôµU2öÍaÚœ¤Ë%Ò.eÓ~Þ[8ò~;„*¡àÒ¹Cú´IgÉp9ó2[¿XDFÛ¾ÔW¤¡R>s† 7WŽ7§Ž9ˆ«ªŽ7'ÓÕ…à³¶sƒ³Â™ ­X¶LÁØi§Žõ{ËûQÛðžyïi%X=—þ~…뚸è°7fb°šÆL˜÷á@ÊàÀÒs´ÓQ„[¼ƒ ¶¿øÅÀS±#а>›  .§6~G¢NCƘ7IzëCZtÉÀÔàN}ލ£Q‰ˆºOâsÙ–NÜ—}4âZnŠŸBOäÌqüÖfÛübYZÝIYÿ1祅ø¿û+-´7íÌ<Àʘ¼Øª¬×æ¡j(p¢õgßòÄè풂{Äx~XÛ–2/ +‚Íp3¸’—cDkcsÊÔr5%ÛûÏm‘Ü[rþûMœˆq ‘ÂOŸNìF°NNÐèq„,ø•S¹Cñ“þbÊg‘HÍáõq—8ž~œ¹fà1c-]Ë>ä˜ÿ;ïöÈ…!ÿcѨn^Î<ëà*®tG#Mù<5A¨lŠf[)¼»ññžxr$#±{>£«÷õªsZ™ªè«¸3Q¶Q™Îâ´…AÄYž¬££Ùcžñ®Çùxu|Ñ”žZ¦Æ¨¼5n}vÐæŒ¬ý^ihðl—¶ìMÆèc“êÓ_5àÜÕÙéìY½€o挣kÆÌœxI¦DΉùŒèõ5š¶óóà^i1ŒYÅÉâÈšdz¡ (U¢Y|E ‘t 6K2õï~&l:Á®t ޼ôD'Þ««ÁÎC÷·cWÑÁ¾¬ø¤½ìKÓnò¥ï£zç{ä±&¤š’ÿå|L=«ôyh?¾;—v¦  ¹éÛA}sŸ€*˜t£ãCXÏNŽdÅædÚ‡±ôý°þøÿ| ‚PVúãÌŸ}ŽÐˆ ôu›Œ¥épf,ŸÁ€…oC$3»1èP:Õ:¾Äç‹> ·ÿvi[ðÁêE?*]tد`¸V8 <ú„*@\:ªc‹Î;1iÌpÖ»˜9ut7ý~ÙMçw»ÒÀÁ—ï—2¹,.û_ìþöÇ´#suòU“P˹Ř• üúÃ'|Jþ®Uä}•XhíÔAüþÅèÂFÌDoYIï¤z4‹& ˆºOâsÙ–NÜ—}4âZnŠŸ}]†8 ·ž}iáÎö÷ûñòPÂÿŽÿ=þÅ“²þcÎK ñ÷WZh¼òïC*+ñ–ªµ/Ÿ=U°¶d6 R(pÐÚã¢òï£]§¿ïPð½1Tjðð@²dzÞûûò¹ë15Ñ`wììõ>‹3¦ðÃ|¾Î×¶Ýi3þû‡áë¢8%¡pòfhß®Lo⌠Tz G<}"8±Á:9A£Ç²àWNåÅÏ)„''†èEïÉ“ø¢Ñ¢s‡ãoüøßy·ïD. ù‹F… P—o‚P™Yv¿ s4 aÈIcóÖ­Œþñ( Ç7¡ÖÍ£%qéAʃ¬‹(f¡ —Î…ª#ï Ó6žâpV>Ƽ,vþsŒhçjÔ¸)»ËÏËdë_G9áìs˾eýòí¥Èõ#šsç «ÞÉ»² ð ¹ `J¹À‘ÄÏ© îN×láÒÑãD4¤§K %ƒ G`3>̯aö²cœ6æ æ¯ŒÄ©÷b>Æ®Þ*¾[ÉY3`¹Ê¿Fhï–Ë4Ï\Fj%g*‰‘I†{RRQóÅ× ÷¸zµ,¿MAA¸+1¢)T*w‹â¥ÿ$Ò  ZPm>Ò¨`4ó†òFû>^l¤ó´ 1ûÿ€*t8òLRÄ`L+^Á¢¤ŽÊÿ^îÉÈ·3i®kÉK?¦ÁµËææt–ïÉ¡C_?tw(MyË,iü™âÌf^xªÁ£Y![OrÆŽÂÎ×J’ÉPJ™„ƒ °È8£ó¢aB,pãšáÉ^^eúu ‚ Â݈DS¨:d*·îÂþÖ]nÝg_¼ÔPÉ]°ŒþÃèoÝ'SÞcá' /ÜÔ°ø~…;o¿5¤ävó®0mk·¡žJÏîŽíT0Ê*9ÒÐ!Åÿ%ѱ…#±ÿEíà‰¯]áM‹ “Õ\ÀBWwÕdË"ºÑpíü[ºÛä¯Oû‘oã”ZÁ‰gøàë…t ˜ÿ½?¢pYJAA(±2P~îXŽç3öm¦íz ßMéMO‘¸ÜÞF`Ññú3 öóÖ˜Q¹ðÆsáÔ¿–hÊóáeÆ"É8Ÿ«fe¦uÝMxÊ,Ø…‡2RÅÈ}[€‹ô `e˜+/Ÿ¶ç`m#“¥æ¸&”ß>ú˜)gy雘¬ù»Al’XH(?w*ˆ^X„<óÂA†îudt˜IL¾›;À"Ã=¤9ëßo~‡$ä2‰š&<õv¤ZLxÊÁAi$è‘@¶4 ¼IÇ>­ùmÍq¶jצÈ$9'LM\̸È%,È%™ÒºA„ˆ¿õBùQûòÙSátòP¡”Ë Ëñ8'ÏO?ÍØÿ¥2lpS‚ôFÊP¥òž­ñû~޹aÛ¾ŸcX÷â‘ûn[±éÿÙ»ïð&«öãßì¦{/Z:èbdï½AÁ **ˆ8p‹ˆ¼Ê«ð¢ü@Dq! ˆL ÈÞ{…RZhéÞ»i›6i’ß…²¡¥-iñ|®ËË6Ï“óÜié“;gÜg3wÆÒÆ‹‡;#Û´¹ê×,)A¶! Åÿ¾Bö×FÐj©5†vÉI5‚Á$!V+'SjÀñº¿v;ò+V:}ö÷Ò{?Á^»RœŠ €„“ WiEf)“𥵡 ‚ð/qOs4ã/J¹Yåš/Õ¶}CU–úšWëÖ3ؾÁÜQTÍ}ýy.ñÑþ0"¤<Óö27ÉÙfÈdÕ™³”ûÂs¿†)¸YJV·1æ;:áöbK#dxvô'õÈ%‚ççR0Õåž®yå9î'6Òá?#+—?jèHŽ|´‘|Ǧw¼¦]ÜiÚ1šB7?4›c³l;–/¿Ãñwþ¤À¯uÍ_´Ì…a^¡,¸E|¹ GÛ¦¼ðPzZÊ‘\÷û©8ýÑÁËyÚ.›.ð+‹DøÖgOà<†  `12NâøVµ¸ëI^F³>¿ªªóïÄœ÷®†p߬UÆ"WÏgÞPzº¢’ùóüìWi¡¾Ë±ª2hˆÙ¹’•a[Y±´9IÛjwùXAƒÜ^„1Ãñ½2ȧnÉä9Sªw Aø¨H4M"—Ì[~Ͼ$=Öýyùë%LâqËLÔ7Јo ±NÚ¾AA¿õ6Øœ™ŸóÖô÷ÌÆ]í S¡Ñþv_¯ùn F#‘iÙ|{îZ6· 5®€hG[¦¨ÖP¤Õ‘PV‚·ö742°Q?žýÓê,žØ¡<¿{Ž çÑ 6=ŒIŸBÌþêµÓ½Û\víž À[+WÞòÏ%Ïóûsq°7Cçwe÷¡}ô:ÂÆÁ0h“¸´½œw—¯`]‡o˜À¿íÏK0³ß6ûŠ|l ^I•mÊ’½±Ép#¿í‰*ÅÙ»×|bÎn`Е²")ÏZöËßv“X“«lDªö,^‹{°÷Ú×0®]_žÂžÝ“(2AŸÃ8ŠHÚ;‰„Zš93`À"lœ÷Ý{éÔìùÕ¸NuîGæºw5”ûfíѳàQFoÆÊ5Ëhe#©â±jÐg_ÞžW>vãàò7W·dòÂï¯&Ÿ‚ ÜREYt’¥û½y{w±¿ÒÝÚÌ ’L*¥…«éedêålË.ç|v.ã㮞süD>o´³§GÅ GBšIE²W¹˜´§9àÉ?+Š<—)ÊHwL'Û.›|ë|òlòÈ·Î'ß*ŸëŠ-Š)U–¢±ÔP¢*aÅùåh}*†¸—½«¡X ºËŸÄÔz°ÐƒZ—IªÕ ðW²´í·øäس»•ö¥¶XXâ­ÉacskN6 BªT€Ž7 ááó‘¸q†®›«HL½’%{3tsW6>€²¼œàÄDœóóɲ·'ºqcôòjL˜ŠQ (ù˜4ém6(hU´ùËΰë™á$(¤DaMHy)Ù2KŒ·¡ÞОeÉ‚X‚:…1ÒáŒm'0wå\Fû©î|¬:,üé;(HºõñÒþ××—gNäãÑëe¾\ú)üÅA¸QÅ;”MO¾ø¾'&]9J¥ µ³3v¢ø‘PF=«S ´uWá-3¡%U¡ÂU©äƒ.WÏ3èøüT ÛØóÐ-f`(ôz‚*’).øøT)™ªL,M*’P‘iRà¨Ì °Pƒ¥*WÞZ‚\WJ¬Ou.åÒrlÊm°*·BmP£6X^þ¿jƒ£ “•ÁE©‚®-früàgL^»–àä,”å×Ö* T9óíˆÁ³œé|¸‡[F”èȉVáhìrˆQÇñOc=ɶ[ȳʣÀª£Á‹27’Hp.ÙÅ._G^Z×—Ýí£éu<¸2él”•Å„M›É±³%Ýщ¦ ŒÚ€Ÿ"ÅÅå?™ê2âYžŽ¿1‡ ßý|¹¼tûñ[À“ÅÏàŒx?ÌI—Ndb£¾aGFkR¾É3ÏÿNÇíÏáu§cµ5ãË¢fÍÄaÈH:¸å³ëãGxåÙ Zo›€·xß„ë\ý“(cý£«-:òÉ‘-„ŠÒ3BuHå´UiY®!É ÁÁZÅ“–xTcäÊ33“çÂÂȱ³#Ãɉàøx†ïÙÃÒaÃH½¡ ø•Ä2Ab"^YH®2Ke: eeFe.%eÖ””r°½•ûÔ¦Løö%NwHÀÂ#¿Z/ÏYæÊPÑ+r¸U'ZÆÿUyL­¯øïT³N8Ƶ¨ì…´÷*!'¦üö* ™NN÷Óá|óÈ`ȽÄH²RCª*‡²=l 1’è4›¿ZH×sm)P7ÅAg…,KÍ„M›ÙR9ä^¡ýù(Æoþû–CîŠ4_œÒpµ_‹ka!™vvœ÷òº9i71¢¬~|=Á Åt–Z°ê•WXU­Ÿ’ Ü2k\Ü;ñÔ´ø;Iñ4…&?üEtÉsxÝé˜ÍÝ›®UÆLkrùW†}ð6_…®å|ɼkq³ <®¾ãØ ãoSåšöÎÇøñß0âÈÛ‰ž ¡Ê$ø¹ÚòùÝ6˜‘)ù ÝÍÿ°z=Ï……±µS'N6kVùxÛÈHžÝ¸‘Ùãžå’BÁe)™h,R‘Z$b’k°Õ9ÒDo‡³Î‡b?òÂAï€ãÑö¹eajœZÀ¢ÊÆ%Éǽ¯ý·þò7ÈvP“æèH³ÄD=tˆ%ýû“ìì|ϯ]ÌΪ%Oö-fÅáléŠ6þ¹îmh¤w8V[L&L Ÿ¡MÇœ Ï»#EçŒ Ü䆮 r_z¿:™ào–qI+Máþ NH ×Ö¶2É,•‰Ræ³¶£Œ~x/EcYŒU™îeî<¬uÃ3¯Ž:G®Üòo¤is2ijœ‚¦qJã=ççË9?ß›/¸Å¢ƒWù^I€œŸfüæÍ<|þ™w„ÜrKÉÉuâíå¯Uû‚ðoPñN£ÙÏÌÏþú£4·Ìäà7 9ï9¿ËeD‘v¡®ÉÊe¸¦•²Ëωø‚8¢]£¹èƒ©Ü ‡ROšä;Ñ÷€‰Ýšvù×g¾xú)‚“pÉÏã‚·7ѽÑËå·í mÙœGR£HkÒ”¦…M)טHQjHU⟷›]–Ä:nçHà:Ê,rqmcM`¶•^s™k™5Îg:ò«/­£xêÍù6>\¶… Ý›áãc柌 TÌ©;Ó~ë^ícU%±mÏ”ù",¸qwÙæ/òÅ/Ö¨}Aø·¨H4­Z1Üû'^š@D¡Nc™ýÇk•½™bg áv2³F¤Ã¥ÝÕ#Y'”­ÂåiÍ-Ÿ#ÑK°HT¡º¤"± ‘ý¯qÄk/ Ÿ‰"4Yc™' :ÒOÛ©´"©|ùÀŸìÈ«Á'™Wèår"üý¿ë¿]oè?îåô[¡©r—›$ø”Ù2æt ý™P:÷ÇåÇÐÍ]‰(§Å‘D4‰`OšÓn§¹àƒ³Ç1^Ýð4£?ƒN\­íÔ¨(ŽI›ãX4x°H6A„ZU‘hJíh3égŽNºñc› Ü™$HGè"/Â'%ãÒNGÖ eå÷p5©´¸dEœ$Áq§cìo»ŸC­ac²¡ƒìQš¦7¥_lWÞ[úÛ:9Ù̾òíÎÃA£á¿8 ÒÉï>ä~eR±Ó¸”*aì!)±ÎqW¹Ó¢¨#ûSøü‰…,0&1î(‹˜|G:»W,ôQº7Å©`)Ùz@$šÂ-˜€méZâ+ødc ¿¿½ž£7“0 ‰!{‡ñRÀ š·ªÍÝj„{¡—Ë9ëëËYÀ)¼ Q÷¡÷°`‘ã`Ÿ8Gn>Y^lè¹ÆÍ® ‚ð€ã‘Bµe”XrIƒQRJ€ûÿâm-lé«ìÇ[VÈklgUÐêÖ«ÎóÈ =Zùu„Xø#4lÆ"WÏgÞPzº¢’ùóüìWi¡ cÛDdOŽÂO ¦¢Ö„9ñkò:úUgמ‚0¹½c†ã{¥ØŠº%“çL¡…t ëùbö2ôR⊚´€Y£#ê²Âõ*M… ö¹D§ëÀI‰.ý<9vMpV˜9:¡^¹Ò‹¹>= ?ïƒÄ+öâêÊëª)øÉü+Ïsi§ƒkÊ ‚ Ô.1 eô¦a¬\³ŒV6×lØ`ò¢ï„7è3÷Z[šÈ {Œ}%cyè^¶ŸT·dòÂïjwó!…G_Þ\8+9”Ç-¤Gçw94àwzÖÖ6—‚ð€¨(J¨aD×|–}µäÂd¶µ”‚n# Ãæ “IGäÉ žõ=#÷ÌçÅðVå1˜L$gñù©,ÆͺþØd”˜•È&Ãoý?ÃÕ²”™Ö³xÙò•ë’LA„:§=Ë’±¹…1ÒÁßSXWVq̲ o-z‡Ö–€©€cËcé8¹N·Þ<ìÎJ#ø___ì%ö4íýaIW?@K”ÖIfa"ÇÖm!¯i|Ä”‚p¹ÕÌËý®ÀÊG¶¼'úã6óÏøä¾Å&Ü+]6¿^²aÚ+Ï1õ Œè”_™‹Ö¶4“”³W#exSgÞQšHÍ-bnlmšYÐûÜYl22(tw'­e J%&`cF뵑º¦‡E†ª¾À^b×0Aê„.ÈÄ42F}ÃŽŒÖ¤|=’gžÿŽÛŸÃëÚª|…ÇXß“—:ߢKòn,š1aÖL†Œ¤ƒ[>»>~„Wž ¢õ¶ x_™tfHá×ÞL9ÓYÇÆâ+Fá&òâ× q~y÷'XI”0£îjÊ“ÿŽñ`‡Ä„\J…+) Qð´_ÅÝÐdª8öPn ¯¿¿„RW ¼¼ð§íò嬞4‰wUáäYïà!«ÖêÚ+‰Ÿ®°3ënƒ©p1²atoqÆœ¯åuY¥ñ ~k1£ö~Ç»±FºXãseèÈ ãó£YŒ;–Ą̃RVl\ÂùGaçïsbÜXv|ð>ŒnÍLÙ§XZÅ2Ëþ#¦X¿„“Ô •¢uíÆYGü|‡˜;„»jÒd˜¹C¨’  ‘æ¡JÊŠýî~’™5„{Qƒ`Õ’'û³õp6F@Š\÷64º.ÉÓpzm6ƒŸážr?“ ÓÕo(Ž9AžwGß0<.S;ԵΗÈÕßË…áÁV£‚íñ¥6»{Bjn !΄MËk¯A _6ÿïe¶­/ãhÜr¾-¡] K<%€LÉ\0H¶ï'ÊÒ£]»â Dk3ùºàÊBRùaS#7ïK²S£Êf•òf”éO×^œuÄÛ»qñ›ÌÆù4îKll˜¹Ã¸+?¿þ\¸°ÞÜaÜ•NëÊ*ÎÜaÜQC¸5GzÏ™Kø”‰Œ]e‰6Û’W—~JðµK¾‹ÂÙ¬Á¤&÷6ž­üOæ!·ÜÆRrrx{ùk—¯a¤àÈBf.Luzƒ‡YIIz:P‘`^éÍ´Q?…®<²^&œÞÞ½ñó @÷nsIJÚE\üf3Gu=Ÿ¾4ñ¯èÍìÝk> ;ˆ½TÿN?¿`À€EÄÅmåÂ… fŽêf:­weo¦&»;JuR½K8½*âl(dNÝ™ö[÷ÛŸ`Ý•Ù˺Þsûêæ/òÅ/Þæ¨»Ž¯1¯ã=7/ÿ÷T°Ý7Јo ‘íôQÇ Bœ¾| ì SÑgXYí4Z–Ƨ;4 ëîO¹¡ŒÈ -© ®RÀ¨guжî*¼eF"Uö8–œfGÔ\Œ¶>—~Ž£“#ö‰I¤·h€®<]y$6ê§Ðh«8ë@RÒ.’’vѽÛ\öíŸfîpn)!a ;èÝk>»vO5w8··•¸¸­ °ˆ­['™;œÛRª“Pª“ÐdwÇÆyŸ¹Ã¹¥†p/‚Š8AjS&ÖÇOä·Òâ¬Õas¥Ã"™ôß]D”Êp°Vðd %@"§­JË’p åyô(’³ãùÆ%t£uè‹H¨˜Èé¿o?V99¤µhq]Óõ±óVââê÷°9Ð †Í1lÔ»^Ì[i÷"A„ÚT£‚í åÓoCˆÓ' ߀$JÚtîÃáÎ}ئº¡R‚¿ƒ_µ`‘Ý7œèÀlý›<þçrŠwÏ&ßÛûÄ$¬rrØ÷úT Êë÷¹Ð•GÖ^œu()y·¹C¸«„Äæ¡Jââ¶™;„*Qª“ÌÂ]5„{‘ BmªH4/lé«mŒ›×šð¯–RÐíQ°ýd}ÚŠ¢-¦>õÁ6!|àð lü¢9ئ¥“Þ¢9i-ZÜ”d ‚ ‚ TÇå¡sº|±˜Q£Æl—ƒc§7øi]·;®8E¶·¥®²=È—¿ä)›§é¬èRyÜ T’üÐCfŒPA„MåM™Û@>?”Æç·8ÉJ"z¶ê»¿^9ƒk7{:>Õ¸ò±#¿%’ôG!–N8nvàÛW³1 Œw­ÞÇ[æmÆhAAø7¨Òb bÓÕ݃DÒY?¹v³GúR.G€ŽO5æÈo‰¨^Èã!K%rÞûò}âq|lù Rs‡+‚P3Æ"WÏgÞPzº¢’ùóüìWi¡.'mãL¦}ƒ•‹”œT=-§Îç£!Õ[ýjгs%+ö²bi!s’¶1ôÚ,o{ýZ~‚ÐÀÕòv4‚¹t|ª1GéK¹ü½½ï sVþr#¦{O@&‘ò¡z:*‰ØM„†NGÌ‚G½i+×,£•äê¡âC|ôÊ6:í=È«þrô±óéÑã}úDýB·êÌÓg_ÞžW>vãàòU¿¾ ×i8Õy…»êøTcƂ߯ ÚÏEføŽC-Qóšåë"ÉáÁ =Ë’±¹…1ÒÁßSXw¹±Ò›‡rÙþ×)2sã9¼v;…!oØž² ,üé;¸5NÊ[$‘wº¾ ׉æäÈo‰øü Çäbˆ.fÀC°—ºñŠå$dˆ=–Ax@èÒ‰LL#ÕýMvd\dYÿ£¼õüï$…/ü>ÇÿtÁÏ)ˆAÿµfÆÒð¿·(«}A®#ÍđߑNÌå?ÄòÂÏmùpÎ{xreôùéHůY„‰Ì÷N¼1m þNžt™4…&ç7]ècX4ú-òg&® ‰}3ŠùhÌBbtwmµv®/ÂuÄÍDæþ|ÖŽKá‘g›2åà‹4ññf¢Å,¢þ,€PsG÷ ‘±‹U?Ò‘ ¡ŒædÐÃT~s_qÙ%¦,ÞHÀµ)XôÂ`¢«¼–NFNì’X“@)CM©ø×øuÂÀª%Oö-fÅáléŠ6þ¹îm*†Çu©œŽw × V¸Ú*pÜÇ9á¤é! ¶Ö²Þéú‚ \G$šÓ+Ö\Ø^‚½~1ye¹¬ôJ©­ 6ÚÜá=Tü³)‰‘&#Z©kq"• n*¥ògÁÔ×.cÀýèïLÊoIB5Þä4¸F9]I Øh@&ÖÂUGzÏ™Kø”‰Œ]e‰6Û’W—~J°Pvæ?‹2õ…‘õ´F“ª§ÿâoèdU½K˜ ³púÏ\(Œ#"?‚ůOb«]s^ü|2­,ïp}A®#Í@Y¹éнC'³Ž³iÈ”RqÇ«U&îJz˜LÈ$z,LÀ’Àòl:G–sf¥U¾˜’(‰OSMMF$"É„›Èœº3í·î·8"Çcè,V ­YûÛöL™ß€?Wçú‚ \K$š€ïžÃÉ-ž+Ø5b?¶J»»?édBg²åo“±&°–h,)À«65‰žÇš6cê‰|KÊèdJÃå.m[¤¡µ,˜Å.ÕùS“‘†|/Q¡GËæ Úc¼cN{Wk6(‘Zù@ uIø™jÒ¨ ‚ Ü^•ÞýD‘öú+§¸”/÷nEæû-+û¬ÂÓÊÓÜ!™‘’F[tÒL^–(49²Ý¤â I5_p*çï á(M)¼€ nl”Øh*ÀþvO1³ÄI› IDATi <€¦Åh2ªµè_‚ %d2ÖTŽW6Hìñ7åâ\ã×!’KAáþ©Òräb“®ò?¡~™µõ RïŸø¨Ýt:ºu2w8f&'M¢§•¤ K ¸Iб0©//¦©)§µv4£KŒ¸Rˆjòîð iI<=ÒíÙdGõªž°§Œæ”b‰W48¢DS³ ‚ ÷¨{Ó€]ÈÌgEÂôôîÀ Í&š;œzÀ€ Κ”h‘’i´"9µRqÄTŽŸ<—H‰ -R²$¶ä¢Ãú¶=ƒF.žÁݵ5VÕðÖ€”óXP‚”LlÈ¥ Û¾„ –lUó­* Wb+'€p>¿‰9?†ÑJ|žAj‰˜£Ù€½¶µC »¯6w(õ„Žv’"6Ýø’R¬$’šÍk¼B¢ç‘ÖüóO)K$ 3iiOηkÜGû³E\ìîMQµ0âiÊÁUâÆÈ‘QLGS>Ž5| ˜ŠQVQÀ Q’ ó`Â'].éÇ™iÞÆzĨº ‚P[D¢Ù@ýÁ©òoX?`%6ÊÚéëzXH xTV˜(5¹ð‹QGm-²±ëÀ~£J™˜Ì‰-cŸ¿çkI(¥“)‘ºš !3éð7ä.³£¨èOíËçà€®”Ø_;‰¹ ‚ p‰füE)#ënKÃíjs¯°ºÑºõ v†Ý¿ëÉÊJp9½ëô4î¼ìüí¬Gc8ÕŸ§îü\õS÷'ÈèÞmní5f2PXÍOg÷èûÃFMvÍJÃÔôùUUû‘9ï] á¾Y«ŒD®žÏ¼?. ôtE%óçùÙ¯ÒBm$ïÀ\^û`ÅhiŤof2Ì«š?Ÿ‚0¹½c†ã{e=¬º%“çL¡…t ëùbö2ôR⊚´€Y£#–Î Âõî)Ñô 4âh¬íX€Š›e¿ú:i»6Í™ù9=úõ¾/ײ¾Có§SêéA±ŸÇÂáÔ%yN/ sÙÇçduãà¡wïKœ÷ªKç/hUó†t™Œ_rŠã*kú·mÅ¢Ö)ØÕR]̹B;¦ÔNcu(üH#ÂÏκù€QÁÏyjâ/k#Ëaúα|Œ•¦…Âc ÌŠ&þÜ,¢-ê6ÆÐ–Ó±qÞwï ¤S³çWã:Õ¹™ëÞÕPGGÌ‚G½i+×,£•Í5äÚ“üç¹ßiºþ´P¢Ù÷ý^XNëãñ®î;žº%“~ÏÐ[ ‹(<úòæÂ‘XÉ¡uüM"1G³žswé‚ÑâæMŠmÛ©pz_B$ù4bOê‘KÏ×Á¼›Ç•-·ïÀuìs•ß«N‡ãö̳d,_жoŸ»ÆäÐÁ›7u„“Iè(WÂ×ebóæ­¯ ÑjQï݇<.žr?´=ºc²¨æ»œE¿Îúôê÷¥QŒûßa޾5¾Î{4¡FtéD&¦‘1êvd´&åë‘<óüïtÜþ^ê¶|øã^›úã}agJ P¢ªþ6®͘0k&CFÒÁ-Ÿ]?Â+ÏÑzÛ„«=£†~íÀ”3˜ul,¾ÿ²Ù ‚P¢G³žS§¤RЀÜô.êþæcÿ7(h‚:)ÙœáÕòb¶§Éꂇ҂n¡^ؤ¥s©¼fÍZœ¢É8-["-§_—Ódèp,ÎßFÜBݱU¹Òè‚ c\ÜiÖªŽJGÜ,ܱQØ`-·¡Ñ³/àøO$ªr°¼üçR mh 2þ\I©¡”2CEwG©AK¡¾€B}!…z …ú4åb#Ó¹pì©Á¹g‘QžÃ¶ôBäi¶õ6HËhS cP©M´O8K—FÁ¨åJŠÆ<Šõ«PïÝvM*_s™W½þ e÷˜p™è/º^ý¾î=‚P7$Žôž3—ð)»Êm¶%¯.ý”`% =÷¿á\aÙ;:ÍÚÊÂ.Õ¾ÓFþÀ'óŽ[nc)9¹N¼½üµŠk`¤àÈBf.+¿gCÎl͆سïG%ÁoÜzø\ýò»8<óìuÙi¡ôµw°SØa§¸s5Ïðu™ ºf¸üÊÍüy2<IHצ™{‰Ô«ø§‰‚Ãé?ñsJœ,À+§þMhå[H`ØZjO|rS®6 ³.ãd¿ ô^Õšƒ]ãèuз2鄆LæÔi¿Ý¢Ä•º¯.ü®Æí«›¿È?¾x›£Rì:¾Æ¼Ž5¾Œ <ðD¢YŸÈ­™Ü¶â#±ÉdD.•¢RÊФ[³!TÎ&Ý+8'e‘Ú¥=9-ý)ÜSLj­Hd}"·b S »—®Ci•C|I)ºÑøßâ_lˆ› E¸ÿ¥aÖ˜0ÂUQ˜"R)“%£—â(kŒ«Â o7†Ÿ* Oÿ× ´mL°]c”ÒŠ}Ç'ç¹qhBzU¶{äxFe’ àÙÑOyGJ`Ôõ1hûö!cùRìÿ÷Š Ñ’?íM´½{QyGK`žee:Ê•p2)0‹À è±k7ÎYYd»¸°·w/.U÷·$‚ wTñ.k*âüoŸ0íÃïØ“P†}ËѼ·d“;Ø‹ÕB÷[yo¬‹å4€ÔŠ—zqhí><ÝýIÀHÔ¹hÒ<lÐ㟬Ô92gEåûãK¶Žüß‹íÃãs¾ ­Ê†Í6n„jò9¶‘lŸù”6 é¥qøÔaŽyãä„“Ù–Ð*:”>*:·éK°uÞ–ÞH/ÿ+–––Òdá²Ú’?Ò¿2 ûµëQ¤¥QܹóuÑuœqýO¨HoL2¯ÐöíS¥æ·Òó¿¾Uº–¶GwfÎÂúÏ5y…\AˆoSÚ‹Àn¯œÔ+9}º '">&U•BrH k|ÿfáÀ…( 6ô:ÙƒŒSr>Y·Éå 0ž))<¹l9¿}F$›‚ B­ªH45ÇXò·-/¬»Èª@§>ËcO|F—È9¸šhf¹Þ\³SAjâú)˜¦Î/zš'þhËWߎÀULм¿äjº©5|±å4Œ#+1Rç"Ú´…ò"~Ž,¡¨8‡™OÑëÏèõg4[X`«#­ ÁóºÇR\âÈ'”éùMVÆ‹ª0¦E?ƒ‹ÚŠ?ºüÅcçÒ®ãÃXD_@çç{ÿ€ì½M’}»ÇAá^]íÑ4òÏ—£yä;/þ·w!Ã<Ä¥ÌõŒ ~ ðAý®ŠoŸû–AN½"©œ»ÙÐ{d3ð¯l~|R!Á“࿲ßÈ´‡ÙYôR¯p¦ÆK8]ò’~OT>÷v‹v„ê¹ÄïcŸ¡ûî=@2)^^ìëÕ“˜À@s‡&USÆ ·‰Èž…ŸLE¬ sâ×äuô³Cúff¼ú i¶Vh =yvá§ p¯î{Z9ig2íÛ¬\¤ä¤êi9u> ñåZ¡*þ^Œyœ1”1˃Y¸ï;ñ¾~°Mi¿¿d'dHâ$lóÜÆL»Yæ§vù¤²eøQþÕÝbèy4€ÏG&pÆb+%²uŒ ÌÿÃÕ+ï)¯£_»­A.Ú©ï.]^øó1?¾4ÑÜáBõ(¼è;á úÌ}‡Ö–&òÂc_ÉX²L¹lü:gFîaÝX72~N¿É[8°zÕ™qT|ˆ^ÙF§½yÕ_Ž>v>=z¼OŸ¨_è&¦• B•]^u~€ÿüç8glãåŒàa¾OÛÇÓîR±3Ðýd‹ N¿Ž\*'PÝPz™*JU”_Ò1J™MÀíŽù¤Þ,™{š2gø^âz­ÆÕZÃŒ%4³i@iˆmƒ_´#B±lÃ[‹ÚT|m*àØòX:Nî“(>ǺÎ ç† n=†â4}-çJ†ÐÕª×Pzóp@.›ÿ:Åcã\ˆZ»Â¡7ms)ÂU$švÃøûšdR¸"ç—¢n%Á¯WÅÝK±YŽVodMÞNzö4opÕRQª¨"©¼ñãþõǼÎûÑõ_ŒYʶËéŸýõz¬²Þå¢AêXá1VÅ÷ä¥Î—wß*/$£Ø›Š¡r™êât4åÕlWáÇ ¿ÏåH‹.ø½8>Â/g^À¿A×.„û¯òݹº6ÂJ¢Ä§ëìÌ2˜3® u+ >ŸÙ·» ‰V‚|¡Sº„(¯“´³~ØÜáÕºÐ8gÛÖŠi¯½ÏÆî¿ñè¹—yiÖ ¢6š;4A ÍñÕ¤O¨åå䶸Y•¥©x+×d µræº+õ1,ýù3WľÅ|4f!1¢OFªår¢©áÐ{Y²˜¨üX¾ YÅ+ï¤è.O¾Ù0 Õç8ýz©HøPƒÏg6NS‰‰ðIä¨ÒhfÙÌÜáÝÄÇgP•ÏUèõ4¿x‘îÇÓ,&¥¾œ!V<óÁ82½S›2GÑS]*ê^Ö¢œ —Zm¯.¤%Úš;„*ñp¿·ÝŽî·²b?s‡pWõù^Ô0i8½6›ÁO‡P9¢mÙœQí²Ù´?2÷„‘Ýöš[Þ©[Ð¥r:Þ^ƒZájëF«Á½qL 'M_Ë/ApŸñ´Q¬ßgÇØ ð¶SâöƳ؎XG”¶;íîP°=þ¢”Àfõ¿ç³¾Çé×KÅ™SJ:¯‘szD>Y¡ghUŠ\RÿÖ6z5êIBÂßw=Ï/3“7ׯ'×ÎŽ gg‚/]¢ùÉ} |µï²vôϼº‚Þ³£?Ï×n7A^¶Nnõ»yfª ëO®«KgÒÒwš;Œ»Òi½QYÅ™;Œ;ªï÷¢§(œÍšLjrÍx¶Ä‘ß|ÍÁÉS™¸KMq^+æ.X½…@VùÏâL}a$G=­Ñ¤êé¿ø:Ugž§ —M}1ùŽtv¯Xè£toŠSÁR²o³3PüEiå'óíøëåͳ!ÄYVâÍ¥FZlÎb^D^ØÖ˜_{£½ý6÷jÔ³²7³Kç/HNÙMB–[ž«.×óöúõlïÒ…šW,îQŪXÜqŸ†ÉØß®Õ­¶ ¨yÙN•½™1çBppΩw gfªMeofø‘F¸zjêeÂéêÒ÷ŠÃB[N'3ë ié»ÌÕÍtZïÊÞLMvw”ê¤z—p6„{TÄÙ Xweö²®7=,sÌgk×°q9Cg±jh ›„¹{º«øé7¢bü ß}½¼aBÈ3õh Á󳈞êÂïmRIøPCBAN‘!æí:É){8xè]z÷¶I&@÷„ dÙÙU&™eÙ¥|Ói!}³¥uœ+¡ññu§ƒsNå¾éÍ£ê]’ àê©!´c ¡Sêe’ ™uð³åµÂÏΪ—I&€R„ó>lœ÷Õ»$ƽ*âA¨M‰¦Â…û\¢Ó+†/uéçɱk‚ó]V×Õ×›åêsœÚ3&>Ôàß§âWáÖÃ@†kŽÿø˜9²[‹¿í°¹+užÌÑ9b—ŸÏNG_æèœÙ®ÌâÇÐ_ð¹4•eqܹ9Yæèœ‰©Ã8ëc‚y£úš`Þ¨! ›õ2Á¼Q}¾ ‚ Ô…ŠLu#ºæóÒWÛ7¯5á_-¥ Û„Üa~&4œO¿õ9ÎfS-.UQe2ZMu ͧVwæúý‘’²ç6G®”0‚æÎRº$ƳÛ"™0÷utÍHGkýHehn<üÚò¶2»NãtpΩÓökƒ«§ÆÜ!TIfÖ!s‡P%Ju’¹C¸«ú|/A¨ r«™— °»+!ØðžèÛÌ[<ã“ûÛ¿Òm4Áê`s‡Q#|}é»w‡íVÐ:¿=µ¾´ˆÀ¾°‹¾¾fOA„ûC^<ãšÕ¾_Þý V%̨»€þí¢J¢èbÛÅÜaÔÈ%™^jFó¬c|¿æι¸ggc_XȲ#ÐËëßjzAAjŸ(Ø^Ï$–%àkQÿëXi ž×=–ßý97²½þ¡¥|<Û¶%ßÖ–mÛòÕøñ¤¹ºš)ZAAî·Ë]K×lßÔšð·zñÊ»ùç§îܸ™ P·Ru)x(=ï~b=Pì‘ÍÀ¿:°eøQpßËóó× Œ~Éšá9í±ÀžÈ{0ép;€ñ?l  Ð€Ö%„pÀS…ÉÜ/B„†§ ŒAn‘=9 ?%˜Š"XæÄ¯Éëèg¥!fçJV†meÅÒBæ$mc¨Ý=^ÇX@äêùÌûãJOWT2žŸý*-î²~A„«jT°]¨eòÔRK¬¤õs!ÐM|RÙ2ühE²ÙÁ™dõ;|ðØûnàÓŒv\¸<ý].)9<êe~q0ÒèŸ<v¸ç{“,FÑA¨.…}'¼AŸ¹ïÐÚÒD^Øcì+ËC6@Yñåíyåc7._Pƒ‹èˆYð(£7 cåše´²©nÅwAàÊÐùå‚íÁ×l©(Ø.Ü?Êl)™;ŠêñIe_‡‹<¶'„­b‰nv‚qûmP˜®É U>¬Ú•³nVè”6Ä·lI¦>+1;C„{aÙ†·½CkKÀTÀ±å±tœÜ' `áOßÁ­qRÖ01ÔžeÉ‚X‚ÜÂé`o‡)¬Ž«Ý­ráß mñ€SdÓHÕÀÍOº DtŽp&Æ*ÑGî0á¤ÃëŸ84jAŠòö§ ‚ TIá1VÅ÷ä…Î÷:>~ºt"ÓHu“YÖÿ(o=ÿ;Éâ² TK ¶ µL^€³ÂÅÜQT]‚çÕ9šÀâg~¡ÓÙ4·>ߤÇíÔ_Œ‹rg]¿ ŠÄH” 5¤9¾šÔã ­íG2k\Ü;ñÆ´ø;yÒeÒšœßDtI-_Gp5*Ø.Ô2y1ö²&探ʬҜ+’LŸŠBí¥åE?d¦´›O6•áulNÛ°þÉþœ³Y¦ ÔgáááÕ:ýúõ<ñÄuÍíh8½6›Á¯‡ ªí¦­ZòdßbVÎæñ‘®hãO‘ëÞ†Fµ~!Ax°]žHgC—/3jÔx‚írpìô?­ë&Vœßo²"ìäµ<üS‡Š;ž©üZ§Ð‘¬Nf¸E ²âëO4•âwàOž‹tdÍ“ƒ8c+flB}gaa‹O=¯€QÎfÍ&5¹:üf*<ÎÂé?s¡0Žˆü¿>‰­vÍyñóÉ´ªN¯§Ä‘Þsæ>e"cWY¢Í¶äÕ¥Ÿ,¦üBµT®Ø¹ äóCi|~‹“¬$â/ë¾ip;˜;Š{Õøw‚“ô|ýUMæ 4féÔ'8Gý§¡&gŸ»ü þ˜ü '­DϦ ÷Ⱥ+³—u½î!‰m{¦ÌoÀ‚Ÿkּ̩;Ó~ë^³Fá_®JÅeŠMWwIg’•`+k8=š×:ë'Ga߆wÞéw‹£|÷Î;÷=&AAÌKŒaÖ'²â5t~­x÷x\t h!“ ‚ uN$šõ€´´ çý°Õ•âxüÒ²†W«-Ù%;½½¹ÃA¡‰¦™Y_Œ¡ý¸çh´f-år=M6l¥ý¸ç°¾cîЪ¤il,S–-#×ñSVï¦il¬¹CA¡ž‰¦IKËhþátâ']ó zUô£(윰ÐRZݾ‘’s¬;áÌÐînÈáÖc(N'ÖrNìu.ÕR¥MQ¤½nTœ™5“–‚Ç–­HŸ)#ô½pIÎåì§Ÿ`TÕïMu£øõñÇé½?–eiÄx»°}P/.ˆù™‚ Ü'…ÇXß“—:ß\ƒØ¤ù‡…/ÿˆ÷GÑÁªší–’Ql‰‹MÅP¹ÌÆ uq:šòZˆYþEÄÎ@fVЄ£?ÿ€ãÉ“Øh/õÈ.µéSï“Ì+¢ˆ à’í/,37½›¹Cá_Ds|5©§zÃ>æåióÑÈiÄ=û'K'6¡Úï\r[ܬJÈÒÀQF¹&­•6b ­ T‹:¯Œ*Ù;cÀŠÜ¶mL’yƒšRi©¹£á_EÃéµÙ ~:„«wMÅç–ðüÐÿÃò?»X16×:Œg¦šM[6gT»l6íÏÄ€Ì=ad·}„æ–wª W‰ÏfõˆÖ†BC!®ŠØ+¨w$_žO™¹#áߢ(œÍšLjrÍŠû¢=Lî6•“ŸÂvõLÞø-Ž­gÊYÝ9šG|ó5'Oeâ.5Åy­˜»h X$Õ$ÍzľÈ¡º»ë û¥%l*rôŒ¶Î'èÊ1“„,ƒÛÊ,H0IPJt´Siè.7Š.uAîuWf/ëzÃc½ø%÷ú; ~¾·æeîƒùlÍà{ N‰f½bWdGLF<Ë£å„kMXZÙ0"Ô›çÜÈcY?Iàœrìœ\x¿£'íêË({™+®ÎûxU[ÈŠâjˆH„—é¬Îá )d—[³ªÌ ?™Ñ; ‚ ,Ñ¡T8j9ZTÄSÝ›³eD3¾j*gûÉTΖ8‘Èo~Þ”·lòù_D1õ¦Ò†Î\yÎíÒ×¢?© ) ä©/9² ‚ uCôhÖ#vÅÿÏÞ}ÇU]ýÝÉe\ÖeÊ%àÞ{ï£\•ÙÐJÍÌæ¯©Õ·­eife¥fiæ¨PsWNÜ¢¨¨,Y".óÎß(" ‚€€žgq?ç3Þ÷^î‡÷=ÓŽVî:Ú[Ë0›Í(¤,”rl$€QÇÞtƒ»Øà"—â Á:4‹8£5Áõa¡ ½¹²\Ф…@E³"[ðK®-—Šw¦U.n¢6SAîi"ѬG49NëNðÒ†0¤Ö<Ù×`Г “1TU\ -WY`«Ë#Û\——b–â]äM´Eh;T°Cؤ`BNl‘š¿ - ²ÊGs×AánMçõˆGª— i,Ûšm4åã X4¸ú’LÞ†o¡1ªÈ[ì!AŠ_e³‚ú¿˜£ ‚ Õ!VªG<Ó<¹¬O@&WÒÞOƒWT&—.xKx*\*4RŠ¡°ˆ¥võ¨ù9 0€ƒêƒÔR*ø¯HF²g‰„8½%iöu£ ‚ UV¥ýÿøã&Nœˆ•ê÷twRtiDê ›9Æ%•î2@¢¤‡£‘Ï"sÚJÅÅÈtr5Þxׇþ™WmÉ $×ÑŠ\‹d.åzq}š#AR›òÕ¤˜ÁFVHUh6áÎd‡0Ôõid“Æà«sn8ëC4¬LØÈ@[Ð]úƒO>Úʽ–Ę\g,âý‡¼«¶:QKä®5¬ ÙÆ/+rø,~;#Ê®riÎåÈ›=éó©¿¥ï(_.÷•J…sãFwt¬è£YÈrì$v|úÏ^â œÑ8:ðLg'¼$2Zµô¤×Á8&ýeÄÖÑ™×»ÚPŸ©xÄ&•½…ä;ýÇà¬Á¥J̸)´LU4Ð9BA¨_ž xrýç¿J+3™!ãÙ“?™vê«Åîxqñh¬å`ˆYLïn¯q`ðjú¨«p }*±†ŽLÇ•ý«U¸KÞÑÏùôÊÚØœ¬þs„{”H4ë_+ìiM'›–åʤ¶<Ó§ÏÔA\•Õ:¯ ?ºþ@ßì¾(Í¢ö[„Z`Õ–—–´-þÙœÍáUQt™ÙÍÕ®D¥ Ö€!'ŽÃ·’ÙtUU¼†ÊÃ€ìøŠËóO°ð•0F/~”UD¢)7S<(;„¡%Ö%Ö’lÊ®ã¨îcþª" o5 ¦~³5Úâ[èËq›ãuŠ ÷ƒœÃ¬íÃÔneÚ­‰¬ìÀÀÿËfêç“ñQT|ø) |Á,¶ôx›±ž¢¾Fn¥8Ñ´ÉßfyYëé%FhÔ©U‘…ë:ŒJ±Ø×cŒÛ ÛŒ1nôþï1ÛB'ÑÝäHA„š¡=²Ž¤!Oкl?"™Sö&qd™'K'}LxQ ^4ç?æ~ŽùÜb^œµˆÓY§ùú¥ù„f5)Bá¥^Jºí¿²ªõUìâYMš«sŠ»¢>Çyþ+ªVàÞ)H%@À²¸9¿AGÐóõ¯éÙËsñ ÛÈ÷HgІl{œcÜJûù±ßv?}³ûÖIœ—ãíp÷ªßUóqQ–xûÔu·åêÒ—+)ÿÔu·U”ç‹…uL]‡qKõù^Ô0i9¹!a/W¸Ò˜ÌÒ‰À]qÊ>D†jl92Û!¬ÏÍ*þ9;„ØM_1sÁËtƒ„{Üš5kn»Ï¬×^¼áqµÍØ‹ÒqÓ¬ÏqªZÏGvœŸmÀ0t%Ç>Z@ÕÆHÞîn½JM™o2ÛÇeІÄuŠgÐa/¶=ŠÌ7™>Ù}Xæú=-ó[â¤wºëq¦$©ë}¢™xIÕ M'M—‘hê ¼ê}¢YŸïE Rn[´£˜á_º]ÜDvèbÞ]|˜,©™Ì¸\z/YB7›ªÚœs„ÅoÿÄ…œ³ÂYú ¶Ù5gÚ‡3iuµöTý~°¼¸üµ…¸|2›NõiÎ9A¨ae“Èʸ£D3ö¢”‹g‹çÕÙñ§Ÿ&¦zyólqºw àülú2ã÷‘ÞŸ íp¨h…ºáîÖ /ÏAtêð?._ÞC|âvd¾ÉìíÅ‹»‚‰ôIÃÂ#  6ªé›Ý‡¿˜’2)wg¦”$5—ã‹«ÂyâÒH[ïÎÄK*⢊—é<¸ÛÆ…ušp:ŸaжÃ4Î6¢Ó4áèˆÙl‹£¦+®.}hÞôuÒÒr%åß:‹óft^åù Më…Ò2¾Þ%œ á^Åq6(6=øèçe6J±ëò<Ÿw©Þ©%¶™õeGýTñ>J¿ Ìûaó~¨Þµá^vGwŸ&&ŽÒ0p”¾^Þ0¡aÄ©TÅ8,ŽðaJÌ@ØÈ,:5jË©¼ú5Šñrò} €ÃGß">±¸VÓãFÏþìî…O¼# ¦ñÉÆHÌÚäµÁÆdÃ.û]w-N—FZZwN uç„z—dx4.¤k¿âu‘ºöˬóZÍÖ±öxú->yïM~îoMËõ㥃´ôƒœ9÷gÎ}T/“L¥e‹³N ™9¹WþΖí™6¦{å‡pYx±á½Ç (ž± ÎU;¢ ™¤*2ÓÉ>ŸGå’ ”üœ-ÇG£ÇãZ¦©jÊ/}ˆ´(Ÿ½¿ñÀºƒœŸÑ‹ôz´¼© ‚P÷ª5êܘ²ƒ¹cç‹ý©8u™7¾Ogñ—¦¶•Âh|žºÁH¿Î„jÖëDóvL2»Dr©UÍö4eé‚¥<ÿÜóäJµtÊë €B¯ÇíП؞8†Á×—‚Þ=1«j¾רãõm9LÓÅŽ“T»Ópó—liýðl-”Øt{å¯!¤ºã^Ÿæo–iwíÙšilaÄ%OF~»š,ˆéÚ•ôƒÇqЋDSA¸ÑŒ:¿Z±£åÀÿ=Íúà¥DdEñuðZ¦¿¶ŸÜP¸=G•œÁIK â€v]‡S#tV:N #~` V- >/žmŠ­8¦%ðüwßã·e1ò¤$Ô?þD£~Qž9S£×7ë2ùú¯HÜtdœ­žèü˜TÙ˜FF¡›â/ R› ¬ £È¯Ï]ð$ åd) ¸—š¥÷¶¸åê‘eâsðN¶¾dÕè**‚ Âýª¸î¥ ‚?öØ1ùÏÁxÙ)q3ÛQ‰(èEË:Žð>4¾‰ OíÌÀ*HFTaþ*ÿº©Fhµh‡iy*~*ûäÿ°Øoº½iöÈŽ’‘â6ëÖãüôt’vm¯™šMS!Ûvœàt‹Î,ñV Õg¢uõÏܰH$¤ä)ù¥ÐÄH¥§ô 6¿ýŽå{É\~8O•é3YžIhøV·^ßü÷Â=ņîtðÌ GU&é¹:°RbÊ=O¾Ê«ú˜ I$$æ*Y™of„FG³2T“»ŒcY—qu› Ü …'žœCÿù¯ÒÆÊLfÈxöäO¦úú.yG?çÓ+hcs‡3^äŸaÍ_z^¹=åä}“nãߦCø—t¡ÒêSo2¡”ñM\ز/˜ëyÔ鱺§Æ9fe`gtçñ¬$ÏãCð>ד;½‚cÓ¦Ècjhªškƒ„®¹:XèÉg«‘dÈ òÎ&äÀ.ZmEò_)j¼M=üDÅæ*ù¹ÀÌŽ l>nA¨U[^ZÒ¶øgs6‡WEÑefo4תóO°ð•0F/~”Uî0Ñ´îÌ{ë;—ƒóÉ:Ð(Ñ%Ÿ#ÝÎ'ÑO«Î8ªä smÇVÝ/\(¦§s/l<ŠνP+Ô·¿@-;¸w!ÿîx¯Â²->ϳ/¿ËU^@DãW¬,yìžÀø+X;eŠH6…FËÉ i {!˜’FÛ!¬ÏÍ*þ9;„ØM_1sÁËt©ê` ÌäYÆŒÇ6àÿñn~ér†g;Æ£»~¢OÝß‚¡ÁçÍ-5Qû§·?ÀZ¢„¹µp£'š4gç'üž‰ñò==ÉèГE­´ßUÉ®®,zzCeÝi"?BaôêY¥ÂøvÐS¤å=ÊW¡ÇYö/Îg|G&/ÓÜ®9½]ûÐË¥Íl›!•Üýއ]{¾@מ/ܰíZæ°Q_Õèµ$(wÿƒ,:£¿º~}«5"¿ç®Š×žï¹k—H4…†%7Œ-ÚQÌð/ßÏKý~°œð¬p–¾¶—OfÓÉ® 5š¹ÿ2³çlŽuyÛuï2ç×¶20ZôÑ„*¶×sbùúÏt¾ë±™ÇS† 9t˜ÀÅK8ýþ<´u^µéår’;ŒÄµsÛ Ë¬-x¯WžÏkÇÒCçY‰cp‰¹1L {š"Eí\ÚÒÚ¾ ­ZSxÜKç%<7§E­Äya;ûþù„ôÔ hœéÑ÷5p9ñÄm›Í·½p§îjÚ»ÞYúØïI¤î×2daù$O~ê4v“Çèã!¸)Ê;±yãm²Wþ„¡UË ¯qiù1Šœ°L+ÙVtÁ ‹8;…\›Ê1ïâí!__?N“’R•—BêžM>ú¹âÏ›Òoó~˜À¼îôÜ}YžqãÒ‹~ºÃs Â}ìj¢YjÂöÍm{©/Ó_Âñ{Ý0ßžpwÉŠ iùö\Œ<Íq·e¬î<€övÁ¸mÛN‹wÞåÐOËÍÊp²¶à­~­x¶sKgý ]m³ÿJ4å*ôq|}äGNéNaï¯âÀþ&øÚøác틯/~6~xYy£Þù·ôôMüûïÄ’Ç—Oðûª‰Œ{t ƒèÜcÖíŸGw5³r9FíÇ5âØïIXÌÊÅyQù¶8IAv“'ïõW)œ8¡d»jÍoØMy’Œƒ{+¬ÙT;ÐûË–ü7ñ4ÊÀT.Ç™pŒHag¯¿¸lˆäãw ôºãŽÃèRrÓ\]ªøŠ‚ ÷“;u.&l¯—¥ÐÕ•üÃhË7 kXf7äÁƒhô÷V#­{·ºó®*›p3Õ, 3ñLÔ@.e°²ãøõ1MLn ±y1HÛGln ‰‰¨¶8[8á¢rÅÙ• ŽJ 6rklvXË­±‘Û`-·ÆZaƒB"ÇJ^<Ì4"îm R—i:Û÷Ï'%µš·Ó~\#ŽQœ\n?rF+¡h‘Í 5œ×(wíÆèíuC’©7éÉ;Ûß&eçZ ûô¢ÐXHZa*Éɤ¦q¼y&Kß܇>OK”:ggüþ]lBE[Zé“xhCùjž½ýTáAî7w>ê\LØ^/Y&%‘ë_yª<òUùä[䣗é)´(@ç¢Åà†rݼNðÚ¯ŽU{Ÿ_ý@üz“ý&¥Ïm–É«:ä—O’³ÞL 0ªÁ` 5ìÀÀ€‹Møæ‹>äÚ™Hz‘´é˜%f.àÏZõzìÞ…Ó•Ò\]ØÛ¿?QAå_/AA¸æŽF×BB )ðð@z€ÆÖF$ c}ÆZ¦ö}›¨(2ÚWܯñ~±'ƒ‹yZþÏ¡)ßt‰¤Í,7z ½ùôE\ïøZ?.‹V{¤ÜöFží˜òôÎJŸçZsyÒcܲFÓbó,¿ýž¬¿6–+³9š‚ÏR4tH¹²ƒ»8þç÷ôÞÜ’½½bé¶×‡ XH®¯ñ$þ‚ µ®x¸né ÛALØ^Odtleòܶm`\³ñl±Ý‚ÅÖX¤¤’Ѿ}©½MÄÆ'ñÊÖS ØƘ±¬Ï0RœZ˜)2Z².߉søªÀš8sl`öý}™YGް¨cGžžÕŒE;2ëÈöý}¹V®çãSñt =úþ_¥Ïq-É,ZdàO)ZdSÜgó÷òý^týú"‹‹Gµæ·¶«~],!]ß>^#)4šÞkŠûhJûÆðßÄÓô^Ó’¢ N•ŽSAjÂMØ{QÊųµ7"}ÇŸõ?ÃmÓf.¹µC¯l¦ã§ãp 9Œ¶q &Ú[±Þ¸ÃËÿ’“×ò®îhˆgCœ›æ5KQ‰[ù0T'èÔîEV]‡Êw4Ë©IMÚÎ’‚NŒlÄO’S³ÂyVù˜½‡¢xÝmjÇ@ÂÚÑ“×]ìØ{( µcÕÏw;'-[nâÒ¥÷ÈË;‹µu37žKJü0Râ+wŽK!Ñ(žw¦‘ƃ»±ÏG£ÿ3Æ¡ÌÞØ=¿ŽóÆ!Y¼mãØ^:,-ž½¯®'û@Å5·úˆhÎÏv¡]—iÅšÂy×h4gÛѸiû © Ú´^uz|eUå~T—÷®†pßáþsµé\M÷O–2fÌÙ¥ãØu?nìyÓç>MLø4©ÉÄvü©`à(}­œ»&}öðÆ+wáJM0>qëÝÿ ¾ɬ¼×ééøÓWÓÖªôÔú ¹ú³“¶ ~MŽ â.¯&¬ÈHó:r’ÁÂlF‘ÇQ+ÞU_(£Æy{ÌdëÖéU>N*˜+³µüö­[«ø j2äüh´";’’6å›¶oÊ Hƒã›ÊlwÓe·]µvPwš%%ášÊ7;ζëŽ>|1„W¼ÿˆÇ¿ç¿=/rqO™‚ˆÝóKåc­E½{}N#ßjLjŸLõޝÂuªr?ª«{WC¹o֘솺>lÒ|•`Î g}ˆ†• ha¨ë4÷>×–ñ±lÉÌÏfÑ¢*cŒZ"w­aMÈ6~Y‘ÃgñÛQvÒws.GÞìIŸOø-}GùrA¸ÇÜù¨s@æ:„\æÃ ²–ˆE·ê’ÙÒýða0¼Lðà³§ygë[|;vÙM0pòÀ)â¼Ûâ'‡ xÉà ÖL ­„ ­‰KzКzh ·¦—Ë óö®ë0¡þPx2àÉ9ôŸÿ*m¬Ìd†ŒgOþdÚ©ŠËÅßU/ñÓ§kèÈôw\Ù¿jQ…»äýœO¯  ÍÉ Ëá^sç£Îo#Ï|}õ ‘tÖ1)¼Ôæeú\éʼn´ã´ujwc¹Ù@ÄÁ<æÌ‚é¾Xï…‰„þ.R–'y#|ÔÔR‘c ‚Ð@Yµå¥%WCš³9¼*Š.3{£¹vS+ gÁ=š…{ßgùtÅ{Œôªâß.•†Ù7é“‚…¯„1zñ£¬Ú Máþp'£ÎïþÚ}Bµ¹=æÁŒ-3x}齃)5ªÇ¬çÄ¿[ùŸŠŸéÁpõõTÒÊRÊ _9_5‘ó¬Šd4âÝ¡¡Ë9ÌÚØ>LívµúRÕŒ'ß—7W&>ý07ÛÄô)«ˆ7ÔäE _0‹-=Þf¬§˜¼EnE¤ ÔFÊÃÍ'“9Õ¯ö¹3ë8¸}3£CmølF/ÆØUüÖæ™XŸb¦‘½ç»³ BmÐYGÒ'hmuuƒ…?ã^~šM]P;2òW8ý'çòoyšªÉù¹Ÿ„c>·˜g-âtÖi¾~i>¡Y÷Àt‚PÃÄW±Êq¦†·x›ö3éçÑ7©Žv¥’M*pñê^.<ßm"&3‹¢Œ\Jhã(ã ;ñ-C„†NËÉ i {!˜’ÅxÍfÌÉÕ®Afò"’éÕïšœbÃvës³ŠÎ!vÓWÌ\ð2]Ä` A(G$š ”ÜKA˦­y8÷aæ˜ÍêkÙôé´rûý»EBœT¬&â­á“Æí(fø_ŸÚ©àì2æ}J†Á ¦BÒ34¼²êy‚ªØEÓœs„ÅoÿÄ…œ³ÂYú ¶Ù5gÚ‡3iuµöTý~°¼¸üµ…¸|2›Nv¢÷»pïªÖ¨s¡á±ŸíÈä§&óØû±6ê7ÆûO¸ýA‚ ÷ ›|ôs6Y6ŸÆ'?”ÿÒ]UÛŽÌú²#‹~ªx¥ßæý0y?Tûr‚Ð ÔÚ¨s¡~Ru¶ÄBmÁ—²E<|hmÚÑÄ®I]‡%]‘­ IDAT‚ Â=HŒ:¿ÏlšNF{ðøÎ·ÚÏå‰&³wõE6͸ÉLÞ‚ ‚ w‘H40—vÎ%ïp“Lã’ݘ%ÿ¾ƒKOÑ#]A„ºW©DÓZ¢,ù'Ô&yaXj.ÏÀéIQ¼øêKDt ¬Í–ºMAA¬ ÔÐušäÅÖÏâÿ“„#Ml·‰~!½ð´öd¨÷ðºOA„{„u~:¼:çߌœ˜j¤Ã/V|ì|Ž%/¬dÚÞIü6p=л®CAá Fßg¯ŽG6= ã7öŒŸäÅqL™.á™Q<ûÌÿxdçÞ´ÞY×a ‚ Ԭ솺>lÒ|•`Î g}ˆ†• h ˜²9»îK>ÿíÊF.XÈüxê£çhaY•‹¸¼é]^þ&kg)éIzZÎþ’·†»‹?œÂ}ëNF‹ÏK–²/—oìé4É €n{sXÏèmž|²ó킟áŒÌLÅÍìVÇÑ ‚ Ô…'žœCÿù¯ÒÆÊLfÈxöäO¦@Gä¢yhóHÖ¬ÿ™Vê;œ@=ïoMßN×ÿöóœŸ}Ô—ôîý:ý#–ÓÓ¦&ŸŒ ÜÛĨólÄ×-J’Ìk:MòbÊòì›3Y^;,ÒÆ±H²ˆ+’ä:ŠR¡†Yµå¥%¯ÒÆ 0gsxU]föF# Nóý¢(]Cí`ƒOçY¬‹)ªú5”^t È`Ç_'HɈåà†äwÁÃâö‡ ‚pH4ïQŽV*V=6žFwåð%1’èºKjŒå– éJÇÖíiûÐÿávZ[¼¾uî·nOÇÖíéØúrë:R¡Våfml¦v»:­›.™³q—Ir{‘W.òó C¼ôÔjŒU<¯Â—©«çãø¿îøjú± sWLÅOqûCA¸®Z‰æÅ³²šŠ£V5„8£Ï×ÎÝk{ ^±ë„:åQñ=‡Í'ëtø:EÛ]»ð=u¹^_©óÙÛv-ùù²ÖÄâÏ_4ð—ŒüSæ«eé9F>..{!ÚÈo9f 5ýän!0pô]¼ÚiÚôÁº¡Rü|GÔáÕDGG3sí~:ý´—þœcujño’Ë>+Â_þšÞ¯¼G—lŸ[ÀÞf›ÞD„ãÈþÏѪë0ô 4„{QC£=²Ž¤!OÐúêúãÈlpvëÊœ—‡à§iD÷³ð?·™óùU<±>’%½DÖ܃Äddzgno[L¤îö‡ ½*õRÒmÿ•U­>š±¥4iVÕ¯‰w_Cˆ3.J_På’½ªrQJxé9«³¦ó«íwd¦GóËW§ÈqÒáîNã³gé¹aO}ŠTOÏ[žËVÝŽ¬œƒ`2³/z¸Ë™¦„„l#ß%›ðo,ÅÛlæ¯43\d̰–›obÑmmdÞ¥:t?¿Á\¸ðÇݹØò÷¹sëë:ŒÛòòêGțº¹¸^ËúèÈ|5DDDðò¿qà —Þă٠Ö‚nôä>¸…½ÿÆ¡™äGÓzšÏ5„{Qâåä†4†½LI‹¶uK& Èã—ƒiLíBAì 2ÜÚV½É[—ÄÉXúm…‹­‡aýpü,ŒËz³ü ÷©»6ê<ö¢´ä›ùŽ?ø41ÕË›gCˆ3.JQR›ùï+¼ýõµ’pÊ$ð¨7­µÏªû˜ž³AhPjmÔyÙIÚ}š˜ðibbÇŸ ŽªZ¸šÐâôö×ãí¯çß-VôVÕ¶ªÂË{}é:Õ™wÌŸñ¤ñ)šËÑ©MCCñ:AL«–åŽËÑ'G{o™Ä%~]®<>ËH†JЧ@Â`7)‹ã¼b$FxKñ¸ ‰ftô6¢£·1dÈ7lÝ:½ö/x"#ÿ&2òoFŒøžM›¦Õu87¿‹¸ø]ôîõ9ÿí©ÄÍÅ,%{þ5Û‡yt–dÐVbBb–†=ÿ˜Õ$ aé¡?˜ pãO%•¯|4r."d—Æ¥®YˆóÖÙ†6fËTG.ÚXÒ¶ž%™Ð0îEPgƒbÓƒ~îQn³LÓ‹—íUÍ“Ëqñ>kë²çˆ Ü*õõ5Ϭ+ùWZ}üF^‘†gm5›—e—–J¾›'óTÓ^7ˆU’Åœˆ9†3i<°OM¹åñY9Ëm»œmäû\ ã\¤¨Ìfö¥˜P9ÉøÀ_ÎËNfö$›¹õ™kÖ… ïâÕîLCh6*ßl.Q†‰V’Dž“&2R"#ÔlWü¾K,8c6ÒI’ÀóÒx>ò±dóÞhNVú×ÞDô¹^‰Qój7Mñ&sÖËg´ÒŽ£¯ašÎŽW»ip¬úS¼k½H¡&U«fCùöÛâôö¿;‰f¶³3ÏœàaUg´éÍXcñ+Ç®£cN.YA·<>G{ü†Çq™F¾Í’ð—”V×~›Ì¡‡.j j)¨Õ2œ3L¤šd¸Ü¥–¹èèíwçBÕµµ®C¨”øøÝ•ܳ~’Â’GäáˆWËzK‹ËÌH‘Kd¨,,°©Tu¦‘s§ÏðB„ŠW†Ðûê¤Ûê%Ói²É‡}¯aÌe¯ ó()«¯½H¡&‰ Ûï3qÁÁôذ‘àljèÔ µFÍ4ã3Äú‘“š“MLH+QÙ•nà;­”‰^RÚ–þM’€§Bµf‚ì Ck"Y*Áþ.4 ¥Üª)»ÔnÙf~5K$½‚ ^ûŠY–l\J6Zñ»É™€ˆ ¦?àGÐmÍ œ<~𗢬ycXú—êèëñÝdœ¡÷ìÍdü¯1»–“¦ÚCp÷¹6à\ݽ=ÐÈýß’)&ÚA¸cb­sá¶ J%[¦Meè²e‡"£‘;š¤$l23ñWÍf¹ÝöØ`´ÕX$7?‘ÉÌ– (ÀÄO1&~@£~2:É$ôw•²2ÙÄë©fdòâ>›D¢ywI”„™‹›²H¸bÖð—ÙI&®˜)‘-h‹”{{ÌÒq"D¢£¯¤«’‚|ÆIc1¡ÀÁÛ…{é;Ò Ÿ[%›ú¾ ËEK.¯¯½ru£‚!â覯:ñÒû‡„1wBo;VÁÉA„êk •’æáÁê7ÞÀ+"û”⃂ˆÆ P0%/ˆ+.óm×oñVz3T9 šò'‘J˜Õäæ¿>Ö–R¦ûÖâ“*áVMÙ`†&9-¥™HÍŽ%s V‹YÊœùÃl¤¯4ƒ€rg• Å@ëF­ñI>D¢ñ6‰¦Â‘ožèYns§ƒ7/Aj‡Xëün2G°üUkbK6ôbÒ{¤*½“ŽÌÃùn“žÑo„”)«[…‚˜–åG—¬ h:óÙÁùìËÝÇýÐZÞ†Á¦!Øb[‘V–” ™3ûåö$J$X˜rhoH¦¥É„D¢æ/ n¨ð7k¡KÄó¶Ù•÷‹Gø ÁK—2ÐÑM=z°ÓEYœB™‹ðßÏä“Ñx¸óõcÃ9Y2Qƒ”L¹+•Ž$I%X˜²i[˜Ds“‰Ä–ÍÖÞ\.¹Vóbh\#_eš²Í(9lRc#I¡9rnÕ¾ˆ”D³ b`€4À’L ö›åHòqBÆ©¤“D[ÚáQOç»,í‡9J®¯©Õ›G?ÚASP¯?Héõ¶ÎR\&‚ "ѬË^Lz½lry™¢Ø÷YwÈ‹ÎA¹5×,y—dvÍ¢Ã•ŽŒX4œŸûþÌGm> 3]ègê_ONKÎJ4×G1Ä$!MîÎV…îE)8›µDÃÊ„ 4ߢ¬*·.£–È]kX²_VäðYüvFØ•*NÞÂÜç–sÙÖš‚œFLYüƒÝÀ7'A¸ËD¢YKLÙkùkÃÚO™ì—j¦Yò.+p- ö¹8ùëQ&o™Ì£¿çƒàh#mEó\Ì®hÃÕÈ¢m°zàòíOX«òè¡Ï+yäfÌÆ^®¦°Ü~*ÎI¥ø ©ÔüÍJÖô÷ÀEåÉÅÀ@.ŸŽÁƘrèr:ƒ‹Ýb¿Æâ&ïq.Ý ¯/¶íjÈÄ^aWA\µ¤Â¦l N $ÁìÁW¥‚¾hråj ÊgœôÒÍÁ•t&KÓèÝn6ìŽW¸ç‰³°n''pÐõ‘;¶çbKÇ=³K¶YŸ9C“çfsqñ—µŸl õ‹Â“OΡÿüWice&3d<{ò'ÓN Ü¢¬*ô©Ä:2ýWö¯Ztc™9ƒm3_àÔèÙ8Ù•++`àÌ­ì[7‡†V« µL$šÕQ´‡5ïXcÆ û€'øÐ»4wTa.:Ξ_—`;êOÚÚ%°;WÏ­v¬¿Ì23—ÆÄawÞŽ÷xƒÙó,˜³„¯Ü¿Ä#ÇŸ)¡S0t©oi´”T™¹ÆôâZÃRtR{¢Éa¸é¦™1çÒøìi4®m‰Sz-þù ¢·±p{ *k6õíÇ&·›%RÒär©×{½J¬ÙiÝ3&ÔÆL:%ãgª©×ófMÙeB+~7©iW“£Î+ Ðë Š‹Ã)+ WÕ_H9c²(¿. u;9îïXp\Ùpa{.îïX¨©xnÔFß|W»‰fÑüòº3V84™Êà ÿ£¥FU® àtzáõ2¡öXµå¥%m‹6gsxU]föF#¹MYU¨ü0 ÈŽ/_–†Gñ¹+2d¸öæí œÉN±rp«µQçeWI0œ˜0æçüî'økå\g>L곸Ün%ãýí‘ ]«k°‰æ5ÙAÙ„Í=‰Ï7|ðþëìí7$Ó ¾zl!E–¹t3u£‹¹+jªZmPÓ¤dȱMVH].7N«(#Qn¥ñö79úæ ¨ÿžÀÌhg~îCÎÕ?ZRc¶N}y»» šóÿ0{ï)NŽíH|¹4)™ /v* 鞯-ŽËœÃðÜpŒ âžìUiФaW#¹æ­š²kâü•ç‘’Ê”M›È°µ%ÙIƒßæEØ®:OäüOÉ/3wkà .Pœ\?•…÷Ÿr¶Î‰£Ùҿɼ:„=îõëû[ÆÄÔjìO-Ð& yDìxŒ?-Â}Î+8©FÞP¶paþ¸V&ZPìíÃ3ÝìªVV†®äYá¬.~£ejW,ó’Ñ–ï;#÷”Zu^zE ‘t–%EfÝ”¦}çz|5ù:v’Øc­x¿ÔÂ/gßZÁ`¡†Å`m ò峤/  ÷N¾í+% »jC<‰Vûø@ö>¾f?:˜;ÐÒÜ å-§å:ÞØ¥¦¢öBa0 —W·‚]JªÌ“-2==tWð5ߘ­™±!\¢£…ÉP¹%±Jèh|bÝcû³|˜'¬®e™*®Ø8àLŽ´A\>q#eM)i o¶) t-H¢±¹|)3á«O#\aOŽ9šù³x«¦ì²ûÝÙò§¶GÚ’ë–†Éëz­4Þ ›dgr:7+ôz¦lÚÄö.]8Ú¬)™½>§å™÷ñù5ά[ƒÉÂSª‰¤ D]Ž"6'†ó_ä¢Ûy?JÆJâIâx}‹h-K­2Yàw7¦7"·nFó/qà诤ëK'“Åe®Y{Ê” µM{dICfÑÚªjeÕ"·ÅÕ:ŸT­e´W(°vE-Ú…{œu^GLEÑDí[ÌõlFðø§×û R¸‰å}M×›jX´ájšGÚ±cX,“þñägï|Ž{™‰Mž€L:š‡p¶Úfb-ÍiN;s‚ÍMoH:úý2rœ4d¸»Óhó"ÞŽ=Âw’àT¶±»²d\–{²U¦£—.ÿ ’9­Ì Sz…‰ÞM™‹8º™ì9õÅ2Ž†Î¸^&·ç¸[!C#S‰²Ay7KWÒoH2d$+³]¡£gA"¾7i7I”$*œÈ4ç –@]tê-Ý´joÏ…Æo›ü纥1lSW¶Œ“W<Òx¯«¯/Uté™juI’i6™IŠ=Ê9…Ú®FÂVÏà¢m>—œ.áT脟•®ÆÆt<Þ•îÆ tÿ4˜”y:µ8I“¥³ËÅ8ý™š}!nÂTMä_‘l;GEù2€dÛ®åʄڤåä†4†½LùN·*«&«æŒéÆ·{Sxª± )ÿ†Ö~Ík:¡„{€H4ïÔ Ó)Q7~„¡Îº§k2´ájº,$ôñ ¨[h mœÇäå4¹ú8Ó 'º 1‰Ñk9¥<É9Û=èU«p7øÓNÒš®†@†~¿ŒÃÇÑ©Þ3Éüª?ÓvìàãÆÝYͦĊ#rKаd‡…;( oÑ%‚Ì€DÉE¹}UZ¥P™‘ÇR°$…ŽS•tÀ…ŸÉK‘ºpi×v„`T{óG¿–$•þXsLi…+vY]k°/ w~MÌ¥§72ceÌ¢Ka:öud–mÚމeÔ{X1b‰.Î7=ÎäÏ–0lSWþí¬¡Ï¡@ÖŒ8LBãxÒ9d*r8ïqž~:B=CÐ+2Iµxfþ…ŸÞ‡Vvö -jÄÄÎâãԢ¸Oæ\~¯¨¸½Iq3úá÷ÚÀâ/i´ô;,£c(ðó%ñÙgÈîѽV_›ëÓ)±õ™Ìˆ)/Îo˜Þ¨ø‹TI™pw䆱E;Šþd÷·*«sοýrbÏ gé 3ØfלiΤ••#ƒ¿^Èþ™³yz·%y™­˜¿dˆ$ä™uUú³f-QÞД^Óvü©`਻³îwu|öðÆ+uÆmý»ÅЏĝkä\ù!î}sQ·Ð–l»Õ¨s½â ÍDåsZr–ËŠÓHTgðÊlºÑBDy M=ç°uët^ awË–œòñ©‘xkÚ!ß°iÓ´ºã–\Ïtãwo.ê—l+Û”]–B¯ç•ŸWÝд Ðáì9 eþäÉ%É¿Ô$Å:Ûyž½NO¹­\K¶\ËûdÂ|¢É´KFb–`¡wÀJï@Pª‘þçSÙßrÎz5®kúõ\H#ßãM{–+>LVï^%×½Ù¨ó¼cÚ¾^õÞµÕÑé`{òž©Üý®¶ï·R“÷Mk‰’yóæ1wîÜ*{þüy‚ƒƒëìu¨¬º|¯¡!¹v?˜8qb¹A>·²è“Ï™8q"ÁÁÁ¢FS¨<«‘å“Iu -”Jøi2áí“Pº§•œ_¡×óü«.Êæh³ë7*§¿6¡L¾BN—Î7ÄÓöÿÊ'“ƒl`ÐmŸ¾ ‚P‹ª5êܘ²ƒ¹cç‹ý©8u™7¾OgÑ$Ô,ƒ‹ £ÿ=ƒ†C0錥AÍXÁQÏ“öIE'Æ3Ë{ƒ=çgä¦ûç;‘Wz:Ówí"M­&ÑÁ Œ?tˆ¥ýû¯©`9ÐRŠ\£9?{þ¼Þ”½~Ä!2LD§NH•2|ZF³û†7³pè“XdÙ“-Í&É6‰“'ùÛ÷o °ÕÛâX䈦@ƒC¡¾G’ã|ûõém”—}±Mu%­Uhµâlqé#ŽÃ-3“d6µo_éc]Ït#Ë)™"×ë‹Z\ñÃ>Í+Í÷ßòX¥ÁÀô]»ø«];BJ¶w‰Œä™Ý»yw̘j6-Š,°ÕÚb›c‹ª@…ÑlDbwˆý­b)dòüÓ¸èŠLLò,Œr-r£[,õj¬ ¶ØšÕŒ:‹«²ŽzŒ–ÈÌÅãò§‡¬cOû Î84.¾`™ÖY›d§’Êk}6m’É)5=ÉÙ™ù“'‡sf&Q=^@>Ê©Þ&™I û8}â;p‚o¾èF¿ÁoÔlX]‡%‚P§î|ÔyAì±còŸƒñ²Sâ:g ¶£6QЋU9qo‹8³™Ÿ—)yœŒ_z‡ŸX/’ÍJ2(•l™6•¡Ë–zˆŒFîx¤oÀté8ßD¦}!Ø' 1i˜tzn[Ý0è $«“9Ýä4ç½Ï“à™@aÐZ_ñA"Ua+Q ¹âÏ脵8‹…ĈÌ|g5ò-/]bÆß—¹ª\ÒÜÒHJ'Í6 “Ô„m-Ž&o\/ÙRd¡ û…@¼M6¨mõØl°1Ø”{]&=‡®¢mæZ²½ã™³Øçj¹àí}Óxs:ž(·ÍäC’y^.猟½;ޤ‘EÅ}FëZbü^þÛùBñ'Hˆ;ÊÊïGóØ´?D²)‚PEʼn¦>•È,Gº¹7‡)Ýš¢É^Ašª6D÷Þ¶{Ûÿ*ÜþßÎE¢Yi¬~ã ¼""°OI!ªÛürå¯r}MRÉîÉ$»'žª=âz0áÀ¼â½ÈRgæw½9ŸÿZc.ŸOú­uyÊ<, X¬°Ò[¡2¨PU%?+MJ”F% £…IÜ$ÇÂX\»ÖãÌò•`Uf¬€ïº¹õnVîù˜¤& Òë35k½ÃXþ@ýB;°§U-λ3Òd;&S 3¢—š(’šÐÉ è¥&t²"tò" ²Bvy^á“ÞE$ØmÀ$-@"-Ä!×»<;κë±)Ф@aB޹TŽ—Þ‹Àä@¬â¬P˜W“Ú~lq ¸¦•//ëzC­cY5m»§¦aŸ«eň50¿iÃrúäwnß½í"ÑA¨"¹õ»J( `çgJ³,þ™|Ø÷±’r̓Cû²g×íkgîÔÉ“µvêjÉÎ>]áö¤„Ó,üð³»M×âænîÀq4ž•[;)Ï7 Wÿ³½bKãH\Žz3"t(Ÿ÷Ž&ÑæzGå|yùò,ç‚,dy Ê)þ¿4¤ -ºúOÒâÈ7úçS¤€‚2³¢¨ôÇPê/–‹IaP Ò•™$Õö6]‡¥Î’?»‘£’!CŠÜ¤Bf–¡0+Pš•(£6ÙciVa­SÑær }OE°yÈxìPao¾þ|ì„véÂ…  ›¾>²(_v?tµ`ÍsØ­:}‚;Ææ97]míø~æsøFE¡IOçhP01þþèåòš<þF'O¾[?ç‘nOŒ?Ågï~xËcoW^›êëë)ÂýMž7WGxií44“óFs%º3ïÓm]:Kß^X®éÜZ¢¤óÜ®tîѵVªÏÓ}óÅ&⎖ÛîáÕšésÞ¨ƒˆn¯>¿ž×T'ÆÐ_ba‘Ï™™ú£7S§µ¡Ë#>ÕŠGÕ©Ò#åßçÌ&°¸°¯òq=AÊ“2\á;ÇÊÅ•ŸeëöŒôm…aò#%›å+~F!—áúÃR°¼u3ýþž×¶;ýœÏ›7WæÖÍ} &_ÏyóæÕÈyjUvC]ŸF6i ¾J0熳>DÃÊ„ ´5pyÓ»¼üM$ÖÎRÒ“ô´œý%o w¯xš“–³«?àÃß/¡´Qb6!ß‚‰ßÍ!æã%œN:Îú ñ  gùP$€!q3ŸÍ[Ì’e'iýøc<øê»<Ñ´øËæ­Ê¡¡»óQç–ÁŒê‘Å3_lç±ÏÛöÅ ²{.#X4›ß ßà·XùýèrÛûy»¢®%s|çÈøÚ¥øq(T+ÙÔÏ} ‹åßçó“æÑª¶ã²²¢hÝoXŒ›ˆlÅϘ[4Gr:i|êKz÷~þËéYnt«¸å“™´n(k×}D•Š.°xä›,[ðìÂ/‰þv:.ã!bÍ2‡ ÇQrá¼>ßÄžu_ñìÂOQªÚÿVe‚ÐÐUcÔ¹šîŸ,e̘'²KDZë~ÜØSŒ8/#¨Ù0›ö»·}@b|^­é7ä-Ñ?³Ž\Ù“…k©šÂ.ø $ïÉ‚Gnyè-‡£hÓ(ÞûéÙs˜š5E?÷-®è‡RnØu-ÄejÝŠ‚°cÈvîFzáÆþý0è'’Ì»¤ôçŽàéÝQ|Îë«¶¼´¤mñÏæl¯Š¢ËÌÞh$€Ò‹Nlùëãs&bÃr‚GàQÑ'YüQ mx¼8ɰ`òWoR`œgwÖ$ž{²9»Öÿ{Ó†1ÊY,ÿ#Ü¿ªµÖ¹Ìu¸LÝõ0j‚š #¨Ù0>{÷ÃzÛ\~¿õm›rÛº<âS­$óãða‡—øñç]ŒËÒãÈá^…ƒ„šrísþò·J¦Ï¹õ”TBË9ÌÚØ><Óíjա—©«çÚ¢;¾sDZ,?5¿ŠV¢Ô¥p>Ó‘G¯„-&Å.¸ v˜É‹ˆ&è±ahRú—òê?)Œ¢8ÌEd¦æaåìX~mõÒe"Oî3~^A¡!ÐYGÒ'hmuuƒ>’%½DÖ܃Äddzgno[LdE+NZxÐÊé2Gb Ë—™®°ù¥‡ÒÈ k‰ŠÆ®bÝ’¤˜nHÎvšÀŽŠÆÜݪLîq"ÑA(-'7¤1ì‘à뵈º$NÆ:Ðwh+\l]i5¬Žña\®¨×‹ªÓßiζ7—q6ß|í$m[À»_,çì³É1ëÈ3ëÈ3İÄq;“Œwç© Â=âþš OA¸w䆱E;Šþ¥ÚÅ­»ñ¿¥C˜=u4‡Ù MÒ3hé×ÿßÞ7qÞaÖ’e„°Í9»04$HÀ.SJH”Î@JÁCÉ`B¹2Žb0iŠ,sÕ ¥€¹”pBKì¤ua¤~0²¼’V—ÑJÏÚÝwÿHÃúÑ»ûî‹A±Hž°û…2ÆC‡†šGHè;qÇ÷àB·x\~mžS¨­D…å Œ³‹ÐwEO”®‡é® çfã @í—0=lu¾ü·âëˆä. ¹Î‰ˆˆd¥Í`,ß9ØåE%ºŒZŒFIlCРׄBìžàº"·é¢úyÌ-ýçŒBêæ#osÓMŠ>hü™îa‘œ0꜈ˆˆˆÈ½€F{¢TÞ7"""""r")hVÛž ×cè$"""")8꜈ˆ"Fkv†…Þ£IDD¥µ BMìÁ™DŽ:'"¢°ò´z6‰‚£Î‰ˆ(<Ù?]žün_¶¯wþÝuزk{BÓù[ * =Ùë øÉwÄæ a}€kçn¢mªmÒviæÁd½X„±GWýlC*ë}\¿ZƒÎ=’8½%…œ?£Îy&…–=DÚƒ ëOûzwÒݲs°t]ÿØ‘OV`iæ.ܨ÷Rcý·8·w1fŒÏ†ñŸ•hþŸ†{¸q£ ÞÖ\ÿÓrÌœ8+K.á'.¢0ÃM"" -{|èrsÝÞÛ²ÿ:4Å5ÓÐ5Aä0–›8¶m-v½‡é3ñ«½}ÑV TŸ)‚¢RìÝkáÃ18ÿÉEÔ¢ª¡‹P8å(+OcËÂßàøÃx´B *ª:cì²Lxö&ÞøS|vø¬íãÛºåàxùT|þËè7×aÃ2ŒŠ»ˆÍóæ¡àwõØp§ îÁ v¼¯CkZ‡¥ë.á¥ÉC‘«Àý+_ uÆz¬Ñje†Ì]…!ußàÌþøÅÔh÷Ã)˜ñ³‘Ì.N  šDDÔDzz:ÊË˃ۨ¯aÓu;oËtn7›Å6·ÝCù¦Xøa"2Wà`¿À®é?¿^ÕçwOÆGç °gó\´·_Joø fÎAùä?bëÈŽˆ Õ'ßÅàqËñüçK°àÀߺ¯Á¬keåtéNN܇añ·‰í„þoä¡»vÍÎÁÏ«7býœï!žY“ž²€‚æ•‹ ôìþýôr¨S5¬3˜äP#À:ƒI5@ZZZpts¥ƒ¿=žÎmºÙÿ¿…þeôP‹7ioïÁ‘iÿÆAãÌXƒÔŒl¼ùZO´±ßX¦ù>f¿ýò“ÐÕç°ûã38¸/Ûš48ÿyôs)Ñ'bÇe;|·‹E|Z[þ‡j«ý@5¸þ×íØ°ý8jzìƒÇÑ;ÑßL‰Ü Ù¨swi¿v%F'M9Ô)‡ÖLr¨`Á$‡ÀæWBj$ˆ…E)¯¹Þo)u[wíxPy«†¿…aúÕèêá¯]L|/Œœ¿#k¿ÂÉ]k‘;·毘ŒgÝí× úö¶è(–Їýè «ðH :ñ* îÖX¶1l¨¯³A©LDJüC|}¯HŒAõõ‹øºÎ}]’Ô^ÅΜ¥0õž„YÆè¦f&…NÈF»Î tíJ ®\lü¶TV‹î=­ayò”Cr¨`Á$‡ÖLr¨h¬3ØBúˆ¡Ç7ó*²·MA×ÇxöÇ)M™4Ó¶cÐâCXûj'i#_Uñ›KððÍ_ 1o×a˜îš°qn6©;bÈü÷ðú3* ®ÞÙŸåyS1uc{´ŽS!.6ê.1aÎxô‹ÿ潓}æ$í¥-I¯ä"oü@,\üfgNÄ±Ž Ô5<ÀÝjŒ‹¶ í+ßâãý"ÇKþ[ßÛÓ]ŒúÐâ– 'cÒÚ­!{‹‰œù3ê\¨¶ÕúôÕU#¨Á³¬$ÃÇúu¬)¹´ù¾arõ ƒÖ^(j E»rù|äÐ&?óðoScT¡zº´ ä|ntGŸ¹FPáòåË~ï¯Óé¼¾¡$åù™R>+"jü¿’ŸŸŒŒŒf—Ä=)*\‰ŒŒ ètºÀîÑ ÇoäbäP§jXg0É¡F€u“j­V ƒÁ€üü|ÉûdeeÁh4†®(‰øv¢ðÐu’î=­Þ7 r¨S5¬3˜äP#À:ƒI5ÚéõzÉA3\B&…>ÞˆˆˆDéõzð82‰¢ç:'"¢ ò62‰¢ ç:'"¢  › ™DчsQH8ß³ÉIDR±G“ˆˆ$Ñëõ¸}û6C&IÐÌ@DD]2‰È~Í DDD‘KtI""?(ý Ž ›|y˜1É“f†ôó]$œ9c“l6ϳP ǨCA••úʈˆÈo999ÐétŽó»Ùl†V«õ¸{2‰HÌÊ•+ýÞ×ë¥s³ÙÜìµäädGð¤æÊËË›½V\\Ì÷ŒˆZŒØ¹Û¹Ó€ˆH*îͶŸƒ<M³Ù NÇKÄ>jÕª•O“ϵû¹Ü—°ùé¾8{ö, „ácF†¨2" Wééé¢hR¹ šöIDD‘×°YVRм¼›6m ¸ ""’üü|Ñi%íá²¢¢§NBee%¬V«c½ÍfC]].]º„'N`ìØ± šDH«ÕÂ`0ø40<++ËqNqMû ›DDÑÃù‚³òòr>|V« …@c¸lhh@UUªªªP__#F`ôèÑ-]6µ ûU)aÓõœÒäÒ9Ã&Qôp2 55ÉÉÉ(..ÆéÓ§a±Xƒ”J%QPP€öíÛ³'“( H ›bç”fƒ6‰ˆ"Ÿ§ <ÜÓ©S'X­V\¸pjµmÚ´All,l6ŒF#rss[ªd"zÊ<…MwçÑÇ1lE.o!ÓÙ;w`2™ V«¡Ñh`±Xpÿþ}Øl6¨ÕjÇeu"ŠbaÓÓ9ÅíÛ6‰ˆ"/!’’’PPP€Ý»wC¡P !!)))èׯ/›E)ç°éíœâq J涤À&Ÿ'" _C&ðäz»víš½FDÑK¯×‹>±Â•Àæí©ïƒÁ‘^AÀ¹sç‚U'…HZZšcÙl†V«õ¸½ ¨¶Õ¶DiO•FPEÅ¿“(PAðÌ@ÿ[ "¢ˆ ŒA“H  ¸ÿO1ýÃMÇhÿIEND®B`‚ttfautohint-0.97/doc/img/o-and-i.svg0000644000175000001440000000441511760514262014235 00000000000000 image/svg+xml O I ttfautohint-0.97/doc/img/segment-edge.svg0000644000175000001440000003076411760434674015373 00000000000000 image/svg+xml A B C D E F G H ttfautohint-0.97/doc/img/ff-g-26px.png0000644000175000001440000021123211777127150014413 00000000000000‰PNG  IHDRþ?… IDATxœìXIÇsß…"ˆˆ{ïŠ]±w={¯ (¨ Ò{ï„PRè½ DA¥Û *ö^Ïóî,§wÞÝ·°B2I–d6Lž÷ɳ™ŒgvgÿüöÝ™ åýñâXa~ÃFuÍ?ª.ØzÔ oÌj7fµq~Àÿ“àÕP9˜\ªAÞ<˜Õ oÌj"9¥áWWWÛÁåþG á‚­G òæÁ¬yó`V£°)à‚Dr0¹Tƒ¼y0«AÞ<˜ÕDr0Rò¯yó`Vƒ¼y0«!"×ñ‚Y òæÁ¬yó`VC …ÔÈÔ<˜Õ oÌj¤Èu¼`Vƒ¼y0«AÞ<˜ÕH!525f5È›³)r/˜Õ oÌj7f5RHL̓Y òæÁ¬Ö؆ÞžÕ–RÿúßÀðg H!5ò6f5È›³šH&HNeìøÄxA˜ÕЮC»®õì:þ×s¯cFþôã7ÂÕ^ÇH¤ÐXjé΢]‡vÙwH&H6—Øj€5aVC»ž}sgåc×ÚP]©ƒKì˜;‹v$j²ª&’ƒ‰R57?cÿ ¡X'´¹"© „Y í:´ëZÛ®jCßÔã¥Rh,I§³hס]Gö]'’ƒ¡Œ”ôÔЮƒgŸÀÜYùØu(#%^M˜ÕЮƒgŸÀÜYùØu-˜‘Â1› ¨(³Úuh×µž]hCujR)4–Zº³hס]Gö]'’ƒ¡U{ò¯yó`Vƒ¼y0«Ú^(e’ÉüxÁ¬yó`Vƒ¼y0«‰ä`¤ä_ òæÁ¬yó`VkbC÷5( ^ì~+D …ÔÈÛ<˜Õ oÌj"9)ùWƒ¼y0«AÞ<˜ÕÐ9Éu¼`Vƒ¼y0«AÞ<˜ÕÐ9‘™š³ä̓Y ¹ŽÌj7f5È›³)¤F¦æÁ¬yó`VC E®ã³ä̓Y òæÁ¬†@ ©‘©y0«AÞ<˜ÕH‘ëxÁ¬yó`Vƒ¼y0«!BjdjÌj7f5Rä:^0«AÞ<˜Õ oÌj¤™š³ä̓Y ¹ŽÌj7f5È›³)¤F¦æÁ¬yó`VC E®ã³ä̓Y òæÁ¬†@ ©‘©y0«AÞ<˜ÕH‘ëxÁ¬yó`Vƒ¼y0«‰Rܯ¿á‡ DnC€!ÉKæ=E…ü…H†2Rª=úå ^¿{“¨ÀÔ^üñ+Qó€œ@«†2Rä:^0«AÞ<˜Õ oÌjèÖž<¨!‚á@À?N UC E®ã³ä̓Y òæÁ¬†@JÔHÁp à'Ъ!"×ñ‚Y òæÁ¬yó`VC %j¤`8ðhÕH‘ëxÁ¬yó`Vƒ¼y0«!’5R0øÇ ´j¤Èu¼`Vƒ¼y0«AÞ<˜Õ$©ßïä73S¿û¦îã?¯žØèï@13kë¼·ô—·2éä;½±Úç—.ÞtŠá÷>ðÊß}zÁNKíbQÿ•ÏùKŸ›U“6HÕæ½ìCù‚…ú›ƒ—ñÂ'>RðÂúøqò㋵͂ԛûvžx—9[j^})üýÕ™¹#XùÿÖ¿wÿwR­BM¦ …L®Ô oÌj7f5IAê·'Î~¶ZŽ–Z¸ ýñ2,13øê//ß¼»x:NËŠÁyú zùNç¯öד½î‘ß@êß?¸Iègs^¿ÿC˜šl2Rײ~í¡Í©qíŽÍÀÏ3‚oÞ–‘úõ–¡k¤ž?¯žn¾±ìÁí__”•æv±JzŽ@ªU¨É¤ƒÉ™ä̓Y òæÁ¬&H}*? u!;óë—ë¹ñæÆ {oǻˠWïtzûÇÕ©6±NÏÿQƒ ¤®ú¥§Æïq…ßÚû¤^¼®Ýî‰Ô__œ/=¢ãz,÷5©V¡&3B&wj7f5È›³š$ åpûØXŸƒy¯?]8ØÔ†>ß8ÎÔ¦]ú]½‚|§ƒ€Ô/Š{8dìŠOT6£Sìâ×}þòßfÕ ©ÚôµwÝx¿`ŽT#úãuí¥‚Aêoùˆ5ºôìš#Õ:ÔdRÈÁäP òæÁ¬yó`V¤\œ¦Ó.·?ýõþï&6ôùÞù䞉‰Oš™ÖÓÒ½‚|§ƒ€Ô«ûEZfÁºÇîÕ~|wõêñÖñn/øg§à©;©2>|d²ù÷ õìYõB‡ˆõgïÕ¾~vêLNw‡¬¨g¯Hµ5™€r0¹Tƒ¼y0«AÞ<˜ÕÄ©wζêff”†XþèöÕßµgãûz&&àT]ó½T„Kí{úýuå@Ëäà7Ÿê>~~áèÍ^|ý]sj xTVñŽ@:uîWþ u!èÚ Å×€Ví}©òª?±÷®ævqÉËûÿêæÎÆ«/Å)4êZº³ÄªÚ®FH!kY5´ëЮk=»N$kæñ ¯çþ®9¥ã‘˜Ä»’l.±ÕkÂ¥Öh²ùçW;œ8ºÇîÝüø®¦.#•èýòcsj€xD HÕÕáR×o{Žú<Öóö-°Ç|)¼Î“‡¥£­"6ž½óõó3çŽt³Jð{ø‹x …F$û°  áuˆÊH!#L­™uÇÙ™¯×K{×}ºr­¾¾Xóïs¿})¼øOÃuÇ?ÍþøêS³jßwùK?T–åv¬_w옴¹ôÅ«&ó1¤=œþ~ü'mão°µýwÚÞwÞâÝÿk`“îKaœ´œZ}7ÿQ¯ëæŸCL¾t³Aá·¾·ÌÉÁ„ƒÔoö»4¼È³6ŒÏ¬û•>¡X'´57?s¿þæ$ „Lí]'¸þœ¬óLæÕ:ÁŒ”ó9u%IÛοü¥y5Á`T^ý¯y y)Á u¶ ãžßKÇ´ið¤ƒ).}},ÂÕw!¥‹E½H kÐåYŽ™ÿ•W½={âȨ¯?ØxòþÑçH‰t,Z÷¨ƒh× µ¡†j- RÈÁÄWkp)X/ø§³o„¢s)»ì£ÐuDzÙué寺÷hDõñþO¿áÿ.Jýð0µ¿žlqŠšÿ7.XUys–MÄÖK¿<ÿûÝåêœÞñ¯Îî?ߨ}íò×¶}z|óÄ/ëŽãMoþñ¶…;+‚Ú§Ÿæhÿãsé[¹<9/>Ýx:ùûnÖ6î»L ýD ¤j€„D Hx¶‰@j‰AÔõ䣮é¥ßBbÛ†~"¦¥¥¡&ÁºcÙì:¾ õï‹k4ÿµ«Rk”„{{c©cäæ‹/ú£¢â˜Žã¡¤·Ÿ 8¬Ýû¨?ðß͉þÒ}ò:¡Ýä[(SûR•5\*M÷À¶Ø;¶ á'\°%Ô’w](N¼É+Ķ“v]OMj õ(*üÏÃÿQTÄÞ±mQA*Þ ôhÔUÞGl;Π” EÜõœlGÈÝl¦Ô …¬EÔš¬;a•¸îX6»Ž/H=Oü¬>â¯Ú÷@jßwùåÝ|m·â“øì¿¹El»ûþ½xm#°§k?mìûïæ„î3Ê™ƒñífs}—9H]¼šÝhÍ0!NÔ m#§bÅ2œ¥n‹¡&zÉù¯áª „¥‚FNX7q–j¸ ;H¡ë9˜®ç$)ä`-¥Ödݱ tݱlvŸSøÃÖ„§°@ïb7aG]«Èm•/Ÿ|z[Y™ßÝ*™þºq—¥}Xÿ¬ù´Bçß-IÎßfºOÂQ' ›ú.s ÛȆ°«:Øö8á‚-¤†óSʾr±)ê½AêÏáÃÔŸ#†‹zkç§£21(J6 …®ç »ž“¤ƒµ€ZãuÇÿ¬+ÿõUÍкc©ïº_>.l¸îxÎÇßêË?]ùkX§ÏiÔøvùCUYþ˜/?HæÛeiÖŠýÿ64m¾o¾û$uºɿï-Ò6‘AÊÚF¹‘ a%°íq©BÉÔ ΖS**dçÚœËÒÊ ê>ÁÝr–å®%»Ö®_»À`Ád“ÉCl‡ôðèÑͳ**j´ÔhlÄ`ñ“‚mwÄ>†v¤„¨SÝ((þc(>zÏ…×5‡ÝkÊê7¯ù¦§c].î_þ0÷É‹ßá)t=ßõœ„ …L¾Õ oÌj7f5‘A »zkr=7¶^A¾Óyj‰Ìê"…RƶÓÒÉHÕ<«ÍºqÈû‚ŸÑñ=Ks>F3V«mxÛÞ‰}¦eé­8ºR¿hÇS;“þg©á"Óª2ò®ÔcQZ{áÙ¸!¿*Rþý¡ŽîÿþÛ~6~èñk'±o³/Š( 8hÂѸ`ïšÜµ“3¦èÄ÷ÄÄÕ#ºOÈœ¸¹h«W…oö­ÃiQg±Î&ëŸ?ÓæBY÷ÊêÞ—n¹Ý}Zû RB×sð]ÏIRÈÁä[ òæÁ¬yó`V¤*k¸l¨êÚaØzùNÇÕÒ8—1Š¢ù•¾o™9R^=)º{<¸2lÏñ}³¸³»ÅwSŽT“>vcþf»³aU,nmÎÅÇÕy :G**¼ñ©˜HÁ÷õjîÞˆÈ|};Çÿbà¶bý!œÑŠt¥Î­9‡çnŽØ0*äSé ý›•j•5‹¯?Èxüâ d Á8i jÒ)ä`ò­yó`Vƒ¼y0«‰½jo\ýš—q•×AØ+Èw:¦vóͯ»gq}¼Nó YµWûüNúõLËÓÖ3¸3;D©ôIê³ôÈ2ë3vÑ—cÏ=8ß”™ÄYµ7rDݪ½‘#EGˆ·j¯üiUܵD“Sû‡qƶSœ:dKÞÖ@VPÉôUÚU7mî<¹Üø'öHÉ·š,Ví!“TÀuÇRÛus¹ÿŒÓýOY{ǶEU“¼ËR;¬bôTšÍ#JM¼nÞ6±´=…EüˆËø0Ä/Þ«ø>ÿ¼1H½ÿí#7ó/ªßÇCYï?üNÌaý~%ó»$ÚíÞ•þÒSáf¥Á¨¬ù‡Ä£®952^Ï!‚G¨uÇÒÙuÿèŽmôwö¢ªIØeéVñz*µæ¥&v7 o›h Åýú«{(Ä‹ô¬Ï#Ü2ø—ˆ­À̼¹!Ñ­WäÕpéq›¤$Æg½’y¿Ôì·6©g²7¨„¨ u¾g³E´eÙ¡Ô°¯ŽU½ëÒ÷åÈ9w–îÇÞßi÷ÃJøO³^,µýòû£eŽ9ÎÏ+¬ö¤ý+óÝBl4íf©c®LZ‚Û`Hò’ù>—¿ðX&ãuÇ… tGÚO³7™o²uåÖ›WÌÞ5{¼ÙøñEÇ]¼»¨ÐêÖ«}YwŒ…2£~Ýq˜"%L©né1½…ÖŸBNñW·úØc ÅecÝêckŠ¥GÓuÇ…Z‹Œ^æD}’ù!h·Wntjc%2o•wS$kÕ© —.JeÕz´„ùÁÉYÙÿÚÚÙ‰{÷Îò™Õ%¸‹r˜²®ÿ¸-®[mìlñ¯°¶m'ôE¬ ¦¦/Ák›Á¶ûŒ·¯ ÞÏ©ßÞ=V×uÔsÖ¯óõ÷ÃÛþµsgª—'¯<°¶Ó¿ƒ®gIŸä_·ý\§G£ó³\KG/€þ­r3 î#îE¸ÚùªŠ†ñnÈFÝ|7tH£:Í®&“ë9”‘OíÁË'D¦Æ‰ ÇÂjwb‘B©ÓÂÌb…R?“$¼PÔÀÔ̘ SsÓ-¶[;/žä9iˆß´ƒ;þÄúI!LA“®Ù‡Úg˜ß0]oÝ)SŒ“Ù³¬f/4_¸ÜtùÚ½ë°X·gýæÝ[ªu:¿Qü6ÚÿhO©Ò錕o2Ú¼fïÚe¦ËX4Çr®žÍô‰GºŽìïÕ¿»_ìªU)LéGÖêÁê}h}Æ8NÛ;ßló:Ë4íìŒ^GÎ*ž-Ô*ŒëµÕËÒÊRh`Š‹!*05jP  ­¾@ÞD_öñÙWÃÎ,|ãN¼¦à Üü‰U;S^Ö0Þ~u0^7ßÒ¨Ns«ÉÄÁH‰ç/]\’<%0þlý!@~2··X൰£‡Sa$uä·Öv6êÈ7Hñ^Ûõ·¯Ø½b¥µží§Ñ6£ ÷z¹{ã1§.–cÛ µÓÙplÀXŒŸÐ¬v_meoÝ\ÍVRøëª>õÜôÉF6Æ“m&·Qì8v¯ÑùiSK–,&4#¥Óèü¼Ø¥çÖ y©wC_Ͻ6 †ÓF,H9†²õõ0LàñFQþ ³$©½{W;¬žê1µµŸR¨}¨}0Zä¼h³ífsÄ•ÂYꮆÆÇ6m°wŠâ®z –ë‚xM6ùìXé2ÏcÞ¿1݃º· k§í¯={ÏlË9–zŒ% û}ö|A*.‚S¸ßôüúu…f¦±ÂA ‹Ôm†åÚ:Ø™õLGçàŽ]ÝÐWSå ¤p–z;tÖM콆N¤(R2³!I(Ê06k GdIùü£Â€i™ç²ôÊaÊSý¦îuÜ'¹ZH•Ùqï÷ë‡cµŸëHÿm‚µ»ù´™i¥»Ûב(âîÞÕˆ0VmØí"o·öjƒéºYŒ@ Ãi #¤è‰¯:Z2Œh,ñîå5Œ°H¦GzÉ8¯qZt­6Ì6ÚAÚc|Æ`äd`mˆM"”Ѥ‡…•Å6‡mó=æöÝÍ¿›b°âøã·­ßf»ÚÖy§3¤²=ÜþÐÔ|2tÈÕys±÷ßµ4±ÂAÊÏŸÖÅ<;³¼h4c× ÍèÓüä¤ðÀº ŽP¤diCbS”EJNgNÁù2^ _:à`>Ýw†R˜R/z¯+›ÞÂC …½rÒÞÿÚù»9R¹ëÖŒìØ=`üaŠŠÃ§zïvöõ¤vÙ7ø›ôtŒ¥ kµ{b§Çù.=·oØeËžŽ"Há,õnØP¬›Ø{m¢H‘ÑÁˆ¢¨¢k×Õ¬ÃwJDQ®nkÃ×ã oÏnß?jüx¯ñkì×˜š›Š O0€T£0±1Yå´jºÝô¾î}Šc-Çnرã}£¨“» y0„mÿ®¥%^^JHQéîu …yZW‡ Þô鼯H!’• ‰GQ®YÇ´X¹çÎ5,lR¦Ž¦“ü&)0†Ûél(ê<ôVR˜Zô³_;w¾ß¯_ùÔ©Ø;¶•`Täà19`Uûà®?kuõ^¹ÙÓÓ[¤Œ¿ÀN~"/HáQÇ‹À…@ФFE¸q£‹Ç"ü†xüäá¸0|‘GK­>-|ÚîˆÝ´È ÀÉæ¤©†ajcºeÿ–9æt÷QïîÝv‰ù{[6ç <=2¸ÐÌ”`ªìÌÂÞ}ýiÍé›H!’µ ‰AQÔœu;æÁÓg•ó@ÊØiÏØ€±í™ cÆ9‹ŠP­¤0¢zyܾ½dÉbì½éz½íT£nô‘ÿ Sjë«7ÑÕÁ»ÙH¥¯Ð}¡DùòãÛ¾zG\¨xy¨ÝšÚíÿ£P>uÕ-t@ %MB %žšäu²¶¶«s8µè,÷ëª=À°p˜¾@ƒ£Ñ™£mØEØ‹±jÔ Å‹«úÔ#K§ØîÐuÐmª Â6=dÛÉÅ3ί_×B å@›cCWq yÐÑ­=R²¶!Q)Š™W¬f–Pr²éW˜š©Ãþ1õsÉ'øO4q4¡Z-H„=Õa}V¦R›€Ñ]-VºR]šÜò©+z«3\|B}¬ Ætø»Ïú:=ˆfS¦ÕîÅBSN€Gú».Ž B %=B %žš„uöÖMŒ¢ü Îݧ„lðŽ ¤vØ5œœd@ûúL6EOO÷ŠBý¥`Ÿ©9Ž~x}†õêk]ê/µÇæÛú"’¦ƒ!˜¢ì˜ìü’¦_¬<½)ѳ=Sa¼ÿx §$A(RBÃ-À}}±SU9h`‡}Ãíhúø-?ï9iLÛ;á\2ìœLæ A* àøx%VM(ajÄ‚TTtYÓBoŸ5Ak:1;õ 0ÖÝ Ã©…›êžÈì±0/Eñ@*.æHîD­_Çm¬¿…'!HÑéàèC¬HF Hžb€6„«I¤äÆÁ„SiùÛ¦…ïÝéãe¸¤aaSrŽp™>I‰­43|–[„;^˜”RM H‡RÔÀc‚Thh 8HaÁ)4Û_ÿ©ý|×ë…$œ²E9¸ß¡ªZÔùë^¡ÑÑbƒTLÜ*Õ¾p€Ê³%ÖAAŒ½cÞwžP_'Àâ|g•«&>à %Ã?% •_ü„@j ¤ý…Øj€5ER RXce¥=œ96i¹ ËVäÏ;8¿[l·  ¾«ö ~qRS$5<"¤Tóò÷^I_Ù‘ÙqdÈ(ÓȳF³ê~6‹=!§ÙU{4§ ½~oÆmú:*Øa¡$·öÀóL„«€”€jb€à)hCx)ƒ”Ü8˜PjZ§êþÝ^Ñ–ÙEMkâ ÄŽä˜FìÌÜ‘ÝqeøÊ Hz#B"¤ÀW žµ)ð¬ìÉæ¼jNQ^#BçþÄìð#m@/Ÿ;èlQQs™¶wxÌäní37ƒ/Hq3¯ù«îæðú[x‚” ÿ”€€”€jb€TK8˜h Usó3÷ë¯ô Å:¡IM¨ jªäT³$üØÓ!qGø·yQç/UXæ[©E©é眮:×¹³QpH¯yBóRB¢·wOÍß?W‘-†š0j¨’— R‘'y‚|óRxxxÎbÌVbvÜ´j;cJFùaKÓù‚TÕÄžïf¤ægþ_þ¥œf}^³~²9Õ3}aOÚ ãÁ&›S©‡xmÉ$®&¤ŠO<æ ÍK )‘N1¡6ÔPMj %g&¡.TýÎSã奪Üì»ÿ`_äÂjwÄîîœîÝ8ݶGè‡E2²QbÒž`RJ•„ E Êá© ÏK †$ßLž•zTB¢3ŽðÔ@òRBA*9ýívÁ IDATµ‚'˜’v/äÄEìˆ4Öfl¦ÖÆsép·Cz¸·IJ±BÆO8E+”âÛ@Š›q»|7#9#ò<^ØôÖÞ)°[{2ÿS"¤ Kò…楄‚TË9ÊH5§.–pNÝyWw6aPÂ`ÝÝô²Ì¦¹+”‘’UFŠ®;"Rºá3QÕiÏ;¾,U÷Ë œKyRµþîžíêÚ.u¿Ç÷—öØ";º(?©^S$5”‘jÍ&RFêê£ûÃ}ãŒÓòøÖtLËÕáèôäô4‰0ÁˆJ!¡Œ”„©Fáã>1|j;–RgÚ4[ç•Ûó&'4¥(¤ò‡«a—‚á &À²´n²ù>¦Ÿ[êü,i²¹ ÿ”´ÆŒˆè/€j€‚"©  ¨³Uãýcѯÿx®úüöýÎÑ]‹ÜÏ_ªà{„‚CŽR^^éàã•X5¡x„]š R‘'„Öá­ÚÛº¯3«óx§iùª…Ñ&1oíÓ£cÏø@N*õ8ú«RÅ'R€§  ájR)¹q0¡ u¡êwEòß™|´iÔšŒ±º:‘ÃŒ"Œ Ô×¼ÔyAŠFË!¤||RtúbA*9µBÀ·A±Œ¥‘?+³; a/_·Œ^N©ˆq´¹9R|w)81¹þ‡bV+oà—‚]ÆÚøŠòøþ)©Â’‡‚TK8ZµÇ'ʪ+fѱÀ6°ieê¥Mϯh¼jOT p¢¯ÄªB ܯϑò öŸ6£chÇ@ÝÀ†,…žl.!HZµ'\£wýñ]jâöÄÜûß—»U0%kjïÄÞôŠàlî? „à©&A <À³M‚H„Æ1ö±P è4ÆvZ–fVæÐ<5HÀª= Üü‰U)À©–p0Rãü¥‹?3SÇûÇžÅþº\ª8g®¥æXè$tZ:)¨@ ý!ûÕCÔ·¬Ýi…@ ”œ9EÝxòp"-iCìá†UýøêÖ‚m±šže>w_<à»j”ôA*À¬nŽ”ÓnÖ¢EÊ!*«7¬=Øëpˆk()R 6R›#óŠ:u±üð…#º)ãF%â^ÈY߇@ BÂÂ3ÄkDÀÈQÖ£R×>×ÑÁNì»{)Rdw0ŠšÊHYÍåQÔ½<˼1„ÚV¨åÉu?@ %}j¸jÏî>É}®Jê¾%ûÂ÷E B £ _Ú“ÀíçQR~!èC=J}ßQ¾3¢H‘¤ð00›ÜË‹r½ ;=ð¹€,…@J 6„@J<5ÁuûÙ£Á©+"³ï¾xŒ—d\Ëš:lbæä‚Û%*#‚¤¢šà« õì‰@ ©Œ/Ý}ñx 'svhÚíg0rÂø £(Œ¥ßD 9Hñ.ß¶ûv)ˆ@ ”ìmg v~I';¦~–•z”:ï'_H V#Hqwïú¯áÃW(”l£Ý¤H‘ÚÁøRÔŠÈìÁ©EÅ_Iê×usþ–kOk…NKG 9H=Óé×ån¼Œ”)R²·! €JNªÙ†ÎMY§×3ëü!ñ( ü …³Ô³ž=±Ë8ìk„Ví!"½ƒ5‚¡û/Ÿ¬æNe¤\}|wW±Q·øî)5é H@ ?Heîlt)˜¹Ë)ÙÛÐÁÓg:Ù3FÄM“<¶èâq±) )@J¼@ %B %žZ#ŠÚ{x"-©èÖÙQi£çšWýø* E!‚¤p–z¦£Sw)¨£“¹ ­Úƒ ¤¸_u¯µETÚÛNö´.ì³â¶Ìþ$óö @A`à.@–Hò’ù®†!²¹ÿ-8>Ø%Ý,9E5\sG2=›û¯Ì[……ØA.#YFªèÔqBâ`a¡†³g»`•1ŽcˆJ«Ëéª.ØzÔ$\M>®çZOFªúú¢S326Âc„‰³†™ç ¯¡ª ÕUæ«xåàó8'\°õ¨.ˆŒerÙ!u¨¸¨»—M{V§é–Ó ¡(RòªF¸ ²!¾@Jmâ¤na¯AÓìçÛÏ`Ÿ…@J^ÕDÆ¿2¹lHrŠ:r¼¸·ŸE;¶ŠsÚQ¢( ”¼ª.ˆlˆo ¤Æš8ªÚîS Qžà2A<„B %Çj„ "ã_™\6$!Eå(hÚ–¥˜Çà=cšØáE á‚­GpAdC|”x 5nŸƒ’óúö¡ mJBQ¤äUpAä`ü+“ˆ$¡¨‚“%CÆmYCóYØGRHMú‚Ȇø)1bkÈ…v^3:«®;°NBŠB %¯j„ "ã_™\6$ HÕoËìÄ)ˆÁ?"BjÒD6Ä7H‰fiÙíƒFiS{èïÓ—œ¢HÉ«á‚ÈÁøW&— ‰MQãX†mÂÔ#òy%¤šô‘ ñ R"ÅŒô¶Á}¦DoÞµg!…@J^ÕDÆ¿2¹l›Ž»äíys¯qµWIaÞ¬“ŸÂ:…kXR“¾ ²!¾@J„\ÔÁÄŸB´×doËæþKE!’W5‘ƒñ¯L.¡¨óѺu}­;öášUØ{ÌÌŽmC”¨¹‘ª!BjÒD6Ä7H†ÉÁˆÃ:íÌ=Pýýs¤H!5é"ã_™\6’‹Â(ꪃþqC‚£CáÜhÍ’Â<RHMæ‚Ȇø)0Î þ_˜ŠÅ1wü#)¤&}Aä`ü+“ˆ„‚Ô%/_njƷw¦xüÖÁ>‹Ž•Tûx!Bj2D6Ä7H £,Úÿ˜ÊÎù ^ )¤&}Aä`ü+‹aCÕ5ÿhC€jïÁ@꺡ãÃ5«± &›­¢j–îmc%7÷‹RGˆ)Lpx¨(³¸`kÛu 6”_ü„@3jÿD¨‰ð‚|ר`Ú` U{|…‚Ô½Ðà·“&d¤fiúk†E~™]^—‘bŠ“‘˜Ç9á‚­GpAä`ü+“ˆš£’ãvízSû:ž BQò R&~C›Ð4ÍSmËÛNû© ûH5V“B Å‹ËUåwvÓöUõbúà%}ÿ^»L‡˜ j¤&6„@êÛ㎞ìíÙ•¾Xíí¤ u«ö&NÀ(ª6û ßõ}¤š”‘ƒñ¯L.âƒD'sWÒ ÔôÎñ§(y©/·ö‚ö9M10XÏKºj?ù¨›lܾg©&jòaC¤ð(+¾0ÌiØÚÎËÕw™!uÏ‘b†4ÍE!Bj²DÆ¿2¹l¨)Üpj¨ëÐé†"Q”ü‚þÒߢo4ÃØ÷G»eÄ~÷’¦Úæ¶&6?ëc›¤ø¨É‡ !Ââ⩪q¶ãÖP× ÍZ!Bj²DÆ¿2¹l¨ 1<»tïÏÓãgž*A ÕèµÍÀ²“™çL}Ây/)ªé¯0òåÍÇCc×ÎmÒjá‚Ȇø©ê³WV¯Ö£N¯¼v©uƒZ.ƒŒ|Fb:m~ÆögÛ>Q}œ<&*EÉ;HéoÕ7š)©/”‘â£&6ÔÚAê»õvý‚úŸ¹R HQò Rr8Ë-—iVM>Œ¬ uÊéLòð䎵¸¢1(J^A ;];|¹˜£)ísš*s¤x/R|ÔäÆZ5HU]a/á¨wέ< NQ¤$yI] -—iVM>Œ” uÒ÷ô©®§{rzÚ䨉GQò RÒl=j„ "â­¤.]áÎ;Ô)¸Sti¬H%Ï …–Ëú‚|×ɇƒ‘¤NŸ*ïT¾˜½dnÊ<±) R“‰ ²!¾ÑJAêò•“óOõ¤öt)v•¢ä¤ðZ.CØ ò]'VW•Dq„öþ‚jµL·È©ÙoeÞžV9iïËì¸Wõ©eö‡rÒ?ȼ=(øîdi€$/™ïj1#ëß“ÓîL±ŸõsÜÙ7ÊÈJ»ÔÇ"Ã&Cö-‘ >‡2b-—ÈyŸ-û†Áär°–ÍHÝñ„ÀÈe~<¥xÊb…EûÐö+÷¯4”ìÅ…›ÓCYLðð[é½'÷ÛÆJVÀ+k.I×3Ó?öèñräœ×Û·½›2ùSÏžwr¸5wj% ¬my%…"tU^„Ë1ÞGl+iZ­i`j,Ì Èlj|\ÏA›‘zöÛ+ܳw/ɃSô×èw Ô6ÚgÌ+) ™.în„»£«ÇZ[ÚOæ~Fõ%˜`NÞQ¢SË?^DT`jáÑ‘Â#*|žMð”ÁÕ0µ]„¾ 'òá`¤©»UÏw¾ì7ÓO+Pk’Ã$ )JÎ@ #§b…Rœ¥n RÕÏcußÇ SÃè1ÕÿS¯^×k.R9+”á,ÕpT#5ù°¡ÖRñ#âÆSC·˜m¢ä¤\|Õ¾dn‚T,ý—¹¸;#B ½ƒ‘¤î^{TÕ¯ºhÇ‹‰Žµ´%§(9)?ù.ÎlJQDÔ`úÆc<Ââݤ‰9,ÂAŠÇO!ëòÀ) Im¨UTÔØèô^é‚;,¶]"6EÉ+H5òR`@ŠŒFºwëqõÈK×Ìo03o¶m¿nß:R|ƒ5%§œR±azz£[ò¢…¹ÅÆšâhHq[IñžIñ×¥P‡P‚zR‚5Ú·UdüD SÄF?…ý¤BSéHk«ã©Úͳ[?§~ƒí·>yßäÅÛo]¹Õ|¶¹ûwæ`fj·Ô•‚òÊ+(¢Ö#Û%‡s‹ HñU“j= Å™È)P/èå×kŒÇI( )Rð8ì uïþãKS._Õ¿v÷ù£ÁÑS ¹©'— Eß”VþCE”îQQ3RyU…þ'©;ŽìÔKŸÞ-¶›B„B¿„þÓÒõÖÞ`–Àã¸Wðéи²„ìŠÃ!^õÆž¸tÏHUߺZz£üñtÝ3ážùW‹²/ΨÊJªLcŸð9ãgQlµõØö¥‡~ž”>y@âõèÎmÃÛöNè3'kîÎü]^§}R*ÓËjË…f¤¨«)”ÎÙ”ÁE ÕTM>l¨•€TÑÎ%ª%Ó¦iv5Þ»”L@êè¡ì2;n­ñîJ/÷¼#¤D=²ÄªÉ‡ƒÁ RŸ\žõʪšûÏŸ¸œsÃ@j§áNRMƒªŸrá‡ò½\À9R¹ÙÙ/È\Ø%F[-JmzÆ £c{¨'i‡/æ^¬©4GJG§á©'¾às¤0ð:t)—^lVdþó¡eÃ’‡+G*c€5y«,HA`C­¤î„Þ;¯qy›ñvÅPÅ­fÛ$¤(9)Y)ö[Y¼Ø¶ÇÌÔ–©“a¡ïµµ_Žœó`ÕÊ_ÆŽyß­Û¹NK€TÀ¢l?“dÞGl+A ÕTM> bzþC( ¤0œ:y÷\§èNÌÌ›DQ”<“Á.îx.ctžàU{!Eœ‹Úš»­W|o _~Î^æVâ‘]qX´U{Y{ê¼1»nÕÞ¤‰EÝÉ=$É©ã×N»¦lÉØ¦›0N)\©[t÷¹ÉóL³Í¶±Ã]Ž6ä*ÆÊ¼U! mB÷Ǥ¤L7䘵}ÕþÝ ½®;Œ¦íG %{’{ºu¿ªk—õ‡:]}¶ãÉ)JÎ@ #'ìb g©†ÛÄ‚ÔÑCÙEUYYòní]±³yß½›„y)¾ …‘Ö œ¥n#j¤&/H]Õ¿viÊå{÷cÛzYÓíÎ8b‚¤EX«pDaÞøüPf³u¬Y¶Ë,´b´& 4>¶7¡,Y@ÚIøÚ½Ê e‡ŸÛÙ< gK¸^¯Ñdóc%ùìcEa,…•J„Êìä9ö‡3‹¾ÝÔcqs†¸‡cmHtkÏÌ8pf?ºèy›!’½ É7HÝKyX¥]õðÜÓÕ v½ýûBQrR<~r›“Ü”¢ˆ©rg§W£F6š#õzôèJ/÷–¸µ‡ó“ÿÒ,pŠB ERƒ¤®™ß¨yéÞ­:Š ¯Ž˜<èÎó¤šÆ½£%KÂBXM¿ d­c­ïÊîªÁÖX›è˜YÎ%äQRVíR"¡ Ù$kÿ¸„ñŠáŠ£ãÇgí‰É¯ç­Âý1émBW…$dä‹ RôsÔ)ÿQ(ÿµíqx« š#ƒ É1HÝç>ªÔ¨zxüÉ‘;yjá]ô÷ j.Bt³ X.cåB±7¥8o¦x,¡øL£Œ¢ Ð{PBÔÛ·©_.£€/—iÚV…¦¢ÐNÇSµ»G÷Áöƒ±o6^oÞÊM+w-Ùe§gGI‹í{TíhéO¥b¬•Á—ËXÎÏä 9RͨɇƒÁR×=nVõ«¾{íQÝöÓÛÝâ»§\ÍÀ¶H5ЬåÙ§ºbÑ8Ê]YnzìéJl¥ÑìѦ,³V˜€ÉæÐ‚Ô76*Êq>ì:?e¡Z„ZÏè^w&¤¦çåÍ ŒÕ´ sNÊ##enj¢×ã½Ê(†))ÙÛ¼‚ÔƒüÇ•ê•Øû½×ú&õ³I=HEÉH,Ž/ÿ¡"l W¤ŒTêÑ O®÷¶´í3gõ‹îמÓ^#Rchì° 3W¥¬Þ•nd“iç‘íE;ÄÏ*r³¼5a8öOðŒTnɱ̢ìÚÉÃs|ÍcòãB1±ð=à–ãašm¶åàÖÅ©K&%N;¨s¤ÆOœŸ0ÿ?rIêÒ}Ù¦þG¨éEA2RK²ŠJçmˆsc…#jª&&HU×ühC Øt®ümõ!·+»UÝ­zˆ4=a¶4w¾ RÇ©€€#ठ H¥ê§•ªW„{G6,t`9é²Çu`wXÈ^äÅòYµÇ‹’“/ ©“g_Rxä»w¬$Ÿv„¾(eq‡ˆãÆ;ròIÏèéÄšà—{T$ )>°÷ç›m;sw˜IRÄŽ‘Ô@l(¿ø 6xúÚ®&ew0ZºPùoùÃãO*5ªîsaÛÆ'ö®<¶ŠÛàÉæÍE½€@’¡ƒÀ'â ¾á÷sFQÁ³R@æHÅI4?h9;qn¨ á Ãb‡­HYevМš•~4Sð©w]»~7GÊÖº¹9R¹Çî7*I.Ló;°'kßâÔ¥Ã↫D¨¨F¨bhµ8~Ÿaä.ÿ(ªà9RSÖÅ/÷e²£ˆ©ÀÀ<A 9˜„&Hb H5¬v3þN¥fåÒøG|ŽyÙý‹à žµàô X¼š`ŠJ0K,U.;ÂøÀ+qf¹ŽbVe«.g­dÑÕ)ð¬Hg­AªaµCŹÖ\Ûáq#T"T—§®\Îñï`¢ÏIÉ-* R–sK¦-÷Ý»ÿpò]Ö”n•†…š‘"vœˆ¤bCª‰aC€§?  áu¤ RàR|«=<÷´J»ê^ÊCl»èþ X«/n€€Hp’¡ƒ€^-À4ðlÛóaÓ¿-Ókºj/›û7`EòJ¨žÂ;LŽŸbœ±7äpØ¡¼Ü†O‡¾jú®[×—#f?XµòõèÑE‹ä¿j ð¬©ÔÂtß#I´1ác°ËWMŽæ”ð)ú‘ÞQ¾MWíQ—– s éaì&(5% ¤ 掬éð¿ºuǪ:9‹·RÈÁ$t0Ñ@ªæægî×_éŠuBAê|åï<µÒò··2ïUªWÞ.ºÏ«0‹;Ûæ´]CäF¾¾™<5¼”àƒííÁSó÷Ï•|èˆ$(¤¢cË:TsÿWc&”è±õ”ÙÊ+X+ƒX ¾ÿD0$8óŒ×¶’“/$©3e¯xj y)¡ •{ìO0÷ؽ†_ÅäÇmÌØ¬©90fØ@êþžNL¯ØÇ'HíÊ^0î][Ê”6ûm>iuÈ\²9RÄŽ1ÔÛPaÉCž Ð«:¡6$Òé/Ô†ªI ¤Du0Áuñò;žZüԣÊgU]«îFÝǶŸþörÜÁqÔ‹´gßÿÖ^Ó8ÄS Ê—¤dî`‚ŠÉ.úrF³?žëT±2Šo5gw·í>ºAãÔ»ôŠî½)u3í½!<áq8÷¯m‡rï[»Ç-s8\ÿ)¾¹¨#yßàdsNt„[”û¦ÈÍãÃ't䨩qÔ&…OÞ¹7,š•˜\Î4Íï`ÉXäÍd6“šRËÏLØPòúpú³SÛ¦|ê¸ÌÛ@"BFˆƒI%#õ솥>½±òË=»ûO¯™¹}›!¸ÀÿÚEÊ[Ù÷xØ”p%¥ObßÛÏ‚T+ÉH…{Gžít6É(¥nŽ÷ójÖìJh&{–/Ë_{ )Òe¤ÅÑâ|ÛCö}cúj…÷TñØ5ØÜÃÈÂR(ÜD)±OÿV›‘z\ó¼ª{õÐ{øGjeRN ©V˜‘ʉútJíTôÏ1M¿2ó2Ÿ8K-¬“f¨Ö\ê.@¶ ¤Ž€9R^Q>#7 Òž­0&|ìÎHÃäìßñ¯¨ác\Bµm‚mC9bßÚã|å5¹ëïv¢Œ”ìLÂ@L4ÂãÉ—ðï@Ê3rGõà •¿ß9ù R»êfÂ^å{/Hɬ otP(ùúfR^^éठ`s Å¢qNu;•±á ¶m˲ë>x {  ËUè„*H:qæ u¦ìÑs¤n ®p¬¤À3Ç{HÔôv!jmÝVβ°3khA¹‚±ãD$5®ê´!ÀÓІp5)ƒ¸ƒ€ÔÅËï¾QTíóê>Õ·üîâk^ÔjÄjÝ?ÁC.¡xÀ%¤dè`B)ÊÛÚ÷Œæ…¸ñÊõ} 1·g)Œ oè½[ðdóFy)AêHÞ- €GP4}[¤þÈðQ ¥aá÷FncD‡`åFAlU+ÆϰÐHAjçºLµúuÇmº\%,RÈÁ$t0)®Úk¤î”?¬ìVU˼ݰ2†PHa8%*H¿À©p@«Ö†ÂBX%KÏÏ¡³‚ç²çª°U¶°¶…°Â@Ö÷g›ˆ)ð)ÀÀÔÖ;lèAíÿ¿Ð*‹7 KMR"YbÕ@l0m0Z᪽'·Ÿ_ré¦Óm^Ɇ‚»Ž5Ì]BQ %ÒX"VM0EyÙú”hOœÜà.žë*ÿ5Ú¡]ÕÃ:/Xbïá²jO¼Ï6IR¼Ž5ŒÜ=6|¬"[qjø4‡(Ç ˆˆ‰n¡ÖÁÁQ3R» 6Lèú®ÃP?Éní‰qd‰U““)H¹Ó;íËîxFE±ÿµ÷¾Ö¼óüAïÄ> WRšNKo½ ÅdæÏÇ‘é܃ÝcZùØ IDAT{”à{y­¤pÚb·U=°ßÁû:mØga±bùƒ.]>¶iƒ½cÛ¤ ²!ØAêõ[Ï/“6_yþ¥ð—[îß&'ŒL»siôåZ‹[NäÆ`©/ätÃÐ5â;òŠÚu½îãÓg//O¼rè¶aý‰™“‚ª‚ͦB åîäY S˜>)ÿ¸Éw‹V¨V·n›}·^ß'7 …':b¤Ù¨ðÑJl¥iœ™ã¼]0œ2epƒÔžuzùãç»lÛ±gû† Ý.*¤ê£Œ”ìLf uïþãjÝË5F×ëRP·N µNb?¬+¿ñôŽvœöáÚ£¤x‘±á`QÏ¢ ¡»³»;̈B Õ0Ì,ø.TíæKÙ°ƒò ÓzÐ¥ )xlˆÔ õôÅË+3®^Û|ãÙ›o•ã¯% JüøÍsR(*¯O~ÖØllÛÄkÿÆÀNaÖûm:¡Jþ@êÛ“¢–D,íÀî0˜9¡“ƒÃ Ÿ¼m»›Å¢›cu^þˆ™Øÿ~×蟲bûn!…@JŽAêñã˳®\]_sÿù“Û¯³ê3Ryõ)dz. /nî‰S­¤’ŒR2ûdê„öÇOcÑÅ ¨VRX|lÓæm;J…%~ÂÂJHÁcCd)zS­OmÔ頛Ϟò¦œ¿y>0ePâõ”¦ëûZ3H¹¹xp”;ò£»óTÚ4¦â<ê|Ggõ}r R¼TË#V(³;t ÝÞÚj®±¥0@}A>NäÃÁ¤RbB¼Éÿ;R´´¦zö¹^ûñÂ`mjµ~ŽÔ­g÷µã´Ôæ#Â(Á,‘3,\5Lukµx…@ ‹]ºàü„(#¡ ‘¤êæN½ªYuýòüK‘ ±í=ŠJ~ùRN«dLÉšÊ÷A ­¤\ÝÜs†äb±ÃÛ°sX硌aæž– ÕJ@ è°­I¾íBÛøìfµwËî=¤Há`Rÿ­½çO®n½viêåû7ýÖïuzöÌæàÙÚ@*Ú1Öo¢ŸJ˜Ê^–‰$…@*bÅòF ¾r)xlˆ” õæÕµÍ7®Ì¸úôÅËÇγNŽz^W~÷õCíø®Çî jHQÜ‘‡¸ƒ¹“§(3;¬õ[ŽP­ ¤ðÉæFã&¶ UþÑoÜÓæoó!‚ÆÁ¤ R5¦7ªÇ\ºw—EÝ}þ¨wbŸ´šƒ¤êÎLïH«…V‚;Ù°ì$¤(R8K=èÒ;7°wpŠB %"#HÝ0ª½<ñÊÓg/=¿™ÓÞ£¨¸>#åXêüóÑe|ŸÐjA*klv¤nT—í!Œ¡Öž¶¢RTk)€ôôºý_¨rG×…ŒC,¸§¡ñ±MìÛF •ƒI¤®;ÖV®¾wý_NbV†IÛEµ*:œüy÷ÚÝ]»º²Ü%§(R¼ÀÎ p„B %5‚¤ž&†ó&'PÌÓòÌnU;?Ø8ŸœÐ•v„~»nŽÔ½×4c5?8@ŠÇ@é“2¬[+1•–,¡Z-Há¯5&ëUú¨P;ünÝ18KA>NäÃÁZ¤Ë+±«xT¸©ò\‡ò»U›ã¤á©#"«cHíØºc·þîþ=¼Y>„P)RÛô õ]Ütº}iÈ¥'·Ÿ7ýÊó‚ÏÂÜÅ|ÿUë©ÄéIËv.ÓÑ4öÞ+6EµfÂ_=Õ¾”Õ»¾­;¾§¡@ ««ÚBÁ´½S¬P†½c۩˯_ø¡"z÷­æ*»§éDÍæþÛrí6rÒÞ—Ùq¯êSËìå¤}عǼ§oߘƒOeÞ0ù üÜh !óžŠÔI^RîWÑÎeÚWrbþjúÕÁìO#zfTÈvÏǶ^Óµ› ±(9û÷–þ¿ä;þn¯ü¡Mݺㄯ뎱™·ªEƒ\Ö²·ö¤+”FOÊ+ÿ¡‚½…›ß\Œ‰«c  \¸É:ŒÃ#Ò~ÓÐx4xÐ¥Ù³°w÷%úxtKyŠ}Eì±h=jìÈðæ;7|Ë7 uòq=mF*)=µaä-í\–Æ:بÄÝ#£Fñý ÈÇ5(¨ÀÔNîáÛcÑß>¿ûÏG rÏ!V­© ½ìÕ«Ñr™½{#ƒÇÁZ¤0ú¡.ã–S*ÂõŽ $Z½§'!¼µ'„QT‘þvüã~³ýÚ¾*×útÎIÿ€@Jl5R¤³!8Aб¼‚n™ù„–äU8ŸœÉ’âÓ“´"º8'»"‚iQ¤AÕ9Ë”¡HaqÔÔ¤HÝoŠ “FFjÃôºwl»9BZ½|NÔ\Á%— uÔØèñ ø¶•­•†Ÿ†§·VRf”Øj¤HgCp‚Týä„Rœ¥âW½ðCEÄöÃÍA’IâþA‘ƒP”ƒÃÏ—»CÿIJ¥Ù; èþ¾ö{ìÕ;%žK!Š¢Há,õ¢woì´ÂÞî7A•ƒµ Há6„ñÅŒŽ_–ŠNŒéÈQóŽ÷i… uvõªêÙ³°­ÁvJÁ*Î..Ø6VrUŸŠ@Jl5R¤³!8A k?FQu“¦ä—ÿP¹9G$õ`žhÙ A*ÞÒâMgõû\Ô›†½gŽë¨FíàÃ, ¢H!ƒÜÁZvÕNNHaïØvàâCMñho¬É ˆÁB)J.Aêè£GƒY…øý/´ã\úN¼°.#åp”ØjȆHgCЂF?´9唊H½<„ä•â«Þ9!=¹µÃÏ£¨£›6â-Ì-;(PËIÿ€@Jl5ä`¤s°Ÿ#Å©æbpÄãØ½­¤8!Œç]:kùtF_„—oßö›¦&š#%‰²!ÒÙ´ …g¤ðÉ ßÍ—ú>¦ÇÌ\¿A0EÉ%Hq ôôïo[ZY©QÕ¬ím°’2ûC¤ÄVCF:“1HÄSU8ª‘‰Ñ­¤‚X¬îžÃïk÷pPݪ½Çƒb•æä€«Á|ªÃ¬†lˆt6'HñæHa†_–b§E(s”±÷VR'–-½8]ÛXKݯÜÁÊÆÛÆJ®êSH‰­†Œt&cZ½dš¹\‚T‡ÕÃgsûÐ.ŒPꑽÆgW¯ÂÞ9¡ÁØW¤$QC6D:‚¤x«ö0ÃÞ±mÚR>Ó¤6Æož£'”¢ä¤¸;ô 迃jÿC¨Ê<ê¼°.#åp”ØjÈÁHç`2©.áÚŽqέ¤Æz9üÈT¶c;5ý ”$jȆHgCp‚÷ës¤pâ‰é)ášÉÞ­¤~¾7{vR ì0Žº/9¶qïÑ)IÔƒ‘ÎÁd R®ñîšáš1‰q­¤–øý¬½†µ™ï·¤$QC6D:"/H9$9õŠèBQr RÎþ*]÷mP|0 ÿE½iú÷Ç(*ÎÊSC %¶r0Ò9˜8 U]óà€ R ¢,‹^ž–~•@ 8~‰Uá§„¤Jì}»X;¿#XºÍU)ÀxªÃ¬&Ò¨±¡¤”jmH†£Ćò‹ŸhC€Іp5)ƒøX Rz1Ó·'ÚR2K äw·í¨0Q“>’îӠî9R;ëž#E­²9U]ýL H!C&+¤Ç`ŠNŒUå¨úÆûñªRà¼L¸HaÕLia ަX8T A œ—Aj¬&R5\MT’ᨱ!Õİ!ÀhCx)ƒøX R1iqJ¥Ø¬ç‚” ÇФ¨¯Õüh^kC´½ƒ|øVÄ#A 9r0Y9˜h Usó3÷ë¯ô Å:Á egÓ'rO-5ýŠ„ åíÁSó÷Ï•ð`‹¡&¡âë3+åšm¨»«1g`Þ R"¡Cf51F`JHºÀSKJ©’Іd>êÛPaÉCž Ð«:¡6$ÒjC Õ¤R¢Ž%Á e’ä36f®–‘yMB’ùXŒPQ1§y‚Q1eý]Í~ S¶¡Û5Ç[‚ÁèJíßß@^ 9r0˜Lf©ÙQsÖD¯Åñ¨•d¤ü˜Ì®v±ƒƒgLdOš¸B)±«¡ë9Ò]Ï‘4#52j¤Iâ~n“ß6–ûŒÔgŸ6¡ê[úª¡Œ”ØÕƒ‘ÎÁÄ) Ä„Rç¨ã? “’~‘@òòJ?„Ī…²˜›]ƒUбþR¬C]Øß±Q‹ÕË.x-°»ƒó7õD)À8t`ViÔØPBÒymH†£ư«:mð@Ú®&eK@*,•­ÄQŠI‹OϼD HÉp,€TTô©9.AJTÝñ¡“ó]­ý›@B†LV&›U{ñ^šáš€ü$H¿ˆVûs¯ £½]ˆIhÝ¢V2Â)xš[H_vßMþ+õЪ=¢Ô@l<àur²æEÊ >–€ÔÖøíÓcf"8H‰tô‰U©•î4·-L-Ÿ _ÉA < ÷bÕƒ‘ÎÁdR+£WÍš'O •~½Ÿ9cI“/a…Ôfζ^ì^¡þuH¥†lˆt6DF5Ì"ÑJ®@ŠF[çHWÁsêVA¶´Æx´Ñ“¦jã©ÄR>À8 ô )±Õƒ‘ÎÁdR}#úÚÄÙÉH¥'ïd¬çÌhyEð8¿° ¯·ö–y‡ö² öc1TÙª6[ÀÅ}¤ÄVC6D:"H…§E)rcÒâå¤þ4t¤··¡í ôçÇF†Þ4U úÀQ3CgL¥B %¶r0Ò9˜ @Šž¬ÄQŠJŒ‘'J‹/Q1£÷òdz²XnÔ-sÆÏõÙ©íþašÖ ?&s)çç±ìf…@Š@5dC¤³!Ò”qÂ^Ýèq"Qä •~½9}¾?02õ¥)™Ó—îìÌê,ø¦)ÉÕƒ‘ÎÁdR;c ÇGN•¢ ©ÌÔêîÂêIˆÍ\lÍÈ4¥…©Z2\C˜~œ%¶’Ç”Ô ‘ΆHR¢'%ËH¥'ïh4ÙÞÎŒN1§ñô¦¡" ÿº\”¿K͈a ¸¸”ØjÈÁHç`2©)‘Sõc ä ¤¸ÙoVÛ2zy2½X,÷úŒÔì@¦²c) ‰f±gOgϤ(Rª!" ‘ ¤bÓ9Šì´y©´ø’ftš#fç¤i´¨>;åD ìhIßèI[²`dØHŠB %¡r0Ò9˜ @J£îï'o Åý6ÕŽA©Ÿ#¥ëÖÑŠ±Ý¿Ž¢|9þJl%oŽ/)é¨!" ‘ ¤¬’lE•¢ ©ÌÔꮂVSq¢Í·¢õt Ô°¢¯t§9Ñ•XJötRRPCF:“6HÄS;rÔÄ (øAЇAT«« c™w(þq>{Á4¶8E!’P Ùélˆ\ µ(vñÚ¸õrRÜì7ˬë2RNö^Ašè ýul‚æ¸a`¤6nNè@ŠB %¡r0Ò9˜´AÊ fÇÄÈIr RÁlÖ@‡ºGF}*M™­ìÎñD %55dC¤³!r”NDO·dy)î¾þ´I6õÏ>0§ó õµ šìTGQ6t[e–²Ý”tÔƒ‘ÎÁ¤ RbO"H…rXã\êÅ{&ç ÎÊñì "Q) Õ ‘ΆHRì´EŽR|z’üƒüƒGÚa?atؘE!‹Á) ”„jÈÁHç`uU[:0âmkDè°2oIá?•N0–W0mïð>êÏÈIËüò{œÙܰþÒ2*eÞNxàçFk™÷T¤Hò’F_8˜uj†nÌbÙîÛ–Žþ%#Ü2fÕý&kèÁkõR³ßʼU(¸œ×­§§"5 e3RŽÎNX`6„o˜¸™*‡)ãÛb>²6^ìY¬PнcjvyE ¥‰Ae7ÞŃUΕ:š÷<05ìæk&˜ÕÐõé®ç ÍH9¹8c9¾ÅXšî\ÿy¼"äcéÆýÛX§é{ñæ üãòœ%Vø6xàj0»ÌjÈÁHç`R©ÕÞkÐÈHmÿÊR®KOcp¶!MËÔ (¥!’²²!ÒÙ‰@ªshgCÏ]rRö£0Ûþ¤ìíòŒffŸ»~ ç¡Óµ¥ªQËoW"’¦r0Ò9˜TAjjÀT½€érRØËvrD9¥"hSqC*ºqB=Z½æ~-))«!" ‘¤ÌÝ,˜ Ž.NrR sênŽ…ØÕ` õ,‡Œ ÷n>¶UTŠB %¡r0Ò9˜TAª/£ï:ïõrR¸UP*ŠÊ2CËy0dZl¶-O_ ŠB %¡²!ÒÙY@j½÷zÌÄÄ£(8AjûWs[z£(–ï) Uß½Š] \+F %e5ä`¤s0©‚”"SÑÌõ€<ïz)Œ¢²TÏøžYW#’¾²!ÒÙY@Jª7:MÎ@jûל:mÓwÌä{ÖFæ,1( ”„jÈÁHç`Ò)7ÓaĦ(8AŠ7Ã) }0ŠŠÚr ÛH¿œÙ7±Ÿx…@JB5dC¤³!²€T?Fÿµ>ëä ¤¾Ë©‡\àÁиôñ!癤¤¯†Œt&=Zí½z} œï…ƒ/¶äm;Pb@J&jȆHgCd)E¦â7sy©ïrê!x,•­¨stç«÷n ’¾r0Ò9˜ô@jjÀ4½½ÖRµïhÇjç]+D %5dC¤³!R€”‰{]N]lŠ‚¤æÔ1ôÁ(*jsÝ4©Ý…Æúù;Ä£(Rª!#ƒI¤ Yá³¢5€TÖ•C}ûŠMQ¤$TC6D:"H­öY=>HÎ@Š÷ÂAŠ=ã{e_>Œ@J&jÈÁHç`Ò)Í­†­¤öíÛUh„@JVjȆHgC¤©©ÔiÓf´ʾ’ƒ”Ø…@JB5ä`¤s0q@ªºæÀÁ)gÇŸX?Y»Ø4Å#6ç pü¨Ö¤$ ̸œÅ—ΔþF HÀSf5‘Fˆ %¥ThC²u€6”_ü„@<€6„«I¤ÀÇRCD´ÊguS8Wþš@<€Cf5‘Fˆ %$'Іd5êm»ª#І  ájR)ð±Ä©µ>ëÐðÅ£0f %CÃhNö\j)­9B:{áA fÏAÆ÷…Œ¯š”Ví ¤\ã½F’%{¤Xµwêæ¹NÑD]£'6H‰t,Zˆ Ì£ІІCÎVíÍ ˜=™:Y’%{¤XµwíÞM•(•Ò›å¢.Ó¤dè0«!#ƒI ¤´C´ ¢ý¯ÿøíÓ;Éköó5ÌjèzŽt×sÐf¤¾8˜Ï´™3åÛÁδ=ƒ9Øë¼ùôNòÀÚö9˜¸jÈÁHç`R©À+VÉ· etÉèŸÒŸŠB %¡²!ÒÙì å?vëBùv°´®iSBQ¤$TCF:“ HÑ{l´ß$ß668læáY¤`PC6D:‚¤/w^!ß<,xNî<R0¨!#ƒI¤Ú[ì¶Ê· ¹MtÛP´ jȆHgC°ƒTP¯õëåÛÁœ';o.ÞŠ@ 5ä`¤s0©€TH§6;åÛ†Ìæší;cŠ@ 5dC¤³!ØAª\ îY¸Ç¢Ô jÈÁHç`Ò)µ6†òmC›Wmö¼è@ 5dC¤³!ØA*D]ßÖ@¾lݺu~ÕTR0¨!#ƒµ,HY›šD-[¦Ô.pÝ|ëý¦rlCK¶-aÕpHÁ †lˆt6=HýŸ½ók"Ûûp\+H±÷‚]±¢(öÞPÑU@T:$¡'ôÞ %ôÒ;TDÅ ØQa-«®}w]WÝê~÷;a4FÉ$’™pòüïÜÉáøÛ 9yŸwNÎ Ò*¸ÌtYzK6)<¤A‚Ž`](Rg×Þ()µ Ö/ºWã¸!`?lïiÅŽ•NÁý"(RxHƒ"†p+RÈ© £_˜”Ÿ γWò°ŠÒ ÁG°.©¿}гf5ë|.®Ÿ¥£Ø­¬, Œð< fÚÏ<úø8)<¤A Cø©nu*8ÙyrõO§¡Há! Œpë*‘ú«¬øÍT½Ïã ßQì©`§uØÐ”Í›¤Cã]ÇŸ{~ŠÒ †‡!<ŠT7;é5²þU#)<¤A‚Ž`]%Rÿ„ßß@Að!ÕÙ©9³BWW*14ÄwÈÕ77¡Há! bˆp¡H}s*ÿÙ"ݧ‚êAêÍ¿¶@‘ÂC$á&ŒH]oþoŸ¿ÊK^O]öeFŠ„ì´ahs;¸ÄÄÔ`ˆ¡ÐУèßB ÓTBUZ{È×®ÞüC‘BóF ÿ¨ã9 } J åä]ÇC’u(1t¢æ†BùF Ä’&f‘BóП `¦{öDééÉ3ú>/Nÿí·7¼ ©éæ?Šž™ Æõ Æ5M‘B5n>þöaÐdb¼_t?k›ÜÕ«¸NŒ—¹4 ¡÷e¬ÒØzQœþî·7h +‘BïËhzâ9M nh0Ä»› ÿ¨c÷Dƒ!Ý„ÀÊ7%†>b)4†þTÐóظñ•¼|³¦¦£÷Ï«ý7zÔïW.ñ5$¬D ÏÌëºQÇÙS:&˜H5·~*ÿòçŽùjÝ™ÈëÀœZ‡ Ѧ±ƒÁ~¨á^N¬0"°Ó¢QœÕñ~{ŠØi!!GD|³Q¦uÄÐû+—¸ºÑÍ»³ùÎKñ)Þ¾CÏi‚òÅPvÎvZNÞ51$‘QÇ™ÆCÕ§Ÿ°ùžÕñÅ@o_ q¦‰M¤x §‚2Q2ÖŽ\N‰N0pð•´hØ—”}úáåÇ´äÿÆŒæ:/uã[‚‰(Rx‘·/D IDATf$X—ŽºviÒA°.›‘B.&Û‚8yFßýu-Ò,'ìù'†jŸ|ýG†xÌK•Ã)†Ênð|Žpçs8œ‘úˆâTè‹ÖÓ»3h²Þ/Äþ]¢û¡¤ÎHA‚uѨk×S:&ŒHC9 |È1ä,­:ƒKã†ò÷/DÿŠ˜ÖCˆ },)èÌnÞýC‘BùF :xNhÔ¡ÁPvÎe 1$ÎQ×. †ÀY†BùF Ä’&f‘B?–М —`ùÚÚ'&MBöebäúËÆêà€Î  C‘Â3s ÁºhÔµK“‚‰ãOÄhhHå}Ûaq €¡?ƒEý[1(EJ ÷¢û¤¡ÁúÂÛ¨k—†C( %†PѯÚûÈA0…p ' é#X”ž^ó×SÁ¿üõûç©ÒBá.ÖT¤$H <§A‚Ž`P¤„|‹!ÒÛ¿ßž‘*-„"%Á4ˆ!Âaç"%­c-NPP@'âú=~ÿücJbgk¤ H‰- Œp‡H ófì²Oê1ôäýó?Ú0Ä÷Ú=(R]š1D8 A‘îÝ=Ä}ãÆ— à„°_t¯ŸW,øú½¡ND‹‚"%b$á&‘šä2i—ëîn‚¡÷ u"Z)Ó †‡!œ‹Ô(ÏQ†4#©$x˜îݹl™Ldß‹SDŸ‹‚"%z$á&‘šCž³Í]_º1Ô/º÷³þ÷‘‚"%†4ˆ!Âaç"5ÕqêNWi%ò Å ¸öó-L, Š”ˆi`„#˜8DJÏLo½çiÇòí_ïbbQP¤DLƒ"†p.R ¬löØ"å‹ræùy(RxHƒ#ÁÄ!R 7®ô^)åŠÒ¨ÕE iC„ÃÎEjÕþUk¼ÖJ9ÁÂÇ•=: E i`„#˜8Dj÷öݺ¾Âÿ­bb`ˆ1²êÉI(RxHƒ"†p.RÛvoÓóY&å –Þ’ E i`„#˜8DÊt½é¼€ùRŽ¡0­üû¢ÞõŠ&iC„ÃÎEÊx³ñB?)'XЂˆQP¤ð F8‚‰C¤ì–ÙÍ š)å ™x'ŠÒ †‡!œ‹”Í*›ÙÚRN0¿5öuNP¤ð F8‚±ºvuÍ Z¡/†ÿ‹ k’!ñÀŻÏFw(‰¿R@”‡^‹Çe™û$ûûìò÷Ës÷ÒLC‰,Þ%ñÏu÷y¥@×ÎHyz{J“24f²/J•ãØ¬I>›öW|ôò'L Øâùœ Ïið|Žpçs¸‘òôñ;1vTô(d_”ÂóX"Ñ-çÍÿáé#L Øâ™xNƒ#ÁÄ!RªʱÊR.RFëo„"…‡4ˆ!Âaç"U4¨H©&å"åä6,k8)<¤A‚Ž`â©K½/õŒï%å"E·]¤ E iC„ÃÎEêŒì™¾ñý¤\¤¨áý’û5?n"%ñ4H0ÂL"ÕHj”‰“uôu–f‘rtœ5ŠÒ †‡!œ‹ Xïø>4_Wi)JäØœqGî‡"%ñ4H0ÂLL"¥ÆT7÷·”f‘¢DôMî{ïù(ROƒ"†ð/RbXûÛJ·H­©X˸ EJâi`„#˜˜Djtôè={¤Z¤"Ç环j­†"%ñ4ˆ!Âaÿ"52z¤a‘t‹”M ٪Ɗ”ÄÓ ÁG01‰ÔlÆìµ¡ë¤[¤ÖT®e6ÅC‘’xÄá0„‘šÁ˜¹>tƒt‹T\C‚^Ù2(ROƒ#ÁÄ$R+CW͘'Ý"euÚÆ®ÖŠ”ÄÓ †‡!ü‹Ôò°ó#H·H]ºE%MŠ”ÄÓ ÁG01‰Ô® Ýc£ÆJ·HE52×^EJâiC„ÃþEÊ x÷ØèqÒ-R@}e:uï,)ɦA‚Ž`b)+•Xé©3÷ÏÍEJâiC„ÃþEÊ2ÀšE0i©ÕkÂêP¤$› F8‚ #R×›ÿC9 Ø"åæãÑ+¾ØvԣĤ ŠThèQôo!†iC_>UHU¸úä&Cºtåw E åò£Žç4F åä]ÇC’u(1t¢æ†BùF Ä’&f‘€`_DÊÍדE0_Žz”˜|C‘’ Á€ú¸Ÿ÷48¶‹‡!]¨ÿ C‘Â3s Á¸> Á¸¦ #R(Ç §H-8Ÿ³ò·áªGŠz_Æ6 `¨ÏÂÌ›9| +‘BïËhzâ9M nh0Ä»› ’Ô¨C‰!Ý„ÀÊ7%†>b)öE¤Àv@ìËk®z„¡HIŒ`äÈ ”H’£hF²Ë‰níÔ°)<3LèžÝ`‚‰Tsë§ò/¥¯Öµ©±Qcwíæ£¸øSì´Ä¤ó"ŠT@@;-$䈈o¶ iˆHYœ¶¢žµçêF—¯¾cò—â+R½|‡žÓ„u¼1”s…–“wMD IvÔñÅPõé'ì@¾gu|1$ÐÁCœib) Æ!Rã¢Æí 6ࣸN‚ñŸ—ÂóXBf¤@ifj¦(G_¼üä7ªkø•Èw^НHá™9`buRC0ñÍH-ˆX¨¦'Ý3Ré7²çχ3R˜§ Ô žÏî|Ž3R‹ÃuAIíŒÔ‘Ú~dËÂë/üÐÚ¹!Á)á†Ên`„#˜0"D å€à©mÁú£&uÔ£¸øj EÊß¿ý[ˆaÚç‰q»`R\_5”d—ûˆû¼†"…ò@9tðœ&ШCƒ¡ìœËbHR£%†ÀY†BùF Ä’&f‘€`"µ3x× ÷âNa(R#Ø‘Š8áÜ7jFáCî†T×ð+†"…gæ@‚q}@‚qMÓU{`kåo­,Ú…{è=å[ˆa2#jVáì°BG•˜ú¦ðª=ɤ¡ÁúÂó¨C‰!”…C(KÊ®Ú[Š¿]ÿ89é¾j­ññÑß%Ê_xp^µ'©4H0ÂL|"åáíÙ'¾³¯‹t‹”uÙÌðÕë~|o ¡4ˆ!Âaˆ"ª\ªŸ½‹TKËZÚÄâõþ—‚ HI* ŒpŸH3Ô(ÐXºE*÷lH¯˜%O…·((R"¦A CD©1Ñc ‚wI¯H=<{$S1ô¬ïå8’EP¤$• F8‚‰U¤æDÌYºJªEêQZB|Ï$µê¡HI* bˆp"ŠHu¶Þ\JDêñ-{¿¸E5-7~¼«”¦|î‡KP¤$’ F8‚‰U¤6†lš9MŠEêÁƒºE´ô{èÜ¡HI* bˆp"ŠHï=FjEŠÃ„ö7´=M"%‘4H0ÂL¬"eéo%Êzs<ˆ6‘zz¡*K1ì|ÄõC³‹æ@‘’TÄá0D‘rôséßÏÝÇSêEêȪÁ™ƒ[ž>€"%þ4H0ÂL¬"åáí%×ßÎ×^:Eêù]Gÿ¸ÅgÜ{þH%}Àù‡uP¤$’1D8 E¤@ djì<(õ"jjþÔ”¦4(RâOƒ#ÁÄ*R &FMÔÖ—N‘â0!Óûìk¡HI$ bˆp"H͘·Ç±4½«Wz4f.ªŒà¬õÌ Sc§µkä[àØÞÿ÷†…sæ`› F8‚I@¤ödí]–±\:DÊø›‰ñ¯…ÔòÔR7B‘sÄá0D,‘ò)ô™2J:DŠ}*Ò ]éÑP0ã§E+Å+Q¢©P¤Ä– F8‚I@¤Âó#T“T¥F¤ÀÃeAr©1yAU;òË ”O”OÈN†"%Î4ˆ!Âaÿ"e@$Q@Å,Ï,Î/+’O’O,Inûiqhd,‰½4£˜ˆ"žj¤±´É0ë”Ò…£³1Â#ÙV´=fû¸¸qP¤Ä– F8‚I@¤@ L’*"…œÒ¥/¹ÚУ1mÓávJ43yÖ®´ï¡H‰3 bˆp¿H±vJòÖº0H}ÝŒ%rMÁΡCé#ìc”¨1)Î4Ä¡‘ǧ?5öTT`4Ò¦?È(ÆŠ”xÒ ÁG01‰ÔÚçó¹eiù euƃ¬]m?ÍŽ`Ï-IÍ'¢HqNŒ'î*.•¹þ§yeú('* :)EJ”4ˆ!Âaˆp"EͳŸ™>«°8o»[Ìü„CëhÒ#R ""‹+jÕ2½b‘«hkåxå€È@(RbHƒ#ÁÄ8#Uphóg‘¢åºŽO™v23R†ÛG+Q‰*Rœã@}¾/¿Ôïr™y§MOž±;m)±¥A C„©ÌÒlÙDY_chHnzqþé)¤ 6^Tº˜à”ˆ<;K¹ Š”Ò ÁG0ɈTVá!€¡ä¼„m®1ób³Ö¸ÄT¤8ÓÊ Î¯S©+7©d[‘g¦· “RP¤DIƒ"†'R ¦$k ´ .íÒ)R ²Œ³ëäêÒ,ÓÁ¾W”·\¼5ÚŠTW§A‚Ž`’)P³Ófïˆ2œ’Ÿ³^ŠD Ô¡ð¼Kªu•{¿~Ç7?eÁ¦ÔÍP¤Ä“1D8 P¤Š b¾'…Nm[±ð¹Æ&H—HJ±M½¤p)gwØÿ>fF¼Fpd©.Mƒ#Á$&Rf©ûGN ,(È+”6‘•™{QãÒ‘G‘§¡Yr‰òáY (RbHƒ"†(RŸ¿ÝK/É”â)¤âi \(^S ö§ÅN[Â\ EªKÓ ÁG0I‰T¾?#Œ×dðõ|../WZDŠåR19_<¶éó=6¤nZ²Š”Ò †‡!ü‹Íçë̉šà\ÌjŸ—1ß4×\êE TŒ/óÌÐ3‡çñeø)Æ+ZD[@‘êº4H0ÂL‘ºÞüÊÁcF ÔÜ´y¦‡ÌŠK®`8#zý[ˆmZGÊŠ;t~ø…ª5'Ò²2ã³UUï˜Ïj§æØMIR^úC‘Bï˘§qU¢ÌÄCçÆœ?¡w¸9ƒª™<61;+‘BïËhzâ9M nh0Ä»› ’à¨Cƒ!Ý„ÀÊ7%†>b)ôc‰·Hå–È')$—üˆ¡HIp,ñýÂ."‚Q»âÇ3CÏlß82ndHd¨ˆ"…~â   ÏL¤š[?•ù+}|µ®ýŒT‡Ê-n蟨”Qúô,.½+¢H±-$䈈o¶iYQFrví„s§uËKÿoaÆýlZ~á-EJ 7‚ïÐÁsš£Ž7†²s®°Órò®‰ˆ!‰:Þª>ý„È÷¬Ž/†z#øbˆ3Ml"%èXâ-R%e·We™íÉ =KÊï‰(RK¼-*-ý<’vz÷ó‹j SSÅ.Z¤nµüûõ@1/  †g‚‰iFª37Z”¾Ø4—ÉW¡ˆ;#õÙ¥R³ÏL9{j^MfÑ …DLo8#%ÄpBÙ žÏî|Ÿ3RQ›£ËÙ"ö´s£€Â AÉc Êø/’‚)ÄÀ6gwNµzõ¨!ÛbôáŒ$˜(iÒA0aD ˆÊÁW¤\ri£S´0)ÿBôo!¶i¼Ý(==ëôÌ3gg7Z¤Zi$ ŠÏN]¤P¾(‡žÓuh0”sC IpÔ¡Á8«ÃC(ß”BÒÄ,R(_BœËƒ™:àO€``‹ìwԣѩ“\ ܱ) Ž%4"•š~þó•ezé°RÅE“˜ýB‹Ôí–1)H0H0I¬ ¯ÚçsQŽ%l‘ûŒ ‡Û»W”¯–¤˜Œ•H¡`žÆwåSzFÖ©y5g¦œÕIZ´8E^µ×Eih0„¾p>êÐ`e¡ÄÊ’Ž«öëÌ¢@YäZÍNׯJ¤z÷±MC#Rœ•à”˜<%Y)J‰M…Wía˜ F8‚u¡H!çsÀŸ†ÀÙï¨G;²v®ÈXÙDŠåR™YÕ‹NUM=>0a eº5©®Hƒ"†p+RÀ~"¶n 5únªìL•æÉ%ÉÅ'v7‘ÅôŠ Ô Tf(;F:A‘Â* ŒpëÚûH!þ„œÏqµ(Pq r‰r…YÝA¤X••yBïd²N²B‚‚f)ˆ!QÒ¤C¸)dFÊsCù)™:_»N i]Ö†-ÙÛº¡HŠ Œv_管Bw .ßorvÓÆzzÅûo¡H — F8‚uù 9?ŸÏm(çaH³Óf›2ï."ÕæRUkNÐ6Ð% ŠÍJ€"…mÄá0„O‘b¯‘Dµ,.dÏÝ¢Š™ŠIJ¹¥ÝP¤@1Â#ívÙ Qi§üxܸ&Ýů§-ÿoÌèM—¡H ‘ F8‚‰cFÊc}Ûù¥¨3CrÊq“2¦‰T[ÛTµm¿þ̸™©ÙP¤0Lƒ"†ð)Rì«ö:h–g¦[’QTÄU’¦¥M·Èµêž"*:$8i±¢Zˆœ‹ ùjïÏÌ´ÿÆŽÁj^ çÌÁ6 ŒpÇ)à@–fyÀ¥‚특RnQ¾j’*ß%ç8‚ŠK˜ *f9ÏÚÀÜE Ã4ˆ!ÂaŸ"Uþå>RìÚž6Î#.»„ËÍ< ¼5“5yßçcI‘ªØoòdìX;K;å0egWdÔ§¥Kþ,/†"%h$á&Ž«ö2:k±¤$£€ûÌ¿ÏÚ£“¾¨»‰¨|ã‚ÑÞ££M Ha•1D8 E¤ ÊJ$ÍöMÌ/åâIcSÇÙå9tO‘:»ic“îb°ã`ï(¥¸=9ØÏ?d›¿Bƒ H š F8‚‰ã™v*ÐñOœå“SÈE’R Óäåb b»›HJ5OÓÒ°‰ g¥&Ÿ¢’¯ì6¨§Wd¦&ãù£Žç4ˆ!Âaˆ("*·¤x†OÂÒ ä‚?rÊw™2ª{ŠTù~“ÇãÆ"û»Ãì¾cª¬+³fÍHU”@‘4 ŒpŸHÊ.Ì×òŒ[”ÄÕ“ÖgnÕ E T$%Z9\¾l®ò3-­æU+_O[þnàÀ?¯5àö£Žç4ˆ!Âaˆ@"*»¤x¬GÜæˆ´óUÅCS†¹xtC‘Š ~«ªZµg7ò48÷žFˆêN Ù7¿½„"%h$á&V‘•‘Ÿ?Æ=Ö€‘ÚñG1±²‰ýS Óº¡He¥&×L *çè†|µWknúcÇ|üã>?êxNƒ"†ˆ%R R ‹4éÌý±™íÚmòÈZiZÝP¤@e99üª¦öxÜØ&ÝÅo¦êý>~ÔˆðiJI£®¼¹EJ 4Þ«Ø9ïé¤^ÆêUÆA‚á`¬®b®Ì¢?4iÔÄ»´4ÓÐ8'Tü‡$ñºL+è ÷9®¦zi-õô ‰›4òÙè%ñW*ЈòÔ L-x¯êœÚŽc%åÿj$ö/<+Ù_¾¤êpáõ®•·÷…-Ø/*ý4:ܺWœ‚Å¡t‰›tøXý¸.öBâÛÃY7®ê ü41åD©äª‹^) kg¤ž¿}õ.=x¨ážTtõV»ö“OÌøø—ç\ÿ´ÀîQŽ'OÏ×Ö>1iØ1üÞP6RÞ(íPbJÒÍËëvl;¢8¼æ-XH{ñîg¬ ¤ýðôVÒBÂC;+ðÙàñS®…«qÒ1M:Îçp;#õúÃ[Uûàáׄ’›w8ão'Ï.ÑæÚÚ’m±*œL: ”36Åͺg´êø°©7*Ò(DÀÒÃåXH;}¡«i‡Oê@š«»[g>Vì}Ÿï'|°(šÖig¤p>N¤ƒ`’)PGnßè–xüNK»öå•+‚º›HEéé5„ìÏ#oï«°–iòl„ã6ÖP¤ HñH“ T¤@½Ó¢8vïvËË÷¿hLθ› EŠ]ËÝ{êÈ2ô}õ¡Ha#Rt«Š‘r?é™yò´((Râ!˜ÄD TFý5À Kr6xjP–æÃŸŸv+‘2ݳ畂BÒ¢EÈSÛôÓrŒþäSãc¡HA‘â‘&"®HÊj¼ 8vùñvK~kñø¼ñ/Þÿ EŠ]úÎ^ý\­äbT´Âµ¬ÝmPù~Ð9HƒI¢DöpÊÕK,Ê«³H­>jæÑŸB!9x®L¯:)ªH/ßëÊz9$ suÁQáEŠn›;}À›)[Bè|, Š”x&I‘X}i„Oê­g?q6®>¼Ö«Þ·[‰x¸oÜøRA¡yР““&½™ªwuìÆ€™±zñ) P¤ Hu–&"´HŠ8{e”oÚÍÏØ- ÊFÞˆ"ÅYF.rvÁ#ƒõ‹“Y´ÔÑÕ‰·H9Ó¼FP#¦:»Qiôøä“*ö Ž¥â©séñI1UgË‹’Æ;x¨8ŌԱҴXáEŠfU4Yùç)[BQX)ñLÂ"ʺ¸zf衯_°[j~<§ž¡~ÿÍãn%Ràaºwoä²eùÚÚõ®•©ñ±ÖÑŒž†ÇMd¤DB‘ÂJ¤ò6Í|ÙŸô?RÏ÷£VÒ¡HáCD)PnÇÎM ̼ÿó+äéñ«‡dyúî%)Î2§¹ ° ›F·Ã«ÌTÞâ·Õ™îÒ¹KyÌ †Osv³£Ó’«º¤”‹U¤NUíwwšŸwºíééÀ@§‘IÇk$.RežºÍ\)±Lò"õìí›­©å+㋟þúšÝ¸éØÚ%·î&RœiˆÙEÅõ\ª¯î•ì E ‘º¡³%îÃ𱫚.ÿïÈíñ¡P¤$!))PƹU‹¢ ž½ûyºîØZ½©vE¦¹µ ™h¤ï³S#ZÔvßívvñW£ ß…eoÌ*-ï©“eËÝv—Õ¶=­MuS /?!q‘úο”ìŒD(R’'˜äE ÔãŸ_éDå:Ên9ÿ¤N5]µåõƒn.R ì£úy—3L2‚"…áW{‘fSþP_‘ EJò’‘zõá­~zåšÄ’¿ÿ ž6¾¼®’>àÚ«[P¤Ú•#D è”-¾Õw«ZŒšfÔàm¾ÛÚÍN9Ó¼ÇQç8»“é®Ñ‰'Ô“ÄüÕ>E åD)q "ªååó‰ôÃgÙ-'vYÕÚB‘B\J–FW¬8'*%Š"ârrœÂ‹uáð«=`H:D Ô³w¿,Š.0έBž:×Ñ×ÛEŠËú':m®£ÿ»0sšð§Í~[Ek*3•W¬²wu@úØ»ÊQŒ«öJ_®u‰Y~¨T¼_홸9~óÕ^"¾Úƒ"…C‚áE¤@5=~¬é‘Ä<×€<½þ¢Y%]åÒÓ(RˆKÉ9„O‹]¬–¨fŸlEJ$‘ q«˜£þë¬ïBàbs\`HjD ÔýŸ_Í ;äXyì?}÷rdΨÂJ Hq­UN>òÔ#äéï½ã#ÆËÄÉÌ µßó€Íw%|š“;…æÊLªVµ‹3-*ïbó´8wÏ$æñÚ Öbs\,6‡"…?‚áH¤XËÌ[~@gߨ“~ÉmõáµP¤¾º”}ÔÖkå•ÅIºMMA‘ú*RÁ´#3UQZ)ñ`HšD ÔÝW/Fú¦†œ®û9-£sÇüôûK(R\KßÙK–¶ìKw+àE Lh…~›ÔüY·?pÌ[žT”/Þ5R§/œ=y”ê.úýÇòฃeQ¢‰ÔOÿ(ÒçU_‘$j’ÇQ´"•e°ó'MMð±[°E WF¤®7ÿ‡ChäérÓœOE—FöüåÙ°ìaE-eèEŠÁ8¡H…†E? ÐtCÈU¤Ø.eÅX”´x@ÂjV/JNò awø|–Í•MM<õ¨öâ/ŠÔ•«¼x÷æIkXR€<Àsàöã÷E¤.ÔÿöÃã[T„Añ—ï 'Rǧ(¿µ§ õ2‹B)RØŽÒÐ`èDÍ3 1„òãCHš˜óÙ7 IDATE =ÁÐhSÃõ¿:6^~üdGRÆ•`õ‘5n—=QŠTTt5†"%A‚¡±¨¸ø³Èmä©«œ|¾ýîÏÅÀgפp­~qýFDްÌM̨Èä­Ge­ŠTÕ‰'íZ Ë¢œœ ;¸J‘ª8òM7®"Ì Y]>VÈÎ1«` E LD‚ #R(5 ¥HuìÆ<× é‘Ôô˜uûƒÔ[ó&>ýõ%J‘B?k…f@ ·o”=ÑwëL—[j²ÝДIZ‰“;» /!!~¢]ÔÂˆÄ¨ä¤øä“êŽÙ‘Í|ôC‘bõùå\‘Ÿ\`ù‘ûoî6”Os¤ßþUx‘úÚíÑ5#D¡EêwÎk^äææa RØŽÒÐ`ˆG7!0„òãCH1‹z‚¡©Îº±ÿ€ ²ê¼þE#‘B?k…s‚¡)v7ä¶sý;ôqpuÜê»mqÆîþIýǧߕ»;°$¸ø0—ÅRå¨ï~ŽF¤XN5'íÊÕMS8‘Bß­£ ý4hP;‘z;VC‘‚‘`‚‰Tsë§ò/¥¯Öñ©¦Øi—¯~3/å~ôÜÄ€Œ–—¬?º·°T'°!„¯H…„”³ÓŒã"ŠT@@;-$äˆèCG @"…¸”¼C¬_ÆÓ’òæFË'*-KZžÒav*)A× ©Ä„äê!¥9-ÜÅèBýö±¡™—â-RM7?"Qe¹¾žÎ«Ï¿jk•C›Xþð…"U×ð+ûðXóR¢‰TJÚ9vZZF½ˆ3RØŽ!Òxc¨úôv ß³:¾èãÏCœib)A Æ[¡®Ýþ“ÖpýÏŽ€E—Få×8·t^Yù<Ä(<¢’Å^ çã­PÑ1ÇÙiȼû¶Žt:Wå*¬,ö.öÙ|hËðÔárIrs3æçí * )ª,)«lf§¡™—â-RUÕÙiœóRBÏHU½Çä;/ÕN¤¼ì¼=M<[ö} Jucðg‘ú·ŸèŸP+¢HA‚aB0<ÎH!e]\­•ÿøçW5jUÓUo¾¼Ë[¤ºÉŒç¼p)°jiÒÒþ ý×&­kwëΈÈXÍ/wa1:wû?=ÂvFêñm®>¶7~ikùål¾FÊÍ'Ÿ‘bë†_ía;NJ“Žó9©œ‘B*³áÆ ¤úÇ?Î/]°?‡g¤¸ÎHqÞAÍ2Údãë’)cÆö åßÎ6¥–§S í×f¯‘:B&QF+]ký¡ ¶y¥‘À«DŸ‘Ê+ rw×vpñòžö‘Ƥ4‹Ž…F¤¢·V%¸awûÑ[ª¸ö,;RÁŒ¬?hvPß\1yñ1ý¢ûòµÇD!N—teé¯^ŸEê×±sàŒ~&ŒHÃP¤šn~àڎܨرªµÝ|l+I )ÃP¤üý Ñ4ÝPò©/óRL°Ež¤ê$éÈ%ÈmLÚ‘Â`}µ—?Ý>jAXbDRRtâ MZ^äí{<ôèBý EªéÖGlEª®áW E*%µC‘Âvœ”†Cà¬C ¡üø£Ä’&f‘BO04"uíö¼;„œ®é›zòaB’ª¡£!o= ¯ÄP¤$H04"SÕñ¶3Ìß‘£ö˜0‹R4g‚myç_ÛªÈõ*öÙ›g´(sí”!}û O>/sþÖœmÖ6%)å©í¾ ä-RÀœÚ}Çv©Î¾ä-RÀœjdêã]ë‘ýc µ^éa• 2/‹L«Œzz“ý¦¨†©ö‰é3Êw쇅É(F–.VÎ.œk¤ØuØÒC‘‚‘`øºj¯]!7ê´.®~øóÓ‡FºA)IX‰úæih®Åc¯—b·ø%û/LÒéŸÐ_7I×=ÆSÉ‘IKn»j¯ôån÷ømîˆ~ÉJ‘õì¾‹Ë Î¯öÊ„új¯} %RÅL^  >` öQZJ‘èÅ6 †PJ ¡¬î|Õ^Çr¬<33ìav˜f„¦ Ù¥*‰.R%lÓP^µÇµ›—Š\¹7±(dî åú§üÊÂðR†}¡ã®ÜݺYKÆ¥WIÐ;±7ØNH›kUöê‡Ü¬*¬iG\«‚#ND&T'gÖÊ;SXQ{”‹ï[ê7"Eó‡ü©¢³¥9§óØWÒʨŒ¬ö*÷q.¥Ù“™ëçm_—»~Ù¡:Ù‹&F͘ìq$R¬ì×b*b|­hURäPRÄhRøDRètRÐ|Ràb’ÿr’ï’·>ÉsÉݘäj±|›oñÀ’cê§Î/½pfÿÙ“þ§Žæô>RBÎljt ï"õœãFË3M¦øM"…Æ¥@Ť07Fîê9‚ÄT"n]]~ø*%€H½{ó¸58Ñ¿?8¥s ØWèzùF…h"õCJÇ]Xìr’ ©C‡´©C‡B‘†ºƒH½øý×¹~•£ídbev9ï‚"Å£oô v&1#%úU{^ÞÚ}µçí3Q”¯öØßîEí8¶`_Ыö Háœ`©ç_nÔIK¿Õ?¦ÿû-P¤PºRžÉž³©*i¦åMw<í|òöiq‰Ô7,ŠFÐÑ¥ž‘â·&½ ù‡û· êƒ\óR;ö³HýÝ·/)ü`¨;ˆ¨âÒOC(C=¶+G+[P- Hñ°(ğЬ‘Â\¤:®‘Ê/}âOœûP¤¤†`Ä©çm7êTtL\@[§¥tÐê )\ ޸ߜ|%Mÿðv•4•ɹS(§ì ®ßzp·ëDªìˆ{Ç»°xùŒƒHÑ"èÆÆk\×Lðž %³ÐAÖc©f<écŸÏ"õ|œ‘†º‰H@32e%D=hÆÄà‰|TÉzïed¸Ê\Üaù¹ÑÖÒgݬ» =YÀk®+_i`‚ÝXÂ(ésšÐ"µcgbQ<®ÚëR‘B\ÊÛg¢ƒƒ Øæó½ãš«ö8½ª³«ö H”`„)PÔÄ»rä°Q´üµ H äRå·6¸yÿNJCºa•ñ˜CcT­¯Øp>èè­Ä‘j}úðtKm|cùenäjÅHEÕU]k]ã}Æ®fnážÅLÚ]óR|p?)ü`¨ûˆ¡ýdª¢]@ÿ(ÕU«øÏI}FfÒ.˜£›ù½é ÏË>Q×™iÍ™…­¥'Õ\ú©áæ«»÷ÞÜ÷ bi÷Õ¢l¨$¯°© ©úgMžÖƒþÅ­å‡îæ'ÝJµÊK¦Ÿs³8eepl×ÊòUÚ…sÆæŒSMWíÔ{HæÙ…³×WnØ÷½Õ**™thhá‰euWÇ^kpõÆÆ[Íá÷Z®<à{Õ)œc¨Š¨-dçžÁÚÃC&ðº³T'3Rd+“óFK?ÈMðÃH¥ HA‘BùÎb›&#žH±ìÈÂRì/ËÐÔq×L¤¾<,M÷á|b\‘, û° u±÷Å"¢¤qI¾s|í–ÙíÙ¶gñº%æK´©Úé‡úU QAîºíÊ—[°ôŒ'õå¸ ë¶+êm·]óå¶+óHº$ßµ$¯í$÷}$º5ÉÙ™äàûõ6mµK·°ÔxvЕÛÎwîUýðÃc´WíA‘Â?†º§HZAqê9TÛ§ó;KuöÕÙ¶üPÙÞÊyÛ°A)(R(ßYlÓ¤ƒ`¬®D¬Ì¢?Ô<‚dT‹yõ,lx0pè£à_[JZ›‡~ž¿ùQ”cÀm{¶(™ÇZšŸ[°/æÿº»»v»¯ö<<战çò€u–mWÁìKü7ŒÿB(@”å!ñ_µˆõ}쉞±J¹Ü;|K°Ê¸äöVÖú«2÷áÅÝ:ÿ*›\È“üK€ ó"ÁºvF Ã4$ðòõ&v•œ¿(ï{P%YãdãiÎöoêröËÁ_e]l×~¥¾Š51.?)hßAL帱þ=[½Í™`˹/ÎÃ;xpy;‘-B§‡Å:¿™:°m·/\š ü¼³\Ó¤ã|·3R˜ìÎÃÖŽµ13¤W¼|Åß¶_}²¤××KM{.|r£õNëù'ä%÷-½þ³§h§™­­­ …çqŽy`÷IÃ<Œ{gba¨eÖÔÊ„,Ÿ’5§þz£@"ªüPÙÝÞ*…;÷K™HmÚ…Xòû7G‰ùð€9ÙØ¨’ɽÁ–·E¡I£ÏKå4'°OŸ›&tš ü¼³\Ó¤CÝ\¤š¶ÎL2—rñn×\ ¤a¢PP¤¤8 ó@H0¡Ž>SUÝ;jÌŽR4"u¥Âý¹-ãfmÝ•‹‡/îÖùSv|¨1&…#‘C`÷IÃ<bˆkus‘uûAËส “¯ßo†"ÕÕÝ' ó@H0!®¶äXœÛ3VÙï$ãÛös-:ãßÍk¹Ðt¹±êž¹Î__&Æó6™bãQP¤¤3 ó@ˆ!®E TcK³bÌŒ1)Kš¶@‘êÒÀy $÷ÎÄÂPgk¡¶döŠS̹XÚéb©Ž_í•ÿ#‰‚"%µi˜B q-(RH»sµ_̨5Á‹þœ:å?YY°}’šE óÀy $÷ÎÄÂ1š‘°_&vð‰†³P¤º:°û¤a1ĵ H±«6&pŒ/)N÷ëŸ3êÌ¥ HÁ4ñB‚qïL, ñ£ºkƒcVˆÓ:­ŠT—vŸ4Ì!†¸)vý9eòj$RÅ´Ï"õçÔ)P¤ð|xxNÃ<Œ{gbaˆ·i¼,=}aàÌZZŸdeÁ¶%& ŠæÝ' ó@ˆ!®EŠ]ÿÉÊyªIR #Ç)ÐE χ‡ç4Ì!Á¸w&†øÎ3]ŠšêN ^ùub¼3—‚"ÓÄ1ĵ H}‘š:WíX–KGúcÚT(Rx><<§a ƽ3±0ÄW¤>LšôT™4<àëÄø--(Rx><<§a1ĵ H±ëIjû$¸”Z()/ÈŠžÏi˜B‚qïL, ñ©OmãÃX'sçÆ°`Z Háùððœ†y Äׂ"ÕÎ¥þ˜6õ?YY°-´·SŽPN;šE ¦á!Œ{g!0t½ù? 1„2í#:‘z7a:r2wjkÁfýHÒ‡ÉÂÏH…‡Wa+R¡¡GQ/ ÓPâ9 }`wûÕ¡ÁЉšgbå%†41‹” Æ×¢Î]úµ]KFhË¥Nf !RQQÕØŠü —†>°»ý꤃`ˆJ¾`Ûí#:‘ªs;ž?6™51^ä$´H¡ŸµB9ú%Ò eO<§IªÊžLCƒ!Ý„ÀÊ,J !}Ä,R$_‘âÚ'Ã7S%B%¦:NP‘B?k?†]š&©n({B‚‰H0ÁDª¹õSù—?wÌWëø„@iù‰TMí3$ ¸Ô» 3XWíMÖŠ=x@-L-÷T "TÂ>64óR|‡N@@;0$䈈Q 4¾xN4°»ýêxc¨úôv ß³:¾èËCœib)‰Œ‡B]¨ÃNë8/•O+TSw­rG!Ró(‘$V%­Ìút‹dÍKQ¶Úú©µµË‘½WÛ’)ø1.MÐÀîö«“‚IÛŒTÇ>Ô µµÂÚö7=ç-RpF Wi’ꆲ§Ó¤ã|ÎHñž‘BªÊúø¨ÀQû*÷#C¦s‘BÊq9ˆòÔ’ì¦EvÛjK1·uXN ïEvÝg¤Ä˜&©n({B‚‰H0aD ˆ†|A™öHÕÔþÔ¾ñZ“§™×Àˆù‹©  lEÊß¿åðÂ0 e žÓÐv·_ ³: 1„ò‹CHš˜EJ‚ã+R.¿éô§ZÏ_˜é5suÉÚë÷o£©ydfë/CñÜ-”HÁ¡piè»Û¯N:&mWíq¯†&_¿ÑR.¤Ã«ö`š1OCƒ!”…C( ^µÇ5ÍU{¼êAëý†U´Õ³óµ•þÂW¤&ÛR:´Û/!‡$;X«öºAæ`Ü; CBЍú¦˜µL••ð3‘|DÊÔz¶-²Â |‚™Ù—Vóõ^ª¬FF÷ef¦P¤ºCæC\ Š”õCëÕÕ×÷Ù› Leà´K@‘²[CQ"ÓáíºGæ`Ü; C‹¨3MYs²TcUÝ«½PÌHÙL¶ e‹Ô~3§ VÎëÍÌ÷™ÚèZ‡õ²qÚ Eª¤a1ĵ H V-­×t¯ûÆÉ0e–{,G-Rv+Éa\- Š”´¦a ƽ3±0$’H]oºr¸©T«T3~°Õ1DŠóalîÓÏÖUŠT7HÃ<bˆkA‘¸š[/jµ„,U‰RÑ Ô²$[ò){=r¨"™ÆÕ¢ HIkæ`Ü; C"ŠË¥ŠšŽ;>&aìê,‹ý¦û)S+›05Kk(RÝ ó@ˆ!®EJˆªÌýT¥qßTàz[[ [o¹¯- |õ¡Huƒ4Ì!Á¸w&†D)–K%5ÕjÔÎ[§¦±Çr "e¹Ü*XÑÊaW‡Þx¬˜vŸ4Ì!†¸)! ¤9˜:V¨N™—²ØKW–)»ÖußovVxç˜vŸ4Ì!Á¸w&†0)–K…7Õ«ÝX༠tÿÍ”ÍèDÊj©uË¢Ú/4‡"%µi˜B q-(R‰ ÇN§•NÇ/Žßî¼C)ZiBÐD3Š)˜ÖE`Ü; CX‰¨Sæ¯kjÖ“×Ë0eÓó)«EÖ! Ö\梠HIqæC\ Š”Ð"ÊÙÄå¬ÂÙèe1Ë)Såcä7Ó¶@‘‚i] ƽ3±0„¡H´äéÉÇÔí²Ø¥©4ÉwÒ—%Sf«m8Wø­2=¸Ï̽?ç ²çF(RÝ ó@ˆ!®EJ‘E7t=ß·.jNØßDÛ,#?¾¦›Eª›§a ƽ3±0„­HÊš”U¡Y±Ït߈ ªªÛm¶w2åÄççÁŠy`÷IÃ<bˆkA‘Q¤@y-¿Ò£1l~:Ø·Øé³üÀj•pu}çíP¤ºsæ`Ü;—ù«{Ý´Jÿïüœûçt–—ýÏ27I!IÕ4—YVþ’?0X°D(„D9QÿUã§2[z4f.ºZ#SçòÀ9¿x@òà™²Jßtõ,l‹X#ØŒ¶i÷Ÿ=õÃý¯Ï¿qË´ìW·žš?mIéÒú‡MÈOQH‹ŽebU ÍÔÌ Ã*Ç÷I ¶i––Î_¬tœÏuŸ)lÓÞ|ø­]•l¾Ü@jtØxôhs+xúðíS³³ê™×£_xÛ±?»@ZQy)VÒ<¼<1,hnaŽU´Ø=@š½ƒ=VÒ\ÝÝ0,H01 ŠT›KÝûñ‚ò•S›Xòtï§V56Ê ªdr0©ÎF?žÓ HCP¤„Kk'CUiÍ5²õi¦u52õ«Œò&e×Ô?øùõÙ§´Kæj—Ì9óô<)©)ºËt{*‰BéAµŸíìFƒ"%~‚A‘ú\•þMWz4žØÇr©²¸¦¨IIê šÛílúñ©Ž£ÏiP¤‡!(RÂ¥u´(°eïdžÖmJ-W¢Åí=tìTëýÈë1ê™MÏZ´þúŠ”ÔˆÝu™e€#ÍšînKsÒ¤Ú¯¦A‘;Á H}­Ãž,—*YÉ:Ÿ.uãñ£ûTÓUÃ.3~xö#)ÎÑç4(R„Ã)áÒ8M(kÿg‹b{U–I=Øi~ùÂõè¹aÞ)3Bœ>exÊD%}€Ûeϧï^B‘’‘¢¥Úé"òDw[cGä ä Š”x Eê›*Øt©Ôh¿þpÁ•«HKYóa­¼É Šžj= EŠ=úñœEŠp‚"%\5OíêÕû·yWo¯J(Q¦ÅoÏM]Z¶V3K3òzÌ‹÷?C‘"´H¹Ò—›PwŒ ²îËÓ—j;¢aOwquw7w DeÝÇGÑãÌ“}2«(c)"©¯U×T#SŸ´¯lWæNðO÷>ræÚÃû-?=t=ﮜ¦B9c÷é}(R8Oƒ"E8 A‘. ½H±ëú³gög4Ü“&GûŽËž=.o|æÝ(R)7Wû½›È²ÖU{×>”]{é..®þ)ashžî¾‘yý¬ô±cFIŸÓ¤ƒ`P¤¾±(°eïGø×®/Rt‰Ý™V^qõÆùûuËÊWŒ>4:íZ)<§ ¨J¦–6ÉdÖRM2yŠ••)ñcŠ”piBˆRÏßýš~åÆRf¡‚¯Í€”QSògyTA‘"¤H±¿ãsw7qr•¥l=èæê@îg`ÖÖ^Zps9pF“R`Ü;wg qšPšÑyÄ¢Ø^•fxìÔµ¶Ø—œâ™45(3èø¹Ø†Ô19c/¬¼s Š>Ó)«ù¶e«=V†V6êdòb(RâÇ)áÒ„)v]yüĪ䤼¿I?æpõÄÔ<‡Âò(R)7O=;ä¯nØ.rØCwssqõW£†Í¥y8ºyøGåG ´ß+æ`’ÃN“‚A‘BU­?ý˜rþŠ^L¾’KÜž¬rë“nê·Ý~î~)¼¥ &RÖ#(ä9–Ÿ¥J—LQ·¶²€"%f A‘.Mt‘BêÙo¿Pï °è5B>^Ã0Û2¿¼ŠADÊÜÉŽD¡È”Á;íÝ`\Eê݃S(”Yß¶=ýûísfz…BrÞ]ûòJ¾`Û eOÒøŠß>5ÍwæUòôPŽ\$/¿&n}pl(oCÂP¤ÐO\¡ýèO5ÄŸ&P7”×âuh´Ñ·q‘¥lÞce¹ßÚ¯/ÙÝ ­ÍRM þêÐ`ˆG7!0„ò#Æ¡oyòéÖÑÖ7ŠzΣß>X‹Tw!=B¤ØEËbŽˆZÛ#V^%zbî"¥zŠ-»Û ù½æ Îæ¥PŠ·n>Kí‘å>Œ™n^ìÆïéHcø$KKz„¡H¡ŸµB)R_º¹,¤"'šþ IDAT¯%b*xþù§v¶öž© ]Öõø:Ww¾"õÕ·Ü< œB”Û~crvÁ+éîtV»ç’Ï«¦"Ƈ4oÞÇg: LD‚q©ßžy» tsøùŸý{µ2@>¤êô«¿žÖäÌ´wõË-cý•>¾ZÇ÷p›[?•ù›h$‘w i< ©®ñ-;­³y)vÝyòÈ.ñÞ0w·>¡szÇõ×]ÒÎ2².±ùÎKñ5¤àà2vZxD•ˆ"PÄN 9"âçÛ4AùŠTHh9;í˼eŽŽífÐbjå¦B žfM>`iË{©¦Äu¼1T}ú ;ïY_ ôcc¨=Oú§.Å}hpÖG$ [‘ê>ã!F×nÿÉNC3/ÅU¤J-Ê3rY¥å!Ó“©6;–œPø¬´¼´¿š:å"&œHÅÆW³/!±ã¼”Ï\»‘Bf¤(SÈa\E*$ä+ÑÌKñ–¤  vZXØ1ÑE*2ò(;0†YƒèÔLJ8‡H¹Ì§0ÚÑ,ì"sû~¹àŽk1cO"Q©©G\\&P©}ìì5]h;y(¶ÌëH°"õwCeè°Ô+eE~šÈ?ûý¥—?}mÓm}þ(‹§kÅäñù„£Ä@ÝPö(Mô©vWíÑ1s|={/è×Fô ߨN=ŠcDÔÓÊÏoÝrØÌ,.’g¤ꉾ›€3R»¬ÉÈRÍAúd·¾dÏ-¬FëÖ>Xvf©¦ux?ŸëÀ6† }†tÉŒTw"XWÏH±ëÆ>ãÖ ëÍÓý5¢Wöcö_B_âäqgã:ÐŽõŒ”0"E¨)ûŽ"E±÷V¡m¶oëVô` 5LϕόTjêá¶I‘¯Õ™KáþÒA°v"åz¿jV`ññ_þ¾Rü埽m5pós¼ÿo[ŸJý4ckßaÈ ‰bH 4¾zTßøV ‘B*ŒÉÜì#º¨GœìàHm‹'ИGsùMUõ¹–öõ¥KžLÿ›šhQ¤‚ƒK1)ÿBô£_ÌièQŠTHh·v§Áäß6¢Yª)Á_ ³: 1„ò#Ö†¡yÒCHv"Õ½ÆW®Ýþ‘ºHsy5u*Ø))¿K¡Q§»MW ëe`7/8%Dh‘Š«ÆP¤BBJ1©ÀÀblEŠy¤3‘²µ¥øîEDªôõ|»ˆ©t>ßî9»ŒCüÉÊî³HÙÙk -R`"ì‘òt׈ò¼ÿ7À / e>x‹æ8ПZaˆ!Ò„¸jH±Ë–2"dsù¨áÉKäïaÿ褑á[uµÎæ¥ÐO5a(Rè8Oèª=S+Út'K+SKò›ÀÞdŸMVìŸZ°r@³TS ÃÃ(és ¡,”BYàJ²=:ò¤†§X‰Tw#JI]¤J òÞt…Bf·\±µ¹3fà~²ÑŸCƒ‡î 4dÆcwÕž0"E¨«öD©T½9G…‘zDZ,JŸ2fy•Ð"%s°M“‚qŠÔ—íf Þ¾{ééGûfb¼êõGéÀPW‹R1цäå3è²ß1'E¬w BÚŸŽwØÌ c‘2·Õþ¼Ü'|¢…»ñËRͰq0¸-›$?™ûÌgÚv|-ûö˜8Œ² G–j.±²Ä¥l×Ùø+°~i Y²Ž•µyÛª©9Ÿah–jvÕ‹E‘†g åFëÈ“Ü0„‘Hu;‚‰M¤@ŒŒx¯9èÕÔ©¬«ö¦Nû ´–EÑbô-õ„2zGÜΠ¢Ð²òÿƒ"…^¤X_íQQ}µçàá¸Ä‹RÄÄ^±½z†M.Dêàf¥j…žÿ#‘þ0¦fÕµÝ9rý´g²=@ãÿ)Î:¿`³)vÌÁ(ésšt¬“Ûpú׿Mår!Ug^ÿýSsÕLç ÏGŸ$@®ÀxD Ôù­[®-]ú}„‹jļ~1²‹\Q¼©MzK@{×ÌH‘'Û†})dFjŸÅ$›P‹òhÿZ̧ÙD 0·Úi| 2·ÙÍ…BYY¯#“Õ)”Þ` öy¬¦’ð‹å™ÆC7©«ß+’þGêý÷Œ÷ÊϳگÔ6†ì};¨7Àë§a ŸÄV]ìJ }ýÀŠkFª»Lœ"Åš—*Ì¿àJ»±Ïl;^¯W–P}0Æh—Ñÿª1ƒ´Ã´w~O÷v…"ÅW¤ÀÓyÔˆvt Ç¶Åæþ¦ßú“¥·åÒ 5ªzÄõë6e¼ÏNSúv}ÊŠߘ>Žóu‚÷ŽtsÜœ°lè_ Úq.n®ú?ô‘oÜnåCs¬vÚ÷¶—&sfÌÁ&èKšt …Hýïï·Ï¢ÒåXœyñÛIP£+0$6‘:bfúdüxd?44üùÀx÷ñÁ½¿§Ìõˆö‚"%ð¿ùöµîwV$û,k›6çsÃÉÁóøMJYY¯mwªÑ™KIþÅòLã¡—;o•Ÿª«>ôà •ÿ¦Ñ.×_8—úd‹Ù“—.½a3õÓÀ×/ˆC?_Mìýõ7o·¼éÏ.)é%˜˜E U•–u¯Ê_Qc³ÆFËS«_l¿‰‘׆¬µð³D§P^»m“ÁmE 5ðd5ºûDm¤ø¯±$®H9n¥r¼@JЖ/·?OaÝþ ŸkÕWÖ- <õý·ÏŸÕŸ©Ü‹©Ø3xî0ïÝ;]]é_ìÊ…¶s¹ÕVRŒ²eµ ÍÀ•n»jÄ{Íå º›«³ñee¥6‘rªv6y-7ÁofÌÁ&èKšt ÞÙ\"LjøMMí¤‘!»¥zïÞºñªú¦›UBU´ü´ŒB÷qÞÏŠŸÇ·¯åûƒž2¶ôHZéëä°ñÖ|Dªm.Šõ1°þ²T´H™H±÷ë˜Kÿ¾ÿê%Ž—Ž_·ŸõÏ$›¦KbÁ¿Â^¤ðœ® EêË)ǀ̕Y•Ã*Ý–¹-vY¬£Ò?®¿V¤ÖÚu¨¥ÊóÛ)Q'¢ð!R¼ÊÂÙ­àðÂP¡ÑC{ÇõUˆ×ÇgÓ`šÃF_G·Ï«¦ènŽNÎKÁŽ•I¤’9ˆ”‚5¥L‰ô?é}†7unëæê·wîËm=&_½ «Õ `Ü;wg ‰M¤@åÒioÕÕžŒ}é’§ãÇ}ÐÚã=]÷º-¶^,-;+d–a¬QHl)>‘Ej>uélOõ‘mK5ýÖ“®+°ü©4üÈÆ}V¬¦ÞK'<–‘Š—JîÏQ}ow yZWôhd^eg>Ê=Û¥+  Hu5Áð,Rlbì,QV'S—6'Íj81])V ‘ªU¡«Œö¹xÓº­HÙ9ØÒ Wø¬Ð ÕRŽQî×W+EoDž‚›™Š}ðRgkW×ëm¶w‡X”å> Rßتhδ6ôJZ6â¥Ù‰Înnvúwú+6m1ós¶¯¡ýÜoÓÀ+æ`’ÃN“‚A‘“H±æ¥"‡ÍÍX÷‘2o©XF\ša:m-]‡ª#Ë”²V—¾ÄÐÊŠ÷‡°_íí%ÎôX*>²W\Ïž¡“çzh‘JŸ­¼}¯Û³Y!óý)75ÈÔÒÒdõÞý/®þžjv€¸+ Ú SyoÃð?Öø6Ô}óÓ‹ç+oÚÌúwþÍs¸À)áÒ!RHùÐ}R6¦V­¾ !wq.Ͷ9x‹vÄœ!1CúÄ÷QeªNaLåáU˜‹”¥±1sŊ¹scV¬°06›HY9Yítß¹ÌwÙÔ©š‘š}âú¨D«‹ÒóY©ãb>œ¨à˜8Ë1ȈîÕÙõzöcæêo÷5ݳj§DŠQ²t[oi¶Ã ÑÕqûƒ>êǬéÞÆÓWœïÒvÕ^áåSýek×bóÝ$÷ÎÈÿ]m.‹˜M¥ö[°Cjt†Ä,Rh*ƒšY6¯ÜwQ€¶ƒv_fßÁ¡ƒu\í²Ù Eê›Gû×b1Í–µØÜ`ßçÅæ;9äÉÌÊ|³ã–iÞÚrŒÁ=be{ÏMß¹×fý—¥š}û9:‚}k‹•:ƒß©/ð4³´8¸µVA¡M¤w…8“kY=ä5> —¸õ9ü›ìè‡e»C€!àìíåPòDt‘êž#H±+Ä:´`~áE¹‹ÇGOÚšäíæãæånµ9d½ý^¶W)Gªóœ>/|þºu{ )¾TlEê ãÚk…;ƒWOž ¶¯¼·lÁ\¤¨ŽÔý´ýúúË}–/ ¯é?Qž)Ìipäàiîó×™£²r²ÞaO×¢ú÷£DŒ¦n°w/*ýÄûÆvv*TªŒƒÃdº xJŠí]µjK¤ƒ‹‡“uÚ’¡ÉMOqvs·Yý´—bãVs?‡{“_zªfêbÅLrØiÒA0–H5Ý.k·ðáC8)¤§ÿ“0;ñ¤ÒIšm}†lŒ¬B”â$?­•N«Œ-÷ñT(‹Õ6œ+ýW›³¿]ªé»L´/Ì%*Rû—[1:¼–}ßïwiûy©¦®•5ð'ê.÷EÃCFöŠíÛ'R³§¿Þ0šñFkª9ÇU{Ë,·b”Ú.*Si›+î=¸t‡iÛO-6M{Fð?,Õøs­ç™Ü¥úOÖaWkÎ_:[zÛ|Ú§nÕb>‡ðzžˆ(RÝ–`D)¤Àÿv${ì’쥢9E!k3kdêè{cÁ\ c2†è“Í–‡®˜Á˜9à VÌrcÇŽ“‹‘“‰‘WœÙÛc¯&Õu™µËKë/sT¬mæ};Û–jÊÛú‚}KSÃðùƒ?ÈO=~¶êºŒ|Ý ‡ƒ&Ä]að7©M‘RÞtó|ý…ºÃÍþÙ´ôú{âê™§ºââa„'œâËEªÛŒ¸"Å®»ÀCKsjUj«UjÏ÷¾ ›Ç6*ÎÊ)}»Õ~ë2ú²yžó¦øM< `P.Zî»øïd˜2À±†…š5ÉÒ Ÿs=ç.r[:¯u^ |k›Ý¶]”]»É»AÚ†oÐûA{±¡™![†ŒM/Ò^·d¯ÙÞ–;wZ±j»õöÍäÍkìÖ,wX®ë¬»€¾@ÛM{š×´‰¾Çø>ÿóõѧ'<½×V­WÍPœ=xˉ­ׂAãŸqþ[øäõs¬ ¤=zÐò2=å·—©¶>|þDèBbýü÷7µO/ÆßJ²9OÖ«\®‘©¡˜¦v.:gÞ);W«S¨à˜¸Ž‘^Xv´ú8×ò ˜ÃˆÚúýÞPKã4ÚÀÑ2§÷nN¥çY`^6ÒúWeU]ÅñcÙÖoûª?qM>y¤ç+ ._oâZ€ý¨³BÒD½O¾=ŸãÃg¤ Á¤ ­æPkl}žuØ‚ý®;¼¿ÊK^O]Ö®ñ“ÞÒ¿*˺ôÅò~œiGNV¡/ RÇ‹ytÀùŒ”tŒ%RW›ËÛaèÚJÑbH”´Ž"õ¹þýóåñ7÷6µ\píåÑ/w߯Ó+ÕÙ-7ßÞI¹—nvÞrrò¬þ±òj™jº•KÀÓÈÛ1…ço=»‹•Ha\ûgÄð?é¼;`¶ÿŒñSõqÌEªùMËÑG'˜7€'Í÷_52q\¿ä~ãòÆoªÚbœL±³ ¿úêÖ«÷oËoÝ3È:¢D‹[•P’Z½¨ôSg …Ýu°““BP¨^^q x 0tÚxÖǶ¹â¿Æé53‹±ºUÔÚ¯úM‘+ pˆ!„'œâËE Œèiˆd zÁ¹ß%‡÷ñ·ƒÆü•Înù;#õÿÆŽùøª?e-Ü‹åû9ÓP*Ô_ï·ãÇÉF“žkûP¤$H0Ϋö´Û®yѾz§“ñ 1$JZ§"õ¥~yðûC—¯©_¿»òÞY»æÓ²õÀ¥@;ØÖ´í·üþ°âñÑ ë¡FgöO/Ÿª –¡>«höÆ#›,N[úÖ¤ßÌ:y¿æö³{YÔÓÇ>hŒ~É6!°ÿÏÈ‘ÂÍKÝ|r‡Y|·ò᱄ÛÉ~µVk®›˜?I&EF5Cmv±öö;H9¤&ŒË¬H» «*­¼ÀCÌ&ûŠ3C¼’§gùž¼x÷ÕKöRÞ"UQUš’áä8?6a"R…'Jxô'†Zb¢>hi €-Ø?†>~sÍ *žˆ(R!Áž–kz…S,À>89ìºÃ;y˜Ó§ezÿ’m>é-û^oìÒË÷r¦¡³(/dñø !;¹$˜%(Áºõ}¤ðœÆW¤z÷ñŸ2^ÜÖn¾¢võBï+j¾Uǯö.?n*½[Ýërž¾÷¤Ñ²òãs'ȥʃ—;^»hÎŠŠ•Û«v¬1s<çì_ȼèvÞ‘–ª£­ÇÏ<8wáQ¨{Q?h/¾öøÖƒçºõäîs½¹-é1 ®½©£÷Ž—4—g\Ïf6Æû×Ñλڜ&ï;i¢lǪŠÕ³ gËÞ/¹Ÿ\ŠÜ” óKl=®ovÖÂëŠoúì3OÏ?zûS» *ÄŸÒMëjdê·,RwK4ÿöά‰¤ã9P¬TQQì;ö^@Q¢é½÷ÞIO ¡¥ƒ{ÛyzçùÝçy–ëé©w߆…)É&l’ ŒÏûåÙL†ÿ7™ùßoßÙ”?ûàaç5³ÜAªCô2ºG"t°WäN„¢ ½Ï‘‰Kô5¡4ïý«ªÿIMbÝÑ4%¤¶!©=Ý3ý¥¾^/) u0RUCRìxzå¯úq ‚,Õ„Â;€ vÃ…îÆElÇEoÀÅ-k]­9—¦ÏZªÉZ­©¯Ö”!b-Õ¤Êâ2¾ƒ—jÊdᥚÊ)Êð:M(ôBõ  g»Ï^j¿t“å&Ë-–Žk½M¼Ã熧¥dkg× ­9?è<_ë4ᥚ^ëj÷]»ýäõËî6õez;~|‚®ê°oC¤€šä6O, õIF¦ÃL‡JzHI¨ƒ¨¿ ßÑÛëÂ-#…J<+È}:ɤú÷óŒŸäçu±yÛ½=W Wè˜Ë.n„ÕÝ¢¯'OÀ=2ÔŽ{H}–•…ÝG9½Í† ìÛ) &¹Í H½Ô׃f÷û82;#¥ß @JB €FÕ ¨k¤„R¬5RÃt¾Y#EHxB‚) æ'ÎcAª!&ªÃuOw,%Y6]½±®MûáúÓÚ¯ç&JÀõ) &¹Í H]mu°œ¾m¦_‰‹é ;ØgIs0RUã ¤à]{œ\UdwEx?8Eh†ÈéýÁò—c×!)¸ZòT#_£žƒp°ÎÁ—ƒñRwî†þ žXdz|©ñIJš]ÇŒnýð‰­vý6ï¼wHj¸þš­vA^Š;$]nja«]¼òªç uýößlAžy)ž uðð=¶µæØØÈ±<‘‹‹ÄÇ—³Õ’“õÐbPëÒPö^,ŇAõg~g ò¼ªãiC|až6Ä©&2&š/ º®']Ç+õÕÁb+‹fxÍè Hë.ør0‘_Õ@FJØ)èNŒ÷¤˜ ¿5ùRãnC’r=2R¡ºN4}‚<#åSå·jתޗ‘’8¤ CqÜ TC(ˆe5¾º ݺ‡æ©†ë¯Q©+M-è‚ÔõÛ£R߃^“¦ùõ¤ââʺj]Jîùa4ûmý™G(ÚÂ1ŒÐ†`5ƒp0aYÐu=é:dk¤îA¯¶e»­6[õ¤°ç`…8Â( r0°k£j EBȳM(‚Â@RpDîžë:·ç …üêj] íl&.]‰õ`CìÚKô5Œ7u5$ dž}½M¼{R|yºj]zý,C² €FÕH‰¤œ+\·ìØÒû@*ñd .e’Ù) &¹Í#HÎKššÔû@*éd*.ÅP‚ €FÕH‰¤LKÌ\Wºö> >†Kœ-A6@ ¨InóÄRyã³µ³{H…@–4K‚ €FÕH‰¤æ-ˆŸßû@Êõ°;.~‰Ù) &¹Í#H©g©r ÷”ÛaÉr0RU %ÒËÕÏ›Ûû@Êò€.fÙ) &¹Í#H ÈpiÀ¥ÞRVlp1k%ÈÁHaT €”@J™©|T‰GI´¡õUq‘ædC¤€šä6O\ •w¸P…©Úˆkì} µå`Û$ÈÁHaT €”°Aª²®fPæ †ïzH-.[‚ ³•  Ô$·y⩘ýq“óz%H-.3‘, …Q5R©ԃéz¹z eL "â< ²!Ìû<~ôÀ}c= ¸¯»ÈÖ-ã@E‡­Ö¥¡LÝ;ì"A6@ ¨InóÄRöåŽëö­ï• 5MÒ €FÕH ¤+œVí] ÙÐŽôâ°ªÚꣵi ™À|üQÎjGhä"iOsôŒ%¥6µ. E»@à/A6@ ¨InóÄR+ŠWºT¸õJÒ-ÐÃøIƒ¨)aƒ”IñRJ/Ȇ෇ŽÕ™ŒÁ‘ÅŒcÕŽÖlbhÙïBÑ8Ð’²éÞ†T³Uq¾ÑdC¤€šä6O\ ¥«~9³ ` ;§¾÷àcGöïß;F’sêC²‡à|£$ÈÁXUA€èƒ¡ÆC­ø²¡šê—ÖÁ­vãSa]ü‰³NIþ ÕÀ“I•âo-ò(¯þ00S ç‰o3`B=ù'öBôQZýN*S¶¢ú#ä`æIW‚öþ]Võ.‰\&p:¥Š³æ¹H1ú~¾¸Œ< /Õê`éâm_Ö§3R¿=ÿ­€Ôþúð­€Õ°Üu誽ý÷#Z©Å'&ð ¿dEš"tÙ\—˜è–&㓺'¡½ZR‚M a8þÙNT¯ÀÐc©Ýûõçqôî‰Ñ£!.ìü÷€ÕÐ:­ #%‚‰óüý+´Ë!Œ®Ã²Z!g¸‘ÜGÑFAƒ± ½¢ñ øÀokb<§~ÿן;ÄñN,9X縬†Ö‰·öªˆšèAjsúf#’'H±">YÛ ¿:¶ím\|²®wºõ¾/èºjy(»)ϸb)¬saLRAÌëâ IDAT½R H­¡¬OßRøôµ~­9u/ÂÚþæÖ^Wºq «Ö™‡ÖXŸr)€Öƹ0&©^©Æ¤œHN£i£ácÈÁG¥û§§'§ã#ñR>xçöŒTh ^&ñœzgÚppcò¥TRB^¯ˆêb‹>î?î?ù¹-g~‘ꉚˆAJ‹¢µ#Í¢·‚Ô”Òi{o”ÂÚ8ÆÄAIïþ|¹ÏóŸÑƒ ³úWwÅûC?uY¸Ã!Œ®Ã²OšG¿š²† Rö‘U¯Öœº?~SRzj{µÕþýx<ÆsêyhFÙÌ¢æ}¤„2¼„1^ùËHývíi„ñ—Q¶þÚEáÙR‚«‰¤ü’ýåèr1‰±½¤ÔòÔÏÜ¿@ kã\H=«¿+ôõµÿ½xq¿%vö¿#ö´¼è¢ðtv-B]‡e5ž ¥LW ²AŠ{eŒ;Xgž?üÔ½³¤„2¼„1^ùÞ÷Sîyƒ–Æß:ÞÊø@J`5Q‚ÔâÜùÄùqKKÃml‚ŽãLJ{H5?¼#Ô¹ûëO¤°6Î…1qø»×òsKÊü/Ób^¶tQx¢»!Œ®Ã²w0ò y¨ÑÕØo{HÝ|ø½Cêî/?ÊðÆxEO®¤¾Ëòã/^y8ó_µíOÿ×Eáù} #%¸šÈ@*<)B†.” ‘S½Ì%è²!öq/©Ò›•öM„Hamœ câ E¨W×Þ´®CP˜ÿîÊ“. ±lÂè:,«q#cªñJÊªÞ RU·ŒÛkp¿ÕÁH¡?¼„1^‘-ºþÌé')Èq~6Úòòø½. Áãz¢&2ZB0™NšÞU­üÙŠ’8Š>·å) ŽsaLþ2RÏハÿïhû–g]ž-Á®E£ë°¬Æ}¿ž].”–°¼<Æ!‡ RÐq²ò^R‰“7ÜÔ'@ªù·B5„‚|©ñ¤¨ËoÞõ«éR¿lj¬_Ef-Œ­ ¸ýìYkyÓÍ}xy®¶çI·øáeAJŒ]‡®Bj¾ý¹‡ ’yrtœ•} zõ5)mÀ5Æ,ß×Ã5R))µÈ]µ0dyÄ*älX:w©EBxfÚ¬&bê5Æžo|ø¦äqñ? ÞÝ~ѹðVƧ>Õu"Vã«ë¸€”%y§Muìyº„ø )è>¤Äè``Èú¨­ÿéÀ uþR Š % ¤Žt«!¬É—<¤^ÿ°÷\ѯÏÿxó´®nŸ|Äñú7m„ôøáYÃÀL5ßÌžƒ”»]5„„ÔCšMœ3—h —U}Þ´=û„Ì¥Ðe%=ÏH!¿JC]­ M+ž½¸Hu®ÖBxfÚ\GÄ Õk ÉC ^Ü ¿.yùûÓÞ|6ç_õ¯þ|Õ¹ðü>1ôI¯q0t«q©Ñ´Ñ¶ä]0ÁüçÔ»£(„ %FëC³Ëçä^+èR«õ¤„á`üÔûŸkÚ¥'Öñl_j<PãF ͯÙjHòRAª=^¼{v²¾thÚÅ·Yÿ¯©|jš½´ê¾S ³' %ö®CW;ݾÇ)È#/ÕH¹¤¸*ÐÂ’ÂÌÓ™%¯–[”Ÿ¹œàZϾÇ'Ø©øørvÛ’“õÐbPëC Y W\cƒÔņ¿Ø‚ç.óÈKñ)¾Î,OâTHõ2ã‚PÍw>´©U>úqϪÏÒ¬u_¦n{{î×ÖR?¼ YÁYÈóñ½¬ëD¦&@×u‡Dî$!ô!Ù¹gÙja«4àãW• ¼FJìÖ†”s”/þx… Rœvþ2¼OžƒŒT·ñl_áKÝÿÊÉ}œbó Rï~Œoýý£€Ò¨‡-­…-鄽¥÷~~ý?מ”Ø»]5ag¤bã4©šfé[¡c˨dyo|ÈÊ“œäÔÃ]{Hê ¯É—' ¼wV=O>©žì;’ŒÂTbé“^ã`èVë‰&Ð&l&ofãÑn«VN}yY¯ÉH»I%G>îÍ)8 CqÜ TC(È—7ŠÚ[ÀÚÏÂÜYª j篟ÔÖ•*G;úúÍïÎLN¸púõ›¿Þ¢Rbì:tÕÒíû‚¯‘ZB0Ñ#ëÇ&&,IìƒwŠIb0OqYÅ/HÅÅ•!7tÕ8IˆÞÀXP¹¨3H]lx"H!<³mV1Hõã‰GÍw>Rÿ¾¿uãŒItë*ϸšà{¯^mÞû+u…8ÏŒ?¿“Ü®±rÁî@ʃä1˜>8‰ ¿µ²­„(*À.^iÞÃ5Rbt0NÊnÊ5®˜×¤ C¤„á``×^×ñÑh2ÌOÏåÚ@êã#@Š/o/Èý½årm®õ7ÝØ1ýÒÓç`מwí9¤:*ÒÝCÇø§ë¤…Æ'"D(‰ÛµçyÒÛñ¸SgBA a€]{"˜8üíÚã ¤>þ\z±ôÉëÿ´œ¬/•ôðÁW¨„RFJŒ]‡®šð@* 9¢¨‰»¼ñKCSâøA(‰©y• è RØç˜8ÜÙèuUÙ§iSÿ•—ƒ^¡cÁní½ýüêü™rµô«7>·–||œ’µùê}×X&)!©u†!;’]-™—ž®„ŸŒOÄwÁL’RK«—¯H qx c¼rËHM1‚ùiZ0î¢ÎÁ79LÚì€ó¥_e¤Þ=)?T5Ö—€ó$©¥JüñÅ7™'Rߪ ¤¢’¢‡S5u“ÖBeÄ/BIHÝýåGöJsRç˜8Ü(ª²´Ãâî,ÕEÛ>?‹M€Wy–Çýþ¾µðýÅ#Åã+~þýãcRBSë@BI„ä!ô¡$Çð´ôaþ„yáød%Y õï?)e¾øãURB^¯ÜWšÃîõ&|–ì£L0éO—×+˜I¾–ùàé/Hoíñ¤zR1‰±cÉ:ƒSfñOäóvž$‚TÅ­ýâqì·¤°6Î…1q¸€Ñ§©S`ãz¬Ôæ`Ÿ¦M #õæãËcõåÊÑõõÿyöÛ…YÄ ?þóî)!ªu ¡å”†TC¿”te_ÂÚ(¼ôw •ÑÉc¤îˆîBIH-©2!]¥Âì8ÆÄá–‘š6æ'3{Üå±8kÜn{•S¿\CR/ŸÞð¡6†f:4SwxæŠhóÔœ¢ç¿‚yèhÞÝÂÝ—HñTëa. ¢¨ù9ð[Fù#Í„!¦öÒ‘Ñ=§(I©»ðò‚ŸHavœ câp_iι8á©nyòÂïhr¹«=8Ë;#õùeÍ‘­ÖUžêi‡SyóMæ €”0ÕØ 4:}$~¦²/Á/E„’,RÍQ=sÿ)á/aŒ×‚þü=­þâè"프¥i»´Âu”3‡ØvHÌÉ=.b) ©.ŸóéIpì×¾þ‰g-B;]Ò—w·šO··ª:ø‡W¯ZËß|xB/-ÑðimX•ÿU”^²þ“¢»'P†h&-ûY[»Üʪï€TÍíCÚE:œT@Jè³FÜ‚ÜAªm×ÞôiЉ€^_W—C%—ÝQ`ݪ8:gVÞJ¤·öÄýM…ÑuXVƒhe£4K7µ‰þÇÛç¤Ä¯ö®åCMå?©¬UžÄ”$+ÒîT…±aaqé=¢(I©èó±›™ú`E]]ªi_l~é×ß6°~ÿèüІS.§£3bLö-SÌVœQ93àrpÝoõÏþnÁHµÇ7ÏŒ;HµÇ›O-çN—A­jþôñõ«[Æy¡¼gúwuÅo«$/4ŒœtõJSM뮽ÿik—[÷¡ŒÔÜ cjC©¾æ`‚wþ|¼ª8zaœ,CÅé´wvå#Ì~Sat¦Ôþ¾Þð/k•§É'·§“—3<ˆ"c홌øaQ’RK«—¥]&ú`E]PH u4ïn½ìåb‡+g¤¯œ±¼yÏâþMƒ›W”®doʱµŸÀ˜¨œ¥²áè&âMÊí?`¤:?3©8΋µHB_Gòî­ÐND·õéiL{«b½ƒJžýïÄÈrû‚"y¨0¨`Ûù?§²†¦ô÷sXþ׫7ðãš™½2$9¦¯¬‘jxÐ,Ÿ%ãá÷¤úšƒõ¤à¸ûô‰yIŽTÊ¢AtÅU‡7„úÐOÝcÿ_ÔÝ/v¸*öo*Œ®ÃÚ»ˆ¢>äÂo‹êeHÒ%3”ˆ)I=§(‰©ï@Öôó ©šöŸ/ÑeÀ½‰0hêe.C¯Ž÷ïû|$îu½Í“sÆjµNF,Š^î½~0IuYÃ=¢ôè¾ê×Ü•–¾»TsÛ6õrðþƒeï…ôe«+ßÄ“+äO%V~-,¯xáŸR0(è"±J<§€³U¥'•=Iº„ß²*?Ædí5kTôØ\úÛáºO'™…Ô˜óæ=QTD+³Žq:ü¨nFÕÌ. D¢ €æ@ ö­½ðÐðêÅˉ+&¯w^oj0"58|HÊtG+­¸­³"&¥ø¸µ‡ D|kÏ9ØyVÒ,šÌ„Ô Ñë£ÏËŸOÝžÚ]å¾RÖ§m“o¦u1±%ʆH ¦†:HÁ½rG;Eg¬Ê wšîTOT‘8bYв]¡»0R'Xâ÷Eî¯;xâ(É” *$Ÿh©0ÚæêcbËHQÈ«"HöxJ…âK”ò%ùRXåNáDé@’ ÅUaԈѩ£·Ø.z:TíW}ýæÅ‹žMZQTØúõ(zZR6B)§ó.Q×bº0‰r0R˜)(Š·m}0v,|ì´.ÊaB܆{U’Uqô‰Ã†¤L3LX½>ÆÊ+Ò»7”g çÚ˜µZx-išôô¤én>nµq$Â9‚ uõ)ª¨þ84_íî럺˜ØeC¤SC¤"ÁÅÎNE-(f¿ ôLÞ™¾1ÜÌÚL3NS#Qc…÷ GOÇÎwýÄukïhýQJ6S9j_v=@êký∠äP*…H"ëxWãY…æ´íJ$%Ÿ5>™1Lpã¹Í›°¿ÊEª®ù¢Y¨yýå­. D¢ €ÖA*:(ð…Š ç©Ê ëá5R¾á!k"÷ÄmRIš; ]ç;ª\ªœ^[7eŽIÂ:ëXkïv´H1©ä#.ÎÍL¸:3iAÊ;Ð{KÔ–ñ©ã¥hRÚéÚKyz%íL:«x¶hVQ€_Šêk PRÙå}½w’fC¤SC¤G˜gX€U€©éØÈ±C’†,s_æàèàÝ-HådÕ{y6ìØ^ïíY˜“…>HÕÞÚz³Ì—i·ÿx|k/~€ Q%ªÀ{ÿ±£¢) e½k«¼‰XðDIK')ûgEÆôK5P‹Õ¡29ÿû†"HE”Z9­k‘( …ubíÚst€ÈéÁXÖ®½cÇ@ÇPIç´“OXøÆ0¿É‘»†Æ®˜4«?~tªìš´ IsNî¶•Ô•V+O²W9æ¡„å1޹l<‚Ž—WRåᡯ†ýÍÀàæRèµEM *AR~~–á–óæÆD‘‘¤µ4n©k°+F~æ„<Úór牛‰¼7÷õ1š–»:ç~~×[¢l€”`jb)ÎðtóÜê¼urÐd9‚Ü4ÿivY)7ó Ùt .öµºÚ㉾_±z}­®•%#uüH“©\ˆ?ñµðP]m(‰.RœQ/žŒ‘Lñˆ%Êú½(”Ô4’L¸UšÂ6g‹ºÑõ:ÎÔuxJŸ)ã<3âJ×"Q@J@ Ѝ À"ómG—-ƒ^î×ó0 Š™><ÔM*ÊZ&aùàô)ƒ)£dé 2ªÑÕuR&®µÞ¸4|ËÊ+?ï,­¢¢ Ť’!ŠªßmË.Ž[ÔÕ¸ä¥ÈLj#Ì–±kYær£ÜåR4©¡¤¡Ó“¦o‰Úâa‘T/s â'ˆŠ‚¶/õ¿z|ð™¨=QH(ªO”C £Cõù§W]Ol‰²!R‚©a¤Øáàcãf³Ø{ñTµ±#Ö{¬ð ÈN¦@un#›Š ãW|奂+ꪌ|野s9\¦ã˫߮=2YÏ›¸˜¨CÓH½‚T¯’šN_íO0Lé£ åè,ÏP~òñy×"Q@J2@ª‡Q]ó_pagB¦gD3šK›»”ºt=uƒ9ÅÜšbã@qp¢8§•7†3#b˜q©Ìô4&¾Âm×ɺ& †$“6MÓÉõ¶„ª2‚œ. Ë5ŒµÆ™ó&fË>0cà°ÌaÓ3gldl -='ŸØQÄR©3Ë®~×P¦}(È'!Eõ)2Ž7^SàÚíÄ–( %˜Ö@ŠÕ5ÿÆÓlÃwÍ ›-O6 ‘Ýê½5,<<+'£ÇãÇ×{{¢RµËÌÕ̺ãµÇŽ$f0dòSŽs|ZW&ŽŒž@2‰%…)x2Å&.¦òl™ …mämEzG2ôǦÓ"’Iê^Ä}5#µ(nÑ’|ën D¢ €TŸ©k¤ÒH¿T‚yan8a×â²\cc{\îùÈà#Å#‹©ÔøéñA ‚œW9[n±\oµ~©ýÒ¹®sgxÍ06ЊÐÒŒÕTLSTLWTJ—œ>¨?­?ÔW¬ ÄQeÓ)¥Êáˆ8Â(\ê\â\\ìJ\ä6\¨=.Àç•ÊÞ–Üel_ÈjÓàr„êS åíë£HV—_ïvbK” L ³ ŹFê²…ù¾s--ÂŒQ¥¥Ic´ˆKcwN>dµµŒTý‘8zÖ0oÖr(åÈ<窺£§NÚ¿wX›Ÿ‡Føˆ~…ìMRõÇÅ®øŽ*o@^‘†'ÔëŸ<<õè«a>Ä9 ä4j)U’jBÙ¹n D¢Lj¾óÅo…P ¡ _j<Í¥zÿ}tA*5íŠ •‘y¶‡?ˆqÌ­—¹¿º zM÷<-Øbó#.Î Æu¸y÷Ç„™‡]]Ûµg¤"°ïñAA¥žB¤RRj‘ºj4¿–L¦r¹ ˆ}ãIHÊIžu¶‡mW!©ô¤6Ýjkò¥†Ä\Ð)äÕâQO@ ¦(x½yëñeεç|­‘jQSã\#uÒÖæíp]„{÷:€LQ0?qwæ­ž€ò«4$5ùRã IHêè¥ê/YŠÐ†Ä2aÚ\GÄ L`B^s¿ÞkuõoÖH9:¼ÒÐÈÍfzåœN´TÁÏêGÒøŽ&¥DÑšH5Ù‘e_[”Ï/H!_G…¤g­:ÙænH7TÈPXI_K‡ 32/¾³Ù…Çj*ì;OHBRgbÊÄ…q {ƒñRwî®iÿ•>žXdz|©ñ@‹­Tí¿SÓþË…ÐU]ÏA*!±’ݼÔÔÃ=)*õ[-#ƒw^ªKbïÚËÍ;_Óú+ËÄõy ìÚ+ kQW{d0îæR“?&LgÿlpÑÞëü‚TäÂ"v f©ÄåGØ_–J=ÙCŠ/g«%'ê¡Å Æ„Z¶—¼Ôî ;ªŒ»¿;Oã„åiCœj")à`ƒ‰Ä1 yå¥j¾}üÁøXˆœOhݵ7~RœQ}üXLIõ6j±ÃÒ*θÀqZæt•zUŽvNúäôð¹á®+]-L-6[l^j¿ÔØÕxª÷Tƒ`ƒ1#4â5Øp‘&I·=À…&…£Ê«&KMTÄáGãÒÆágãbÖâ­q>8Ÿxîná|€ cV-_ÕëAÊ=À]–*»;x7)ñ|+ÔHBhèªõ¤æÆOLžÈ¹šªÛ‰íI¬;}Ø(òtòpR}þó¿9>}¥®ç™±óçw›_¤„-ØÇA fäÑz™ËsÖ+çz)¾níÝHˆûkÚ´÷ïþš6õFb¼`?€3R‰k*¾Þã Õ‹cë§ês®¦êÖ@$ÊÁH ÅÃ8ÐU˜¢ÜüYs¶A»Á¦òÚÑçož¾ý##Ÿ!C¼qÿKÛGÏ¿0)¡îËÀŽ L­ƒLQ0?qó R¬5R#49×H}ônĈîÖHq)Î5R߬—êó ååï%O‘ߺHI’ƒ @Їq «&0HÍJ˜5#…üÖÞŸ?P¿Ðð©õíÇÇÁ)Y›¯ÞwebdžH ¦ÖÇAŠbZÇINбà»ör³!rúkk×Þ_Ó¦BÇP‰`Ï‘J\YÉINÐqâŠJRP,ˆ[ ›¦ËYÒk €)R<Œ]5Á(Ê.Ð^†*³'À‰oúüœHcN;ñç_¬·ï/)_ñóï{`ɆH ¦ÖÇAJàè RP@ŸÜHŒÿÑÅzE˜‹êîÖ^Oû&E9:ÉReí‚íø)Ip0R¤Hñ0tÕ)½T}ã¸y yÛÐç—E{ót‹¾ÿá3«ðÙof/\üøÏ»Oز!R‚©B¤RHÂ0ÙpfâÌ…½ÆÁH ÅÃ8ÐU€¢¶…™+R=ü<ù©Oϳ ruŠîÜý þ}­.·ÃÞ¢™ -o0`C¤S @ ‰ç «&EY…ZÉQåÜÜù)Éq0R¤Hñ0tÕø¥(o_u¢ÆÚȵ?âfCjv–vû•\ÇÀØõ)ÁÔHBâ9èª R#ñ#—Ç,ï\Þk €)R<Œ]5~AjeÔJM‚&„Sü”'A“óÒ-ôXýGìÚ)ÁÔHBâ9èªñKQë#׫Õ|ü|ø)‰r0VU\îM ÄUÏ”ÃRËøýCÈzÄÛr¾&NOþ‰ýa<€ƒcì«~=”9:¦ì$¿(Y2R¨]Ï¡Ký(ª¡.ØwÔ`A{ôþAj×¾¿‰<–U.·:dÓݧ\f„d=d¤SÔŠÑÁ6ÕlÞ¼K¯w0RÀ†€AqÙPÒ™­íË·{½ L 8PC"(.#Ÿ§ÈqþÖ¥^ï`¤€ 5‚b±¡ãÍ'Us†\ÙË¥Nç±×áj}Ñýwí6;\Ëü %lAà`@ ¡ XìôÍóê¹êŒ‹Ù}ÁÁHj<ÅbC‹+Lv¶ç^§óŒ€|§^ö2ô ÙûX,ó €”°ƒ5„‚bq°5ÕëÌîè#@ ØPã!(zŠ=¯S¨{åN¿6ô®Ý‰¶/,ã˃PŸ_¤„- ¨!½ƒ¥#ŒÊuáÖ•>â`¤€ 5‚"¶¡×jUsT÷]-ãY³ËñúÙûãSpû\Ä8¿H [8PC((b;rýøÐœ¡9— úŽƒ6ÔxŠÒ†.Þ¾ª[¨x"Ée_‡ñúåßÿ ÿ­A®éâ€«å¶ t=@J05à`@ ‰ (ìÊ&ý“Üë<û”ƒ6ÔxŠÌ†š¾¿±¼råúšH<ˆÓ†Þ¼ùðkü£ëC›/.¸qJºÍ}$h…)ÁÔ€ƒ5$‚"s0(6Öl^Z± ²²>å`¤€ 5‚"³!¯c>ã‹'pyÞAgzû÷Çßð›5šï›ÿôòÞöž8$eÏ )ÁÔ€ƒ5$‚"s°ú0BžK£zŸƒ6ÔxŠÆ†èª9CŽ\?ŽÐƒ®Ý¼yÜéé‘7î­¿ÿ×Í×X›_¤„- ¨!ƒå^.PÉVÙßt¨:˜ Õ|ç Šß ¡BA¾ÔxšKõþûèÚPJJ-¡¢BA,«!F×ñ4—´´#=´¡ÚëuCr†2/å@Ç'Ï>åa@·o6%47Žl:otÿÅÕlNX„6«‰¤€ƒ±rA u°ºæzõ\uòyZßt0A@ asÑ­†°&_jHÌ]K5„5±¬&®j6Èlù5_—6TãŒN¡Žÿ‰@vº»[ºs³ ßܨÕÔ8µéZá ±ÌD„ÕÚ\GÄ  8˜ˆÕÄUÍF$vöæÅqEãØ Ìû ƒñRwî®iÿ•>žXdz|©ñ@‹­Tí¿SÓþË…ÐU]Ïm(>¾œÝ¼ääC=œ$|©ñIJ¿‚Âè:.¶’˜XÉVCrU×ÙbÎݺ4±ØÐ¶v7t|úülµÎWuM´æÆqM†MטÍlÃÂì„åiCœj")à`ÀÁD¬Æ¯ Ä9ØÅÛW§ì› ?{³Ï:ÈHë9 PW5!_Ï]¹Ó4£d¦Ùmœ›\:[ÕµœFMzMMäfè’Ž³&f',ÈH V8˜À5±¬&®j6Âw°ùe VW­íã&HA †bsª!äK§¹@WuèÚP\\Š“¡BA,«!F×ñ4èªNj¼Ó¼°|ÑʪUЧé@Wu_ßßhšu­qLSSJóµÛóäèN1tÕÚ¬&bLÄjÈ%ËÁVU­†L 8صÇ#Àž—¾¬f#´=/ÐÜÚêuÆeóºý˜ŠM ¯5ojŠi¾v«ë¨ÏÕÀ®=a j…ä`f¶Í(™ÙíãZú’ƒâmCGƒ6ý©6à?î“æôïcò« òêü3»½TÀý‡ð~š+ŒrìÏ% &° ê6Ôô}ó¶æF{§\¼}µ 9x£iŵFµ¦¦æk7ºY³Ù»l€”`j¤€A!8Ø ‹C;'ž»u 8Ø;RHlèû;.R‹j*rOÙ|²ödEM5ÝéáZdzŒâýE„Æùƒ?¸ÖUa}.5ѵ¡+wšVV­š^2£ ª»Ñ´þZ£JS“ïõk×¹P/³!R‚©jHÑu°Æ;Íë«7LÞktúæyà`m•9ßâfCUõö†tmê*«©Ù9FDœ'A68ÓÚoöÍm'ËþšêN€Jpž©zv»z>ôQ™BBì;j6hÛPIõÛ9¥Æ‹Ë—ṫŸ¼Ñ´õZ£rc“ëõk ¼ ¨—Ù)ÁÔ@N¨!DÑÁʪß/,_4¿|aÇlzßv0R@ªŠvk$ä8¸ÿd&Þ"–VV—nMÎ (©*©©Œ'Ƹüx'ù<úmÆ»¥ê5j6¨Ú•“•^ö¬5›¿Y›yîfÓÎ냛ì¯_»„Ô€z™ L äÔA´Ìzõøœùkª×]½s 8Ø7•9ßâ’‘ª*Ï>ccøQmõé²¶*ªûçhühè”WÕž Õ»Ôl:ÛÐnËäÙ:¿HC`Ýï¥Æ†ù.Vá.ÓŠ­¨ÝgnÝÓɃv¸ìP&(o. øºOøÒMÈzX´ó:dF|P/³!R‚©œ:PC"ˆŠƒY8[¨àUÖzë¢2ç`C;××*Êž_e)ú¹Ôìʃvdè ~¢³$`÷7ÅNV¦ÿ£4ºÈ³p¶POU8ÚÖÁ6mAÚ)ùSU£ªjÓÞ¡b@½Ì†H ¦rê@ ‰ À¦‘ª1*i”ƒ p0•kÚuD—÷æ7Qý&œ°_Û€ó$)‡µ/øPÍ*ÿMj]ªÉŠ~®LæÎÅÕ\Ζüw(fLJa§ÊZÿ¶ìú} ?ט·°6ú{¼[Cæ‡VÙ÷'Üv½Tüº ø ïz•ùQì_D·Qþ qÎÛE{Utñé~&µEz!#ÿœ*SÓ¢(¶Îûùåá·/Lºw8ñø[.Âèbât=ù'öoŠñ€NÄEó5­9õt,o¦¼Ü_óßÁ4¯osêvgK[ëWý¹.0{yÁ§šŠg§w/þ ›r¢â¿”˜×òk.µV(:ðD~âÚ?bÿ^ ÆÌ?¯Ê±½( 8¢ÊœTÕ×®ç~{þÏ€zI5H­¤²ì›È÷ûSfÔuê¾2â¶WòSÏæÃ…e•_,´=IË­ÈM¹b¬ôyÜžåeedË—Rš÷‚(•Eô“f: ¨Ä¨è¨Ôjž‹« Z©98:¢š¯Ÿ/Z©1r²P Hð§ßù?Ÿ~ºJóSÊÿ~ùå›rVüïÁ÷õ¿îÖ¶™>4w(#+ûú¸ææi7~(ý‰]õ1ŒY5‘Áùê4»èDt(¹{û¬}Õ•ºï>¼›_Q(R³÷!kdæää,÷ ËÖJWÒñYPaqðœ÷êkä°*äÆÞRWþ)ŒÉ:î> µ°ˆptBï¤f‡Þ?HÍÛÇ­€Ô2³(†n5sHÎFVp0¤•9ßô5âÎFÏö~œbõ&ô #©2²ã]Ë€ÃùÅe…”Sæã> ^\_TVR’rg¸ô_[£kö2ë·jý3rÛ‘Ò6تŸõa¸é‘’²ÊÐi‡o=ÜZ^šiß"=ý o) ‚Ôƒ#vŸ8/åU·?úé—õnÿ´¾½6raüàU“sê¯Oh¾›ÿc«Â²qj‡ã| R?ýöCNYÉ(Γ84±2¼ñ§û¬‘ùÑ;‚À‘S#m3ø0téáìÎ ¥ôhÙ¬çò¬‡y¾Ó_v:=§ž²ªiÅY„£›´>PÓÃHa¤º‹{~ö8å­ÊPÛì)äj\Àè£ÑäŽ 5Äà £™]:γ¹ÀíÖ÷(£_X¢ùzDzַGæµÈBÿG2/,.?æ’)‰©CwŽÏ¿ lá± Ç¿'Þûé7nÿ¹ÂòŒ@Q €”Î÷aù¸ ÷ƒÑdèD@¯Ð1*HÝuk›WuFN3­ÎTï¥G² òòân “~¾9´$›rdó˜Fl©Ékƒ­âÀ†m„ÞûOù8l3\žO´i‘ž¾ß3€”¤€ÔáŽA6?lAÝ„cÀÁà …T Hý+'óÓI¸ÆQ¸š¸Ò²õ²—a–‚^ÙÇ‚€T ùÒ| ˆ¢–vñiYú–·ÒK*Á) ©›¿Üµ+uP!ªD­Šú>éÞO],;6Ä;H ¦Æe¤ý‘ŸÓáR;Kµe¤ò‰Ç7½nÍ©¿;÷JtF> ˜ò‹ã­j¶æÔG̹˜˜Õ–²ÊK½4qð³m …%›½¤yÛ/½8›tÄTû Nó¢})ìƒä`Ne.ƒE®ŽÆ¤ªqËHM1‚Ýç…޼7-7"aàVg ŠAfíÅÅH•¯Îúf¡g[.ê›(© ‡ÜÑ•þÛäX2z@ ‚¯ï¿ÈÉÁ×÷÷=Œ?˜¤FPÛà°átô¹Ÿ~þÏË>`CÝ)ÁÔ¸Œ´“'uΩWӚؠã«sA yäN-öÊØ¹<¿õm!c¿Íœ¿Zsê/ŒMžË¹` @ S Œ¯ …TûJóÿ8Wäápçs’¼2¼u¢ôU“U'­t®%Þzô3»þ¥ÐC/t´?IKC¯gƒ¹€Tyòšwßl<69±·¬¤sxëÛþƒŸ/sª/ùEŠ Õsb_ßÃqQ 7!~¤aˆaYxÅ÷°!.@J05.#íË·9õ[ÃqÿHËÖË\†Y ze Ry©g窿2vªÈëâÓ„ o¥—”ù†ÂHup°Kcq†ñ£ ÛQ¬Ë …T÷®½©Sþ•“ƒ^Ÿ•±ïè%¹”9¬q’®ÿMn8}‘Ý¡¤ó3;Pw–âPÛHa ¤Ø×÷¿¨à¶ïÆŽÇå-yÿîCälˆKL[Fª}•'œS7 ÃiŲ±³+½/ßêBŠâ¤r“/LòzžK[.ê›È+ÆûÝÐfåÔãÃÁbs p0~€R5$ˆâ\]ÞaƒvÔ¬ÚW…>QŽØÏÌ·o:î•tH½ÐÑ Õ›@ º¾¢ˆó2é¤áÂ×áÞÄA%üz°¡î€”`j\FÚã‚ÜWwGQ¶´ÝêIôµf{íð9”Ûüð»þ¥ÐCÏ´´>IKC¯'|½¹€TaÌÊosê‹çäå%]ƒŸ>Õ_ééb»ú’Q¤(R=)ȯž*à|¶°, 8‚ …T/ʳ½ÐÝ®½§CesæâÖ¸à”ð¸ N¸¢™¸ƒ¥HõºðS££ŠjÎc+îŶÿ~|˜blˆKÁùâ>ØXkb¦±ÖÄL1z\˜÷Së½²—Ý2̶í'jô£¨Œ¤­r:@ü1»cN;KñŒð@N,Ô•ÍB¹mÃ=V†(„RÍw¾ ø­ª!äK'<]n|‹„±Ø+Ó_I³( b)%b¿é¹3\‹Ýr+òÙxt68ð/C$먂ƒyE"Ž¡RiéGÑ) å$Š µ·ä’jqÙ‰Ó2­úÑä¦EOû}ð7ÿ¥y\˜Ï6— W^¡hCèÎqMX„6«‰¤zƒñoœ#“s]|œJ.]]æ H×QÂ÷³Ø…+›†{ÝžS¦¥Õ%!•–ÝF¤22Ï¡Rx|Š •–v]"“O¢RÅûš‘TKÎJéØ&o;ùWeà`|¨ñå`‚€Âæ¢[ aM¾Ôx¬Uç•éGB½!Š‚XJ.S&ª£!žÈ×Q!)Õbv…¤ cý, YÎ#r¹›k+ ¹ípÚúüâï<ǹ{9¶ã eo•2G÷–z9l"c»T¸gÇÜß8¿{?ÍLk¾A y5FÓ/™2Ê—õàæÁ!4ûŒ6*‚lÅ:š¬äÕúìæàÆØln–a@›ÑŸ&?8e=ùl]—×÷œæ‚¢ ¡;#ÄU ¡ ÁuD R½ÆÁŒ7öqŽõ¹îvíý6L&c>n¥Û79õî EBP-Â:(IëÕÁÜ#–9;·‚‹¹+‡ƒ¹zÚ·ã µË"y¶Î/R­¦1!s›-Tæ°mv˰ä¤WƒœÊ7©ÝÁ‚©ö´6*Ê`dZG‘ØÃä†PqÌø)´…ýh²Š©ËÒOÆo5¾Œ?ºsÿsMû¯ôñÄ:žàK§ j\ب¡ù5[ I^еkOW‡•mÒÕ9ÄF¢ÜŠ|˜¨”ˆýa‡B²ŽŠ'!Ñ3êÙÍc0ÏwW-<*qZ`¢mTLIù³%i<‚¬Y$0Ò3ÕÀÍÓÞÕÍÒ-ZÎ3Á*y?[ O¨ë H9›Ï¿aìp>óåÁ‚׿©ëàÀYÁ>l–ê›QË|ø)±–Ý<žy)¨NŸK÷É`’™ ëHâÀz‹™˜QDé`Z`vµ½%Íø‰ž“阵gL†Þ ª²lÜ+<¡ºú_.¶r©ñ%»mH®êPذ´LRf†uq`0-±•™ÜYF ̹Ìv°â}×;#”Ów}êšœL²iIÀÁSãËÁ@F …ŒÔož#]áµ9·Úǘ‡û}ˆ”ð3R_kÚ»ÅJ{†›³HÈw¢GÊxH¹B ¥èµÅŒ¹¯Ñz3xZ¤G¹éQ%Ù«klù¿µ‡¼'‘ˆùZDvV&#C×›´Îd¯|ê€PÉÙ©˜•2&ëJGÚš&Q©Y_›#¿î×sp€Œ”`5ùRCkdv^™¾?À¢(ˆ¥d3ea¢:àçŠ|OBœ‘úZÓÎ%FÚ#l „¼'x¤¸xØ9¹X¸F)zDnB1#ÅG®«Æ¾QšaËQj»éˆ¢Ì•UVöüßÚC^“Šˆ²|5‚ÉÈÈ A¶žšÉ^ùÔŸ(YT+†ÕðŒ²Tu©h³Ix ãëbsà`üVbF ÄPl.B5„‚|©ñÄ£†æ×¨”Ž6ì>¯¥q¥Ópæv¸Áéý'EM²‹²'P)zÆ ¤ UݲÐ#UÍÝkO+ ív‹PiûuÒ$#77çÖ”ÔA*)žV¤)ûpÖVgŽB· ÉOÜ-È)¡–oÊfZ„Ç$1h9YT*UÅ—¼(’$ }k²1á9»-åœå:™1Y6Cn,i¾LpÀ²8*žÉì°k{\n|‰¢ ¡;#Ä5aÚ¬&bê5†âÈdíÚÓnݵ§­uÂׇDôÂL˜¨”ˆý:äÔ»[G…¤¨´cHAªºe{ªš›§C+ ír g;Ød×=­…ÉÉÕ(‚TB,¥r°¦{8 ]ÖŽûKÞ Á¦#r!!$<þß ÅÌd9Xb&â$2…å`°ƒ‘ #µßÚ f†,`,€Lƒbs£1fX I?”BíˆP¤z¤Dp¾D RÏ´´à+À·R¸Ú‰8WsœNô ÕÕåþ+|‚}ètº°@*GÊμ`¬ÂŸzK¿ÍE±–™ÍW§±àÛµç©l¦U8Q-ª-Å¢¨†O–Nʼþ4Åᙣ–QÖ 5Á3 ~‚(ÊÁóœÀ†ø R"8_¢©¾ÞrêÇý|‰’S€ó¼Ày xƒs?ó ØàŒ¼LÔ@*ódóªšÏAÌ MŒÍ™ÒÒZ™Z««}˜¾ô,Ö»ôÌÌe±,Û@%1øø‰à`ü)¤jØ)vÀDUkP{Nî\Ú’´­>[Çã'ÈÓäiІDÃ¥iËv&í䲬ªwƒ”S ÓæˆÍ³fi5d3'2&š2Ͳ#2s¾¢5+Ë,‰.ïK\CMe B(R= R"8_Ø©¯k¤ÂÃSS“7¥ø¬óÙl¹Y?|œEJ•¨:?~IŠÉŽø^QÞ¤ ððõ´ ¶\³D'UGž¡<Ý€Á0M¤ÉûESR2:®( …º)¤jR‰ê’ô%è5Î*Î,~ë\¼±YK†.¡•Iw~úü­É[ÝâÝ#c¢z%H99nŒÜ8'aŽvº¶UN†*3?z»-|[EõÇ$”™“µ;=CÅ8%‚MïzE9)ÔÕH‰à|a¤8"2(вƒZ2«4\~äüÈM{6Ä@3²,m¢öÌ´Y«’V[Æ[ºG{„F„õzróu7Ùnm21ÙP¨>€>piˆa’áêÈ5yUO:PFcW*å`áäh*@ª'@ ©š$‚TwDC%Þñ>;’w˜¸n5ˆ›ªBUïBÇKýl‡-Þ°ÉÖÓVH E^µêáС„^¡cAÊ)ÐiGØŽUÑ«f%Ì›>V–* t0;aö†È ApµÈ…¾Ûð5í?HrÛ›²ºÚ›”9*ˆ¤Lö'gò‹P¤z¤Dp¾$¤8#Á#1{MÎÁq!ïÚk°×ÏÜoCÐÆiiÓÆÆ(PÐh$Ž;e^ê¼õ‰¬ãlœì¢Ò6^6H‘V¬`;tŒ"H¹ûzXÙl ߸0v¡AŠ*IúŽêuäI&ÑK·‡ì€*@Õ"ú˜¥×´?þ É­8yU•>2r0’?©ëMy¤„¤@ ©šDƒ¢ŠÜά—¹j•bç6'v]‚÷¸Äqé2™´CC´“´bæEÌ[²|“ÿ&KoKGwGAвre‡=ÈYŠ RþöAöfáfËc–ÏLœ©›¦;”4j-tÙ:Œ0 2 ¹ñs7Fnt rì¹¶á¡oM |St¼Ö"_-€´Ÿ‘)BêIÁù’Pbô?‚ qïü½'†Ÿ€ì B+°¢¼¢wí ½ x!Þpd²ŽFÜðô²Ù¡ø¡c’ÇÆÎŽ˜ml²ÞoýV¯­VîVÎ=)Òòå 9K±AÊËÇ{¿F«#WÏ3žÓ0z’n¼ÞÈä‘:ÙÓ)Šé¡«4è`$~¤a²áü¸ùë¢Öí ÝéàÎÇ]?K]Ž[[uBæ’ñÖ¼í)t¯My¤„¤@JçKÒAŠ3b|c37gVU_¿pZõt©~í™AWbíƒ,Ø’Z]󯵛µ©éÊÀ•óÂæEé&èO®JP•%Ëö£÷ƒ®¸H jéj£RFé%èMŠ™45z*Ä[PåE!‹–-_°/SoSsOsÈÁ¶¹lÛî¼}§ãN8šGªBÆÕÁÁ¶;m‡ªA±Ñ}#ë<×­ò^µÜwù‚À3CgNŠœ¤«7:q´Aޱ2IºÞƒÆ¼,UVƒ ¡Ÿ2nVü,ˆ™ÌB·Ú8@€…ð–_+K]Ž]SÙæ`É4*¯My¤„¤ÆHÕ´ÿêˆ^ö~>æõ¢nXS®qûÂ2Ü7û‡¹†w". ìŒ ß‰‹4ÃŬÃÅ™àæá’§ãR'âÒup„‘8²*+¨ò8ª,;ä 8hØÁ1€†SN‡â;x ÍXÍQQ£ ‚  ˜æ=m¦ÇÌÎ Ö[­·ÙhãµÔ+jvq"1LþA•ƒç¤Î5âQ è[û®:¾·âƒØOD_؆FOþ‰ý›‚@9ªÿ«%¼¯·~R?”ƒ¼Ë/ ä… uÀEXà¢7âbÖ¶Ú×|\âl\Š.Í—®Ër0’Z›‰Q³lp:˸`ëßî`j‰jƒA;Ø$ÿIƒÍs™·Öz­…©…ËJ—0ã°T£Ô,¬ròã ǾkÖk‚/ëÓ©^¬V_t¿^öò>×è:vó¾Ì˜Þ!1þeæ Ñwë[Ë|ýÖ9}S d¤$ë|aM 8p0ñª[{}] ö xÂÇ´ÀBmÞ‡C5lèÃá"î:ÎoÊÙâ=}V €”d/L©&v5R}]m¯ÃUÎ×7 »yA×pÿÉËC¯j÷‹¾ëàoÍVƒŽ‹®Šý\ôY5R’u¾0¥ìp0q«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,« ¤šï|Añ[!TC(ˆe5Ðu ëúN×!´!XMÄ Æ’°¿,è:Ðu’Þu|9˜ …°¹èVCXËj ë°Ó'Xþ²½£ëÚ\GÄ ÆFúË_tFÔÄU/ã¤îÜÿ\Óþ+}<±Žg#øRã)ˆe5Ðu ëúZ×ñ´!N5‘K¢ù² ë@×Iz×ñå` #%:5ÐuØé,ÙÞÑu #%XM,«®ÃNŸ`ùËöŽ®bF ÄPl.B5„‚XV]º®ïtB‚ÕD R`, ûË‚®]'é]Ç—ƒ]{½_ ãÍòÆ›‡e5°kO²Î–Õ0Þ<,«a¼yXV?j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç Ëjo–Õ0Þ<,«j’Ô<,«a¼yXV %Yç ËjoÞÿÛ»ƒÔ† ¢÷¿’M69K Cv%¶üZ®ÐKQÔüÃGYX¦áz2­"m’žLÃõdZEjÖ¾d®'Óp=™V‘Š6IO¦áz2­"5k_2 דi¸žL«HE›¤'Óp=™V‘šµ/™†ëÉ4\O¦U¤¢MÒ“i¸žL«HÍÚ—LÃõd®'Ó*RÑ&éÉ4\O¦U¤fíK¦áz2 דi©h“ôd®'Ó*R³ö%Óp=™†ëÉ´}Eêrýùâ¦iš{Ív -Îþž~Ò¦iÎ7»n°¾HŸ†ëÉ4\O¦õEjÖ¾d®'Óp=™Ö¿ö¢MÒ“i¸žL«HÍÚ—LÃõd®'Ó*RÑ&éÉ4\O¦U¤fíK¦áz2 דi©h“ôd®'Ó*R³ö%Óp=™†ëÉ´ŠT´Iz2 דi©Yû’i¸žLÃõdZE*Ú$=™†ëÉ´ŠÔ¬}É4\O¦áz2­"m’žLÃõdZEjÖ¾d®'Óp=™V‘Š6IO¦áz2­"5k_2 דi¸žL«HE›¤'Óp=™V‘šµ/™†ëÉ4\O¦U¤¢MÒ“i¸žL«HÍÚ—LÃõd®'Ó^¤ÞÞ¿îxªEÚ"P¦]ѽNt‹×ÐF;¸Hõ.=ú°EWtÓ£Ûuƒý¥H-êÞ÷±Å'eZÑ9™È‡=Gt‹×ÐöÌÁEªw ÉD>lÑ!´g=¶ëÛW¤Þ?>/×_é»YënJì¢ÝÊ´¢+ºW‹îæ5ô›vX‘ê]:æ°EWtÓ£ÛuƒõEê8ZÑ9™È‡=Gt}‘úÛ“2­èœLäÞ#º~‘Úæ§ˆÝQw‘¶”iEWt¯Ýâ5´Ñ.R½K>lÑÝôèvÝ`ß )®ÅÁ,­IEND®B`‚ttfautohint-0.97/doc/img/a-before-hinting.png0000644000175000001440000020566711760672130016127 00000000000000‰PNG  IHDRš²Dd9sBIT|dˆ pHYsttÞfx IDATxœìÝwxÕ×Àñïn’MÙT!…ÐKè½w¥JSé H‘¢‚(A¥ü¥I±ÑAE@°/(½÷`(¡BB ½'ûþ‘Â&$›Ýd7Ù…óyžé(19½5ê?œkÄÿN‡ò$æ6[û?à‹·—ñŸ½©bÍû+ê߬ÍÇ‚y{‡ß†F°°}úüQÙ‡ïó$ö;óù[ßp=Qÿenùüõ~R!s¿dîÜaÔ}ü«½E¢^Óµu“]NS¬çG|¾ì+¾˜ÜƒÒÁ§ J0Fœz0tÛEaÚ»?á;÷AñÑ<89úWâ|Žfîê½Ï>Û˜»ë¡Vma ÷·Îå望x§šm¶wè8ìüèÚ,žƒ‡’ $þÌgÓ¾`oH*ÌÃÿ&¾ùkT1¸Z‰G×)¼þd)_4Dþ³€‘½ù¤KI­“ŽØœuƒQYwµ+ý#‰JÙ“íØŒåô´×¾-+®†ñ(x}¢ws9£íƒbmFÒüÆj~¿— Äq}Ï Êu(ÏÍ=ÄI[ù.°#ÚG‘ý͹7‰÷¹TÇùÍÞTûR^o"/ñýÙ–¬¼NhÐvúÏäÍÉÇs>G !Œ&ïD3ó›½}ýb/òãf%ï.ý6eœp(Q›þs'á}`#cóÝ3ëÖZìÖýæÀÈÅïÓÜÛµwKÆ,O“7¦|šu“># Vª9¤Ç²SÍÈ%ciî­Ne4»Ör!§r;ÖeúâQ4/í„ÊÁ‹#ߧƃ¹i¬oýº¶›6}ö—cf,ÿ€ÖåœQÙ{Òtøꪫ0añ{´,ûôµjA¹§ï2M\þìƒ8~^EË>í¨àj‹­kEZ÷mÍ…c%ê1= %ÖÊTb‡™ŒÊ½2-ûö ‚]>âÊq?©P»öâPx.ï1tÛ)¬±µJæÉë>ŒÇ¡\F.›GK'cµöå/sõ‹ï ÈØ&ñ—ùöËÛtžÖ¯ì­æ:55߬CÈïg‰Ô$rsËZn$ŸfÕö R4œûý!µß¨E~ZºêzŒžPŠ]Ÿnç~Â]~™õ¥'¾O]µVê•ßó”º}9Œ†žvÏž8cϳækF,ÿˆv地/^‹Þ_|J 'Œ¶®MúêCÖüHRòCŽp¢÷{½q:y”ɉܨð#aߥ‰ë3i¦îã&¯s©Îó›‰ö¥>Ÿ C÷£CE>H/£ƒw F/…ýŽ5ù»6 !ôfÜ>šI¡Ü¸s™ÙÕ3O ÎeÆpênzÞ7£{ÝZëOzÌíhwªz=m³õ®göŠcÉ<ñÙáîÕ¯"³f]¼­€¤'Ü)A5¯§+·õ®A‰˜;„'å°,+g<]ž^™*{¬S1ZwO}ûh곿¬\ðvÕŠÕÆ¼\²¾f’¿^Ë4qù³K‰áI¢^.Oû­Y»øà”ð˜Ø=¦k³-ÇkÃ_Åéòo¬š6 òë©Ç9ô]ÔCŽû)‘˜ð­´rÍå=†n;u>ûùcžn#ê£Îé­ºŽ›¼Î¥:Ïo&Ú—ú|6 Ý*Ï,eTyUÇ=æ6Or:G !ŒÆ¸Mç6Å)WºŸÄd=9¤î¦³±›€mÜ(íøˆ«žž®\&8·&Lh Ò|ŸåÄʹ]3yÅ+ý¢c톯:”+ž®<áþ%B|qµÉǺ «¾L±¿Œ±Lc—_©ÆMÅ­«OrDQ*7¬ô˜žua8ThÍ›ã¦ðéÒ/™Ü¿$—¶üÆíÂj:ÏË3ÛΊbÍF³ôÿÎq+î ¾ñã÷÷§r<:ËVUdÐÔºü3g+÷âïðËçÇh4µ?år:Æó8”îÍéæqŽ?v~ËvUuD¯” |ÿÇœ÷èF“âù?5)ÜÚðÑK†­@5òcZf¯áÓçÍåTä–1Ù£¬c(—îçt oØ×x‹×ù‰Õ[wTõ*¹U敪÷ømÃb¶ÛôeP~îxËë\šÇùÍ”ûRwÜžkƒŸ)ã#uÜòsŽBè͸g‡Ú¼Ó?…Å#æ±çÚc’b>»¹ƒÇq0{ßɯ«ºÄð͸e Ž#.øËÇ.äFNMˆVŽx¨B¸x;“äoêšôïÍò÷säAqþeÙûˈé<š†¶™:Vm¦Ø_]¦)ÊoëMÚ Úò77#’HŠ¸Î¡ÍI¬Ùo•ÓµÅ_ã×ÿâRPI© P*Qä³îÍèrÚv‘3á­ÏÙu1„¸ J+«īĽÃd^¸ˆ¯Ö~ɲðþL|©XÎKËë8°ö¤u‡~˜°ÇA¯SÖ±<=زfÜw¤tlƒgnšVá7í1šDÎL«Jö]˜glù9j3¸W+G-àïÛÑć]dËäü…q÷meú ¶gÃÇ¿áÜ©j…5;9³sò/8¿ÝJùiÑÉë\š×ùͤûRWÜžkb¯óuf²bÜ7Ävdø9Za#Õ´§Ö´]¬huŽ)ͼ(¦r£Æë«‰î2’†ö ƒ<ú:ÒdîV¦û×¼\p/?„Cu†RÝ9‡å¨ë3r¨+Ëë¸â¨4ÅÜN4[ð+Ó½¶ð†· îÞ½øÉ{?ÏoNŠº#V}ûh{c™&ÙWv”ïõ.\NñíGãøè£UœvíÂÐ^°ÕkºÛ24­ÅÁ%SùhÔ‡ÌÛüˆÚºSÖT]6 ‘Ó¶sjÀÛmCXÚ©îªb4{ƒ+¿ ‰Áf:ûš¼û‘7kF¬Á{âpªæÚ75¯ã@E™Ž/áUA=Jcƒ ¥{¦B„#í:”}694ª°¡ìè†C‰’â_Å×®ÃÞ(Kþ*çò:—æu~+ª}ià¹Æ¹o×:ÀÐò.¸{ufMñilù¢IÎ] „F£41Ã{ !„!b'Ë.ftà‹1ž°æB­P»FS!„Bˆ4:{Ϩ¹7z˜ºT׺ +† æKAe/‹¥Ä­¯q#Æäøú¢•K 9ã0—ý¥ÏgÌ?¾ –xÜ¿eÃÊi©eâE"MçB!„Âè¤é\!„B˜Œ$šB!„Â$`úá…B!Ä‹ÇZúg !„BS¦s!„¢¨E줣[RQÐ÷ a"z'š†­ñ|IäÖ·ÝP+Tü.b£ÈxbQÆßBXí'oå*b'u<¡+%d/S[ø V¨(Ób2ûBS€xþ[Ù—š¶*ÔvU¼:€x4DE•RÃ9aƽž)onO%{%ñ`ï|†4©@ … µÂ2µz2uÓUbŠz—šr¿å¸ìB864Ñ\Ý0ÎeP+TøÔêÇ’ãá¤ê|SÚµ¾”K'×únmC[O{Ô Ξ-xã-Œ^€ç‡^‰æ‹žDžÅ[«|™Ò§oº¾ØÛ¢ ´/Ê1šDb4‰/ü±•›ünKÞžy&mfD­PeÃyÇ®­Ùž1¯ö“i¢8òñp¶ú­À?üËü~bä¤ÃDGåóçèº/ˆÀ=¯qvÚ§œx|ƒ'n£Ì´)4wÉï³ê I–òf/ó‹*•Ç¡]ß?ð»™3á‘<‰¹Ã¾¥=PìXÎɨ¢ŽÓí7—®ü™±Ìð­´Êõó`dQ'Xý§3C·u‹-ýBø¢Ïgœ‹Ëí šÌký¨N¹'GQ‡™>öOj¬¸BpÜ#Î}S“=c'sÔö¡™Ê3Ñ´”¿)éÏÛ'Q6<²¨C±89%—ÚÓ„~rÛVÏË6Ô>FÌ]F’™ñ7¿/Mqþl?äÂÀq¯âëâË+ãã|hþq I¯áR(@ öÌdQX?æ (£û)f,þ¿µ ¯íŽZ¡Â³ö;lˆO›±“Ž.õ™üÉÔsU¡¶z…]´‹OZ•ÁY¡Â¥Tfÿýˆ”¢-Bþ%²qê_Ô^ý3³û6Ä×Å•ƒ;[ döæ%´É|®¼†È}C©\q"§bŸ¾]¾—wJ×cî‘_èè\‹1o7Ã[¡Â­b_¾»ª•9¥<âÀÔW¨`¥B­®ÍˆMwIÊoÌùØ/úí³‚•Qïã¹ ×O§G]OÔŽ>4{k0~1× Ëeƒ$ßÝœåZŸë±fSœr%íP(@¡P P(°ó¬H1=¶é Jg¢ù¼\Ä Êgñ· ò gØ_»Ù.ºdoNÌž\jÏ'ô£ØdgéµÂÇŠ%ÖpëÝõ#ê }]U¨®Ti[o¦'XI¡\/FÏ´÷«<«R<â:l›0yF ¶·õ¡LÛ_©1©'gfï§Ö§¨¯6e‰Œ$ü ½]³5†Ýe㉜í°ÿÇ7Xßþ‡lànÆÕ<ú"¿…½ÎúQD§ì¡‹c0[‡ÂÝA; Œ ãü²òü4bã‹´dùÀÁ»eéÖ¬xµ; œ[Mf¬ûf>ýõAz²“̽Ÿær¸þ4Þ©j 1þ÷œÍ‰Ç7ùõõkL¾ñévŒõç¨óDö?åüJ?öLšÏÙØÜ×–EöýæÚ‹C‘ì—}÷Yʨ÷:²ÑDsvÙ×Üi6ÚŽ9M>Í‚þK3¯õÿ…$ç¾,»Ú|¼~Þ¬BI»âÔè}~ë?¡–žÛù”ë1oI'|S›ÕÆ '»út÷i—Yå/ÛçYú6'ʶÓ_Æ6ÍžÔhÿ¶ÔãQûx±DqëŒß¥+&'¥‰',ôŸÕ>À{½– ³ÈöTõ3W’‰IºÊBÏu¬KÄ€ÐqÔ±U¡¶õcàªÿ0Ûœ+§&X›+üù_eÆ~Ð_7_ÚO•k¿ã“þÇF|2ë ª·E{‘m_cÛ°ø:§z÷o¹yýAÏKG¸,ý³õS´)ÇÀÏ;pmöb.ÄqYùÕ#zÏèH %àØ±ï·¥”[)ZKå,Û± ãÆ½L*vêMåèÿÕ·J3û~ ßJ+gö‹!û,¿eÌÏq¡‰åêòþôÙRŸEßtÃ#{Ö“ÌocFqvÀZfµqC™BÀCФV_‰Ó¼#FÝãÐ<'V]ÁuË<ŠMK¼h™’[úöØ´ŸÞ®Ò±½ äØ2LF™=©Ñþ­«ÆÓi×bfg I³vŒÚMèº÷;÷jtûøCªÝ=ÄxÀ¦]s-8í}‰ÁW s©€»v\Ìi¾šz†–SëóÛÜótÝÄí}Ý9?ýSND›¦|¦££o©ÒíË‘†Tuþw+öi⓺›Î–Ú×Ó¾"-}ÙyìqÚÀÕý÷ÒÊ5ûÌ œ[~ÂØb™½ý>!{çñ[Ùy·¦]ætíy³¾Õ;›ô׬lPjR 6P¶AûÅ}–ß2x\h"93¿;¿,ÎÜ}Kéêeõì<Ñ'Y±æ,¿¨Š›B…Ú¹£îk}ìì»YžÁêSÂуz†PáÖ>ríû)rL4-¹–Á2¶EZ'féØ^rl.¯ÚaKÚž–^‹™!cŸrSrÔMö~µ˜Ë^M)gØûÑ­E8ëíá^ä=ö.ZCDËîøÙg¾ƒ;>aƒëÌèèŽ"[ÆPÔ7*Ä¡+_cÉâ…ßãÀ×_ñ_åNø9ä6-^op›…S6r1,ŽèÀ}|õö´Ônò6åè;³ '†öeÖ/g¹DjR4Áþþ<Ω•Ö¦>{•+Ó>dêL:ÍìFfŽ}‚ŋġ¼¶£±éÚ/†î³ü”Ñu¤>áðôŽtYQŠ…WÒË7—N”Ú7+e¹a)—k½m)j¹]eí¦s„Å<âü¦¸êV[C7æ‹C¯»Î-ý¢` 1á[9¤Õ‡E¶É³²_|õÙF²õ£«¦%0䘰ÚÝDr¥ÕDêâ\‹Qê0ÿ§¨¬p¢ù¼ô¸2Œ*.åy÷J/–ÏmIF2MÄ?Ìýôç¥b±lý6gL£q}ÍÌ–µ/ý¾ŸO­]oPÙ­<}ÿ¬Ë¼à›ÛMVžôZ³ÁO>§» %}Ê—†ÓÀ©P£6"%%^[ɾo›smNWª9©qRyÒläI:ý°Œ¶ÎÙçWàÜòcÆ8ÿÊONc]O+“TW¡Ñƒ)4p+G÷Ÿ+3kuÿÜ·£±éÚ/ï³|”ÑuDýËœ9'‰\ÏÀÒêôsP 6§6æhöyíj2þÛQ(¾lIiGoÚ~©dÔwã©!}4s¥ˆÑ$æøÅØð¦¡ƒl‡‚“c+oùÝ&æ¸- ÒnneÑÅ·½°` ·ÙòöHn|ø “ë§'a;éXv1£Ÿ“–µ¡ŒBÿ‘2ä*LEŽ­gåw›˜ã¶4ǘ„0[;éèÚ‹C¸ñÊòØT¿°ÚÅ Ñ‹PF‘I…uõB!„–Áº°kÔ³TÄ̰ü)‡y‘r˜)‡y1¤Ƹë_j±…,õ!B!LD£ÉC—BaæÈB*½î:7ˆ®hb`j Ô eZLf_èÓ=¥„ìÍuš¹Èˆ‘™˜mŒ@žûAW9Ìj?h¢¹ºaË:¡V¨ð©Õ%ÇÃIÍ«ù—#Š+ëÆÑ1ýîÇ’•º0ã÷dŒlb1åȔȭo»QÊ¥¿k[SŽ,Ÿg?#S€Ô'û²Š?[S”cĈz‡¦Î² ÿGâ‘x$žÂ‹'7¹Þu^`9Þ9…º^qJ×ÛÊž/ëpþöŒOýž3߷‘(þR‹áÊÅ9L3Oc¼ãÑ‹-!¥Í0ÆlrÙ¹—ÃÌöCä~Æú—–ç•J)œ]:˜7WÖeוÔ³· rD`Ò‡gxuÒPZxÇsí—‰ôœ á»kiåhAå@Cäá©tÁ«¢©»âG:º€EW:ïlµ rÌÝï_£Ù§%ølÛÿè]§¶™Šù+GI…*×Ík×®áççÇðáÃY¹reŽó(Š,#Jœ;wÎåÖmûöíÌœ9ó™&|‰Gâ‘xLOnŒ_£©Kœ?܆ã^Å×Å—WÆ ÆùÐ6üãÒ¦m?ä’ó4s¡#¶˜gŒúÐUsÛÎíX¸~:=êz¢vô¡Ù[ƒñ‹¹NX’…•é óV§]gl¬¬Q©l±w/…‹µ…•H¾»™1#ýy{ã$ʆG’YfaåÈ•%•#ñ›^ ù’E ¬«d¿I&ÀªU«ô®Ù´³+Ü·oß®sºÄ#ñè"ñè–W<9)ÜD3)⡊gZ•«Ê³*Å#®ó()mÚõðb9O3–£>t•Ü˨‰æì²¯¹Ól µ±¼r¤7×:ÚzRï-nœJm»‹vãp¿"‡KWþÔ$u›ƒÿÄÛo/£Û±‰T.ê¸ô•ÌocFqvÀFÖ·qCu†€‡‰4(ê¸òÃ¥+&'©Ä?òç¯Ï1ª×jŸH¥¢ŽÍ ©¤Ä‡ð°î:Î.+ÍoÑýEt¹8›šFZCNIf†U«VäÚŒ®ÍÎÎ.×åËÌ™3õžWâÑMâÑMâÑ_ÁÍôç„êŦØÁµàD(®"1ø*a.p·(AE×ǹL36Z1‚yƨå0Ãý ‰äÌü×é¹²_\J׌âZZ9P`íT–vcFSeÙ:nÆM¤²ÊBÊ}’kÎrhMUÜ´*²¶»¶Oû‚i)åÈB‰{5º}ü!K×näFüD*YÒqeãA¥² i<°N J |‡ªŸ­á^<Ô4ÂþЕdf0$ÙÓ }dÈÍ Ú$Ý$Ý$ž¼n½½”†u‹öp/ò{­!¢ewüìÓ¦ukžó4s¡# ˜gŒúÐUsÛ©O8<½#]V”báÁ•ôòÕºZR9¢þaÖ'ë9û0ŽÄ¨ÛX¶”«Þ-(—-V³.Gú—ÊÌg|‡o¥•«V+†¥”#›ä¨›ìýj1—½šRÎË*‡½ÝZ…±~ÝiB£C8³î;ü=SÆåÐ'ÉÌ`H3ºâÅb´q4ÕŠôçüfiJ‡C®*ž6©;A{èñï0ª¸„Q¬é8¾ßÖ2ýnM'šÏ[AoSÅ% €íÁ-ó¼“3s½…2ßÓ¿þÞmÚK+~sˆ/ë|­ ×ý{9²î‡Œ}T²¨ÊaU’V@'Xz=h·èïiAåp~‰—õçÝÊC¸©Â«é@¾Øò>•UYc5ûräûóa~åxúùHÛóúÀ÷G1"CwS÷ž”Œª|¦oKUÛü—`Ö¬Y€áMeïBˆ FÞHïã,ýžPQ” š”ÃŒâ“r˜W|RóŠÏ倂Ø®=¼‘¿¿æ4???“6íi'ƹ cH<ºš ó*‡)âÑ›9ÄcȾ5u<†ÆZ”ñ䣥œy2B³‘<™Ã#,óJœ M¬Œ)·D©(·[Œ&±ÈcЇ%Äø¼ÉW¢™Û·<½:‹ÎÔ¿S©YÏ7ÓÌãÓw¾™fŸ¾óÍ4óøôo¦™Ç§ï|3Í<>}ç›iæñé;ßLÃ:óÅc$µsO2¶¥¹ÄYTñätL™Ë6)j†|Þž÷íep¢i”ƒhFî“®XQ©š9Nrú­=Ÿ1™]Óy`€Ò".@Ç¥ÕËæŸhZÂö´„Aâ4&Kˆà‡»óYŠ~‰æÂy Š,Ñ4ööôööfÆ Ã¿ñ\»v-ßë4‡Ä@[^ñXZ¼¦^Ÿ¹$wºfŒú$ÿ…>ë0å—KöZ!Äs@»%¯šCæ•x ?žœOSÇ“KHx_4ùªÑ PpÅÊØ±dÚ»£ÈGqÎS:3Ø»£¨£Ð%lOKˆ$Nc²„Á°8‹²L–²=…0]I¦ƒB…@¡"Ö j5‹*!.ŠnùJ4ËVJ¥l¥TcǤ,Ûw3‡kë¶`ÖçLœ1¹¨ÃÈ“%lOKˆ$Nc²„X‰AqU™,f{ aOkL5¨£ÉúYpÈV®Éß IDAT£êPˆÉ¦9(êZ^i:Bˆ|IäÖ·Ý(åÒ‰ß#2^Óur½+:£VØS±uš)T¨3üh]>}ÚKSÙ°òC:—uB­PáS«Kއ“  ‰æê† 9OBd~®@“þc~²ßh…ŸøuW½MµÖ‰R!„†Èóxk•/£:y<=‘&\áëÁó‰µ[‘l~5€¶uXžHLüY>©zLú´—öñÉÂHl $ê[ú…ðEŸÏ8D`õŸÎ ÍiÚsDû¨=´‘öo]óF<ƘWâ1]!U2¨N%©ß§-ÖÉ¡Åç0mø8jX;SÙϵ£ÍÞŒ_ÌuÂ’çv,\?us˜öœË¸ÎÈõ&w²m²ÒN8³7›Ï4“v³¹vbWÔÍØEAšÎ…šèÓ,迟Åß2È7œÿB’ŸN´ó¥n±«ü¸á ¢C9ûË~¢R‚˜â©BíÚ—Sq§˜¿øXÚ´?rúÖ„&šhÎ.ûš;ÍRÛñ™æ>í9õ¢]ˆ…q誩‹Õ$¢ ð“LsPÔ-Ò’h !„¾R‚ùmÌ(ÎXˬ6n(Cx¨uá²­ÁßB± eœª3þRUʸuæ×ˆxÂB2¿‹ ׿¶M›vÊ;k”šX®.ïOŸ-õYôM7<´Ïʺ¦=ÇŠjhœÜH<º™S<…Ý,¬¯¢ä?{‹tn¿³ÿmL/ÈiK!Œ ú$+Öœå÷UqS¨P;wd{Ð~z»¶OŸA‰[Ëiì¼GŒæ!ÛÞŒ#Ê»1eí”Ø¹W§ÿ’ù4tnÏÖˆŒiuˆ]ÖŽ_gî¾¥tõÒ6NÉ™ù¹LBÌ\“Ðç$šB¡/—®ü©UC¾•V®­Ù¾7ë|šDÂέc˜¨1®?åUu“½_-æ²W#Ü®­c˜ƒø–ÛŨեXxp%½|µÆÁL}Âáéé²"‡iB̵녹Æej’h !„±D줣B…ZéHé¶‹HxçCâ‡VÀE¡Âʽ¿8Mä¥Ù´{e ïLÄv×y"×3°´:½U 6§BÔ¿Ì™s2çiBaAÌîYçBa1\ºòç“®YÿÏ^k1mbîïÏuZËyF¿1CH<º™[<º˜{|Ï#©ÑB!„&!‰¦B!„0 ½šÎå.-!„Æ`n׉G7‰G7‰'oz%šÚ}̱B!ÌÛÂ… >|¸I×qÿþ}¼½½%‰Gâ)âx´IÓ¹B“Z¸pa¡­ëþýûyÎ#ñè&ñè&ñFM!„&S˜Á º.†Ä“‰G7C“ͧMç©O8¶h4ïþ —¤ BÜÅŸ !„xq¬Zµª¨CÈBâÑMâÑMâ1\z¢™ÌÝûóÆ’|öAô®S[EÑ&„²™Û˜…nnOþ¤%š‰7ؼðÍ—\``Ýbè›c\±¢RµÓEg$–§%ħ1YBŒ q“%Äh rÓ¨"CZ¢‹c÷qùù5J½v‚èR/óñÆõLjYLg'ÎÀ¥Eœ4-!NKˆ$Nc²„Aâ4&KˆÑ̽¦E­P™}ŒB˜c|iLÏ#SI‰áaÝEœ¼Ë¾ñ),{g—r~S`€’½;lػÆ€+VÄ,!NKˆ$Nc²„Aâ4&KˆÒâBm&ß?‘hÚxP©lCÞØ§’ÔøUŸá^|Î+-[)•öÝ’hß-Él¿¡[Bœ–#HœÆd 1‚ÄiL–#¤Å)„ú1bDžó¤%šö~tkÆúu§ á̺ïð÷hL»´™Ô Uæ6s=Yfg qZBŒ q“%ħ1YBŒ–ÎAú‡ Q(®]»ÆªU«òL6ÓÛIi:guëI9§R´_ªæÃÇRÕ6mjŒ&1óG›¥|ûµ„8-!F8Éb‰Ó˜,!Æç$›B˜Öµk×ðóóÈ3ÙÌGÓʽ-3þ¾Ã ÓÇ'„âQTIŸƒBE¬Üð#„Ñi'™2Æó\¹rå3ógöüN ÙËÔ>¨*Ê´˜Ì¾PiâBa$MÚößÿg¼–Ó¼ºþϾ¼l*ú½>…ÝÁ9\Ïo°i|g|Î4¾‡ÇQgX6²#¾ /zÎ>Äã¸k¬Û _…]ÞÆ€v˜ôW()ÉAü>¹kÚë£WrõÉVN{_÷É»JN%üèBÞnßý1dPO*©Û³ëѶMê’6ßÔ?xÿ€¿¦¦-§Û{³™>"}]oâ½#=do¶“Y¿? ¹›]cÊ)ÉÌ[Ífz¢Å‘‡³Õoþá7Xæ÷#'&Ú”Ñ !„x1h4 P¤ýÀ³¿3¦k'‹úü¯Pä>=Ýö­ ?ú/ždŸ¤ª@ßïRõ6=KâhlFÏE × y¿Åì«0øÓ‘Ôp­Á»_¯æ»¯›òï/àB²' O{ýóTu«Æ°ÏÓÞ7tR|’Îòù uTZ´…uÖ°h É€MizL‘6ßÄNxÙyÑabÚr†Í™Æ§óÓ×õÕr–¬ü†e߯eãªVì6Ãr1f@W’™!§d3-ÑŒógû!Ž{__^7çCÛð3Y¼B!^¹$:e$Ÿºþ×Ó­_{p96·©vTìTc «OåQ ×ÇWy˜Wk|j<‘qq„‡Å’Š—æSX½n2õôH!64€ëwR¾1>¶†¼WãÓ'ÉÌ=ÙL룙Êõðb4óLëK£ò¬Jñˆ5=ü ½]µû­¶f4¹Lsîª #©hƒEfÖ¬YÌœ93_ï³Îc>!„¢`2jsK MBsZf.ï üš¸V'qÒuµ³ö¡U“v^¯õì´ðƒôqw6LÝ1’J* Þ;ë’5€R’ÐX©°H~Ì=ÅKLYÿjE2öM M¯©æ¿‚¦®­Ù¸—..@ÄN:–]üt]Ӝ⠻y‘Ãk?bL×yÔ;95s! ÛŒù¿M|æÌ™¶— ¢ëc®§µ $_%Ì¥îò-J!DAeïO™ñZnÿë3oö>Ÿ9$™Qš8BìäQýžT×Ùt­Ä£e+‚wûóÌsJ\[³%<‘˜‡{ø¤‰3 ÛÒÔ÷¸ËKQh€˜€£{6¢´s”‰†ðóÝdÀg/)†õPÚQ¼bC:½ó&¥C/çÝ\/„KûŽgïG·áŒX´‡A ëp~Ñ"Z~‹Ÿ4› !„(€Âb(c8¥q=»bAtñ´é ×X3ý›´é“¾ÂcÞX¹¤/Ķ*ï}÷.ïOîKÏbeÍÕ“ÓjãA¡ˆààœÑ$ô^ ݾ_FcÕ¶}º’Ká—øvÁÔŸZ—ó Vq)ü«§ÎæDâÑ´u}0ŠÝ6)$Ä„óèAÍ—,¡©S¡m>!ž¡0¤¥!ÖêYéýA<€Í=©âø}^¡ä¬Þ1³@ëB!L*V“Ègyͤª@ß…¿Ów¡Ök‹Ï‘Ù’]…Á_ÿÁà¯sz³—&²fÿ‡ÏNréÊï!]s\ey»è1ïéÿ^svrwÎÓÿ?}vB!ŠÜðáÃóõ¾ñãÇãçç‡uÌ ­o›óó~£Z¡BFuBaŽdv!ŒËÛÛ›îÝ»ôžíÛ·gþÙ=:%d/3z¾Å¢Ã¡¸7ŸÀ÷ÛfóR +ãE*„B!,Ž%Êxçë½2`»B!„0 °]!„B˜DZ¢™>`{•,¶_O°]!„Bˆ|Û…B!DžBoßÏsžì}9ÓMíÛ‹«dÀv!„–)%Šëû6³yçn6¬‰dÁÝ=iOá1ærŒµ!,ÌæÍ›óœç½Iã³üŸ¯Û”\1Ýé{w˜†[§Î öî(ê(ôc ÛÓb‰Ó˜,!F0,΢,“¥lO“K %0¹!#§—äðú%¦YޱÖ!„…ÉžDê#½é܉æóVУÇÛTq £XÓq|¿­%޹¼©l¥TÊVJͤ:ìÝaCûnæß9tÁ¬Ï™8crQ‡‘§½;lð«s£¨ÃÐÉÿ\Ü<uyzÜŒ’¥Ouyzx§-_‰,ê0túg³E|ÎY‰AqU™,å¼Y(ìÊór' â®é–c¬uñÈì£iU²ŸyÀç9̤N¤—B!„úÒëf ­'-HÒ)„B!ô!w !„Bˆ<åÿ®s!„â9 ‰<ÉÒi?ð_ä-.…_bÅ£ØíRaŸ¦–ƒq–S3Ù8ëÂÒäÿ®s!„â9 pnÈ{_7`ɦZŽqÖ!„¥ÉÏ]çJÄ!„B!„$šB!„Â4$ÑB!„&!}4…B!Džä®s!„Ba&»ë\iÏÆŸïÆ©¸™ùBk|±—ªvÓŸpûàhvìý…‡±9LÆ•ÎØ­œË|Á‰ÏzùÑ …[÷øêB(çb588ºÐ³^9†xÛ`¥÷òÿáÜæ„PŸ}Wà“ñh餃ü½i!™3g›ž¯ò IINäŒÿ f{H«W¼(mŒdÓ¦5mž4¤&Üâþ…©œ8° ×Nƒq2I­©†””$¯Âæ&¶üǸ#A´ìZ†Jzw:âù§‰:ÃÒw¿Ãwêo4Vçs!)A¬mW‘÷.4fö‰”µÑsšÏ!¹ë¼H(±VW£úËräÔFÂ’&ânåA‰b ñmÐG[êïà±w áÉH¢YT¶ö´ªæÅÏaÜKIO4ÓYY«hPɃÒa¥)Ñ̤@i[žR5qíæD§˜(ÑTª(íèDÍò޳·ò%)wá!!©H¢)Dºä2µûn þ™5Ã+ä¿ï¤•ƒÿ¹O“Ÿß£{ß¹´?7›š¶zLâ9$Ï:/"© 7¹~p1ÁÎ])fXùQ­BO¦B“Ò<9õ¡ŽÍq“­](R’8uí!7í]ñ¶’£øör­ª£¼uçrÛÎ-mš‘i’ï|u#­Q›*é³r mÉDÖÜŒ¦~E[‚o>$ÐÎ /Kís*„Qiˆ¹ü-£ýJ…¹ûÙÐä2ï6^À€}?ä»ÿ¤•½;•[4Å=â8“[ý¦ ñ¼1Ù]ç¹ ¸bE¥j)YD¡0IœY†7Rá\v ]€»€#e:-ÀçÇž|±=«â]xyÐXíáà̦Ã<ÂHI­ºåñ;x…Î'“°vrcDKoÊ™(±½`K¹J ¦Y¸™åg(KˆÑâE`t˱œnÒç_f1nã-v_H¦»Á}4S‰8¶”YKO®ÔðäN4­—/§™c^Ó„Ú ”h(-â¤i’8~¼³(1×ÉJu[Ú¾C{=g¶ÛÒ¶8ËÞiÊKéíNþç\¡t$>aS 5}º¾Ä27 WΟaÔ4TEQs›Þ3Óàf¸9IÿÏŠÊ•Êñ}¥rX~úðF¥Oe¾òð4G|Œ{›¹´tÒàEÆDzæžhf o” ¥­ #^iă×j¸{·,#Ñ4ÛÏKˆÑâ9¶åÇDZY^ZòC~¤Ä¥Éû,lbè4!„¶|¥J®¤UŸìÝaCÙJ©fyò´„8-!F€°‡n„>(€ÿ¹ /YœiÂ2§×«Všò§ð$wvS|ŒqQe€´dÓN„½Óí/÷¿«ë¸|>çÄïä‘9tî±MïeÅDzîÀÃ; P;çžp¡»·l Hküg3¾å(k† §%|†,!FH‹S!Œ)_O*[)•²•RٻÆöÝ’L˜1XBœfcRï-ßE*V”ò-C_ŸN¼Ó$0ÛL)\>w“û^•¨VÄw]Ú©ƒ°S¥ÕhzÉû zª\u %ܾɱF³a³©-KíüµóÞieyæÆ·\¾åøg3-_‰,êpreöŸ!,#FH‹S!rc²»Îs{29~#ω1ã¼våöïžCDľY´‹v¯N¥JµN^n¡o˨ÿ÷æ»8d¾Ð˜ ‹ˆvÊ:í8 º¸ž0›h?Ëäk‡i×ȇr™)\?š1.LÝ‹â…8ãOâWFM­æO;F]8ÍÕÛ1tëVðZL€àûGð¿ô=Q‘ØÛ× ®²^¥ZðøÑ𵙋GÉúùZvöZÌóó#Q×µ¢bû§ã°\ßCÌÙjäœÿB%4›ƒeœ,!F!„ÈM¡ßun)ß~§ÿåßY÷mÌÿïÝ9ÅÚÕÝ4l{“Í"Ù–Î :œž\jsz™»×ÓÎæ? líœhߨ?úßãN²åTÉ\:u’ì™úf-^Îï8uùäWFÍ´€ë̦"µš;ráptÚÿ•*b§*ðòƒïæè¡2ÿŠ:É¡ý'iÕn^¥ZàW}`–¯vÎú]+¼gÚq*¶Ws}o Þ3í¸?3¾@ë)¨Rå,#Ñ´„ó‘%Ä(„¹)ô»Î_4ûwÏÉõucÔj𳔤XŸ¹I€Ú“RÖ€&‰SG3Êß‘O߬MGÝU™Ê¸8þ=Œ*ð6‰åÊÓ¢9»‚=F£VsGfS‘i×|×›5ñ÷™]©b–΂ð¿ô}ޝ_º°:³VÓ˜*¶Ws´äòü¥H*ý¢æþÌø,5œB!„%IK4#vÒѵ‡2_nÍ–ð½tq)ª°ÌShȵ_yè_È‘IÌq|jVìIjևйˆ*­5\b8þ a|º|;l•xx•â“Nå)¯³øD8‘„óÁ·MÀ®ÌÞœîY“NÛ+Wñ9š$__*WB}ðs>'hùRªUÕ;ÜØäîG'p?:Àè'Æ„¤yL¢{‹­Ó6Ì‘ÿöøsî`,IÖIDÛG“hH¼*žX»§¯%X' zZKcCªòÙš¦˜‘¤xd}M©›Ô+L?Úúé‹©¶ ±Iûj—þ[•öwŠ=¤8AŠ#$«!Ù9íïGÐä<QßFÞŒ_Wžð2IT¶W“šŒy}%L¸C·Yûø/ÖÏè@GÛœ¦¥S•á×OÚÑZÆBˆÎÓË—kk¶Jr©‹GI?îÝyöæ ’ú'KfÃéeîÞ¸¤¢xrÇ¥ãñ|÷GvŒ 1㆕+~¶ÅY6ª ó²7¯«J²öƒ.y®F‡ÏÈÑ<û>‘=»g¾îüëv¼G¿GàŸ»2_KÒ$ñ_tþ‘÷¸sŸ{ñxœNDJ81šRQ(mbIUFc…5jì4.$:«ðÓ”àp•T¬•¤tiŽxXyb­°Á^i‡½Òk…5NÖNØ(l°U>­MuP:`¥x6é;±ÿ"ò~‰HU€Úݶ¯,Ï|-6%†øÔxâRâ‰N‰".5Žø”xbSbOçIò“ÂO¾NXRáÉáD$EP̦^¶^xÙzãmë—­7Š‹î4X[Œs½#ñÛ¦&áËT¢­Hí©]4hªä¹ÉM϶4;>;-©œw%çi¤à¿ï7z…ùQW’LQˆoogÞñ0)Š [ÑTµ„Ù¯—6ðé@É<Ø5‹ ß\G]BIØý$jŽýš©½Ìê{ŸæN>/h÷êTÖ®îþÌë/u˜VÑ‹[%¢F Ãí×í¨´M#pøç_’||2“̸äD΄þÇéÊÉ8¶JäÐŽ\rH îþRÑ(S\±×ÇYY›’Tq*ƒ}=ʪÝ)íPgk\¬]P)T™}2UÒê£yù:¯%§ù¼zõw8zhb–×”hXk$NVO3oí¿õ•¢I!$1„‰÷yð€ ÷9píaî±à³[8Û:R²eªþS™â5|iZ‡ •ÇÊVIêk yUƒ¦D‹hZ‰Ys&™Î}JRt·2‰‘×ËŒ_Úµ5$ßZJëf“8òê&Þ s„©#÷ÐôàaÆ”·&éÆ×´ný /ùÿHK˜]½=M4£Ò×UE*”m7”OWÏ¡Wù‚õ¡{ÞT©Ö‰Aö³÷gÝ=omÚu˜J媊:´QÄÜÁá»°õx™D#ÖÍ ¼l+…Uzm¦¤_üÎoH¿ë¼±š ¸w“ÉW9qŠ?êmæQÍPª¥V§æõÔš^‹Ž5qjçLj;r|ì"6›ýûQÞ¸IjÅ $µk‡Æ¾ð>ÓQwýÙi]Ÿ¼äì¢p)TލäÈ;œØöOªv¡Œ¡‡¾Ê—FóÇogysP üÝK¤_|¤v^ƒ¤]Õ]ºògr"Jü#þú|£z-¡Öñ‰T2¬­á¹W¥Z'ªTëÄ‚YŸ3rÜä¢'ÿ² odCr½ž„,Âß³ïãZó&Ëú(¥fo¬x™”‹Ãž½C=Ýã{a\ô?Ï•‡W¸šp•«öWx¤~D•4¼O=—. (3¿UQÙ¦T¾ýòdÈN¹÷í¸ác^¾Ù¯ä3¯Õjîh´› -ÙôôNK,Ÿ7£¤éƽÔÂ(# mÖêé ñ‘É‘\оÈeïKl¨³‘«‘W(ý¸4M5¡±cSj4«‰²nZRguá"Ný’R¶ )U«b³÷ÿ°ÿx ÑÖ’R«¦ÉÊIÏ?G‚(Ѱ•¤ÝD…” Ö¶«È{3ûÄ@ÊÚRcSŽ¡›þDZÍ)7(Ö“/ ¥|,„¥Év Pbç^nÈÒµ¹/‰æs+c£l\ÆáúQMþZr‚ê]‹qyçc\?J%|¾’êN@*¤ÞN%ôJÇïåTâ)N»œ"Ä%„ªáÕ¨ªô£çK¼_áÊW¬€ube;váQu5‘õkg®Çeë¯X?x@L‹f`¡÷R6gkgš¹6§™ksðIk~¿}Žóuð"nÇÞ¦áú†4MêLË¿–7y ýúd¾ßvãf &òø“×l¦DßcågÞyÍ ¹.‹"aåÃàîÓäç÷èÞw.íÏͦ¦!µ‘I×Yþú‡„Ï8Ê­Á¥¸ûãPú½±”º> ¢\Å fáÂ…ù~ï3u ÉQ7ÙÿÕb.{u¥\úµ(û“Äó«z×b\&-¹å7Û’ÐÝ —sQüúï>NÛâtåÓ¨ÖoÀfÿ~;›r8®Tî^¼Š©štt.Äü…ÈÆÊÞÊ-šâqœÇIäØÅ$W‰÷9èFÛŽµðp¶Á­S;Š-8σ$$Ñ/œ•+Wüžk×ÒFêÉax#^M2ÿ§¨œþaÊíÉ@âùd×\ÅŸ/ߥî¾(Öv=ÀÑúÿð@ý€†¶hXª1½ß¦²Se”è÷\䄪~þ¹ õ¿GPݺEl³fÄ´h&I¦‘9[;Ó¾FzþmGT=67¯ÃŽ€mLqDÏë IDATÙ17ëz ¬4˜)Õª£¼~£`+Ê6„Ñ¿³~ Ë0G)ü|"–V½)&y¦(t©D[ʬ¥'Wjxr'šÖË—ÓÌÐ5êfÌYѱC»sÜÛ‘¨ûI¼²bMeX[! ò´¦V2)ž_Žûÿ¦ø×KP]¿NbÅŠ„}èvmÑÿÞfñù?xüè$IÍ.²ö%kÚmMûqôìØ&ÇK}iììˆ~¹ñ "ríY‘ÊÇvÒþ—ôg w"òÙñÕ,¹6‹u¾¨ÜŠn—[Ò£jm¬”ùȳ a”+7&~Ð;ÿ¢@”¸4yŸ…M ºk¼ºÌæ§¼GqBèðô‰Õ!{™ÚµBE™“Ù*Ïä}Þ8îûŸ!ð;eL,vç/à3d¿mXLÓí#x÷ržh¶ÑñL%&;}Í¡îèÝb,M'Öâê®ð¢_è)´N{”wîb»1í™´¥K²²ýTZ}–]<.çÀ¨S(½ª#ömâøí4E³BˆçSzÍ(Ž|<œ­~+ðÿ½ç?lËÈI8ó}+d¸°çGñ¯gþýX ÂÍà¾ÍrZúâƒjÓ üBë«vTïR xÚg3üx™ë8¹%ˆÐ#é´ÄŸŒ%„¢P¤%šI¡\/F3Ï´}TžU)±†GI€$šÏÄŠÓšÍ5Pê Lÿª=€øÚ•Š:4a{;’:u$IÇ<*¥Š>úñfù>l¿½yç¾@¥<Ìù'½YõÍUʸ9Ò«vy*5pÀft$'†½}8¹%›Ñ‘”X&ÏüB‘»üßÝ!,NØØ÷2ÿ®òü=Óþ~4îý"ŠH˜ ¥BIϲ½8Üíê â_ѰéNÞjQ‚sAa ½}˜Õƒïc3*’ã®`3:’¤eYk8…BˆìÒM›Tt}̵à´;σ¯æRwiù¹Ý®-A߯&¾vmüÂl¸\Ç‹{?|KL›ÖEš0Ö kúUÀñî§©ç^WúR¶òaNOìN‡·+°ë¥GT_iCx'¥$™B!ò”–hÚûÑ­E8ëíá^ä=ö.ZCDËîøI³ùs'º][nïØŠÛØÏ8Õ£1mÛuH ©”*ÆÕüý]q5ü /ýÙŒ{Óe¿;A5ønUrfŽ¢SˆÜi¢99¹.jëöìŠÈÇûS¢¸¾g5sÞ{ªÎ¯<³Œ”à?˜úú›¼3ämú½>…ÝÁ2R‹9±VÏJ€ÝØÜ“*.€/ÐçJÎÊá3!0@IÀ+“µw‡ùW¥Ö©3ƒ½;Š: ýøŸ«ðÌkʤV\ü9ÇiEáIp³¢A/ï4(êôòÏcõ¬Æ¶³?`KU“Ø=« £+®æ~Üm¼&ÄòsÐ#<[–Ï×’-ás†ÅY”e²”íYXbN-dþשãx. H %0¹!#§—äðú%Y§i³{ô\è~€mKòpík´ýÿþÒ7yHYXÇÌШ}~ÞoP+T”‘JÙJ©& hïÚwÓuû‚yX0ës&Θ\Ôaäiï¢ã7=óº«&–»ÉsœVØíúñcQ‡‘§â.oqíú‚¢#OU*NäÐ?ŒºL·“uxÃç=ö×ÝÈ»÷Jñêÿ³wßÑQUk‡S3%ɤ÷„4B -éˆR¥+ˆ ÷* ¢ b÷¢×®x¯úÙ¨‚—Þ”b¡#-´ÐHB ½'“I2å|L AZIÈ~ÖÊZdö9{Þ„É™wöÙûÝÝú32i A?ù]ú/’¬f•8{tŸA~ŵã-1]uíª/×ÍÛ¦$–ÙÓ3ìóGY¸âMM8½)Wè?Ž•û½4Ó |ï„ç›+ˆ+H7±s \Blo t2Z™–[Ž£CꢇPäÐ/£wgõd½ß:þóA_Lë­ž TaâØ§“ÙÐíMF)oÍSX É0êðv±ßÙS¸ø¢5¦Sd¹5O'õYE¢Y¥`{þæ6ý‰§_ÞI=on‚¿<€4[š£Ãê™c£RFsÖù,/Lzd"ŽÖ)‚@áV¦t éÄç}‘Nnµ8yRÍðö٬ߞ‰+™¬%»Ý¢uµ÷‚p§°'šÛ›\R°=Á^°]¸cʹ`»àè0„zJ.Éé•Ù‹ví™ðü q®¸ä‹Mk…º¡üìRÞzþ ŽåãË—g³· f#šRá>æ<7‘ÉS*ú˜2‘ÉSær¤yÐoîlZ¬|Ž'ÇçùU­˜1·¿X$W ú0EûÌû†PÏEFãbqfÚ„i¼öãk”·5S¦-stXB§ˆ·¾}ˆ·¾½±óe®˜üYæ|y»Âoï-p Bà ¶7`þrÒlâÖ¹póBJ18s=øæ¤rœÊ¬´HH çþýDŸ9ƒÊ"VI‚ 4D¢`{æ)÷Ä$™(‘JŠpð+õcxææ÷ü†ðØïézènEEt‹åÅyóÈÌttˆ‚ ÂmVqëÜ…®}ÉðáÓăGç©|·²;b¶Õ/@Hš-•E¤£C¹ Y9%¼sÆ·ÐÓ¦¢–BV®‰¯SË9k¹JA÷£<ä5œ/bÁeë†ühåзã8PÇÃoÌ#¤êaê–ü4} INWï)רdN<ào¡yå\.ÉÅ VÊI·Ù–±æ*íõ‹O‰3«–[ò¤‡Æ)Àþ iwü8c×­cÆcaVŠ;‚  Eå_áÛŸ÷w¥ñþÒËÔ·1$ávòWø“j­ß‰¦ÉXÆWÙrz»JTæg6 Ë.XqáyWE¥|’RJ¼›ŽfòkõV•„:~%=÷äxëÒ‹k¢Y2ã¯Ý ¬xmšÍƒÙH»j’)£´\Îb£DW'UsÈ|£‚Š$x™‰q’PÖbGh’œŒW™;Ã.ôcQû…ø¹ÓûÐíïsÄË2x{Íy¢‡?@ò;±w¸[ÖìcÈ4Aê,1Yª ¨¯»I6bÏ›HöÐñ´³ ™M"Ý,V¥ý÷såhœ™å)''ÇÈœsetˆrÂ÷zɦ-ŸÐ?àÕe"¿5Õ#•&c(°pù˜¦‘í§0vœDΕþ’$Çò•\ÐYxÔIB&ÉȲI_<I’Q¬6ó¢;ä•|—«$Úׂ=£yªQ#oÝJ»ãÇ9м9Ý¡d9ŰÙ} •Ø8ݨÑw®p"ÌEN>£Ô€“«+ŠZ ^¸3¬å>ß'à!„þ5ëKÛ’IŸL¦E ¸ZÓ70ý™HsÕc* `ìçÿ¦ŸŸxÁ BMˆD³óSø‘eÍŠõè*ÙØ’kåTnÎ]|øÀa#Ï´Öƒ¸r9Ý=¸*ÀÅà ߌrÒ¥j$še‰4Û‘ŒÿŽ—W¥~^è¨{H}wñû÷²Â“´Kö&v„ûÅ[ö—±³DÆÙ¯U¹c|ô‚ªrÁ—R¢‘œeÎ:+>…öDÊÿ†~)ŽgV©˜7dc×®¥C\é^^LÈÎæ…AEt|6‚ ”Üp­ôdÚC2÷'B¬€Â›×' ¤¥¸Š §mɤϿfá&úrÙ8i G†ýÁÊ1¾dÌBŸI¿°cÙ@Q˜]j@\¢8 ¼Þ¤[Ó T::œê“+y)¦Ê»ˆÍÂÇÇÊèÓBOŒd„(lìȳÒÜSNN^9© EõÞ ´1ü<¯J†iŠå¾ç7qî›ß‰Oýä¯'Äpd^Á=Ip½Ê ™ AUæ5Kr¾JSÐÝÿâªò–N¿—@„òKd*l\çær—êíÍŒÇ#*9ï¼<âCBhìÈ&Ã2–Ùy (ìú\‰µoWœÀ御œnïLÊþ?µü8ÞnID=úŒ$Ü¥Çø´w(îÏÇÿž§øxÞ¿\ÃE­%q¬ÜïÅ ™¾(Pà{÷ <ß\A\É@ºéoMØ‚p's4üåþ7° H"33Ÿ§öås°ÊôESq ³eòèžL&Ÿ0rÒQÛ˜ÊôqB–iä¹Ã…¼Ÿ ½Bœ®­‘kÍwÜ-Ó ÷)ÑÈÕJ IÉ»©jþ[,ÑÓ݆ß0ZbV*‰‹ˆàö퉋ˆ@&×02}¼7²]uƒ“*Íüžë˜/¼œ4´‰‰"éâüDÉF‚EɽÞJ 9áÞZô…¥¤^y£Ðu(hA`¹YÙ“‰=Ÿuù•7z{3;Li<úv•2GJžlû:O_D¿í2žÙŠhñÆ/T%IU*7Hö“܉š~ÚÕE3¼}6ë·gbÅJækÉn7‚hÝõOᢛºDÇWиù•˾Ô%õ!NGÆ `sÙfû7%è=þS|+[›³õ»78_qqUf¢zç ö¤S5 ð¯CerÂþÈ6í­ ;ÛÄÙ2(t@½¦%¥nÿ×€·g²r¶9:Œë HbÒúZëoPÖ½Ìÿ£~ú†_ÿñ,†*Þ*Ê]™ °–½sÅÖÄÓj¢êv­ßúp-ªïLǿ᭙{ȵH`+%'דi Ÿ¥IM÷‘yÐoîlvNzŽ'ÓbÌkÅŒ/ú‹…@‚PCÕJ4¯¶3PR¼¼^\4ëCœŽŒÑ_@jÕM}s¶Î¹˜\V’JÈûúß z‚eo‡á=ÿm&n‰bVûöv¹’:>Ïãé$^Nä¶_e|y?¹#56ás±ØPn¬Ùi-î]\Ú­ujyC‰fðáÃĬ\!-•ÿb‡%¥uëõaÝJy£B´Ms+3ô@䊢Råcîk-Ѭº½e´üÏêEJåe Udr#{òßS«‰¦Æªái·9ÌS¿Ê?Dðó„a¸jn~÷±”ĺŸhÖ‡kQ}§~‚¾}¢VúRø à½åj¥/Ah¨nhg ¤x9›WÛ'ôm^­"þxÝ\òY⬠1êd:´2-9¶œ«£V6Ç\âÕ|ÄGlô î@Ö¹ü¶;ŸïÎ.z^iëÃÂNÞLó”0©Ôx×â ©±‰¶_…’k¿–«¡íW¡HQ&Àž`zÆài‡NÓ®Ú}:LŸ™³ñJLDUZ†Wb"}fÎ&øðáÅXި1ôìIf÷EÑ”‡ÚÇ~=Ü;Ò$rM"§áíÙ£Fý_JFi¹¢b{Kþ–Ô—1T‘ÂóŠž¿$38ø^ztŸ@î3 ­½7Ü®šéà×ßï<¹ô¬¶öNIT³m£3Û6:“xºîm™[þΫ#)^̦¡vÝÐU%´±>CíK=û 5×ÙOèõ!κ£ÕÂí¦ãô?ŠÑ?ÎÐwÐ(ÓL¹å8Å¥»éekLïþ,ìäÃwÝÂ1•góD7ÚU}ß”$ŠŒ¥,H4â_º•5àSÊÁ Iöds…m¿ åà„¤ÊNSÙQr ~ §à‡jƬZuåÇW®®QŒÚ¦¹lG÷EÑX¶4¢û¢h¶Ž«áÌÍû“S ö2I§>¹©QÍ«ooyóRR~cÛöضýE“6ÔbïðIÇ™œã·ä0ý_;.iÛ»ô<량«V?ÁaåôèW @~ÅurT³®ü_Ohc1¡Z„ÚuSs4ëêÅòïêCœŽŽ1@@š5•º¾lY¼P] på\:Îü…¼wSØ0^½k9ïíËç€RÉ]žñ¹´ ¼²¬¿£GqIO§Èß´–-©î’te‘]‚Ž€SzÐØè¹:˜™wŸåG2 YAQ #('Úÿ­¬ø^QŠ—‚¼dfP”‚¬Ü~à6¹„B-Ø*c… \K’P¥½Œ.ñmÜŠÝ*¿|ò}̬üòÎ÷¾,澿D° ×Y<£r/k»éÛæÛÞr“UVe×!'ÖXƒ‘0ÈŠé.Ï'êž&1±ön›Wå§óçÙè)l([Â{SÞc¶~S^íÀÞ¥çQM,Àû‹šUÛ®‹ æß9úï\áv»©D³¾|ú­q::Æ@yàßVžË°ºqnØ šnß‹y0… W t™¸XÀE‰¼(ƒÆ®Ad«!@¡æõN>W}÷¤dzÌšM±7ùAA>LÛ 9ðrkr<.?^¥FZþ´ýi=F³‘³­Ï°Óç%] 8Ü*žò²<¼¥btʧT*ÃEæ‚‹Ì\q•¹V|ï‚ þ¸È\ÐÈ´8¡F… ­L‡5ªŠ?ƒþŸBøÉdäÂ9i ;´k^z'ç~Ä¥|N‰ÌH±¬˜³²³ì“ï'W–CŽ<+VümÙñ:Å qªEC¶‡ð/b¼¢ó褷¢¨Hdsóþ¼ñÿ°ënoiâ…}†¦‰66Ù\ð’q…_õ5¥œÿýÆã¼Ž'›=żÓß±uæî~¾?$ õr æ/ ÜõPÍʇÕýDÓÑç‚ ·›( "à¯`Ÿyß%ÉLøoø7·v«e )MKè¼þ0g ÅcýVTMŸ¢°Sâ”eåô˜5›#÷ ±{÷ÊÇöo§Ã'rnú4T™.(dgesÁ|ž$Ÿ$’C’IœJš.…LŽ{©/'C‘G;ÓÄ/§³xöÓVœ»¿ˆ V7÷rN¼o8‘'f_ŒÙî%°ï¾¸ËÜñT6§Äzõ]mŒ2#äHÎÉ#»ð,O¼új…’Õ=š3àç¾ìuòàS?3ý\­´Ö]L8Tf3¡§Oã–Cž—IQ±¨®WÔôêÛ[„_z¤3‘ò"ØtäSóDóVrR8ñvû÷x?ö|ù‚îß9ÿ„•þ5L2A„ºI$š`ß(Í–ú·òFJLQ=80e J ™£þɹO¿`øãÅ”E d× M©ÎÆ,þGŽPìíU™dZË­ä&çpTn`y·ùŒAyäÜ•CPYþêü´~´–µ¡·¬Þ2´2-yk+VU¬:‚ìáúÞÐ*ï\_JëÖl~~ mV­Á-õùÄÊùV-«u¾^Òe"âOûªóeýÉ”gpÆå,˯ IOù¹ 5[sÚ0ÈYC§œó ›·€²ý| ?yŠ{Ö®cõc’põ'»Æö–Põ¦¼ %É’ 9˜p»±_Í-50doIÊ™_i4„ ù°·ëùh ‚ uH4<垘$%ÚflY²ø’¶ÌEÎÈ¢Êðî`F2´áà¿¿fã>Ò)'| Å×ì×"I¤˜LœÏ;¬,Oÿœ|y22E6r¹7¢]Y ý¬Nôö /™r端QsðòdÒ#¦ª”;º)­[׸œÑß)ú%¡­ø·Í›/•1—›9­8ÅQ·£Äy®g~qí÷œg]ïûHípqu|ôƒ ¿ï_˜Z‘Í«¹´¼‘³ÌHOYQÜG}ïÒóŒÿÏx>™üOd?NÆïE¨&°D²)Ü[Ç—}ÆÌ¥§Qøà¤çȶ’1´uL×há"Ñ*ù+üIµ^žhzw0sdâyZ}Dl¿Lb6ú°n\ ÙÄ'%UJ¦Xq¹ö<6e.u òPÚ©¢i­B¨2'•3^æ¨LGb÷‹kŸÃ·nC›Â…è‡n÷ëPjIÍÈSîŒ+hÏwCÛ±Jµ‹/•ŸÐ;á^:«ºà{v¶£Ã¼-α'Ó/g¼Æ”]ÏÐÅØ™¶‚PŠ$S¸¦£üßœ3Du^Ë0÷×°µÏŒ%3¸?Ì©fýèbxዊ]¨¤ö.u Ýg}FøÖíäá–’‚>;‡}¯ü‚U{›bÇË÷ò$üäIB¥¦H÷SZ8ˆ}N{ù0àâ3Õ È‰Ü"Ǧl+•»úvÃWëÇŽw0l“®OÔÅ¥BWžÎñsid ŸË–Œ6\˜=ŒGÿñ#6#èFëäî姤žLèr…’[×j¡z‰æ_;H:ïDcéùñ'äÆÀüNàyæ =?ú„_ŸœÆvIÏ![,Ãc)˜OHa3îþ³#Z§´iyå¤òjò5býÇâwô®ii¤·hAzËh][CAÃK4“¢¢è¹v=Ñ×®-†îš,d©h5óâœÍš°ªÕ\h×– ×?ôŽgV©Xý؆Î_@‹ýûÉöóÃ+-×ü|LM@oÓ°¹û&V²ŠW~|…6ÆÖœ . I•†þÚÞrûè8j²Î¡®êÔŸWœ^$öL,ýÌÈTâ^¤PCú–<ÒÛÈ¢ÝÙ<4ÌSR,¹~1ÖðÎùEEZ‘Í€)M¹¼‹kµ ‚"ÑCj*3!Ív„‘±0g…Š-s_"s‘3EÃËð©H*ÿš³)r‚&šÂ¥2üùþ…©„ÆÇãž•MrãH’ÛëhºÛàA"AÏ{ãß%*+ŠW½‚Ji£÷¼–ìê‘B÷]—loYß)d žŒ~Š%ý~¤ç¾^hºÜ é³p[É<¸÷“žü$c~ÒaÊÖñ̼ÓäFoÆfCÑP&F\¡ĵÚA.K4ËIü溿`æ«s(¦œ4xž9ƒÊ i/ƒKE¥ œHûb ŸÑ——0òî`If-±¨T$4¿úêòHkc¦–<Ï/?3nê8?7ž»çäž_CY×÷ º;$ÉüË£ÇòIäG\Øržˆ.ŽP)<{ðââµÓ™s7>XЭæm‚ P¥`¡Dáη÷u0øpõJ†Âæèý#*ÿíR¥å‘ûG: áJT¨\6„á¥#ø¿€oY³ŒÅ½ÏÒ}{¦“ui¯Ÿ›ç¦v£·¡/«RV8:y;yZ IDATAá&Uæ“–”%<óôI_ü2¡ù…X•p[]ˆ‰á—§‘E£!'2‚ß_~‰Ô6mšð7!qùö½l¸g û€†¡Û¢è;.Ù|¤ýhÖ†¬Áš#®D‚ õ™@*>À'£?'ð?ëx,ø<ÿδÐÞÑ‘ ·Õ…˜˜‹åŒ„:KìÊñAL”žä'~âT—x]zû½¡·Ð $/ÙdôSdQƒ¶Û¥gð=Lô}’›ãhñp+E!‚ Ü,9ÖtÖ<3‘ØGçóvOwäå™Äg”_ÿLAn;E¿$´MsQ¢dTé(‚%_NuùïîŠGªVe’ë%+12+²j·Ý^J™’!Ê¡ü/~©£An–œâ}|9/–õšá.S£w½U~ã!·>¬+ptx‚ \˰²á´–"Èðûš=ù¥4Ž‹#rõ§DŸ9ƒÊb¹ìxz6Û”´”bä—$§×js„Zc“úhfÿÕº ÈL&G$‚ Ô”Ã`~–Ê1þõ•¿œnw³43ƒ*VëeêÊ/Aê–åh_âFFÙ;4Ùµmv ÝbcyqÞ<23+“P±×挋<—ÈÉ“ÉªÕæŠ#Gè=öYr³9wê8Nÿý×P9âиA„š©Öârc•DT„ºEe6³zæy ]|éôOŽŒŸÅW÷ßϦλn]ÅȦ‚›'²\ºÉlÈ“[9dy­¶ÛOVbÂù‘G){íUº›³¸ecŠ×¯ÁôÚ+8~LŒl ×V°–û4þ z|"“'Lä™Ñ=ðwÎæÂìO*fßk1è•W¸Ëw­6A€+l7 æç¼Á×<))^NüñÝ4öú6¯®ûÅoÛ´™ÎæÕŽŽ¢zœ58:„ëò4ŒstÕÒ$rš£C¸ŒÿŸ«ü[óz‹•ŒKmÆìÔ÷™Ú}t.ôb¸þ^ÒÛµ`Óöµœ‘üù¬Ê¹ñÖμÚ)†Ä=Wië>’Ž·èO}ÛFç«ü<[wc§ç4O×ðKî×´Ý8<Ÿ «n gfì&ý®!·&¨+¨Éõȑ׮úpݼ-TAô?•^3^¢N"oíƒl+CÛÜ~Ò¸&gô¦ó¡µ ‚`W™hZ373}Ä8fíÌ«ë‹|·òzy_ù&´±Ðƶ[ÐæÕ*ú ­û…À?yû}¦MÍÑa\W}ø}Ö‡¡îÆ©J8ìÞ ®eÉ™¥ŒÙ0˜¿ rUã­)¦`ïØ+ïÄg¸˜ž9±È¨¥ƒ>ٱث·ÅƲ÷Ä|Wûwñ ÙÅ6ß­[1·ôÅ7d?÷z†2ãÈAœü¶á¦Öan鋟éw¤€[Õ¤S£ÿsG½>êêkÓ!t1¼ðEE ©€½ ÏÐiÒÝxÞÈl’XfO;̰ÏeáŠCÕo¡RÅ­ó"v½ò$Ë›~ÉÉü3ÌmúO¿¼“Ë÷ƒ¡®±EF";z €~•7•ßÔ¿#7ËñËÌ$ÛÃÓÁÖLipºø´z-J)5) ?@i£G†'Ô'…{ù)©'ÿìr#ÛÜ™8öéd6t{“A¿ùw­6Aª²'𦓬Úf`ÌÔ~‚é;u,®ÛVrRL…„:ÏÚ§òäd” p_ë×É7ä¡<¶Ca!gÂîpV£õùD]±ÇkµÝz:â”–Ž÷ú 4Õ¶áœ=x¯]‡:#‚Žw9(2¡¾)Ú·ŒÔþÓZw'neúGÇN|Îó“çp4ÿ(s_˜Áž|éÚm‚ \ÂþQÌœEB¾]üì«ÊÕ~Íð,˜G¶Ð:0:A®O§£lÙRœxż´ÖµdvF)ãø ëÌÊú5âbÓh8ýÉGD½ô2^k×ñtk s|¸`§?þ›““£Cê…"­ÈfÀ”¦ÜÐ+Ƶ?Ë‹óíÿ.XKÒºÿ0éÓéd¸V› U‰-Íá`kÝ ÓáXž›ŒÉ+˜¼Ð®´(îÊ’FGpɺÁUTÕ˜#K$}Ô#tqiͱ3ë¾ùŠ’¨Æö̹Lš¿“ÎówÒyþ1¶ýmz¢1;•—Wî¢óü ÞtŽØ²Ûÿ3V|˜ ECqs‹¤ÊÏ.å­ç¿àXþ1¾|y6{ ¤jµ ‚`gO4UÞDºår*Ý^¾¨<ý9†¼Ä"FA¨?´Z¬ƒ’0ôNF5¦ƒ­ #aØéŽÂ|qaŸ5ѧíÑ ´zlNNäõèNþ£cq–‡°2³J M•sëÊîGšÑöïå}­%,Þ™BI“V¬u3ëP!b&PãÜŒ%ø&«&¨Ãâ­o&EJcÝ—S¸Ë «V› vöDSÛ”¡ÝòY0kç ϳyÖ< º£©¸m.õ–RRÒ!£7?ôúž6ÿë Ø“̾+ÚS”ãàèj¦©®{òªY¬ÝVF\©Ž¡Îx(U4‹ðÁžM’õÖÆ(‚ \N©»b8ÀX2‚& x¸/¾o_ጷn[l‚ ܤM(_n!K™BøŠN„%z±iÄ~a鎭Fzx·afö,6 ¥ü:£Fr'š:•°æl1í#H?›A\1äÙ€[WþWA¸¥qz•Ý~>¾þ z™¦ßº€A¨=rt7uáãѳX:}ëî=Yï’L€ön­‘iæ—]Dk×k¬Ð1ªKon;Ì}û”D‡»ã¡°"nj ‚ Ü~•‹¬™›y£[ z™šFÝ^ã×,qŸIîÍŽ÷‚‰7^IÝXýRi‚+JùãBrµŽwõ æ³û»²û±ŽÌ µQ¢s!@Œf ‚ Üv¢`» ÜÁ¬‰~ô[~Ñ]Ùw× þ;ä(}W´¯wɦ ¡šÆìÊ>Vƒ³$ r3™õg‘ͼ 56An;{½¿ ¶¯îG°AïÔ±¸]ÉISÚ‹A‚Poé.x²iÄ~ZèùU³‚]¡çˆQ†î¼'eõìz+CÖ\H¢ Ì‚A^ȤOp°¢íà;=Ò‚ä^lS븷e3Þmì$¦g ‚ 8€(Ø.w°²nq(…¤¢yIsŽºÀÚ®Þ%™u‘¸¶ògj}ü™ûX׫éq6áÎg!mÝÛ¼øßôÞrrRÍ´|î3ÞèOͶ.¨­~¡a7“¡hklƒÌ°‡ó¶ú9¶¡‹Dæ”ÆŸ©ùŽE¨ËŒ»xãéMtž³€¯XÄ’ÿveÓ„WÙ]Ó¹`µÕ 4p¢`» 4~f?46‡ª· ¦® ׆“'goj.bÿáªÔÁÜ™Ëæ5±dæ&±{Åf ›v"°¦ûPÖV?‚ÐÀ‰‚í‚Ѐ45¶"Yçè0nÈ©fœ-®¨5…œÉ3°ÙÈá ™P§¨Âøç3ðx·+ažQÜ÷¡3Óçý“ðšœÔV?‚ÐÀUÜ:w¡ëG_2üø41„óÔñ‘|ñawœ› µ¬Sq(Í1:îÙC³Ó§QY,Ž©Úô1 B΄ÐÊXÊžÔ|6 xKƒ>¦~Nns_ÜÿùÓw“X¶éFÞxàsʯê-éG¸Ê9š ßþ¼¿+ £TNÊ®èã{ñâ­—©+¿ªŠ?^?.ðõ!Îú#ˆ8kÓíŽÑ?#ƒ·ÿ»„F¹6â5étÚ·ŸÉ_}Fùf³Œâÿ:A’‘eqfY©ï{3Ãhà‹Ûmú¢È>zÜùuЄ´@"à- ©o•ÙG@q~ƒ"«¾úðº¬÷ÊS9”äÎ=÷µÂÇÕ—VîÅ#å0ifõ# \µ¥òʯª’âëÇZ¢úg}ˆDœµévƨ2›µl9¿öèN‰¦ŸuõåûÑ£ø­GwY¾[™šU+í¶‹;èÈT¶ØÕî)^vÎfŒ“£ezR8A2:"Œ¸Î‰<¾)˜øû•I&€±°î×­¯ËzOß…w¿ìÏŽcô¨‡ùÏíôýò}:ë¯ê-éG¸ªÒ/¯üd¾yµŠÐÆ67¯{; Õ‡8ëCŒ â¬MŽˆ±ñÙ³ä jÙ’ÆeçØåºŒ9Ô²%m£ðôYÚD‡ (s©±ô÷ëÄkA}ڽΡøe(ÓRpäZÕ)_Jò"/ӓЈÇHŠóÈ8×½k:ÎnçååêÃëî”DX‰ÿ wøiP]éG¶J4CÛmlcój}†ÖÝûõ!Îú#ˆ8k“#bôÈË#ÝÇ€Öæv¨.`³ÚÉÕô¤IQ*Y([%¨8'-}i鲦Øû~¾ÖÅOäWRâ¬1‚ˆ³6ÝÎs<<ðÍÊ@‡’ œ@JŒ¥œ.s!8ç</wd2¹—Ý/cBd3^qÎåaì-Õ’sÛ¢¾”1ÖŠõ NÙ€}Îfê[¥cí¿Çº6Šy%õáu)‚P›n*Ѭ/Ÿ~ëCœõ!FqÖ¦ÛcBXnù´9z€Fù!X htä žÅ<íÓ÷‹Ý8)©YVìÆé*禥oCŽ•0µ OIEÞm‹úR­_r¥mï@ŒÖÊUöùâ‘}ô´~ɽkÝßí¨>¼.Aj“ØIK³JÅâûG2jù Ú9‚¥y𣼶_bñ#˜ê–8±È¨¥ƒ>Ÿ(Tl-SÐD]†·LÆ9³–lY9nŽýQðQûé–‰/ŽDA¸‘h B‘îëËœ'Ÿ âl"%ØYÆœ'¬¼ÚeÀB¹†u%.dJà¬(¥—Æ„çmúr>j2ÝE¢)‚PˆDS³RÉÉ¨ÆØLœö›ƒ9»ê% ŒÑú²*ßKø©Šø§ªèv‡yMî*wr]r† ‚P wB- AjH®•£´(±”ÖŸþâª4îç™4Ø•Nm;ÐþÁ×ð?VTYT–»‡ñ}éÔ¶íÆÏÁ'æF66òv|̘½1t÷ }µço`¥¿µˆ„MÿÇ»“ï§™k_ÖTi+XË}=>‘É&òÌèø»g³Ø U.S­Dój; ‚Py½°Ö¿UÐ*òœOá»SOæÌ5ìÛ±žÓ÷åøÊ7ØdKpùÏ;x†¾Nì¶µœ ÝLÄg‡{ò4¦¼;îGš}±ž«×òÓ %¼÷Ï…¤Ôô3•9‹$Kžþ×c„*þVŽADïñSywîÌùj.ï<ì‹w¯ÇiëRk?… Ü1ªuë¼êŽ@"Ù„úÍiG4%9(/-GÖDüöŸcBÒ –?;ŠN€TŽOÜVý~€ˆ+&Ÿfü>p»58ps \®dè$¾2¡ò±¢!ƒ)]øJ @"ÉšÕ…2gå£cúÚ²¶;²Ú¼p›HHÒ_¯P*wOJÿ\͉’Ç v­A7špz R.oÓÅðÂ1OWÀÞ…gè4én<TcVê2që\˜’Àú®hs‰'&‹ k¢ý–µá¾ì4vEê/&‘å©tLpbïÏðöK“YØÂȽ+·àà»í•ùÎùLè—.FÝz F`ÉCSdÀ䥲7{…a.>‡ªþÍn„¶¯ûqÏ=Ìãÿx†Wfí¥P¦Dq«’À½ü”Ô“v1Ü¢'„úM,„F–Φû‰Jˆ X_Äë۠×ÎäøCX7–_ÜëÜ)”µÃB+ÏKnÕšÌ='ÑYqè•ÃUáB‘¶b’TŠî¯µ©9Iß܃YŒ( (ðìù:‹zHü2šõq݉ÔÞšg+Ú·ŒÔþ“i­»5ý B}'F4¡R„¥“ã-Q¨Í£D³óàp¸–áe¼ÊœM©œÀý{q jIšƒgÏh:JœJ@2âV78¶üÝÌ~ó0÷¼y?Á·äÿ¿ˆC+²0º)bV† \™¸ô BdMô£í)‹züŒ¯ñuVÙ€m7ÞF+—mä(™ñ9°’ÑÇýYûXŠm.q…dèüÎF>ïï]ãQ©pŸ¿ù=§ 9–Œ/§Ld£!š'ÞŸD«¿F/‹³¡h(#TµýSÂC$š‚ÐÀXý転=ߌ™É45OæÁEθDô' Y8íÑŠAeîþcº²ö±þwvüM\‹É)Ÿ o2PGãûÖÓ€œÙüYž:Šž{ÜçÿEL÷,­%af[êßúzá†h[ñÌç_Ýt72×Lþ¬s¾¿ÊAÎÝø`A·›~.A¸“‰DSÝO6Ø&HÏ!×`>|£?ÖÄè’Ç0f6;'ÿ•d–ºõGÆódåc9æZ7 éZLjÇî»ê1’G’ØBòmŒKA¸œH4…†C*çø?ya}Ûòm8{…ðÔð{y³¹ei÷½ºm•²ôƒ¡ ÒT§ß"ä ÿ…úõ¯‘§˜‘"ûb™ý˜úÛŸsÿ¾ãmžÚKËR€n”äÿNN@κ÷çž[x›·¬[ @mSƒ¼°ÏÙ, 8 û«X~ŽÞ;RÑÊ#ÿ9Zñ` ˦Œ%ÖÙq÷Ïõ =ÅÚb‡=¿ ‚P}"ÑŽò,æuaÚ¤ñ¬6X9ux'#~ÜI¯7úÐ@ÈÒU3¹¬ªøÊíÁ˜OÃPŠ|Ù4œÆ¿ŒíÌ|¬ªtÖ|÷³NDaÙ¶Œ}œb؉o5ÐÃ)”ŸgM¬èÄʉ?18+šv·i.¡ZRƒüb\œ¢øæÅ¨K¿ãõÛLˆ¥å‚ õEµMQ¤]¸#8òуHÖRÔ Z½ƒ¸™‹.=)ÿº§ýßåP;—’™xs{"ò¹«1·Õ¡<’pñ9«*Ïỽ†<æOeMékÀb%ñàƯ:ÎÞ" …‹/ã†õá“¶Õ¯HmO4Ë®`â¾c!߉â1#-ÆŒå„'Èë&æÈ ‚ ÔUbg ¡a©z‹\éÇ[S‡ÐZ‰=Ñ,»À#¯~ %¡£ù÷CéYÍy‰kѸ´¯lÕt¼çl 0ù ¿¿Ü‘vC’iéÒ’oæýbÎ*Š’²JÙ„UU®9›Æ¿V$Óâ¡Ñ¬i¦!ëÄ.,Ý͈è~µðKª›Ü·ï ÉsS1© \ ÎqÇiòìTNýg–H6Aê(Ç/!„ÛIc¿]]ðáÖô‚9‹pÚZñø§)šõ49ïÞÏ{ç™üýaâ«»TÙ0˜R©Œ’ÂÓ”½ÊÇçVÜ•¶AY.÷<±eÖIv?"ÑúÉ×H)©r®dâm)xwnBTÕÔ)lý^jTrYŬ³}4T¡!ÌELf¿‘,4®nx(©œ,‹3‹Œ^¼_ìÍ £?,rlö'£Ìª%ûX&ç-Áµ¬”|÷=MânúW{«}õ5Z3˜ªT“ üêÿ‘ ‚p=74G3)^Nüñ[·uóêº_“¬M›él^íè(ª§>ü>oŒHåmðÉ<ÁòÕ*Ú_òröEgiO@æI–­RѾÊ_Éõãl ÏÒ-añË_#C@KÏ»ÈõêÌ…2¤ŽãI\0Ÿã+Tœt±Ÿa+Kà½SnÜíâÉ«ÿ6ÿÐz–7¶¯å€ÜŸGÛ s½’ÍøsWP4o~·_ ù1ºýH2Ö+Ávžt¾<Ü‚NÎgmç‰û:ô§¥,‡SK¦3cÕÿaV€I á©©„/]Êž7Ö‘Ñ~àÍþb«-ã\ûßþìÅ=§Ý«$êš3çjÜWMÔäµéÈ¿µúðw^k¬E$üº„%k7²h^!Ÿ¤lbP• ­é˜þ̤¹ê10öóÓϯæïYµÕ 4dö·P©ˆã ÿÅ ¯Ͷ3Α}yjöÿñæ@ÿ+f¢¡m„6¶Ý’€6¯VÑg¨ù–ô]›>yû}¦MÍÑa\׿Õ*tn¿9:Œk*É¿—S 3nýI26ÊhálÃO.#±HA2¦Äœªr˜M’_¨ ¦¤‹mM"_$îÄ—÷[–ÄÝäqªk ²TÅ„l_‚Nߌ#g? [nå7ŸLXò gîr§dÇOôÐ…²%é,\¹%efŸý¸+„ýˆ¯ ›$ãlÉ–ÆÎÆËÓŒ·$cGž›s¯i%òLXxh6>fînö*áfw¶!'O¬2 '¶þB¶LÇø­öOH*+˜«¼gúýg$­J}Y<~8G´ì,Ï`Æ¿§'A|ûÔHŽÖÒB¥{׶ëXEIX®'NWe»¿’ðà÷UméÔèzä¨kW}¹nÖsI–<ý/_v.œsi›”ËÆIS82ìVŽñ%cþúLú…Ëâ^“udµÕ 4pö·ºâÌÛÌ´ßÓXPÊ©eÓ1þez™OgG(µE-”2þ—¡"Í®j=møHr¾º àlÅ¡®jƒ=%{Ûõ¨ý8eØÇ ÿçLAqH[~}¤+9 ¶{‡²yÉB¦n(¤Ü­9KꂵòœŒC%2Â]lè¯úr™D¤ÖŒw‰’\x#'Áj£½VB/“Ðk-x•dW~þÓ³\æcßåG*£‹”ƒ· ÀBdnVeÏUGCŠÌlj¬CBƼ8­–³à¹˜Y–ôïÃÑiLâããhýÒ+—?>þqD#8”&œÞ€‚”ËÛJâX¹ß‹A3}Q À÷îAx¾¹‚¸’t»úÙ­ëG8ûÛKO>ªX5+•[P«ÐzyaÅ„;ŠD ÞÊý&^ÊlLºÁQz™†ôNðM§®Øìï‚qÒ+\a,¸×Ët•pl6Êh®³à'“‘T¢$SnÃCn?Ï_&ç€IF„òMJ2e†ÊY×FFJg±¡&EæÍFÉ…H p§œL/B3.—Ž fyz’SVŽ 2‰hɈ  £9r]¹2§Kgü!a?ÌNPؼ‰#§SGG&Ô)–B2Œ:¼]ìÃõ _´ÆtŠjZY¢¶ú„îb*Y°–ûÜFÚWãj:ñÖž_h]Óz‚BÃ&YI:ŸÁÜã¹6Ihõ. mÄX_%ïÐÚHK>Ç3Ç$^ìFgñaæêdVš+Ô¬ÈÖ‘.«ÊÂ} ÞØèn°ðS¾†÷Š@!·ÒÓ`ÆïÒc&D*À]æB¾T€;°©c;ž\sá²§ûªs :ÿ™È9äc%°âqVäÈ)¿ìŒÛ/§Kgrºt†cw³ÿë/ŽP)]ñÕ—Ud–¢ Lz_\jz­©­~¡»¸êÜ0˜Ÿ¥2 O³æ%˜óø\N×…w¡þ°–òKŽŠGº5gÃàfÌjª`ËÁ4ŽU0æfò~’Ša>JQò µåLö)á=ß^ö(§RªlÓ©ÌŒó¶·ýÛ»Œ{Õ’½”¹õ»q&V”¤àJ.¥üµVâxX$oyœÃ~ö´´ÀÕ‡ CDZ?È Ÿ±#¸PÏé¢Þ>›õÛ3±b%óµd·A´îú§Þ’~¡ûÛg3J—Pî}fMæ.à¬iQ¢l¦P]J=Oµ±O^’$ ¥\ŽZ-G_1qÞjÊgö¡2t @y8•Û‘ÒX76¢¼Q!Ú¦y•™Nº£NrEÑÿævÂŽ>lïÕ‹„¦M`Ke!8EeW[vÚ §sè}•ÙLX|î99äzy’‰EUK«†ÞDÈ4lÆ›l@OÝ¥BÜʹ›á!¼(¾ÅP˜ÉW«¨<½õ—‹8úô³üYñ·oE q)ê ©pŸ¿ù=§ 9–Œ/§Ld£!š'ÞŸD+ýæÎfç¤çxò7-ƼVÌø¢ÍðÈj©Ahàì‰fÑvÞ~?™!SF­ËdçÜÏ900­ý Q¤]¨6K!ÓÖ%s@®ãñžáD*@²”ðãþl¼Z…ÑOkf^¹D“ÛNy£Bº/Šfûè8´Mó0t¿øýMôyò$Λ_ù½ÿùó<8o?K\ˆw/iÉÖ‡â•MÙé*ß¾iiŒX´ˆ|w²}}?}šÞë7°bô(2üýoúg5>R6£É¾B›‘‘RbÅaÎ|Lyî5–Ë\‰)ÝÉÌïcÙúøHΫåÄ¡£9ed¡Á†±.P¨+d®˜üYæ|y»Âoï-pÓÏS[ýBCfO4õ­üOEçX¡ÿÎcø`鳕£™bg ¡Ú”®|2¬%VK9‡Røð@6Ýz¸‘|$•øà`ÞôR ·˜8_z{MmÓ<¶Ž£û¢höÜ}Žî[C*“ΛÑý×_¯úx¤&l}ø(w/iÉ®îIܽ=´2éT™ÍŒX´ˆ½zq4&¦ò¼–±± _¼˜ÿk9‡’Ð⫎†ÞÒ‘ÐJdѸ<ƒ1•å û—ŸQÛeŽA„;›=Ñ”ˆ™ø=N¼ÂGCA¸ ¥š¶ažŸÍ'µÜ‰ÕçL>wš‡.³}ÝYÞN›¿«2› =}·ìlò¼¼IŠj\ãdÊ"AšYƳŒó¾…$u:ÇC» dz$¸U¢x¯’"mEºŠ¯Šk‹)ÖS¤+À¨1b•ÛoòKq³(ÖÚ×^Ïx¾ˆr+.­4fЖ_ Uÿ)´QãÑXK£76Féq7»ªìe< IDATárÆ…à¢lÖ5×s¿1N…fTÎ*ÃјZ8ˆ¿üAK_q44ä–„)Á)œÏŸ @†‰îjWV=÷«n¢gA¡a«œ£iÍÜÌô㘵3 ¯®/òÝÊwèå-v@jÀbä‡Såt4¦°p$1›d}”óâq…LÛ˜Íð~átQBÕÝ}RS6o>dûù~ò÷¬]ËêÇÆpå§•àœÅL‚-—d)—LYÅò\ÔNy(œ‹($öþb–uÆ+Ï«‹½F‰-ZÉþ¥‘4hÑ *pBƒ¼bÙRD£'9ÿ£¿ù–à”TôeöL*(UAb¨‹ÇŽÆxNOëÍ¡hŸHh¼3‡;œÄhÈá´ÓYö–sÞð?ru¹è ±Y h,žld½|5…ÑÅ<¼ª‰i:îÞÁÖ‡â–ƈÏj6*?Œgª~^«ñÊÏ'ËÍS!!˜•bÙ¬ ‚p{T¼ã±ë•'YÞôKN®oÃáîáé—ûsð»b^–P}J ]µy|ºå;ûö!®]»ÊÇ£`èü|ÿÂó䫬·ep– Reä+Ó)S¥#S” ±xb°y&y,óÀSŠ@u&€>K;78}“LÜ/™³Y>ŠP²*Ð#]ûÐtÞ¼Ê6­Ùþµé®~èOF1 b2,JC™“O}ÿ[>JK‹+íwïbñ? X ¬$QÀ9rh•º–-MlœòÜÈög—R攇w7oüŠý K³QÚUMV€.…F´z-r…üŠ#¡4³'™¯ó!\9•\O=i4KNfØöí|?`¼½kô³ ‚ °'𦓬Úf`Ìê~ÔøN‹ëЕœ4õ ýͬ˜Ãø2<èÚ‡)]ùd ëe‡ž:E»{e’Y*Y8*¥²¨m)^eìTD¡¶•Ù7‹?~6_:ZšÒÔæ§ävŧ²oĉA™è›çlª“\á&æi&4mÂOcÇÒí·_ñÊÈ$Û×¾êüL“(œ¶*o}8EeÛ¿?g ñîHzmØ@ËØXŽÆÄ DA$Œ8˜D—ß%¼Z>ŒñˆÅüγ„žP³»ç´ÖÍœöÖpB³›t—42 ™Ølö‘ЭƒL¸™WQØ¢‡VwåLÑŸ ÝÐŽpåýüÒµû›5Àp ¥{·a!k»v¥÷þý|ö6Lûv-ëïmÁñ°°þ}‚ •ØMs ùtñ³/ôQû5ó`Ùf¸©¥¹‚Pºœl6F¹òçù=œv>Åi¿x$«îæîÍ ÿ^ŠÚ@%«"ýk¤Tºj—(ú%_öÖ6Í»©$ó/ M›ØËý]ï3ü}­ŒST6DecFÅŠÑ£¾x1-$Ë×ïô \ òY9jÆDÿKV¬Çz1rÉP2ºÒ9y#‹ÿ1Ká_#¡¹Äœ_Ëæ¦pÊs »&-§L“KP Í3,(d:¼JèÔ:Š|3 Ú0ãÿ³wßqQ×Ç_wÜŽ½QQd(î­8qgfjYf?S³LK£Ü•ijšåH3G–•iZZ¹BÍÑpäÀ=p‚‚ ²áØãÖï  Cðîôó|<|<¸û|ÇûëÁÝû>ãýUáµíÛ c«žy‘¿_㛾}E²)‚ T*1YK0Cžk®r4v'G•;¸Ö#œf1 ªåûðTn/gA*+˜ùÒá¯9Ñ©6ó/bïéÉ·ï¼C툫8%%åëG¤Ÿ/Z¹åùâ{Cm"±OÝP|Oè>=NM^"ë\A’zîi)uŽÉ9¿óì«“Ï¿®ÿrÕãøºó{À6¦î¹I›hpɺ7®^¡¡"Ñ̃.ƒˆ¿Ö³>dëV§3?f7}ìËÐVi!<í>‹—Ÿ£¶ ™al qfÍÍô0< ­è` <Ñ M¹+~)\ŽËgùqI¶÷Å¥²«¦+Kµ(¨tç—åú> yg%Ô ¾÷{Œ$O‚ö¼†c1G 5ápÃØiìh#{š^9OS-í _µˆC=dœoá^¸_ÃãDZS«‰ò÷d×UÕ´r9áõŠ6”Ъ©›—­'´y¿7ˆUðÆ^qŽ]ñWú£Íp KnbÉcÉQ@² N̹s÷””*½fA¨4šD¢´­xë#w®]Rö¶ò× ûkãè¶`2M­ ¤† döšÛ9hᙀUý:¨µh7C6åÌ¢Õ¤uü–1l.”BÙÈ€Ïg\CM­ 9×÷i ¿¯F’'AfA~X>¡i‡Ùë¾—Ðz¡4poH{ëö òŒ»ÊluW.G,@ l:„~k~¤áñ$yxà‹ZÍÖ¡Cª ^¤y)OOè¥æÖèÎEÑñ\8ûjX"Ã@Mrè0ƒ<ƒ6y—±ÉƒZwå–qÎÎFº2A('Kº÷ÒbÊ×VÖ͘°üv…CG×^%pLÎ’RÚA¸‡L5óvv7`ýóÔµ¼€A=qŸYÌ3Yl‚¨$çj|>sàrX ~w$#0í8ºõ(!]C8Òò iDG÷N¼íô6Ò’¿ö'T«Æª ãñÇ11‘ëþ~Dù—¿Žæãª¬=¡ù2ß÷íÉðh°É–XggoUC›8‘?š$1àÌå"‡ØÙ¦MÕ.æ,ý(¿DufT»bÆàÔ&²¬éwîúüÒwPI0½êÌOµŽ2öK`À¯Õ¸p]~ggµ¸[ºÑÓñ)ÆØ½ƒ´ì…²´r9õëWaÄO†[®®Ì<˜:ÑѸ©Õ\s鯥vÇÈ«åAr­¾;ŸiG/ñýÉõ\lð>? ýžç>Å'9?0iêxô‡æ–ˆÏɱµQÏ_.ÎÆ¡LjÖìfìÊ$?ÇËØ!”Ê\þÎM!ýKÞMðØå„©ÃX1v4Ác—q6ûÁm’y†ýèï[Ìôµ ‚T°`{T¸”ð ½{¶Êñö×›ä·tsˆÓbÐäÕB“ã‹F¯ãë³ZB²¾Dêø/³Z3Hò>AlØ ®Ôä•@УÓɱ ®Î¨ë7‘”ÔP“<ú@ÀŹ-înhPï’’Ÿ°×¨1§V­îøøô K—/¸~ýO®]Ûf䨊ÊÏñ"/« w6#© «“ëÙ4—¿ssI„%v­^Ü €%«îo}P[ØtàÓ;”¿M ‚Û½ýõxûëÙ³UN~šGnù˜Cœæ#€\ySðeÌzòläÄ0÷¯ð(ÚsY+Hn”$ %5””ÔPêúMärÄãQФäÃ$%¦A½8ñSc‡S¢ë×ÿäúõ?éÒå þùg¬±Ã)‘Â*…U I°u1Íéæòwîí¯7v‚ ?0É^Ìâ˜ÃüLÀäz1‹cïE‚ •é¡ ¶›Ë·_sˆ³RcÌOdõ5[&ywHHÊú•©'ciÑË&ä²3YÎËê󩥞è[±¬ßJ«]+Ð{zYÛ—УÔY¾‚£Ó§0Ùp˜ãÚßñS6çûÚßPMé^êéMAJêQc‡Pª¤äÃÆ¡L¢£ÿ2ve¢°zȺ‰€9¼ ‚ T&Q°ýq¤¬ÎÜÕØ-Ñ!“JQ(¤¨$€…Š7›ª0 Xjµü°e'F Gß«Gá!í\ªÄwȲmħµæÓÜÞÏW"‚ ‚»=tnKû¹+xî¹áÔµOÆ©í8¾ßÜ‘²W>LNnO°ƒýRk†wöÁï¿jUÚt&m»Î ÿµ+´öªV˜d^H¿ÁÇד^#†•Ô¤i»$Š$SA„ (œ£iáÞ‹9‡b™SÌF*‰â†$T KoþX4š›r¸’¸ÏN$Ñ¡³+^@fÇüþÐióQ|u½Öž(tzÎØÆwΫ¨£èÅt¿Oh¶÷[roÞ4ö•‚ ‚`¦ÊTË"Ë_øO0/v4¯íŒWN·î[‡`!SàÔȇê™á|¹o2û ûøÊá+æÖ…µ…›k×È®QÃ8 ‚ ”D—AÄî•Ì~zv=Ù–vW›!“ «Ç2 k_^З§»½ÎW'Ò1Tà4ù×·0ëÍ7yûõÁ<×µïýÍ=Ÿ‚†LŽMi†JÖãÞA(dEÓ„òÉ»ÅÌm—9•¡E«KçTd×-UxZÚ,~8ŸJxžm~>ËR“xýÕ«ôHtá³Îóñðò Ú®ÝX&$Ü¢¹q¯Eá~šD¢´­x룡x[Ü—BfŸgýïþ·f?oüs=øzà4Žç”ÿ4rÏîŒ_º‚¥ß­ã×ïzðoð{ʸӞu|!óâ»ÓTÌ3„=Ty#ÁD)\èëx7çüEX®ÎNöŒlår{ØÜ’öV©¬Ùtr‰N±¼=‹I!ËÉ=ú™µ½±¹‰eBggN/,q$‚`2,}èÞH+¦Ò€ª olSøPnïŒeþ-r+°à_¢°AhÓ£9ºy'©õúPËòvcö)¾˜t†þK_aí¦Ó¹ Ax"ˆDóq$QЬ}wBÛwgÏV9Ößi3X º·¼ÐÌ¢3Ú¼Bªàp›f8Ÿ8‰õ¤4oNr‹æ"ÉÁ¬2N²ôÍïðšú;mT<ˆî&kºú|¶ ³ŽÁ[CØçÁìè°”?kݶc„Ç:‚HoJ9þe(ãªå•Cy»í»(¤ ½ôJ%‰íÚr}à‹$¶k+’LAÌš6ö>è>„#~eõH_*¼¤Õ¢:ÃÜâØ·5Xñòg„åéû˜>7 ÃÅ¥Œ^Â9õ9–MXÀuEf‚ ÂãMôh> `¹IÁ†˜õlì¶‘ÏüçSÛ²¶±£2;ññ³"Ñš=H¥zZÚæñŒ¥¡èQîEÏü‘Zw?§hÈÏSþGd9ò÷èl[³dÄéô¼âšK=ñÕPJa ëü·Œº ßÏþf]àyÞl3ŸWþZEgÛŠÑÂÊ…:Úâ’JаëÅÆLuAcZQÛ¾dÌç ´¯´‹„džH4[Gƽ“ƒ½ Ÿ;².ŠøUé4HV2/h—ž¹Ä¢Ú_âlâ·4I)k"¢ð°Ëa¸²òä|—® ¡2_É}ÛZÖcݧÿ Óáú×^NjÍ­r$™ê%?fèåC…™è(„B†ôc,¶Š+é‘„©ÃX1v4»ìðÆœ14ÖïeLÇw9ø?ì~›É¸Ÿ"ÙuVKÿrÏÑÔ“vd)3—E-5IÐòå´»káOþµ Ìù䇂Þû·¹ïÒÚþþ7Ax²‰Dó1áÞÉF¦pìÍ‘µQ(_SSÏJÏÄi“xJXPm–RËR%CbÀCaA €¡ ë“I X—ö™¢‰¥é —Õ"¯Ì'“r:Ûo»ZÈ T¨.‹ <Æ$v­^Ü €%«îoíÂ)Ù÷À‹Òcæ$äåKXŸ"å‚V‚RÏËÎ:|*e¸ÙÀÀzõ™x\ÍÇèéᜇg){)£ kʆjòrœJB´^e®’Ùj)y:ºØçÓEnàáúJTl”¸q£ðq.Ïbñy¨c ‚ BÉÊ”hŠ;™‡ÀÁÞl8B£¯%Üè’âqÓ°O­É{Õ† }Ö}`ª”|•Ži6šiÁ¦4 o9*¾à®cÿqå JÛ\¦XHÍQ°6]FC' .%î”M­ƒád·Er9¿Ò 2åyŒµ3 ÎQòCºœúNùx<ô¨œH.A„GGÜè1rd]5×@È D>n>U¢+ïØ¯z2’L$Dë ´VÄ€—Juž”„Jz–r:Çž–VT5¬´8ë¤$=`Þ—4ý2­b\8ÞÈ ]É›À³…VVlnŸËM/¡j´êpÛÊœ¯6Ó°ìcü‚ ‚ð@OJòØ;². ÞHaÞ «œþ öõÜÿî8bD;´GHOu©„cÙ¥—p#[J´2+#A“¨-KáDŽ„lƒ„[92$ìKü Òcv×êí·+g7¤Ä@CœÌ‘ep#GF¢Tc¥¬1°d›¤6‹%µX%q&–·Ž0,Ì–ýÞÖbJ¨ ‚PiÄÍÇÄ­}jÖ¾‰ô¹¤å«Ù2<„“–·Ðü’ ½ŒÝ#"NN~J–ñ±jZ뱕ðóÿcàù€¦„9Â'`!ÕÑÙ^ƒGI›ëišFÔ3~ä”;µlò©¦Vòi† -Ý4¸?ô…d1À €9Q¸ò§Ä·ôP†ý“¡g:£Û»W|ûA*H4á/h‰Žþeþþxv7 ©‚ÀÁÞdØÈ¿KÝÿqa­Ð1ÂSHÈΑò¹œ*)s²µoë®eü¿´pçßqTø\‰žŽ9ô¨ðL†_Ò8­I£Ç®3¤õ'Ô6ƒÞ9z¢«èœ‚ “§B‰fT¸”ð U·‚yÏÖr¬Ð5’¦M§³g«±£(˜›Î‚‹ëQVÿ“’£„þqïò”luW#EVvuý&VÞÁ :Ò³.óý¹øúü¶ž¶•¶Þ¾A½Š'R—._<°]§KãLÔOtZ½‘¶}ö”sþ¤ÁÏqØuúëª1#©“Q÷/«ò¼ó½ËÞ7+.ƒˆ¿Ö³>dëV§3?f7}î*–ž} s?ÝI¼&ƒ›‘™Ô½„Y/Ô,º(0ï2«'cê—§h2¬Ñ1TŸü#sºç³ó£7yóÓã4=ƒù³;òïÔ |¼ü4->Xɲ{£:öã>ÚÖ͹E&6f°èúwhææy'hñáw|5µgfäOŽÓ|Ì븆n%±å[ÌY8šV@N+&|ÀÊs­Xµû#[UìzÁ”U(Ñôö×ãí_îê·e²g«œý4UrìÊ4æžêÛÛØaðɾ}ª­á³€ùÔ·¹Ü*l‹nÅþ•˜ÄUNà×àÒÃ(?á+Oq @iCÏYÞô&•U?9â|ÍÛÅVÎÁªÐÉCžœ97«hƒ^ΪT+¢n?´ÕæÐÙËÔ>ëOí¯îlVí>løp8—«°äj“FÓ°uÙ_ñÄñpû—ã<åy?2Ö{—¹¼oVM"QÚV¼õ‘;×.)Ò,÷ìÎø¥ýQÉ@¹” vïq詟‹ÞHY—a¿Åú5_òæâ•ôˆžI»ótvϼ7’†_åòæœQÔ³‡zsF³é§/ñ^ªkN0yèøo>”† ÒþA£  ¯ÉsSFñÍ7_2bRo<-ÁsÒH.ËåOfÐpc.¡=FÑ@z‰oÆí¡ý§ÁŒüpѶ¡~IIf®WL™:7sûoÄqZöÁ5GÒØ¦‰±Ã1.…«ÆwzS<ÉG²è6¯h «=b·`!ò+áhêø“>q<9=º—)ô¿'GâhMÓçÝËt.IN–ûö#»‰ÖLJÜÎ0X–’J5 w¾;ñaÓ¬ÙôßÃÜK ýü0¡ª6É„‡féC÷Þ@ZL±Í… *@›ÍÑÍ;I­×‡ZeøV¸ùãò3ñ¥XÑç’ž“ÉÙèQbßþCVþxÆÖ@vI;Ép¬!ãF’†œ¸5ü¸}á/¾Æ,ÕM^þ0.åzÁ”‰yÿfL£70+|MìxÑýc‡SVüªó¢ÿÞÅ4\vŒ¿ï{s×ç$³pÓ?4\¶‹Ž›®p(çáÏhyñ¾ÏôÃùÇuÈcãp^³ß>}±¼X´GÕ®¥ç$\Ø^pOã[G®¡Ÿ‡s ªè•ìþ—ÁCQœ:$+ ũӸ ŠÕž?Ë—S 5ªñyœÞ$™%Kv nØ|û=·naóíwxuEv¾<ÿ‚ðxÓÝdMW?z¼ŸÆˆ…Cð.efA›Åµ]¹^£>¥%¥ª¶ÌÝ2 Ù7¯ñ\Ï^ô²”µ›áþß9ÔûxÉAJ¢@å0€ý·o‹®p´CšÊÉ q¼¶lQ뎑’šŽ“S9îO+fFôhš±9gCÐZ_ä³z¿;” ÊáE‹:µÍ'GÞצåÄ¡0v:6`O;. eÚ!W~ïæHÑÔ«l¤¹¹x½ý.‰ÁcP÷ï[ø¼Ã–ßñzg,WC¶ÞÓ³Yÿ. Æù GÎ$Pw½’¬EÊ{zÿc·àóbÏi·`a™z5›>ïÎi ’ËNDRcY ‹žK’“ƒóko>i§ÞÇ GpëÌÔ­oá¯reXÊtäi €t Š‚ùÞÚnHºñáÚ×QI´$ý5‘ÎÞ§þ¥´pbCÔž‚y”i!<íý%r—jäÛÍÆŒ¾|ÔéÊYì¾èJµ¾OÐüZá‰#î d¦®¤'°;{)ûÏFeQÑÔË„i³Ø+£oW<\šÔÀvG×´Ž4ºë·¶¸áí ÛÕ¤Ë#pƽIšÍƒhªW+L2u:Iñ‰œñõ‚F ®ü4›ë6$k’ÉÖe“©Ï$CšAÖÙä(²QÏÍ"_g€_ï‹Uª7Kšw6UÀ.Û®ÔËVLW Ô(ÉfI¶VŠåoVXËlPÉT¸(]hx+‹À–22[¸ãŸr:Õ‘Ked½øªõ¿`¹w?ØÕ¾Ú?þäÕHCîŸPøœ&Ü eŒú®WJGÌ™…• u:´Å%-” PR¢ywbøeMZ¸Å°7,ƒçƒìÈ?LœGkjZY‡™ÔkOìæÕš2ìª{b-‰ÀPJZ™c5ÒÖÏA9m . ;ž~1“_©˜óÊã~{`áIV¦Dóî;‰¤Ó8¤¹¹Ø9ŠeL ¹5½˜,[O#«.tsmmìЪ†>Ÿëy2ZX¬ä‘[ÛàwƒÔûÖ o£.èÜ^Ðɧw>Q²uyŠ»HjÔV®¦²{Ï0Rô1¤I8f9àžåNMß\<ÕW±—ák凵5¶vv¤EYàú£I=eøm´'ûžu»'¥TI­ÞÏ£8uºÈeä7oFüÎí¤iÒxÉçBÍÈ ê…llwg9:IC=ñY©$禗“Àµ´Óœª—AØñÈ“¤ •d᥮ŸÖÆ Ó©{j39 —葤äÕH£Ë¯MøçÅ3ÈýЄ»Ýy\—EL!ýK§­âJz$aê0VŒÍ.û¼1g ­õ¤YÊÌ¥GQK ¤Fg´|9ílŠ9PÞeVôUÁ1Þû·¹ïÒú¿ÕƒÊz÷&ïLy™ÁN!㵕S¨§rA"Icßì1ÎM'ñ†Ž~ß/£"šÍM˜:Œoçï ÅÔfœ™ÿ aê0VÎþ•†S½q”µ _;$€k÷¡,;Šc)«¾ÞJþÏ„J&†ÎÍ€êòü'½O^õjäøúp |Vm£øÚyô—»‡·ŸŽÇgƒ%»'GqÆñ,—öœ!Nw‰\Y ~Ž6t Oã)÷A´t©G {Ö ©÷Ðá$¿:”Œ®] }a»ß’?5Ðëö;)¨;>‘Hr‹ i§OËà¡EâK›4¡ðg{yÉõHNoŠÇ}¼’¬…v zÞÓ ã©3>¯Èð¹ÕÎ]Ø|û‰¿L—Ðäåv…Ë×.“pq.¿W“q)úÜtºw’7µk7à"OíêÆå›öt8äÍ?/ž¡¾á_‚VüƒKb"I®®ìëÚ…ð:u*ö"Â#&±kEðâV,Yu«ûÀwXX†)ë2lñ†-.®QŠ}àVÿ=¡h“ý³lOx¶ØC>7wÏͽóØsv1³ï<þôïVw®Ã±+÷–~G_¯ ˜6‘hš8in.þ“Þçæ¨$>Ó›l]>ÃCŸgZ|š¼?³~B¯| '’KøK³Qíü çähr\”äJàXÌò5w;;ì儿 Î>H®*‹jšzÔwjÌ×géêÙ;¹ in.¾}ú‘XÏuã;+ô6mAKV»v÷7ýx|zgX¾Z YÞé$É‚çï!§Gw’Ö­ÁîóEÈ/_AS·iǓۭl5LSŽdÃÂ;«Îÿ›³yÿ¹rƒ:á0}&ª_#ëÅ+ÔoÑV° •·÷7Nœ¬ÍÙóQg¥kˆå¢çq~›´—4~kTŸäµ IDATN¹y úz’ÛßRªÝ¼ÉË?®åç!¯ˆdSµ´žv@Éź‚Ø Þ#êf f« Ñ4drñ§Lüðkö^ÏÃ¡Ñ ¼¿r9cÚ8ˆeéFæp8”|OŸ)¨Ùùþ™åØK¼èùÜ{äïý‘PRƒMáêGÉ2<†/WNç´K-4-ë ÛzŠß“V‘¸êšœÂ?ÿÍÞ¤8Zó(þë mËKaó®7 žq,rL½¥%1Kã<‡Í[Èõ÷ÇòÊä±±Ä,ù¢H‰£ÀéEý4}Þ½H’ùŸœÝË\Îè~]çÕ.ò\qç2XY‘ôý·¸¼þÖ~A€ââ%,nÞ$黕…%Ž 6ìm°Çßð f,k̆>‘«dg£_©;F€á‡À)«àØAÿ#MAxÔìŸåCiõ”Á|$šGYù‡#6‡ó‹¿ŽSK‡1pÐ'´¿0Ÿæ*"+T9ådÕñ ùVr¶±¨ÁwdÕñÇ2ÚœëªYñ«Î……B8¶ràÄò!xýí $ŒÅ÷žü§ÁaØ@6ê.“ÿÙ›,ìÑ€P‡ã´ÎoCSUGÞ™õ>ùÓl †Ñ««ï™³y¿Ü€®†lEuèŠÈ(²Ú’Õ®]±u4M•¦A}âöþ…å¾È®^%£cGrƒ:[Góî9™^þ4á­™0s0:w@qží aHhÁ¶.‰‰øJA„Ç]A¢iו…kï ñµ{u 7‘¬D¢iT¹^^8<ÀêWÑߪ/j ºNz«–Æ ï!Ý.otßìöü…¦z5Òf"ðF²šM{ã5éoØuÏ``º ³zÿ‰“-GfÆ“?íÎðös6ÓåÁ3ÅŸUo©¼g.¦92XZ’óT(ånèÊö… äþ ¨œ·`×ÎÓrÊD3ÑÍíGA„ò+:GÓÉ©e‹‰n7…&Å­Òªžk×¢øüd<'³ XÛ:0¸I3¾Œ]Œæ‡ŸÙí½›º ÐvÍ!FE]`Ö­xÔm¿UçòèhrëÖ!"-–)§¾ *ïºf1«î'ôþs7’ î%WÜðvýgJL2Ÿ4ú.áEV—ïíÂË?®)²í>3O¾AÓso¢iÈæâòÁ ÚЂEûúá&&h>ZÚL~OP2ì©Ö|a­'êzŽÇÒíÓÏØ½g$ƒÛðjîIü¢¯"½qƒ§ŸÈH™’Ç­Äö-WV&üÀ×G7 ïʺÀ-øÛÔ¢´\¶”¬¶eYN*”$¼N~ò þÙ ÜàfìïÒ™c‡&‚ dîNG­Ì襲=Ö”L÷D 5o>wëÈ5’~Dz#3ÿÂ>‹åôµÊeoÚ;8¿ðjáv%­Ê/¼NÛ >â»Q#Ž ”.ƒˆ¿Ö³>dëV§3?fwÑUÙ†LŽ}Ø‘Îó\Ø\ù«¶ó¯oaî§;‰×dp32“:£—0ë…š( ™\X3•i«¯¡pµÚ•¾óñf ;$•‚ ˜…‚DSŸÊÁé}xqm]–îÿšç½îlEÚ!M*c~¾ÈI©-cz6àк¯yº}ot­{ €ž‹§ÎëZ“:fVu;Ó=‘ÞÛÚ²£Ïa 5o"‰®NÝm‰¬Ëè=ïciͦ xÆÛ ¯à±hBö—º:\„'Œ&‘(m+Þúȃk—»IÖñ…Ì‹ïNS›¢7R¨ rÏîŒ_Ú• ´‘K j÷‡žú™ÎÒó¬ÿ]ÃÿÖlb@ ÙÇ?¤ÝÀi´ [L+±æAxÝ^uþ/³g#c ©¹–!´æ›Øý öŠ;=JrG– m‡N›ÇñóW8³$…­=¶òMãooo 'òòeÞ»nä§œp2j°åg¨y“}Ó{[[þjN×PÆ ÞÃÕz_ÒÛ½ S¾ÂÒÂ’\Ì~u¸ UÄ҇ªndŸâ‹Igè¿ôÖnªšDS¢°AhÓ£9ºy'©õúPË·áãm ·“Û;c™‹\}‰‡„ÇZA¢)êx™ ™’6Õ‰Ï8Œ§mjXÖt\ »Äø+J&ôò¥“™~;6Լɉ×yno}&¿¶’¨Ö›ø¤á4º»Þ»‚úqX.£–CØçÁìè°”?kİöauO1õb §ën²¦«ÁgÛ0ëè¼ïa2dœdé›ßá5õwÚ¨&A0_…Ë}t {˜Ú¡:*‰‚Z¦ðW¢Î˜q=™´é|}2‘K¹z4Ú<’ÀêžxÖû%@Ç™Sç ¾¢db/_ºY›ïlydM‚NøòÉÐE\ñÙθ˜ŸŠ$™‚ ’¾ésÃ0\\Êøà%œSŸcÙ„QWà†½·;a² ùdŠ™çiQanqìÛ¬xù3Âòî4icÿàƒîC82àWVôEŒ OªÛ‰f‡ÞÉÆ€\R_eYÀ/¼õÞA2KÙ9ü‚y¬B1‡83Õ5@fMuŸl>ÂÐ¥—HÈ Ã-‰¾Ží@“Î7ç2ÉÌLàÃßÓvÍ!Ú®9ÇŽœGgmï’êYñ«Î‹…:/êܸZBÛ¾ëôý=YÃ?á`‹Ý<{ñ :-°åÂvu¥Æ™ïZ©Ç« 7¯Û;„2ñôèfìÊ$/«èÝ•L9¼™=»^lÌTshã·|µ4˜FóùDªæË¹…• u:´Å%í)YçWòzŸ/±žý7ë†ÄñN›áìͨ’Ó ‚É+:ϹĖýö Ùú^ö ÜÇ Ã®ßf.åt¢å†g£Â¥ø×7ýžOsˆ3+݇øñc€²±VŽü–ÞnÝ‘")œ»il^^]ˆŒÚ^LKAñõ‚¤òþêN›Ç9?f ŸÎ…zçxñÆ@,=Ò¹ü®+Šc1•Zû25ÉgwÓ¾ÓMüMª×2ýO7×vÄÆýeì0J•Ÿã…Riì0ÈÞ‹Ì!ýK§­âJz$aê0VŒÍ.û¼1g ­ ¶É¿¶9ŸüPÐþÞ¸Í}—Öö••lêI;²”™K¢–HÎ$hùrÚÙ™{Óñ]Nþ»ßf2î§HvÕÒ_ÌÑžP‰¦&‘µí< :÷õpN[MR wŠ —~3ß³UŽ·¿Þ$ß<Í!άtÏ‚ÞL >º*»Xl¯Ü„köTßͧ©Fް€—WWj{Üo½SÇÄÄüMdÔŽî#×h¨{ý:.j5‰ŽŽÄÛ¶dw§%\ò½Æó· 7Lhªèƒßë•3G85ɹ°73â|Ž.É&—pÆß´)ìÍ×ðÑz‹1¯ e`ÌÜ‹¶,×mÈ䨔f¨d=Š^³ ˜¨‡*Ø.<¼¬SZnÍÈů‡5¬šÝd\?v§µ «±£+?°[ïDtÀfÚ¥q®ž=®©©„׬ɕZµD’)ÂÃÓ$¥mÅ[¹spí’ûó‰X2€¶?Ëú?ÒØö•;”uöñ[¬_ó%o.^Iè™´0ŸAgçñÌ{#iøU.oÎE={¨7g4›~ú’ïõ¡ºæ“‡þˆÿæ#Li¨ íÏ4Úòš<7eß|ó%#&õÆÓ<'¤á²\Þ˜=>„pì—/yó‹å…·³ÔF.%¨ýD:_YG̓/;ëøBæÅw§©Íé‡úï„G© GóvÁöº÷l((Ø.T©&“í ’ÌÛ"rÂñ±ñ¦åD#FU6¶Çš"‰®~ÏsQÑþøEç¡¥Ò0£ç}}ÙÛ²%ç}}E’)Bå°ô¡{ï¦8+ŠI"sαrÉU긇ÐßÑï6Áü™Wt»b(ÜüqH¹H|i÷Ðç’ž“ƒ:9=ìÛÈʧк”ýî¡#;1œ½k·’àÓ†ê¥MÉÏ>Å“ÎÐ\;ìL«ê –¥œCÕ–¹[&!ûæ5žëÙ‹¾C–r£v3Üÿ«=­ÞÇK T*‡ìWßµoa›®n è·À–ëÞÂïu«sû<˜¦ñ| ñ…]0/‰æÝÛ¡ÌÛ…Êw)ë"õTæ1?ÓPó&;ú¦÷¶¶p¢¯okÎÊA[Hµ‹£^†y$Ë‚ xv.Ôéš¾ésÃ0\\Êøà%œSŸcÙ„Qâ?J‚¯F· ¶Z´›¡ ›rfÑjÒ:~[jÁv¡òEæDÒßí9c‡Qf†š7ÙÛæ /ïM‰WðÌ„±»ì¨]KJØCA —þ¥ÿ¿gðOבãR—Ý={pÀS‰x›ÓtæÌ™rm¿eË TEÑ”ƒª/wÏbÝá$^êïFNÔ)R<š=xhÚ!ˆ Q{ çM ¬I ·ö†eð|ÙᇉóhMMK ë0“z-bà‰Ý¼ZS†]uO¬%Êó†&µÄÙ¯½_HÍ•û‰Ï‡z%Åh׋™·»EÓBˆÚö%c>ŸH } Û ‚ ¹ÝoKû¹+xî¹áÔµOÆ©í8¾ßÜ‘Ræ% •ÍGL溅w¤W ñ“>"¦ƒ †ÌýÔï4;ZpyÿW¤šÀ $‰®NçÐ:Hh@„;éГmóTDÕºk#M,í"•ê÷«õT?µƒ×¶&rxgbÄ( ˜$KKK\kU3vÅ2¤cé´U\I$LÆŠ±£Ùe߀7挡±µ]ç/àLðH†übMN’5o¯þ˜ºŠb”w™Õ}UpŒ÷¾Àmî»´¶¿=åGYàïÞä)/3ØÃ 2d¼¶rJA2˜ Iûfápn:‰7tôû~mÑlþøkÂÔa|;-¦6ãÌüoS‡±rê,Žæ¾¯\G^–š¤ØÚ/YB[ÛÒ¯;ÿÚæ|òCññ ‚‰*ü˜·pïÅœC±Ì)f#•¤¸¿P¡Òé¯ ÑIÉY¼“P×|¬þ\DÀŒÅ¨ŸEºM'.œ< ™û©ÿÌÏÆŽ(H2{okËŽ>‡yù×N|÷¿Ÿ©çJÍQwo¨¨É¦Þ5 F6hHüñ+¨ÄÝøA¨‰]+‚·`ɪ¢íΘøS§Ò¤¬Ë°Å;¶¸¸F)öXý÷„¢Möϲ=áÙbùÜÜm<7÷ÎcÏÙ!Ä̾óøã¯K«$ Ÿ—˜ñÝKÌø®âÇ„G­L‹² ù…ÿ„*dcKu{Òj¨0H-0ÈèÜÑ™h¯ŸM¼+;úÆPó&×jÅQã‚…á“{ jœ>SõÜs€AxÒ¥…ð´äö¡bÿ‰š™‚y3Ñæ %OÆKfIýæ­ †ÈˆY³Œ,íPÎhuo-·(ë(z¤ÔGg‘Xü gB~Ùƒ/ù“!F|AxÒÙ?Ë¢GxŒ‰òF¦D®ÆÕº!N†úï.¾ ž3~ÁÊ ê™fYf‘&OÃ#Ç¡ø ùxÛÌ[Ç­øýÅî„©D–)‚ ;‘hš‹ œäN€ƒu5Ò^z‰œØãX–­Ö°Q]®y—|×âkgrñ9ô+£Îز饧8m+~íAáI †ÎM‰$ŽÚ{PõÌ#Û2»_ÖcåÚ‘ÜÒîa.ym§Û‘[|¾~+¾K?¼Xõö@¸A¯#qXÇÐo.ÜÞÓŸß|™ã¢gSA["Ñ4% –ª›øöëˆu–œüÆÏp}îËäÈ)Xm^XÞì:µÆ”ÊŸ)H®ß• šÓêÇò ŬÜÁd-\¸ÐØ!‚ð¨P¢.%ü‚EeÇRhÏVÓ_ŽÜ´étâ£+ù ¹d×_Ξu-ï}> ñ[ŠIÖRnÿ{€NTR€%[¸;ˆöuÆÓFÙ¯BûGœ¨äˆªÆÉCžÆ¡Lš4šV¶ ã>*û¶•,#© ågªpÿ²*Ïû‘1ß»*ûÜ_]þ:<—/_®ÔJ¤Ë â¯õ¬ÙźÕéÌÙ}§ØzZO»Äâå稭CfCœYsc3=ìxÔûh‰Ý6“‰_E r•’|KC£w3õOÑC#åP¡¿o=ÞþUSqÏV9=ú™þê—ù3çر]åÔ" Û‹XÊS+í¹=8ñÓJ;^IâãH¿þ'çuJßø> ê}`¯¹¹ünîÙ*çÊÕ2~¹PQöm+Qß‰Øºì¯øâx¸ýËqžò¼æÆúý0—ßÍJ£I$JÛŠ·>rçàÚ%÷¶ÉkÐýµqt[0™¦ÖRC²?{ÍËPýY‡˜úÖnÚî;ÈÛ>24WôÝ.ý@GEs!Ve˜R‰y½$~—.3|ÙrrlÂyuõFü.=¢ Až\–>tïÝgE1s¼­›1aùdšZ†4Ž®½Jà˜ œË;\áEk¿öü~Š„”(oÚCz@àƒoe)BeÊjî.+T>×#¡ŽÆ)_M‡É3p=jìÊÄïÒ%®^ç¤[ð¿ËÀÕ«E²)‚iH?Ê/QÑ®7—×fÄÏ pšÝžÚÎuxú3¦¯éÏì“"î dd®GBiþá4ì/_F'5àt%‚æN3‹d³ã_þ¬±¹®èó‚ Æ’qì7nõNë 쬉`ù PO?LdZ û§g1õÅ¥DˆAA(ó§} ù­ù±ðç9…ÅÙ}׬5RDeçœpç@J-Xçÿ÷|‚‘"AøO§7%Ñ{píοÅé(Gº<Ý7;w÷îŠSÌbŸ ©°‚PÄâ9#SEÇþœ/…¶àg›èÊ^Ò^ù’ÝÜð¼q€| ÈT‚M$¹»92Ag†ôc,¶Š+é‘„©ÃX1v4»ìðÆœ14þ¯÷2ó ;2ú1Ú·‚cݪvÌ^Ñ‹wGô'´š ·4ô\±Œ¶ªJ» Ax"ˆDÓÈ2kÖÄþvI™þÎtf­šFެtºucàêÕXj!W^hèÖÝÈ‘ ‚ð8“ص"xq+–¬*a#›|úc‡‡8‹ Ï>³ø¥ÏCB1tnlW‡¾Rø³*²o¯·Š6ÔH•]D@]~6Œ[^5°Î—YË“ ¯ãjÝ:ÆMA z4,1° '?™…ïk+¤ûûquÐ0’Z·2vheP—ˆ€ºÄXɺaqÓ¹;$AAL„H4M@b`Û`ytûæÏÀUæjìÊÏ GƒÖØQ‚ ‚`BÄй ‘$0;ŒŠÑ+É“ä; AALˆH4Mˆuž5Ùúlc‡Q1ZÒ¤jcG!‚ ‚ )Óй¸#Уá˜áHš.ÍØaTL¾ É6)ÆŽBAR¦Dóî;‰¤³êØgÙs5á:ë®(8›kÀJeCßÕê.ÃÐçg±êØ ~MÑaïäÌä–î´0•ûîj\H•†; Ažº "þZÏú]¬[Îü˜Ýô)¼Ë¤–Øm3™øU*W)É·44zw1SŸñ,÷¢]ܦ¿ý±v*rÒ«1léÇ<åaQÉ#71tnBì³ì9š•àvuÙÖ»Ÿ×±àÏÓñ„it„]¸É>›j¬yÚŸ±6é,º˜MޱƒþO¾3)RÑ£)Â# I$JÛŠ·>Š·Å}óÚ³1õ­Ý´]ò#ßü°Žõ_µg÷¨8œYÎsRØ5f,gû}Á7ßË‚¾§?f'©f:^ŒE$š&Ä1ÑÆZš«¤XH$È$” 6@§áß zúØà&“ÓÊÇUJÑ:cG}›Æ‰›’>Œ·æÃxK.êïj“@|®œo­ù0Þš“”ìΓ /ñ`‚ `éC÷ÞMqVHж)¼hí—žßO‘ÅáM{H¤zyG²Ï³ù¸ }:¹cîA}p>¾‰óf:^Œ¥`$!-„§°€ 6¨÷Ü5 !<*ŽŽDh.29äg¤Ö¼Ú±¾€VÃM”†Ê‚7V™R&‡4Sùv­µG!Õ1Ö=…õ ÷¶é-8žr.…Ä<9«Óåø¹äãSÌç„ B…Ék3âçiØžÚã§çùáì|Ê{'Jm:ñYÖ¸Ú •[غc•G†¨â&åRУiÿ,òÉRo¤“C){U¦FR buÉÌ{¶>ÛŸöç?Øt*™3éúóÖÖ&Rv­hƒDÇ3vü, XHÀ r‰+‘d ‚PÙ4,aê釉L‹aÿô,¦¾¸”ˆüÒw½‡ÌwU6‰ÃFÚŒxrTîØŠêÓ‚P.5t~Á<&E›CœÚ<<“=‰ÓÄ`!“ÓÜÛ¯Ülbõ€DNu¹žè<ÃííóI—+°ÄÉš»[—Ûjk½‰”_-¾Q/ãÛxk>Œ·â‹4 Í´xVQŒ`¯¹9ÄàâÜÉØ!”I^Vmc‡P*syÍÍZþ-NG9ÒåéÆ¸Ù¹Ó¸wWœbΫ)çq¬ð\Ë$¶H@‡Ž„½!$µxžÖUµ <¶*ÑŒ 7)žæ§6ß›êIÕ¹™Kxž­VÃ騢•ÖxH 9íõì¾–I¢VÃñkj2ì¨ùˆ?·\œKlóÖÔ&JY|£TË÷f¹å2ܦÉH¬¢Á<^ssˆÀÉ¡µ±C(“ü/c‡P*syÍM!ýKÞMðØå„©ÃX1v4Ác—q6PµcöŠ^ü;¢?ƒÿ÷F çŠ9´U•ó$'žZö 7¿ËÈ×^cü–Æ,XÖ G1#åR¡A€¨piá7ó=[åxûëñ¯o*«Rî0‡8µùÞhóü°Ê³Âkæï%:×gGÞh錗À‚Fõ=éxì&CþÐaçèÌäVÖX=¢8]œÛâîÖ€õ> )ù0ñ {ïÙ¦š®iÒ4”Y@q°©Ä€Ÿ•×l)zp­äÏ]sxÍÍ!F'Ç6¸8u ŽïDRÔ¡$%0rTEåçxöff$uBaƒRUÂ#1—×Ü\a‰]+‚·`ɪû[exö™Å/}þ<½ùdcï‡? <Á*”hzûëñö׳g«œýÊ;ñè˜Cœ2E2E¹=ð²¬Æð64²ªWd[©Ò†7:ÔåG$”|˜¤äÃ4¨÷ç/~Zì6$ÔÖÔ&Iu hp§Á`Áž, õ­µxH$DeËHêqª‚Ï4sxÍÍ!F€”ÔPRRC©ã;‘+W;œ)þÏ¥ IDAT¬bPXÅ‘Ô [—ýƧXæòš{û›É„pAÌÆCÝÈ¿‘Çâ”)ÃðQúr-ï*¬9¢âÝß‹y·oã­‰´kv'Y{£ ç×\êIuÔ·P°)Éš8ØÉµ\bÛ÷lò$>ÌSýÊ$¬ wfÍW·Ê'ت¼Ë>+Î^ssˆ E}ÔØ!”‰Â*ÆØ!”Ê\^sA„Êroy£{þ‰ZšBÄr=1ûïfóUúr19œˆeæù¤4(i iÈ åqc‡"‚ ‚‘Î’Ó%ìaj‡ê¨$ ju˜Â_‰bˆçQP6Ôã3Ï©0Ù”ó"›X4zt½•-07#Ê#èŽAá‰v;ÑÌàÐû#Ù°‚Kê«, ø…·Þ;Hyo +”ŸW'×&§à3Ï €ºs=p£:ù­¯9²2øÓ—¼+.÷<•wÅ…j»:â¨wâŒâŒ‘AÁ$š9—زߞ!ãžÂËÞ‹žã†a·3—rŒÝ«“Œ }S1gú¤Ðܵ1gsL?IË«™FÐúF…ÉfÞ—‚Ç5ÓèžÓ¬þ½š‚ T>]»W2;øêÙõd[ÚÝzRÿÇNÝy¾_žî7…XéŸÂÓ–žô>šàQ£y{p'<ížcOz)m‚ Ü£`1&‘µí< ú(<ê᜶š$ <²BO°˜ýZêÿîĆÞ7èµÍˆæ 9Vc7/:4vh¤¬“ľAçZ߈—[ÇtÔ‹}ƒÎ¡¬“„·Ö'‡-Ó>·½±Cáq¢I$JÛŠ·>rçàÚ%÷¶åœ`ö«?So˦4T±=F¬¥é¶áx•§ Ÿ¼Ý_G·“ijm 5d û³‡ÐÜÈy@› ÷0ê¼±˜ýZ|æ9qmr -ÞV0½ïz|Þ‘óçÑL¿7PY'‰C£¿Ï‡¸iXú%¶õÉy–}–{Éf1BA;–>tïÝgEq·é1`0nÿ,AîèLnèV.f—óÖ͘°|2M­CG×^%pLÎ’RÚA¸GA¢)wÅÏ!…Ëq Pòã.’lܘ¡=ò¤\›œ‚W'ŽJîí¥ü> ‡lWÂóÂ^©ò®¸Ðî€7û;Fá{Í™ÀpˆvÀEçB›¼6l±Þlä(AxbXµàÃï^äü»ƒþúÛ¼¿è(铦嗨ΌhWL)–µ ‚p{èÜ*€~ÔŒZ´›¡ ›rfÑjÒ:~K€6¯r~£¥Üݱü¢Ÿ3#c®Ò¹ZKB³ŽPײ®ñ‚+Ås2ÿ.ßá—B÷uMh²º‰âïNºðµí×U†Ò:¯±CŠárb ÝwÁK­#ߥ.§úäßzvbv­`¦,pîü!ë:HÛ9˜íç;â÷ŸgÇ~ãV¯`šX—¯M©fÞ.Àºö€0¨'î3‹ÙcÆ#‹í‰ä¨”ÑÃËÿ³wßqQ×Ç_·ï86ÈAÅ+sïmšÛÔJËÊ-›¿RS–Y©ieÃ\ Í•«¹SÌ­¹QTö†Üüý (2„«Ïóñàñྟï÷ó}Çû>3%¹>§œ—1ÒkTE‡tWªh·¼$rºÑÿ|üÚH²崙݆sœghãÇøÆu¾V?ª[ªWpÔÂíÂ/{p`ü4VºZð:¹AË7råD«*:2A¸?¶´æL9A§©sK7>³€LޝI¢÷+u¸óO¢¨2A亩ùÖkü¤ø ´%L-¿€„›­š;S‘…¥kŽÅ_á_Ñ!®käo®ª°$,aIœbšÆRom=ŽTE7\ÇϾ?ñ\æ¼l^í“DB¼Nʺ4)—¬ QØèêi¥­r{w ésªUU&âՒ-«¸¡8öŒCÌŸ²ˆ QœJ;Å‚WƳŭ>Ï͘@¸ä$óßø’Óé$eºÑêý-ÌïYåÞ'$dà÷Ì~Œ-d,YQe‚ ùö:·&lcêÀ§˜½/ï6¯óÃÚ÷éREü·©9­š57&BÁ@÷Ò=I J#âÅ‚÷óÔ¬QØŸ´³°Ñ÷ŒÉ|w›{E‡÷ß`•a€VÞfž’K¸¡“²8YF ?+Õr3Mãi†MZL €¼:{_~žø{ný„ò'qm΋s›0oÑí¥á¼0ÿ›²»™s[>ZÖ¶ôe‚ bÁöJkHM/âãë²3cWE‡r_ìR;Q¢ˆxáwà©ÍO³Pó= ²f3~¯CñÙldë7‚áo5^¡×įÐNü íÄul4v’•¨›¨öö6Z^:¶¬mlþ"€I•Ìøâ.e•r7­Å|Ÿ¤6ú{Yi¨¥ÔN°ÖŽtö|ç¨ë³ü³Y|6ãmVv†‡–ÿ…§ØLA(bÁöJÊC%§§W ®ãˆ6EWt8÷ÍàaàÈÓG ׆3aÍ–(“‘t„gçÎ%ä÷ùH®]G>ïK4áM‘¿‡ÅêÕÁü1{<ºzÓþ.ƒþ3¢ñT„3ãëjÊ`]¯L®nÃ?> xã£HøüÊš û(ÕÆ¡%ˆ¹LI$\Ï’’ª´PÈÀ¦òäj›¶$§Eâ~ë[ ‚ ÂírþÝÜ\°½vÛ/å,Ø.T˜¡5«`KˆM©[+:”2‡KÞØù‹}ãí¡ì›¾ÓœÏÈÞöæw'£:üÞ[6ïÂ’vV¦ðô“Í6˜¸ï;ó9N_v£YǸ« ë8 Õåµ$TÖ¿‰„øL)KuvxØqÎWÔnÓ|3ÍȲS Ú÷Þ®!¤‹!g‚ B ¶Wb*9´]Ùš¾ û¿h±³ÚB˜Ûe6ýL„·‰iÇ[pþô9,O>Ž-0Ù¶íev?{v"³–$``Fºgs!Ë^üEű&’dð¤ŠK·3™K]´†Kè*c—³®§Kù&úúX©ÛÐë îéõñ;¼úÎLz_ðcדíHóA„23ä?ÿ‚í^J±`{%2:4œ]\8u`)}¯9£ ©YSl*Ç^LÃ#9«—9?BL†…ö»ÚÑìô@~zt&¾á ‘^¼xÿ­Ž6=ëWïâØCÝù±¦ iv3­`™Ií+ôú’*ÍûQE¾w9Âû¦ ÿ=71q¡ÍÌ ð4µÝ’ñl5‘Ö¶+0Ž+¿àZ6‚k•OWî¶u ºõ«¬Ýn™5}ã^}©\ï!1ðœ8êßåÙ4þyº?­ü§b]¾‚v3“±»Z]d;<8z|Z¹Æy/R3ã¯úd ²QkH8ò=£hŒôš•mÕöóï³´>ñ- 3k#·—f­ éVÎìì›GºË {¾ò•VšÊ"ÈÞÁžRÔܾݧ9úîÍG&¬–h ÇG’¤öÃj\Œ‘G¹püÝ"ë(”MI¦UMä±w‘—Á`–fMßã÷?Ææ=n}óë–³·ïäw€&8÷AéÝk~ûb8îïúRܧ4ïGõÞå(ï›eƞř¥“™²ä2JHK«Â£ŸÌfl3W$€5îw¦¾°˜XW-†ŒªŒšÿ=üJù)ΚɥíËY¾a ?-É`Öµ­ôÉÛeÒBìÆé¼þõ%´U¤$ǘiøò\&?âXL Êû›ùödÆþXfr’V¢|€! ¹”Ûw` DûÔ(š­=ÁÛûg±kЇ=†ú§_PîØIvï^æ=1+¬xlC]‰-²+žòTü’’ðÈÌ仾ù®‘±×ãû½þ¢IFC¥5BkÕQ£†•Vo®Ý|tÍdÓO–@h¹<%RuäúßÈÊ4 ‘µD.Áj‘ “—p÷#›’¥Y.\½ùðj–`f¨sµËyôtÃèhú>Ì·Màí5kØøÐCüT¾7„²¢?ÍòõfF,]àjrô‡'Ñzè:5—æê¶Lx…“ýw±öI_â—>J· ›ùkÕ#x”f¿ss"W,Í÷®/û~œW°L·ŸÉã¶Òj÷>^‘cŽœK‡oÓåÜbÚÝ­…Fþ£JôáKg¿µh‹H:YÔ,õëðy‡×è¹± q1±øUõÇR¿>²ÈËáý‰óõã«qcénoIÚ_Ÿq1(ˆ Õ«c–Ëéo„˜˜~lQX9í±‡cÕ¢¯AÝŒºª#µßž‰"»Vè}î<¯lf´K$5Qk_'·MÙj¹ŠÁ° fpÉ’M©‰‘®ÉeKi„_½Ê„Í›ó'&òÂ0¿W/‘l ŽAÛ‚÷V·È{¨póBmŠÁhô§Y{Ø›>Ÿû"C†o‡>xMYÃiý#´-ê³êíÔ!tí ¤ò¾¢ äáš)ü¾þCGVáÜšmdÔéC€c„r!Zù+1kH ”Ûþ Ì3€!‰ƒ˜½ñSfŽù ùéÓ:´«àïŸE® ®q_öwßQVUbb”Ž$ôä`bLnûˆð:ÀŠ?Ë £NfªPšfвaÊÞGvöŽBËŒÆ h_(³{)ÌfB/_Æ+%•dOO.…ÔÀ¢¸ûx¼«‹ ´×Àä•wLW÷?Â#èsäH¡×õ9|X$š‚ñgeþØ…N^O -žA¼Î‰*.9]å2_4º82-exSE žýåS4hC‰€ç@Ÿ|–1LVî ÍJÌÔ¹ΓÞE½|ÆañrWéøw[ÞY†×õ˜:u¼u²ÝÂùŽ3iÛyö¦[q÷­Î«ýZÑ0§l«†ßôjÎ[%¸È Ô¨þàó³R“Í%™„!g{j̩验"Õå$;ªì@/Ód"H_ }.——RÕ¥ªMc¹-šjuß2»_\ÃV®"ÕÄ*U¨y‰žÛ¶±|ð âüü ½FQǃs;°¶;˜ü¢PÆÕ`ÀÖ¬î‘óó2ÊÒ¸ìsî‰÷o]矖Vfq ƒ`‰ýƒÉý_'jÔJ–Œ E wÅW«'1Ó ž2,™ñ´¾¸”å;ó%¾üiS#ˆUk‹ŸeÄù4Ùõ 5E§Ÿ  ÍJ̮Ѿl1n#ŸFýórœëÖed¦ód1m鯂L‰,¾ `ÔãƒXâiãäß{õë ¦„wäDèU˜”™¼¦²‘–­e“AÎSNå=Ñ ¥‰œ·;±3;”SUZÿ3­ë5åÅïݨL.x%ס¦Â Ÿl¼L^…t³ß;‹å"¦ì=ØlIH¥Þ(Uí‘Ëk`µÅÛm®Ø[cÕTd¡qyǬ‘~¨ox`n¶à¹f3ÃV®bg‡öœÏ;ÞèäI[µš/ŸSh˦ëÃ|;x.µ"«°§jR¿K¬™<Ÿ$ת%Uã½^ZG™yè*4º~ëºX{ý±ÂfGwú{Æ\CèÇ;ø©åiƶ˜ÅÛÑѹ>J⛽ ® Õ–è –Ùksc›o6X«òäÅî4ô‰#+Á—Ÿ½SðQžæªÛ%y$C‘‰w¶>Ù>TÉ®‚›Ù 7³;®WdöÒÍBMNÞˆA¿<ï±ÕƒA¿Ó0äòZ(•­Š­ÃX5•.kš²}àQd¡qX#ýn=¾íÜš‘—IswËK2­ØH‘øµIU’3œÑíædU²¤Yèdi©dËS!þ3$ÍܨL·P%­1í/·„¤*IԻ̄]ÜÛ†fÍJõó„ “µ‹ í^æH˸®šÎÄŸ£ØrÒB ñ¤Ç—sØ7áeÆìРK çÓ¯z–n"`Ï8Äü)‹¸Å©´S,xe<[ÜêóÜŒ „k[óÁ‚ž¼ülþ®êLfŒ™î ¾¤UiÆ€ „H4€]­&»WO¼m0ü… LóžÂÂG—Üå 'ÿ>ÃõÀpBäpYbÅ_"ã˜IN ¥4“’vÐÙ¡†7Þ76ºJS©'Ñ±ÕæÃB%=bBøËÍÎãI´>a€Yj&Q™@¼:DU"—œ/‘®H'Sž‰“U‹›ÙW³+j›UÚªAsóKmS£´å4O(l ÎEOÁ(•õÖÍ" ó.œ”9i¿YbÆÂ­Á`‰‹äÖcsÝh¾}ކÁ“§kæÓ1»°¹d`¶˜1cÆ„ ƒÌÀoa±IW/À 4 SéÀêŒÔêÌ™VfT–k¤Øk¡1{RÍ‚»Í O«-jMàÒæŸ±µ-Û›¥Ë‘º¬í¾;oÌæ?AAÌïÕ‹>GŽàŸšJ¬‡š5㔟)8 çN,NÑ84oÑ­ïe~½ùpuïûº…ĵ9/Îm~GÝ9äø÷yŸ_ûÜ×-á?A$šŽF /4z‘.IˆHØO+Ÿ‚+$b·rþànž:åÅÇ£ƒp?`£•ÆÄj½+Ÿì(Íh%1…¦lU•˜©ºÎŽÔ`~÷5óêî†+Y­Mj#Þ#žëÞ׉÷Œ']›Nº64ç4ҜӈÑÞ Ý9£Ò€Ai@¯MÅî&änb)·ƒÌG6_æ°+ ÿºŸ6EαüCäìòÒÒ ÖS€·d5ÊD_”(QH(¤ ”%ÕR/ÓðêQ¶wT%E¢–äe¸Oý¼Œˆ-8¯ +øÄ¤àvÖȈ­mó’˵^ ØzkÌ&ä$›bâ ‚PÞD¢é€<Ÿðæ•a™äý?¶õ݉Lr³ÓÕnæÄ_;qHËŒg[ÒËEBÄÍk4rO¸;³3_Y-¸;z¦ ü¸ª•0䆒ï[D“Õàû~O-ô¸RÕ¡Äuä“iisŽíÒeMS¬‘wÆlV(X>d0÷ìå©e?ÒkËžZ¶Œ{ÿbÅÁw]â¨úSÍ ,m9ÉfBxD¡ç ‚ By)Q‹¦X¤½òqëΤ~“íù4=ªõ$X!ç“Ýɤ“ÌsŸFòÞ¼Ôzîv%KÓµ\X©«ÊbÊæðŸ2’Î #+¯Sëǰ?’ZÊcL¾—×#hœ†Ý6ë¼ryÍסŽñÈ› cûÀ£9³ÎCïlÕŒóõåËçÇ…wr —kÔ ²FÑëh ‚ Be!vrP²jrj6¬É¸ŒñL<ðkº®gÍ{#ï8/b‡„£#ÝM…ÔâØ‚‚.ÝqLëW.If.¹¼VÞrF÷ÂÜîì³Ëe¡q…&™¹, çÃÂ8ÏwA„ŠáèZÿi.ÜðÅL6 s»ÐAA* ‘h:0esrW9³-s™}úsN¦œ¨èAÊŸ=‹3K^aPçG>èQzuy†¯dä¬aÍäÒÖïøàÅÁÔuíÎÆô"êÉ>Ï’—{(ñ§ÏSÏñDçž¼µ9«å›Þé›s|Â7œM=Ãwz(ñ§ÿ;¹a±‘ñ9OwëÏ“dôÈÔÒvccR4kßê“sÞä߉5ƲyrN=ý^˜Ì³ÍÒoÜWœ6ܼ¿á Æ÷¥Y»÷8i("ÎÒ<'A¨dD¢éÀ¶¼rž¤¦6<¾s㣇>ṿF³gå6¿":YAøÓŸfùz3#–®á—ÕëY=Óo†Ná°0'rÅÒœqïŽ$Xf/ºUmF½7Žî ;÷;ÎmÅŸ/Íâ¤%€GÞ“s|ÆóÔõ¨Çs3ÆÓÀ½ϾՇó1fŒ\F­Ù+XöÓfô Û(‚ðÎó9ç½Ñµ?=ßȩ繧1y\F¼ó<õ¥çøvâµpO9K|qCÚmF2 Ò’õØàÖfß-{‡fEns)Ç£šœëIf '—²lÓbÕaJº2нè ÷ñœ¡¢‰DÓ5Rã|gL:+gG]ã…×Ç×8‘ÝuªèÐA{æQæ]HàäÉ´¸™€v‹ŽË[VsµZ[BÔÅœ¬mÅÌßÞ@þíhtïÉ£OÎçz&øæ.‘¶›ÇÜ•h%J´îƒØ“–sXéáJZj*GWÄ1úËa\ùé)©xzªî=pA¨äî+Ѽx¦t{EWGˆ3:²¨~“»k6¤*×FØq?+áhïlÖ\ů—W°úÊÊ2Ž0G@Õ®åRoY«üHE‡P¬€€nB‰Ô®= ¢C(CfõŠ¡XŽð^äH,±ðv×'90h%KÆ„rÏk¢¤íf˜·áodòÌ‚qÔR9j¹•lËÍ®j«»L™³j„%…ë’.Lúq-ë¶nä‡q6fúçîŠéÞi&tvº´Õ´wÏ9¬ð®ŠéÜVVg>JŸÃè“ø3[Ïš¨ZE,W&ü{ÝW¢yå¢c4ˆ:Bœ7®÷ºpGVÆà³ÒΑ§<¼NËŒigøâá…L92‰¿”q”àëÓ¶Ìë,*:„bùù¶«èJ$4¤GE‡P"F]@E‡P,Gx/r vt§¿ã™>_àôÁ~z2Ž—Z<Í®Ì{¬.71ŒßÊÛ-]svzUÑÌç»Nebt#ˆó{˜ 5 ‹àž£YyÍÈq ðÇIbÅ^ÌðI¹GUÒ—/Â:¸#ÞÊz ÉbáJ=¾®âˆðïuO[P^¹(Íûd¾m‚àZ6jÕ³–i`eÁâ¼qUך±Ãƒ€êF‚B‹š~xË‘•1¨^Ì"{ž3†Tå`ë<ý’„Ò"yáùOxzÏHÞvþ£LâôõmK€NkfÓÆÓˆ‹ÿ‹˜Ø?ˤî²Ø™Á½hßîS®]ÛAÔ•ß+8ª‚ü|Ûåµf6kúqq{¹³­‚£ºShHOj×î@ï^ ˆ¼¼™óç«à¨îdÔäµf¦ÆµF­½ÆåjGU#¼%ÂY»˜ÐîeŽ´ëªéLü9Š-'-ô·=ãó§,âBF§ÒN±à•ñlq«Ïs3&~ûÊìó,y÷ëœóÞšƒÏÌ—yØíæ8HU]^\8–—ÞÎã~ž)gôwïPWA"Ig÷ˆ0fxÝJ¿¾¤…2šµï}é´S|?ëwšMn‰Yßr*íß}°’“ƒñ7£_kw$@•®#©óåA<ŠiŠ-Õs„JF¢³›ŠÂvû"í¹ ¸o[§ [?s™ä(uΚ>ƒq¯¾TfõEìð UçÔR]³å•óx·q¡ÙªyÇŽ¬Œá¶$> »@“: ìËšÇÐÄ~ø™ýË$Φ§qôø´2©+{ö¾^¦u¶o÷i¹Ôyäè»eV_³¦ï•i}ùëýý±eV_ï^ Ê´¾Ü:=üößóõŽ·awã}Ž¥Æµ¾¯:ïvÝó%Ûì@+QØÜ¢0åñ^TÖõj%J¦M›ÆÔ©…o¹Z”óçÏS§Nb­$¿+AÊæý D_uvSÞW~•ñya!Î’¶bæ×cNíI&äŒÙþm8;Æ÷ÅžYuâ~rÿ…xÅÝwž)1•¯³0QQ›*:„bݸQùZ1 sþüÚŠ¡PÚ-_Þ¿#í[¶¡õãïRçú?9]žY{ oÙ†ö-Ûоå xeUt¤·8Â{‘ð€¥o —äæÄ¡B¿º‰u3‡v_ý$ÁµleG¹r„8ªË´>'‹†wd çh,ñƒXìþW”Wî»Þø„¿î?¸àÚõB±ââ÷Vt%yyKE‡P(ÿýNÄ~²†};ãtB?üçlÀ¹'ìcÏŸ“æRÑQäïEÂæÖ—?ò5æÜùµ>n¤ Ü»{£)8Žîþ ÄÖ`yì“ü俌Þ½h’]…ÙLhäeÈ„¯àWŠîu›œÃ;Í´éüÏ-Ç”öèÕÄ `»^&·ÜÒxAcå’^õrz~¿˜9‹ßb¤ôkߘ̓óa°™Åûo,kW›}¦¿©_»Ÿ»ÁÑ;-‚Piˆ¦ÿÐOæFØQœ‘|Iûýé%Š“=g¡àF'N2tåJ¾7¶d-›3½œr'Ø R˜ñÎV ·ØðÚ1HræšÉ¥V4vMMB©(\y¥•kÞÃðU¨~.…Ó¹e-•hWO¦ÁŽz\šÓÍÁ4Òmä¼àA„ 'Í{e?ÇÏïzrk•¶ ž´žZ6x0‘väIm6Óçõ5·•UŒ~‘q¼{¸mÆø3GýƒÓ†fóæD£pš?NhäeÎ×®]ºJ%b³•¤ËŒøK¬´w2³4Ó™XèäjÀO$™ÿrRReUدðà†D‚Ê–ASs, l6$HI¹Y#‘°ìïßÔ܃ÑU¥È mœ¿K¼÷Íõ2í:\~ü ÖúréëWÙ—pxïj•ñÚ× '*¹œ÷¨O|´ºjÀ¸…oÊWgä” ‚ €H4ïº-ƒ_»=¹Ìe';ú#~;\æaºJÓç™’Jº·/黳Á|–õnKé©/¡^5‰óõÅ+9¥tJ$$µ¬°Xéål&g8)‡ JTš ^SÚH7iY®SQÏňW9<'¡²ÐpFf£®éÝm’þlQVÁÏO‰†ó23³/ÐÛ.¡AÝ:|ð÷5êB“½ Ù¸rñ“¢™ØÅƒIçÀíÛW¨¿¹:¼É¡Œ+yeeþ´:ðÄ»Û O ó•Í™£IæƒbÏâÌÒÉLYr¥¤¥UáÑOf3¶™+’¢ÊÊ0ÓÕߘùÑfâ͙܈Ê"lü<Þ„òÝ_…H4ˉ-cl¸H“á#ÝøÅ.Vú€¤xzRëÒEúšëÒ=º›\6qÒz’n† ’kÔ(ye 1-¿˜ìôtÑS'÷]Ô.ã²ÍJ¥­D‚“Ò„g¶’d;x‰wÚ1mLº¼G~– qœ|ãpÍH'ˆgù¹ÚQªŽÒÅÒ•jÖjw¯È®`W¶#°*=÷õa¡Ÿk&¤VZ;™X«wåSȤfÚ9ñ­™X]ÙH0I«°Cf¦UZ†ÝzRRål•i›E^#Ž=“>†sØ$ ªÕñgöxÚw÷'¨¨dÓœÉÂÓ:²Ð1u}Ò̓ÎPçîeo÷¯KÏ2ÌõžùÌذèÎqnÛHÖ.š‡ÿÄ7ðV÷-P6gNc~Ë-“‘{æQæ]Hàäõ´Ð–¼¬DÒ7ÐË}{èÀŠ´ÛÖ´´Þ`içš¼x²ï|’àÛÆß÷ýá_ D‰fþDÒy;)2§:Ôiÿ"‡NüJš¾GŽŸàêñ‡˜¹þÖYç>|´ÉB#ÎׯÆ%42 ¯äd.×!2´¹‚†dFdðCÛ²ÑÎÜWk!m‘#Ýï¾…›“ÜÀ㮥ßíèžÙ¥$ãÊN›3ÑHP£§…4•¦4¬´zß¶¼’žÁ²d‚Š­×Œß¹¿èÿ× j}öÝ}ê±»ï#D¨s†CØØÄ£Á×PŸßɹÜDÇ.!ÑâÄ£Š(»µ4›öËìHlJ–f¹ä›Pff¨sµËlѱ"º²›Ä…= %uLñH~”Mƒ‹”Dy56Ë,´ÉŽ#Ø~{©©ÝD£ªŠà†µ˜DSáÎÜaÍï8ÜáøÝËʇ¹¶õ»¾ÆþÃ?“lΟLæ”ø¦í¹­L(O–Ø?˜Üÿu¢F­dɘP”%,+±›‹©ß•,€Q{ch¹òEúÿ˜nÇß§¡ª ï/ÿ¢ë¼ ØLQDE, Ñ¥îÚÞŒx/ß„šìßùù³4¿ë¤¡Ša‘+8_;ìŽã& US5Ó#¦sPzï;|GCs8mtmp²9U@¤%$QrÂf'\C?‰„x»'ël®T“¥á‹!²[if²ÝÕö,|KR¯9–ÖQ*ö÷{Ž L"þ»¶ŒX½‡+㺣°ávb5Ô²õÉ×8áë„õŽfÁ›ë:¥2T*!ÎìÌ ƒ†@­>§•[bf¨¶,“Ë»¹½+[Íq¥'ÎækÔ¶Ë9,áf+çý'd³ÜDûìXBò'™'ÉÔ°fà‰œ“1ǹªv¡j)2Ï}û©¾ðx šŒ~–«ÏŒ&¥Mëû޼$lÙ—¹´û â\û⩸³ εÕeBy°£;ý=ãG®!ôãüÔò4c[Ìâ‰í‹èèRTYÙG"ÓxÖ¶Þé“bTöþ‚PÙ‰Dó^XÞH‰Kà0º€×¿¤%#®Q<õ’ëóüÞ,¯ëMsCsÖ?ŒÚVÇ é,½µgz<ÑpG›ª]ÉI›„š2%Êû•A¬éÓîÙ^]«‘q­ °¦Ð("ž«½ÆqÔï.£ü%fzin­7(ÏÆ;[yg\åêö®l9Q ­×éf³"‘¨I“Hî?Ñ”8qX¡Á„†?Õ¹ý‹:¯f7RÃîÎ.uUR°ã™âÍø¶ª¢[3oãµoõ_{3ï±Ë™³4xí N}6«\“Í[Ë)q ~’>£^Éi±,°¼QN{U^™P¾²v1¡ÝËi9×UÓ™øs[NZèo+¦¬ÌØH?0Ÿéó’&µ“E‡¯¾¢µóƒº¿ 8‘hÞ+I‚-—w£ê͈wz—<å Ë+‹3ÃÎ2rÇ(Fþ1’9ý¿e^è|šd7¢¥®%Î6,‘>h®{bîp®¢Ã½Å.%ÞîL¦$ŸÛŠL8s=ïe{Uý{`;b•€) L%Æ3¿ðöò¨\CØ5p »ƒ4…×n—kR“.»¹¦¨°+X™å…;îòlº¨uÔ+ÓÖÍBº²%NËÕÄP“ïóµ¾E©«ÓÝx•à{dϤáì] mTÍŽæýÈëøddØ)³JŠ­tÿôl=NáRjt¹õ&j»ŸOc ­¹úÂÊ5Ñ|fö]ºNÕ} ”Í™£¤©o%nõÿ7qîÄâ}Cóå~WTYY‘âÖò%>oYÚØá¿G$šB‘l2gºÁû²7³¾ù€DmÃ×þ_–Ø„qÆÝ2¥ò¼ì’ñd=f:Kø·o—mWã$MÀ³Ôõšqùã1:ögãSµÉ’Ø‘Xt8û `^/wÜŽ­aäúÎíLÜí?»„D³3¿Z,ôÒšrÖ•šéš €Å.ãb¶3 |µ†2Zoô.]Ù·'„6ªRoþB£ßÎw~Ô•ò ZA¸oyÿ­ Û˜:ð)fïKÄ»Íëü°ö}ºT}@Bޤ$v¿¸“ðŸfÞ‡3ÙÒþ®ºä­^ÅYª¡™¾õ PØ+p€š]J¼Ý‹µv+e©Ô¼­]ÑŽ†cv %Öbo*x¡‰ÀC¿ÑæB'ÖlÌÙÜÅ¥Z’Ý«^•,•„¬ð¦$ì=Ž›…‚‰¦]BŒÉ…å&=uÔ.dz·\b¥ŽÊÀßY*RÊj½Ñ"»²Ë þRZ,<¿u+›5ã@Xθà¬^ ¨sì]êNšÂ‘—`S©°a#&;†ë]f㇗H9wÓûÏæœ„öjt<GϳÐä4¼q«~}iÖ~A¨›ÿ3Ùÿ¿1¬®³€s›sâµNŒ{«'GhX߸ óg~gÇ–HO?ÉâoÖѶÓ[Ô ë^Ña=&‰ÃÏüEðЇéµ+œ¯::ŒÂù ÿ¸`›Ë6jgס¡¡!Á¦`$E,˜£0› ¼ŒgJ î¦õ(,Ìòûi•rÃîÍov Ýd©„Òyaw&™ B%¥È²ìFBö¯fôON~þ=§¢ßÏ÷$¼9SÝ@»“±D5uÃýäQªhƒH-ð4¤Dg;³Âbãç¬ÛÖ½Åf—qÙ¤!Aj£¬Ö*²+û¶óŒ™÷t‹*ÿ´"½J&¿¨¼cʸ¸'ø‘@½ë×IvqÉK2íØ¹žrœ“!* ¬ß=‘K®z¢•Ñx¼©‘Rƒ˜Pê]j͘ϰ7\ŽÇÓ ú[ÏÒì»·îˆáêsÏÜSìE‰‹ÙϹS?€|=»5{L¦v=Ç#‚P‘rþ%ÎñÛ7ž\׃@7%¾GáÚo-ç íyHìdçÜéM,û~@ÞãØÇXùã0†<±ü?“lZ"}¨~Å“M]Ïóľú§q´ZCS#•§ãv„H—?±Ê2ihl@½ìº˜ ,ïÇc¿þJš» >UÙ4ׯfI߾ĸÜ>ª²¤Tì·«ÈFÅFkî‚u&zHã©/PpÖ.#PšM©¦2™®Óó@âhþ¬’œÅtXóêÓwVrµSwBW­àÍ­YX=ÂØ1°% ùM›œ]&F`u¦ŠÕ9?EuN§—7r‘鮩¸m:• u¯çŒ¡LpuåLµjÅ&ÿéUâ°µk»ƒÉ/ e\›wç”+³¸àv½Ý%l Ù‡NˆDžJµë’LC‹½øãêó8ANA(ÝUØ}ì\Ë4âwHÃù™ \ëµv:t]Úrê³YT_¸§¨(ô5jpõÙѤ´*l Ü½‹‹ÙGÄž›“Ž|àzôa–~ן‘Ïý&’MA„RÊù/bNäRš'­ýrfN*ýê╾„$3 Í<;¶|Pèñ¿vÎüO$š–Hº¬jÊöÁG‘‡&°Ý?gV5%øæãt›”kºV\ÏhÇUi2‡œsÔy3v·tŒµi]‹&ú@ûõWvuèȉFá4m< Ý7½µq#ŸŽy-›—0º“™–²˜ÒW«ªÉW¯½@ûvŸrä車íNÁl9‘íw»>ß8Ì;Uö`Ý>†²~t4ƒàÛnݸæu÷Ô×äÅÚîÐmo3VvHG£KfÌ«¯ãu £:»MMU-/éðËhB@|#‚õZúõü¿ý„¿ð7†u&¹m¬Dm7ø–«StÔíâDT}]Þ˜Mº´.÷åŒÎú¡Ðã;¶| MA„R’k§+!0ÀŸ³”ŒÔä|þúXÉ“B§ÁßE°gûÎr êøñr«ú¾¤§ÿSèñ¸˜Ó|ýù8š’+«=_4×=Ù1øÊÐD@‚24‘ƒ¡¹î‰54©¥™pÌ€sn$¶'R’ÉÕ6;g‹ëÖ¾ C¯M%Ìt•ƶj?>Z´ Õ¹s4NHà|íÚeoY;~|:2郷¬0› ‰ŒÄ3%…//.‡†–(—í®Í¡¨¯©êŸwÌéƒúºÖçïz¯q+W²«KN6j”w<üÄ ÆïÜÉ‚qãòîm·ÛI7¤“jN%IšDŒ&†¡kù¡s¡1¡˜l¾˜4Uh”YŸ°to‚$*4fc7|ÍîrN6ª®9?ËFÇc‹ºÂº´ Ì›·x§¢0'pesዃ}PÿéÁsáÏ¡,¥§_.ôøk'™5}F‘×W^ž*ëû¦ ÿmrÝTñÚ¯ÏáõäAÞ©¯Ätú}Z¯JfÁ”9wtk%JZLmE‹¶­Ê% mëtëg.þÄ ðõì\>|Çñ€ÀFŒ›øNDT¼ÊöóLýp&íg~M?öeE°‹hj$†ÒTÖˆ-]iæëElj/ •”û 楱ÃæíËý>ŠNáñÔh¬AAXêÖA~ö²¿ºh!æ† Š¼öXÕX4/°}ãÎÃÃ8øK4ÒOÒ°-pçááý ½F¾nÊFátùõ'º¦lQ"¹P¿6‹”ǹdÞÇE…™«ª«$hJ ¢Vvõdõè1§¸ªøÍu#n” Ÿ¥Ö›÷*¸ç’là£ô{ìqú¦§a«_ŒÝgñ2D“½} ¯ÜlÙ®,îõï|Ú´i¼1µbÞÊòï|Ú´ieRO¹²gqféd¦,¹ŒÒÒÒªðè'³ÛÌõÖÇj{‡&µ£ã'Þ¬H¾mëHS$¿üï%Þœ½—€çVñûgÞüòæ$>^pœæï­àû×}Ùð¿‰LþâFõÁ=úo.cFW›ßËØÓhü4f}ÐŽ¿&¿Æ{_§ÙÛßñå{½ÑšÃÄw÷`ñqE!ËbïêLf_]ˆyÖx^úäÍ&-äëÉM8ñÁžûð0M_O#S‹¾=F£§PCiÇfÖ‘xÍHýWæ2éÿʳ²‡ ”RÎkWS‡~mÓx~öVF~Þ˜³—Þî{êˆnó:÷˜ÌÒïúßq¼KÏ)cònÐ'vîaÈ—ß`ÈÒ³ôë#¤Èv³S±…θäjékQGS—úþ iP¿!µª„á£.8~sË+çñnãB³!·v’?²2†Ä}™ôœs­¢ª-[qúh&òó°ÔCÿö[ x¬D×þùÚ%¼Zii2øV«â±U±$EèèöYÍ"¯• x<5š¬7ß@ÿؼãN+Vâ1úY÷û(Ó&ƒýYw9“ÚcÙx ¿ÅV>SãÜÂÆ/'“•H¼.‰C2‰†xRL‰x\9‚¾mg¾©ƒY’ŽT¢Ç?ÃêÙÕ©ë­¦–AA§fÏFhíZ(U·6Ó;øK4ÒwÒ°|ãNïáAltl¡@²i oˆîèßȶïDzñ"‘}{à4©h*ß›Œø;wúÓ,_ofÄÒ5 ª&Gx­‡Ná¡Ssi~ó%¥;ü9ŸÄw¥±ó]šz•¡ Ÿ:–¥‹2èTmú÷˜ðñx6.ÿ‚Ñ/µÇS£ÞÇò¥_0vîwt‹žNëA³vòyk ¾62vÆóÔuƒº3Ƴæç/xö­>˜ðæÈeÔZ{€w(IÿóY®ÈEÞyžo¿ý‚gßè¿üßCƒ/<÷Áú°C¿~ÁØ9_å%Å–¨ùthó:/üD13WpP7?$¹Ðfæ xšÚnÉx¶šÈkۉ緩]¯7#Ÿû[>䯵6¢sÏÉ„ÕíYÑ¡9 k·.(_ù²Ÿ°<ù8g'BÂ:óLÜ9´[ÝH‰ØKjœž“‡NpúòiN]>Áê#¿rÕ?‹ÂL°<˜ïPB|B±´rÆÿk7®ÚCéÒ¿—ÖéP½˜E•y÷·Ï›jó܆Ï{¬8z ·!Ãðì í.öz¯VZ4¯8F,MûslU,šW xÏÑ{­jÇ.¬·’L;¤%¥Ýøa”Õ݈ývIÕê¡Ë ͆.;‹LS&™ÖL²lYdÙ3I“d¢9JGüŒ4Œ’L$;å(qF-uA#sÅEʚ®U¨ox˜ð=ǰ?>‡P÷@jzTC~sˆ€S÷Þ˜^ƒ¥Oácã÷¦ã›¯óááAâ÷¤Ãð‚çÚ5š¼zâ6ih¨©<-íùåÿ;‡CT j.þÎ+m Þ[Ý"ï¡ÂÍ µ)cîî;úcÌyãýç?ÁkŠS ¦fïP슥g¿b¥O-ÜS~!¾ˆ­Ï°É0 Y nm&ñݲ«„;úb®ÍcEŸx™ý?®#!¤/•hûbA(­¼Öx™oOfì¥âF9†ÚõzS»^ofMŸQi»Ë+5''²W­@5d²%˰7¨O›§Ñê®’¾tvµ÷`5íƒ;ÑžNØvLG³I:šÈ¥3¸I´W4 5¯qh@, ×cxuE`$ûïlצ¡NðI—3¬lz‰™¤zéA¦Y"È 9ßç—Þl–XAš}óNvqª‡¡–o[!•œLDZþür«Mö­n_™M†ÖX°ÅÒ¥ƒ ˜!¦§+¨NkÑHµ¨åj´rg\x)´¸:;á¥òÀCåLØé³„oú“¸yßPÅÉ•ç[{yõ„nìŒ={Üõg{lU,u¾Ì7F³InWvôã&sÙœ0üú3šÇG±ì'lõë!=uéµëVü„½vo €%ö&÷¨Q+Y2&4gÇùŒÝLy {ù¼úb4ÿ¤ýׯ}Š÷§¯ÑÒý.#å´oy‘ — /œ¶›aÞàÓ‘ÉëÆQK å¨åV²-v@V3v™€%…ë’.Lúñ´ IÛ_§ã ÿQïÜZ¸w`Å•›cFÓ7Ð+8ßDÒÜ2#É—ÿaßÒ7y¡ïLššL]Ѫ)8(‘h C£ÁÚ÷¬×Øu*“\Ñ_Œ Îïa‚Ô€.‚7zÎfè‘­<$Ç5À'É%ì¥ÙKªÆ«fsz?3” ïöoB$š‚ɦఎ¬ŒAõbÙóœé>¤*Gšç<>BÌ}%›ú·ßÂmȰ;ŽŸ>ÂÛ ÊM2 s4tìϱf±ÆlŮѺø<ž~Íò9³ÎÏœEvã©‹9 ëg59´§ ùûöJÚ• ¥ TjY»˜ÐîeŽ´ëªéLü9Š-'-ô·Ý:Åty3>\Ì©´S,xk>3_æa·|-š¦H~™¾ §üóød$“ßdVÖÍuc³Ï³äݯ ¿^U—Žå¥w†ó¸Ÿ'dÊýÝ;9É $’tv0c‰×­ôûáKZ(£YûÞ7œJ;Å÷³~§Ùä&œ˜õ-§ÒNñÝä÷9hŠÈ¹×+ãÙ¢°’­K#)Ö@›yóhuÃΡB‰DSpXIû2ñžwkÖy³!U9Bάs†sq²{t'}årœ>þù¹óXêÔF÷ö[ÄË{DñË%GèðšskÖy“Áþ#gÖ9ƒ‹¿¿¹A}÷îBµk7òÈH²Û·#»c‡b“LAøÏpîÄ│3kæ-*xŠ2ä1¦-|Œi ïR‡2”áŸobøçùŽ}q”ô¼žìÚŒšû;£æv±·–¯±dÇkw¹õeSBßBo9`æF̼õØÿƒ \Ë·È{ßÜ%VAp`"ÑVB–0j6¤ê}%™¹²{t'»Çm»=í(Ùµ] Y¨É`ÿ%™¹ìju‘c1AÁ”(ÑÔJ”ÅŸ$‚ ‚ ù”(ÑÔÙo-&’NAA¡$*ß>‚ ‚ ¿‚H4AA„r!MAA¡\ˆYç‚ ‚c±gqféd¦,¹ŒÒÒÒªðè'³ÛÌIúzù>C%8wJ¦!f½HƒÒì?PÔ=ÓÕߘùÑfâ͙܈Ê"lü<Þ„˜Å ‰DSAp,úÓ,_ofÄÒ5 ª&Gx­‡Ná¡Ssi9‰åüo îæS–÷Ѐ¿+¯ÎïV–¨ùthýû{üBG±¸º áš ùIDAT ºÎAÇ¢mÁ{«¿dPµœ¶…›jSÆÜŒ§ø¬k0îwêvþ®™î^×=ÞC¢tÎI23¢9¸v3©u;P]ì© w-š‚ Býû÷çĉF‰Ø32ìB'¯§…È®Çè÷§ãñHZø¦±ãÝŒFã­£ ¼ÇÿxwÜ#—õK;×äÅ“-xÿà“+Êâ ¿Ë}%šÏȨUÏZV±”GˆÓblj3:RCP¨¡ø+Ðõ(-Õjè*:ŒbEžSZÇ\ÑaË^›Ž#@ãÆ+:„±ÄþÁäþ¯5j%KÆ„æŒT…2äõЛgøÐ÷7˜Ýh gõ£ t-£{ä’0jo -W¾HÿáÓíøû4TÝ÷Ó„•uk%ʼ¯ü®\tŒžwGˆÓbljóÆÕÊ߇{Í©¢C(‘èHÇèøp„צ#Ä`·ÛïùëEˆîôw<Óç œ>ØÁOOÆñR‹§Ù• ØíØóŸwé0©- *õ[B÷ÈG¦ñ&¬m+¼Ó/“Rù? ÂwO;]¹(åâÛÖ)®e«”ŸÒ!NGˆ'ÎWÕDGæL-ØáA@uc¥kÙŒ½æÄõ¨œþ·C{ªà¨¯”-›W#å\>—Ó¸s“†ê¡B*a˦#¼6!FpœD˜¬]Lh÷2GZŽÀuÕt&þÅ–“úÛÀpæ{¦}~€‹lF’S¼xãÇ—¨]ÚéàEÜl¤˜ÏôùI“ÚI΢ÃW_ÑÚ¹ž« 8¸{jª®e#¸–mëtëWùþñär„8!Fpœ8ª ¨n$b‡­:§Vt8…òÔã¨çО*4oŸXÑáÜUõP ÕC-ìܤ¡Ó#•+YÏÏ^›Ž#äÄ pþüù ޤÎXœ¢/phÞ¢›ß¸=ÇÌ…Ï•ï=âÖò%>oyÿ·„»û꫌ŸÈ ãq:BŒà8qV¶VÌÂTÆVÌÂ8ÂøLpŒ×¦#ÄP»vm¦OŸÎ´iÓJ|͘1cøæ›oÊ/(AÒ}õ“ä~ú­ì!NGˆ'Î€êÆŠ¡XþúâOª‚B-B‰8ÂkÓbÌ5uêÔ'š"Éánd@Ž ‚ð •$ÙI¦ E‰¦ ‚pWE%›"É¡8"ÑAŠTX²)’LAJB$š‚ B±ò'›"É¡¤c%fA¡ÂM:•˜˜˜ŠO2íYœY:™)K.£ô€´´*<úÉlÆ6sE`Kç̪¹|¾âʪ>¨d!<óÑ 4Дæ&b7Nçõ¯/¡­"%9ÆL×ç2ùñSJ¡D/·ï$‚ ü7Ux’  ?ÍòõfF,]àjrô‡'Ñzè:5—æ—æ bð¦¾,_½Œðÿ·wÿAMßwÇŸYG„ƒˆq¯Uzƒ»®Š¶àÖjè¬õX´[wõ´öV.2Ô«ZÝ7ßO²frçèý¥?þø#[è¸ð Ë–íáñ¿Wð°\˜]ˆˆE4uÞ«Ü Þ„BÄ7F3é[Tópž:ÌÓ™Cc%ú3 7{ð€þ¿ñëW/ðuK¶Ô$îÍÛÆÉöÿ©?Ǭy|ë¾.j[¸Úu‘¦êzròɽ̅PE7™ÑJá¢æbÆBˆØd,޼ÞÅCmŒµÅû‡Šß`^i-yF û _ü«ƒÎµ‡ù}g.—~ecà o“ßð<™ZÖϧèíüùßfþ mçŠX ¿C/Dˆ8¥P%ìƒeeeÀÐ7]»Ý~ç{&„bÒvîÜINNN°¾»Ýn²³³Ã>'j#’_Ç{”ÚvѾé]ŽÛ³˜ M"}nëw­bù+Ü[²¬òZÜ}Ï“™¬âàÿàµï¿Äõ²&Ú7eòïŠ"Öÿà‹·s_ìŸ"j&üf¨=o­Vk0xŠñZ[[ǵÕÔÔÈ{&„ˆšPµ{ô AlSèu•Sò\5Y/HU¾‹â¼ýløàË“àÙ'z©jòðCÛú/¶Ð5w±ú)ï›—ùüb*>¹9&=©«#m+HÐB…°AÓív“““#SÄ*%$$~õnwC!Æ®åjÂfÝ;Õ´´´PPPÀŠï­¾C=SéF#[~‘¿æ¯ÇtÒÁŽ·Úyÿœ[ФñØþ´n³³ñD"ýžD¶w’­6—òó×Wñb‘¿X“ð^`åë‡)0Þ‰$Äôe³ÙB Eê¶As8d !„ˆjÂfÙzöìÙƒÇãÁçóMŸ ™ô(]}cš^=6ò·Öü»ÞzdŠ'Ññµ5?ãÄš)Fˆ—››;¥ç‡ š2…"~E6ÎÔSYYIFFƒÙ³gG©wBˆéd¢u<áh4šñASB¦BÄ¿‰Âfyy9EEEãÚÎÔ‡|ü´íBL+c‚¦„L!„˜9Â…Íwꪃ‡Ë7ÃívséÒ%ü~?f³™%K–Ðp¦^¦q(ÔÂB5‚AsóæÍ=ztÊB;öíÛr[ÉápéñxhnnæÚµkàýŠ¢000Àùóçijjbݺu4…ˆCÙÙÙ8U Ãív{°¦ƒæpƒ„M!„˜9F ŒÖÚÚJcc#@­vèJ犢088Hww7ÝÝÝøý~V®\Iaaa´»-„ˆ¢áYHÂæ­5eÌÔ¹„M!„˜9n2-Z„Õj¥¦¦†³gÏâóù‚‹t:)))8NÒÒÒd$Sˆ ’°ª¦Œ[ $aS!â_¸ #‹{ÒÓÓ ¸\. IIIèõzEáÈ‘#ìÞ½;Z]¡Üà‹ÊRöÿ'³Ráúõt ñKŠ4¡é®ãI‹í³k™? ”mœª3SùŸÓ¬0©;Íà•zʶVÐa2ÒßceÓ!'ß«fK!âK¸°y»šòòF6…"~M2Gëì줭­ ƒÁ€ÑhÄçóáõzQƒÁœVª>¿©`}e5Ogêèûô§,}f/µ½Â7õ™<ñ£<~à'ä&*\«{†ú6²DÍö“JïoÙÎ9[#§7Zè¬,dÅ–ßòÉɧH­:…øR… ›ájÊm/Ø.aS!âš `±Xp:TUU¡Õj1™Lddd°pá»7mnÌÃy*/ø¯>ÅLÂÍËø€q1/½¶x襛æ7/¿efµá°ÏÅéOg³æ -Z,ËÖ`Þ[«ï)¾#»‰ntØœ¨¦„Ý‚RM1## c^¿…!!$ošo4‰€Ð´Ó°‘΂~R0„ „ ý©—6|…!@Š-Bºp†S€!^v4†`! § ¨K‚ñ`]ü¡a·12†]P¢¤¿ Bš®I©REM€é²ôRÔýä’‚úäP ´²Ðÿ%•©.ëEƒ ¤ Àx¼1³¥hôÑ2ŠÅ]€©¥… òËÒ.D«êƤ|@¤Tëÿše9ß²]WUtu”Öˆˆ¡éé[bÎÄ°ËØ Œ…c,)d ÑXKMç#}INÓ‡Cº>)DCE@¤Ë#¤ÿEnÈ´Ü'7L} ¥ í9æäú†¨ Ù5«ÉÅ¡+siÒÇ̈e•CÖE2_8 Ð«‚!…æñÐm¤(L ÊÐÊ™²˜TŠœ¿ …¦  -@¤“&J¸ÐðG·@„^„$‡bÜ9Ɉ@ õ @j ^€‘©²BR¾èk¨Nôt¥nÈRD‘Djz÷@¤ýÐx1ž…È÷ 0¤‹ !B UA¤ÏfDm|@Æ Õ…ô·3RýÖ‰U‘I¦M¥f¸ ´,¸è³D¶€A!³ wdPgHJ€ 7iãaºL34\!a‡²ÝPoÊ‹ÔÐï§(,Ež¬‰¯áJÈÊI'Á¦»¾þ§QõŠD˜Z“©á  MéÃÑ7ýÝÔ¤Ôú–Míh¨Ýˆ¼|4mGˆvgd`}!Ã}™K0З¥AR7é~ "«ÿßPÁ¡¹È¯NÛXØ*Zh!fT[Ú ÇÂáV¬³ºe4'™c”c`º-C£ H>ÌÌ’€$‰Ó+±¾BJ¥7É1U!€ˆ@$]5EЭiD¶ÛÍÙXÑɦ=0]ž\Ç-‰²~¯Å]€jµ“Z)Å(Í„a#"†º&N»9ÓÌ@£p›ÄˆÜÆ(%ͰðBL;…`j^TÇ yC%=¦"Ù>KI_çHYAT›*»P'»dãQ§áÍYNv¾â«O1É^1” aº)2ê¯ÁD ¬ácCèZ^™%©¢ê®k¨ ñEï!äFml¨¤R³"ÁU¡J°3Àd[Q?ú=²ð†ðWbF+Ýê 1H«9Ö9+è³rLjÕ˜¹>ÈÖ°ÁàEÀä>¤í„a»A¶Í·#£Éi, ²LCꨦ"dD¯zÐäÛ!7¤‚‰2E—)Ê ˜uYo‘A“ÃÄ`•¥š?¯@“dªšÆz@~NG¤šj4'‚ Ör]Bª™õÚ™oå$H÷DºècHÀ(¯úç h,|D\ãÊô\¯ÏBšì"c½ æ)²nöf·]|i./½x! $SIꉀÉÿ`hŒú«+4ÂØ!€FûØhÒBƒ]Oyb6<°!½%h¦±©Ä©^rE5Þ- .ÁƲӗ¯Î®ÊG‚´p€yµ"‰ßCˆ-Ý(ò‹¹õ1Þ@¬É1YmÉrL)6J¥4H•AÚÉ£^mGšLR`d¼—Bh:ž¦Ôˆ (2B¦'\ƒd108s Ñ#5!£‹ÉºÑÊd÷…¹.Ó,bÀàÇ ÕxD–f²¿‡Z¦zöM2­ó~˜©ª}¦U„¶½€•ì¥Ü—è¾/ªK”rGG‡¥jÔ!cÂM‚K.8CQÒe×¼éZ•]ëÊ hn_jþü§"QkòÆú§+\ãC¨)bˆ¢Ñ}^ZíÑ^÷ÆÖCˆ ŒýDPãö%rÍxãuéùhP5]êuRK Éä6H·í\S4d¹QvͲÜÌ J9 Ê«†ˆ‘‚'h8…0øòLÒPY C)ü´ªM}$©V@Cú{º±W‚ÔOh¾WJ“$5U}Ã4?’R Zoù0R#¦ÞbhÊdêŒýA€o@>1ßø¾½CÊpÍ÷„,>ýïgXÇfrL·ŽÍ`úŸ’‰ºÇ.!"HOÇ$³—Ôx éVI1© Ìà†&¯3ùqKïm u†é+ yX4J!Ò?Áòã¹ÉÔ2ö™èÇ Ó]@’³M7ê@wAõÃès†!·Ìíe²íB}B Y&óÚÜv&ç°ÑˆÖùÐþŠwަwP»ñ€yJÌÏÍÆÔz„ÌzÃ(ᓪ„Étµ`ÞRžŒVX>¦.Õàùxta3#@Æ«‘-H噤ÐPé“ÑjxÔ"u`“Ï Ÿ-‘QéµÝ zú¾HõN蛢弹 LöB0©³ñM ÑGM˜wÇ‘·¥Æ’lÅïúàXôÚR,—|+0š6dãˆÜãAo×”ƒ¡±e˜ú£ k)" ùAQM*Sq™4‘;^MÁ²õB²éÕ Ÿl &’ÞæÖy¹¢8uõ™ £kÂPwÉr`ìã1@dÄÇ´!£¨ BS$BßUH>‹Ü}Jóg&4Ægz@ó"†4-3+P“uIjúäö °<̆"26¤lðšYjKt¡d¸a›ÝÓ½‰¹Ÿ YRF£1ÞG "]Õ0¤’vÏ0 \!hÃ= ²bp.0ì2‚Æ´#Ș$£$“ 禾,“q@é‹6V{Rq k‰&ÝŽ‡š3çí/2Ú(ÈpÓÔû ’bükáchqdQÌvƒÑCe~Ø ñç‘÷bnïIïûìÞÓÇ›n.ksÝ´íøÍW©*ŸÊ­úÕ6@€™ý{Ð8’”Úmb–ÐhöÏÔwi²Ý´åØW©*ß*múOÕ6À†E!!{>§çä¤Qc«^8têq2r jÐmÔ”¾µXµ¢# ÅIoÔC±á Ž0¸Ó á¦Mò  ^`pb4„Il¢Â$Á@æ»(Í èt™Yv¡a°©m3µ DJ4y34»QÑv2é%åú¤P‘åf©€!Ãì\¦þK† IŠ!*HÈùT ƒié…”mú]šŒUƒòRm^Óã·Á×[ä'nD©N‘‡EÔ08â/Ö_‘Ü…(~aDÝEŠ¿5ý5öˆbÞ8iÀ/ÕF G2CS“ÙG½1›ËÙÝÁôÈþÕ`}åðPÞ‹í¦îŽ­0zɳÇ6 ñº»vœ³©ZƒŠæec0øÒ9ä€Ù¸<š‘b¨My϶Ÿ[q̦?Ïß<Äëöê±³ÿIQ#˜Ìe]aÈž¯Üò"lòîS'vL‹Ý3k¾X•®Àil.©R#ò/ƒ§‰Y”V ÙŸfl)$÷,ŧ§¯í€äû£z÷É÷̼ÆF/£î‘Ê`u"`|Ò48e ‚äƒÔ×K@vÓüˆöìƒhšÓ’âœD4÷µù!ˆi9k§R‚¡û~·¢|®GMœå£¬žLúÅGÆ+Qîžfi"á¾n*(}Ï‹qL" Ǧ{±á@óòÓ#-B”´èžó(G‘3¤†«ˆ ß;,È¢õq† 0:‚I5“ä‚ ÷îêlj’|Á€:ÖáND £×˜ :Ôif/­‡ÃLy¾!œ‚˜×Èê.DòTi2®o8ùÉ{Èž1ͼ¹8´3÷Éí±»ö¿k6µ¼€žlÊ݉)_tå¡x·¡Kã ô#Ø.º1 ê´kN|òºol .BŽ­ÆÍrkôÎý1ͦV0=‚@@Û°)‹†ÖqaØlÌ¢w·Ûõ¬û¢j"ý0ø›h&Ù Ôf:’msý/‚@ä‚7ŽÓ7Ìá!Ù)P?Š<ÿŽâÒ&€ü(€ ãbÉãÛ n€ ïÑÛê¢DRmC’©J¶¼Œv}T†ÉaÂTAŒcœ˜ MôyU,¿Ê ¿0€Ï©þù>•’íÀ<<ÜâUtsm …®3NÉÓÌôÚ„ ÍôÓ×^«»I›êyB©ÉçŸÇ¡w²|ߤ6H5rIf wxP­^„=ænm]E5ŽÑ¶t°a(¢ËTß‚®z›„f¦4 Mhd® 'ñ·ö[b뻕q;{5ÝiúÍõî³kß„@¾¥ãå‰âÔ.êºüBßfþü¿ŸÜKW—÷áêÌNÝÃW>þ Döòá™m«8ê­ž{£JâƒOn¤ªª‰ø “MI3>Cë”ñs° ËT‡^]Dqv G3©^’š¥­“Ï‚T]Ö?Kýì8Ê^½Ÿ™véº>4Ñô€f¨îƒ¯™î?¥l7¶R *cM)¿ÌÚ€Ö½ŽÕÚBžJJ¸ùôNÚì5òOê#3€È¢„,„Þ$¤(‹ñ)GùÃ^“û—4Ô\úN³Q6¦úfÌ^ò:R–³ ‹|¿!å'uò °èÿ%='ù 0N‡„e7Ó‘…öB|õÑi_*Ä|ÿáûö öã04B™™«V&ìë×|y3×3I®€ ˜žò›€e2„HwŽ}›î¥^ñSž8BcÀ"Àz Ùdqø@™®$\QÔÙ÷c%3…2i”SrgÝ[hrCdꆆd³‚Á&À7´U£©kjº†¿F3Ÿl5#êD2"tCýINCÓåh] Æƒ©_èýlô|ƒ¼ÊøRäëØ/fU˜ÅÙ$²d{ÂxÛ£VòØ^ã(WÓ ¤ Lƒ¯MÖ®¾]‘ Ô¨Ë: %ÉÔ´¦õHF1Yš! 2G¤¡ ´L%‰/"( úßhYDñN>Ò¼¾1úv­‰5“þ .šØò ˜>Öå»ù" 'Ä…„ų·a ËM?°£«GB67éEE³‚ZkY<;[¶°ÜŒƒ;»yréÁJ Caô%­Uf)ëiZeš¼lØÆgò S½¡x$iò«Q&[Ê$Q&Üz/3yÊD:Žôðhð¼Ñ†ëƒæêÿ$‹˜@"²4ÒRJ”#én ‚Qv)ÝÖL#ÃèO¦$å%d©%ón&¹´Þ¬nvgGæõÐa I@T&¦Nd'K³ÑGK½2Ú°AÕC}.!Œem8 è'eš*ƒ©²™)¯qÐ!mŠ#i4ÒÏꤊ/Ùòe_êdcž!³¶ òí[ck úKY‡TTŒ2Ý/R˜._78¡OSoVò…§Ù†­N<4¨yûÉײ+M‹v2³‘Õèúô¾M}Xɞ昮xp`³v“¯djK«!B÷0¦L¾'Õ;p•IWŸKí*×wáBC"ô÷pÓú ³Å~¬˜i¼º^{È“X ö n¾ "w'÷†MfÝ1„¡—F?C™†Ñë», ÉÑ÷Ò†ÊjZqŠÐI¼aȲ©{Ðp¤±ŸÄp¤©&ëS?Þº† 3eM]ŽÀ´ $D뺱hºå,}òë¯ûÒOAâ@éK#­P—?†á—”n.]®ê¿ãÌfh<Åhç’:QM56 ‡TˆúN-H*nrŸ­±WÖXUŒ6¯qªyá*CG/¹—ÔdN;Ó ËP òTXÝ,$’íiš×CÃNñÒk¾) ¤Dцßé­†Ãh‚Œ‘!•Y[­ËKQ™ÀßVˆ9®ÍǶ±µnáŽÿâ²Ò·÷/ÞŸäÕit-‡B_!ú4U“½l²)Û¹ÙØ6ö/×Íßv=6K.ýxkߢ}Ÿ¼:®ãÈ&Ý÷tò¡Íüo銓/S$™ï.EÌ;–2pH°-ù–ŒºiT4s…%Õº(C`ªd/Šaæ( ÷¤» s¡Èº¬o–U0ª3©Þc5%K3™°ªÎº6iE–TRÈ(ˆå‹iP9?õ–!· M*ËšKç;d× É2Ðk®iž¤¡ˆM“î©35ÑYl(4ã@'cÕ7VlÈ–E|ékHõš$¾:e'ë¯Q|­è/} 馭›sÀ¨¿1)¢Ž¸)ç×vq ›–ºmŽ\?æpªœëR®^Ÿ%“ú–~ÑýQ–¡º Û®ú„MËÜ6ïZ7ZžK—õ ¦êž¿øž­[ñÎÍé³.‹ëQ¹å¸µ£;z±ÉÃÅ©RkzNG¦Ž,ò, 3K™ê¾0ú"¨Ïòfïyf>i¾‡îÌ8VŸ4*“úpjxD¥>jèãMWg²¿‚:‰4nÄðèJ˜«0Ži×?É’|Ù”EiaOãwÊÊgfÃ/Œ­æÓU²Ílš`ÊH²H÷•ÖB1x i‚Æ)ŒX†ž}ã<4ÂÔeŒýi$W’áxR!’§à“±THóúx=`ÐV?c¨™4O up#}hÉin6ò §É3.5Nw>ô×bÿ›±)Ñ.ͨ¿ÅVyéµñí«%%®4Ó8_ç"u7¼szMxßgïÞ¾Þ\º{È4•6{ÇÊõTb’WŠ>Ð×Ã6ó,3@`Òr´M³Š3ŠaŠ“qaèÇ£$™©qš­zjRU@[=‡¼Ž(õ©Ð²ŠÖÄè»ÌïÏŒ£ 3N¹¶Oh63Ð4-ØlLÛäµIçÒ"CZ­<Ÿiuî(djì:3éÁÐÕF=ÅlÚ9]I)Ng+˱ÓNÆŒ²ÖœÉãÏ,®yý,YpJ\ŒÙ¤CKZlZúˬw…æa0m4Ø€ÈB¢ŽX Ïp· Ç´‘¥,‚c–:ªhg§éý28”Aäô#ÀQ¦e¨H»Œ#™Mýï½ã‚:lƒ4 ‹l3êc—åVÉTº¯ 9X†I‚ˆz¬Q"i‹-ÐRJ²… &0© ˜:î §-Sdš€KÓ>‚qb²ZÓÀ ò˜Ê‘Èl%vSÏí½ Æ5ãsß5yt”ÅÌ-_Ú`^`ìÒ0õ¼™fç[2~AXyfÖO^ò(‘BL.Ã;&è+°Ð7´ÂØÃ`nV;Ž­ˆ2¹:C¦/d]fœ·NŸ`0»˜ßÄ,Æ™º§É0´qÇÆÉZdãרÎÔ>t’/Â8•ä‹0wDêdY+2ÉØfÌQX]YÉ2ó]æÃ$èw„Ìfo’æºo2-‡ÃŠ‘<óøGßWˆ- ¨ù’æãÃÍûÜh,ÍÇ“ÓкYV ³¾{Æ·9†.PU™&Ѐ2 ”.ô^A³‡_3¡At¥°àÅ#éE>eAwÚH-½è¼ g28²­ÜŒc¹,Dž m5ûA˜wBÒWù±¬¶€iU,jý!›Þ”*º™ ™ sRœ ¯Ü6žk2’Ítß\yCSs ¶šÛ?–ÿ¸BlKÆ2ã¼`Á^ο&Q‡¾z+´^)lgȯa%½[ñUíŒïZ¦;sÍŽÖÔÙòd@ë–´’áßs4>d~58Ãq–fÆšË+c#É:APc‚ÌÞd*lŠ…K\Ó,zD·sé9Xšé`\PŽV'­¬LJ÷6Pm^ózk~“FT/0F/Ä¥Êãý5(2뷢ˈz"ã)æ}RÈü “-‰ŒJmaZ͈Ì¡QÛiYOc÷ î€ú^%K’jÖÀ4—aéxó iLªl®•_Eš‚²¦)žL‡AêŠÃFyÐ^ñkX•ê£0«6”§’Pü¤{Å…S€ñ/EÁ©7£Ì\'ɘO;¢V{ÄP1˜Ý_&« YˆqXi·´ºeI—ó ÐgÍ1 –gzXcr[²™dÍôŠhZ8$C†œ@HyçÕf4kæð-x*3ͺÀ~öÓ«õ[ˆÕr7OVš°°>N™ÍŸFÔiläi/†¹D”õOÉoýA–_ôg^+ì\À°?Í¿ h~êK]­7™|”·`e÷Â…¸@•Ìzƒ§õƒüž¼ÈÃt¬¨*£:CJK¶‚em1Vò»ÂŒÏ˜dÅ„ÔÑG´Ùh–ÖŽ ß¥,¼÷³×gùŠî‹ÅÁô&bf› õàéB£ŽjT#Ú8‡“Vm«YmÉžYòà0ò€B+o½¡HYÙP9­æ¼¹Ák½Îcå-Xˆ¿NfT¢BUÄ|Ô™¶º ãw„Èßi-™4}Žövg˜ßFÁ`ó’Ga›Ë®ÁohÛ)Cq-¸P>cÝ—””ÂÒ‹:yÍ ü|ß–Þ+L—Z³¡¸ô<±ÜG ŒS-Œ!Rs­WlÆ¥±&|6Xˆ¿V<2ŠH!ª¬[ÒÂ0 ÚtgDÓMK?™RÓcN^~Ålx9nÆ®ró¦Kž¸˜`-eÑWhßÖ'A0_—¹Ï’çšÙ²†´—cÚ¼2`v6ÉAÖ®Lƒ(€ÁLfp…[í‚Ë·ÒZ‘]¬¿_,ÄßëÕÔºá\ …2,+ AÖS²øZA˜¤Ù| YA(ËÚ2¯¿Cªùà'ë-¿ZY))HaY ö>³a‹æý®1írÃú Û4¶Ì˜ÿ4ã”o`a­ÆôZQ^ˆúŒùr°Ë ý™·k½V-M‚jöÒ”0Í’¢ÌyÆ“¨ªJÝÎØbé+.R º|t°`» ‚¥ˆ1n¾Fýӂío}#Ã1f‹0ÐýÌÛVŒ‚ع˜¢ qQb©Ù0ŽÓ°r:ãF[£ù$}óð ²Èš{Ÿ-?/›Îeô0˜Þe˜¦e9Ó "ÄÖô¥Öw¾62£ÆYtL1¹#Æ"d)ù™\Àœ±T7°"-Xˆ‹#ñNÐMÝüVζr-ú# MÚÒ%š ågæëI/ø“ÁçQ¨ËѾúÔ½)XæŽS³²È×,EL§w1v á1 % ,Ä% +rFûIM†õ«¨AdùPK£”—t¡‘¯ã…rðטÿjíI¢ÀGZòË3ì5ÛÎ(¸ùª0£š[«`½Lq{)A”¶e01úv̦ÿ›­}e.LëR2¬@Ȩ¹”ua,ǧ a¬ù%,Lµ`äs•ˆî·¼ 9ã^s?ƒ1o-­2j%& . Ü`K#Ø"þQ(˜0!FÍÂFÆ0¡qò`»ì ¥˜ßÈÐ3_„ÏÊa@ÿvg†½´¡{Àìf‹ ±EAZ­V­Ñü˜mËá°Ùl‹e¾ ±EÒò/}8—ýÌÐö€q˜&þ‹ÿ⿆¿ºÖ*5÷ïí"ô¶Ô Ôj5dsܼ|ø<Þ))*µ:59I«Vs¹\Ú.øæÅ3¬¹Œ*ùx^ {¥rî•qn`0ùò6åéûÔgC«.bÔbF£ÖAr…œÐjÌ,b±ÙBðÝ».›ÅáPŒ`,ÄÌ~¾‚Íc7®ÐÙþ Î &_’s>\{õ'R½B¦›ïÍÌÊ ,!Ðþ¨*¬ƒÍæ „bß½urt$oÇ® f>äGˆÛc¥F}ic#Z‚+ ÚùfÒ·½W¯ˆX¥îdqøvîA5Û ™<¢…7¿Ôt\"-!W(´Á" q1‹£ôÙúõÇ´ÿëδ“_f؞݃ü¸æ{*.ÿÏöYÃ:µiѼCß kÿù @Æ]#ÿþ+bjÿö­Zµí1jÑá‡Ù:7½,zFǶCþL1 &”=žüS«gÓÔYWÆôšòD&{6·c›!¿'© ¶|d8A›ó(jé˜Þ?µhÞ¦ãÀéÎÆ)ôù ˆYß«iÛÑW³€Á`¾„õ·@à9‰Øˆ ôÉ´VÍìX5ö§Æõšt™~%]£øxuÛÿþÔ´n†-»YþÇs©†@Ê»»7j5ã‘” AhÓÎ iT«å´‡ÝÏ”¿5m=ã~."ÔY÷öü2¸c“ºuê6nÛsô¯Gžæhu×UgÞß?X§æõë6jÙ}ܪÓïò´D¾‘/àç1Èž­9^ÚÎYÜJ~níìà *î—k¶¿ ›¸ýß·Œ ‰ÛûË”ƒ”VBb96ݵ¦Š­mØâÓçv÷ôä~q±ç½Ø1qÆž¸ £6ûûè†A^wÖMœ{6M‚ ‰QWÎni∟ 0˜ïP>òaZevÜÕ½›«†ÏëàÁÖmDHúòÐÛúËÿµ{ÖàJè¿¥á³ÿP¶\pèß+§·Œx¼~ì¸ý±rŽkƒΊ×W>)4þB‚œÆÜHQ"¹ïÎ~d—ëXÖF“~yάý)Íþ~é¿+F óºµiÖ¦—2D²èÍ£'í|WaÜ–?/ü¹e¸÷­áÿû+E•oä öa¿/Î[(®4aìOÝl„nÕº-ÇI½ù"G?@Ú†NX0¨–c@“Qóz9ÇßýRöý&hj3þÛôg’×àù£›–uØ´5· ÿQä÷ Ü"0˜" ké£ -j×®U«v­: [tŸ¶çYfÆÇ¹*£9Ér¨6¼C°½½oµ€œ?7]”WÿßìÞU\…Q@ó1Kú:¿=°á~Û£EUQöÝÇ*DÈ“¯ÄÞ¡¶9w_di‘—p6Fë×±¼-R¤Þ‰SØW­WÞ™ 8"¿ÿ;qåäŒ B“veÝñÞC—ŒkVÖ‘/h1vA;Áƒí»cdÅÚ"æ:†zÚè_½ÂµsàµT£¿ß»MýxõÃIJ7·RUŸ}%å‡]}š7nÐÈðiÞgã{k¶üã…8µK½:®ÓZèÓÌŸ—ýø~º`0˜ïN¾ÞS€¨êºoݺsûÖ›×.ÜùK{ÛW¿/™ýç'µÞ¿Êµ¯àÄE!­äí)л]±~ÙlÄuoTÓQþöJ²BèÓ>„Ÿz1FBh²žÞÏóéÙÉ%_N!eòÕh¥gûP{ˆxÍ«‰??qÑö“ÿ½JUhõ¡äÅŸS¹Ö¯ëÂÑox·àg?º›®úv>â/5ÙÓ È"¿4‘-ô0ícñø@™¡ü|Ÿ¬åQŒÊL‰F™°@ËýäÍ\$¹€/ö{`0˜BRQìFȺWl?nÖý›c¯œ¾—Þù'7D 96,€hòÒäÛÞ‰o òœùP™.×Â2Ê•¥¡’KYvª‡²\T§n¤H<žÜÈqj]Ý"ˆ«ÏܺnÃ×­{6Ž?’*çºÕíµhbŸòBPÄl<ü§…‡6álÌ÷åã#FÙÓ隀,®“oH½áˇýìÇEˆúÑ_ÛÚÕŸ¾~îþ-û— Úš‰ì|š„¯Ö±,_÷ŽŽkÚNû’صCìXˆ¢²­¼øSʵóè¢!®6yiøöí‘S{/ÊV²Å^!õ‡-ÕÚ"`[mìúE.[÷n•ªà8ÖíµpBï  R¾Û0dä?¿ÜÔÜImáûçè |ý<ú›dyÞËùý¦ÄöÞµ«—WIìûíæàvUVñkìçŒ×šÀ`¬£ÔÈã3^?þpõìÓ3ëï¦íU«ÕoßÅ4oÑ:1!ç•O™K—þ-D^•÷bYD­R+Î &ÿ&£¶88•Íbgefòù¥ò‡Æ/à 2³2Ù,úè ,ÄÌøÛ‡½Nzä턳ƒ)IÙ±o’8†™ïb±Ø¶¶¶O?¬[·>H©Tþ˜YÄç Dvö7nüg/³¨Z\h×DƒÆMŒßo\»ZZ³,]þq÷“ùÞvÁžÕ¸\.ÀïÄÅ`,€R«Uo’Êy7¤ÊbgOóc¤Réû¸X– svvÖt¯Fýaþfdf>‹~ÂãqËúˆD"rþ|3qÉ']þñRìáØìç8+0˜| p kQ¦/£ ‚ÈÉÍýøñcJjª$÷]^lgçîææíímogG{…(b ó= B¡TJ%R¹"ïÇÌ¡ÀF$ ø|ó9sðÔ ó€,–P(èG0!„^b‚;ë0Ì÷Ã(F2x.ƒÁ1Xˆ1 ¦ˆÁBŒÁ`0E b ƒ)b8xÉG ƒ)Zð¨ ó B«Õª5š3ù\‡Íf›"Xˆ­“óîÝ;Y\O—w!!þ‹ÿâ¿Æ¿ºÆ¢V©B[.0ÈÞÞÎRƒR«ÕÍv÷òâóy è‡ú«R©S’“´j5yÝ5,ÄÖÈÍÍyóúmHåJ870˜|ÉÎÎ~\^lÇ ÅFCeË*åò<Ùºœ!›Íöõóÿî-Ôh8Šöb!f&>>±rµªeƒlllpn`0ù’——Çf³Þ½yj¾W"‘)ä2­FûÃf‘FC 9áééû.ÆÑÑ‘¼ 13Ë”ñ‹Å8+0˜‚ ‹Ë” xÿö­ù.­V›“-´J$’<—F,²ËÎɶ³³c³M+a2 1R%ßÿóÀÿÞ~Ÿ¡â9yTmÚ±g·æÁâ|Ǻ²·ç]ôì5²ŠÝgŽ‹³ʽ3¡ÏÔ§2úá¶¡Knl̽ ÿÔØ^;wöòâÊžÍè;#}ØîíÜ¿ä&cc#´¥®S‡Á`¬#‰l™ž ‚P(aõUIª;úôÙ«_­²8|±{PͶƒ' oîÍ+5Ó¢ÒåaUˆ É“=³gͬÑoÌÒiUDªäW7ŽïÚ4öïkÖÎéäͳzé³ igvûü8Z _fèî]ýÞ¼TqÁñ¿q3À`Š9„õÁ²!DÕ6žÞQϤUä$Þ;4wî/£¥ÛO ³)Í+TÐ W"ûöšyQ) ænZØ¿Ay[®ÀÑ·êOV®âô`Ӽñ?èÊú æ+ÿÛæuGé^;ÏâÙû5è?±†mêµ?ãó¾Ê«ì‹Ã‡1g¨B¬N>·ë–<`àð:”7CAÀÏc‰âÿŒ|.A²g3:·z*Å0PöxJ§Ö#Ϧi²®Œí3õ©Lö|^§vÃŽ¾^еSø?g"¦èЦM»^£~˜­sÓ0„$uA‹7ïå‚®íE}b8A›óø÷åcûtjÙ²]§Á36œ‹SèoÉŠwú4k?öZ›ó„8_™BF6*3 ò‚DD $}:½MËA;׌ïÔ¬A³î3®djI×¶ÿ2¸c‹úõš´î1î·ã/¥„” {z6i3ó±”@ˆ@Ú´óC›Ôm=ý±D÷3åŸ!ÍÚÍ| A„&ëÞ¾9C~nV¿~ý¦z]õ4W«»®:ëÁ…#~nÕ°~“Ö='®þë}žö«I1³#Œmî«KIȵ^G6 oGÚ´+g#yþo’îÍä½ú,†ŽM"¯®lkºèÏvu÷à {¹vÇëÐ [‰»îÔC†SòÁ“ËpL>¦ÃPÞ‹“gì _÷û_QëzÝ]?yî¹45ÊN8|éïˆFŽ,+á`0˜ÂI­Õ†I ÂêGç¹@úŸZevÜÕ}[«ŒœÓÞ¥; éËÃ1õ–;µkæàÊÚËÂ9®h1ÿùK'#F<Ù0nÂ÷rŽsýúΊ×W?)Ò„‹‰rBúî¿%A mîûs‰œ Ÿ„šôËófHm6ÿÈ…«—Nnây{ÓìM/ó‚Fo3y×ûà±'ÏŸˆêu{åèYg’UùD¾ ÆÌ¡XÄêܘG\VÄ6Ï`ž}€ÈâÓ…(h2~ÞÀZ>vŽMFÎëébï+Ù÷“8mƈSI^ƒæjZÖQ`Ð<ü—ÖüG»ÆþЯ‘Å`Š”¯EŒ@úxR«ºõêÔ©W§^ãV=gìÎÊüø!We8°ªk_ÞÞÞ·Z@öéˆKŠê3fõªâ&àˆš^ÔÇùíÁˆYÏæUEÙ÷g¨¡H¾úŽðµÉ¹ÿ2K‹yÂÙw„ßOåm"ín¬Ò®JÝòÎ\ȱ-Óbæ—ǪÀGš´kŽò²hlÓ²|»€cæµ<ܱ÷ì[ZÄ4í°8,È”‹…†ç{·©ì ¿Ͻ^¨XöæVªê³ Rù!²_˦š>-ûnzoÍi­øx1NíR¯¶‹¡{OèÓÔŸŸýä~†`0˜ïNATJTeõ¹ÿݺùß­ÿ._8±}V{ÛWG—þrê£Zï`åØWpä!!MnÌèÕ¦¢êOç¸7ªî({%Y!ðiÂO¹ôNBh2£ïçùôø© J¾œ(EʤkÑ Ïv!öà¹7«&N:8qòâ'ÿ{•¢Ð{%ˆ¼„óqj—zuœ9ú`ù>ÍüùÙï¦+¿˜2j‚+sµÒ8©¦ž=}l‚&'^l*¹ `Á•”-pk߉”ªÏ÷ÉòË d5Á¡ÌÊÕ(öj½Ÿ’H$¹.À`0ß—‚ŒšÐF GèV±ýØÿ=¼5îÊéé:¸!„‹mÃB@+O“l;'4 y.<¨L—k¡û²¬•?JC$—²ìV e¹¨NßH•¸?¹™ëܪš#Dˆ«Ïؼ4ðÀñó§Öÿ³{ߣR«þÇw ”g䪕 ûú5ßGÕOy}«‰”pYö¡­¼à®k2{xÓFáæ}8ÿF&iåÉX­!C‘V¡ÖZÈ]B•­& V·V™®€!è¶(„/ŵ³a ƒ¦îÝú³;ž·‚Á=ùŒ#&€€Þ“l|*ç:‡Øs/«sTÂ0ª‚@à9ñYZEº\ƒlôÏÝš¼â;ó!¶åÚy«÷ÞˆKO䄌òpgW·;p?:¾ÜÅtqýz.l]L¸nµ{O©Ý{²*#æÞ¿Q[v®›Í®¸w¤- šºo[Náâÿ°B¦Ç£õðúÂw{¶ÝÌÐ’¶#ù»ã®H|: Aמ‡ä©rýÊ´*€n9M6„!€Êä+±2Bˆ"ùú ©8¬¾34òGŸfÛI{?¾«NèÕØ›•rñI6¡ß¥N<<´uÇi×3 áP? ¦ðbk¥‘¢|Ð5\êaÊô9„­ˆ=:ót@Q`}7ôéÜË­áФë²y~õ]¸Aû°.9OþñPíÛÄÇwoÌûôûïûbùÕ›¸si—å:Õï>¼—Gò>MÁ×éÆÓ,C°ª„CC[u˜z-S‹¾F"h>bh_{Ò‚žîw–M\|øÖ»L¹Z%I~v~ó¬©{3jŒ[Ü·,žGÓrü´]“(% ÿí]ów†Öp÷b x„ôC†$3SÐfÝZ¹æô«4YöûË[Ï­Øo`MCP}©r\›Žje÷zÓ’]7>d+¤ŸîXz(Ù³ãÈšøÝ…L@䢥Uf¿»¸sÕ5Y@×AAB‚Ы@úÝlv#ñ­Zñû£”b€ìéÌŽÍ@È:û†Ô¶thg?2<§êMf´¯7mÝœ[ü:t{²ómn<LQ*•—/œó/ãOÛ®V«cÞ½kÚ¢åÇ„8—||Ë\¾x!(0¼*1~gEòdRœ L!šŒÔb“a³YÙY™|ÞnÙð‚ÌÌt6›.¼Xˆ-䟟üé#Aü¸k§b0…‚Ðj““>2>D²ØlÛ'žˆìíø|Á—7zø¾Xd÷äÑ[›2mŽâšhÔ´Y¾a]¿rùGÈ2…B©T*œ]\<¼¼mlEŒ¯™Â`0‚ ò¤Òä¤éééB>Ÿ/`Z©T«ÕÃB]œœÁö–$™ÑO£y0ZZèצľ@HI&%ó̾èîRæÙ@ÍRc!Ædf2oì&CA÷E¯›æ;Èß Ál&“]D5Y(æ„äý&ÃÇøZf’Á¦“*Àsæ¤D7âèi Ví $Xš™†L™§‹14KùÕ<Ì_ˆÍŠÁ`0˜oöc0Lƒ…ƒÁ`м1ƒÁ1Ø"Æ`0˜"/ƒ‰Á`0E ¶ˆ1 ¦ˆÁBŒÁ`0E b ƒ)b°c0Lƒ…ƒÁ`Š,Ä SÄ`!Æ`0˜" 1ƒÁ1Xˆ1 ¦ˆÁBŒÁ`0E gcNvNÎû÷ï!›ÍãñY,@÷j‹ñ R* BX¶¬½.Íâb †N®$÷íÛ˜°*UJn*²³²ž=®P¾œØNŒË´˜ƒ…ƒ¡“ŸP¥zµÀÀr666%7ynîl6ûíëW¡!!¸L‹9Xˆ1:Åò÷‹K†!IăjÔ¨¡s¡‹ÅeübÞ¼ÆZüá”ò÷Ò¡¬k-•ŠÜÚÍ‹tÓ‘¿Y9pâý*k÷Ì© y¯ ž×cë¶^\«aÉbþ=rɣLjÊvô×xjÒïŸØûÇ…;/³”l[gߊµšwïß¹†s¾÷9 a™Ç^ü*Ϩ ²ùb¿JÍûéßȃW”¯U<4jäö8µSã{çU“¢¢Mý{ì°µ¯´ã"7w·‹)P®4ó¿+B¡ÀÖVD*ÞŒ[~YyþYŠÆ>°~Ï©ËfvW¹"„Ö®YsüøÁ*DFî¦í‰DB¡¿{²øƒ-bl*ÌûýTª¼ôŦˆãÚi]ÍväÞ[7nÑãÐaÓÖÍñYñOo]ý˸w ¶L«ëÀú¬0@4~ODg]ÊŒ·W"ݰt–fÃæå…E,<§`ðêä[i•ê&%Ö¤ß9—[Öž÷¶0¹ZÀÊeìö~ƒÖ*ûoú÷pc›˜ÓOèšãzyU‡â0äèÈ‘ÃÇÿxýêUTTT¯^½pƒ.‰àák_ ‘q{ß5iИñ«z‰y,ŽÀ¹lýÓGøKÿÛs'CûÕ ŠïÜzÔ¤ZÂO¾“y¢ͪs^ŸŒ‘šl-MúÍsò*Ýy¥¬|U‰'¾à7[6¥} £È³ÖÐ%cüÓÏlŒÎ-Q»téÒ¦+W®|öÜùÐаÖ_½r·È’bò^-êÙièÑOjý÷®ã.œÛ5/¼[Çvm~4eùx%(ëÚ„~Ó£e² »ty,Yc:Pfȵš¼T9ItÙ®m·ž>µµ+[÷[›óäØŠ º¶m۱˰Y›ÎP `-Lf À5ÐŽ­HM‘"þÂö£ûumÛ¦mÛnC&¯;óNŽ€•TèÏúpnˬÁÝ;¶ú©ç°yÛÜqȵåx2"ðnÆzARbuÚͳ²VüBä*ÃaÝ&žûkˬá]:´kÛmøì=÷R>\Ø4cHçöí:ô™¸æß$ ïù¬nFü•jÈ/Ù“é]Ú9Ÿ®-p@ù.¢«Ž®gà™*-„±X\´rQÔûOŸùçW‘cÙæ£~éåËû¼xÚø·/‡^×)±&åêyi`;_‹:\Ð\…¢Q#šØñÅAM;ûð ñøþu½ÅBçJm[¹k?ÞNSæ—U_½|Ëß0»nò–~5Ë•©Øjúyû~ë—4wau­ž3w^äî=^^ÞÆ-¾¾¾»"wÿoÖl¬k%Ž¢³N0šqÔ„…ù!úÎ0ȵ³ç‰Tmý9”ëÚxäÊ}žÜ¾}çþƒû÷ž‰¼{öÔÕ‰ë~ùÉ“«øxùƒÚù§Z.†QBï&eøçž>ÈДó²ª"fcï6 ò¹bŸJ ‡/Þ¹,XŽ ×Ÿ¬›ýþñ¥Sï>$$ÄżxúBJø+4„•T’·7R¡çð@‘Þžã¹7¨ìøûS°Oo†zÂýä¯]}ò­¤ZuaÊÕóÿ1¶ð-ø²\åØWôÒÆâŠy,žCEGÝ‚ÅqF®Í×#ðå!PQÅïôÓ‚× æŸ^лª8ùÒ¦I‡ü̉úkA»"5c<== ¸SüÁ£&ÌlÉÜ, 6ü‡-ò­ÞÒ·zË@+yýφ¹›®îŒxÒxq MV®F™xphûƒ”Œ÷H–çÓ“g5AÈâoX¹öŒ*´Uï•í qÓfý·aƯg“ÊU«X¡f·æÍX‹Wš:ÏSA(RåZ¶‹˜k|®f \øl@Jkñdª'P\¡½¯&âä[i¨Û¥‹ßaåDð‹s•ŵåC¦+Ððå!P¿Ý¼á&§Íáµ#êÚCìÚÿoÛ§K–.¼0ötW÷¢4‹ØlÙ"$&&B½½½q3.Y`!þ°ÅÁíÇþ}{íÇ×9ššv6laàä]ÝÍr© ¢,¶~ G,áIÇ,X3Mk·eºnÜ”<&rÃùÌ*3"—´påPÎí£ùv ±ø®B–Fž£FU"”J ×J<-„æÖÖKµóø³˜ÀK¹ž+ØA ûòÜ+€Z²@Zƒ³i•jj¿ª÷VûF]jûÙBå:Õ¬h¯¹ÿ2[ŠTˆ—/[»mû___Ý–øøøð‘#‚ƒƒ×­ß€[aÉ‚*íP€íÀòñ†Ÿ°Y‚Ž2nGÿöݹ›C·Cž³ WèdÏABï†^0åÒ³lÃêQ#Ûu™ù_6a)LÃuM1aÙ×õK'œË«Ö\ÍÐ"´yŸb¥,×zaÝ1òO×S•€Ð"k©€vå뻤ËqRýaê´{ϲ5`5ž  ¶c•ÖªÇ;vŸÉqofÇ¢G»¹ZˆÃ ?Y\{.R¤Êµºªô‡™ªÂ…PÐj|—ZÎ åÆ;㳆&ûÙ[ Ï£ŠSO@=f¬\.Ÿ6uJvv6 33sÊ”ÉJ¥rdø(꥾—†ë‡ÐaP}¶x$KèÀ#¤ñ9™YJdÜË÷î< ëÁŠ_·Ÿ}—‘§ÖjÙŸžÝ³-Ñ¿÷È*vp\š†·´{±l÷Ùré§;‡–Nöì0¬†´&Sô m…³;{æÝÙ¼æj¦±Äe«¹ O§ÏŸÇã•¶åðJ%xBßÏç—Î:L)€C«ƒÁ`0˜ï ë0ƒÁ-xøƒÁ1Xˆ1 ¦ˆá`σÁ-Ø"Æ`0˜" 1ƒÁ1x1Ã@NNNll‹Ãáñùº™u!a‰ø P)•:0 ÀÎΗfñ 1C'W’ó¾Rµ*Ž%7ÙYYOŸ< .$‹q™sð„ †NbBbÕÕƒÊÛØØ”ÜTä¹¹³Xðõ«—¡+â2-æ`‹ƒ¡YÐß¿lI1$ ‚xðàA5h‹‰Åbÿ€À·¯_á-þ”ÆW%Y×&vi7òx’š²]þfu¯}}%€¼×Kzý<üh’&ŸÐPÞÛ#·?•0¼H“~ÿ5³ÇôîÒ©u‡Ÿ»ÿˆÒ5ˆ¡…0µ™—ÆýܼUçm‹ÖÚu8jþžëÉ*T´Yªútxx§æ­Úu_ô„mmÊ?£;µmþÓ¨?’4ŸrA â»~„¡­È´P¾6õD»Wgã§l»Óiº——Òè=“:Ö(ëãå_¥åðuWÒÔß·#„Ö®Y3iâ„áÇ™ï‰D6B!~Fñÿü¨±0xΑ“¨æÒç›·'¦t1Û‘{Ä%C†L]ó¿ŠB"+þÑ_Û×Ιøn~Ä”ºö¬Ï c#7vòÐ ¡Ìˆ¹º{馥³Õë7 //,â—óðœÊƒ×ÆÈ*Wc¢I¿{>·¬=/æD‘¢LºœÄ®¶õùÙnô×6kROé³$±÷ÖËkvL9¬7úçÌäò‚ï·#G?þàõ«WQQQ½zõúA[t _û,ˆŒ;û¯KGëTÅKÌcqÎeëõŸ6Ü_òßÞ;™Ú¯V8|çò­Â'Ö´Iºxø½¼ÈÍ÷hZóúdŒÌÔ« É¸u^^¥‘[©^iQ“ù4ZfW5ØÎlILeìîß®ñº¬žÜ²Œ}@“I[æÆî\v/û{u»\ºtiÓÆ•+W>{î|hhØÆ ë¯^¹‚[gI¤tά#¿à’¶QÿEþzÉ™qÝ·líîÉ‘¿^2dNÚˆU®Ÿ<û(^Êq iÖ{ˆV~¼ìk“‡.|‘ÀânÆîØÔÕÃðA¨2äZ 'M®ö†m,—Ö›ÿlmº„6çÉÉ»Oßy“¦¶ñ mÞ3|hK?Ȳ&s´!ß5PÌ~˜’"׆ڰ@ŠøKö¿›‘l=*6ê6vD»²B,¥‚HÿïžmG.?ÿ¤øUkÙÚíÖ‡Í7néç˵OFã›ïÝ:”µòÏI•ªºWgjÒnžË î‘ðPëcÎ=”u}éÈåOgl]ÚĉäÁŠáóOß<¿vÚ2rA ›9dPù«þýI!ð®ÖaÄø¦9Ƕºø?=Ÿf±@qèèðvÁ®B¡k•Ž9iw^æZkMü2}–Ìê žýµmé´¡½ºõ3wí¡+o -P›ysë™dÏ~³G6 pØù76³%ÿñ¾#qŠB$i¤ÉOÿܰñ©Ú¿}ÿ@Ê~zàŽªÂˆ¾õ}l9¡kX«^e¹™ßHk©P'Ÿß}—¨3ubçW‘c@ÓðÙ=|xŸOhS¦]zuò 4©×/HÛúÚÔÌZôØNǬœ÷ïæ‹ñoOo8•:rbcg†×_@ÛŠ#‡5 °ã‹ƒštòá"Aã±ýëx‹…Ε۴p×~¼“¦Ì/Û¾<*ò×R46ÞU†n¹øômô_ ë¼[?àçÅ÷$hiJÄwâÕríø,B™© À·gÎÜy‘»÷xyy·øúúîŠÜý¿Y³±®•8Jmg? |WDWORúäoW™lé½P\ûŠúÎ0ÈÛsTª±þDÇum4byý> OïܽûàÁýÎì¹wö¯kVÏêàÉU|º¯vîPÓÙp}¡wã2üóÑ25AžÖBU¼‹è×>ÂЮ!Gì]©ÁÐ¥C;ð:6X{¼NöûÇ—N¿OLˆ‹yýRJ”Qh+© $oo¦°<‡ºØxn *;‹kñôb¨,Q`íÚSo¥Õª R®þ+)3Êßzê¬EØ.M¦ »¾~ìXį<~s ƺÇq¨à©K䊹l®C®^äD\¨‘kó}Îþò¨Ø7<òú“ñWÅŸçm}{©åÖ…ÆþÙ°ÐÌj¤ý.ÎOOÏnÄ”!.}$F1m;ý;[À‚†"ý0Ø"Ÿj-|ªµè®•¼>»iþæë‘[ž4ZX]“•«V&Ññ%³ÝSäëюݵ±£‡ÈK¸u`õúT¡-{¶¯dÏҬͺ±iÖ²s)öA•Â*×èÚ¬ÙÉ¥«¤ÖS¡U¤Ê ¶³ǘ,¾³€ „ÒZ<Ù YEÁm}Ô[þ|+ q½r)×whˆ´W›i9z¶KŸÊÙþ>ú§î³od!KašGƒeW3ü=r®¬Yw=C"ò>}±\ê„:rtÇÈ?ý—ªD„Öj*XvAõÜPòå8™>¶ªôÏr´d5ž²Žm_¥•»òñν纵 µg™öZ’Fï]u1¯âÈeË–Í»¾iû# Ê·  ríy@žªÐê6*3eª Bëîîò|F ŸÐ‘·r‘ávòöx´Ô±f;o>Ç­~;Oeô©¸<Ý.Mú­s)Â*=Ê|—yѣnj•ËåÓ¦NÉÎÎdffN™2Y©TŽ E½ñãO øàQÖa ¸HŸ‘›•¥2µN¾w§þ5Y÷W/Ûqþé‡L¹šÐ*s>FŸß»#±LÏUì à¸6ÙÂîÍÖßöÜŠÏVH“îY•ìÑ~hu{h)L& M…þ3;zäÝݺþz¦°Äe«º OgþŽNSjòRŸÿ½uÕÅ4 ÐÊÔVƒáz¶^Þ]qæuº,'þÆÞ•‡â•@¬ÇÓçÚMÜ4ñOe.-ª:M?kÑC²—{לË-ÛwJ+ï2?MéSFriÝž§ÒÏzdæ»7â§_ŠºþAª”&Þ8°þŸLí·3‚…åF «,??yAÔ“©$ñÞî)#ËÌœSÝžÿÀ™ å‡F-8ñ<-+îÚú1‹c|‡Ì®çô]fÞ„……Í_°àãÇ3¦OÏÉÉ™1}ZJrò¢E‹CBBp»-q`!¶Ž LÏNaŠ£cúMÙOêm縴ž½qIoß„¿×OÖ³}‡ÎÝÃì~lßgÙâž~<€¢ª£VÎïêòxÛÔ¾Ýú„o¸çÚmÎÊABh9LF °B¿i|hÛ¡#Ï/±]·víÑ£¿÷éÓwÜøñ´]J¥òüß•ñóÃeZÌÁqéG“r*üç®c>N‘k‘*çÝ•}ÛÞ‹÷´ÅYc‰$·¤DuÂĉ›·l3v¬ù.in‰IÅ|Œ-âRR&\Þ¿ãøµèéRÂÆ=°zë¾ÃûÔuã✱@Rr’·§wH•ªl6»ä¦B«Õ>ò()9ÉÃÝ—i1>¾çæ[Ó²M;ÆíÎýS c«T*• ¥‹››·¯ŸHlG[ç·øC„$7çcb|zjš@Àç—Ë b †¥R¥R«8%Ù"Öhµ|Ç+ÕKã•ð„ †>ŸÇçc Ã|'8xö#ƒÁ-xÔƒÁ1Xˆ1 ¦ˆÁBŒÁ`0E b ƒ)b°c0LS*†Ç`0˜’Dé|‹3ƒÁ” °kƒÁ`Š,Ä SÄà™u SÄ`‹ƒÁ`Š,Ä SÄ`!Æ`0˜" 1ƒÁ1xBƒÁ1Ø"Æ`0˜"ϬÃ`0˜"[Ä SÄà  SÄ`‹ƒÁ`Š,Ä SÄ`!Æ`0˜" 1ƒÁ1xBƒÁ1Ø"Æ`0˜"†ƒ³ƒ1‡ ­–Ðh48+ЇÃf³X¬Rn2b!Æ`è¨Õ‡åæéÅãñpnuY¨ÓR“Ôj —[šÅ 1CA£Ñháë P(äò<œ!E ‹Íööõ{5§Ôêá¾: †„D"-$—˵Z-Î"‡Ðhär¹«»Wüû‡ÒšLÜY‡Á˜Ðjµ99¹6F­FÁô‘<šÐ®åÐ3©j„:íòšQ]Z4nܢל1íZ >‘¤&Dh¤¯ÎlÛô0GÂ&ûîoFîÿ bÿ;~¤Ïçul5àPB~1!%G•tr|ß9Ó5ß1žµÊF(ÌÉÉ-Å·F,Ä%$¹?£W›?Ñ?=¦ÝȶúŒ“÷b^ßcÿIÓоË_-ê×cô锯Ó9%³l@QÇ“ò M“þðÄúùú÷êÖ¡KžÃ&ÏÛüç£LÍ·¹Ê{wqOä3‰Õì!R*•Z€¬¡ !„q‡¶ü•XaNÔ¹¿7ÿlõ[!‰^¿þØÓl5ÃÉ„$zÇꇕÇvöæ ¢FXaÁɳ{{yårrØn­Ç5ŠÝ¼þV–ö{Æ”„R©$Jïó;ö—`ø¾ý7oìíÃ-¡ÑG¹#¦,{2pâÊiÜ…DvÂã¿wmœ?åýœõkÛØD–Ÿµÿh®&}±mûŸÚ 9‚°¤Õ€Dª© –CX =‡£bn;ÒƒAЕCýñÔºk¢[*"Jˆ¬P“Ã÷ï2ÈcDÄáwÕø~%ð„Ž 2üEŸ{:¢~ÿ ="ãÞÁ²²SFÿTÉ€S@>“$wFm߯–.ìo’c ¿êãL6¾yì¹][]|–¬—kÔ¡‘T @ʸ#GîKP°¹wË=§Ív @h3/ï?ïyó:·+;~÷¶îž&s'ïíá?R=GÖwa!Dä½Z4`fê¨ÑU¯üñ÷£RŽ{h‹~“ÃÛø ©RnÞ¶ÿŸ{1[ï°¦ÝGŒh_Þ–~{Òæ<>ºqÇ©[oÓT\ŸŠõ:ùsE  N¿stç3wޤʹÎ5Ú Ó¿¾»úùÜþ³Òº´ÿý÷‰SÝ)Ø âzîØÞË‹›÷jÑ€IÃÃ+_Šú;:9”­÷óˆ±=ª9À¬«ôä8Vï¸~åž§½Ö´ƒß±Â£¯W?‹Ø". E•ÃûO\—!¶îüÿo´Ô±Öø‘ìíË㻬ßÔÕ“#³lä‚”ƒC¯?ÿÈ—GdßZ=qáýÀ¡óv®® H¹¹oɪi3$V÷öã“"Id^[²àˆ²÷¢½«CìT‰ÿmŸµb Ù=9X }²iÒü«^æF,¯dŸ÷æü†ù¿Î@Û{!€d¯¾»rÿ/Â)|î »éä½Z·“ßgÖ–¹AêG—®˜;]½ic?³ä QPk/eı׹ÕkŠ¿P‰SRSÙº¸º’7¦¦¦A\©K7ØG\*eXòhÓ¼ ·]z/Þqüû~iÏ¿¹kIT‚2ŸÓTŸþ9õ©Ê˜ û"×þpdé܉*ë¡!ÙÓí³~=™U{욨c·Íh®=·fNT‚ʤ¤Y7¶ÌÙpϮ󜹽É* à8×­ïÞïž>˱kÏr5tSÇJàHöödl­ÙÛ÷¯Û§‚-U ò^mÞ÷¶bøú½‘k†ˆZú˱%th¸j篡¶6fùccwÛ€ðgŽ®´¤ÂdP'Õ§s{ï£ZS'üTÞÙÆ¡l‹QÿëèÁÕ9!ÎlF:)Óë·~;ˆˆþ£H¿ýJ* ¶c¤@qØØQí‚]—ÊqRo½ÈQ#ÕÇ¿·]ST4µ{˜‹€#*ÓxøœŽ1QÛeä•é>¨ì*×râBŽ­oÓÉþ>4©<iÓnn¿>µgUw![à\±ÓÂßOíäË%,ûÊÛÙÛyW.§+„€!2¶ÇüÒ¯†—­}™†ÃgwwJ8¹÷•„0O´ ¨l¯Œ½ž¢¤%°ðŸýûöÿºlyrrŠqKrRÒÒeË 1¦êpNô¡{ÊࡽêyÛr8×Ð=¸ßJëçAq¥ÑÓ»WöÛûÕ8³“cü©¨˜ý',Zu-Fªï·8Ë>¬o« {{ŸJA"š˜BÛ #ÿ׻𗨾LƒA3vLüëðY¡[²AIì­TèÞ¨Œ^cùžE,ŠD´™t˜¦í¦:ûUû‹ØF¹F\ûŠî|Ý‘€ckÏj©Š rßÝN…ž-ƒE†¹nõª:Èß]OQäº5®b›5ãË÷œ¹ù&MnPé¼äëµ.uBì ™ôÀ±+ïÈA qFˆïÕ2Ìê¯èZ'D${{+UÉޏ¬JbÓòˆ/Ôa4|ÄH•JµqÓ¦\I.PvN4ÍСèÑ.å`×D F™ppØÏM¿¹žÝÖméσõWEÕΉ}zåLlüÇÄï^?{%E~Jm>BÌ÷hl§×Kžkír¶'ßÜÏT…øX M‘rã“Ö¹KE;&®&åüò¥I™Âº Ö´gvør] ]R·WbôÝ{÷>zððñ?ûîŸ?ó߸ÓÛyp­Î—s´0éïÕ<ÄÐÕÇs«]AôÇ‹»éêJ~…¼™éM\"C¡eÙ:ðŒ[ ßEÀJAF3šÁdCZÍ–Óäåi GÄzG¶Àð @Z©ér‚eçdº(€<'>Tf*4$G¢*“Ö.ˆ:uñïÍç¬ç»…6ï=jT‡@µ4W ¹Ž\@9X#9BHŠ€1þ6ßÏ2Äòù@™¡Ô0%Úp RKվ̖suqž5sÖ¢%‹"¶l3zôæÍ›323çÏ_èää¨PÈœ¶Œ_•T2AÀ÷í·yƒÙ¨ €6ûæÖ¹+þM¶¬\¾zç&MX+ÖJ½OŽþÍsâ³ õÅsà"u¶‚K¡!µL¢<'.‹^‹@+OцÕvy¸ëÔ‡ÕýÊXœ+̶ñ©ÚÔ§jÓ.#´’7ç·.ÚþßîmÑ æVCÖ‡!"SV˜XW)\G>Pe*‰BöÕ´°øN¶V‘‘§E6:ÉѪrUH皀èôÌøølÐgdÔ7²½6$‘jôò…H§è®­Åwä³´Št¹ õ:§•§)ß‘ iÚÎu­Ù}\ÍîcU™ï^:¾cÏæEœòÛ† E$ÉThÁ¢ ±î‚§ %Ϊ,A裬‘§+¡@§Ìôäj‰š`ñl9ˆ.õ…%O& *;jô˜-›#¦OŸ?~b€¿ŸT"a.šRªW,DíÄŸ’ò–wå½ß·ùbV¥I[v®ž7}dïuË 5³öR¾ê\µÖðS«ÌP¾›m94ȱs€*SE0EƒëÑ~ΩÓ;8'ÛøÏGuÅ—k3t ?Ožô6Wc-p`-ù„*WM~j” Àw²ò;Ë,o Ïë6þ =aÊå·9ú§peêÝ·­ñ^?t˜0Œ/Ö™ˆɽaüpÄÁöPú.GÅàØ ‡†l긂¤ ¯ EФ›O³ù¾u]¸Ìø€ãXûçAÝ|9Ò÷ ®{oNÆÝ×ÙZ³#ÙM?2õz¬”Ð_1åæ+©(¤Ž3‡!9êÜw .ëÄ_ì$FDnnNãõ»té èÞ£g½:µ$¹9æÑ.ÝÍûˆK„<)^Êr®â w<)’n¤)¡ÍϘP¦ÞŠ7xS•Ÿþ{›gZ݉m%4¾{}ovæ½7ŒÎgßUÌõÝÐæ}Ô†+é´ ªø½Ãºõ_xŸ:Áòœl¸B 1ÇzàVP¥ügL…*õök™(¤¶3@ȆùÚäL4hË­Ù°Æ‚èëŽE§äæÄÿ·wÕ‰j€LþãÁÀÔWÇâ;ò4>=73CI\«N5ËÛæ½ÎTë•‘º÷È¡±=Z©Ï{ºaÝÑiy*IìµÝËOdúuRYLV>"çáò>]÷\ËRjÕyI÷Nÿ•Ä j`Ãr¬3¤¹Ý»>Ï«Y±7¶ŽêÑgùƒlÃQzIh³î¬ßpæuš4ëýÕËNå÷ê `HŽ&÷]t? ¾+çËe!¡ôŒô^½z­]»¾{×®™ƒk»”ƒ…¸–©( Š Júçܳt¥&/íåÙk/§k6O“O}&²ïmÜzñ}Ž"çý•¿Í íÝ3@`-4¶S!ÍìÞEn>ý"S©Qæ|¸¹}lï~+åš.Å•ލÊz¾wë­,Š¢ò¼:ô©Î~¸nÅ® Ññ™r5¡Uæ|zvá@äÇ2=†V²ƒ œmö½ ›Î¾ÉåÄ]üí/IpÏÞB[àÈC²„LIV–*ÿ†mšb‹l«„/Ú^X6¦Ï ÿHªÚ¯¾3è÷êœ € ® Ývž_·ŸB”Ç&ôŸ¶ïƒœ4[—ïÓ¡¦(ýÚã ýüiÒ)ÔЀ¸Îøå3Úp®¬Ó£ÛYC/\Ú» ‘çþ"Qå1ó‡}80gH÷Ÿ;÷²ãM`ÿ¹3›;A„„aÖÍjϹ´|T÷Ÿ{ w$©Æ¨¥ã«ˆi6ŠYà¹7iÌ»¼|dß¡3÷'† ]4·­+›!9Úì—ç“•€¯79-%Il+LMIbÜ[ê-žÐQB!»èð|ºÏ™µ>jÙàc³_å†]fûgUÔ³xáóâœìÀ¿°thD&tnoÿÛmCŽ {y.I]sG“v%òŽßà5¿£ óù‚¬¬,»4‹¶ˆ1¥ˆ/¶ˆ ‚HNI‘åÉkÕ®#•ä(•ÊR–C%_ Ûݽs[lkãáî^Zß™„…S4´ý©“õÎþuªH"&“å}ˆ× T¡bˆ“£@þ[4ÓÓ³^½|Îc³ËøùÙÚÚ”ÖæïßÄBŒÁ˜ B"ÉMJNIMO—J¤8CŠ‘Xäæââéá.Û•âWˆâ)Î ‹%Ûñøgg…B3¤h¶"ŸÇ+Ý/rÆBŒÁÐa±XB@Àç#üJÇ¢Baq^òmà <ŽƒaÖð#H@ñçGÐ(<| ƒÁ`Š,Ä SÄ`!Æ`0˜" 1ƒÁ1Xˆ1 ¦ˆÁBŒÁ`0E ~UƒÁ1Ø"Æ`0˜"/ Á`0E Ë0ƒÁ-Ø5Á`0E b ƒ)b°c0Lƒ…ƒÁ`Š,Ä SÄà  SÄ`‹ƒÁ`Š<¡ƒÁ`Šlc0Lƒ…ƒÁ`Š<ŃÁ`Šlc0Lƒ…ƒÁ`Š,Ä SÄ`!Æ`0˜"ϬÃ`0˜"OèÀ`ÈÍ•Ä'&ò¾@Èb±!a‰ø PÈóTJE±XŒK³øÃÁY€ÁÐH%±â«ÕªåèèXrS‘••õèþ½@ÿ2"‘—i1 1CçãǤµj• ®`ccSrSáææzþôi…òåp™s°c0t •”‡z‚ Ú;³Gã°2ÞžÞåku¿åV¦1„4zϤŽ5ÊúxùWi9|Ý•45(À®¯Xª­]³fÒÄ Ã‡3ß+‰l„B\÷‹?xŠó2üE–ö ËÍØ}|°…€d/wî:­ÛTÀS UzhŸq!ò)ä8,£ô¨ ì¹8§×šß·¶ â~¼¼~ÌØ~}”çNM*ÇšÔScú,Iì½õòÁZÄ£Gëþ93¹¼XÛõ59räðñã^¿zÕ«W¯üsSüÀ1c Uâ;q›-ŸÙ)ęϳ+ÛfúÚþN¯"׿Ê@»û·k¼.«'·,cgÐdÒ–¹±;—ÝËFVw}=.]º´iãÆÊ•+Ÿ=w>44lã†õW¯\ÁEVÁBŒ!!»bH¿qºgyùÛC͸ziÿ²©ûôêÚì/Û/%*@Ù7þ7jÞ‹¼¼×+û÷ž|êëüO€ —"Ü·Kï¡ã—í;¹s\ïqGÕŸ·¡ƒÿwéü®Eû÷îÕ}ФE‡¥&\ݾ`|ß^½zŽ˜q%EE>…çYÜÎÑ?÷u+']äL¼þáÅŽ:F1[ä+Ò¸ R§\;›Äëh«ÛÃq©×Æ#ïÁ‘¸<`e××âé“'‹.ðõó[þÛ ±X¼båJ//¯ æ?{ö WäKÿè‚??ÂG¯ˆùcúž÷jÛñŒ£ÖìÚ»}Fcù•KO|R‡˶. ±± ž~àðÚN®ìüOAhsîlZ¸ù¦ ýÿ6Ø2¿§Ó£g>©@!#IÙ.{±ýT^“)[öìú­»èÅ˧Ì;/øiöö=[~i"¿²sÓÍLÂt -În¶þöœ<¸¬ž´–QŒhÒožˆ×:×ð´ªÌÈ!ĉom‡PVîÛ÷R­•]_«énÛ¶ÕÖÖvÍš5ööö‡ÕkÖ …Â;¶SŽÃÕ¾$|ð„ŽP~Ø=¼Çnú¶“%%U:¬eÖ¶oÀ_¿Ý#éîåÌ¢éeþ§Ø¥^Üÿ€¨9sT‡`ΆLIx:í˜55bŒ?ùB¶Áƒ5òC jØÖûЛìúÃ{ÕðàÚ¼‰Û™¿î§+›úÐO!…“^1¡Í¸¸xéCPmɰ@P(Ò”ˆïㆽkÇg²L¡µ¼ öW)Î9sç±X,wwwã__ß]‘»!„ÈLLñ_û±à—±ª£©Øï6šõÄÂá\û`w®]C®Èž >É4ù4jÆSé»»iÐ}@€­^$¸®uÂN<ÿ¢ªk_ÞCw!ÈqY\ûòö\ýem¹P#×~uõÑfßü­ÿ˜“¨Ýº­ýýx(@]ø´AË»¾Vl<== ¸SüÁ>bŒ ›Ï2uD Ï9…P¤+¶PÌ1îañø_f²86Rõ…,ŽÑ„_?'2öÈ„ö½7Å×]|lSo°…®B ÊVƃÔ9 -‹ï*`[Ùõµb”ðéÓGÚÆÄÄÄ?âŠ[âÀBŒùÕŒï‡Zy®Ú(ã„*SI|a¨ð»Å_õñÄÄ®SNäµúíÔ®¡å…ú óœk9³²_f©Œ‡e¿È&ÄA"¶•]_+NË—->lXBB‚qK||üˆáÃV®ø W¸’×Bp` l ãyd‰븢Ôkñ2ý9êÌG/s5Å:ÎFÔ)Íè:ñ4ì¼þô–“üsÜê·óTFŸ2 …Фß:—"¬Ò£Œµ]_‹ÑcÆÊåòiS§dgg233§L™¬T*G†Â5´Ä…ó°\B–˜)ÉÎ.Øø3®{‹Á5áýˆçÞfÈroZÿ{¢@,š8BŽÕ †O<œQyîïëzøò¨ûxþg6”µàÄ󴬸këÇ,Žñ2»ž´ºë+6Á‚?Θ>=''gÆôi)ÉÉ‹- Á´Ä…óüº´Qž˜<|öSb–]­1ó«g_<®_øÂ¨Œª½*Ùq¨^^#²‹ûtíöSçë _žç}Í8'HâvŽþ¹ßìŒ#V'Ýó4G“sç—zÞή.†ë“©Z8n·™WëÕ’ŽUCŽ>e7tÛï“CtSŠ­ìúj4mÚlü„‰ÏŸ?kß®íË—/'MžÜ°Q#\;K"ðÖµË80ß”{oÞøõÂÛf‡Ú¿Ø%$&têÚ“Ïç—ˆ¼\·víÑ£¿÷éÓwÜøñ´]J…âÔ‰c¾>>¸Æs8á1†˜oŽ&õŸ©“±;Ïø_§W¶,îvÔî8QƒYþ6ųú!›íJ¢[œ™0qb³æÍ*Uªl¾+''„ÛxñÞºz ç曃”¯Gí>}ëy|† ]ª´ì>°{-n±ŒlJjŠ—§wõºõØì<Ð^«Ñ<¼}3)%ÉÍÕ WÀbbL1¢c×î–v>~ì»EC©T©TJW7·2eƒìY,v±ÈChµ9ÙYÞŤ¦¥ x<^ ñ±üÈ`!Æ`P©T*µšÃ.aLF£Õòx<·x>u`(à)Î <Çãá|À|ðð5 ƒ)b°c0Lƒ…ƒÁ`Š,Ä SÄ`!Æ`0˜" 1ƒÁ1xøà A ‚Ðj4Wëäp8,›õ=—ÔR°c0 h4Ù.îžúÑÄiÕjuzrªF£ápp;Â|¸a0t4­F‹ü|¤’ܼ<©ÅÆÃáxùú|ˆ@Ëá”à9x˜"ûˆ1:2©ÔÕÃCš›«Qk¬¼]£ÖH$¹nîî2)“XkSÏLíשÿœÓÉ”%›UöŽì¾î¢BÙ7g è>ù¯dª›Dñ.bH¯‘«Þ*@³rØ€ñ§’ó{ï Ê‹½²ß *ø)CýéÈ„¾½ç<–˜¯õö¢œBŠs)[Ä ­V›#‘”ð3å²|V«Õb‘8G"‰El¦…)PÞ›Ã[®Ö×Òõ[[Ì é»öç’½Úù—vLÇ‚ŸòÝâférœK)Ø"Æ`( „J¥ BB¡T" kþ²¸¶Ê—#®gjqÎb,ƒ-b † Ð×XO]Xv@WÎÞÃûvܪ2­¡#“ɬN»wâÀï—Çfj„žþÔo`˲6Ÿ1C³rÜÂøÎ+×vòàÈcVŽû5màÀJ·Î\ˆþ(e»ThÔuôÀ¦>¼œ›³Ç/{-`Õ€¾eF,ñzѯùœÂ‡¤H¼|xï±ë/“ŸÊMš»Þ‹zÒxÕêîÞÜÏŠÛø¥™}û”»ù÷¥ÉJ¾gåÖÂJþŒ “ÅwæC­z™«ß‘Bǹä…ƒ¡Ãf±r³³9\žåYuú—ÇÏÊÌf³ ÔŽ m…þ£;j¤Fã’ëÞrPÞ³­[N½ÈP¨eñ7®:åÛ¾eñ·³Y.!KÌ”dg« $m\÷ƒjÂû;ϽÍå&Þ9¼áh¢|W_B¡ã\âÀu µÑ³X6Báóç/ª×¬!ÏC*¥Å|.gccsÿþ=±-«@Z ÅaýÇ4xôëÆ‹ÙÕ³xêû~_7yo{T¨?`N¿Vþ‚o¨r¿ŸÛ…¬8>eÄ•V Ç,Gìjž;r_äÑ%ã·©Eµš÷ª”r$×–Ë”bÙ‹%}»‘Sl[yÑ–_Ë~½8/_36€_új¼uõn{ Y^^|B¢VK”/_ÎÑÉ€„Ñþfåd¼~ùšËáúùúØÚØü(¹ƒ$÷æ_/œ¾mV¨-®+_ lc0t„¡—‡{RJêÝ»w$2‹«¯‰mE..®žînB°ç†&õŸ©“±;Ïø_§W¶,îvÔî8QƒY?Ìç{€-b †‚@*•R*•)”JKÇø|‘È–Çã—òµá‘òãõ¨Ý§o=Ï!¡k@•–Ýv¯åÂ-ÍiþÞ`!Æ`,b}\„þèã_1_ìšÀ`,‚¥ó}ÀÃ×0 ¦ˆÁBŒÁ`0E b ƒ)b°c0Lƒ…ƒÁ`Š,Ä SÄàák ¹IBb"O`# uëH ÆiÎÅò/@!ÏSÊå~>>b±—fñ 1CG"•Ä}ˆ¯^»Ž££cÉMEVV惻÷ýýD"¬ÅÅ,Ä OŸ’kÔ®]>¸‚MI^ÊÇÍÍ ôüÉ“àòåp™s°c0t – ,'‹KDl ‚xðàA5hKqŠÅâÀ r/¢Ÿâ-þàꃲoÎÐ}ò_ÉÔ·(ÞE é5rÕ[E>§ËcV0þT²æóCy±Wöï{aöª_õǨ‰ÝÌ{,-±y«þtdBßÞs3¼Å¸€ùfñK™Æ€P `zœ'roϪ]¹ï] S‘HîÍ­ãWu⓼ï\Z»fͤ‰†f¾W$ …Üd‹?Xˆ¿; é»öoìäñù#HöjWä_/sµ¥(W¾I¾‘OùÒL#¤Ñ;G Ùýq-6$}´jÜž÷Eðø#G?þàõ«WQQQ¸y•P°c0ù¡J½µ}l»Ž n6ÓÛ‹‘ìÉš ûÒß»5]ºtiÓÆ•+W>{î|hhØÆ ë¯^¹‚‹«$‚}IJo­ž°îYÀ„5ó8²’<Þ0~YtЄ•³8úýáZɳ3{œ}“¡zTlÒePÿ&>€¨y~ÎÍÙã—½–°j@ß2#ÖýÖÉ©å1+Çýš6p`¥[g.D”²]*4ê:z`S>MæƒS‡Ž^|“¦à:ùUmÚmh·Z®š7ËÆ.Mo×Ttéâ3©cÍ ‹gVg½`LH‘xíèáS7^|ÈȶîÁõ:ŽÔÒ_Ðæ>;½ãàù{ï3Ô\{¯r5Úôéß¡¼-´’!„œoò˜•ã—föíSîæß—^$+ùž•[o(ù3òØ•WiqÙÆý&ŒhâÎ3žÒQp—’i‹*ÿ5}òe‡¿Ö³Ï?²—‹Æ,»6~Ï:»eÝW™Ép^ôúñûA¿ßº_œvâ;ÖÕ§Ož,Z¸À×Ïoùo+ÄbñŠ•+G޾`Áü›"ÂÂÂp[.Y`‹˜‚Cí¡Ã«²^:§@2Ð!—H€IDATòž¦ò 1u ¯ÂHþæÐüEG‚,ܵw˯=ÝâJÝ¿Iä܉X´å– ýÌuû7ÏíáôøàߟHÏ·ªäKÿf×¹6rÏŽ™Í57";ñIê/ݲ0ÄÆ&xÚþC«™UXOÞë'2kŒZ½s÷¶éWw.=™¤ Ù³ÈyËOg× _¾ÿ`ä¦ÉM‰7,8–¨€¼˜¿>Ôœ±{yxÏ œKI@Ò'Ûo¾ëÜc^Ä‘#{·Îlû½gù±DDöÝ5«ÿL¯;aóþÃQ[çõr²wõE3¤9,{±ót^ãÉ[vïXÞÍöÅñSœü4kÛîˆÙMäWwEÜÊ"½ñži¶þÃ6Ÿ8°´ * àû:pûƾ©ÍÜÍß­Œò^l·WÓwÃ䪢ï»^æ¶m[mmm׬YcoopppX½f­P(ܹc;nÈ%lSa;6xiêžךWlÿ'·Â°ùõ˜dXùaψž{ÌNwÒý¯Íºy>գǪÁõ<8Ø70ùÅ£ÙQÇãë ¿GQrùÀC¢æŒðÁ"\ ™œ=ý’~ˆB‡lUÞP±uß ÓËÅHzy;¸Á‹* Ú2H k×'àÌŠûo$ݽsîï»& ¾¨Ke'6Âà¶³vµù ]HÏæv¶ Ô6óÚ/’ xõ@U~|÷:^6—ŠM»ú]ü䤯¯mÖÓ•¸Yõ²N<àù4µ¹¡.C2-gÈçv&ÙØÈO ¨a[ïóë ïYÓ@hó&nŸ¹—®jâó•‰}X¨=@m¾Kþjó¸]ЧU§\þ¾UuÎÜy,ËÝÝݸÅ××wWän¼€rI ±¹–6×ÿÚÄmÓ§"~èÈ•Mœ™­a~™Á›VþDî9R¼‹=û‰þ{ò j§6Õœ û^õ}x—_>ÎÒ”u0žAHßßMƒîlõM‡ëZ7Ôáä ’{êÞ!ÇÖž‹2³UµÏ¹öåݧ‹í¸@*Ó  H½ý‰pê,f †#ràå›Ï:ËöÕÌù}íl\§ñïß>#C¾J-|×za¶—O,\’Þ²qƒÚÕ«8ñ`¾¡}^%äØR9".‹kl¯{y䊸P£Ð~û÷®+^o»MÖmÿŒšb¨NùÎÕÓÓ³€1Å,Äæ°k¶Ü÷ô1Ôª†ógeReK5ªOG'ö9JÉl·¹ÓžP¤+¶“ˆc4aX|'>IY!uh(B òÙÒËÔXúó5y à:ò½R,Ž óM‚Vz{Ç¢ÕSíCCÊUíØ¨Ñ™5dE•Æþ:ÓÿÄÙ+"/ÝÎw­Ð¤Ëa­ý­fÈçUB׆â¤ö;›‚Ê·ÛÇnÉùy÷ÿjÛ… šÀf³¼¼¼É!„ÞÞÞ¸—,°›dч÷>W»¸€˜=ûUŸPîЎtÈ ÙÿÑëkïjfwÊMRÂwæC­¡M9³œ¶È¿’3J>÷ïót¥&/ýÕùݯfh‘6OC ÉÓµƒúOÚy+!GMhå)ÿ9›Ì låoSÀ ù¦UýK2­6Á‚?Θ>=''gÆôi)ÉÉ‹- Á ¹Ä]Þüq6Û§÷¬Öž\€Oçñ®Ï:±áHãµC+ØJ1 må¡‹þç¼?*rÎÉt%שLÎÓFü\–>l–eWkôÜ‘û".¿M- ¨Õ¼W¥”#¹¶Ü|ۅ¬8>eÄ•VË׌ à.‘Ð6lðÂö{¯™´;KÍsô k8bqÏÊbô¶ Iðî6khΦc+GœÐð|+Õï%"!?2Ø".J4©ÿL|ˆÝyÆÿ:…¸²eq·£vljÌ (Ák/–r³³]ICt‹3&NlÖ¼Y¥J•Íwåädã¢,`‹¸HAÊ×£vŸ¾õ<>C†„®UZvؽ– çL‘’’šâåé]½n=6»[*Zæáí›I)In®n¸L‹9Xˆ8:víθýôñc8st(•*•JéêæV¦l½£#‹Å.Yñ'´Úœì¬ïbRÓR<¯„øX~d°c0 ¨T*•ZÍa—0 &£Ñjy<‹Ÿ¯JØGŒÁ0Àãñx<ÎÌ÷#Æ`0˜" 1ƒÁ1Xˆ1 ¦ˆÁBŒÁ`0E b ƒ)b°c0Lƒ‡¯a0Ì"­Fcq]R‡Ãb±Y,üj"Ì—‚…ƒa@£Ñ@Èrvóàñ9 ˆöW£Öd¤¤h4Z·#Ì+CG£Ñj´„¯¿ŸD"ÉË“Z:ŒÍázúøÄÇÅ åpJð•›4w½õ¤ñªÕݽ)“nîYvózôG)×9¸~—ðAÍËðsnο쵀Uú–±î·NîLÚ"Y9î×´+Ý:s!ú£”íR¡Q×Ñ›úð!h2œ:tôâØ4×ɯjÓnC»ÕrÕ¼Y6viz»¦¢KŸIkNX<³:ëc@ŠÄkGŸºñâCF°u®×qÄ –þ€6÷ÙéÏß{Ÿ¡æÚ{•«Ñ¦Oÿåm¡• ù¾`‹ƒa¦€q>¡p\[é¤z´#òaŽù{³‰Üû[ç­<§j8aõÁƒÛ–öòy¹wá‚“‰*j#u¨=txUÖ‹C§ã(ãOFÞÓT4¦náUÉßš¿èhBЀ…»önùµ§ÛÃóW\É ;|‰œ;‹¶Ü´Ÿ¹nÿæ¹=œüû)JªäKÿf×¹6rÏŽ™Í57";ñIê/ݲ0ÄÆ&xÚþC«™UXOÞë'2kŒZ½s÷¶éWw.=™¤ Ù³ÈyËOg× _¾ÿ`ä¦ÉM‰7,8¦Ëм˜¿>Ôœ±{yxÏ œKI@Ò'Ûo¾ëÜc^Ä‘#{·Îlû½gù±DDöÝ5«ÿL¯;aóþÃQ[çõr²wõE3äÛƒ…ƒ± Z¨`Ÿ|‚<Ï6»•‘ßÝIS6P§\ØsKYiÔèÎ!.®È¯~ÿicOˆ¦Èvl>04ïòŽk‰ïÎmÿ'·ÂQõ˜dXùaψžÝ;v5}zL¿œn¸h³îEžOõè1yp=?{دÁ€ÉMøÑQÇã´X]>ð¨96¼C°‹­C™FC&wñ"/j E¡ÃG¶*ï$à;UlÝ7ˆ—ñ(FB"cE† mä"¸„µëÀI¿ÿF¢DÖý}×$ƒÆt©ì&ä œƒÛÎÚµ?¢ ]HÏævvÞ¡þê–’€ržG=P•Ø½Ž— ‡-p©Ø´«?7óÉ; TYOTâÐêex,ŽÈ§á¨ÍG·…—4C¾Ø5Á0“¿Æ®Oû±]®Ï:ºõ`‹ÕáHWÅ=H‡î½‚D†Ga®[í0û÷o¥«jˆ)¯Õ`;5×ÿÚÄmÓ§"~èÈ•Mœ™­a~™Á›VþDîqS¼‹=û‰þ{ò j§6Õœ û^õ}x—_>ÎÒ”u0žAHßßMƒî /.çºÖ u8ùÂ$öÁžú‡wȱµç¢Ìl@Aís®}ywãéb;.Ê4(Ro"œ:‹™‚ሃxù&Á³Î²}5s>D_;—ðécüû·ÏßȯR‹ßµ^˜íå —¤·lÜ võ*N<˜ohßU±c0@è«Å÷í2®Ãõ_NoŠjú[ ãVB™¥$Øb'¾éÁ”ÅsâAU–ÒÜÂd;×l¸ïéc"¨U çÏj·H•-Õ¨>Øç(EÜRä®DB‘® ØN"ŽÑQÊâ;ñIúÈâY,ZF"« [@šŒÈÒŸ¯É“h×‘ÇøŒÎâÙ0ß$h¥·w,Z}1Õ>04¤\PÕŽY³A†PTiì¯3ýOœ½r!òÒÑí|× Mº ÖÚßj†`!Æ`Šè+ 1€‚€.ÛÜž}vs”ˆ!\ß‘ÇÒ*2•°Ñ ¡LW"ž#ßL,úðÞçj³gߣêjØÚ­¹b![à?zýoí]ÍìN¹ñ‹ï̇Zy®õ‘bº3|U ÇFÌÉYù˜ÖÖ’ ˆ‰Üv9»Ò„u³¹pHrÿ”1ÖçZ­ËÈj]F¨3ã_;µÿ@äJvùµ¬dÈ÷ûˆ1f¾NgIC„å{Œné˜vn×Cg´õ¯é‚R.ÇH ¡¨Sï>ÏáùÔv¦½¥ É^Þx%¯Â๠{ûËoíØ-ýŒ»„À³®+íúKc¯¡&éäÔƒßÎ!ÆÖvE©×òô[Õ™^ææß!Bð¹þ¾[]/væƒü¼Í–“ ÍKŽ—±kVpÔ[—Šä[iJDh)‚\§€ZûuòaK?dª –!ß,Ä 6‹•“ÃáñÖ?\/;+‹Í*P;‚¶ún쨑ª ÍœëÞrPÞ³­[N½ÈP¨eñ7®:åÛ¾e1eüÊ{s(â’$ û¸f^¾mÇvó•^Ûr蹬ÐbÁq®?¸±8&rýÁ{‰9 YòÃãk§z´îWÕŽr9®{‹A5áýˆçÞfÈrïÞp4Q `¾CºX.!KÌ”dg« 7¶cÍMìÞïÙqæU¦R«Ì‰¿³kÒÀÁkéý›–“ÀùWrFÉçþ}ž®Ô䥿:¿{ãÕ -Òæi$yºvPÿI;o%ä¨ ­<åá?g“¹­üm ˜!ßìšÀ`¨rÂbÙ…/_<¯V£FB*•ÊÒ‘<ÏÆÆæÁƒv6¶¬i1‡õÓàѯÿ/fW{Ìâ©ìû}Ýä½9HìQ¡þ€9ýZùSƱ"ù›ß#ÎfûôžÕÚ“ ðé<¾ÓõY'6i¼vhÛB)´­ÁU“ñøï#]»ÿ&)[ɲuò._­a§îm«:}÷œ,`2 ‘umÖ„•oåæ5ĽÃoÃÊð¿SªH9¯øª , B Ô<ó–VD"±P((5É)±0hú®ý_¦²W»"ÿÒŽéh¶CòxûŒUÏ*ô³tR°»ÈN|znÏ–%ÿ‹›¹jL-;V K¦‚€á+Úºáë»È9ÿ ˆÁOððµÂ@dÝ?rKæ?dd»0O—Åæ;•©ÕsÜ?ÙÃ÷³´80Ìgñ½-âì[«'¬{0aÍüŽ,€$7Œ_4a嬎…¶Ã´’ggö8û &C-ô¨Ø¤Ë þM|þÌŽ‰—ï=výe²BàS¹Is×{QO¯ZÝÝ2éæže7¯G”rƒëw Ô¼ ?çæìñË^ËX5 o™ë~ëänÈ%B•© ´ìtì Ñe;7[s°™þ‡dä[÷àzG jé/€@³rÜ’”~BþûóÂËtd_¦VÛ¾Ã:V²gƒüv’™ßu™s ëËÙ·ÖZ,8MæƒS‡Ž^|“¦à:ùUmÚmh·Z®\ëÄ”(V6%ç—x½èWS9ªÓî8ðû¥Ç±™¡g…†?õز¬ ´žçÚÜg§w<ï}†škïU®F›>ý;”·…@·kòäË3"~­gWÃ=ßÛ"v¨=txUÖ‹C§ã(ãOFÞÓT4¦náUÉßš¿èhBЀ…»önùµ§ÛÃóW\É ¿k–ȹ±hË-Aû™ëöožÛÃéñÁ¿?‘ÞA¦J¾ôov‘k#÷ì˜Ù\s#ò·ŸTСþÒ- Cll‚§í?´Ú¤ÂŽSíºî(n߬Å;Nü÷"1WôTmÞë'2kŒZ½s÷¶éWw.=™¤ é“m‹7ßuî1/âÈ‘½[g¶áÝÞ³üX¢!2ò7Û¾ ¶zÇ–ß•?¶rÁ‰‚ì*Àuóɂ֋‡dÏ"ç-?]3|ùþƒ‘›&7%þݰàX¢*ŸbJ-çÝH9OäÞß:oå9Uà «ܶ´—Ï˽ œ4æsÚ‰ì»kVÿ™^wÂæý‡£¶Îëåþdïê1 ߨæ–bÆü B ØŽ †æ]Þq-ñݹíÿäV2ª¾“ +?ìѳ{Ç®¦Oé—Ó ¯½ÖfÝ‹<ŸêÑcòàz~ö±_ƒ“›ð££ŽÇ+(¨S.xHÔÞ!ØÅÖ¡L£!“»x‘í@( >²Uy'ß©bë¾A¼ŒGÖ_çÍóí6{Jç àåùÈ5óÆ 4tÚ²ˆc7ÞI)n Q…!C[¹.aíúpÒï¿‘hÊyõ@U~`÷:^6¶À¥bÓ®þÜÌ'³-?tj*ž"{¿zý§vtLüçèÃëÌ­ìÊ÷ºùåEìÎa=(yÞ±ÏÔS)+GdÝßwM0hL—ÊnB®À9¸í¬]û#úø°ó+ &ÊPŽöÜRV5ºsˆ‹€+ò«ßZ'ÇØS¢ ïøeL»*ëi‚JZ½¬Åù4µùè¶ðr¥§ƒSz(‚Î:¶SÃqý¯MÜ6}*⇎\ÙÄ™Ùæ—Ì8jBÿ=ù¿µS›jΆý¯ú>¼Ë/giÊ:Ï ¤ïï¦A÷†wÝr]ë†:œ|aJ¾}°§þ­ckÏE™Ù*+ö9×¥þÀùuº}|~ÿÁýÇO=yzîÐà gkúuRwÀqíË»ÃÛqT¦A:ÔY¶¯f·èkgã>}ŒÿöùòUjõJÂ÷lZÑžeˆeÍò¢?_=ÈP‡¹XßE‰ÓuóÍ Ö;ë N‘zûáÔ9XL;)¿²(Æ+#Y܃tèÞ+Hd°`¹nµÃìOÜ¿•®ªáa1Ïù®õÂl/ŸX¸$½e㵫W pâa ƒ…ØØ¢k¶Ü÷ô1Ôª†ógÅ©²¥Õ§£û¥¤Æ-EA6N Eº‚`;‰8ÆöÇâ;ñI’Á⩯AG $ÀÖ»rïÊM:­ôíÅKwÝÚù¼þÿªŠ²¤W˜é&Ç´Ù·w,Z}1Õ>04¤\PÕŽY³Af¼›ï*0FŒÅsäU¦ŠÈoÆëæ›_XpH“'Ñ®#UÈ*`¢ôå¨ÌRl±ßtωUYJÂrÚUûëLÿg¯\ˆ¼tt;ßµB“.C†µb9Æ3ŠBˆ‘,úðÞçj³gߣêj~Ü䊅lÿèõ¿µw5SÓXXß™µò\5ššôWL [T®å þÿ>Øœ“«©je€"öð¶ËÙ•&¬›ÝÈ…@’û§È!ÔäXª2”€ï¦W*+»ò嫿CÁAŽ˜’³èÏù¥Di˜SáÈci™JØèë ¡LW"ž#ßzÕ<×j]FVë2B÷øÚ©ý"W²Ë¯ð½FEc0l¨ßýŠHöòðÆ+yÏ]ØÛ_~kÇîh)*|(Ϻ¬´ë/s š¢I:9µÇ Å·sȱĵ]Qêõƒ÷Qùèe®&ßÐ!dCÌlcUÂð>Ö<” jcw²á Ýí¬ÝÔˆ¼äxÛ¹fGýQŠä[iJD<@•z3Á`«R5Š*Ôrâæ·+ÿòýÌ(pÁñÝêz±3˜¹Öó+ ‰bÎyhë_Ó¥\Ž1VuêÝç9<ŸÚμÅrjuì×ɇ-ý©Bƒ)^|o!FyoE\’t×ÌË·íØn¾Òk[=—ºipœën,މ\ð^bŽB–üðøÚã©­ûUµ£Çwº>ëĆ#×­`[¨öm+]ô?çýQ‘sN¦+¹Nejtž6âç²Z ,»Z£çŽÜytÉømjQ@­æ½*¥ɵåæsøýÜ.dÅñ)#®´Z¾f¬ñI–íÜ|êoÎçNœ>¿í—È´ع—­\¿Çü_øäcšñ¼»Íš³éØÊ'4|'ßJõ;Otní±ñyÈ›àº5jÈ»¾fldÇ­B£As´4ŽÞ²²«&±;‡õØI¹oÿM+ÛäZ.¸°Á gØï9¼fÒî,5ÏÑ7¬áˆÅ=+‹YÐjYJ)çŽ%§¢ö˜ÅSÿØ÷ûºÉ{sØ£BýsúµòX«3P\)|Nÿû¢\—£b‹<ÊÕì;k@3g6Àãˆ1Å xëê¥(¹HroþøõÂéÛf…ÚŸXYY5Bþµ×[(9 /²E$ HBbb§n=ù|ìJ.¾(ŠS'Žúzû”Žä”ò)ΚÔ&ö0å÷èT…©scÿ;²;NÔàç€gqCœŸGnv6΄âLNN©* R¾ &ǵùŒð´Ý§7Oü#C†„®UZŽ_нâä%Ä9ððxܸ˜7N.Îl6^'¶8¢Õh>¼}ÃçñJMŠ~0צxÓ±kwã÷ÓÇU4”J•J¥tus+S6ÈÞÑ‘Åb‹ÜÁ@hµ9ÙYÞŤ¦¥ x<^iqa!Æ`P©T*µšÃÆ\Ñhµ¼ÿ·wçñ1]ýÀÏ]æÎ>“ÌL2 Ùe¢–ØRAUµ´(EKmJQJ-ÕÖR[­õ£(‚¢­RÔöµ/±$J‘DÄ$‘}™Ì’Yîòû# IÌL‚èh}߯¼¦š¹sçÜ3÷|ræÜåPÅãýk¶¾y`EQÔ¿è›/xÁÁýˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉH¨lbYŽeš¦í6’ÄqÇ1¨+ðŒ ˆ°¦i Õî¿¢`qµ­Vº(/¦’„vž ì@ÔFÓ Í°Þ~¾:]™Ñh°·A’ž^^šŒ „’$ ÞÀSƒ1bj3èõnj]YmµröÑVk™N§rWôúÚ«àtIsG¾7n»ÆòðWtÞÁOôýMò£hç´f 8éPž>}ÉÑŸìÏ¥Ÿ¬¤Æ›³G šzªˆùk‡3g_Ù¿ö멱#£û½=ü¿_­üõJ®…sö‡ÆïÚöC²ŽC¨¼Ze–§-=áp¾Š­¾˜1uîˆèÿ-¤ký¾újŸ'èPÃ0Z.PÈ7–ê\ØjµÈ¤b­N'‘J¢Z§ùvR›nÞѳ> !„X]Ú…BNBï^È7‡ùóB™ò/ä2®Ã]%>S7mû'ÔNYâæÙKÏð»9wb;ßôàúÑÍëVLþó?‹fööá;o¸œ3¤nŠ;ÈŒíÖ«2í-Vý÷ÕWû<<áÐï7²õ„*4ªÿÇûzñ1„gÒœøñ‡ÝçRó-’€ö¯w4°Êk-¸²wû/'®Ý+¦…ž¡Þ:¼{€ˆÉÝýé”ýÞ³ÖM !Ä–žŸ>þÛœs×}*Fˆ->ûÙÄ­ªé«¦‡ñËnذãè•»EVž¼QP›7{;X\£‹kÍ?þËM«Oì»!Õ ›¼ãin"ÄC¨<}É' Ї ºpøDr®™ïÙ¢GôèNºßâvŸJ- ¥‡Nˆí¢¦ÊÓ—Œÿ:ohtعß~O)ää¾mßòAïp9Bœ)ëÌ®ŸöŸO¾_dDbuHÇÞ±1ÝýøÚ 3?Yx»¡¥ÑC|cÅÞž;¿²2Bˆ3?8»aö鳩¬Ü¿]¯!¾Ó\F u^}3þ¾·àò£Õúôï`:x#xÞª‰a"„BléùÙ¿#Ç}÷E[ù3€1ör¸^쾞ïÞÙ‡Wzý¾žEY .§å-Ûú„¼æ‰rÎh BÈœ›‡<:û‰oÇÆÛö·³lãæõS£L§7.Ø—cA1¥çWÍ]wIÜwƪVO‡wá§»ÆÊ°e‰ë¾\oé4aÙŽë¼ï•²uÎì}YRѶ‹ùÞå B•ç$ä˜X£æj±!Ä2Ïæâ~ox ÙÒËË—ýVØaÂwÛ~Ú¹îË÷Õ×·.ÛžnªQ&V÷×ÅBN,¯u`’piÛëÍN!RÂA1*ëÔ¼ñ€±ó¤µ›7,zOœ¼ç›É³ Þ™±~óš™]ÊOoZ“PRñw¥<íûwB>X¶aíâ˜`Íî%³÷fYBœþúúyß]VürÍÏ?o]7íMêâ–E»³,˜K䂵sÂD¢)Û~\ÖǽVÿÒ’('äÝöJCòáûÆÊMÑÝ>|ê*kˆñbìqý~ì6c‘w”*¸”oBˆ)½™X*j©ÊÂ^UÑš³9f„¬E‰Veû`™­V( 9ª{ J(P5ï9ØŸ,LLÓ1Èšêçk¨ÕØØ7ƒb¿.#&¼¥æU,oÍû}K‚9|ÌÇ}ÃTžÄ'rØ”>®÷öo¿¡ã©_ •ÝHÖ2Y /kXuP÷gºŽEÈœ{VÃ6î Æ,%fZ¤ÍZ((œ”xuóÝ®õ£ƒ5ŠD² 4!ñ;øm¿•õ$‰å#åK:½Õ˜â?ÔÆS"P4ëÖÅɽRX™âàQŸ|ÅS"÷é8ìÓÞ®YÿÛ•fä8í­I–àáÚ7‘„@Õ´k?^ñõ;:¶Ž@•4Ü/ÜC"óî0tÊ;.šC»ïŸxà7z=Ji¸qDc@!®,íè}<¨wˆ¤AÆÅ!ˆ°ÄÏ–Ãá² …Us­ÄÊéïž)¤štñä#RÙªµKyZB…ÕݹV&o­àÙx-O¬T4qŒ”Êxˆ6ÐgÔ$bªW½E•_àñª¿¸â+»!#©Sw |˜ <÷vÍ妌„B‹À³k0Ux^c䘲Ô&Ï·»7æ /äšµðâm³ºk° G|·ŽÍÅù{ç|½òç߯Ü-¶}N „} pX „B¤¬j»0RÂÃyòyÅæc< £MLÅÊùž]›Ê+Éç,)¿›TdÅ\Ú/üaã÷»gŽìÛ·fÁ¬ÏÝ2p¬™©c ‰òˆ –>Z[±ñÎÕëïxöù¼rcÖy­¤Cóàv «&©ÈXšœ¨sjîB „IÂÇÍŸ6¬ðÞïqó¦Žúñ—«ãï•×Ü8žÄOÎc ™ÆÇÊq´ÑÂÖY „Ây"¯±˜­$#ønâÑ\ùÈRlaSzqÝÔ§,Ýv*%ŸsoÙ{Ô˜P1Bu唂_mm.²–ZØ'ß!xꨮêò[‡4åœáîá»xÓ^ ”ÃÄØñ¬cÄ!¾:Ê—,¸œ¥9wvïRÙjùž¯5¡ /¦ßOа¢¼„OÐZù ÁZJ…gÕYÙŠ§\)œ1›å k.4s”+G˜¸I7ë_‰ÙÙ 9dP+w÷6áÝŸ·³ÓÎK"Úª*/¤ÜZõûhÆ·¶nY:uhÓÒSqK¶d˜«¿=&ñï¤Æ‹’nkk¶ÌÄ;rîÉBÆa1*×RŸ-e­eÖ‡5ËZŠÌˆï. L÷~Z²4|ÂÊu‹fLþ``¯vþB†­ßÚUk.6#¾»ài¢t‹ìáaºu4³àΑ;xÓÞMD u¾1¶5@cB¯(7:í܉ëåŠÈ0—Š^&òíê…çœ<}µ\Ù)àIºT˜Ø7R培£¯|WkQÒ=Sñ”_„ŠË;™^õ²æ_¾¥¥¼Ú))„pYH”RwþÈáÖF‘î|¾û«MxyìÎä‡wt«52‚ñþm{íãEèï×¢ T4ãÝÿu_š±Úï9Ã_÷e±ÊÖÍ\ÇŨ?Kþ…LWõïKé%¡m„1Wc ”¡®•ƒÔ¦Ü„3Ç2B«è[Ûü8,—®ÍüàBºQÚ´•+¯~U^sµ¤²CsJü…½éx³^þâ;o‚€Ú/ÕjIŠârüã¨Ò’·×ŽpY`;yÉéEâÖmUǸ0I`g÷ò?O•HÚ6“?ѕѤ{瑯 n®_»/¹ÀP–uqǪ}*Ç:yêî1í©›ëÖîO.2Y š ;–(ñî5¬…C‘®-:ÊŠŽ/síØX„!a£Î^(ûd/´‹‡!„8ÝŸ+b†Mܘ©µ²LyÞÕÿÉå5yïVwm7fL6~á×ëãod—™iSqú¹ó36ûÏäîd]Ũ7¦4qíÚ£éEFmÆù–Ö÷ Ä%~áJ.7þØ­B3m,L=ºùÿN1c¤Y„.p᱆¬b]i©µV³¥‰ë6œ¼§5iïݲô˜±ÙÀ÷üõMÈš«%”o5ÒÛ‘B„÷ô7Ü.çP³åá¸H(LI¾ÕªM#ÇY,vÏt¢(J$%%%ÉDbÜN“Š–Íd?g3M£Üu yØ«*òž1¤½’÷d…Ã$¯|8{’|ËOË&o+ç{µì6¸CéÏyå–µ;ïÓ_øe夭ZNê=kè~•Güxʯ¸ìÌ#[‡È „د«š³À¿»WE aÒðѳ†mÿaç¼Vj-„Ä#(bÈŒè×”ý™ \;_¬<þëžãë>ÛR¨g(¹g`DßÏ&¾ÓÒWbÔÏ=ªuvù¸8-éóEtww!Ôø½£´«w/‰ÝKóÞá‘}§Äįج1råŸw{†}³grì©7挫¹6aÀОüKF¯/AŠ ¨˜/G½®ªwðU[í¢åãüù„kË·}¨U…áoû QÃÁNŸ€¶@u£Q“™Å0L`P«Â!„!ŽCX­Ç’â’Ô´4Šäùx{‰E"¨·†aï:‹ûë”iñ-æ¬Uï^u=@€Ú„a#uN^~â•˺ÇoèSE*‘¨Tnžjw¡@ø2UÏËŠ³Z¶4iÏa­Ï >Þ‚]71µá8&•Êø|¾J¡0™Íöðù‰˜¢øpoø—WvuÞÄ)x@·&¿®jໞÂÐöÛžÃó"0 Ã0ˆàÖ»ÿ{OسûߺÕÄàdpú818181818œG €m,˱,CÓvgb#IÇ 8‰<;bl iÃp¥»ů¼K$B\­G«•.ÊË£i†$¡g;µÑ4C3¬·Ÿ¯NWf4ì-F¤§——&#!†$‰—¨‚@Cƒ  6ƒ^ïåç¯++£iGêÐVk™N§rWgßÏ»Èk?ÍÆO›¸ún圆á¤Ð¥QPD÷1=C¥ÏrtÆÁmqê{ÇÎxïô¯gÝß“š^ì›ì¼ æ¨a­N(äË u.lµZdR±V§“H%a£S,h2~Ý¢®·“dÍ¥é§7-Ø´@Ã-YðŽú¹´=aàÔMÛê^Œ3¤nŠ;ÈŒí]ÿ—€ç Κ ŽãLf3ÇÔs‚Že‘Él®cªŽŠÆÆw î>rD—þ¿øúÍç^Ð#ÀŽzdëÃE=„\Î#“¶p܂ž]%'ŽßÔ»FL˜7­5ž|hëö#IéEV¡GÓ.ýb†uñ²sKuΜsaË godëyÊÈ~£cºù °CåéKÆÏ/><<áÐï7²õ„*4ªÿÇûzQÚ 3?Yx»¡¥ÑC|cÅÞž;¿Ž—ð1„gÊ:ùÓÖÝgSrM¯]º¹]Ùy½óÒeó^ìÏñŸzÄØÖsÖ=Ž1h”ãò@YexÓÞ˜²fó¢ÑƒBÉô¿š»+30zΦ­kçr¿ºñ«oNÙ9{Î’{âXi›VÄmÙ0­}>nñÞ¶:ÙÆÛö·³lãæõS£L§7.Ø—cÁ\"¬&…LÙöã²>îdÝ/A±ÚKkæ®Môš¶rÛw_ T\Ûqøtë 1¶q\ý~ê½>‹þÁµ¶fáýº©+ƒ“… êÖD&kÜÌÏšw4ßcà¤}ä©Ï«Ñ“ºðoìÜ£1Ù\&iöáGo+|EÓC©¢?Òu¶f4–„ŽÕ=P%¨š÷ìO&¦é˜: jó%Ö¼“Û¯²ãF¿¢»øFœÔ¯ô„ M`Ûd¬}¦;«G \BFR¥WHTìC»<œH””ºTLfgÊ=—iU¼ÙJYõ” Q¤u2åZ àùx;%å!ž•£)–ó¸âR‹ æÉƒÕ“ÊxHo ëØ,›/aõw/`êè‡óÜ:4sÙ— »IÀ Àކ#®~Ö„-8)$0„â,¥zÚò`×ïªÑ@ÝóLŒ­vŠ“Âšó•Úîœc„ Ú•x}¶ÊæKXS¡‰%òá38_Á‡s§ 1¶qÏã`]O*$~»¸—[­|³>øuâ';²*d)¯ÿ¬úºåß^8_Éǘò2kÅ……!Ö\bfa/i ÄØö÷1xvðÀ·ŸMѾå¦ÀBˆÎÙ7mÂ^—OWÍêðÞÊ_ß«¶hyú³¾†XÅ…Úõ„K›´sãŸÍ4v‹1„µø”2ö’ë¨ÀñR­–¤(!Ç?<Š*-)!ðhG¤2rDgizÜ·;®diM†Ü«{VìÉ÷è1´¥ìyÜT¸ðXCV±®´ÔZ¯8æ©_‰À×lŒÿ«ÈP–ué§U»²Ì¦ìk¨Ïª€MÇEBaJò-±HLñxN˜ x<‘H”œ’, ñgÏbLÜbÔÜé½7âfŠþpâú«n}§ÌûO€à¹dÀçÝžaæ}“c?ßñÀZ¿z‘µýø‹Z•îýú“acæî,zåýpIŠy! & 6ƒÑ¨ÉÌb&0(ÈUáŠÂÇ!¬ÖcIqIjZEò|¼½Ä"ÑËUGœîÊWŸ|+œº~F31ì1Ï Æˆ¨M(6òPçäå'^¹¬Óëí-&•HT*7Oµ»P ü×× ÿ¿O'ýHôýlzŸ07Âqqçæ É«3ü_²¿?Ï ôˆ°e9‹Å¬×Lf³½e|¾D"¦(þKqoxΜ}vçæ ·4ENèæÿJ÷ôUÁE ‚»_ÄŒaÖpG«z÷`ï©{vÃgñïA N‡<ÀÉ ˆÀÉ ˆÀÉ ˆÀÉ ˆÀÉà‚lcYŽeš¶{g’$qœx)N"Ï16Ð4a¸Ò݃âW´‘Š{•Õx´Z颼<šfHÚx&°PM34ÃzûùêteF£ÁÞbIzzyi22bHn’žŒP›A¯wS{èÊÊh«ÕÁ´¡´ÕZ¦Ó©ÜÕ›÷£àJ/̈0é`nͱ Ó5#ßÿhé_&„*O_òAô'ûs뺱/g¼wjÛÉ:›Wùqæì+û×~=5vdt¿÷£‡ÿ÷«•¿^ɵp/håÖØd‡Ûõ2150 £Õé…|c¹¡Î…­V‹L*Öêt©„ ž¼S, œºi[Ý‹q†ÔMq™±½m·,qóì¥gø]‡œ;1Èozpýèæu+&ÿùŸE3{ûð_¼ñëê›ì`»^2Ð# ŽãLf3ÇpõIJÈd6ÿÍÓyTaŠ/®YyÂÒ}ú¬ÑÝÃ<%<‚'õŽè?õ³’Ô]«ŽÀ ÿÐ#ÀŽ¿![ËÓ—ŒŸ£é»dE²<}ÉøùLJ'úýF¶žP…FõÿxxW/J{aæ' o—#´4zˆoìÊÅ}ÔUÍÖšü—›VŸØwCÄÕº¾˜°É»±1žæ&Š_rÖ‚+{·ÿrâÚ½bZèÚé¡Ã»ˆ0„ÊÓ—|² xÈà  ‡O$çšùž-zDî¤û-n÷©ÔZÐyè„Ø.jª<}Éø¯ó†F‡ûí÷”BNîÛö­!ô—WŽ˜²›6ì8zån‘•'oÔæÍÁÃÞc7¹·àr­íR•ß<´uû‘¤ô"«Ð£i—~1úx ¬ê_´¯AÛêÙ#nÐ÷4ÞÞ°·¸Í˜e7¯Ÿe:½qÁ¾ æ¹`íœ0‘(dʶ—=Ja„XÝ_ 9eD°¼Ö áÒ¶×›B¤Bˆ-K\÷å’xK§ ËvìX¿à}¯”­sf﫜Šq†äŒ'­Ý¼aÑ{âä=ßLž}TðÎŒõ›×ÌìR~zÓš„’Š BËÓ¾ßq'äƒeÖ.Ž Öì^2{o–ÅáÊÙÒËË—ýVØaÂwÛ~Ú¹îË÷Õ×·.ÛžnªVÈZÛånMûñ«¹»2£çlÚºvþ ÷«¿úæT]ŸUýóAÛê™±Ž—2ßß;hKíß {ËKBGŽê(ÅjÞs°ÿ¡oÓt)íô—hC–&dÞbÍØš÷û–sø¤û†É0„|"‡Mɺ>yÿöݧµ!BH3<ÊGŠ!I§·ÿô¥?ÔÆ“P³n]ܺRhéâ…BâàQŸ|E#Ôqاšk“ÿ·+­×Ä­Ý•7+ù3Ó"}­u€‚ÂåÕiÌw* Tn»œLÉ•¸£ù—ŽèèA"$5zRò3wîÑtŒmdoUÿ"ÄØÆ¡èíò}G¬^òŽGµvfº³æã™×í,Γ«+'©ÃH©Œ‡ôÚA)pÕ1Û4gÈH*ÄÔïJª¾ÈóÜÛ5—ïML(´´ñ@‘²ªwÄH çÉCä÷zÇxF›˜Š•ó=»6•Wþ=à¹EK~KM*²xeÙ]yk·ŽÍÅ'÷Îùº°{çWÛµ~Å_A9J0åžË´*Þl¥¬ª*A£H/êdʵÚÿ WõOA €N8þ†‚jêáu‚'ñ“ó]¦‘îàRs¦ Ž6Zq…#Ö\bf ©‚ÿ¨SS ³”˜+ÆpžˆÄk”Àæ½î ¾›€x´W>²[h+Ç$áãæOóÛ{äÔïq'v}Ïw íÒoä=üíL*ÅYJõ´åÁ®ÿÞUýפ{ž‰Á<í¬ê_ÇÄØÉîE?»“øwRãÛ“nkû7RU&f ⿘ú‹|IJϻò])œ1›Y$ªŒKÖ\hæ(ׇéY¯8c­eV®jYÖRdF|wÏáÊ1Ê­U¿Zõ‹µg\;³Ûö¸%DðŠ=lo O*$~»¸—›³m¯ÊŸÿ¯ÙÙà`¶9ã`XE?õ±÷"T4ãÝÿu_š±Úsœá¯ƒû²Xeëf.&ö‹Pqy'ÓõU Xó/ßÒR^í”Ô“”À’!ÓÀUýûÒ_zIh[U¯•c<…ÛÞCûxúûÅ5¯3©¶]ÏxÁÙ-[ù³ïÓ1ó.j¹z­ê‚€Ú/ÕjIŠârüã¨Ò’Þí¸ðXCV±®´ÔZ=p×vcÆt`ã~½>þFv™™6§ŸÛ1Ñ1c³ÿLîáN"ÄSwiOÝ\·vr‘ÉjÐ\رô@‰w¯a-¤OôÅž)M\»öhz‘Q›qþ‡¥‡uÁý¬éþ\3lâÆ„L­•eÊó®þïH.¯É~"ÌÎvéeGt–¦Ç}»ãJ–ÖdȽºgÅž|C[Ê깪6š f6à¸H(LI¾ÕªM#ÇY,{KR%‰’’’d"1þ|³XàónϰoöLŽ=õÆ¢åãª%'\;_¬<þëžãë>ÛR¨g(¹g`DßÏ&¾ÓÒ½bØ—µ;ïÓ_øe夭ZNê=kè~‚'‹1ž{T'êìòqqZÒ=4*æ‹èîî¤Ã• ÂG϶ý‡ó>Z©µ ˆ!3¢_S5Ïš¨¹]£æNWnÛ7k_¡™§ðmÓwJ컎Võ/“‡P›ÁhÔdf1 äªpEaˆãV뱤¸$5-"y>Þ^b‘è_[Õ¯:ãù€Š 6¡@ØÈC“—Ÿxå²Îæ }BI%•ÊÍSí.¡ÒÀ³€  6ǤRŸÏW)&³ÙÞb>_"Sî ž M`—ãó"0 ðp÷î? >‹سö„ç ‚œ N_'ƒ 'ƒ 'ƒ 'ƒ 'ƒóˆ°e9–ehÚîÄo$Iâ8'ƒgA € 4Mc®t÷ øm¤â&a5­Vº(/¦’„vž ì@ÔFÓ Í°Þ~¾:]™Ñh°·A’ž^^šŒ „’üW݃üÍ ˆ¨Í ×{ùùëÊÊhÚê`1Új-ÓéTîêìûr¹ÍEŠ®þùà™Ä´œR3.V4nÕ©Ï€·Z*¢Ý•§-7/gÀ²å½ÜŸ`uÆÔ¹cç Y±¬‡ªÆ«8ýÕ/Æ~•l¬½¼(xæšùåO7üÂïþõ¬û»ÑaR¿q‚€†ÑêtB¾±ÜPçÂV«E&ku:‰TBµ:ÅœîÚ÷Ÿ-½:d삉!j![šõgü–µ_OϘ¶tl[Ù‹xœœòúϪeóhuœ!uSÜAfloØ«êgMPÇq&³™cê9ADzÈd6Û¸%[’øs‚ÁoäG=›{Jx8ÁWø¶4>ÚÇpé§Ä*T=bìxÆiXK±‰eˆB‹äU}eBùÚò¯!„2ßÝ0iê¥ày«&†UÜʘ-=?{âwä¸ï¦¸~?aAñÁAŸHÎ5ó=[ôˆÝI÷[ÜîS©´4 óÐ ±]ÔBqæg7Ì>}6µ€•û·ë5äÃwšË„â¬Wönÿåĵ{Å´Ð3´Ó;C‡wx–9-ì®°<}ÉøùLJ'úýF¶žP…FõÿxxW/J{aæ' o—#´4zˆoìÊÅ}Ô6vAÛžuÎ:RÑ®ƒšËøaƼ {Ï%g•Ñ5å7îÑ^iH>|¿rX–ÓÝ>|ê*Ãâ É;OZ»yâ÷ÄÉ{¾™<û¨àë7¯™Ù¥üô¦5 %S»Yrâå„Ç.߸~ÉÈàû»–ÌÙŸmA±e‰ë¾\oé4aÙŽë¼ï•²uÎì}Y–§®‹:Vh¼½aoq›1Ë6n^?5Êtzã‚}9Ì%rÁÚ9a"QÈ”m?.ƒv ‚Û8®~?vW@y¿7srßP”r4nù—cGÅŒš²pÍîówô•ÃüF¯G) 7Žh !Ä•¥½õ‘Tt[Å!1ã|¤|I@§·Sœ ã‡ƒÚxJŠfݺ¸3¹W +2“4Ü/ÜC"óî0tÊ;.šC»ï‘5ï÷- æð1÷ S xŸÈaSú¸ÞÛ¿ý†î)ûøu®P:rT÷@•P jÞs°?Y˜˜¦ƒÁ—'¦°ÍQÆÖO9ü«öïeßJLJ¼výëÆÿxõ÷#íÆÌŸø¦š‡xênÝö×C› õÅgà!‚%2!„HY°ºbZ9Œ”ðpžˆÑÿu|ÂM ÛânENo)ÅxꨮêßÒ”‡zÝ=|o:ñaÔá<Yýëjżó¯›Rðž«S.²–Zhs‰™%¤ þ£à”‚Â,%fÖqQíœ5ÁÔµBŒT»¾o¸º{iÀж=ëñãIP÷˜a>TyNzB¤[dÓ­£™wŽÜÁ›önRípZ½¬±Ö2ËÃpeÍÅfÄw|W gLÅÕb—5š9Ê•ÿtíoè‚Ǫª›ž1ˆ-™ÛGþàë«5Çe1J!â ÕMdßEIe‡æ”ø {Óñf½üÅOzZƒ¥àR¦¡ò Ì.¤¥M[¹Rb¿—w2]_õÖÖüË·´”W;%õT5=å ±Š~ÕëQG’pmù¶µª0üm_á“V0´'ÿÄ’ÑëK"(*æËQ¯«H„.k7vÞ§¿þðËÊI[µœÔ#42zÖÐ7üO}ñS®PàónϰoöLŽ=õÆ¢åãüù°wÙ“‡P›ÁhÔdf1 äªpEaˆãV뱤¸$5-"y>Þ^b‘è)ߌÎýuÊ´øsVò@Õ¿¬ G @mB°‘‡:'/?ñÊe^oo1©D¢R¹yªÝ…áÓ¼ gµ0liÒžÃZŸA}¼!…_fÄÔ†ã˜T*ãóù*…Âd6Û[LÀçK$bŠâ?ݽṲ«ó&®HÁº}0ùuÜEó¥CØåø¼ Ã0ìéoßлÿ›¿?°g7ÔüË‚œ N_'ƒ 'ƒ 'ƒ 'ƒ 'ƒóˆ°e9–ehš¶ÛxHlj§;‰€ûT£iÃp¥»ůh#w«ñhµÒEyy4Í$´#ðL` 6šfh†õöóÕéÊŒFƒ½Å’ôôòÒdd Ä$\ž1µôz/?]YM[,F[­e:Ê]}?Cî"¯ý4S?mâê»&„B†á”صQPëîýõjîRwÃ+O_2~ަï’}<Èú?Ug¼wú׳îïF‡IaøäÅA @ Ãhuº@!ßXn¨sa«Õ"“е:D*!bA“ñëuU±VCIæÕƒ›×Ο~{ì‚IQЧo{ÂÀ©›¶Õ½gHÝwÛ>Ôœ5@ Ç™ÌfŽ©çË"“Ù\÷œI8O¬ ˆŠþlRîâæ”ÁÒÁ#Ð#ÀŽç1&.}eÀëî ‡öÜÒFttÁBŒîæ¡­Û$¥Y…M»ô‹ÖÅ«ê†ëœ9ç–…ÎÞÈÖó”!‘ýFÇtó`5†&ÊÓ—ŒŸ_0|xx¡ßodë UhTÿ‡wõ¢´f~²ðv9BK£‡øÆ®\ÜG ýÅ=blkøÉCBQŠ–>"sÎåB3Bˆ+Oûñ«¹»2£çlÚºvþ ÷«¿úæTQÕs–ÜÇJÛ|´"nˆiÝèóq‹÷>°5_ˆñö†½ÅmÆ,Û¸yýÔ(Óé öåX0—Èk焉D!S¶ý¸ RøA €mW¿Ÿ'ns7>2è­1%WâŽæ{ œ4¢£\ õy5zRþ{4Gø&iöáGo+|EÓC©¢?Òu¬UJBGŽê¨ TÍ{ö' Ót |€ÿ$ÄØöœr!ÖÊ! 'p„L¹ç2­ŠˆVʪþª Q¤U–r­¤¢OLÊC<+‡)0R,çq–R‹ æÉƒÕ“Êxˆ6Ð0ý_X°ƒ{>aFòM˜¨‘„@\y©ž¶<ØõßÁ»j4J÷Âh©ø}üíâ^núVŸÀK†&°í¹¬ãt7÷ž/–F ‘` <;xàgS´Uã tξOÆÌ»¨mˆ¿F`Wcƒ1µ8^ªÕ’Å!äø‡GQ¥%%^vÄY …ég¶/Yv‰×ù£aMÅBˆTFŽè,MûvÇ•,­É{uÏŠ=ù=†¶”5È•p¸À…DzŠu¥¥Vˆã MPŽã"¡0%ùV«6mŒg±Xì-IQ”H$JJJ’‰Ä¸,6ÝY=bàj„0 #øR•Oh롳¦ô“UŽD`â£æNWnÛ7k_¡™§ðmÓwJ컂†¹"YàónϰoöLŽ=õÆ¢åãüùðá¾°`òPj3šÌ,†aƒ‚\®! qÂj=–—¤¦¥Q$ÏÇÛK,A½§=bj „<Ô9yù‰W.ëôz{‹I%•ÊÍSí.¡ÒÀ³€  6ǤRŸÏW)&³ÙÞb>_"Sî ž16à8&ø|¾ƒó"0 Ã0»Ü»ÿ€:ßåÀžÝPÕÁ18œ¾NA NA NA NA N§¯`Ër,ËÐ4m·ñ$Žp1xvÄØ@Ó4†áJwŠ_ÑF*ncVãÑj¥‹òòhš!IhGà™À@m4ÍÐ ëíç«Ó•{‹$ééå¥ÉÈ@ˆ!Iê <5# 6ƒ^ï¦öЕ•ÑV«ƒ;ÓVk™N§rWìß!„èÜ_'íóþøf‡ok¼9{Ä ©§Š˜ú?ÅïÚöC²Ž«õoD—\úþó1¾?ð“¸:ÞÖ¶k³«<}ÉÑŸìÏ¥Ÿè©z½‘5{çß‹þòš¾Ž×?ó–¾ ˆ¨a­N'ò­´ÅÁTueº²øcGKJJD"¾V§c»³uZrO+·–iÏï¿glØÛs†ÔMqSʘZÿF–¬ß¶Íi2iíöŸ–÷å?ÛšŸŽ0pê¦mÿ×ǃ|¾oôÌ[úb€  f2pœÉlæG³r˜LæµëÖïßàòå+,‹Lf³ý[R˜;W$ïÚÑU÷Ço)ú¿ç팹ȌËCý]x$üWLü—l)Œ`‡lå8nÛ¶mFíîÞ¹sT+1eJ(âûw ï&u?¹ûZi«(ׇÝΤ9ñã»Ï¥æ[$í_ïhx4E³ƒ§ª–(½0ó“…·ËZ=Ä«{ã¢ßïVü»Q+—‚?ò¬mýhÐ/Á¿ý¦ñÜ®ŸöŸO¾_dDbuHÇÞ±1Ýý2¦Î;¿hÈŠe=T$BoÎ;×0bí–·¿x¸fߨ•‹{+J®ìÝþˉk÷Ši¡gh§w†ï ªŒ=ΜsaË godëyÊÈ~£cºù 0Tž¾düMß%+úxåéKÆÏ/><<áÐï7²õ„*4ªÿÇûzQÚj›à»rqµ­D²÷r<{ûä©;³«miG&Én9_hÐ#À6{Ýáß~ÛýÏ?Åbñ”©S Âq â ÷]ÑJZôP4z=ÊÍ’¾ÿráÃ/áLéùUs×]÷±ê‡ÕÓßá]øénÕÐ…ƒ§Â\"¬&…LÙöãÊÿ.yøïUsׯ-}ÕEè;bÃ/Û–EQ7ÖÏûî²rà—k~þyëºioR·,ÚeqPêk^ÖÇ͘¸îË%ñ–N–íØ±~Áû^)[çÌÞ÷p –ÜÇJÛ|´"nˆiÝèóq‹÷>°µrãí {‹ÛŒY¶qóú©Q¦Óì˱Ôz#µƒ~¡­—ó¼†ý_µ-íD^uTÎ1¶qÒ–éŽ=¦ÓéŽ Ÿ?ŸpüäI‚ >4Y$° ëh¬3üµÿ†NÑq@ £½ÕËeþïD®µâIkþ©Ÿ¯¡Vccß Rˆ]üºŒ˜ð–šWçSO¼Ú[;“,Áôo$" ªi×þ~¼âëwtl}×`Íû}K‚9|ÌÇ}ÃTžÄ'rØ”>®÷öo¿Qy| “4ûð£7‚¾¢i!TÑé6W. 9ª{ J(P5ï9ØŸ,LLÓ=ÉÀp/¯«œ/4blãwéò¥ƒ‡¯Z½¦L§ã—’šòËî]¡Ñ£?òðô°ÒVÎáÉœ.u_J¹G÷žÞ„¡ŠìJåý~$Ë„BœQ“Xˆ©^õ®úê,ðxÕ_LÔñÔÃ\Ú/üaã÷»gŽìÛ·fÁ¬ÏÝ2p¬™©o:q†Œ¤BLÝ5PRõŸçÞ®¹Ü”‘PXÑ×$å!ž•“ìa¤XÎã,¥AÌ“«.&•ñm Ÿ !ë|yå|¡Á1vpÜëÝ^ûãkÙÙ٫׬8à½Í[¶r׿_¿WÂ[”—ëz=[zãÀmY¿ã“þ;ý–HØgð„f"Ö\bbp‘œzØÂJ>žrðÔ“cJ/n˜»ìx¾¼I³° À–½£¢-_e¨²æ3KHüG6œRP˜¥Ä\·8)¬9s*góÏFª]ƒˆ#»cð¶Õùò:ËùBƒ À6Žãpœø|æçóÌÏÎÎ^»v=Ã2‘‘‘½zöÔéÊê~=S’tà>mûWmåUbÉÜ>~ê‰_“õa¾B@°– [õÅ”³ê¬,BáöŸzb¦{?­?Y>aåÌ(‰ât‰û® ÃBLÕÿrŒ™~|¤ç»R8c*6³HT™q¬¹ÐÌQ®üêûô?¥œvJí ›8ŽcÚb1}>ós™LΰŒ››ÛÈ1eeÚêÇî콜.º|0ó}3HZí¨=¥îÒQYž¼ïZ ‹‰}#ÕXþ™;Ug´Y‹’îè„rðTMF`×[×ü÷#¬1Wc ”¡®•}.SnB™c!„ódg*¬ê1ZKþ,±>¶fLì¡âòN¦?<óΚù––òj§¤ –mûiVô|ËùœAPã¥Z-IQB Ø-¦/¿˜1cæ NÇ!ôð‡GQ¥%%þx;²æŸ;š…y½"«ñ¥~½½Òrwÿù†tï<òUÁÍõk÷%ʲ.îXµïAe:xªVû¸ðXCV±®´ÔŠUû÷Ã\Ã%~áJ.7þØ­B3m,L=ºùÿN1c¤Y„øn¯ð Ïì=Ÿi°è\Ú¹îX ƒ=¶fƒâõ˜öÔÍuk÷'™¬Í…K”x÷ÖBÚ ç…á¶Šý4xêîϳœÏ15›Ž‹„”ä[b‘˜âñDZ4Í#ÉOÆ#âXöáåu'‰’S’EB!^+‹­yÇOæâ»7—×jb”G×ö*&ëÐÉ &yåÃÙ“ºa'–MŽ3ûÇüWwPTö[»"î;%&€,MÖ9„I[Žø~HÖ–é·py—q=R‰D¥róT» B¨4ð, ˆ¨ Ç1©TÆçóU …Él÷Ž^>_"Sî ž16à8&ø|¾ƒó"0 ð=‚{÷`ï©{vÃý‚€1bp28kœ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œ ‚œŒ„*À&–åX–¡iÚnã!I'pƒºÏ‚hšÆ0\éîAñ+Ú†WëÑj¥‹òòhš!IhGà™À@m4ÍÐ ëíç«Ó•{‹$ééå¥ÉÈ@ˆ!Iê <µÇLjé¢kû×|=eäð¡ýÞöñô¹ß¼VüðÛg¼wjÛÉ:Î ­Ã ãtIsG¾7n»Æò¨y?ÐPô7É(§½0køÀI‡òôéK>ˆþd®­o³Æ›³G šzªˆ©YÚr/ipÕËP S?eXïþ*~ú¼7ðÝ÷‡˜4oõ¡Tû´oUc»t{Ÿôz7µ‡®¬Œ¶Z9ûh«µL§S¹« z½ý•1ÚÔ[—}1öƒèþ1nò ¿]+²:¡Õ¹w¤Îýߣ…ô‹W´=²vð\ûþ³¥7C‡Œ]01D-dK³þŒß²öëéÓ–Žm+ÃgHÝwÛûï.§“ †‰|;©‰M7ïèYŽB¬.íB!'!Œw/ä›Ãüù!„Lùr×Îᮟ©›¶ÕckœUŽšŒ_·¨«’@!Ö\š~zÓ‚M 4Ü’﨟æ{“0ðQUTßÞê¿:Ͼ‡†ÑêtB¾±ÜPçÂV«E&ku:‰TBuŠ9sÆ¥_ü|? çÐqCZ7qÐEw.þqÓ¢i7>Z4½› ¾‚ 5{ÄlIâÏ ¿‘õlî)áá_áÛvÐøhÃ¥ŸK'Ói#ä!­•\áÅrD—þ¿ølËËÕ$8Ž3™ÍÃÕË"“ÙÌqwq9ÓÝ‹~N÷>wVt—fžRÉ“¨C_1mfWÞÛ·ÞÔ¿€½bà5ÿ$³–bË…&É«þºÊ×–ïx !„¸Ò 3?Yx»¡¥ÑC|c}pkÎ7…=»JN¿©w˜0ï³––¤½Û9qí^1-ô íôÎÐáÝDBåéKÆÏ/><<áÐï7²õ„*4ªÿÇûzñ1„gÊ:ùÓÖÝgSrM¯]º¹]Ùy½óÒeóž¶`+÷Q•ß<´uû‘¤ô"«Ð£i—~1úx *JòÉ‚â!ƒƒ.>‘œkæ{¶è=º“ݧR hi@ç¡b»¨«ç)OÑT²?ùZ±¥©ˆBÈœwö­|»Ý׎­½˜¦ëï©À«Ï¸VÌóþÀS€ÊÓ—ŒŸ£é»dE!Τ9ñã»Ï¥æ[$í_ïh`mUc,Bœ9ç–…ÎÞÈÖó”!‘ýFÇtó`5ë¬3»~Ú>ù~‘‰Õ!{ÇÆt÷`uU¯­2Ô+ŒE=„\Î#…8kÁ›.bÊnذãè•»EVž¼QP›7{;XŒ=¬ŠÞ‚Ë5·÷öÜùªÈÞjlTõJ~Ê]Ëœ±iÒ¤“.Ÿ­™ßQŽ9ˆägKtÝõO¸¾6í5êû2ÂÄ!ï ê#³‹Êï,· F# ׳ñ)[în˜4õRð¼UÃD-¢ôüì‰ß‘ã¾û¢5vËVý#„èâ¤ý?î:~5½ÀÄSø´ìúÞ¨÷ÚºñìïHµ0:Û<5{Ĥ¢]5—ñÃŒyöžKÎ*£k쉘K䂵sÂD¢)Û~\ÖÇDȘ~ð~Ä”5›Â]]÷å’xK§ ËvìX¿à}¯”­sfï˪êNooØ[Üf̲›×O2Þ¸`_Ž!Äj/­™»6AÐkÚÊmß}1PqmÇá6z`OV0kÚ_ÍÝ•=gÓÖµó¹_ÝøÕ7§Š*G¾8CòÆÆÎ“ÖnÞ°è=qòžo&Ï>*xgÆúÍkfv)?½iMBIͨâ»wöá•^¿¯gBÖ‚Ë©Fy˶>!¯y¢œ3‡2ç&ä!Î~âš;)Sz~ÕÜu—Ä}g¬úaõôwx~ºkälW£%÷ıÒ6­ˆÛ²aZ7ú|Üâ½U§¿¾~Þw—•¿\óóÏ[×M{“º¸eÑ×^êƒ1h”ãò@!¶,Ñ·˖^^¾ì·Â¾ÛöÓÎu_¾¯¾¾uÙöt“ãÝæáßW»«u´Qµ=Å®Å÷û໽Û8Ja„êÙ#¶ûúòìcwM²°NžüÚÏðÜ^‹òfsiEŸ¢Z# ÅnØþ”ù{´W’ß7V…üíÃ÷ñ ^¡­úç 7ã¾\t 4bô¢m;âVOêÊ[5{w–¥ŽéáÆ—;jDàù1¢¼ß›9¹o(J9·ü˱£bFMY¸f÷ù;z{ßþ1YØ nMd²ÆÍ| '¶$˜ÃÇ|Ü7L%àI|"‡MéãzoÿöU‡Ï$¡#GuT ªæ=û“…‰i:YóNn¿ÊFŒývˆJìâ5rR¿F<[oôcJ®ÄÍ÷8iDG¹@êójô¤.ü;÷hªÒA3<ÊGÊ—tz«1Å :~8¨§D hÖ­‹;“{¥°æ>‰‰¼£"•­Z»ür)¡À(¾s­LÞZQ³v8£&±S ôUnšÀãUñ±|ÛŸ‚<Äóaåˆå<®¸ÔÂÖø+‰¹´_øC„öþ3G22dkîþu+ÍÀy›« k³zŸ¨ Ètgõˆ«BÃHJ¢ô ‰Šýbh‰¸Rûnk·ŽÍÅ'÷Îùº°{çWÛµ~Å_AÕ÷ÛëÓí36öŒgݵì•=ãÐË!„a«ƒ->3sÌÊôòÊÿåû¸bùkÕ‘ÃO™§îÖÙmÿÑx1´©PÿW|2!X‚ñ1ÛõoÊ¿ø€Uô ‘Ö:€X׎TFä ‡ÿ† F!Dˆ·èÒ¸E—>ˆÑÿu|ÂM ÛânENo)­½ N !„Xs‰™%¤ þ£ðÀ)…YJÌj1BPí $!Äqˆ5šXB!!>ƒó|'dÖ£`œ¥TO[ìúïà]56Ô=ÏTÑ›Ây"²zç#0ÇÑÁS´j&¤)õº{ø.Þtb Cvêß6êhÄs¥;?µŽ©>‚øï âjÉ' ê3ìXÒw9éetK©ÝÅq¾+…3¦b3‹DxU;+4s”+ßÁí,p¾’1åeÖŠ«•ªg} n·`O*$~»¸—Ûcí®bßÒ|u”/™x9K#¼G»¨ìÀñ=_kB]º˜~?GÃ6î%|lÓ‚µ”<êÙrVõ©ÏÊ5ÝûiýÉÒð +gF©H„§KÜ_çʪ Ž?\ŒrkÕï£Výb­Å×Îìß¶=n ¼âcg\í3z†]ëQ?[XäÝÝ—Zq3¡Àâç]¿óiʤ[d={ft9ro:µIÅÛõ#’’(·ÄÂ"D<ùŽä°ç ÆoÉÜ>zð__­yUF)D<¡º‰ŒD«è>>¾ƒbb¿—w2ýá)9ÖüË·´”W;¥ƒ}—6içÆåŸÍ¬:‚d-þ#¥ìñOT0g¼àlжjÿ¢sö}:0fÞEíÓ¶+LèåF§;q½\æR±gb"ß®^xÎÉÓWË•$Øcâ©ÆòÏÜ©ªkQÒÃ!m»ÕhkÌÕeD¨kå_SnB™c‡«pX†'Ùþz}¸Oáß¶÷Ð>^„þ~±¥æ'es{ŸnŸ©ïŽ]Ï]Ëq?ÓÁ:\Þfèkª¢£ßŸ¬}ŒÑªË1²Oþ)“Ê=<Ì)ñö¦ãÍzù×:8\³þ)÷ˆâ¤ÚÇê»#5|#õbªQÏ÷[â×V¯ØrâVfI¹•eÌe9·Nü´åwÿ˜fR !„ \x¬!«XWZZóÚ žº{L{êæºµû“‹LVƒæÂŽ¥J¼{ k!uÔÿä©_‰À×lŒÿ«ÈP–ué§U»²Ì象‚'*˜^ÖqDgizÜ·;®diM†Ü«{VìÉ÷è1´¥ì©O½Áeíä%§O‰[·QTu¾1I`g÷ò?O•HÚ6“?Þm Ý;|UpsýÚ}Ɇ²¬‹;Ví{`}¸B{Õh¯¿p%—ìV¡™6¦Ýü§‹Ž1ÒûxËðì¸H÷犘a7&dj­,SžwõGryMÞðÕ¬kÛÛûtûL½Ë\¯]Ë&ÇKµZ’¢8„ÿð(ª´¤„Àmvá1aÐàYÑaY[¿˜½1>ISl°Zô…wö7cÆö\U‡^áµv›:?eBñV#ݹ)DxO_1BqöêŸtÞEvwˆC©ÅfƬÕ\Ú4qøˆ7o½v$RÙÐ8lª5w@e·O+ã÷8ºþó¸­‰ÈÔ-"~õù«^Ï»=þÙ39öÔs>®VíÆÎûô×~Y9i«–“z„FFÏú†_'â²¶ñÑq»¾þd½Uâß¶Ûûáy?—‰yµvì'*Ø¢åãFͮܶ3nÖ¾B3OáÛ¦ï”ØwžåHRѲ™ìçl¦i”û£Î!{UEÞ3†´WÚ:I^ùpö$ù–Ÿ–MÞVÎ÷jÙmp‡ÒŸóÐcÕ8®> ¿7c”võî%±{i¾Â;<²ï”˜ø»“5F®±ƒî££2<Ù_"{® |ô¬aÛØ9Z !ñŠ2#ú5%Ê«¿ÞÎö>Ý>Sï2ÛßµGŒã¸H(LI¾ÕªM#ÇY,v/h¡(J$%%%ÉDbÜfc|®»|$þäöÅ»s u4_îé1üË™]š*yXÍZrø)Ë1„áÚòmjUaøÛ¾ca˜Ô^ý#qós>“oùiùÄÍ%VÊÕ»y§ØyƒZ(ø¡vߢú^Œ‰[4t#` §O¼@ÅátW¾úä[áÔõ3š‰áÃNÚµ F£&3‹a˜À  W…+BC‡°Z%Å%©iiÉóñö‹DÇVй¿N™ßbΪQ~§W)h8N>JçÿïÓI?}?›Þ'Ì0d\ܹ9Còê Ñ‹Q;àŸëYv-¡@ØÈC“—Ÿxå²Îþ }¤‰Jåæ©v „Ï}{8«…aK“öÖú êã )ü/ãì1gÎ>»só„[š"'tó¥û€áÚªx/Jý€¬gÛµX–³XÌz½Ád6Û[FÀçK$bŠâÿ ÷†ç´—¾œ¸"è6ròGànAÿ6/ØÐÄ‹§wÿõ_øÀžÝPcÿ&ŽÏ‹À0 Ã`Ð4bp2˜<œ ‚œ ‚œ ‚œ ‚œ ÎGÀ6–åX–¡i»w "Ilj¿á$bð¯A € 4Mc®t÷ øm¤âîq5­Vº(/¦’„vž ì@ÔFÓ Í°Þ~¾:]™Ñh°·A’ž^^šŒ „’„ûö‚§A @m½ÞËÏ_WVFÓŽîJ[­e:Ê]}?Cî"·³£M=½ïÐÉKɹe4)Vx…´ìÒ³¯W”< !¦0~ÚÄÕw+f‚Ã0 §Ä®‚Zwï7¨Ws—ªÆiÍÞ9eÂAùkç¶”<¶zΜ¿?þìÕ;¹…F$õhÝùÿôŽð¨˜1ɘ:wìü¢!+–õh«¢ËSÿì’Í{óý?\±¼—;ÊÓz †a´:] o,78XL§Ó%\¼Ù1Ò×ÇK«ÓI¤‚x¬SÌ™3,ýâçû=‡ŽÒº‰›€.ºséð›M»ñÑ¢éÝ*ÃñÑ$U¬ÕP’yõàæµó§ß»`R”¢ŽöÉ”%nž½ô ¿ëð‘s'¹óM®ݼnÅä?ÿ³hfo~ƒ^ C§mÚ_ñOkÖöÉSº|¾i^s¸Qⳃ³&¨ã8“ÙÌ1Žfå0™Ìk×­ß¿ÿÀåËWX™Ìf[·¤àLww.ú9ÝgøÜYÑ]šyJ$O¢}}Ä´™]ylßzSÿØKpžXýÙ¤ÜÅÍÿ(sÈÖÜýëVšó6?œ>ZèR÷ÄÚóóù æggg¯]»ža™ÈÈÈ^={êteu¿^äÝÝ—Zq3¡ÀâçM=Ù[[Š’²Mïv*¾ýe0‰'5¾=é¶¶#UõÀf ⿘ú‹|IJÏ_SU[œ'¿¿]ÜË­v¼›ÒãÖŸ, Ÿ°rf”ŠDqºÄýìÓ¤‰[d={ft9ro:µ‰¨*¾Yk™µâ’D„k)2#¾»€tP¤— Œ`Çq C[,¦Ïg~.“É–qss9"¦¬L[ýØý¶%o3ô5UÑÑïOæXj>cÕå§»¹÷|±4b@Õ«m„ªÓ€f¼û¿îK3V+gøëà¾,VÙº™KÍpxvðÀ Φh«Þ™ÎÙ÷éÀ˜yµŒ1Wc ”¡®•ý2SnB™cîI«ŒTvèáaN‰¿°7oÖËÿÑÙ–ü ™U=lKþ¥¿ô’ж žý"qè%A @mŽ—jµ$Eq1 c¶˜¾übVDDÄŒ™3t:‡ÐÃE•–”¸Ív„ ƒÏŠËÚúÅìñIšbƒÕ¢/¼“°ÿ»3¶çª:ô —?vbƒÕP˜~fû’e—x?ÖTìx<wm7fL6~á×ëãod—™iSqú¹ó36ûÏäµ/r#•‘#:KÓã¾Ýq%Kk2ä^ݳbO¾G¡-e„Ä/\É寻Uh¦…©G7ÿßé"†cŒôw‹ eÄ[tçv¤á=}«]èÁ”&®]{4½È¨Í8ÿÃÒúàþ„ŠôÒ¿CÔ€ã¸H(LI¾ÕªM#ÇY,–¦y$ï“qãJKKhöQ8Q%‰’’’d"1n3‹1¾wÏOW‡]>rûâÝ9…:š/÷ô‹þåÌ.M•< 1:„éÎêW#„aÁ—ª|B[5¥G˜¬î¯ë„k§ñ‹•ÇÝs|Ýg[ õ %÷ ŒèûÙÄwZº?>[5&n1jîtå¶q³öšy ß6}§Ä¾ ÀjüÞŒQÚÕ»—Äî¥ù ïðȾSbâWìNÖ¹ÆO8¨B¸¶|Û‡ZUþ¶¯°Ú¯yîQ¨³ËÇÅiI÷Ш˜/¢»»“Ž‹ô’ÉC¨Í`4j2³† rU¸"„0Äq«õXR\’š–F‘<o/±Hõ†Btî¯S¦Å·˜³j”Ÿ â7åéKÆÏÑô]²¢ôûìš 6¡@ØÈC“—Ÿxå²N¯··˜T"Q©Ü<ÕîB* qV Ö&í9¬õÔÇ[ò$ ˆ¨ Ç1©TÆçóU …Él÷daŸ/‘ˆ)Š÷†GqeWçM\‘‚tû`òë*¸)è“¡ ìr|^†aÕ®×àéA» jÁßN_'ƒ 'ƒ 'ƒ 'ƒ 'ƒ³&°e9–ehÚî|$Iâ8'ƒgA € 4Mc®t÷ ømCˆ«õhµÒEyy4Í$´#ðL` 6šfh†õöóÕéÊŒFƒ½Å’ôôòÒdd Ä$\Kž1µôz/?]YM;˜4ÑVk™N§rWgßÏ»Èk?ÍÆO›¸únÅük†á”صQPëîýõjîRqÿõ¤yä½¾bÅ0ŸÊ›œÑy§‹Ëv˜½î³°ÊÛHrÚ _|²Âðþê¥o«k¥=gÎNŒßöêÜB#’z´îüÎzGxPBSçŽ_4dŲª†hçå©‹ÇvÉæ­‚ùþ®XÞËÒä©AÕPÃ0Z.PÈ7–ê\ØjµÈ¤b­N'‘JÂF§XÐdüºE]•B¬ÕP’yõàæµó§ß»`R”‚ÄD¾ÔĦ›wô¬G!V—v¡“Æ»òÍaþós˜ò/ä2®Ã]k­ž)KÜ<{é~×á#çN rç›\?ºyÝŠÉþgÑÌÞ>ü¹†NÛ´¿r³³¶OžzÐåóMóš‹aipÖ5pg2›9†«'–E&³¹îI±ï†TŸÆ6y76ÆÓÜDh£?ÌènÚºýHRz‘UèÑ´K¿˜a]¼*nÁΙ²ÎìúiÿùäûEF$V‡tìÓÝO€¡ò´…ãöì*9qü¦Þ5b¼imå¶únæ»&M½_tËÀ±æª9œIi KÝ×ñÔÝ:»oÅkŒqú¿â3ð^Á•9Ì÷ìÚ´jDƒç,)¿›TduP¤—pgƒ1bìàžÏ¤î´!ß„‰I*FxŠVÍ„¯j oËÏd£Æc}DB”[‡0ÑѤ¥ïú]*¤šŒrç×ZOâ'ç1ºL#ÝÁ¥fFs´ÑŠ‹¨š=,ÎRª§-výwð®­ß=ÏÄ FqÃÜeÇóåMš…¶ìuhù*ÃÃmÇI!Qa[ž:ª«ú·Ã‡4å¡^wßÅ›N ¬ÌaDð݇JpÊ•,ÅÆQ‘^¾\‚ À6îù±¥()Û$ðn§ª W¾:Ê—L¼œ¥Þ£ÝT¦ßóµ&Ô¥‹é÷s4l£á^M‰‡Iü;©ñíI·µýÕ˜–ˆ)ˆÿbê/òË>MUmqžTHü>þvq/·Ú£Ç¦ô¸õ'KÃ'¬œ¥ª8»9q?û4QâÙÃcÏÞ£™]ŽÜÁ›Nm"ªŠoÖZf­¸!ÄZŠÌˆï. é%CØö\Öqº›{ÏK#TŸ"LèåF§;q½\æRJ˜È·«žsòôÕre§Éã=RBÕi@3Þý_÷¥«•€3üup_«lÝÌ¥f¸ <;xàgS´UKçìût`̼‹ZƘ«1ʈP×ÊN™)7¡À̱Ìÿ"•zx˜Sâ/ìMÇ›õòttÑ’!³ª‡mÉ¿ô—^ÚVÁ³_$½| ˆ¨ÀñR­–¤(!Ç?<Š*-)!ðz´#Îj(L?³}ɲK¼Î kú(§pY`;yÉéEâÖmU_Q1I`g÷ò?O•HÚ6“Ûê1â®íÆŒéÀÆ/üz}üì23m*N?·cþ¢cÆfÿ™Ü£öEn¤2rDgizÜ·;®diM†Ü«{VìÉ÷è1´¥Œø…+¹Üøc· Í´±0õèæÿ;]ÄpŒ‘~ân1¡Œx«‘îÜŽ"¼§oµ =˜Òĵk¦µçXzXÜ@€ÐA‘^Æó×`h€p …)É·Zµicä8‹ÅboIŠ¢D"QRR’L$Æíd±éÎêW#„aÁ—ª|B[5¥G˜¬z¶’Š–Íd?g3M£Ü#äa¯ªÈ{ÆöJží·'\;_¬<þëžãë>ÛR¨g(¹g`DßÏ&¾ÓÒýñW`â£æNWnÛ7k_¡™§ðmÓwJì» ¡ÆïÍ¥]½{Iì^š¯ðì;%&~Åîd‘kL=YÕ®-ßö¡V†¿í[}0…çÕ‰:»|\œ–tŠù"º»;é¸H/˜Å€Ú F£&3‹a˜À  W…+BC‡°Z%Å%©iiÉóñö‹DPoˆÎýuÊ´øsVò«¼þ¤<}Éø9š¾KVôñ€NŸP9Ô&y¨sòò¯\Öéõö“J$*•›§Ú](¾ìUÆY- [š´ç°ÖgPoìCO‚€Úp“Je|>_¥P˜Ìf{‹ ø|‰DLQ|¸7Á²{Ws‹Í"öÜ«‚àÛð똲['ݪú†S"WuHÛ_ Æq,B,W¼,÷è5q,DZ!œ’ ‰Ê“90G+ÃpÜóïCœƒãú`‡YÓΑ>BŒ£ ùé&g±.ý»ò¸GÝåŠÿT¾uEèr\ecñ0¤Y{øÔs¯ b€s<Ó×PÕX1!rn[®Ý¼Ìñ"›¹SØ£eXöáàÍVŒSp¢úÑ?ªþ‚ðoÅ6ôЋ*Ï^c+FuIep¸wq¢æÆMeä+| !ã᜾œ¦YŽ@±¦"3‹HŽ}x€}X*Ž«8Õ¹)Ú÷#8GÅ€@þ ÊCo~CÈý›{ é‚Ûɹå,Çr_-%L9÷òtÆ¢ÏKOÎ2sâPå ‡¾–«>jÑ …´zÄçhè¡ ôh0áÑoq™˜wÁUÍíÔ\—p>©hÚ,àvzÚå³·p‹Ú»©—5¥¤â%F&j 'ÿ CXÂé°Cþ64MßÍÈhÛ¾ãƒlÍK¸ù{_¹t1Àϯú]‰ahðw#p\«ÕRõ²m8Åç—”–xíà… ü­p E©©)™œ¢ø/φS_"•§¥¦ …"¼fÃ1ào…ã¸\.Ó–i/_ºè¢P"„8Äa{–ÇÝ»w×ùÖï xïßå©B¥%%·øO.—Õ b#üÝX–+Ó•åæåê_šÛÃK$7•ÊC­–Ieµ¦…1àï†ã˜L*ðùJ…Òl6½$[Íç ¤1EñŸÈ‚à8Ž >ŸÿwœöbÀ0 Ãlß@‚à4²é¥gM€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“A€“Ç¡Í00IDATA€“A€“A€“A€“A€“A€“A€“ý?¿dShu?´wIEND®B`‚ttfautohint-0.97/doc/img/blue-zones.svg0000644000175000001440000002754611760515034015104 00000000000000 image/svg+xmlttfautohint-0.97/doc/img/e-17px-x14.png0000644000175000001440000007120511763400425014430 00000000000000‰PNG  IHDRðl%ˆˆ IDATxœì\éÇ÷îoÒ!˜ˆub¶ ŠÝ‰-6"Hwwït7***vHœžgÝ}gü_XnpY–Ýçûù}ÖafÞ}xq÷/ïÌ,„?þá"•µß¸kˆ1”àR¯þJZ] 첤ÕݸߞÍVk;Ñêï„wo㢢¸Œ†žžž¸ÔÅ«¿’VW»,iu ÑìÆË ¯þâ=€À„F¨û+iu%°Ë’V„>B#Ôý•´ºØeI« BŸ¡êþJZ] 첤Õ¡€Ojë¾¢·: Hhš¯ùž:VCŠ@øŸòpw$4ë _n\¡)Khà׆­»L̆ªvD_K©þÖ]©3½‰_Ú·†ýßFZšQî@oй—©{JË‘­ ¥d±¶Úª mïùÓVî€ð34BÝ_I«+]–´º-gh>_qÒVÑ;sçíý²°È6žÖ¯ÿx#ÁPYsíü1{ÆVÕÁ&y·ž¿zUº¹{çβ32Õ7nz¼¾ÉÛÃf[½ü—uïeœ°'z¡²tÕµGŸ4ëïÛC{ôÞœãõíœÍ½{ll¶•ëà=€À„F¨û+iu%°Ë’V·¥Ð¼.œ¦2)åÙ´üþY:š“ÿùð¥ÚsH×ù{¿o¾U°9ÚúþiÚ8YuõßlÎ~b®¬ªgLú v¾r¿"Û¸o¿ Z}w–}lÒßÜ h«KÍ{´üªÆM»_³­\ï& 4BÝ_I«+]–´º?ÍÐ\¶ b~î§" ‘Ðä¿ùçÛ½³”ú­£H üÚ¡£Ö®’; [e¥F¡ŸRú¥C_ûãô&²Ò3ë› §ºï¬Dß*5γ,i’êëéýÍ,6T™”ú¼áËç™-¶r¼p˜€Ðu%­®vYÒêþtQðç'ݦöø ¨»n%²‘Âz¡)š.-;…xæÎÛ{Åf}:vø…¾µ¯ÒÜÂ7_Þ¼½‘aܳcÇ_›¬lxª7EHY’ÿªÛë>NeØÊQ 4 a€Ðu%­®vYÒê¶~—Ó—û"¡¹òåŸÏšj0Î4MP™¾ûuýVµ!Þõ[ÔŸuš 2#¿ùJú)'—š÷õç¤ûõÒ2e{ÊÉN9€˜B#Ôý•´ºØeI«ËZh¾¿¿w%~¥¦2š7õk^–l>xö¯wN ”µŽ\ˆ_ÙK^svhÙã7¯ÞþQì1Vi˜Ç±‹õM âo×7y[jïH\ѽ×úèdÇ‘²JŠ]×nqQðÁ Ý{o.¸ùæÏÜͽ»†‹‚@Ì¡êþJZ] 첤Õýé¢à|=ú…/ŠCŸ`|ÍÛg%öS4~i¸c»qkÐþä5CåÑ:1VzûWÔÏyýχoÏNSÖ ‘£o taVøøSý“Ó·6ô÷íã½ãUÐVåñVEh+/ºƒ÷¡î¯¤Õ•À.KZ]°^ea¿•OýÅ{€ P÷WÒêJ`—%­.|R0|„F¨û+iu%°Ë’V„>B#Ôý•´ºØeI« BŸ5¡ñr¾syW”WgKK‚cвÃ=}_¿þÝýòmanÿC+­ÝÆd–ß|#"£!ÔžÒPW0¡€OˆšÐx¬ÏNs½ðàÞ«ÏwjŽê9z[Ôýóχχ\zeTÝ|ùïóûU›=]–V}Ñê Oi¨+˜€ÐÀ'DMhšœrzÿ6è:·òÓ?þ½T8 ³úæ«_ܯÚâäpë_Ñ ¡®ð”†º‚  |Bd…æûË›û‡»Çg?ù^ÿå«^a6KK‚¥Í˜ý_‹Êhu…§4ÔL@hà¢)4ß_ß95ÛÝoã¥7 ŸŽõµ¶„Ø|âìÓÏnž˜æxï«hŒ†PWxJC]Á„>!‚BóýyÝÑ).ÞkÏ¿úиþS!ÙeÒ¹÷ ùå}F¸ËôòO¢1B]á) uøBSYûë¶žžŽµûu›ÚÌúkhò}UÈ'/<ûò÷' }íX^Cƒ¥.^ý•´ºXJãUWDÔxÕÅ"4BØ_¼p˜à 4XÚzz¬Œ´l¸V¦1cN¿ýüáÇçg·Ü(^Яûn=z/Lß3´Ls¼êBÛv‹ÐañÀ`Bàî—îF‡Úº¯¨!=ÜÕåîƒõ°×Å«¿’V—»ÒxÕé5^u¹¡í/Þ8LDm†Ã' á¯wЖ‡Ía†F$Ú |¡A¿ôpÝ‹Ð`©‹W%­.–ÒxÕÑ5^u±öï&"s—SEmQ(QÇʪzDË®.i·¢À]NP—O»œà¢!4å5…–Í®&Øi$í¨Buùø„hMHØèBJÔä7 iG¨Ë§€ÐÀ'DChìd[ Z#Èo@<:Ÿêô,à õÉËùÄv¥°uùuþ7áG}ô?¿þoå÷—ŸÒw}ÕìŒÖ¶ìËù§Bô£d]–ÿƒßß_ºTªç‰ÖËúØÖ¾Î¡áEðÀ`"BJÔùi†FW߀øí~:þ9µt—¢üÛ?¯º.#­Ql"4oý»ÆõsŽïî| ÐûÞÇâÓG!ûQ ²n‹ÿÖÏwÌr.î{öþÕ?oÎ_:ÐÝu¿O> ‚÷ÑšŠÚ¢BsåÚ^A~âv´k±š¦y”ðMmîç7Bö£d]Vÿ­(￾­¨(éPF,¡áAðÀ`"Bó¡ñ.'݆»œt+®ípuq;Ú5ø Í÷—Ÿ\‡_˜ýñ›ý¨Y÷çÿVÆ©(Ûlχážï&"#4ô`ù! …¢®˜ Í÷ןȳ¿ØøùïOB÷£dÝVfhÞ|~±÷`¶JÈyr! ‚÷¡î/ »ü,4ߟ œò]kíç{øX¯þ¶+­ Êûwµ\ \á^ï& 4BÝ_vi!4ßž|rÕýÞ‡›ÐZu[^ü—ý¾êÓo?¾úü¢ø`–RÐ9˜¡áIðÀ`B#ÔýÔmÛMîòe¹Rغ̼m»ÉÍÛ-WŽùòè³°ü¨Y—åÿà÷÷§OꈾŒê~8úñÇB¸††Á{€ P÷WÒêJ`—%­. |„F¨û+iu%°Ë’V„>B#Ôý•´ºØeI« BŸ¡êþò£næ¶‹¥éuŒ/Ñrƶ‹BÒß6K..ú¦«óCV=¢e!ÿQ ².'ÿ­ÂÐ_øP÷—uÑ¡®Tæ<ýà×tYú˾ôç}…?š]öKà¡Óˆú1'ÿ­ÂÐ_øP÷—Oué¼,³K­ö„Sh¾éŒn!4ßtyöG×Å࿸ÍÿVaè/ |‚P[÷½Õ!’Ÿù§/._‚œ”:™×-ªMõ×ñwÔw4mºvéÚëL1™2Êf”¶³ö·=|{ (Q":‘ è ˆ¢@"( Š ¬@ˆR!Dt'´aƒ!#Ac þúŸ¹•×Í' ‚½ Á*„Ðì~f1Ì*ý\ôßJ^Xû ¬µ ÿ8v[ ì¶ a`††Óþ¾ýúIðAuóŠòy{óÜ£Òç|î)•>åXô󨮽ƒ=ocád±Î}Ý\Ÿ¹'®EÒRTíDí„¢¥¢IÒ6hDȈeiNãÜÆé9ëÏp˜1Ïfþ«%K-—­4_…r¥·ÊK—Ó3¯¥ •šªLט­E[Ñn ­ͱkè05ç6~„׈ßüiiª‡©ËG(t v"K©’T5ƒú õŠv˜i?Ëh×Ê-&[·mߎºìíë#ø ºµ·oò$yçK¥Ïïqád§ h™ýÎôº‚+Á |„†ÓþŠÐXí¬·OËÝhÙ K§Á.4H_Œ<Œ¦ùM<ÉŠ,E‰‹F„†v¨6šY¾³–y.Ûäº íÖ¢!*ô‚e¢fÏnqÊ)röìÖvf™u;×#Cša?s‚ëÄaÞÃz÷’ÿí  ºIóõ‰úF!+-¬¼|½ENhè6ƒ¯zלs‰¾ BÓô-̧Å{€  §ý¡ÙAKݬŸïcÍ\ƒl&|A1v¡©7O#}ýAaƒ£‘¾ô ï‰lfºßôž+L\L8|6BCwš;]»~îØ=¶×fZË“­Ë-V8fL%NÕŽ¬DQêDëÔ;ª÷xÒ£#[;‘šøuetƒ©9}£\¥|wøùøµe 4MßÂüxZ¼p˜€ÐpÚ_1šäd5GrTVN›{r(4;w.ð^€¬E%J…n0:A:s}ænvÝlç`ÇÝÔ{¡á_šžrrösÙ´izØŒA‘ƒºP»(P†E Ÿ:ß"ÀRh…¦i*†\©Î¹§œZ¼…ùñ´xà0¡á´¿¢.4«"’º9“iÙ¹œìÌFhÌ̑Č$FŠ*5€8`ªßÔ n¸6!šA³$tɨðQòTy$7£ÃG/Yáèï$´BsÕ¼ªr[M‹·0?žï& 4œöW¤…f1±· %.—#›a)4›\7éûë÷ ïÙ™Ú¹?±ÿ4¿iÆnƼ’!š¦Ù`17lÞ HíδÎZQZ³Âf[X ›ÐTï½^Þ¯„¦Å[˜O‹÷Nû+¢B“[”?3$¾Ÿ5)/óVt¡A¾bäa4:x´b”¢yBjašÀl„FÈ…¥¤æh¯”ÞG­ÚÑê›å*å5§n€Ðð0xà0¡á´¿‚´™‡ïßLˆÈ™™JTŠí¶1s“ U„F$„¥ìú™é¿m8¸‘óÛ¹+—_½ê^ BÃÃà=€À„†Óþ Ìfî¾}=2,à ݱkJW÷œƒ‚·‘”s7.ýž5bíõ:MUtí•É• 4< Þ8L@h8í¯`læW/†¥ŒÍX×'Cë³r, „Fì…åÂÍËò†¯?°£ýkn–Ë•×VÞ¡áUðÀ`BÃi`3מ?ëç£f0¾hÂ÷Þ²ýkÛ 4 4 §’9Ôøà&Nv¾bPYU Bëà=€À„†Óþò\_Þ½}ñ± ÷spàǼwï^V>~ÜÓ7¢WòU¥kž}yMß„„†ÃsOƒ3‡l+1isÏ«~5W]¡áUðÀ`BÃiyk3ïË/|ë×÷ë´©_v™¡ÇO}úè›Yi$÷µ9g×t7súú¹Þ©šnežìw«9w£\±¼¶„†7Á{€  §ýåíÜ ²™OÉ ô/Oݽ¿nÕ2ÍÀ¾¼Zì BBÃyVVOÖ Ÿ§±ß­bØ•êÌk 4< Þ8L@h8í/…æc~îWƒ)ôå’?î(y¹)'ªÇlþíca  –]ݧœ¨œx)…ÝY'«êÊ-U 4< Þ8L@h8í/…æspà s´ðøÈs«xÅDÕ”?2д„„cͨ'©¬>ÜÚÕû®—kU€Ðð$xà0!ÔÖ}Eouˆ sÞ©èéði‡<ÞÐF%(ÐT=sJÐÊgçžwÙ‹û÷ƒ˜dR5ã‡e¾nm‡ jUÅäO¸|oHhØm%°Û*„@x€NûI‰âU¨¤°· êiÃÖËQä,¨hÍ‘õk_uU£†[ì‰ê㪊KP鬼ÁÕu÷ô|P]Ó;yž¡~CûkíØiÊrkÚÐôRãÇÏ?¾|РÇÖÞh0C×€ÐpÚ_ Mú¶Œ˜‘j¡¿îžÚ»Ò`Êýß"›ÉtvüyOî²Ý̤GhOo–[ýøŸÑ¾Bƒ=xà0¡á´¿¼²™ÌÍ™áºáòy›Hó}&ÛO-YŒž›¡¡Á˜›d£äæ:Îûy“¹É®‹2Wž>x Bƒ1xà0¡á´¿<±™,ã,’. ÙŒ%ÕŠ“ýAh@h°d±Ý²Ì:Ëõ?o:5ñö_±÷Ah0ï& 4œö»Íd¯ËŽ¥@Q°¢ZsØ„„cÆ{NèFìfb¶£Åúûž__‚ÃY'ø §ýÅh39«sÓ¥ÉQą̊朷Â_hB‰ý,à !‡Š„Ðdì3ùEzøÉÌBãåaâØÇš„ºßÉ:d’‹—«¨ JŸ>#}F¶X¹7íß ùŠg¯^ƒÐ` Þ8L@h8í/›É5Ê˘£DQÚLÝÜ®†B!4Ö‚ðÞ MönŸ…ÏûO¯ž8¹ »Ðxú޵Xëîéâé¹Ý9HÎ*x½‡è ͦ]›»DuYl¿¸éJT·fBíý}@h°ï& 4œö—k›Ù½tw±fqWJ×T£ö¶¡io²£ÍïöÖ¹E97B‡34ÿÅÍÓÓÔ9XÙ:p› Ê\ǹò‘ò[Í·6šÛþÝÜö –à=€À„†Óþrg3ù‹ õ.éEî5—:‹æB!4Vá¿4œrRv$­ j¡I ¨ÒîÃ31;3¤¶ïÞ‡_ŸÆ3n¡SÝ=yk3”ÁþƒQš Í£+Ï*{U‚Ð` Þ8L@h8í/:R0¯°L£L;J{m2w>„¿Ðü—€Ðõn$i{¢½Ð MNô©)Z¶Gä åT×{ÊCy7Cãîê鵯!TÆ&ÀTd…f«ù6ùHyÆ]ܨ.‹«ªþ>÷„†ëà=€À„†Óþ¶ÛEfí9Ùý¤AÄTmÚàpJ„¨ M}BÂúØ6…«Ð¤Ø=!~4Ë`ΦͻœÜ<üz[‡¬ÍSNô,´_$)‡Ì†!4u·o¹Ý¡á:xà0¡á´¿í‘=†{Ëz–­%­UV¢sg3B%4A¡a›ÝÃ¥ìˆvü´¬§œšÊM—vØLëBã3ÙÁo«‡‡‹§×ZÇPiQž¡¡gPÀ ß}G0„æAÉãêQ5 4\ï& 4œö—S !Gí3Øw¢w™5ÑZ.ZÎâεÍ…Ð4¹m[Þ¸"P¸¯¡á½ÐxluR·ªï¾œmÐwO7šM»6Ëe–Û®  Íówo*”¯<¹ý„†»à=€À„†Óþrh3Å“÷×:îMô‘–7£ša±¡>Xß1t1T#©}¥ÆU7ïïÐp¼p˜€ÐpÚß6å#ŠLÞ?áÀ±~ÇIÄð´˨Ë1Ú   ŸÒ#¬ÇŽÌhºaÜMX;ë: wÁ{€  §ýmÃf¢ÈÇ,XJ!Q'Ð&êÐt°Û   Ÿ²ÂÆH)Vãöëú‰™§_Õdð³W 4\ï& 4œö—½ÍÒ9ttP)™D1¦wV¡„Š´ÐlÛ~Âvg C2Ðòšu‰Â,4eN/ú÷ûWJ =¢eŒBãmå¼ŽÂø-ûd‰“РÌHÙjzÒŒ.µ†×îå<¡á"xà0ÁAh*k¿qÝ‹Ð`©ËFh¢"É%#KŽ 9B§¸QÜe£eí©MwHM+ÇEhBBösÝ6È㦢 ™î4葱ÌI’’/XhÊšß­MàÂiš 2˜Rést§iºÜZbbOá"4¤ðÃ\·M)xª’¤rþñe¤†Þ½±¡Žs)¹|õ3.Bƒñ-Ì¡ï&8 –¶X„ã÷ÜšÍ~-(á½h½–SWü,%¸ ƶtY¿.±]6C7 Í‹~}[Í‹þý0žr¢{Œ—aF›6C—\„c[ï˾sÌGzñøæ‹+jWž¿çTJï¸Ðà5ì°i‹÷w¿ôp7:ÔÖ}E éá®.wBƒ½.K)!‡SŽ 9R2²Ù úRŸ¦?‚6¢éÉ©guSÓ. Lhüýóuƒƒ‹¹äÖ$þÂüSÛ›w;·šo™Ë„ËØs‰pÙv=ê…ö IDAT*»“MÚÆ::†›yî¤$$d£.‰TÂÐ<|÷¤gZÏ’{¥È0ª†T?<ñ¤M©¬ý̨ËÝ< wBÓ·0?†¼p˜À §m[Ú ‰rtPé!CQQõ6cF5SŠVbùz"=Cc¦¿[ð34™yÙÔœhß,?ë › iÆóRæOMš:.qܰ„aýâûwë¡«Ô%¦ J§˜NèÉ>c:¢ý{ÅõÒNÐÖMc4uQÊâíé;<2½brbÙÏÐ8OË:*}néÊ8Wqœ¡AbAº5eZ¸åôç¶·a†¦½mñÀ`‚ƒÐ _z¸n‹Eh°Ôm!%µt`éÁ±é6B U‰V1¡î`)%É©gp?¿\®ÛÒ¯¡!ŽÜ—¼!¥½×ÐÄ'œl—Áøý-H–+"Œô£¦ ¤ T‹ÓìÝA1V©_|?DÝYɳW§®Ùš¶Í"ÃÊ9ÓÅ'Ë/4›HÉ¡Åç&¢¤ä¦Ñ¯n1CsÂÙ‰a*h´pvˆ[¦‡U†Í¶ôíËSWè%éˆ #'#Ý7¾/úÒ43f‡¯©›§{‹ëfl×R‘ÓÌXoëÑê_¦¤Pà"4!!E…æñ‡}3ûýYü°ìIÕà*¥¤²Ÿkh0¾…ù1tà=€Àîrâ´¿L› £ëw|ÿ„Qd2}Í$Ú¤ñ´ñ\[ Ÿ„ Û¶ŸpÜ’p^ú|X1„w9Ù’l—D.E­BSéÝ©µÇhòè9‘s7‡oŽÉÿ3=/“‹»œž÷ïÿ¯”z,srä¼a\n‚o–ß–´­)ë•(JÒTé MWnÝîÂp§u ½\%kâv7o®Å…Bƒ%ŒY–økIºùcžxs¥[åãšç\›Š„ã[˜O‹÷NûÛh3¡ÔãZÇ‹'ï$7:›“M¢+4õWæ.Ê.Ö)æ¡Ä8’œæGÎB"C“Q¥ªêuVD¬°#Ù…c¼(˜'¡Ÿ6²ö¶Yh4†8V¢ LQž6q³ßú´Í¿.V$ô(fBóôëAÙÚ»oÝ4þãÏл 4í Þ8L@hò©N¯ñ Ó¼œOÌõoßÝ²ŠˆAëêJ*ä+ž>æïGƒÐÀ'@hš¤…ÐüóÀÄ7ÕåÑ'´\H=Ÿ¯z2e枦¶áDu–‹–  ŠŸÐ”®ù»hÒ.<&(,Ø8|ã ŠvZ—IQ“¬I6í}!z¼gÏV%«v‹ê>Øs¯.©¡A ­$M/žymÞõ»É@h8Þ8L@hš¤…Ð|ª3tÉI}ÿÏ›¿?œïQa?±`{T3Û@°‚jÄ?›ÁQhÎõ®5‹k—ˆøýçEΗ§ÉkQ´VF¬ò ànjGh…†7O÷å+Ö¨EhI;YÒ/©ñqqÎ\¹òÐŒ«Vz»:‹¢Ð<|÷D#µÛAêáëF7Ah8Þ8L@hš„•ÐdÝøP5°ºtMM›ˆ¦B³‘º©'­g8%Bü„Æf¡ÍµªvªÌ<9šÜpòï\LɈ–ÐÐãêé¶ hE±cè°eÛ7¾PVºÝ·ï¹qcÑã eeªÉö¶ŸÄËs‡s–5‰`ÞÙÂg¢™ù\…Åù‚ÛÚâõJWž½y BÃaðÀ`BÓ$?r²µÍ*Ó¬ºOü{wÆùnv6M®VŠV² ZòÕfðš˜a1Ç—>àD>ÂæG. «Œ ɣʈÐÐãìå¢8E%ôWCS›ÿ.©É_¼ø¹ŠrÛó4¾ºöËÜ<³óß-ÚåßÙÂcÞBS÷êO¥$¥S“O=8ø„†Ãà=€À„¦Iš ÍëÛ¯.¨Ý¾±ææ§—ÎA îÈc=c:mºM‡ß6ƒ—З=¾?âc›æ±#|‡:U]›2˜W*#rBƒ’¹Òè°NO¹ˆÞˆýWyYÒWþ©¥•±j%ç§œv˜9iXúÍÃ[hPÖ•n°±©3»BÃaðÀ`BÓæmÛ7o\}WÙóêýÈZ‹ðh´FÎýäŽÈFÉð¦øt‰îâKñK¡qšãtXñ0û?_àAôM­DS2ßÈC•E¡94cÆÙqãÜ<݇Îé!oºm'Z‰Ö õœ Má?Ë̃ºìr0¡9óè‚z‚zyÿ ƒ÷yy­ÞfþNzÒ´¿ ɘ@›8ƒ6C6ƒ‹Ð$j'’G‘ÙͪˆÕ²4Yƒ(?¢?ÏmFä„&såÊÛ}µèËv–]ƒº®Û°îŽfߌU«8z/ÏHJQKïÙ;Íi3­ ÊÄ¢ÉÁ³BU<¡á$xà0¡i™—WßVv«|”ñ´Eé†áFq—– ¤‰¥ÐlZ¿é¤ôÉ]Kw±š€°ÀqäqªTUK’?TF…ÆÇÅù…²rþâÅô/mݽX­Ø¸á“‚[x†É^ƒª1Š<ʇèË?›9¡A¡îØþ\Eùv_­sãÆþ©¥õ@Ciœ›ö(»Q±sâØ6ô4v•²¶Ëù&x›a#4Þ?SU=8ýsåãÌÿêçä·[ìÿìuÆwyƒŸÖƒÐ h$Zh2·],M¯c|yÂûúéË Ÿ³ìodÃ'éÉGˇRÂÄUhÒû¥“Æ~šM᛺к,XÆW•Q¡AñvuÎXµªáshV¡e7O÷1Ac†º ÍœïkßÊß~òðëÓì²­À©fB!4(¦'Ì6mzr÷e³õHkZÍ륖ÿŽÞôa¹ ¸#ÑBƒl¦Tæ<ÝiNx\¿ôËå2Ûk­õéÅ0Ú°¥Ôe³ Íæu›Ït:cjdÚBhVD¬§Éï"YÀfDTh~r0>KÔJ"×G±ÙSH>X¯iÎ=º¤¡z;æ¯6„¦.î˹ïªkßMŸBîH´Ð|øÏiŠ–\ª·ûëlúëHuRˆV RHâ*4¾S| »Ò—B3+r¶2MÙžä ›¡¡;.qLŸ>G•fMÎB«DEhPtcÇ·PØ ÍÓ&ŽþtèîóWg?Ž˜BîHºÐ d™]ºD¸\´ðûþŽ¡™/À«g/4¹½sƒ&5½(½nÔnìÿ86 {§ù4bQ»x@ñá^‡¬EEhHç" w>{õšµÐ¼»ùvíï_ÈW^ å'{¾tסwµu_Ñ[]bCu¼]*}~•~.zDË­í–ÿ@6V9£àîß0Ÿ²7óëE™+葱fišãÀ„±bÜeÁdwá—á‰SÑ³ÔøñE…Êô1—›¾ÌÐrĂ˸“?ý¿ËFʸÝg®Ì,zÖeÊùÌÿ–/fä¿Mm »­v[…0¢7Có×ã¼ÊZòôH° g,³ÜsQší`ÏÁ›,a€~Î;Ív ¤i¤ü¾ùŒ/M2©q IyEùê²à‹Òë¦f¦ó#ÔŒhõXõMÉ›ó|wŸV8¶ÃÅð]yh=Ñiô9ä4‚]Ñ_ZÇN—±‰^°¾³™ sM‰ß+ÙU%?íÙÚúV‚„= Vuùöå¸u#4{{í ™B_žî:]-N“–ƒ—Xˆ™Ð „¤‡ÊÅȤ¥'døíÄ…_/ѦíG6ƒœ¦§?¨Þ¦Ðx¥ùèÚë;Õ ,Í&cšë  ÂD #t¡i-Χ]''¯Äë¨#›±Ýd{¶óÙ];v¡å%öK¤ÉÒ»«p± q”MÉ›ûÆõMÊLAË#\"\YX„–…Vh:".—ŸPÈ¡©€Ð€/ 4mÍÇ÷5Ó4Cò.âuÔ€ÐP&S²e£…Í›å¢äæ9ÍÃË*ÄXhR2Ó†Ç_œ´„~¦iÔÝB>Cƒ2Çk®•£5  ˆ 4mMFu¶vÖ`:šüçû£ÍÍ‘¾#Ñ ?™%GQHÔÊD3À•â¸3K˜¯¡Añ§ê8ë€Ð€Ð€HBÓ†Ð,(^äsÎO …Æ|¹…´¥%ÁÊll¾r™™©ÙxÏñ݈Ýv˜ï¡á_ìÚ4,t ZïC3‰J îô¯"¬o¸0E#bµ _ZmÊÇ¥`_yÒ¯U¤ÞhºBB  ;¡¹r¯J.A®êþ5±š­f»d-vÍÙi¾>lµŠý —v+dÈ2¬6Ðw¡áS2“”c•=Ó¼çÅ,K¥_C³zêõNB'4È`i­ØJH˜Ðx90Oœ„>BÃNhÜÎx,;°-ˆÐ,3·TÞen‚–ô]om6¦+©«¡«!cþecò¦¡ñC7„ÇOõf¡y;è7$1Y:„¹;…æö Z@hØ M¿Œþyµâ(4s-,»››ít]åzBÕÃÀS¹{X÷¦;€Ðð/I™)ª±ªk©ž¿{R…Yh¾JK×KŒA>œð¾s½Ð 5 4 4 ´€Ð´*4{oÐJïK_W¡I¡o,MùuµÍ*Á Ê¢¤Åãc {:E ³Ð¼ÑDŸ˜™jE(Ö0C3X„„„šV…ƤÔÔü¸…˜ Mã)§r'~÷Ví§fÖ|¾&,$#'mKf¡¡_Cƒ8“`nÔp Mh0  - 4­ M¯Ôއꎈ©Ðl5ßÕÅzËêè!aÒ”_vXÍÛ B#@¡AÑŽ×îä±):-Mh…†î4ok_î×¹_Ç«!AØm„þBÃZhšžoG¡A™¸QvP0a‚O·]»Æ›™/¡¤ÐlLÞ$6Æ/jWó¿ò(8­áDhè)=}âWŠ|øþ4f@hX ÍöÒ»Ž[Š±Ð˜™šeifÉDÉlݵÙŒ¥¥TS§¡áw‚Òƒ;QT¬©‰ÂüIÁŒt§Lœ–`BB  k¡iz¾Iü„Æ|×øàE wLïK°´lŒ……< Ó‰*·<"T$„fqªµrÔhf@hXÍþ›‡šžo?¡A¡êPe#d·Xl©Ÿ­<„¦'yÔH⑚¤Ãy¿Pd<BBB  ¡q8é´éÈf±3ó¹]--;NsTáÓ÷¿ › p €…¦ÔÎÖÑHÙjùÿ^ Ð%âòÒj—ˆt¤¨8æÅ€Ð€Ðìøþ'ËdÌ ° AÙŠe~ÿÁ2{pšÊÚo¸ÍÙ‹o9šq»Ç']Må•Є„ìÇrÔáÚ]ÂÃÿl3g—, òQ„ÕŽ´†e[,VQPt¡Á^—k;ÉÉ«m×þÇìl~™º„•[/æÎi0¾´Ú%"}c&¡m£/,¹‡‹Ð`:ø4dá=€B ®à 4XÚbT—¡¹öàf—xÙoñJh0¶åZh~nÛ07S/4K jáôëfºò\h0N±pÝ{]®…¦½mŸ÷ÕBsª?a‚]£Ðü©ª*ø—V»DÄ(k§q"}¹½my%4x ;lÚâ=€B ®¸û¥‡»Ñ¡¶î+jHwu¹š ouϱš§i*4ñ•I“ ô~–!.ŽþþyŒºÁÁÅÜu¸P™Ð=Œº¤ðÆzKËŽt¡L0ð¢_ Ü‘‡B“_Tè[PtC`^«º\ÍÍ\a”ÎÉ«á°Õ¿RRHbî*z4 ÍçŽÿÒj—ˆÄIü5J=}ߵƺù·‡[")F‰÷9ñßn'öŽh\Ù|=f¡Á>tðiÈÂ{„ \š–B³®dƒóiWž ãÈ¥-ÏghL­ ht\àžÿQ…æ¶ÐÏÐ=}¼MÚ<-µÙ 2»æBcÇÚc`†@hp¡A¿ôà"4+Þp"4}Òú”Ôå¡Ðøùåb9êp-4!¡E­]CÈ™yËÏÆ~Ê)¿¨ã©¼êb¸†¦¢]û—ÚÙþhöyz„0®®¡ÁøÒjïÙ¢>q¿·ª¿†æÈŸ¸ –¡ƒOCÞ8 d€Ðà ÜåÔLh.ݽ¢˜¨xçñ} øs—“º¥eGôØšÍ`Œ‘œ»œžõë÷¯”ÔËcˆ¢p—ÊâœUæ=ÕdåÏBcþkýù¦Ènþ™î%,nóÆ"4Xw9‚„W@hš MÌ•ø)…,OW þcÌß?}ÐÆé*ÁD$>‡†·ý]ÂGRölUhþË¡c%ž”YÏÜ”S 4€$Bƒ+ 4̈́ƤÔÔê„   ÍÏI)M—îº!6§M¡A)--êè„$@hp„¦™ÐŒÍ›V• BBBósŽž>Ñ9Fú7ŸÈ6…æÈ‰#ѱ]Ölú_g«ê¿<ü®ßÚºJ|´.‹¢ÐlÉܶtõRž@h@h@h0 ï8§URkÊOÖ9ÿ&5éÏK 4ø i]E¡±Í¶701¡¡áù „„„³ÐŽ÷HšòVý×¹ æ~‘סÁ¥.Ž¥%°.×Bã—0Ìa  ÏH 4 4 4˜…&ä÷ГĆåªjÚ´ûïBÿ‚ÐHTi ¬ËµÐDí¦v÷íBBÃó   f¡!ˆ=_y­¢¦Ð÷ew…w¾‡¯^¡ÁIë²( MFAv§¨N 4 4 Y"# 4t@hØ#êBÃÅ›œëÑ{[žÏÐÐÓÛ«÷žŠbž ãÈmÐfhÚÛ–»é™S®Î¯è–÷’êÓ-à hˆ ö€Ð´7è—\„¦ìÌãÖ6õwëŸw¹€OBãç—‹å¨#Qu±”Æ«.ÆÒ8ÖåÆf\œè—ÝQ!hú×/´×i° –¡ƒOC–Ȉ ö€Ð2|úÓƒ§_Ìä“Ð`AÒêâXZër!4/û÷£ Í+™úKéÑ‹þý&4Xw9ÐÔBÃ1š¶#’Χ€Ðà^ÇÒX— ¡ùWJŠ.4ßiüô&´„FÄ„† {@hÄ@hÆZŒ¥¡Á½.Ž¥%°.Bó¢ÆgÏ 5©Ÿ¡0„FÄBÔ…¦½uù|àÄíûä· ¶Søð„†]fmšåw"„÷º8––Àº\Í)WçBsÒÍ„FÄ„†§NܾOš@hØeÕŠUvGì%BhVO½Þx@ÒˆXÍX»ÎNï·[Ò¿ÔÀ«´Úq½¥{Ah$ .BCwšü+Õ‰.4ŒÏ®O†ÃSB“–W– B#bBÃÓ'nß'M 4ìb2×dëÁí!4tÖtj"4kf^”êr|êÒëÖØ |.ÕçLø×åNhš©IË¿åÄHΡ•=?êy ˆ Oœ¸}Ÿ 4 €Ð°‹ódç%{–I®Ð¬[P¬(„ÆdÝ»©) ?ž B#þuù(4Ùuê]ÿÊ„SNÂ" 4<=pâö}‚Ð4BÃ.Á#ƒ§í6”\¡16Þ¶`Ôí_Nüª–¿`-\C# uù'4…ÞS>öXöóŸÚ¡¡¡¡Á »Ä Œ5Zr…fý’lU™š1óv­Yé5¦û+U£»AhÄ¿.¿„¦ éÌÅW)»[kBBBBƒvÉÓÈÓJÕ’\¡Y=­º³:ueýâÆ•ú7;w?Ÿ B#þuù$4y æO´/ÅçµÚ „„„„ 4ìrDîˆR‚’ä ͺûå;Wo¶v¥ÇØîïä‡Á54’P—?B“»KÿÏ£m÷´Þ „„¦µð·£,cÛ‰À2„ù),sëÇ–•Ö++ÝÉ2­áy%:íý`½öþüù M}.ýr©slç µ—Å_h˜·m7½y{ƒÙ¬Õ²¿Öð«lÂÙ«öÀ54P“Ðd8üwÛvó›·óÂkz)ÝsOe§A 4 4 4 4|„¦>— —µRµ Ê‹Ä_h„».Ž¥%°.fh¸mBBBBÃs@h…fR3|ëâXZë‚ЀЀЀÐ4„F<„fnÚÌîþK –á¿:%-Ûwñ" NHZ—Ah@h@h@h@hxM£Ð ô_Ú?sÕ™šÊâƒyŽ™1Uâ&4$CÃ?UU?wìˆѲÀêõ2­ IDAT¶1øQ‹J]î<¦þOôïÿ¯”R´ B#bBBB#9B3-Ф{ªþÙš+Ås5½‹rjÄJhHÓ¦ýhv-0½Ó€ÐHB]nlÆÅ©Å§l¯Ó€Ð€Ð€Ð€Ðð šF¡I;!Ñ`N°N2;}µÅ¢~´»£ªÚBhþTU@].õµÕåBh^öï×Bh^ôïB#bBB# BS[÷½Õ%°·]ÏBBBBƒš6„¦¶òX¯ÐiŸ¹=rl+>x%VBCwš{ݺ¥Œë0c—tâ2v6BuÙ9Í·1º?deÑãçý{ÚÛ„„„„# 4m z¤^™¿ËÄ@hè™çdþ?²|›»Ð@]>„„„„# 4m ͉»§µ2úŠ·Ð˜Û;þ¥¼Éu¼¤%­.    F@hÚšû/ËÄËÔ=»#ÆBƒÒ1hÜ¿é 4Bò’–´º 4 4 4 4¡a‘”Mg‹ãªBƒ–û†ÞóÇ~ñ ÕaAh„ä%-iuAh@h@h@h0BÃ"È`JeΣG$4ôåY1Ëü.ˆ·ÐèÚ;ý*eãhB# /iI« BBÞ=LÐc^[}þö~ÿ8ý¿ðêçÓîl¯`µ—vþü%ZhNƒ„†n6Á—ÃV–¬o¡Ydç.Mê»Ì nÛŠ—´¤Õ¡¡¡¡ášö&uû¹K„Ëq[ÎüÝp]°fº¦x Í6{§ÎÞ ‡‡ ¡†—´¤Õ¡¡¡¡á.fh,•®Ÿ¡yøê©j’jùëb,4vöíܤ)2vv 4¸¿¤%­.    §€Ðps ÍÝ»“V¥ÑfÞþùäJš J/ë`åˆî+ƒÐTÖ~ãº-¡¹Pþ±Í}J®Ýìî{ö^¹j’ꃗOx"4!!ûq å8›­ClügÛzúþ6¸·e8¡>Á‹›ÍýÛççøD,#4È'÷¿zϹ‘TTÿƒ‹Ð`y]áø’–´ºX„Fû‹÷„K[,Bƒêr²Û4JnÐѳCs†ýQÌ¡ÁØ–k¡aßÖÀÖ{”Ÿ¥£¥ Ef³ëf{÷ÞM…¦à¹ƒ?Mïè_uïž—Ý=,çöÃö .BƒñWp¼^Ò’Ö‹ÐañÀ`Bàî—îF‡Úº¯¨!=ÜÕåNhʯ¾gÔ½PÑÆ<Ížªkš^ñV§ìLŽ›bÿéZbBÓjbÏ”kDÎ3=a.®B³ÍÞIÎ*Œñå&·M](]LMíáƒõ .›|ùÉuø÷…Ù¿µµ’U@hà 4­æÁ˧½üTï½|$–Bcç`ßÉ’dnïÈX31p‰ 4P·Õ|ý‰<ûû€ŸÿþÔÆÊVBŸ¡a—¨²‹òÔ)µéb)4(½¬ƒìÜ_Ú8Ú¨FªÎñ™BuYäûóOS¾k­ý|ïC+[ |„†]î½xª¼a\®¡ø §~ºÝÊðQ6~¶Þõ³5+Ã=õÒëO<¹n’¡Èw_¡ºÍòíÉ'WÝï}š‹ Ë•lBŸ¡i#Þ‡vˆî’RðDÌ„L©ô¹µ+¨ClüéË葾i¦ïÌ>ñ¿?úø „ê2ó:ÿðƒ™1_}f½’íó€ÐÀ'@hÚÈÝçOdˆã$z‰™Ð0œÆxJNS›¡gJʺGŒ^ýÓŽ¿I Bu9  |„¦íl."KSzo43¡Aq3H»D¸œ¥yÈÅÂ¥éúÜÂO:ùº.ÝAh .oBŸ¡i;>{Ü!Bkœí,1ú MÀ„¬³ÿ»x¦ó¹ƒ''ú&T÷·õHë{=„êò0 4𠎢G ë-NBÓôºôx¼óù¢ž%'åOÒæÐìèw9{r©[j÷¬[¹ 4’\÷sqÑ7]²²è-c¬ BŸ¡á(ùÿ©²sÅØl]݈iÓ¶¯_/êBC¿Ë©©ßxꥭ :Øó`©jé!—×t½8þ÷)µdµ¢¿ŠAh$³îç}…?š]öKÀè4 4ð ŽrœtÅ{¶ÌË.‡®íÞý‰¼¼ÇÂ…"-4l¾4ü\ïÚÚIן|Ž ãÐý#Èirnï¡‘ÀºßtF·šoº:Xê‚ÐÀ'@hÚΣ¿ï½×èa ÷ YvŽéJäqzzåå0Oƒ‹Ð þ¸÷°²×Õë o>½úòØß'ÕSÔs=à%­îYY†Ê<’oX•ÅR„>BÓv^¦§<>éEW¯IJ~£éªq­[·ˆiÓÄVh®¡yõæý_A÷¯t­¬ÛtëlíÅi==/ûðû^n!?ÀKTÝ÷_¾|ÑÁšwfhÆèb© BŸ¡i;o|¼nÍ·Dz±xÛ:éˆ.Æêïß>å`À»³¿]§LIÖ‰4T‰ëi´ùÞÑÿJÉ"9ç¶ã“£'a·•Àn«áAôfhp¨ûáõûnýOí0IÉL¥&(…*ån[ýFC#=9­ákÐÏÙP]{G‡Ÿã»ÅoÏÀ=»fï’‹›ç3å>ƒJ§d¤ >¨nFN–àƒê‡…>¨î‘²c-r,õÄY½sÁÁƒ#÷Jìm³Çîà‰ÆVä"?7ioèOÒÚ{ fhàŽr<¼ÌßC‡\›5ÓmI·e&Ò{üùm3B(4ô­ ¦Ž¦izkŽòm¾ÒÅÆ:yé’â©ÉK—ºØÚ€Ðˆ–Д/[rÒuº«f„æ dmÏbï’²£,]„¦iðÀ`BÃiÓ“Km­/­Y]²ÓR-XÕ(±BCO°QÈòµ+”B•ŒlŒÂ7n|®¨X×§Ï)ôø\I ­¡ ¡9zèøÞíûL–˜¨E¨é& =Hdï" 4Mƒ÷NûÛÔ3ÌMÍGûŒ–p¡Aqppt^å<Èuàd›N¤ÅÓë³çÍ{¦¤ÄÝ< à„æØ±h—˜Ù&³å#åç%-ˆ;œÀ‰‹€Ð4 Þ8L@h8íoSÏH¥fôôíéLs“p¡¡'yñRÿÙ*!*–S--­é+ÿÐÔL^º„F8…ÆèoãGÖöÔîÜcGìÎÂã{9wš¦Á{€  §ým¡.[\LÊL¡)žjpJWÇÎÚ~¡éBéHÙnz[,Ñ´žB“žê3Ø>œ`Þʼnº:&5¹a}RJÂ\×´RÎ5Ú.Y2„†jãCìoSÿ£¶#Î B+CÃúYÖ¯!X’6„¶ý$–$«)SäÂå&ÙN $ý|¡ M»‚÷NûÛB5Ò©Y£ìFÓ6Ð$/]òGMú²±³¹jÐØ_(²&«•"ñ@hR }bÍâRcRSœCÉ2Ñžih}ª“o¤ª_"15ÅÂ/RÙ71F„&$l‚3q]@ˆoHèO¢´-qÃ`ÖX³o¢ÏÒˆ¥š‘šj¡j[–n‰\UTÈâ.'šöï& 4œö÷gÛˆ3ŠWŒPŒÌ H¸Ð¸ØX?WRʞǼ‹;dùÔ%Û;ÿJîÒ;@›Ë.^rJNŽïoGµMMKIK6t$/ŽOE+âc{8F{¤I€Ð4IPH˜¦ qsHB¸1|ÓpòpišôDç‰a:a9ssBÂ[¹m„¦½Á{€  §ýýÙ62¨ÙVl˜@›(áBƒBÚ´ñ™’Ò}4Oéèü¡©‰–Ñ#—ŠAã~¡Èô »ÑmV¡IOõ ŽRôŒªŸ¶IfKÞ™Ò°>%þ7[Šuª$ 1Ô܃$ïê֪И‘Ì'DM”¥Éõ%÷ݶcÛaµÃE“‹HÞáŒ@hx¼p˜€ÐpÚ_–±wþ> ¢†}ª£„ Mý<­MÒ²¥ÅS ÐcÓû›V:Y*ùMý…,¯Bê»Ð{±£=7B“žæO¢(9Ò,è—ËH²ÐCm¼ˆ ¶Ä ÁMVþ'4æ¤]zQúJ4%uªúÌÈ™aÆÄÓJ§Œ8åDnñ< 4< Þ8L@h8í/KáÈ f“tIÑ ™É.4ì³ÆÁIÕcu’–YnlиMn›Û!4驞¡y{ÚΤÿÖHì)'bÈ.¢¬ qm› 2%™)L•¥*u¥v5݆d›°5áD·GûÙÃò©@hx¼p˜€ÐpÚßÖœ£dÎáI“'-¡i3«ìÝÔm¥ý Ö¨GjøO5qÝіФº“ešØLÃJGŸHU¿Rj²¥_¤’„\ºÃ£þZ`ºÍøýÖE¬MÖéBëÒƒÚSÉoæ¢ ZO³Ž>2àH™zYÒÆ$6ÏBÓà=€À„†Óþ¶æÔìâÅòÑ >i~Í6¥%j¼Ÿ¶!ÖTûtIz–Ù»kX+»nÓ )C‘éÑM?@³ÛÖB“ÚüÇhIÞÚpÖ))9avÃmÛ²®1¶rÛ6ým{‚÷BØoª”ù·ÅK5m=é?Í4ŸAN(œÉX–ÊþÙ@hx¼p˜€ÐpÚ_6ÚQ2ç°ã6DZ=â2Yþ¹Ê4ÿ(EŸÄh‰Ÿ¡aÄÎÑa‘‡ªUhë@µ#CFÊ‘åÉŠ£‚G¹åìMÇ.(â$4Ž$'££QäQr495ªÚ„¨‰Æá}‰~Œˆ¾¤‚)…纜˛™æOäD@hx¼p˜€ÐpÚ_6Ú‘A; {am²aât;¤'O·2ŒƒSN,´f®§¢U˜¦uÐ:{×L–hÐ9¦sŸ8­‰3w¦˜‡§GJ Ð…[“lE.A¡@S§ÉÿNþ}iÄ2'¢s‹=CƒÃ²çgŸ•=»gâžÎ/Ç¡áIðÀ`BÃiÙ›GɜÅ ŠÔbÕ¬RmZlŠŽ¦)9Æúµÿ|“Ø =¶Ž3í¼ä¬Âú[n´wA¥2’\SÝV$Œ%#§«:!aâúä ¾iþ‰É‚šœÔä2;›ŠukËìl³Ñ^ü$+ë"ÖéGMéGé'E“R£ªé’uWD9Z“’”µ©§•NvbOå\e@hx¼p˜€ÐpÚ_öæAŸ¤q§y*Æ(E5ý¨½ŒT ¯HMbJbûmFB„†GÇi¶Þ²VÄIþ’Ãæí!Zç"ÏHÎH H 2òÚ1ÆÙ°[l÷NѺÇv׉×]¸pG²©Oš/²> Í Àwêê† »1g6z|«¡ÖðÊcâ³=3¼7§n™›j† F†&#O“B2+rö–ð­^Do†yøOÏõÜÏø-£5q¦qÇ{œ8¦y,Ö,¶½*BÃÃà=€À¡©¬ýÆu[,Bƒ¥n›BCŸ¤AY´pDüÈäÌ4úʤä„!vÉ›“¹±ŒB²¡¡PsÝÖÒÑq]ä%y»ÈÒJ¥ÏÑ=2–‘¾ø¥ìL1_œ´dLüØž±=‘â¨ÇªŒ9;yíŠ$£mÉ&N©ÎiÁq X„&'5ÙÌÙ¦Œ5hùm7 –ó4yù×Z—ôœLJÍ'ÓÏ<ÍbEŠ‘~â”ßâ)Æ*vŽéÜ7¾ß”$ƒMÄ­áÛ܉­™2Ô}ºÓ ÇãÏèyì”ê©ä ɉI¸³ŒB³ÿÐ]\„ã[˜CÞ8Lp,m± Æï¹Mù OÒ¤R3´âú®J^Ó°2-”HVð®#se3…c[®¥ãìjNKM]3~EòQés Š6Ã2IÉAi!)–[2#æ&Î0qPÜ XN1¤cdzÄö?lrÂäé‰3æ'.@Æcœ¼Ñ$y‡eŠ•Cª“WªwpZhd:™š^ð26;ž‘¶Ö‡ia'hM™-ZHÌNFû„gE„e‘|3ýóÎØ¦Û™¤íX›²nQòbäécÇ Œ¨«Ò!ºÒ—>qZhͼäù[R·ºd¸Ff‘‘è°¹††¥Ó„NÉ?û¿‹g¤Ïg.É nüó¸ my"4x ;lÚâ=€À„ÀÝ/=ܵu_QCz¸«ËÐ`¯Ë‰Ð0&iHé‘ 1 v©ŽÙ¹§W9ÇMNü\Xô#'¯F`BãïŸÇèopp±À„&"ò £.×ó4ŒÛ¶É)©V3ò/._æ6ÇeŽçvÏå1ÞÃvª­élÓ ‹7,Y³dÖ¦Yz¦z:V:ÚÎÚ=}z*+Ëå[äWÚ/èÐÛj¨B”2!R•Þ‹@êCLÒ%øë|g¼–ÜŒ N;‚U¡Ùmç\f•~.úQäö=Bô#!‰O<ÉøQ'&Ÿ˜Ð(¹Í¨»ÿÐ_ž¼…ù1tà=€Àfh8mˉÐ'iУKšršàô0º”p7=#±34t¡¡Ÿiú{ç×Ô¹÷ñÓ^« 2TÜ–*Š×+ÞâxÝZÅmÅ…VEq°ÂaC&ˆ(C†ÕÒë¶jÁkmëªW«¯¶vÝ×.­Ôª}Œ&‘†$'çàù}?ÿO>''9ùç}¾<#çüÅúœ‘×Дú3dÈ‹#4§‚›\Ø«ß]NMŽÐÄ; œ{RJ Fh˜í²˜îÀ*òKÖ×ê"4ºäÕ\Jƒ4ä`Å6·^[zgmÏÞùáYF„&>¾˜¡IM;¤»Ð¨¯›Q?n&vŸÕ£Ð|P°í++õ54Õë×½l Mñ¿ÎÑ'4ÖШ;MvN)#Bsè㫌ŽM˜Ž®ƒé »œ4­WCQÒãI¹ÃsF(XhtÁ𻜠r—“r´F4cŸ^v3µ`—SJ1˜o† ¹<ÝùÛ!'Ç䌾v9i.4MîrÒÚcô"4ºv9hB£i½*ùI¼×þ¸b&çýmoJNå¹Bh´˜r2p49m´³0ÿTPàÙ÷–‘[º¿‡ÆÀ¡ÑK0ÝT@h4­WCóŠOÕÔÕnÏÜIŽÿÕõ#ót ÏüušÖ(4z@hZ¡Ñ´^Í-„xLe›Ú½ýO*V~$%wÊêÄ+€Ð@h 4M@h4­·E""s>PG vÞ½íÉÝÈB¾I– ¹…Ð@h 4@h4­·E#4 ›lgí-1®ž¾´@”W@N„˜e™Å%Bh 4š—54 @k 4šÖÛ"›iØ¡ó~‘ðÉñØ…ù«S³É]Ïüõ–[,%E© „¦É€Ð´B£i½*ÈÓýÆj~OoXº]tfj~ÁŠm+»mé–º=½åBãê¾¶Ÿ—åëKÂj„B¡a¾Ëbº¨€ÐhZoK—¿¨Gîö¢¹‚-¦iëd9 òZm±Òpœæ™Ð,_åÑÃÇÛÚÃ}1½"¡Ð@hZLwàMëÕEh½u[ÏPÙÈùüÜ¥]¶tI4·yk½Œ6¬Yb›Ð@h 4Ó8@„FÓzuÙE…ÎÉYæiŽ™ïYl±H.j&4“7ø˜¬_ßÅÇ—òõéáéN»Ù@h 4M‚é B£i½zE„gåu – .ë”Õ9±(E3¡yc£ÇL7·EîÝ}¼‡®†Ð@h 4,貘îÀ* 4šÖ«G¡!±¥¨Ð1asǘ6›ÇÆÿ•ÐÌ\çÕýéB`·‰^>=ܱ(B¡aA—ÅtP¡Ñ´^ý "åy&|÷7ä&ÞùMð³EÁKÝ×wÞà1sÕÊÅ«=ºûxÙ­¢×g 4FÁtP¡Ñ´^:„†ÄæÂ¡ɯg˜:g-¹Ð¬\é6Õs£qÞmïÞkÝ]iö „B£Q0ÝT@h4­—&¡Q„[FÒë²®Ö©ïl-*hZh „B¡Ñ$˜îÀ* 4šÖK«ÐHÉ—›È‹‡ElÝ¡Ð@hôÞ„éxY¦;p€ ꕇ¤©#Øî©·Íšý·TëÙ©wíyÄøûA T±çWâ"ßwi÷'E=è»ðó”÷5œü儯×–o“tŸz%âë}õ:äEš{”jîQ€=`„†]õÞýów^U¸Ñf‹·Äu·¿ÍÉ9ȱ 0&·ìN)­®0Lz£cøŒIíÉ$ïF//ÃÉ+”ˆ $ïÕ¯n´ .o'.ò푺/¿¨þ:tÔ£Þ«o]%'wüäv»òüµ«ÿ¾•:÷Ë9_ñ¯C^„ܾìÿ?FhZ¡ac½¿:l–Ó¥GÂØ†oÒS ƒ9 „Bó2iˆOD÷-œn_V{ôú¹›™ ØxÞº¡0„†-õÞ¹ÿߪ3ùYÙ³•Ä‘»_üúeïŒýÔzžJhø1¶ ÃBsëâ-Û?¦f^¿ùäü¥­¿QÔŸ$Ú½ýG/iø"/k€Ö@hØRo\‚MB’me]1ÅÿŽv‰T§4ê½à§B` ¡Ð0)4·.ÝŒsøãÍEßœ½¦öÐõk—Ëoû½ýpHÈÍë3@hØR¯,Ó)>ÁFš6îæ—g„âáDb¦ERÆÔ$>åãKñ£Ch 4 Í­°ÑûÌÿ¶öjOø4í~§ ·/AhÌ¡aK½Šù¦c¥¢°pKr{÷qýÙ {3+ƒ¨îªˆÊ™À/Ï«‚Ð@hš›ŸyÔûy›¹\|gƒèÖ'—¯]®øš÷ÏGƒ1B`  [ê½sÿ¿‡ŽÅ’ƒ›?\’¦S Õ<Ùå48 À8:ÆviÑts¹y”ST•wMi„BcX¡¹´•¸ÈŸ”2†}÷É—Wo~~+þÝßMÈÝ7þ°_òÝI¬¡0„†õÞ}\¬TtøxÉ«î¹'¶õÏî?!xÂa§#e‡+!4O9µô À`@hX]o#¡!q¼êÔ²]Ë-Ó,ã&ÇU¤Ó5ý¡Ð@h4 ¦;p€  «ë}Qh‘u|kù€Ñþ£w¯ÛSZ ¡Ð@h˜iÂLwàV×û2¡!q¢ªtÝŽ æRsï>'÷•Ah 44 ÍíüÜz;»G:!Çõ`º¨€Ð°ºÞf„F;NŒ90W˜¡Ðè]h¾Ù–£\·?‡P(IDAT¬X¬£Ó@h4¡au½)4ŠØ´%ÊRhé±à£SG 4= M½ÝÐFBSog¡QÓ8@„†Õõj(4$94?ÀÅBdá_pªºB¡Ñ‹Ð<êÐH̯í¨3}¨‚Q BCÎ@h”ÁtP¡au½š "ò7ØÙÛÈlRÉ 4Ý…æ[[Ûœ1T$jÉjê;?¡†U0ÝT@hX]oK…†DùöªçD+‰ÕäíSŠËvAh 4Ú MÉçç‡Ê6YˆºLâQu}U_©w»p„FLwàV׫…Ð(;YQ:·lÍR³,³%»]V‚Ð@h4šÏ®_u)Lo+ÚikÏôºÍ »œ†5ìr"·· òt± €>šsi}­.B£K^¦êÕNhq2ìêáÞ‡ç%½k–mæ±oíÇ•%†š-[+±øSB#M=ƈÐäå×êWhþóÕÐCm6÷=véæš”’ÊšŸ6a¦;p€ „F—ku¦Þ³Ž×겦|We­mí®» '[æXòú¯:E·Ðè8º£µÐè8´£‹Ðèx­.R¢G¡É©>l)›ÐFn²ô€×g7.6#%Z|)Ÿ^„†…M˜é ‚Òî—íz‡ W’ ¡]^í„F÷¼LÕ«Ð|\rC™÷Èá[Õ®5uVu¹›·Ü>ªg^¯ÐCá'ªJéùæeÞ¬-ZŽÓhá%)){”yµ§ÑNJ„ÂýÊÔRéQƒ MN^¹2oÞ¶Ó: Íó'l¶N{-³ƒãŽg¾ü´©>ó£2oåéŸ &4¬mÂLwà¡aûµºŒÐ(+ÄUu–uU5iÇÒÿYôv÷Ü­Á GFh\F„&'·Lëk‹+ìwŒo“iÞ;mñuU-’’š3?2"4,lÂLwàØåÄêzuš&¢ª¢Ê£¦Î²®BÜðgº³OäNØ1±svg}ž+ëKht ìr¢5’%)ï¥-ïñ¦qf“Ä¥‚c'þ£­š^hXØ„™îÀ* 4¬®WÏB£˜~Ú\UgUWíZSZÞp7ÿd¡sñtÓ­¦s>œ[xj;„æU¾”ï,s6“›Y¤õ7ŠZ5O\öÙõ«†T €V 4¬®—¡i˜~:RyzBm­mmù®Ê§S¾ßmï*‹‹QÛG ŽŠöì} ¡ye„Æ'ÕwxÆc¹±mêÿX„ •„Zð×¶!4ÍÓ8@Ek~Øõ3Þ2~;__*$Ùåèïï*züÝÅ“.‰a9ïë;ñÌýÖÑj’—¡y:ýÄ«©3¯«Œ©Vž,©:v(Â&ߦWö é‚éÁq!/5ؘ )Ö<)å+5öLŒ‰"'£úù6œyÂÅÑ= T'àÿäÓ”ÌN Ô •´çIÜĝЖògËætÏìn!·pJù÷ˆx‹©[¼Xñ(ƒBS{lUã&|WZCË%>ó¤ Íû¬¾u4a¦;p€ŠÖ&4QËwFœþêæõ×Ï—L‰ñ¹ò€œÿíëšÉaü%e_}ýócZò¾‚Bó$Ê ªjûÔÕÌ:ÝðåÂjçã‹K‡J‡’ßéÉ튤•M˜?~dPòÂȘ0~¬[˜Ðˆ—ì¡?-=BÓ\ˆÄcÃ%Ë“Åñ"ñz¾Ä8@âûT_ÄqI’>Á’wÂ$«ž MŠD°:ÍÝ.ÃÎHndŸaï!Ý0-ZÜž'%·‰jÒàÐädù¼Ð„ŸšëGl# ßi%M˜é ¢µ Ú”ÓÝ_rÄ3ÎÝpïá燒ºn9ÿí]Úò¾ªBÓ0ýt¢²Æùtí›uåÛ«”'kh‚ãB¦ ¦[¥[uÎèì$rò hRA¢¢{óËøCL9 D’¾þ’5¢'î"ÛJD‹CFh¼S}Ƨ7•›öÍìç"['w‹[H‡†I"_‡ SNª&üì?<šâ˜¾;oüÔZš0Ó8@E«šÇw¾øhhdöÎï?¸w¿<Ô:¯hdˆ/Å‹ž|àšþÍæETFU×™×UW« 2Ö&¬.aœiüVÚ[ssCâBÕçž„FOB#ùFK:%M”®‘1²£¼cÛÔTü*„÷lvìÓÒ8±©¿tD„$Rø/ȨМoÜ„ŸÄ¯?å¡)ûñ>MM‰Ž—eº¨huBrá£!»Â;狇fœªú¾þ«/N9„%Fè}Èš+B£˜~J®>ÝéÓ¢)E|~ÌËÍ#Æ-DØ.?ž›]œøNqÌš\å]rœ0åÃY|qG©C¤$þ…¿uÀr¡))ËMH²#BCn_Ö„!4­iBóïó{|Ÿ[HHØi 4$¤žÒt›#æž¾«Ò6cî™®î7ZG`\Њ¤•ÎBg{ÉðA9cÚf´5J7ê"îbd=,fØøˆñÓƒ¦/ò]´zýj-lÆÛÝØLž££ò 9þÎ̬Ñ8Bãé½no¥KЂa3'FMz;Î~@ò+‰U‡ô“ÿÍ<ͼ°]ü°I‘“æ…¼»Êouókh^ b0Ç«N£8ž´(Oñ§%uQF„¦¤4GÑr‰Ð4Ó„!4­iB#Ù7¡x¸!ß„Fqáñ)#w›¯ÍXî’«/›ir ÍŠ+Þå½;%dʨÈQƒã÷NémžjÞ&³ “4“n¢ný’ûÙÆÛÚóíÇn;)|yæŒÀsüçÌçÍwõv]¾q¹Û7Eˆf:^ìÕ³‘å\îÙ3sÚ4å]¢JE»ï¬ôs[î¿Ü5`é E.Á æ„ÌuŸî¸Éi\ôø±#íâíl“l­S¬»‹{tJíÔ6³mÛ‘™ƒySðæ„!£ù£ß‰˜:?ØÅÍoÕF¯ZQóÛ¶ßZ\b\=aažòOK¶:¡IHÚHhšl€ÖP'ÊK£YŸ_ÛFBCÎ0ý¦¸‹ûôÂ×Ô÷l2x)TPêÓ°‡9z!çL%ާ’GQ‚a”h%¶¦¤½(™•nBe´W„QÚ¯É~Ž6íSÛ›ŠM»&uí×Ó:ÊÚ6ÌvhÐБ>#<f/ŸíºÀÕc¦ω9&R0LÝ?{W·]eFeg¨3†‰:ꌷÃΈh>ÓÿòÚ£lÂJ¡i² ¡1ø[Ó ¦;p€ŠÖ1BC~™{a„f„!߃#4lË»÷Ëæë2¢ø§È-9fÉõ{w=trltò¡£Cýþ=,ÿ¨I/ºr¼}ÍŽuä–³ùsn>”MXm„¦‰&Œ€Ö´¡9{ao#¡ùäâ~C¾vþ´3|^…Í(M"ÑAAôB$š‚ ‚ ‚^||¢z‡¦ÕA4Ëb1Tbi/úËFþÌÍèÜDrȧÐO| u„O@öMcøRŒ†‹`\ŒéØ1¦XuÁëkȱ ‚ðYQŸh†ÂC"E–î¯)‡iÉÑà´ë12•ÛNÙ¾&§\)Æít3ÆbâLÕïfpòU‚fï—k±¿t«¶û-·}dý—õÂH•6"©®žÊe9yì¨Q½PW޽S=Z⫽t¯Ö…=QÍõß/d&õ¸/>‘«Û9ú “ŠkñÐt?jÓ6:ðUáü¦Ü1טõÝT®Æ¼Iñö0 7d]ˆGîµÅÇÒô³!‚QÈzDÓ¾!;CâˆT¤þå`çõÁ¶sxû*c‰!èùa[­£[÷]¼LÌ…X²bHû-‡ ^åËâU¾,^ÒŸRÖ®ô^’òïUÃ)o•Ûѯq•þbîÖG|øÓ*Ž€5³ø§tšä7Í…È”X;S%a ó޽!)íÅ$Þɶ„ªäµÎÅØt ŸûEÖü/(­n‰A9öÇ1.¼Ní„’<¾‚ÿÜðm³Ü S!ÝŸ:}ÌþQ_ãn%E&q r›Ÿ8œ¤bÁ§ˆ¸Áš®•É/‘"“¹ÑnÆÞ¦n*5Æ'‡ð°oÇ™Ót²×ÅÈž Ö¾ çO“p½¶—[QïcY×ã Š˜H‘™ N5ÜŒP¤%4åÿåÕñšæIí¼–È$RœËtÀçbŠP]Ǫuí•ëÔiÝ©“Ï™DŠS‰–ÌúßC®¬îÇ—…lI¤ä-Ó‘eWÂßÏü¯Á:sºþŠØœ[?—I†0rÀ8~Zÿ7/c—¿—HÈÕ},›8:y¤tÔ<¶þù„}=öà£xžïGóâÉ#ÛN5éã{‰0-?’ßNëÈ›%>\ŽLÿº"ôo­M¢ÇÄF؇eè2;¢ÿãÇR嘒:—ðŒÃËÿ"$eÆ\DåR£¹¬í´´ ½&WáüŒM<ˆOy-.€Óÿ¥Ê”Þ”‘*-›Yl™íÇÐCxÈ«1qBªÚK‘™~Ü·(ÕW}]CSÚRŠÌ¼$mf%ù°×M4\•[+ñ*%¯Œ¸ñ·#ïpìzXò ‰/ømù-ªiJ¾p ›”u«íKQÓ¿é«-5¥é÷Mè!<äU?¦å­¥È$NÔèºê}-‚Þèø®óh®MÿŽW±Âï-A§eµÏªóÏs$&´eú«nì}B`Àê\Zí° ‹É[r4d/ ÒFùt5²'Qz¦RçǵÆëi{v< &ðÙ.Ú=™Lûqÿ©ê­á×Yõ ~ºDpäcöv}Éœ^˸k¥¯X3£A{…_gÝÅJÌ9ÿŠà¨'ìÊ¢¦•éü[Yfœ}ApÔôxÅìž+¸§ù:s¶þ±<úuG‚«òÃÜ…ÌÛ—*ï²æ×‡ÄiT®¼ªÞz Ƕ?2{ÙæLlCÑW—x«‹85 í¾‹8Ç”»(2÷<Ïc"xyqÕîìâšÊ3sÖU‡1¢Ð>æ~­4Z˜È‹½sùÓ}½ËZdx‡šãÀÒ–ub8}ö5 @ü£ÝÌš2‡I@¯ÿþ“˜ºßQFëhœ[N¢}°/Kþ „ýµ€•a˜Ð"ŸRg§&6;5Ç`ø 6ßiÌ*¿0Âg86£¸4å;F]kÄÊ;oyój#Žq+µã—©{ Gž%ÑÜ;~ŸâÍJðàxÑ@ü£½¬{Tþ_æA’ñÍ™7qu_ª¦³ÒW[jBËï›°›ür¥>«î…ô|?ß¿šFljÿªî£AЙ¬Í´_ö\ëuƒ ;Là;š/‹Ùb·]玣à©m܈ÊFtl[iûQ×Ù|К>è[ÐYÁú Y:Š’z?=šDô«Kl7‹€Šm(kË!—§nAYJ,ƒ±>¼‰ëªêmS…©>ƒ¨[Ô©uê Fù—ó@W¿úÕí7eš´—Me¼– aq;¤Vù©ÝoUdeã3”ú.ï_+ûü4÷¢5]§žëŸQÜsþ½&¥~çÆ”´·À¾ »4ÄüúyžÇiPžŽ f&ID½ ämXR§ÒÔïÒ†’–ÙˆKe;I‘Ù·ãLH&ïÑvßḬ0M øÉ=½ŽÁºø— \6ú¶ZÆjV„^M¸3çR÷IÌ-Ö.|Ì·SZR ãYsµÇŒ +xä aŠ8ìÜÄý„K¬ÞÿœDE(W¼¦R‡ŠdçL·DV•Ác sxú~^Ä>e÷o;Œ*2¥Ô+»ý”¬¹ ÍÜ˳˜'ì™}ž/&w¥¸ªc<‹ãÀÄ©.­œ¯òÛ¡µì—v¦{‹î´KÜÊ/¿ýÆ5çVÔÊ“ý®Iâð%?ö—°´ïJ¤ÇS?ãŸ&Çh&Ç $³ŒÉÜ› n¾Pu è® ¬Ê÷¤=»X³÷ÏÝ¿ÆÕ¡4_»?ãàVö›w¡{vîx˪/Í¢Óg[ª[˾&îÕu|#+†CvúhA4¦ÛÀº½»&âÓÇýßÉ«+û™Ûc$§3^;ùÑÛªH·‘¬¹Œó¯¢‰~uŽåÃq_Õ)DSœ¥Üx…^ò7Yº6`ù0νŒ&úåß,¶ŒÈo=© í9#}ǪLíõ±ëÔGý- R£B,gvþɃÐxâCïqfÇiâ*Ô¤ Tƒre1þüºáwn>'> $&&H²9ö¦sªö]ØŸŒé9›Ã7‰NT`bjúñšàÔl"í_/fɦ…, éÊØ¯U¯-«ãÀ,? ›%²~Ìlº·ÇŦm»Y°qä:=¾$ÿGÝ4-ÅmÊu"q\žâNÆ&Ì2¶ìƒÖ•èÑ.žUƒðçãbÞÞ`çD/þG·m`QšÎ=¬Ø:þ vÍ+"“ØR¡¹‡&îÁ®×÷¸fçŒNV}iVý›^ÛR]ÜZö5Q÷ø9­Žÿ°rä ¢Zv×¾A+:þ©iEÅ)‡YÙà*“êÀQê@ùökˆh1êÚ^Y\khC­¹{™ä¸žï Èq*ñg*÷¡œŠõȪ1°=Ë+Ûcc¢;¹m©³àW¦ØI‡‚rœ ¶cWAovϯ‹Š“Šêé"VM¯ÑÔu{ébzi+KJ´@sù¬ýq$?þ¸šKö-èÓ®$•+±(Fí2áœ^:™fÞŽ7TêÖ}]²¡ Uûζ:½âÛ¼8NRGª¿O›Us¨¥õ™Âª~,ÈÆþ)8¶î™^›šÕq ¥˜ÇWØ…—¤{›¢˜cNѶ=(jCãf.&‡:•ElÙ:­©6ó?•?AŸRŽäÉ߆]¶ßPN†ŽÛÀ—})K!šÕtÄòÔü†"–•éÛÁ…ì ÎeÕ—fÕ¿åV[jÙר•§WÅSô)!Ç©À·lÌ3…sj©¾Ô@‘ŠH…öW ‚ ‚Q=„‡‹ƒ}ó ‚¡I¤ºÑAA„dj¯ž‘I2?é¡ïQPuÛΩRR,+c]Œ%nMì?Dåë‹Wùæp$ºa(í¥Ég ?¾TÆxÜuíêi¬u„ω8u.‚ ‚ èœ8u.‚ ‚ èH4AA½€þ§kAA>?fâúLAAAÄ©sAAÈm¡‡ðpøˆ‡T|ìûAO4N4ÓM9zLŸ8£ üâb:•²C&±¢ÔWÓùëmÒûâ¤`Î/üž/ò¨{b²8®mEaysŽ(-—x‚Éõ !“H)Vo"'ƒ?bYIŽA&‘¦‹AȾÔ'¥þ¿ å'oe*]_ùa_¤º‹áîª.T°"³t§ÇšbP~ze ÷ãt¨_íôA}uÑÿ~*âyyb>?Ô*I^‰™ÄšbÛ2yû"s»IõÙn*×dž"‚;[Çð­‹-2‰”B¿gé¿!$©}“ê|#½XnB£üVÈ$Rìò×cض‡Ä꼟Í:RyKŽ*∠ÙKû ÇÞæçó t’‡aØñí~œú‘$ðtCW:,5gÈÿžó.)ŽH…º'5(;ëMÏÕEÔÜY)ØpÎïÇ^·•ø…Üg™Û.Ž;KD¶¶‘µÔ&uþžŽö")Ê.å/åHE‘Š8‘df"»ûŘ÷g–I›‘I¤iÇp–DZ}Cv†¤.«ÜeÒEüÃl¯«´<ùœGÇ¿ãÊ”é\xwŸ c÷QlÊ$êʳû¬ú’®¾ßÿ~’x÷ûwùÃwp9$ŒàÈ'œômƒäÀr.†çv|è¯ÝRó…´œ!³ÏƒŽ…_`ÍQ;úì 0ü!;¿dNçY\Îì ™å×{–©ÃR~åm^E¿áêŠ >‘ ¡ T–‰¦ÖÌ#.ºóC÷ê8Ûæ£Z÷î8œú¿h î>;]§îÒÅxVÉ‹EýeÂÓ èG¯mãp #mÌ2ÚýgäxŽü†"ò"|=²vgöekšPŽAÐŽªäR¹LÐLfûêSÙ‡ÊLj¡KM2SÿÈÞ&5ý˜"e„Kb"ys|‹ß~ÏÌnÅÔ?eÀÅÜÝD¿JNÈ$RòWêÍÖ€˜ä‚ÐCxÈ«1qBªÚK‘™~ÍáPHx~˜ Ša'‘"/ÜŒ¾!Qý& Wü#¶MþJkv3£K ŠÈ-‘Z;Qª'3v,åË´çÊ+;Ù‡Ò¥Æò_Ôû·+BNлhUæžÛƒ‡]E†ôªCA‰‡R]XwG)sJ|éÉ_SÒTŠLV‰þÛŸŸÝ˜³Ñ.šµÙÇÕQãã®1‹¶L¥M•üÈl Q§gÜ"ïñ6“’i¾‘‘yŠç³D"‰D‚D"Á2)Í5اŸ)µ‰f¶¾Ä,‹PÅñ¶^æMDW¶màÒûÅ19ÿÂëÝßQX"E^¤9sþz§r([q‰]})ä³–îEB¸˜ð¾0>ˆ{!Ž”ÉŸŸ4¿;yBïñFËmh*5†¾¿>/w}Èx:1cr©¼œ åÄ&#cN=VŒq„[ãK?ÂOÓÅ^ŠLbO¹¯Æ°÷AJ‚•Y?fQ‹‰^åÙߨÅýJùqm¹<ã*NC5™>k¤#!§édŸáôèÛ§lûa,WšíÀïÝ}¶4ý±?låiê·yÄ ¾mÏ–ûáD$§…Í+öö›ÀÓî‡xõ–kËJ°«ÿnÄäjͲ/:€ÓO]hU'O£;ìLd¸Ó¦ÿú2%ÙIàÙ®¹œ­6…ÞîéÇ¿ùgpáÝ~mïÏÔ~ÛÞïÇ(?þ±Ë¶Êããæs%*󭥓±ÝìÛq&L‹vIÔ´Í>¢Žo#EW–ýÌ“:žT²QU¬&ßÈȲã·tãzÇ2ä³ÌCùN×ù~Ë*Zj¸Ÿ?C™ó™vž{ԯѢ<#Ö B² ÅlË1ê?'œ-ÍR6”DbL ¯«,æJØSNŽJdYïÅÜÊxqCâ+Ä•n›ðþÒ“¸@^k:Ò¡á6´àý¥¶–Õh]¨qÚ¿1}!æMO'Š}§¹Ô}š1©Qþ¯±ÊÇ‹1J[müò–Mˆ#\ÃÛ s̪tŠ¡í– ¶ÊV”´›ÛñqDÆßaQþÍlNêN· ‘T¶"³pÃsõ] 6çRu Öü6Gï–føˆÆq(BãQ£(ã¿È”÷Ø|Áï”Íc êûþôg_ßê±ÎC¹Ökypï*Ï?• áÔÝç`^ÏÙÍðŸáÃõh ú«–¼¡“—yM› ֈ…i8|8¥ÓíÇZŒÙ„br9¥šw¢tDÊ &2¶[È^ØiÑ.Ú´Yvë˜ãBÅå]é¼³‹W´Â9cÖ£m¾Àš~«°wŽGáÏ83Ï–U}VrÏ8»±¡2ÑTû¥u{i–«t¨?…CÏ¢‰T¼f_Çh ÖÄÅ0wÆÕ¥½åiž—Röïð•ܲq¯îðV^'s-¶¡‡”ý‘.![Œ1!ÊM©IdƤFù¿êF< ‘ò(fFÆ4+Ǩ| ]}˜`éT–VãGSöéîÇ ¾KÛØ%–L¾LýÉÕ88÷-O>çñÉÖ\›: ú©Ÿþ¨¹ŽÉÄ ¹µòב‚$Ye~zõ>ñI:Æ·Æz­§U)êzÄ¡óï’'®VwŸìêO`¸ã6fìAà‰ytÏ€ –iåÊ˦«–æ)¯™šc¢Hú¸‰²µjmÚ,»uÔò¸P„qy~k<æaîI_Z0ýp™¬òŒ¢îròA zt«F^gªvû’O鵟‚ÊDSí(ç5[³"Ž·W73fÈ_”Ù•RÀÊV Þ²eó%‚"¹¼y~Î5)–qÈYùâát§\8låF«z!l^|œgaÏ8±x#¡õ[ãf¥Å6´º/ÒÅ d‹1`å–¬F‡iû(fªÔ6Ñæ¦„ðœXâíµ)n‰ú~,ù<Ù:­ö#ðòpB’!cÈ핵b]Òþ,õ9Åógœúy wK7ÇÍ:³å+Ò¾úcMÚÆ·ÑD<:É’^#8m¬—É›§Ë´/¹Ð§ Þ{®ð""ž¤ø^ùùñNÕYZóât›õ ·§Œfò4?šOkEZŽqŸS<yΙ¬ö£®©kmÛ,;uÔfIÁœêA‹•…YtzíŠdreVùFF…©èp‡MÛ¯ò6ò ×¶¯çŽCe Yh»3?ÝuþÁ—Bê°¿};Τ]ב’ý§–™ØP´ÑbbÿÊæ^ER.`·¡öÌT9Ø–â¶…iê+cô†á¸[ å`¶Ô·’6·ûRF^‚·Û±|n}l²ÚÆGˆ Ù«TWãúrÏ)¿|5ÙGb?jFÝ5šÆ@›cÂX(_&’)¥S¤r»Š :U™ù»FPZ êû1P„þÅÜé÷ùv~J9f¸nÓk 5U\kf°ÌŠðý/ó©x¸¥JÐåhæ­ïF‘Ìîl2ÍO»[é<›ÆNrò}1'_õ£ºmŽF­C&äýn'×ÖÅfKÊÚʰ•æ§ÎÀ‹4_¿ŒFv——`WÇzèâ®1Š-B*c}È„ ‚ ' EöOtI$þˆLAr”FwkEÝD´‘0¹^!d)ÅêMädÐû=%žÈ´ÌP¤ÆÈ4 6F ËvPWƒjEw¶Žá[[d)…*~ÏÒCÒžôëÜÊHêÎíÍ#ñH¹û1Ÿk ¼Ž¼$uf£i4q<\ÛŠÂòæQ:¶Œ¦é>~FŒ¦IÁœ_ø=_äù°.ú¨Gÿþý5M–nçüŸˆGÄ#âɹx2“é]çMåcáȪæ¡hÕ½_X™k£1*é.ÿÒÂù뇊ô3ñQQf(ÞÇøÄ¹;‹`ŒdÒ™×ÃÀÚ!ìF ú›ú£ûñµk"W|{ÐqUß^@U«pN®`ÈÙÿ ¿á§7ú2ߌëC½‚1øïKÛ1 ÖÝßD#j„LË‘¡|S2‚*+7à!£:®ÔÞÙjDõ §¿|Géy™µï':U΋EÚ€böê‘O"ÍtDÓßß777úõëǪU«T.#‘HÒÍ(qõêU=Ô[½ýû÷3mÚ´Ná‹xD<"ýÅ“ÝhªíÁsä7‘áë‘=°;³¿èä²ýgäªË …RŒX`˜1jB]= ­ì³hËTÚTÉ̦uzöÀ-òoãSbmlõ°ý’y«GѸ¤æ¦fH¥X9Fn†qµðtCúÑkÛ8\BÂH3²zdʘêwŸ‹®Swéb<«('™º¯Gj’ °zõjG6--sv‚Áýû÷«-ñˆxÔñ¨—U<ªäl¢1P&ò«4¿;yBïñ&>¹ì^ˆ£ê2Ca 1jB]= ¹ŽŠ®,û™'u<©dÄñÆ>Êxê‘rºÖÆ"?U{úá¹m2•,³ˆÕÀꡈ¸Ä‚®¾òYK÷"!Ü Tz¬‰Õ€ðÓt±—"“ØSî«1ì}òœZcªGÌCο°Áz÷w–H‘iΜ¿Þ%_Z¢Ãz('™© 1ÙÔôKPÄ£žˆG=v>þf ´ù°Ä#=QDqgyW:ï¬ÆâÓ­pÎÙŸHº!oÉQE, á9ýSwzõZF«óc)Ûqi*ñ‡ âJ·mlùÒ“ðË¼Ž£znÇ•ò–Mˆ’ˆyãÇï³»3¨ÝR*þ;×ÜŽM+I$ÆòºÊf®,+Ê“µÝiÝ{1-nÌ ‚޶ *ÉLµzõj€LO£+³´´Ìt=º2mÚ4—ñ¨'âQOÄ£¹O4Sžªó¼` þ¯â ”¸Wwx+/‰“9@^JٿˤÌ@˜+ņ£&ÔÖÃÛAÆåùíi»ª0 OûÒ2õ¸æyq ²Æ?ÆHê€3[L™e›y=–ÒR#iˆ‹¬Üx…3ÝqPÈÚoß4ù¦±Ô#,ÊÒjüh|7mã~ÌX\éóaK jzVÇÙVB^ÏÞ¸ÏÚȳ¨ ƒöP—d¦Ò&ÙýM}¤ÍÍ ÊD<ê‰xÔñd-gÇ…¬Ü (l^|œgaÏ8±x#¡õ[ãf•\Öª^ˆê2C¡#±fŒšPWCk‡¤`ÎNõ ÅÊÂ,:½ŠvE”¾ ­Üèú·½qÔ#ü/¼'láÊëhâÂsj™/w Ö£x†X º)?*Óžñ²—öJg1Œ¥$„?àÄn¨MqKŒ«Vn´jð–-›/ÈåÍëðs®I1ÔC“$3•6§ÑAø¼èlM™$å9¿éN¥Ã{)ïO©ÛBShów_ÊÈßâX{$¿ì«Ÿr·¦-uç­¤M›^”‘¿`ÿ«úYÞÉ™¶ÝYî}Œ?¯ƒµÛ)Åoñ¥_®dÚ™×#};¤¶Q¾Üª‡i>¡\ijè<ø‚Õ/ÏÐ5¿-uÇu¥M‰‹†_»¯ø{YW”þ›aR ÔödÎÎa”–¦Õàë‘íχáÕãýç#¹=æïa„íáHXÐ1ªthKñQ¯–hÁÔíÃq·È~=¼½½íO•¥¾O!•Φ7Ò¸côÖì ¹™ ‰zP|Y,§í“ µiˉzÖrŸa=àã'lWžÞÈÏÏ/­ÌÍÍM¯§ö”ã̦ƒÑ&u§ ³ª‡>âQ›!Ä£MÛê;mcÍÍx2‹ÑØâÉŒx2 ‚`R“'Cx„eV‰“¶‰•.e–(åæ~‹TÄåz š0†?5ÙJ43û•§ÑÅ¢Ó4¿¨Ô —›fàñiºÜ%÷ ô IDAT4/‹å¬qDI¤F_4Ó <>M—›fàñiºÜ4OÓå¦iw1n)¯_ù8Qõ_ååtÉàN? 01Š/ ÏþCƒ&†ŸhÃþ4†AÄ©KÆ#Àú§óñE³DsѼ¹–hêz,X//íñøûûg{›†(Ë*c‹WßÛ3”äNœŒQ“ä?§âÑdúü±bŒÓ^ ‚ ŸåQ”¬Fv´YVÄ“óñ¨J<õ*Æð~n²5¢ù(À„€Û¦ºŽ%͉¹>‹s–*WöâÄÜŽB3ư?!Fqê’1ÄÚÅ™›u2–ý)ú¢.É´–HQH’g*É êF s+!ÎË,²•hº¸&á⚤ëX€äβi+Cx°¶z ¼g3Ökbn‡‘%cØŸÆ#ˆ8uÉb`ZÅ™[u2šý)zð~ÄTL‘ŠôŸë #ªÖ9˜l‚Üå§ÎA²%އk[QXÞœ#¡©¯)¿¸˜N¥ìI¬(Õ°+u$Rdin4,‘RöÕd¶®Í·.¶È$R Uüž¥ÿ† ˆàÎÖ1ªËAHû\"åÏðd¼Ñr>ñËíK 4J4eJ¥ ‚  ì¬7=WaPsç÷iìm~î1ŸðA'yöˆßpߢ2C∌¹Â÷PdCRʾ:É„EatÛ@`øCv~Ȝγ¸ „_`ÍQ;ú¨*û„(*Om¤ü_uËæD<ºXVÄ£¿x’×-Iù²¢ê.s}Ó(ÑLmÌÜΊA AÂÓ èG¯mãp #í~ï˜G\tç‡îÕq¶ÍGµÎ0KâyŒŠ²~#)ofGi·üÈl Q§gÜ"ïñ6°kÌ¢-SiSEEÙ'.õ{F|ßdNì›ô”ÎŒ§ÍN“çôisåÄ.·Ocçqê\A ŠˆK,èêK!Ÿµt/ÂÝÀ„÷…–E¨âx‡ [/ó&"ˆ+{þ <ñ9“òK‘Ùwá¿èÿ˜ïs>¹lÛ.=¼KP< ˆàʲŸyRÇ“J6l0ó²OÔçöE,膺‘º(Er>É4¹}FZ$š‚ šJ|ÅÁ!ƒ¸ÒmÞ_:`HÀk¥/.‹òŒX7É‚z³-Ǩ›îsø–_Ccxôó[ÈñŸÛ(¹ì?'œ-Í0QDqgyW:ï¬Æâ­pVî•Õ•}ÂrkjœÌˆxÔ3¤xrú´°¦rk’ÿŒg¤3ûoÆÿץϤÛAЈ‹¬Üx…#ýÝqH‘Ùy°ÿùt²oš²€ õ§pèY4‘Š×ìëMxÁš¸Xš`éTŽ®KçSî){CSË*µ¬5 ó0÷¤/- (M§ãòüLÊAК¡&¡Ÿ:‘h ‚ hJÞ’£J#‘!{i`ß!'Ò/§ˆãíÕÍŒòåGv¥„Âpb‰· |ƒÿfÆ 9M‘⇴¦0‹N¯¢]¥y0“‚9;Õƒ+U” ‚ –¡^za¨qé›H4At%ô)2Š6ZLlïÑÄô)‰\"EnWžNs.vs¿^Llï±X¾Fè£-x•¥\GU­¯’ üofμ¨ºLÁˆܳÎAŒ†¼%Gƒ[¦ÿwÆQ‹)c3¦e*ÖóÉ‰ëÆ´!âQÏÐâQÇÐãû‰MAAA/D¢)‚ ‚ è…F§ÎÅ]Z‚ ‚.Ú÷‰ˆG=z"ž¬i”h*_Ó`ˆ•A Û¢E‹èׯŸ^·ñâÅ ,(âñˆxr9eâÔ¹ ‚ W‹-ʱm½xñ"ËeD<ê‰xÔñhG$š‚ ‚Þää—`*u_†"OVD<êi›l¾?užÌùŃ6{·Þ$OBÜB®ÛA„ÏÇêÕ«s;„tD<ê‰xÔñh/%ÑLà醮tXš—Yÿ{N§Êy±än`‚ ‚q3´9 E<ê‰xÔñdOr¢wŸ‹®Swéu<«8¢iŽpÛײ‰ú‹NGŒ!NcˆDœºd 1‚ˆS—Œ!F]7 ‚*9ÑŒyÈù6ÈwGáï.Q¸ ã·ma\}Gµq> 01ŠNÓâ4†AÄ©KÆ#ˆ8uÉbÔCi‘I¤£ ]ühLÉ#“HŒ äu•Å\ {ÊÉQ‰,뽘[±ªßô(À„Ì8qÀœ€Û¦ˆ>CœÆ#ˆ8uÉb§.CŒ§ ‚2…B‘í?HM4Íqu©A/Ïê8Ûæ£šgoÜß]æYŒêº¸&Ñ´U<M[Åì/tcˆÓb§.CŒ âÔ%cˆ’ãAÐTÿþý³\&9Ñ´r£Uƒ·lÙ|‰ ˆ@.o^‡ŸsMŠY&/$“HÓþ”jg™‘1Äi 1‚ˆS—Œ!Fqê’1Ä(‚  V¯^e²™ržÄ†Ú3På`[ŠÛ¦©¯ŒÑ†ãn‘\©ˆKûSf,¿~!NcˆDœºd 1‚ˆS—Œ!FA„¬øûûãææe²™6¦©S#¼þ|‚—þãAAŒr’™*u>ÏU«V}°|ڕ߉'˜\¯2‰”bõ&r2HœâArIb8÷ޝaæÐö¸Û}ÍáPåÂ$‚ÿžgƒ&´mÕV9ô,>­4îñ~f ÀÞ]iÓ¸ãö³,–AcJž/'±õK¡¿wåÈ­ú”R1-D¿^Pk÷PZw™KÓ«3¨1´(DE§—\|C‡¼FU’^sdô÷ô:ñþêNÓ†_1»}Wò«Ê4ÃŽó}?:A ueòlVYr‰—WöoŸ6mZê„íy)eÿÿWɨ¸Wwx+/‰“ª_€‚ ‚` ’BþaÉ”k4šÒž"†NL­œ(]¯6N¡x¯âÍ–å8µÇ&­åvTêiñ8^[ˆ÷â Ü@Xêô~ Yîø+ÿ{!n”m$,­ÜhU/„þ‹Ó}Qe®-ÞHhýµ¸‰Óæ‚ B.P„]ÄwÊzî†=äfHòàÇäåè;{0%×ñ»Œ[a¡¼ —S{Æ1|›åM9I"ô¼/Þ¾1Qü$‚†Ë—SÇFÕVL)Øe»%ÓñîÜ 3[ £b±«P‹sÛ¸UÔ?Á”³â‚ys™UC–Rá'W~›·ü}\R î!7£Sî:_¬ºLŒ‘Dòq×{˜É¼S®Mqv´¥Œ(tþš|Þ*Þ1í£¶'‚ Y’ØÕ`èÏ5Xº>ciE†ø~8__2䵆±¨–¦’QºË<¶vÉX06ý?­Ê3â·‡ŒHùg¥5ß2aMúERãl­¦LŒM¿~ý²õ¾Q£Fáææ†Y¤—Òìbó³~£L"EÌê.‚ ‚ðé+X°`¶®Óô÷÷Ä„í‚ ‚ ‚žˆ ÛAA½¶ ‚ ‚ z‘œh¦LØ^&Ý„í÷’'lAA„lPù€AAô$ô)2‰” So«Íûšr8TŸÁi()‚'—ÿæÏ#ûÙ½ýÏâ²~‹áˆåöT7d)2‰ìÏO˜˜°]A0<‰áÜ;¾†™CÛãn÷u†d ‰à¿çãÙ  m[µÀ£ÕD=Ëp NÁʼnU™e–HÄàçÓž¢êŒ:O$Ñ\õªOIA:ûÜ!:ô_|†bh/ŠH Ð¢× †_Â…×wøehó´×÷èLëúè·á1±þlžRÞ³/Ý7cÜïA|p{­}Cv†Äqcz¹Y™ÛF¬¾ð l5}ƒ>% 7˜ßo>WÕ\j—ôæ$ÞíëÏ"“¶ˆ¹Å²ÞèÒRÍ2ÚDöú }Gi{ލ\—e§û²—ö·-!kÙš°ýQ€ ·MõÔ‰†ŸáV®ìʼn¹…fŒaCŒ âÔ%cˆ´‹37ëd,ûScñA X²<íñ‘_ÌÈî-ï_K|²ŠFµ¦r¾ý6¾´)Céٱɇ?¯¡éoê´[@çëó©bù‘ûÄĆ"®*gžÏy&r\ë6Â54'³3êuú ¯uQœwñQ½€e9¯ÛÉàÐCxd¶ŒLó5eôœþ·ÝEÖ‹ z–ò‘´¥î¼•´iÓ‹2ò·8ÖÉ/ûê“Ùáìâš„‹k’^:qÀœ¦­ ÿâÐÞ³ë51·ÃÈ’1ìOcˆDœºd 1° ­âÌ­:ÍþÔ†e š4BŸª(T P¤¦ÌòóïîDõ¢ˆu…%c¯ÑÚ·[~Í,ÑLeKI·—ܾ{›×å\±å¢æ1*Ć<ãÚÁßyfSG³‘:»bÿn;¯ã€ÌÍÄ×ü1½/=¦_ \몘X"O\–<çu©‰l˜Ó„ÿ-`ÞöÓìÚžÀŠ×)ÏLñã—±£ðZv‡ºÝbgnJxÀ¬;/Çw€;êîyy)ÞKcûö¼w´âÆÁÛć´fÊÜ\ƬLÖiñî<«~œÃÉ0{eæØ•)L¨¦é€"œë«GrðVI1ÁÛ|ŸùùÂQýU|ЍœØ¸¿üóÈÿ6mº²~ë@\- þÅ1Œð᪉r¬#ÂhøóZÚ¦îëè›øüÐ…eo;³çè$*ˆ'渴…i¾fÌ>÷’Ù*’I¤9’ ‚ ¨aUIë:0lxgz¹B®xL˜ÄS @47å·z¾ü¯ðS¶d¹2ËâÊïשÞʶršNÉ'½mÊ´düÆ1”ÏH*"ypl/ ×£„ºÑLÓ|4Õ—ò>Q Xð¾Õ–Ò"àMöðM¹¥\šÔ˜¦_gaÍrÜÞ¯4âgéÆ3²{ƒ7uǯ`ˆ›IÏÖÒ¸Æ4ÎwÝ©ö»¬êPæ/qáÆÖîìº1mkFà˜z¢24‰ªÖÙi!/<{ð{›cìîã‚”Xî¯lÁ/‘î³È;œ•oã× %° Ž«[ó]OŽíûžB™ž$Uõè ¿®_ÃÌKDà¯øÇ ÄÕô1›» åzßSlëR3Â9ç=DkHHäíµ+˜4_Á_=êá¬â‡€ Ý ©ˆKûA„ÜeJž/'±õä>Ö¯[ŠwG[L]¿¢”v¯y7QÜñeÔХܹÁ²Ñ?q>$󓨅K}Þ×¼Zd"ö Ùñ&ˆókúñý”… ®íþ 5ä4¨86œÞ+âªÑxSs ÌL¤È,$HÌ-1‹ 6«ó¿f/`…0µÍ‡uÌ;"5e”UgȰúï“Lu댸ÁÞóÒ¾yQ’«cAñVݨ Óp[ÖåéÔÂ%åšT).-;‘÷ŸÜR—¨ÆÝee×É‘¯3¡–æ#¥zynÕ+ŽæŸ} ‹•;Í+qè$À‹“ûðËPõL·uƒ‡—òÞ—$¨R ÊX“¹Øg\~íBgÏzµ7'ìÊ)¦Þ¦oUš¦î/8xêuÊÍVI„Þ8Î_OSŬÊÓÎDj?þ¿Ÿ‹²Ü"r|AÁà(Â.â;e=wÃr3ä&+G ☼}g¦¢ä:¾c—q+,”7árjÏ8†o³¼éFNâìdö¬ Éï·çyÃùB.QÞW¬ãfÈM~ñ9Cñå¸å³–›!7Y¿â (Øàµ‘åíÛ•Æsâ7Üœ¹"ùµ Ë)¾p¦Õ¢QÛ¶<èèɸIÕù{êŠÌ·«JâkþX´†›!¿ø–¤è”˜Ñ7Ù¸êIñG8qÏ_i_¸óÃä¦\ñNÞÖ*¯M¸y×äìT¥ÏëN)‹(nmýÄ–{¨’vãE"A'bî–Sï×gåDƒ1“éPð¿LÎd3ÏðÓ†5DMÄ÷G±IŠ !O> (¦í‹rV*¶À¯ÜÄ…öwç2¤("ßdV‡Û~ hÔE–flk»2ô˜1Œêvµ™âåʰ®8ãb‹E~GœO°rÜÏäŸ?Œ¶ù8ü:ïËO^¹5–E=6ø~r¢¥›”dg§®l)шasQN\§™£$‘Š8­nÊ’I¤z=…n,µ‹›tÇb§.CŒ²UR"ûkÖßé»oTG—ûS&‘2mÚ4¼¼¼´~¯¿¿?nnn™Un¶<¦};Î%¦\á?m¦8ÒVÌ&ÖëÁ#ô*šcK9½½l‰åöÔJÔ˜ñhÈÎi3 éé¢?0Ô£@A>Mò–Í©Dײ ³¯Ë™måÆö²%eÍé¹ÇçA\£)‚ ‚ è…H4AA½‰¦ ‚ ‚ "ÑAAôB£›Ä“TPø±n¤”i/4¤Ûœ¸§>ýAÌãÓƒ9pb¯£T” ‚ Ÿ'}ÜužÁ“«W¹ÿò oÂdÔn×”ÂõÕ-îôþ\i”h*O!’N%V é6UUò˜@È…®l9“—fƒžS©`^Ìrs¶^Ac“ν“;Øqè[7†±àéq¥Ä$‰à¿bØÄãD:XME-ó¦eaóä$.__èð.©_WV¼`(åÓÍŸƒŸO7¾þ;…Gþ‹*àõ5_M¿OÓ«ùæÅ ¦.¾L¥žm(nžDÜ»‡<µïÈ‚¹uø×{4^¾W¨Ô³ Å’ÞñüÁkœ{¯Á§g),cýÙøãH&û\¡RØ?yJ¡73»Y^Ò=|Ǿ!;é2ÙJ$6:n0¿ß¼šZ¢™r§÷èCx¸ød½¸ðÉÓéCâ}®ºŽK»ëT-䘫O„A0JñA øy MŸxS§Ý:_ŸO}žÑ2‘ãZ·®¡8™Ñã†A;"Ñü±§Ù:AŠk\ûðM§™TÈc ñyjƒåÕöqöMhä¹…F%DÒ)‚ Ë4i„>UQ¨@¡H}Öˆs‡<Äü{€;Q)‰fÌM6q¡Û!h4€ù§Ó²HfÃ{¶”t{Éí»·y]Î[.ª^Ì$u‡õÁ¦ñ:®Li›†‚Øg\;ø;ÏlÊâ¨âUêìŠý»í¼ŽÔ$š‘——â½ô7¶oÁ{G+n¼MqHkv ÌÍeÌZv‡ºÝbgnJxÀ¬;/Çw€;ïγêÇ9œ ³ÇQfŽ]™Â„jðœó„—ÇYôã ®™8coG¢%ç}÷Sdðl¼;G°cµŠXNe^˜_díÄ…œ‹¶Å’(Þ„æ§í”ŽNëÂÏQý9th\òèqô ~jÙŠ­Ž#زq˜x"ÏgJ$šÙ%q£÷Â8 ‰„H?üNtgßú¥9'’HJ$¢ðfF¶/JÈùîlر˜²?Î ¿Øã‚ Ǫ“Öu`ØðÎôr)„\ñ˜0‰¦À¢,?ÌðÆáÛÖÔÌÂSÛ2°Gi*ÿ!ùYè0Á±l!®ü~ê­ÜÕ˜9Å.ú"€ÓtrH¾²Ò¦LKÆoCù ‰¤"!’Çöò¸p=Jd1š)«:”ùK\¸±µ;»nLgÛš8¦žkMâÀoêŽ_Á7+’ž­¥qiœï´ž=ø½Í1v÷qAJ,÷W¶à—È,ö_œ?>­‡p{ü_lj“S :Ø“*+Ê3sz/ªÊ¡jÙLbI|ů‡r­ûa~iî„ "ϧžç!6ü¹‰ÀÞljJT’¢ /9™=K ¤AÆr’¸ëü£™`&+K¹&£Ér†·ñ€©3ykP½zul,òQ¨zoœ£.’Û± ‚ | LÉóå$¶žÜÇúuKñîh‹©ëW”²,JÒaL?š¸;cëXš–ÇRêÆîDe¾6‹Â¥‰>oŽk^õ#q¯îðÎÑ|RÀ¾!;Þq~M?¾Ÿ²ÁµÒ¡†œ¦³“džÓ{å@\5M´dÕ2¬þûÄ.•™Å X!LmóaóŽÈˆìý7/í›%yõoÕ ²,¶ós÷óP¿ºSÊu£¦8VmˆKÆ;’TÅy•­û.³áÛ‚ØJ¤È$8×^ÌÝÛÿòÔ¢£ú2wñu¢96çWJ÷IægN$š:û€€Ó>¼²«£9`îFÙ’o¹üß%"cyþß:‚ljâ F3At*)ä–L¹F£)í“G, i¥ "ïýGp‘ZU7¢(«Í¼ƒc)£îÖïÄ@NÎÝ„Içî”M9,1“S¡ç8ªìÀ¢+2Yû†ì ‰#òõq&Ô²ÓÏeSVî4¯Ä¡?^<Ž‘À‹“ûðËJä¹T¯8š"R^°©J¯^0wÄJþyJøóÙ8y ×Ô$ãi,ŠR£BY†Ÿ{K„"ŽÈ”¿°¨=4¶1Á©ÙdÚßœÈôÙ^ü^uŠ›ë´Ê‚ñù¨Ô'à¶)®eu‹Þè%ÎtÓI±sñ¤E8™ØP¬ù mhËœý¯0ÍÓ‚&݇ã¬foÖûRŒ!NcˆDœºd 1 EØE|§¬çnØCn†ÜdåˆA“—£ïìÁT”\Çwì2n……ò&\NíÇðm– úöZ¦-:Ï»$Åðö]ÆnF™Œ£jŠ0.®XÇÍ›üâs†:ãËqËg-7Cn²þçí<Þò~»ÒD"žÜ#¼âOì-eÛäÉe–S|á :L«E£¶myÐÑ“q“ªó÷Ô”òqKpž7œ/äY¥™‰ü‰¹[N½ß¦• ÆL¦CÁü’²½U^›pó®ÉÙ”õ¯šy†Ÿ6¬!jò ¾?âˆMR yòQ@q0-¶rVQÜÚú‰-÷PÅ&es&Î|»æoF¥G™‘<·¨BŸy}¨¾ÿˆúXJHÁ¢,#wOc΄žô\鈵… ss¬ Ô¤ËÐNT”æ»…ñ]Þ˜½ ‹ëó$‘Š8EÖ‹½'“HÓ¦;:qÀœ¦­âu±¬s÷lÆzMÔÙúô£>Ök,íc ëmnøë”­’Ù?.ëIß7fÆÚ\&‘2mÚ4¼¼¼´~¯¿¿?nnnYî‡Ü¦I[é•>æÑÌLÌ&ÖëÁ#ô*úaÚ§HJ &ä Vô¡Ór7ö,§–uö7§ˆ¸Ä¼®ë(·z)-ó)Ÿsóh#]ôÙú±ñ(À„€ÛÉЉ游&ä¯tcˆÓb§.CŒ âÔ%cˆ’ãr€¼%Gs*ѵ¬Âì«ÇT—½û•oòtæ,–8•kÊðMÓ¨‘Ý$S)yàÈ#ö¼ý ´d2eÍéÙ\¿`´²õd ×$\\“ôöë\WŒ!NcˆDœºd 1‚ˆS—Œ!FHŽSøŒ8¶å¸®ÞœLž£¢ÑÏ×H¥ ~•â/rUt§ÿíßX±¸¡¡³Y±¸þ·ÓÉz?Ç}©OƧ1Ä"N]2†Até£Î“˯_]Åéwë›Ö´æÙ“ÿP(âxöä?6­i­“dósÛ—úf qCŒ âÔ%cˆQA—Ä9ZøãØL­^AAøœ%'š¡‡ðH‘¥ý5åph.Gf€‚ýU¾øÚ/‡#AA0|ïG4S'—UÄbbå IDAT©Ó¨âœÏ-“×Ýs8A„O\b8÷ޝaæÐö¸Û}að#‰à¿çãÙ  m[µÀ£ÕD=SºÉ*)”Û»¦Ó§]7 ÅȾ܌Îd;IáÜÞ:žn­»ðC·ôêÜ^ßõæØ«ä9$w¬E~³Bô8œ6|Âó#ÌéëAIZôÇú;1i«SW&Ÿ#1—ª3™MkZðúWͦäB4‚^Å<ÂcÂoï§ê ê·§)€"ŽÛ—þeô‘[œ IÂÆ©(Ú4fJYëô¨˜C¬›Ð.eRÿ†t›swKUe*ʳŒ©;ç´¢…òòŠXΟ>Åð¿ïóøT&Ë‚±ˆâQB NÍÇÙ-KÓ—E_bfÏí¸ï?ÏÄòRÂÏŒ¤iŸ-T>Ü‹"fqÜ[ÚŽöGZ²cïf*Úª›,='<é²Çƒ]{æPÆZ±wñm9‰«ò Xò3V ĹCWüvœ#¸Ù·8JÀ¬Ð·Lø)‰3{|°d^ºue‚ð9z?¢~š.öRd{Ê}5†½į°ŒÊ”mN÷¾û)\´‰”ÂEkнßJ»7ËíÐ}°*ÄÎ9ƒˆ\<ˆÈÅ­¨™:÷p\Ø2vðÏïÅÿ¾±dÛö³œ‹Íð~Ë–ô^Ǭ9{)a¥jý é6'ŽY‹ã˜µ8‹$ÀÒ…£‹9§9 >X_O/§ÃSZVîÇ»EÉ1‹$S0Z–%hÒ¼2y¤ªE Eêø¢s‡<Äü›ò<óè¬YzŸÒùÑÚÁ—šCÙó0ã‡3EôU|ç<¤ý¼žÉI&€E)<}&Q͈öç. iÝ6±»ùëVÏ7ÔDSÞ’£ q„+bxtŽY•N1´ÝRÄ”X(S¶9GžE.ŸÈÀ‘g)ãî‘Û! 9Í¢ó:V¦±“s RSS¬d6ÈM³~«Þ$†±ãÔ[ê¶«ÇW6VXèåÁÊ‚` ¬ª1i]n ïL¯ÞC¿øa3L%@Ü+n?yÉ‹ü£øßë6ý/£{o癪™¥âñvÄ-¿ò\Ñ&ÈÝ*“ß\Aä½”éÞ<æÎ4îhÂ?ÉtÞE,ÁïˆU•‹ª+„OœIÆZ:•¥ÕøÑ”}z†ûbPSøœÅ>§Ë„åÈF®¦Üò³œQú¦Šy„ÇÈåØŒù…ªÛ‚ñì^ƒJÚ^ˆ{š­¤LiÏOËÇpãíG|àâC9j†õÕ#xžú¹÷!æ<ˆÉüKQŒš)y¾œÄÖ“ûX¿n)Þm1uýŠRV€© yó×fä˜f”ÈSºƒ†RòÎü£T¬Æ¢^rñ‘ŠÏ^ÒkŽŒþžf­‘I,)Ön {–ÿÀÌ>TaÇù¾L'N„iY&Ÿ¸¦7JÀ‰%>Ü*P›â)§ÝdJw¤ ÂgÁÒ…£ ¾x og¶gVÁg,¿y…€D¥òŃëÉÁ¯`é¶ëÜÕf.nË–ô^ÇÌÅ1xÏ]ºò•ûJmë3~Sý<È”R=æ±±Gö‚/_¼k\ž±~ÁŒÍ¸[iU&­zñ!ÏÚÙá5e‚ð±ÉüÒFbF§þ,8‰]ñ¬Ùù MŠäçìA Ç4C™){ôjn_þ›ñûnrfùÛ>AHO34=‡T=ÊpVÝV0xPþ°Ósåô!º­¿H‰u¨úo{ŸÉƒ™Õ¡Ý2$¨A¢ J¦üU§i.u¤§7Ê*8ð›Öö XÿÍ/•ý›6e%5ueƨþÔÞ-§™¯ú•A„%=ÐL½Ã®“–ôÙÝ7KŸ÷ÃÂw'wRëS=§ü‚P¹òco×Ì»µk”Áëø?Dk· 4ßG¾ãàÞ©9–íØ2ŒqSÅÒ¥‚ Â[z ©Ž$0ΆÚ¹ÄŽe°_G”¦ß2Ò éáîYŽYŸÔ¤³m¶kÌz5WN]å‘{u*å4»44hò š|õ¶g=šº¿z|™ ‚ üW¼õP6Axk)»1’(0ɼ5Cúl]cå Žý8í±ènbU£½ö<Í€^Ãí3é~Õž]‹cÿ/“•ÿoÆim |aÛ¡mÌž~úê¹{Ëå j3s¢ ËÔæî-¿Ì²GéÙ3%ä©®Ýîr~ãƒ¶ßø€]î¾Q›A!?¤šò"”´ŠáîÓô1cª§·‰¶,]¸ü(|$¬ ŒS‘¢W‘¢?„öÙúÀ–íHÓ«H‰ÛŽÎJN†U(Ê?φ êU\>ºVÇŒøvdÚYüû%qjTp¤ÿÑc™Áæ¡mô?z ŸŠŽy®ãNÀ>Ö¯ê@È£‹¨”I„<ºÈúU2ƒÍzÇå9Èp¨oCc2ƒÍóÀÐë[å¹AòAüŸ´ÊÈ?]az¯XóPrkºWF®ëfìÏ}AøÒMc/|ëÆñÛ‚ƒ„$„phÁ:âëuÀK\6 =®¾F€…cz*!½’3û÷Ðö¬?ŽnDg«·ë oÖ¥$k7¢ÿÑc|7ë,ýcmãF4ëR2ÏuõŸýFÛsS³—;ülCcØ3ú ŸmÒ·¿O+™~¾ ÓÏw³7íUe· 8öþ¾I…‘6‘Àƒ«˜=º e,šg  tÄžþŽ>õ›ÒÉ·-­|'ógHÆ¯Ïø?ieäDÛ#=l$Ÿöª“EÇW¬Ê£#îÜ hÖ>½ú2°o':´»àw¥V®<ƒC»ó»ySžÏ˜„ØZ)`BJÅ¡Ü5—'F  bê©?¹©¼Á±ÔV_r _eoî•ñHû˜©§"ˆ'‚>3ïÒGÆWkK—[‡1{H’“'‘•›¡U¼þW“N¯ç~b8×b1–2+ö*_œ/Žåºpü> Ò*’HËHŽ,"Ò2’H«HQ*”¨ä*”r%J¹’8«P4ž 5$€B p‘ñ?Ù‚^ZÓojKPÛdÜlÓ·eÓÃÛ™/–'ÌSŽDãžëßôíÿæž|Ñp _hƒ˜zî WýäJ³• åуM|Z‰„r½Á ÃëÞ¬ùyN…åùÌ3u$4ÞŒ˜îÀ™ K^,K½Äìþ›)³ë<“Ë+H<ù9Ío òÞ¸É]i:ðsšÌÿŠÊ&zbÿìÆÉ”>T5Ïá©W˜Ó÷7±ÊºveFe«B¯I&È;]ëR<—ÞLÓª£ùn¡;76ö峨´j,6Ï>ãâuì^ѨÚ3ù½·+2´DìèCÓ«Ùí?ÆòÁ!ÚZ’>öÓ}ñ‹ûÇ »5Ø7dêîxæõíeZO?«÷<ÈÌÜ^ž®Í\2¾˜¥ØÕjí°ÜOM45aû™Úa<Áý¶²nh Þá»YÞ‘°]È)»2g.Åd1õìˆF‚òC~ØNª‘LCúü0(Êoãzq+Ëèz©FŠ]h2‡=l¸u—{v÷¸ç|4öØ)]¨é@·GE.Ûè•Í(^âáKÛ,œ#òd>£ÓC¥*ö†{å,ºRú ™N†s’3ÎIÎh 4<1{ÂR7ð«æ‡y²9íÏ´Ç3Щ‹° ª}3›GG‹£ÈÅK”Y¹ŠËÓ¦P¢ø;i›N™ÌžX9mÊ)+] ùEwŽ…Ó®ÑhÆ"Ü^x!&ruG­Çz½z"Nò9¾l¹€n—Ò¿¨ 'L$d^•ÏMÖ@ô]H¾Êú]AtV*ìÞBdí>”7Õ“°š‘}wPâÛ£l¬ÀpŸïé}äWæ4öT ‘°]È&¾¬š<)ó®>ؑ滼Ñ[\@â?÷XLó]Þìp‰‡ RË \£L1xBå?¸°ð“@*‡È°Q»R;©6m·E’q-mð¹Mœñv}U ™NF±„bKHhŸš<å\õsl´ÚH©€Œ>Œi§A„µo’¹Ëá#T=‡S+–½ƒžM=OcydiƒOI/ü·è.°tÚ¯ÜKæfÜMVŒ‰¿e9†ÌEEÉu–~ù ñD%ZRë–¶,òbbè¤kø%ú2²Äë'II$ñœ˜=Šsi D†hñ]ó>ŠG융’›q7Yý½Õ¦VáÚ÷?s3î&«fo¥üôŠœ˜¾<½]b?o 5,s>¢%òÈ|¾ÝpüùùÛQüTºÏx?š”Æ;|>Cz¦"ÕÄgÙžµëºãœzœþõÆp©fO,¶ÍäóMÁø_×ÐAŒÑ Ñ!80v¸@ó]Þœöù‡çJr¯Â#ªÝr"æ¶‚ë.×ñ+¿;UïàïNÑ´¢T•V£ý“æŒ[½–#uáJÛÌúª^¿eB"ùxVï—cŠ#Ž)ŽøDøàimÅÚš+°[ïÁxšVo†™9Oš6Áíà!ì._&¼VÍ×W¨IdÒÁPndܽqð.`ÂÔænÔ”zÇi¨XÆ1lÁAúþX™k Ö_oµHØ.¼WÒ}~ÈgΦÍ;T³6çH½ºÜ.Y’­‚ ø\KüFãN'ðzä…ƒ®$=cÊc©yý`¨0{DÉà`ìbbøÇ½EùL’cI®nÀÍ®(Ãê¤ej7=ÙÀø§#¹bcH Û¾Xçw#Ax΢%;”y J¡Éøö5§Î¼tì8€Ò–ÑØÔúœ5;ë‰çÂ{#Ý»Ãvôå©\Ã’h|h+ß»Wäžk0¥pG§-ÅàȘ>ñÌ£‰GX®u«e2n{z¾ç3(¸"+7£üº‘¸>“¦M(flÇ%Çbp¤;4èçº ‡OêØ™êE,W¾A„÷%³›GêÐ’9gØ“ÃL%"‰‚ðnÉg>ìôÄ ¾n ;«€ïõ š|ƒ‘…‰GhŒ1›&¡¶¤æ!ÐüØi M¸<} U¿™ƒë¡Ã$º»cŒQdfÓ¾§²«”ù¡+˜;ÛÝéå\—úÎæ<\)AQN‡k½çS*BNéPà1<OHA(´òt=19Ë8t ï‚Á»è$Pæk~§‰FÅŒñ/=^â&‚Ì7P¼8§V,ÃîÊLCBˆ®R™¨*UÐ*p–ºÏåbÊE)–°&þ"ë;ÑÝÉŽóݸO4®õ 9¥Ãs¾-÷ÇG"Q¦ ‚ðæ>žkB¢+ã…Á…‹èÁ!œ«xìl—ßMûÏÐ*¯éøäX^ݤ:«Š®ä·Øu3™ÃÛ^\iïͬù¥¸z;–Êû̬҃=œ‚ ‚ð&Ä7ˆ/Ô3¦fþ¿T8ÜÏX†üH½\Ò‘Cl‡1Ýq±–Û0j³•ÝC¨¿Íž  "Èò6‘Àƒ«˜=º e,š³7>k¡ŽØÓßѧ~S:ù¶¥•ïdþ y¶Ö»†°½ÓèÕ¦Cû÷¢són|½/ MöúUÿ°ù‹6¸Iœh;`$£‡gX—´ü ‘7X1²Õó²a·­p3jÆ®[û˜;äYù~½–^güŸ´2ÊØg@–ý3öÛû4=æ¨n5q”¹Ðo,™¹á•wY7¦uú>ý‡Ð»qK&ˆD›ës!›øò…¶Mk”{w¡«áM©(9yZ°ö“nÜ-!Ræä/£2,rYBtt4þ•§s¾Q •ü­ ;š×%RáSGò@ã͈é}q—f{¦^bvÿÍ”Y¶»ÿäq)üoðk€ä³LqZK~ãçµÙ²¼‡Mâ\R¶ú%è1c8å­Ê3|á2–ü¼‚•lâ+ãù|2=žÞsF>/[™q[8’òÆ siäùÏÊç1 L–EÎ3öY˜eÿŒýÒË1®IyFlžˆjËYbŸšaiúÍ‘¾Ï¢Uü²¨‡?ûžëi¹<‚PÀ‰@SÈ7Ú6­Iûë iíãW³¸2óYìæOù‘òµùº×(Î7¹J¹ïí9%–òQqš¶®Œ­"§¼zô™ëDJ[Û’ö×nn§ 7j”ŒáО+DÄ<àÜŽC$xÕÄ%/+XØRç³Á˜íý…+Yó£'øÓ£tWi|øfÛ|L_Y EÎÉ/ †HRïr4®ŸvèJGåVNEå8*ì=±Š¹M¸*·çB 61FSÈwβRDË£ó»=U€ãbP¥ åRܘÞí+¾RO¤¸_ ¨—–ßÍ„猫1å—®|6¦;Ü]°Ô?$AbˆTÈ=¼y>çË×ÁãsÀ¦k¯¦x ‘YÅ"õ(I2WöI×€^2{ª7±ÏyG½’Xe-þxÚC õò¶e;ö…·ô$ߢtßÖØÊ hÜÍ€¯ŽEЮ›Ã ½>zM2AþÛyèZ—âFB¡&z4…|ç"-EŒ,&¿›ñÑ+>œÌ1™5L|øÚi&?ôøž»æ'‘=ÌÓ%‚ðH±m8…Gvòë/K˜ÙÍ©gJê@–uGÜŒsÇ?æäŒd¦v]J`ó¡«žÞ&Ʀ  Àª¿Ç©HN<Êð–å°–êP)UäØÇŸpž¥?áPÂk*×…³o\OZ:›`*1¢Xç l[v˜ˆ¬Æ »5¿LdЊxŠD/B!'M!ßÙJ]Q¨Q(ó»)B% =™í:‡%]–p~×9$JqÙN(xtqçX8í¦uÁM¨B¹úÀšF­*boá@ÅÖ±y|0u®U6‚#߮Ǡ{_Êf]Ϭ.?ì_Hí>|Ûà÷/'ã¨æÞðû$èU$ëU$k‚Yf³ƒÃ¡Úçz܆dRM ± ‚Pè½Õ¥óû·¤x–ÕæþÀ|VÚYÚï¯ÖjkbdÑ8©œßI}EÝZðè±ÿ;©ë})Uª÷îíÊïf¼–›ÂY®›˜Ñ´#wêñîžsª¤‚ 0¼‡ C }–Nû•{ ÁÜŒKŸ­íoYŽ!sFQQr¥_þD@B®Rõ›g®x^·BKÒ£@+Îg무,KÙ³}‚¹™ š'û˜» [yFèˆ=¹€ÿýz8£üsLã3ï',þô;N:ÆÓ±Õ(ʪX¢Ò.³òÓ%TYÛŠ‹3–§ï3a!öóÆPÃR’ûsaòþ ‚ð/å)Ð|U’ö÷ Ňfahgah#¼¿vÚhl‰‘Ǿ³@ÓÙ©A4=<šø@À™f|]lSô“™~z:¥êzåw“rTÞC…¡…Ä›ы¼XòköÒŠ|ºtå+ö”áÔöþh›Ë%èñã>zü˜sñðeû¾ìåíÏÚÒaU&­Ê¹Œúã˜_ó_h· ãü®3.ë&ãòŒõ flÆÝr‹üè·èåc¾þ¹„‚í_­ ôà¾÷o¥Ù:´[Ž»§®@~x†v†6Âûo§ÚæŒÓtvj@Q·Ô¬1‡Ð°.àôðhA©R¾´h±Œà`îÝÛÏ­z™N]º.Ù`lÊ\õ8æßÿe#C0 %ÙÅ…¨ªUÑæß@²Âð* m„ôv ‚ ¼KÿêSÅÝSG3ßô/Í|Õò G; Cáý·ÓFcCŒüíÍаœÿ{2çÿž\à‚L€à`üýGàï?²@™ò d&™ B‰" jÍìè‘ØíÛ…Qdî»÷PoØ,þ Ê·v†÷Pah#¤·Sá]z«1šõÃ2»ÂÐÎÂÐFxí´Q[cþîR=z|àÕõ¾†Ëæò{H•J&oÀdž¤éSð;ö=F‘QDU©’÷Ê Š0±·××nÀáËÕ”_MÏÞÕ¨(ÅžÑ&xp³Gw¡ŒEsö¾$]GìéïèS¿)|ÛÒÊw2†¨óP–ޏs?2 YúôêËÀ¾ð4mÆÞð;¬Ý7‰mŒdT¿ît¨×ˆ¡kIPÞeݘŒòþCèݸ%Dòl®ö©S»tcÐÀôì2ÿ§bl®ðñëBa­±&¶ôhÆi¬X«–ÐÆ8O$Äi͘pv1w K#ѧQFJ]­šçpZìn`ÂY¿õiÇõŒÎc9@©¬•Ë‹³¸_ þ6ra›LBcUîúg…RžJí9)µ ZBKÕc<ôZCC.OŸBÕoæàzè0‰îîì‰QÐ«Ý Ošƒñ›LÒDZꛘ·ëƒšæ<:˜n[nÒiLeJŠ^M@É7#¦;pfÃ’ËR/1»ÿfÊì:Ïäò O~N³Á¨¼wnê×”eÿÆK½Âœ¾¿á¹3ý±ñ‡Sá÷D0òbàìlݰ˜á —ÑÖ´VÒ¨ætÎwÙDC³Òô›5‚-ë3|Ñ*š=šIíÎßÓýúwT1ŒÁÔX®w8ÎÎ>„¯oO³Q8½­ Öb™á#$M¡À°QÛòÈðQ>¶@RgÎn–êY–~“s\eH±rý¨{i iR{vK‹¦ Å5#4~z·Ì9^TMf\¨ð`áˆw´8]ÜÊgqå¹oX„CR µ/,/—$ub¿TK-M ž:-1ÞJ(^œS+–awå ¦!!ØVé……ü4_I²„Jy¯HË‘h úU·§ˆ!ØU/C‰Cw¸¯¦Á¨8M[ñs(Ô£×?{§I[Û’ö×nn§ ÀMþš2‹lÕèÒHHM…ètbYg «~{˜¾ÚNʳCéQÆ…pmÏBÌÊb“÷¦ÂÞ«˜Í„«m;/ÚÑöG¤HqhÐÛi;HiCÝì« ÂGà­V„wÉFc¯c4uzcö«¤T6LBª40êuXIô™c Ñë‘¡Æ(ãI÷èy2Ž3-ê¢9}*絉5ÑÔ½«áJ³ì—)(«ŽÀ@fÏó9È îIpÒã¥+ؗٴ† ÂkúéËQNN+ÃÐǃ9{ŸZÖžy«DbFEãXÖ_ޤ‘/ßæ¶q\ÄO_!/Œ«1å—®|6¦;Ü]°Ô?$AbˆT’KYv¦µ˜·ëKæ-HÇÿ¥¢·(‹ï„é4{6y-îŸX`Vº×§¼Ñ‹Uè5Éùoç¡k]Š© „'›PÄ<ý“ÔÜãä§$j„Ò¿ZHÞkµ ‰ÒDtè0øÀÇõzç”&XÈã¨(1à$2Ôh¨£HãÏ€µøz‚>šÇØu$-ß ®n[Κ%Ñ.Uǃê7 ¿Iƒ²Œt´ÇLó/½Œ¿%ì3!ç©D‹ÂÀ•5r#Ô$SMF56çÀµq2² ¢+ ×SÓúÇçíÕ$2é`(72îÞ8x0ajs7ªØñE÷ ظƒ¢;´(¬‹òU¯Ê”¦'RlNacC=ñz±/ %s+ËFCˆ¤ S6 ÂT¢!êÈxvžHÙ;+¨`Õ€-Ûpß9…5ÆãUËúÅO¦¸t·³û†LÝ=O ¶ÀÁ4…ÈD-ØHÑ$†“jꀹxm )ñÒ  0ך+ÁVm÷á¬7àžÊ’§²8:HuH£çy ‰”Ë*cLJt§Àl¥Îì—ZRBû„†§NP´T3V9¢WGâ’S ™Féë‰.ïËIµZ$CâÈh‚©ººkU$IœÙ+³ÁC‰íûÞÚØ¢è¸_c`ÑZé3ÒåD£’`S›ÝÓ½?`+…ÿ"]Ü9N»F£‹^ƒùº2’ÏñeËt»tþEeX¸8a" DŸe\´DfI…þ¨Òe?–ÝÁÄ*&Ï ­ðûƒC´µÌR§I9:Vb婳'âøŸDUI¹,» ÂÇDšB’¾æyì‡ 4%r.ie<ÒÚñýóÎ{î¦XÓÙ$Od<Ðkéìà@r€c]–2Kâ5á4¼I©»›Xrâù~U~ÙÍŠA¾é‚ƒä‡4 ·aySGefy×)Ü2&üh±Ô§á¨OÃD¯Ç„xl$$IÀ¶€Lz™DJ«lŒÜDgU ,b ¥ðvô X:íWî%s3î&+ÆŽÄß²C挢¢ä:K¿ü‰€„x¢-©õ?K[IïmL}MY$’xNÌŹ´"C´ø®ù éÖL\ž~ÜIËðøa$]¿®I£NêÖ‡ SªszzFù„…ØÏC ËŒ¾|‰ -~ZÈ™QczÔ˜äØŠÌ_ÖRL>ZÙMÁ«»Roœš•ühc™óN‚ð¾Øjl‰‘GCjîcý^ž®G©3e¯ÊŒû:0“¦Ð^‘DÑ\?à•ô4 ÏrßM©&x?«W¯Å‡#"¨‚”DKbõJLåY'û>Ë|ÃuŽö~d‚› ›8©Œì>#ž%$—˜±[aMÅÌYå*Šë ¸"1ÄE¯&QbI¬>ó‚Ìi¶ë3v+\Í(_~|;S››RóÿŒì\¤Û~ç‡û'™U®Ñ‡=¸ðŸ#±ðfô¢ôï%¿f/­È§KWæ¼£ñkʲ³lǾˆv9aà?fì^ùkÎ=¿[b‘ýå\­Ô±5ÿÛÞ:om„ÿ¸,?òô$œ™IÿŸÝÙÚ^$Øò…µÚ†XYnKQêQêÌ2f‡ë^˜þ·Ê•4†Ñ&Qt6sD-GõššòD¢¡¦a*’Gð«aIvH¡‚:&o—´µqÔHânEW’_ðêpÒFRDêÂZÃ’ì’騢‰ÁæÅ† 2x6c=ûØÍZªî2By—] ;ð Ò‡>t¼Ñ‡ åŸÜŒIÉÜrJGðŠßA!ÿe~ioáÓw°c!ŠÑc(Øó^…ÿ* ·L^û˜WÎGJ¨^Ce™S$˜ÈR1J3"5NoÔ %=_\ ÑØ ‰5&ãï?òÕ»)F2´OÙóéH®ôÞƆÖ$^æ~¸JšB¾0ך£6P£4Pb`T”ßFõâ–! 7à®Ê’§Ò8:HÓð8ö'mº0¼‡uo óÑÜmmÌJ«ÀYªÄD")ü1&2‚dŽDêžÐ\—ÃŒu}¾Ê»h% ¬MíYzY‚G\óáä»UjÉ“|1u wZÅQL™‚ -’.°bÝö +ƒµD©E+v=9Ê'VͲ­-+†µÚšYô˳Ãï«ìø>Aò¡ ?W©ÈJm1öÕ¨HÚã»Ó%ÑÝ8‚‰&át•J¢ÆòÁ–ñ™òèƒ_¼¨®vÂøLù\ÛXþáC&lß΂ի™°};å>Ìñq¶×|‡¹¿°MæŽí5Ÿ\‘IbÄ ©!dÅùÙ°4ËnIL8 p#8Û¹Iõ*j«F±´ÂòiüKì]lÌŽ&»)¿ÏšSñ"¿ ‚ð!`ÙŽýzÉÏnqÛ©oÕ€ßãžç3•(2o‚ð¾Ùhl‰‘gLR>¢÷s™;g>_mÚÇ\Õ&š„3Ñð1ÍU†Dšiél‹‡™-)ÊLµ€RtÆVb/OÃúÇIqަù.ïÌ`SìDó]Þ¤8çäfQááCFúùQ,"CµšbŒôóË1ØL°Ç׿~f°)sÇ׿> öá/=ö•2z,G<»©žàüŠuÐuWB®ðÐÐÇ|È0rJ‡ç|[Ê—¬Ïz{‰¯‘Šç|[l BVñÒ*ã;µÂô”¹ïQðè’xtù4ÇöíbëæC„¼õ¬Ë\ÄÿI+ëwÕ¦äÖt¯Œ¸Ftª½oyº¦•œ%„÷-sœ¦a)VMšÄäÉ™6¶?~öé´ýE^ÙSgÀñT'ZóðÖú^ñcJÐ 59¯ý&ñã`‡ 4ßåáù²4ßåÍÁx„½¶}­/\Èq{›‹_Ú¦vzÀî'ñõ¯õMo|ýë³»ÅIÔNPh4T ¦éµkT|ðù+ÚúZ3v–f¹aiV*ÜYkÏ*ùsÙ\`ÀýñÑÔó)‹ÄPB¨ÑîF .Ÿ oHŸÄ­ucéܸ==:·§U“A,¿”9ùOûÔ©]º1hàzv™‚ÿÓç ¯+{.;‹»PTbFí/ΓL*WgÔÃVâL÷Å·Iÿ‹ÅcF2z@+Ü$N´0’ÑcòwømÖŒn¹mT¿ît¨×ˆ¡kIPÞeݘŒòþCèݸ%D¾<ÁÖª¿Ç©¸1«\ú0¡··ó}×´(SÕ ¹ÁwC¿ãj꿬%lS»ÖÃÉ(—€Ï¼?ÿ½†FæÙ¶'`hÅ.x£`Ѳ³îdt¬½y›…7órËvìÍ)¯ØsîpÿÖûë.9´[žûƒòYåÊ38´;¿[‘7…áù¬YcNæÿ•©¹¨ÜKÍÒs^|P•¤|ºÚ•æ.ûùÆŒ.3†»E<š‰…+£Ý°ôÇ.¤8xX´æ÷09½“ _m%Þ£òóºô JÁèQ ö·q{¨bZ×Íœ-Òd&,1ãÿÉ` †Ç?Cù46{&#âŒA/C ˜¨@¦D¡ÜƒT'Å6Á‡ìãìqˆâºçyêÞðbO½x<º Àì–ÁWñž÷¬­Þ˜? Àäê±—Ûšƒ¹ÜЦä°ñ=+Ú7ý_M 46ý”ý.X~;újh²µ§0¼.áÍÚ™ŸçTXžÏ[äñ¸k1Ã.˼ÊWcö¶nx¾Mûh%jNç|—M44+M¿Y#ز~1í¢Ù£™Ôîü=ݯG£œNô-éóz¾ï˜%žuោìä¿®FêÔ†Ù«u\r_œËñÌpó4{y»6ÇãKÉ\™¦6â3:õgÁ™HìêŒgÍÎohR$ç`ÒÝS‡»çû¹vh·œf¾ê÷R÷»ôýÌ9|9cr~7#W…áù<´[N­Æ1™÷¢8ôwÀ ÛHz€â‡ùXºµ¦TóŠ+Q4ŽÁüâ6Št®€lÇ/˜6üJË;‘<ë+ôÝ»aèí–?¨7¯3·îçì_—¸x™À„@8= ¨F0ºj:uEq»çL{'{¼Ê—ÂÆÐ;C;ll±5´ÅHjÄ•sVT¯–ˆó'½1¼q«TèA)ƒ¤T*Gào+Ðê4D)£x’ú„§iO æÄÓÜ.yã$#.†¹Yq¶­>JÒ¤‰¤tíŒHضƒ: :ñäˆ?z£÷­týo7Žó‘wC"KâxÅcTÿ}.®/”5i¼¨À¿.Xɵ3¿Î©0¼Ïߘ©³¶?Ë,·´ÅHJšH `çE;Úþè€) Úb;m)m¨ËkÊLs:9%¼Â¸uïáå<1'ç+9ÒëQÆ…pmÏBÌÊb“CþZ…½'V1› W¯yK'_^ÂÌ%~lÞœÆÌ-¾ÜØs *>])}ó'þ·<˜ÖCk#Ñ#SÅ©­Äˆï¾ ¡Ù›žo÷Ómêôm€…\Jâý Lº/céð2ÆœgåWs9’`…©‹Ò®Äç¤^çÛVÙWt +Vޤ¤NÜà>+?ý”Ÿî5aÓÖÊ  Åÿ›aìM :( Ça«Y< $†h‰8ø=ó6ŸàÍ–‡gYòSu—ï|:s2NZe í+úgï~K%#ÐÅ^`õä8›jŽ)DÅ;ÒiÎ,z”1ýL-<2Þ‰œ8”í^+¸³¯2ׯ5bÄ„–\^SŸ~?Â{UÒ“àÄ HصkoÒûièjt'qÝH4 3T³¢ì9[—t5F‘: y˜+iÝ»’”¹§9v“+]"¹vª"^©å¨\² µK×¥f/%§8`2§(Õº:qik†£“P.1£Z×—3o†Jm°V[ ©×$俇®u)žËïFÓª£ùn¡;76ö峨´j,6Ïúzâuì^ѨÚ3ù½·+2´DìèCÓ«Ùý‡Ûžo·v&u&.çS/ct!«iìý5ç?ùÐ>ý8ÐÑŸ­ƒÝQ äŸmY“œËse\‘Ogúò(ª^ÊC i¸•¾'WÑ£KeŽ¡¢ñ Ð}—ï˜RÓ݃e4ª;“¿ºþF}3)öÍ'òƒO9níÊÖë©(ÍWmç˜ûbFe_s^û”]#Fs­ï^Ö´¶Ã=Éç'R·Ë\Ê_šMÅ÷Ñ»,ä(=ÐL½Ã®“–ôÙÝ7KŸ÷ÃÂw'wRëSÝ8Ÿ[(|tÌåæ˜ÊL •U‚„hüÇÞîŽù Áߥ­aDž)JËÃ÷y–öÜxñOÜ*éÂÔýó8}ˆý]ÊÆxQÓ´“ÂêácQ FͬÃÃ=Læ<¯·ZW'.Fä™DÈ!Ð|&¥icÂׯÅjÁBä÷î£.åIÜcIiüò²‹1¥À&TìP€ªr7𝱧BUO÷¨Êšû[huh5wbD¹‘Øzy! æø¤‡Øø<ßÒטó)4ü¶ØÛ<ÅL©ØÒÜt¼Ii¼ò»)B!¥ ÛÏÔã î·•uCK Yà`šBd¢l¤hÃI5uÀ\𺲜º–"õ|žƒß`I-«l ܆ûÎ)¬1ϨZÖ/Nzˆ;Aw;k°oÈÔÝ#ðÌë\ZÓê|úY½çA_æöòtmæ’ñ¥-Å®V l‡íà¾züŸožŽ'³ÆÃÉ éÁ«IZ ÉI7ØþWº¬*šþwÀßÞT˜°!÷ÃTlŠ|Ê%‚${ÐV‹â÷á4ž–1èRáL•2–Ön˜%ï$á †šê³/×›|•;/sàwgÖ¾PЀGJD ù¥¿/Ô‘ÆÙPÚ1ý¥£p,ƒm| Qÿ±+1BáQÜ¢A‰ÿ`WÇÃÑI\Úš>IçYÏc‘:æ„&¤°üÂ9šý>OéJêUüƒÛÉçéU²;_gÿ˜CÌ:‹·1,ùb°Óba©—z.«uu¢åÂR¹¶/¥icB÷íááýÛ„îÛCJ“Æ9>®áÜb/Š;¡Ì(&·îÑ¿´/'ÛnæhÝãH\$´ŽiÉÔ„}<ºa޽» æãÔ\ß ¤™æãÔØÔ4yE«t<º~–Þ§wœCi¼Ä‘UN9–½/Îz'þ.ù7RM>L 9=É«Ôv1&³²±ÏS>óÀñDÀ¤«G±ïTZ´Dÿ“¨j(g’KÙ«˜ÖbÞž/)ý†³r$2K*ôŸ@•­ÃùñJ¶AÈ“}’Ã2©¦ÅÛ_ªM¾Êú]AKêªx°{ ‘µ?¡|‘ÜÏ7ùìXªWǹ¤WÔWÆeh]9’?†fŒ‰Ôzd'w²zNÇ“XV¥aêo,ÜbÇðiƒÐ¯YÀƤÆTµzËgFbˆ¹"¸”g×ïõhÔ:0,Šw…²Œ9MR– Í )Ûh,.Õ~P2‰,ZcôŠÒ L¢ÛÞ¨î|…ÊMI‹;˜ˆ™çÂPÒ“©ëP/³§Ñptûÿ¾‡Ûz ¿Ž½ÁøƒÄí¸€"†Ê–õ™\~*ƒúÍC;¾i5»eÖe´i Ò'¨5Ì¿Ê&µ~=lfÎÆlÛ’ºtÂÞÞž¯»|ÃW[‹³ÒìšTÇè})4sj‹b¬†3çã¼Mšy >'‰On3æš1mm IzšµD [ü%*é?ììo#½1V)V(SÓ™ÿÇ&«ïWÒqFÕÃ¥š=±Ø6“Ï7ã]C ±¡ÅO 93j C“[‘ùËZfL~y]Yú.,ÿ…›q7Y³ø$µ'–#`ñjnÆÝä×åS¸žµ3Öq?!˜›q7Y1v$þ¥è3¹7g/Oß6i?Œ¤ë×5iÔ©AÝú0aJuNOÏ(Ÿ°ûyc¨ñªd¾™´D™Ï·Ž??–±õÇO¥kñŒ®P“Òx‡ÏgHÏT¤šxâ,Û³v]wœe8¼ö|SØè‡¶Ý6ª˜åáxÎA¬™šÞþ•3Öã5Ó‡3ç³röIæ¯]EÊÔ‘ôÜgƒ™. ­Nú=™ÏE9㜎Øâ]+œoƒ&ðC1wRMÇó}‰Ø(o±jò2nÆÝdÕœTœZŽcÏž¿É+)ñ/! ¿eOàÝçmµ,ÃÀÙ£Óë7«Á¸Ï]˜1¸§œÌ‘é phñ%“>)Ëç[¿fî¤þô_aƒ‰¡C¹c'zŒþ„Š–"Ƈ"IÖ«ô¤^`\…!Øîþ›É娾¡¶o4+n,|éÒ¹©Dñ^Ó–Aíb2л“}2¡ÿA–û#2-’oï–'eÒW¤5lÆYß.JýYÝf+)¶±4vlI¯R©ëX™$ý:‘ìÆM,û@ëæŠ¦Ld·n! yBüú_ÑTÈ=ûëœ;jCÅßªŽ¬·na?dgÔ^¥‘ß¹‹ìI(«–sÝUÂä«Q$ʵâKÊ^òàï~É´šë‘c]ÚÄGŒÝö„º+ñtÛ=£g.ݩ̃SÜôÑH%v(ôO³,ëùþý£ D¦•QÌÐ=s[a™ dºRAò°¼}Þ½ïÏÆ×y—ïsS‰‚¯¿þš3f¼ñ¾wïÞÅËË«À§ÂËÏ¿žÒª3'âÓ®p1·GñÒ*§qˆy‘v…É5'â¹gоÁЀëCï_Qrkz%¼¿ ^Ì.¼è]|¤¿ Œ½ð­ǰéûce®-XG|½Õx‰ñ™ÂfxÀËn=)[ VÖùå+DìÁävµØß%€²)ÕøâQTÕ˜ê \^Ú_S¡<1çN¡8vià?¤6¬ªQÃ=ƒû}R•-Ë“#þŸ:üŸ RëÕ%µ^]ôFFxÛêídÞžŸÛ}-|>e𯭸æI¥l=šzU,?ýùŽMêÒÕ<…‰êçS@õrQb™>œ²H9/‡ìc™Þ3g¥ §œOR,ÞýÃX ªŒ…Rò$áì;sR•1³ºÚ2îý5—¼ŽF1ªÂœ«þÿº©oìCï_ÉÈ£9+¿Ûñq™ÎÌè–·¶t¢´%àtoŽÃÌöøúƒµMø™ÎýÏp¸á#zÂö*0øD +-ÿ¤Éàò\rJ¿Œ~‰°g‡ëŒP¶jù¡›þ¯èŒHiÖr˜`~sw4ÝÇuÆë‡ÊÌ÷ù’ë¶÷Y2~4a×ã儺¸©u½ñ?~…›å|ø©¨•’'*-6H ’!‚§´B‹±HpøÀçh%SðÄö!5O]"ÙÌš;E‹~àB!fÑ’Ê‚ÝC,¯#Kž‘åü]î;˜Jðæ=¨‚'Ò{÷(™žÝ" n Všd¢7¥_úÎëìðÂîÙŒõŽêQ'mƒÔ=XÞ½3Sw÷CÖ6ãcDZùzgëôàp‘8JgíD0p¦.žkO(ʲ,CÄþ1p¦.ôƒ\>w‰ŒdŸ—ȉÇÒêÚ#:œ>M€ç Üh ‚ŸþUÂvAx_4¥K!¿|¹îMÇŒÉhêj/ίÖÕé?dBúŒõgô朙§¤Î9Í«\âl§ÕH$˜mÛÁ/ 1ëY‚wUí—>¦˜ê$Å⺠,5š²ÃÀ’Ê(ÈTh4 òóc¿VɦòTT¦$ÞwîÐéûn0ì"‹ñ9‚ ÿeÓ®²$lû‡Ÿ¼þ`Ä„3¼m&AxS)“¾Êü¿c–¥:Àg IDATŒÉ“'äCk ã'Q8¸±¡³ ÒÆ^@R—Nh\œ1>y*Ÿ[ø2¯‡‰17ç‚—¶:;‚mÒ+]ðò"ÕÎ é¡#ùÜBAá}K4Ÿ%lÿ¼n–n4ÿ¼'wr'5Ÿ['|t”-š¿u3êjUÑ›š¢®V•¸m[P5kšßMËWòQ—ñÂRnÁr\NHHê2é ÞP81»nçWôX&ÓéõfØÅÇjg€±±1Žÿ ’¤OTŠ/Vƒû÷?PKA„ü"¶ ޲Esb"2ì±Ç¡*äK1¾ jwä·ïÐÀ¥}¢zñí‘ÿ ¿}u‰™°(o"­¬pŽŽN¿c:­-Á†qX>¼Ž®Tî‰ñ…˜>‰[ëÆÒ¹q{ztnO«&ƒX~)gI´Oý˜Ú¥ƒ g—)ø?ÍXFF›HàÁUÌÝ…2ÍÙŸËqt‰ÜÚ8‘Þz0°w?tïÍ€öƒðšž³qT·š8Ê\è·?6óØš'û˜;¤n'Ú˜À¯·Ó2«{]™ |ŒDÆRA(Rë×Cò³m;Ù~4— .rký÷Èž„’Z¯n>·ðew‹Å:1ï;é²iš#!Æ1Ô¸}ã¨Çh›æ¼š’ À–=jz®ßÁæí{Ø>Ï‘•ݦq1ÐÇà?j,×}òóšÕÌo•/F V¨#y ñfÄô¾¸KsËå¥áÑÚ>ôØèÁ´M›X³a¿®›Nµ´4Æå¾pãš”gÄæ‰¨¶œM¯¹´aÒü‘”·*Ïð…óPæyú´×• ÂÇ(}2¼%­b¸ûT¶ TOomY;±‡ zcc"V¯À~ÈÌþØJp´3_;™2Ï{•WíBod”¹ºM'·ün.*™Œ5­[3ÐÏŸÛ·Ihh@²Ñ?´¸`À…i˜1ùWNàÂïs}i›åû8ñÑUÿö{£t8yVç×~Õ©gúÖ‹ø …‰©³¶ûdÞ•[Úb¤ %M¤°ó¢mt@Їm±¶ƒ€”6Ô5-NÓÖ@|WH½ÊÒ¹ÁtÙÑŸÒ&¯/Ã’ôY<…T õ.GãzðéÀrÙ>‘SQ­ñ-"^‡‚ð&Ò{43¶ÿ¶à ! !Z°ŽøzDÂvA(@ž%xO2}WjžÎ}+K.kó°zþxbgÇ·={r¼reSl9YÜo{ö$¾Dö/IòÜÖÔÏþ9£‰aѦË$ÖéHð·ýØR6œ¯ö?%9_Î@(ô‰—Y:üܦNÅÇÐ$žlBóôÌ(RsŒ“Ÿ’¨yÊUܵÁ+cØX:,½*ã(דDé¾ °•ÛÓ¸›»E {U]z%±1(sêD}]™ üÇe\:7§Î¼ÿ³wßaM]oÇ¿$@Ø{ 8@EEë¬uT«uÖ­U[gî¶jw«uuXíp[«m­ÚÖ­uà®Ö½PPAPÙBa„$÷÷GAR ÷ó<>ɹ÷Ü÷†Üä͹g,£wè(ü¬«36´/K¿i¸î¼HT¹äOðn¾x2Q?¼BÏû°äÏŸ°|?·ÔuÐ+R®\N°QÕš“h•A®¼ŒeétiœÎ°edS'œ”æ4nZÛë7¸*ö.ébwói‡!œì»Õ£k [á¬Ê$1ÝØ/S—O–ÊËò®x¨t§C,gnÓÒÏÎ÷ÓÙ͕į¾¿³qé~JÊ4Óö2Øïuö¥•³L$zÆôÑ”9wæëã±h-·ŽÏ¡£ó½94UEÁ¿Â®…Vy6«BœU!F¨:qFߨ\-{ʼn»eóHû7èåH€ãkœð>Lèu±IfªÄ…RW"óŸ$ܕسYêÃ"iu~’ºrB"/¹•¨YãµGŠ3ŸƒÞ )ò2GÈ-idžÂªs‰$ådqáÜÎ%«IÔ—¾[UxoV…+MÈ Þê¾ó/²vHï6ÁátÀÜŸÞM’Øy4=zï ©qüË{Ù›ÖcÜ4§üLhf~s£–˜Àï™9o¡c¯‘&hÑZ4ºH–ÚmfLoD‘HTÄCýþÓZ“µp²yóš”Zu+ÿEW⬠1BÕ‰óN”)ÕjdVt¥JˆµÄÅSýŸ÷ÚšˆßŸvØ{×&6ôA[ %›Zì ”è ù“˜*ÑÑÄEO EbÏìð$ŽãåÕë7vüç8  ˜h‰V”1C¯ÜŽIë3tÍF¼¶(hÚ¤NòÜ2G.V…÷fUˆ±ÒÈ8Ì„Ö9×b0Vg2y]$A:z‰–ÌçØ„‰Œ>h†&¥ß-팭„´3,þ|%ái‘«#Ç­ýõõ<ˆÊp´† ’YÌø:rK%ú̬ê7Ey|!Õ,¹Úeþf€6…¤ìóüôö"êW‹]s–Þ«_h# ÎÊu>¯ø2‘èyTÞ €ñÃ2ÿ—ù¾m&x×2TÊϪgUˆªNœw¢L Z3O´ÃÝ+»Ò%œ ±VÄݲ è´'N®i¸x–5KQù}2Ó¿7ÁßîeÖ«yåýN‘nž°ä ÄÃ]dîu Ë¢µÁø' E*€LªCiÀ˜ âåÕ¡ 5ó•ö ¸µŸ˜pZhíˆS–u®l«7eÇŒ¦¤„ì¦Ñmg¼KœXÞ›U!F0ÆYiX´cUrÑkwÑÊ{ÿ—¹tå«M]ØMbÕ”w4}`ûITøšÃÚA÷|Xô¡Y=&íŠdRÞÀÝøtEÑMò׫”2‘èyóŸ>U¼kèØÓØaªcÏÜJù U#Ϊ#T8ݽ²y±}2/¶O®tI&€“k šGÄ6hv«ÜI&×AÏï“ù?ïÎÜ1;‡y·}˜l¸‚4+š³+,„$ê"%åA²*6K«³XêÍZ‰‚º‚šâÒFEíçÀÁ‰88ñ‘“Lk­)&¹æ˜ çî«|°)–z/ûQ½„»ÎUá½Ybcœ"‘Hô8ý§Í|•õÃò~U!Ϊ#T8+c‚y?×ÿ`æË_]J×Qc¨ý¦ŒH—#ôŠßMæÛïãЩ#^vHP‚ç"{kèc¸·%NìÅŠ¨±-áXã¶y>û\sâU‰  ËäyÓÁ‘O—R0Í7éòé.c™™½;tå·fe~XU…÷fUˆQ$‰§GJ4«Ê¯ßªgUˆªNœî^•5G×G‚*ÉÊÂiÔÔïMÆ`~‚%¦&´øàVŒYļ]¼ùYrãýæR7ºY~R‚”\<…Tl¥–¤ %'šQQû)ÎÂuJrä²êìž7¾„­¼K)+YUxoV…E"‘èqªDrD"Qy˜ýs‡ýúðª{k.§…+ÍÇý†`¡dÁÍxÇ;Ù…’LSNJ,H@‚9·%V$ YX=¥˜muæ O%![œçE$‰žÔ¢)‰*ŽÉÍ(rëÔ`°_;–D|@vº±%7ÆÁGu ö!|TÊ¢]HTBmÂ.ÒãÄiÚ¤éP;Ôãö­ uy:Ë€©rU O#*# ¨+‰D"‘èÉ[4E¢**×Ç“+ÆuÄíL-©žêCè±`Ü’’P ñ 6ç„· §‚béySÇõnÃùpÜHVû¦0lÏIª•wE•ÿÀæ|,£|¤ÙDhb8¹ö&[Ç\|ò‰D"Q…[4EÏ!—«Aølÿ5Ž¥°°sã­®-ùÈ× yÎmú|uˆc»°zJG:+‹«GƒbÓ\ì¿ù ÓﶤÍú†Ó®IL?ÁÉ4 í¯lç·“'qKxÇ enáºLÜùmBs^RS²Ú´Ænæ—XlÜLF¿>ø›ÖãâÕ ôÎNÃ6-™FWœ9Þ½ úþ¹÷‹RáɆN÷Z#êÖ%îÂuTO¡ë`†S<Ýw·bykk®ç„sr­ŒNÆe¹Ý“?¸¨ê2]3•ÏWG °µÚ‘sç1¶±@·‹éo¯"ÖJEVšÃÏ¢“‹¬Ìý`H'týW|½! ……A§‡L%—O&ò›¥\Ž9Ϧͷè´#˜U]l‘`œ+óÛ‹YúóE†¥ïG3QÇÊ(‰žG•hÞ¿"HT¥å&³6Ê‚‰#ð§¥ð³¼±åm'·â%SV¿_BrY˜æ–§ÜPo "Û%“¿gá2y&—¾ú€ñƒº²nçÜÿPðI¿•4ûüš+a,Æ`àÚ± Mñ¡Á¼¼33~^†Ó¨qXüµ–M.ªã·Ç” J3r[¿ÊIËtºeé‰*¶‚\˜h :\/ïfÔ5g6ô­Az±M=ŸÎã©’V×%$Œ”ÑCL2E%Q5gÖ¦æM¬í1ÕÆm2CØrÖî?8#C†sÛîØ¾™Ìn´*m¿ûe]dñìHúmnL2”5²p Yæ@VÕƒx{¤?6}ÂѤ®ô,nÒY‘HT"±¦èù”s›>Ó~Ãeæ_´Ú’Ê þÔÏOµqŒøê7œ§­£éª³lK)å¾rú^\ݪáãÕ‰×ÉX: ­$–ÁsþàD”„ýk§úyWº5{›S÷–›Ìˆ`¬ƒmÓøë¶ã½FØ{Ýùë%%[v_æ´ÐÞeîþxj¿ú*Aï÷àÀ«ÖÞÌYmÑSS4ý:b½iN‰˜_°Ãû`onnÄ'£aÆ-Fý´™ú9ù;h©v~;oŸ7csïv©žÞ§ü¶'¾·ª¡¶LÁéW='×Þ|jÇU]BúyýÏ©Si®tiÄkÌq´4Îâ/³tÆLGº®Œýî§M ,ÅŽÚ.…P¤X×nˆ‹‰€æz~CÛboâDûR¶J ÄO!‡”„dr„r–‰DÏ81Ñ=Ÿ”lž5„;S{ógkX¶å ×õyÏÏBì¬7‰þ¤+ÓãøðPcYq,_%6&Š›áLj›V“Va"qeÝÄi'ɤ]Ó¡4œ¾3£ X¿÷ -@ÇÏÆcàE SG¦vò¥•¹LdR”ffXÉ™/•‰$uH= s~ÙBõ¹›©¿üßÞÈF4èåHê ^±>ì¨ÝŽÓf‹YÐçSƸrMéÁŠ1}¸¬„jœÜ„˖lìû ,ŸÞG€ü¶'Ýw·"Æ=©–ÛÁèd1Ù•J»›O; ádß ¬]ÃØš/·ÂY•IbºñÂԥǓ¥rÆR^Æ~÷SºÓÀ!–37‹™w×ÏÎ÷ÓÙ͕į¾¿³qé~JÊ4Óö2Øïuö7sWie"Ñ3NL4EÏ5¹Â‚¶Íü¨•ÏÍ"­!”æ6tkS¿Êî'A°ð$kÄprïÇ$0±GçÙÙÛ¯`¥ÕÜkZõeä9 ×ij:Æ‚!µÍ}W´± ž»™ßýÍ«;Óéߣþ2@fÍÛÝ«º5úßoçåmjœ]Ýù°¸ÖO}Çr#0¡j››ìiz“¿=ɽ?Tíºž‰Ç,í #V.fáÂ…,\øÍ2Ÿ|S‹E‚3wù¹*›Le¦±oær;⎨ËÜWô<Є¬à­î 1ÿò k‡ÄñnóNÌýéÝ$‰GУ'áð’÷Áß¼ŒýîgZqÓü œò3¡×€–˜Àï™9o¡c¯‘&hÑZ4ºH–ÚmfŒ¸º“HTâ¨sÑóGÏì4t}Ñ‹ºŠ,Nœ¾J˜¥'^÷] :mÿœ¸ÊÕ¼²¤ûëÉ8…íÂÛdŽê†Ö, ÓU+Q8·dÅéhZT§a³»Èï'ÕÛÿ­ëQ84E§¸sùᮾt°È»e­peÝG}Ðk39~æ “vÞ ÓP_jÁïX¼ÜŽ3 TÜ :ÅèP îVrähóZ?ÆÖO}&q¡´H÷bë !,^þœÔ$»e³h̽õ€PVgÑ»ï>Á·dêÎ`b0!K™`L6ߨpD•]Æa&´žÈ¹ƒ±Ú8“Éë" ÒÑËHìè´d>Ç&LdôA34) ønigl%eì÷nƒÖ°A2‹™_Gn©DŸ™ƒUý¦(¯#¤š%W»LÀß Ð¦”}žŸÞ^Dýïj±kÎR‚ÕÁ,›4ž@ $8Ë8ê|ö¼âËD¢ç‘˜hŠž?&vtµ¾Æ¤ÇÍ‘áâYêPS†±ïfÁôFƲYêRSVL¢i^—L·õ8´šŒ"Ý}ãþ$/G€æ*ý|–kønÿÂW§ xu eé(´òt¶^Ì¢e{'ã—b!2…9­U§Æùh¢uÆDó_µŠþ¶Ø+ÀÎ߯áŒÿ.˜0™= m…¿ ‚¶å2f«'ŸNqäŠâ$«º^áÓ ù½Ñ)¾9{µ#z¤4ç¸6žï—­äe ÝRŠLô 2••-zQ³hǪä¢ï“E+ïý_æÒ•¯6u-÷~¨ð4‡µƒî/ø°èC³zLÚɤ¼‡+ºñ銢›ä§W)e"ÑóFL4Eω ÍZq¨Y«Ëòún>©%9Ãçsgøü"O×£)»55>˜þ‘÷íöî[…¾µI|"“NMÜñ3Éáô…\·pÅSfÔU¦³áŠš—ê›så&וÎü6¾=~ú¢­ŸÉg dMK%;7 L’ùÃó.·ZoäÍëüã}b$\SJXýî{|§Mæã•y ó´?ÀÄ`B¦i:Òµ`2å'dQ9õû‘»b)ºæ6ÆöaÒg8&Ç^úí–/Ð;Ê* Z‘H$= ±¦èé´„ž=J—™ËPM^Ê S[ù:<뾤GOÔ¹ƒø}µŸÀœêy˜ØÐÉ*ž~Þ†ßü½|iÍg=jRC ȬÓ¥’Ó‡i á‡ÍHr®";bn['kúÉÃznA’Õá ·E"‘HT™=Ôw¸J¢(ø'=2¥;s4¤½ƒ©¹D†©¹¹qÂt@—Á;Ô é_jY¹åšC½$“Â9·!¶Èsç6IJgRx¹ë2ß·®¯áU«n]_#tÈ¿mM,²MÐÖD…$+ óÀ½X/[ŽùÞ}H²‹™Fåa•ÒúióíTZкLŸ¹„SæSX_²L &Eûh H—,@Òr 7‰ÚCþ܆.u õz^*‰D¢ªD\HT1²oÒåÓ]ºòÙØvÔ—ƒ ½Ë‚ WqíÚAVæh 4z ‡sxÉå;œ#–Æý]9·!å;8.²,W=ù-‡ù”/цï¹ôï‚H¤A/G‚¶&bù~.Ö“oãþÊ›è<=ÉõóÅìÐaìf|AŠehýë–ÿ$Jiý4‰0®ýc™ òBye­„ …†?­%dÜ»œÌ[jRBñs >a ƒ ™¦y‰¦‰té(ÿlŒöŸžÏtóµH$=Ä[碊aêÍîyãÑå¤3oÙ~n¹B·Q5ûû$—Úð‹©ö.×5úÇ’h6îïÊ9ŒÉåÞ3×p[9‹,hÜßµ\õØ|?ïç,9‡Ë<´ïÈ?磩¶VNæl=æ‚ú½ÉdôëS°­ÅÆÍäôý›/l¨×ß­àù ­‰$ŸÌ¤Ýt'ÌŽÅ$ò&¹Õ}ÈjÓÁԴ̸rkù¢¼x €ó{χ;Ù Iµàðð>D+¤„bN]!‡D‰)ôX”ëì© C'Ó†tn?”?y ýg1z×¼Á>&Ž6ÉHã´èíw¬k <…õØE"‘Hôxý§Dóæ5)×BŸÜÐ}Û*ÿ7JÆÓÙ·­¢£x8•ûõ´#À-ç3Wؽ׃­“ ¾¸í÷¶øû«C|Úº/Íá-§Öfr:G@hy—‘ËœKÞÊ&ú$Ú$cC¢u"w­ï’d•D’uiª42Ì2È0Ë Ý<©Ù°ttRHÏËýÌrÁ4¬²6£.ãÇ»þÎT?«#¶¦’ôD_ì7ecåêTnÕ&R×v8¶êØ›‹[‹êÄœŒÀoA.Új_N¦³êjþXn[ã§³9óÑR}–z~ñÝ¿¢ÅÅî<|è»tÿñ ÚÎÇA~ÃÙ¹ ûcÞôFÐú§…ÀËœZwˆ8óv"õÑì ÛÉù]i~¸6g¿þ™˜ó&p>‹ú8x¥ÒhÒþÙë_×൒{M*d”|y®ŸŠ¼Ö*÷uþ„®™Êç«#PØ‚ZíH¹óÛØ  ÛÅô·Wk¥"+Ía‹gÑÉÅø!¡ÚÊœÙ{ˆÏMçNd¾ãñE¿jÅ·àÒ ]ÿ_oˆBa¡@Ðé!SÉÀ哉üf)—cγió-:ífU[$çÊüvÆb–þ|‘€áCéûÑLFÔ1~(”V&=$A+ ¤úû4ÞŸ²œ#·r±¨ù*cç¯àón®d¢*‰¢È­ôÇmß6:ö¬ü±¾ù5Nÿ¬¢Ã(Ó¾m&X;­è0ŠÒeðK¨–Ö¾6øÈuœ8ŸÄì›Wè/¨±+²¡ŠM+ ±T:~ÑÑ8¨Õ$ÚØV­¹ò’+©1áæÜ˜“"‘Ó49Ö×el| 5áÞ×I5OÂToеÖ•N…J§Â\gŽ…Î¥^‰Ò DaP Ô+y¥å÷ÔŸì‹w|Vy]-3#‡s.­¸ªÆÑ€ œï*HtßIª*…H;[îZÜ%Ù"Á`…RkC‹ètìÕ>Ô ïÁm'-ý·ã`›c|ôÏ\v6mÂ)_ß‚sxi¿­bùaPÍ‚sUÄú`•àLRÀÉ"ç[/*ŠngÏá3+SØÖ°!Açoöi”ŽzíçÎg)÷uo†6ö:)ÄïAÑ{òw^œŒvË×èŸþôFªŸhÆ<ÜçÝ“þl,ÍãüÜTI̘1ƒéÓ§—{ß°°0j×®ýx^Í)¦ ]CÀ‚ôõ“yv -_Ï`Eðšš&³«_ –õ:Ì–!ÎįéAÇmãùwc7l% h3È”Z ’ƒ.r1m[ã«ðõ¼lyï1êˆþµ¯mìÂ_Gãg.œp¿6Ÿ èfKÄOãøÍ.€«WgɪnØåOºƒ.Þ ™psݭ´2‘¨ yŸÆo®Œs¬>êɇ‡bÙæ–MØÆé3òc^¹±†6qoMôl“›ÑÚü.svß$"WŠU]Z iØ–²‹{b"#vî$ÙÚšX;;êDEÑëèQVvíÊGG %פr®›ªÉ1½…J`zI2‘É.ÄW·ÅAªÂ>Æ—ÿ-ÏÅ&ÑÈ\ã*l ©-Gý›Ò jwÁsæZÐk£¼ý ׺ÃÎ6I¶Ÿ®©õ æõ{’@'ˆQä§ÔÐ<ò »ý4œqÿ3Ô¬å[ÄWœ6Sô„ÎÏÆ,@‚O»{M ‘‡rȾ(àöFÑmå:9Ž1Ž(R\±»Â”6Ä8ÄâkBíŒÚ¼þ©ñþS ÍnXtQe’+—äíÜk½”ܪL­ETî×Üöù—·ÏYc¹·9'l^ãï—¶äsr]Ø[ë¦ï‹#;4Eëíyñb¥iÕ ¸u‹I •QIÏœEÙ½9oEß­kÙˆž/‡™Ðz"çZ ÆjãL&¯‹$0HG/ ±£Ó’ù›0‘ÑÍФ4໥±•H=¹˜™‹O£– ¤DgÐvéRZ;Þ@†Û 5lÌbæÀב[*Ñgæ`U¿)Êãë©fÉÕ.ð7´)$eŸç§·Qÿ»Zìš³”`u0Ë&'Ph# Î2Ž:Ÿ=¯ø2‘èydL4Ó2óë(zLê‹¿yÇ–,æŠ[7|òî$ˆ“´‹•Y€¯/-‰$ŸvJ"åàõ¥%QSÓ‘äpvÅ鎶ñ¶œ÷<Ïú—ÖsÝí:u’êàŸÕ„}_b_ ÎÖ¹×±Ù•+ؤ§^­ZžÙã“ßZçöœRÕ„¹{Òd—ѺF’˜môevÖ‘ÒùäXf&NjFŒLÂ^Â\ภæl¾W§[jjÅÐ}z]2Îó©ÐAn¡Fg“™_Љ¦èAíX•œYä©E+ïý_æÒ•¯6÷¾‘bÝâ]~hñÇ‘¨ð4‡µƒî/ø°èC³zLÚɤ¼‡+ºñ銢›äÇ׫”2‘èycL4U èáù+c}Gœ¦ÀõÅ!ÌþóÝ‚ÖLqe Ñ£òi§$’t¼¾´$,(:[­Ð´ÌÅÿ/k¤a—ˆñ³f]Ûu¯u×,Wj§Õ¦udë‚Ûà«;weÄ®]4»r…X{{ÜîÞÅ&=•]»–:ÅQUó@ ¨÷™‚²+žô=q‚Féœ ðEx4ô=¡¡FL êÇ„=PßëÊÓ!̵PÒk[(^¹ZшD"‘èi0~CK­i4~%§Æ‹?¹DOŽO;%ÿž½Kç?ÉpÔaã-ãß>ÇXc¶ƒëÙ§¨§®ÇÀ¨Xæ>¸,dŒ£#sßxßèhœÔjÂ== /cÍgV.gy§W‹Ü^·õ@Ÿô!;Ü¥Ѓ‰æÖ†¥Oôþ4ÅX[ã“”]½ÈP·N {ˆD"‘¨ª+ø–Ö'ìczŸáÌ;–ˆÃKðë–/xűr ªU}°i}"½÷¸qp@é·Ï³¦ñ*äz(gÐ&Øi ]çÊå„T¯ÎƒãÇŸ÷ß^tx…Ð'Éô°'ÁÃ8í’»:ƒx…3ZÔàr%éŸ °­aC&íßÿÀó¹3>¯€hD"‘Hô4ä%šéÿd4›j/ãêΆ\z¿ã>îÌù_ÛTÈZÈ¢g‹V/°jMÚ¥Î~dëÖ_I.yx0¿Cz\¼$ahÖ”ÜéSÑwé\Ñ¡‰D"‘è 1&šYWÙzÄš!Û:ái­Àyò0¬znájVš˜•QƒHTŠäì\¦‹ ~FcæÎK-£\ÇÐÂòE"S£Îñ¯è(EOË%¼Qð«È>u¬¢Ã‰D"Ñf¼W™›Èuµ~y«#(\ê`Ÿz¤Ê¿ä¸¨»¦ÎbÌ¡Óä:ÿÆáóT£Ë}¡…å‹€±ÏfÉâª"‘è9“ºƒ.*‰‚úÓBÈ©èxJ’ºƒ.¶ù»2L^aÈ úü¿Ú¹• ë÷q»JÍóCè´Ú¨$ T’Jòz>E¥wЉþ£#·S˜xaYßÐÔÁ“U~kxŦRÄõ×D"ÑC2]=‰¾í{0¨oº¼ò?žK#Zu}Ü.¦öÀ[#G0¸ßãôìæ³F¨ä%}±gsua?ªI,hùÞI4dqqzkì%n \x…¬ÔS,œ8žwFtÁSâJ÷ãygâ|NÇ_á×wº<7aØ@zµnÇèU×ÉÈ cõļòá£x³}g>Þ“ÈÓ¼Û´åOµ–˳ü\²²œÊ|-þ+Ëv,?ý+íŸYôädå‚î2sGÏåb)ó’’0³_Kœ•%üí³CXòÖë z­”mÊYü>¾ß_›.ì,¶.%ug]E£ÞD›G;VUd¼unâHM›dÂâ´`¯@w…»Ö5p(nmXÑs@OdT /'q1SÀÜŠ޼áj‚¬PYxZÝnÑÓ,/R›6A¯T²,4ˆ-šx¹)™æ½Oå³1Ï¥H$zŠ2Cøc{.ƒ×l¦¯‡œÌ³Sh9àsš/ ©i2&Ôë0[†8¿¦'ìáßÝò&mÍÙ˜߆K8€)µ‡ Ãz4Š+Äd8.mMmSÞV3kxwAsHÝÁõ­ ;iÁò‘;džßï=§þ‰v-¦q²ß:^¶ðcجqü±f!c¬ côLZöý–Asiô$nàe¿ÿ™ÔÏZ•d¤†ÔšZ/µ£Vjò#¥oêð ÓÉä¤÷Ââ70õgÂ/2!u]JÚ¦dÎyv6û×/,ø!$ºÇ˜hšÕ¦g+5cæíeè ¹4o5©­¦¶Ø?óù¤ËbW¢‚7^`®™žèÛwøäôwó¦Ʋɞ*ú9‡;[þVz`r–Z ÓitcN8bˆÇ q$¶`ŠD¢ÿFÕœY›š<4±¶ÇTC¶È aËYºÿàŒ Îm»cÿùfB2»ÑJd^`þ‡—èµøM~ß\R¢™Ï’µc %Þ¿–œ)cûBõm.mßÃm‹ºØ3ۚ©6Éë‰×¥$ššó‹˜¹hë×g3óž\ÞŠ-Šæýñ ^ÂW?FÒutK$3äÚõŒ›û/[”ñZGÏÁY£6ë4þ½^@jꎽV‹)wˆ¯ù«f·E·ÿ[æ¬ÿ‡¿Öëø1>oöì«üúá{L_r…—†¶ÅÊDFúµÌ.eñØ:”–2”y~%Ô©L>ÉOÍæ@š v*¬üšø½|ÚÂêÑ;i.²fkƦ!-7·ýAbËשçXÊk‘¿ëñI4ið>'25ˆ‡ õqϬ]&²ã` ÆZ1¶põ¾—ºÄãe^æÏ¿oæ½f:bm'1 ;~æ”,ç6çã½8¤ÕlLH»p˜ÈüiÌ|éX'†í‡ãówH½¼—£·òìÌê1fög¼µ‹ïT©añOT^¢YhÂvõ –Ôþ‹q£¬÷ÈÍkUcÐzUˆ³²Æ(“+h\Ó‘jYéÄè!'Óƒ,wT7" ÜËï¿ÐøÚ‡´÷ê €êú 2==+8j¨V핊¡LÕ}:Ut¥V­®ÂC©¬×PaU!ÆJ#ã0ZO䜳;‰g2ùÝo ºM†ØÑiÉ|êm™Èè‘#yok¾[Ò¹ÈàmÄŸÌxo)Áê`–}<ŸÓ©÷5Ó iœùñ‚ÕÁüºðɹw9ºðg‚ÕÁ¬üñ4iê¼Qç“òê˜ThÔùÔÏ}º”\OúÏhÁÖ¾}ýÉZn¤‡±zÚ%·XzÌáýÂÇ? …’s?šÆǨÁÃ9àu>8׃U«â&/ëµÈ$dí.ô¯ £Qþ¸}<XA°ú{ÏÜÅ•÷è¬`Vÿ´í_M*zî“q!éjÁ¹ÿ4} ×SïëOÓ×p=§„ã•v~Ù¥ÔùåZ¯ZA«ýão‡ƒ>˜e/àl–7#×-¤î†‘ 8‚ñcÞaæv-ž–7ŒçHUøv¨Ááqo0fR~ŒÏ7‰FÐ dáýú£°ßvšÏühC¾ eÏd–]ž÷À„í*‰‚p]‘_æÞµ Ôªûx¦SØ·Í„Ž=Ïž7¯IŸXœßÎüš§öÈõ<ÉÁøzZ;-ßNº ~ ÕÒÚ׹ޠ°HfFWcö ¯âa¸Ã–« 8]x™ /˜0Ôôcæ¥z³èUšïÞƒ×ê5œY³ƒòá›RZsèФržYñ¼¼:P½z÷‚ÇQQû‰ˆøû±ÔÝ®Ý|öŽ{äzªût*ÒšHxøÖG®7ßãZÈ×·uëö+x¾“ÐÐ\/Àª«ÐŒy<¿øŸä5¤úIñÐqª$ 4BñÛ>ëüq|nÞ¼&ÅßWÎŒ3˜>½ü}¤Â¨]»v‰¯CeQÚßê©HÝA›¾ª~³eMq”7:zÂÍ}#ßZö>kñ µ¶ïdDµ§p?÷Y?Þ’Cè´š~´åOõø;V•DñÈŸÆ¿JÞ„í-‹LؾÚ8a{1#¦¼kð®ex¬Iá“P⬔1ÊÍhm~—9»o‘+ÅÞÞŽq/™R×ê(š°ÆáSØPßš¿–d’¥\MÇuðÿ;Ó„B¾šU®$óq‹ŠÚOTÔ~Úµ›ÿØ’×Ç-"2ˆÈ@:wúñ±$®OJxøNÂÃwÒ«×ÊJ¹¤e¾Jy ݧ*ÄÆ8EOõkì~ØD7m}œúrD GlÐx)á§þWÊ`–û˜6âë‹ÿ9Ôr{Ö÷ŸäÍ£9«¢ã¨”þ?Î_äORUˆ³rÅ(÷¦¿Ôô*ò¬4\Ê®óo«£Ìk´„¬6fØž9‡ù­[ÜnÙ„”¦+4É,ìÆB™Â÷Tt%$dCE‡ðP*×5T¼ª£¨’±êÌæœÊÝB,•æ‘&l¯*¿~«Bœ•=Fùa;î`G÷­Ì¯¿¹ àn«–Ü­èàŠ} ¢C(SDäÞŠá¡\»¶«¢Cx(•ý‚ª£H$=NÆžéy¶ÿ6o/·Ón³oÞjR[÷'lŠÕ&\Úq‘å½–ó]½yØËí+:*‘H$‰DU@Þ­sK^š³ŒÞ½Gàg}»'óë–ÖT’…§DOAèülÌ$ø´»wë;j¯×_ÍIöˆåóS™áóÎ&Î¥H$‰D¢ª¤ ¦Ì¹3_åëb6RIv¦YQUe ÁëKK"Iǧ’ÛÛs©3ךøFiLþß$ÞrEUƒŠS$‰D"QòPƒ O!&Ï&ŸvJ"IÇëKK¢þÕPw5 ²Y6êêQŸnvÝË®ä¹ !MæÄ™ ñ !‹:ú^Òç"ÓÞdò/{ð-¼¹Iu {•«¥öw–'sæˆÌŠd @&µÑx?Ìô{"ѳJÈ tÍT>_ÂÔjGzÌÇØÆÆÉÏõq»˜þö*b­Td¥¹1lñ,:¹ÈŒS9‚þ=ðÎÿº2«Ï„oß¡^qÝÁ é„®ÿН7D¡°P èô©dàòÉD~³”Ë1çÙ´ùv³ª‹-@wg'ßÎXÌÒŸ/0|(}?šÉˆ:Æ5&K+‰žG•uÒ)Qði§$èr*-ÿ°çzëtÂÞ;JP\+jýRÑ¡UsNÉ,°×EÐÍ '[æÄv™5 wpWx3oÜØ¼ ¸žÝÀDu]¢ÊT—!scLO Ý5jôˆkLjD@flÏeðšÍôõ“yv -|N“à45M&pÂ$‚zfËgâ×ô ã„=ü»±¶`L,/ˆ¹ uD¯ ]økãlüÌ%Îâצ 3«ÇØù ˆøiNýßàêÇIéÜ ; ÈÝ»ñéwŽl\ÈØùsЧ´2‘èy$.S!*y(‡zÛ¬ø­Ëm¤×2ø!rSª}Ž©Tü5^@Б¿D®@9Z”÷·>ê’h¦ãb}J_BI¸ÌW]<µÅ$S$ºGÕœY›–Ð×#ork{Lµid€Ì¶œu {gdÈpnÛû³› É_š0;˜ï;xc#±¡NûOØq«„é².²xv$ýæ 7&™Êš Y8…Ææ@VÕƒx»Wzçlàh’x›A$*/±ES“L¯/-ù¾ÿ Úô´æ›;_Ó'°?ÊhWÑÑ=Zl”Ø©tRp/w=94ÎU³Ý¤¿H!‹fº[8Ü·•i|0¤¾,v(ë“/Ñ£z°ÒÄŒ\44Îáƒþá×F–X²]áNLÞÃe‡7Ñ^ÕÄïDÑ3BH?ÏⱿà9u;ÍU@jñs-?Íd–ΘiâHצuùÅLl»õ¢¹³šƒÓú0n˜/ ÷ŽÄóþËQ›@XŠoºî&źvC¬Ð\ÀohWìM¤´ å£C ¼6À¹ø!‡”D æŽv®òS¸ì‘=‰ª±ES@Ö%‹ï'sÚ]MŽù%’­bhÙ¼7ÙŸ•lEÉy‰5¹B,£„[t”üƒ)å_£Å„[ú› ˹F½@°Ìu‘m²ñ ºEz]_⢉ҀœLCµ×é•+!HnGr¹ãʤ³ö*cs®²õå¾b’)zfèbwói‡!œì»Õ£k [á¬Ê$1Ý8¾.=ž,•3–r@YƒþŒ¦C',í|yí³©yyW2‹©\éN‡XÎÜÌ~°ÌÏÎ÷ÓÙ͕į¾¿³qé~Jš 5m/ƒý^g_Z9ËD¢gœ˜hЍ;É”3©´õ2cqÌ|Þwÿ€Z/«¨3ùY¹m.'–\ꑃ9zœÉÀTb^þ„N¢ä¶DKmCfèq2¤`-U‘Z¨•Bª‰¦}¼ ÿÔ°¢ìu`ôØÙÔ²1t8 jl%¦dˆ­¢çž€&dou_ˆù—Y;$Žw›àp:`îOï&Iì<š€= ‡wÔ¸þæ€ ®ãúYR<[P­¸2ÓzŒ›æOà”Ÿ ÍÌßKKLà÷Ìœ·ŠÐ±×H´h-]$Kí6³?F\ÝI$*ñÖ¹ƒû£’iRÿ MåͨÿÌMe¤ÃB$J<=iX‡@q¥r±”„I•xèsÉÚ"ä *øf3`Œ«cC.©&[ÔRÝ å¼D‰»KºÄµ‰e¹[$Í TÔFÀÀ–KG¨#•àmÐã~ég üÒÿU.ˆFˆª’ŒÃLh=‘s-cµq&“×E¤£—ØÑiÉ|ŽM˜ÈèƒfhRðÝÒÎØJ +ägfüp’d†lî&ÛóáïïâWìû_†Û 5lÌbæÀב[*Ñgæ`U¿)Êãë©fÉÕ.ð7´)$eŸç§·Qÿ»Zìš³”`u0Ë&'Ph# Î2Ž:Ÿ=¯ø2‘èy$&š"ÎÄ¥ac™ÊÉÌü껺¢Ãy´¼ ¤³[âÆr‰€‹‰9Ò‡ïY ‡†ºȽX%— 44νKÁZIz5ÍC2{ÉÍCUnÀEŸ€£ÜƒÕ&rdB:MuÉØ•'$!9W‡—(°S91Oå€{ÄƆ«Øç¡C\øPTåX´cUrÑŸ‚‹VÞû¿Ì¥+_mêúÀnfþ£˜ó˨‡?ŽD…ï 9¬tÁ‡÷U\I»"™”÷0`E7>]Qt“üøz•R&=oÄDS@àÍ»HvÒס?¶rÛŠç‰0%…ÞB 3¿‘ÙyÄÔD7mRñ…2;vZ®ú$B&Ír¯Óì?ÄòÀá--¼ãº•QÇSù§]sô§NŠ}dD"‘HT!êûG%Qü={ÒµzNªƒH‘\£ŸÃ€ŠçÉ KþÁ 2þS¢Y™$ .ÜØÄ˜=ÇHmÑŠ£*-.Ùb{¦H$‰*†¸2ˆƒ·R0s d¸óL¥LÌñŒP±IâÄm €–ZB]ݳÑÒWxz#!•¡ëW3Êç%V;+r“pÉ2QÑ1ŠD"‘è¹$Þ:±õÎ)°O¢“mçŠå ÒÐWˆ,¶D¡ÓáƒZM¢ aÕª‘+¿wiXŸkLºsBÑ}b}°Jp&)à$õ¢¢è~ö.))ÄÙÚòw“Æ{y•‰Ã¥¤9Å£u,¶¾r+ÔGíM¾¸t ®ÑêØ½Mš¬ÛÃÂÁÅA"‘H$zªÄDó9•–ÍÓmLvLRÙ×¥Ék• ›×„Xª*0ã˜Ä‘sÈ0CM'A¥ßvOLdÄÎ$[[kgG¨(z=ÊÊ®]¹ãè@ºsÝw½DX-c» "Ö‡žmØÖéõ£¢¿kwA}^ Lص›%]»”˜l¦9ÅçíZ×È"õåSètÔ¹uÇ´T¬­¹âáQ$ù-‘›c[¶na|¬æã¡ìí'&™"‘H$zúž‰;‡¢ò‘fçàpô_<×ÿÉé+1UÞåUÛW+:¬‡`l•œ($àñ@™„;8.Üe¤p‹‚Šý˜RÂÂs€1›ó5¸ IDAT™±s'{š7giïÞliÛ–¥½{³§Y3†ïÚ…‰N€Áãw=†ß‚Dì‚›$…Z×Hº9[lÝÝÏž+ñ¸Z×H¶u:BÏÀ6Ôà‘”ÄÔ?ÿâåà`l32hw9˜ÏÿÚ€GR D"QÕ’ºƒ.yãêO !§B‚È!tZí¼ñù;µB‚=þS‹æÍkR®…>¹Ö¯}ÛLžXÝKÆÓÙ·­¢£x8© ­ þoy‘ÆsFéìCš§?A~3c§Y¶ ©> +,Ævíæ?üÆúœ¸@½?¦yþÛÐÏŠ3ûèVo=T2tšS¸.OÅ¥yMZÞk÷Œ9Anh ^#ãzj+x]Ár| í½>uÊMîx^ç/Åd2dwˆ3·"]¸‹ºö)vÕù™ ÓtöÔ‘¡Ô4‹?je"RÌõË `™ ˆIÎfLô&˜èL°É°ÁZcM† vév˜eÄq²ÞAjÞqceûp´m[ão3¥ ß{°‘‹¹õòÂÏÿ1é¯/84ÿz…Q«ÎaRÛ·ž@¯^÷æR ^ÿU«âVU‰ëÊ÷yT‘çTU^χ&dºf*Ÿ¯Ž@a jµ#=æÎclc+$€>nÓß^E¬•Ь47†-žE'—¼C*¡ðßá(ÜœPʪóÖì·©gVøÙ\]ø&¯N܃Çäýìû!€kÓ_å•Y7èøír:ÅüÈ´yç ÞÚäHnÙ àÛoZrjæûL_|€á½ñ2$s'"§·V°pxMLsÂXýÑd¦.¼@À°îØDßÂý£ßøº³#E¾5mÚòçÍ}tÿ?{÷×Ôõ>pü“Â[–2E‘¥VëÞ»Šâ¶îmë¬ëÛöçž­£­­{Õ¶ŽºÚ*Ä­uÕºëÁn†² +ã÷GEQQÑž÷ëÕW“Ü{O›ûäÜsž£·‰FøN#õË üÝè+áðF‰¦»§wÏw3“uß6Cšµ}ý…ß·¦Íäë)ãõÆ+íÛfÈþ#]Þ¸õë ¬^SÞÞ„¥qÜ]KßJøMkĬnÝòw{¶€5m²Ï Wó@f &§Ò(å{Où“×Nih\éžÆ@zkK&Òea,qN±øXº#¯ù7Ê”ãÆÉ@¶5HàÏØæÜË G%y@‰dJ)KQÖ= çŒh|JúamQ‘ŒûÆØÿaFš¿%¶[4¨¿1§AG_-Z!ûïÖÙåþTRH6uåˆ ÚH–&‹ uqq™Tïê©wðZˆz©%Jxrë¼°ªI‘8ÏYþzqêëg**Ÿ›¯EÂÆíYt_HGg”g&P»ó$ª^žO5ã8ö ÅÅv‡ØÒËè5mh6l7Ç6µÂZ’Éõ…éÜš›§¢ù‹ Úãݧ~Snó‘ü ÷Sì¹*­‡·•1=? -®\ÀàyKtÉ æ‡F֥ˤœ˜5„¿Ö>Ù¦¾½œF5's¢ÓzšyÑgú6®YÀàù+hv{µ;þ@׋ßS¹¸,´&¯AŒÑü€xß¾Mœ¹9§¼½8k{—øJœ÷ô¥Þåp¼ïÜáRéÒz޲àÜuÏäô ¨6þù/ ·M2–ýß!Žþ̓=§°°5¤~Šw“ZôtëJ —*˜ËuW·ž}ˆëׇä&ÝÍO>ÒŽ¾Ó8Uå²!‰\•$SûëI(ÚuÊyO X+!uÌdœÏßà8µñFè’ÂÇIbÖÈhîÏMÆÄtgJ†r"íûÏýÊÿ}HÙh*$U Žu­Ü‡ËÍø–²âêÿ4Ndç¿É8¬Ñä´whWžo+E‹¢Ó7×ÈyjhYãÌû¤ke[ÎØð“2d84 Ä¤@B”­¨+½ÄŠ…7(W+ˆvÖãÑTéÏœsèTúE5Ì)ãý€Ð«¡DûybÎé¼w“– ÎˆÏ0kü+ÿMê {M«%#á.¶ïæ®™/6y\QåöžXÅm :xI¢©z°—Ÿþo)¤öXÉ2Q[sbÑV\†ÍdZ×6þ¼“ Ò™¶±-—¶‡’I&ò“ù®ñ§ùeüO3Ç%é0©31S»1_9ˆ  1ºÞÜ´KÌiÝ–u6£X»z„nÅ#AxÇD¢ù±MLäž­-Ú,-™&W¨Õ€{¶¶Ø%$è3¼7&MKGqäCÎ&Å.i‹:d(SH0RàÑÈŠˆª—9¨ÜÄ–™;07.E ËÆÌvÿUÎx´jC¬›‰µêä´g¸ÃQ¤Ö©@â™ ˜mD)7 U—1G“P-nAêÖMϘôÊ4>>¤O‡ªù‹Ç¼ÆKÂ>;)rÚ39jBûmè|Ÿ©S‚HÏHãüóœ‹<ÃIíß,t‹ V¾™j7ªRí^u*ÛWÅs™ »§0Ìò.ÆuzÒêr8ÍŒÙV©œóNv¡(Ñ&ŸcÑà_q™¸ 1‰èTSìÌu7£e昤F‘¬ˆ"ôö¢Û/ft%îÍkGϨ¹¯/ÎyŽø’bãëÄ»/Rµ­ÏKW 3°vÅ"í )* á0]¬uÉ«™WkÆ®þŠòÏ$’ZU*7÷læ–s]<^Ö›™΂v_:ö(kÚ; CMìö¾T^Zžo§÷ãcKøØ×Këzóç¥é¬_1 ›Ç?‹:ŠÀ!ùÐ{¿µ´EŠ–Ôc©Û+ˆU¯!fÀ^”j- A£Œ!¹ÌD6-ìO19PxOD¢YÜi3y$±åˆÄ‚;ÖJFÞ:Ä¿ÊfܧJdeÔ'¶J-hÿh7k]ʃ”мÁÒŒúazça#Èrq¢²‘ ~ù ·ù³ÙÞ§.)Î,^9Ÿ m/PïQKVÍZ‡ÁX|›èV>Òw/Àù‹‘Xn!£\9ŒÂÃ1|ÅÝEóÑë® µ¦:píÒ“÷­ÞÕºê«ü[âŸÿÒP‹üž{íq{*eiŒÇŒG¾n™=ºaldBMßZÔ?{£検9A”6‘#QGüg'Ë}–cj`C«ýM¸ÓïÞñº K§§0jÿ~æ5m*’M¡HS=ØÅÄv_Ñç/V,ƒÀÀ…’Ød5ØÈP%G“¦pÀÜКaçX‹î_µÀ£„÷¡Ã)óËv•}q6Ïû=ŒœË‘v"ÏÏ^~IÌŒºBœrÀª¯oÂ}Ë~3ùŠaµ¬sÏ®M8LW[k°oÈÄmCž óÉKzÇo”À¿ªmö8N67ÀÝèÜû)ªòňzO’L€Ôó¬ÛrŽÝ”bU®pÇh:ÿ´–s/²n|IÍ ¤ÜØy"ÉÞ«|%š¢H{¦‰!T’EUM$îÎ&øM FÈ=‚þKèæœ7Ð0*t7å“c‘»–ã´LC)õ#ìõw^2cè»ülέÅÛðÿ}‡Ç…S§¶h”±ü|UGösM9‡;{ºìïÁçe¦Rù³’„:Æc3B‰Ç7@—l¦ûxs3xŠþEAjíZ¤Ö©•“d¾oZSS”×aÚ­'†¿¯Cíç‹ìrÒ»wQnX‹ÖÄLp;U‹¯Fø’µtª†·ùãê0j6‰¥Ëi;¦ìŽ¥TvçtÛóçE¢)QZRC~ahï@ÊÌ>Ⱥš! ®ñ=¬¤¡™í«>dùѸÙs(ˆ‡U†âg PnMSY÷ïCº´³'-ò?â+ãô²µ(µøn{-H zñ>êÌ^ƒ´k ¾&·XR¡ï*wúœŸ|[ÙôÉþ¯3ÙÇìcú4¹ÏÿF-Ãw^OÊKÃøkâ<.(K¾úX#WªUðÅkáQfÔ2Ïé$P§%’!—bÚb"~Äô™®(?žÀ¥‹Ù¤1¡Ð+w2gêitu+Ô2´ìJã ü­RÒÿØiJ=ÚuJ ¿úûSB–Ž5 Òôò ÉíY5Ü?ç©ù¾ýØøzÑ©-Q±YÄ'ïãßFÇw²$Þç>#¥]Óœ¤Ò7ÀšPâI<OšÕ“ܤÐè}þ4/¤®X”3'08ø7Òk×ÉlÜUãFhMž ¨z|û½fWÀ–k£¹­-Kx gzÓó¤n¿R‰¢f‰PD¥bX½‘œ­Ù‹MÓ½>‚=U´Óš/žÇ?ÃF2ð  ©ñ™³¤Öÿ0‡ ÃÒëOSÒšòÅêéx={éÒ&qzé¯\N¸Ìo ŽP{¬! ~árÂeVÎßÀ½øµ\N¸Ì²QCÙ#W“rû:Éçð×—rÖO\ªÛ6n ¥ʧSkÒ¨CnvîŘ U969{û˜yØ7’ê–¯¸G$µ§ÕŠm<ür8}¼FsϨ2Ÿ}÷U·jbÌaöÚCOâ1±¥þWùÔCF¾Œþk*³Æõ¥ï2LäbR²݆w¡¢¥3m†8³hIc6w·1…÷NüÍ}$ ¶H¹ÚdR¿f%jÜM"ÞܘpÂ]\ȒɉÁ’dm©Ú…̱%36ç}ŽÈJÔç«õõ_޾Ăjc·rgì“—êMÚÆIŸucÐܼí¿p'ý>õB¥©œxj×2ówÒgþËßž„Ãt±’ã1é?ÎL÷ÃÈ¢ýV¥ïré ·9µô3þPxck(îÉ~l2†WæÝ”QévLÝØ.ÏmÚ”³,š+cÜÏ(™kŒj¡“?¢Ú77 {E¸‚ð¦D¢ù!ЦÒ^} r,¯ù2Ïÿ$­"»q°rv™VJœÔÒ ¨•˜¾¼µB#ÓݨvSg×§H ÒYXu-Õí½0 'µV-=Gøþ¤O—köûc[+é¯6ª /`Ùš]Ú<–“ˆ ¤y‰®üƒ1¶~͹f*ÕÞô91«Žä¬7ɦG;ñÏùî™]Gsú¶/ù¤»¬Máʺ¯hånŽB"Ç©bwžLàÝTÊôC‚L«Â0íŠT7Ò5O’Ì©#[$jêiâñŠ%ß·§Fº#>×k¡;â9:é½5×hÚæRløç“í9Iæ³³Æ?*ÝìwuµªÜ´µenÓ¦\ã3¡è°éÀ^m&©Ú$n]Þ̸&ö¼ñÒ(ÙÉlêãÿTO'™‚ðþèÍäS¬ØeÁg[®“ÁÝc˜Õuç í`=!ßÔ÷8!1' N7ÝÙ_éo3Ëb©q_Z’mR ´±”Õ®$À²ª‘nOv²ºC7¡ç{—eœ’üÎB×ïøåçÛxô€ã73qëÙÛÅËrÍÿP¨ü[rìßpQ$™‚ ‚žén[4æ§µs^¬Ý·Þ?ò( ]‹6™HíizÉ‹S-ÇSçz_¬$Æœ”“1»¥ë~dÐTsïB’s>žÀc3þ>srFô3Ü#®ˆ½‘7ƒ?)4³ÆAAxâù1šÚþ[<ŸÛµÇó‘™" ˜{M £ïI‰u>‡c†-ÔÙå-´©´WßÐoxùà`͹cÑTÞhLÿI_âä-aÞG`f û-l³ÆAAÐÉU_­’+KzÐõ*Ì]Ú{é ŽŠœ g*°§Î\S\õÊk ÝO™­Füï«1”¼§`äƒïs’LA„B)1‰…DN…É!d¼ò€ B'{£ÈQHš±CT&Љ'©¤6‰sß·ÃÿÇÌ>°ˆÖ%ßx²PÈØÄÚ`gÅE—‹¸¦¸é;œç©oÒwá.üîÂoá)>53tÛm¾–0½ÇlNÙ>¢‰×ìÆ<7AH„bF›BèêQtl܆nÛàßdKÏ&åLWTGídb§Î èßî&°'J­Û„¿qIú eø ¡|Ñ£>%-Ú³/)·H<É‚‘CÞÏIö1#çqêÑ]‚Ç·Ö½6l9WâCY1L·O»ñ;¸—Îê‘-uÛû~NÏÆ-³;õ³o`Õ€?2¹4Ý—Õ‹×Éžž°™úVoó‹„ÂEwë\Ï?Søt­‹Ž,§ƒKî•D‘ö¢eÛ ó8Ô·¢fwÊŸ+Ï?G­Ûôú ./2]!öÌú®ŠÌµ)ù¤·üµ/R9âÿ°êmOœìù¢ë‚ 3Ê6nÏ¢ûš@:: <3Ú'Qõò|ªDZgØ(.¶;Ä–^D¯iC³a»9¶©Ö†Î4í?š&sþJ¦Zâƒ:sDÙ‹óX~RbYƒók@b×·.`ð¼%OVò3òKÓ–à3s(ëðÙ˜œÐgú6®YÀàù+hv{µ;þ@׋ßSY „\²gãÛoO“¹–^®Šì®ûº¬‹Ò8J}ªD‚Pø9Ô·‚qœX‰AtN·œIÅP*É ù*æÆY™x8@‰_~Ã|ÿAÙcGƒíüVs.2® œo€5µ¦9ê9RAÞ)E ¦o^LGg]ˆ¡e Œ3“H×ʶœ±% ¾2d84 Ä™@B”€ie¾\òT2´‰œZ{ƒšÃPâ~ôÉí=±Š»Bô«.‘i—YÒ¯^U's!û-úñÑ›¬®#1ÀØ@M†*{T¨: ­Lž»€zÂaºÚZSñëd,‚g~F™I,©Ò»ÿÍ¿L“Ïëˆ$S(ö²ÿÄ“9>v ›½—–pƒÅÞ2dÌ?¤¼âàk¡EcÂPQˆ³ c<±.ûßÔüÔà&•ÜH4LÂ6Ýö­Û-[¶MD÷<űcd•rd§_Vnþ3­9m†Ì&«¤#ŠN¿V{£Þþg}×n†±Ï~~Ÿê;„|ùÏóâMKjÈ ,ÀôÛƒ¬ëňý8” ˜úѾêC‚Æ FMÌ¡ Vé€_®„2™óiÙÃ;qò`äJû;ºœŒH½ö/QŽÕq}º×2{²Ojô^ÆÕ´ÈßÀ¤ÌHþœq‚Ž¿táÜ´_U’¢Å‚ðŽèÍ´0¶±¤×èæ¸XºðÉè>XÙBØ+ÆD^+_ÅŠBœã‰u‘00~¶aCåû¬é°‰²wËat·ô[·íîÖôí̃üÖm2Ê• ".‚Ÿ-~ajéHáí…üÖÝ×j/>Öæ]„Y nß4|õN…€§gK}‡/Úy^ì¥bX½‘œup"vÓ4Fø=ï’¢$64_<ò[F2°þ·µ"s·ÀúéL/å;“ÛҮ̋ϳœY磖p9á2ËFeÏ:OÔ‚‘ÃLÒ´nôèÞ‹Ï¿}Hÿ#ð12ÂY=y©î˜1ÙûçGÚetù„±çÌpsrÁ"bm¾ç²£)cº Y±\O°¡¶£®‡EîèC‰ÄÕ<|ÁÊ@‘פ9ßÌ÷m3ÄÝSƒ§oá»Õ^â|1FIÀágݬó3ãŠL£À<Úžx§ÛoÔ¦»[3Ê–m @Ó& ˆŒÜÇõAogõM~¸üÿóç9ݱ6§-U®;»ášÃÍýÇ™^¹!§=qzù.  U§q‚ñ±69½™×.•ÃÚ.[LJg¹}Ó0§7óÐ.®Yxx¾1ÒåʵÂ×·íÚ­äêÕ`BC7é9ªç}¨çù»P¨a³F¬ŠSæziáÊ'eŽ-™±ù%_‚Ìê2ë÷º/}‹œYçÏ´½Ëš_²úà—ÏhäEŸù;é3ÿ¥ÍCÂaºXÉñ˜ôg¦ûadRž[®2"{s…àFåìœAèä¨öÍM Ã^Ñ´ ϯ ”îžÜ=5ìÛfH³¶YS) q¾‹Û.¯”ëyœq<Ö™Ä|æÛŒ¼µÈ[ûhÚdûŒxõ¯CæÁg³FàÑj?ËMCj~…£b)«À(+ËâûY_0;ËJZÛÅamǵKåð¬pµ`ã, ®Y¸zdqh—‚†þ©úç…®^ æêÕ`Úµ[ÉÖ­ýôÎ }¨çù»àî©ÑwÅÇkO²Í®£9ýE$z‘]7ÂŽ²Vq„GeB 9™QWxdYÛWÜÙ+ŒßÈóRâ|—1Æ=¢t²{´uýúöiçYcÂçÍåï=ø*Ö¯S 1 ÇðAwÍíµË [/f^ c/f^BBþÒwùò¡Ÿç‚ …‘.Ñ4ñ¦mÝÍÝKïŸ*qaîjëý‚w·ÍŸVT¾ý…8ßeŒqFqX§̘ÅÈ[û ¤¼Ly”ÌÎj2NJG“KjíZ¤Ö©õÚI&èz6 ;WÂÛ³õ´k×vê;„|ùÐÏsA„ÂÈ@1-{ ›=°±^–€ Ðõ¦åqÄÔ÷›P¤dJ31S®µÁ­ÏU%Ù!Uö˜Ñóâ¹~Jfµ1ìÙšGzŽOA„·g:å©Ûwß¿ú…DSÞ]@B“Åb*cÄÊÅx¦hȰtåpý¦»+ÐdÞdÄò`<pâçA¸ôž*î$;ÄÐzW]‚ü¡Öjø}E†%ÏÑÔfÀû @A„wNl/î¤WqM0ao‡Ï5ä3æV7¡úþc”Éä,>œáƒZqí ͽ9•Óm‚üÑzW]N-Áœí݈±½Ä´‘ë1O~jG­£m3q«_ß2^xµE‰óIï7XA„ו„¿DŽB"§Âä^½äD¡“½³—€nƱšPL¼UÁv¡0V 4+E˜¥D‚Z&#ËÄŒ´BPÅDåt›¿«†ÑioKf øšîÕH7{¦äq꬛¿ìoÂ.æN›GØŽ\ŒIº~bá=Ѧºz·¡[Ç6ø7ÀÒ³I<®X©ŽÚÉÄNпÝ;M`OÔãÎvL¢G«n ìÛƒŽŸtfjðž]žª£ÙÏIIúe×Ñ|t—àñ­u¯ [ΕøPV ÓíÓnü³zdKÝö¾ŸÓ³q ÆìŽå¹î™ì‚î—¦ûå£h|ö¬ó„ÍÔ·zó_› 6ºÉ@ ¶okŽ‹¥‡Ñ}°h»…°´úT}Å„ ¡3ŒÇ<#‹ ên‘Ë êÜž»…`ƒ{®4:㸗ü~w<€ÈÜ;™Õ"ê§Z9O•;ùëdy]5A(>”!lÜžE÷5tt6@yfµ;O¢êåùT3ŽcϰQ\lwˆ-½ˆ^Ó†fÃvslS+¬•Ç™8d/µÿÃdݘOƒãh¶ŠzÏ UÏ©£™Äõ­ –à3s(ëðÙ˜œÐgú6®YÀàù+hv{µ;þ@׋ßSùõç. B±¦ë×Ê.Øî•«`ûu]Áv¡h“%c¢-Å‚á_0rPWFû/à ç‘÷\sÆh\®t™š?º£ÌzÉV‰ÉÚUViOú›¬],BÑ¡¨ÁôÍ‹éèœ]…ϲÆ™I¤ke[ÎØPß2PâL !J@îBõ²qìÛþ1q‘ü¸$ïš8½ÃáAr{O¬â®ý²Šei—™ßƃÒM¿{²PÚ%æ4õ r焈ՄbªÜ@Þ)™cµ1 A#· ¼âGD'ßÅVω¦y´=AþÇP9Ý&Î"•<ãá%P©_PþE›ŽÑÚQ¸ì(σéÍP‰¿\Aø`h“ϱhð¯¸LœH  J":Õ;sÝ­™¹&©Q$«ÃÒ|¶a6ßÖ¡t‰røÏ6cÊêÏðxG+¾jU©Üܳ™[ÎuñxYo¦IyF¬]C7“T”jÝ2†ä2Ù´v~âî¡PLé.×Ol‡|lŠÉ#ê]ŠÅE©B–™D¹‹(©p⑞oÇ|&§´Q˜k~åñmn†…qÝÚL~ˆÛ¯ÖD­F²½È2áC¡z°‹qM{q¢ã_¬X9€ %±Éºo̪ähÒ˜Y×YÒéK¦üKDâŽLIeâ§‹¸þºë#H 06P“¡ÊªÎB+““ë£3á0]m­©øu2– ÁóU;$µùß fϽHš:†=³)7¶eÞSµAЇ·*Ø.Z¢ 1ö÷¥8eÊHtôfK‹JDË€\åÀsùBÞw™#€;vwp5uË{£& ÓùpÙêÁƒ3H*ùF«¦ ‚ðš.\¸ðZûoݺ•®]»`ZRC~ahï@ÊÌ>Ⱥš! ®ñ=¬¤¡™í«>dùѸÙs(ˆ‡U†âg (ïs>ÒšFþ±·0ĺec™Ã¤þ IDATl~¸Àƒ,(û:ŸkF®T±¿Ã¡ËÉth`òÚ¿D9VÇõé^K«ü¹ïɸÎW’bÛb"~Äô™®(?žÀ¥EŽP¼e_µÍ©óÝ2ڷå#ljæ·-õ(\%¾…7"K'Á½³å11»¼‘¾Ýrø—*?Ã÷À:•¼€Ü9¿†dNc·è"2.â\wköqÿÄFìDϦ ¼+ÆÆÆØ¹•Ò_)‡Vo$gkvÇbÓ4F¯`ÏEí4€Ä†æ‹çñϰ‘ ê? ³¿é;$AA H4‹!ÃißæU óü=sþK]‚*ð†‰¦»§wϬIý–öm3¤YÛ¬wÒvAúaÚL¾ž2^ßaä­í'dÔÜŠáôÈUg¸QÊŽck¿ ìÒwt<ðvdð5Ýc#dèÍäqŸãYáª~ƒ{k—ÊÑ8 ]ßa¼Ú/°uk?}Gñr5)ç9Ë_/N}ýLEåsóµ(Cظ=‹îkéèl€òÌjwžDÕËó©fÇža£¸Øî[z9½¦ Í†íæØ¦VX§ŸåÛ¾ðÙz‚ñåå$M³ÏÖRiG?\ž½â¥ýÇÌÞ¿ã¹E·oâþϨðG2˜”gð¢_°‰‡É¤!øÙHðûi #Jâ4¾2Sü0xÞâúÖÜAÅíU½è¶ÉŸ?7ÍÂËTWYÔz*“ò ž7Ÿ›Ë‡`ÿiÂ6'¾E+lòYëý½“šáâ)–nÞŽ£YL©[µ$ýä?¨Q°°]{BÜÝõR.!îî,kÝš[˜fJxTÙ‡Û¿þLJƒúúM„Â@Qƒé›ÓÑY—Z–À83‰t   aË[ê; C†CƒJœ $D  E«Í˜ŽCë¤ŸÜÆeï¡I')-„GJ4H°¬3¿§Š) µ§qgvŸŒG ¨ïä˜GG>RH‘Ëó¾£'•!K;Ï¢Ytú®¯.É0*K¯tí¦…s0¡_´û”öqô¡6϶r¤]f~J7ýŽËi_»Äœ¦Tî¼€´—Vy“½Kg0iä@zµ¨KÝNK¹–¡kwI¿zxUÌ…¸óLýØ…š=f·§&fïl¾ìç‹q3v$>ý;‹çß™]hѬýú aX{_lJáD^¿_A Ÿ=š¢H»ð.„¸»âîÎÓµD¬XJIã’úI„BH›|ŽEƒÅeâvj(€Ä$¢SM±3×%|2sLR£HV–U˜ð만ٕ~îNXjo‘$1B–W¯¡¢ßmýšïæö§ýŒ4´¾´3™f†RJ4ì€ÑÔ³$µjÈ£½ç¨ØîSŒ,ýØÝJwüÓ ˜ek‚£[CâN–ÅÛÐÓñéë¦KïJX¢%5ì&^½[RÂPJãÎRþïïZwvxq¯IyF¬]Ct½(ÕZ@‚FCr™‰lZØŸ2rž)ÿôØH-ÊÈ#®\Á_§£—²#%&ðô!xZ–gèo;¨öã7Þ½ŸÄNëÙ=¶VRöŸŒåÇ~„n}æ¸ò¿,§~Ð1Æ~lFæ•_±Xe‚½˜ñ!¼@¾z4SŸ*2+-¦é¦dÊ ù¿›ÆˆTUо£¡R=ØÅ¸¦½8Ññ/V,ƒÀÀ…’ØdµnŸähÒ˜È(Ñpëlaå¯ ™ÖÙ™gÊšäÕxw%M˜°v Ûöîà·!ævËÉìÞ9‰MmÚ™âBì ö_­Í'nùkäDEÛœŽÌc˜&šà/»Ó¢”) ‰1nײiÉ~b^1MbQ›ÿ ŠaöÜ‹¤©cØ3+rc{é’Lx¦üSc;3¯²¬ÇDnuXÃñ?4M׫šÓ°%Uz×ã¿ù—iòyì$óÌê2ÿ l‚¾åëAŸóÅ”Ü7w²p¯t,葸u^Ì™f˜’%-‰¦:UßQ‚P¨hI YÁ€€˜~{u½¢Q£‡’S?ÚW}HðÑÔ¨‰9ÄÃ*ð3ÍÝ‚&á_æMº@£IžŸ ú/_·èÏ_wT€N%1•¨É¹óŽ%UÚ˜²ïÏ@b›4Ä1?É”qy†LöcÏ„_U>n(“û{~dÚÜU„¾FRÎê@,± dÿ}õ+•bÛb".gúÌ)ìþx]Jç#é͸˹hwºöª‹«•!Iÿ""ã©í™‘ü9ãé¹iOÇû‰»èÓîO<†ÏâÇå+Xþ£? q^Ü:^@tvs¦¦dJ ù$•1ÑúŽB„Â$åÃêälÍîXlšÆèõ침¢ØÐ|ñ<þ6’MH¯Èœ%-°–iYôõbB’y˜lI­oö°¨…Ý {U$’D;ŒÓ“ˆ½«¦ío‹u·ç³)*}‚dÆ4ÜhóÔìp ñGæ2cå~.'\fÙ¨Ñ\ï7‰õm"£T·5ü%™Î´®]007B­ÌÀ¢B5ŒŽ¯'ÄÕœ0ÿaø™™ñK3Y¶&8¦õË÷1­Æôàjϼ(źþ—Ì©ÿ%sòª$&QP®Ûw¬ëö솯Ÿ‰µ<£vF0êÙÝÓÅJž«Ž¦6å,‹æÊ÷sJæû6µ)ÞƒV²wÐS/Íž—ó°ê–«ŒÈ~\!øé8i6aÍÈý;×iMpì‹~g¹ëhËo˜B±&ÍbÎ4ÔS%U5‘´AB¼¤A\´18#á>v\ÓÆÒG›A,¥8(I£»6÷:ý+ËŠUÿž`ö6{  U§qN*®…]eÆ¿·9¢EaiK÷úîn„$B±“=Þ2G®‰>@p$›íÄ_ß56ó”]Gsº¾ã 1F³˜3K3£Œ44ÈÐ" $ªì•&äÜjð!s­ 7RKÄ¿¼É‚§²äc_SBU¡Ú³K`d%øÀ˜šr~H~¯.gûþ0ÎòÑ‚ "×DŸLRU…5É„¼‰ÍbÎ*ÅŠÛQl‘•á€6šš‡Ø #5¾ÙwÊeÚLŒ1çeÙ ^–5÷Ò.å½ÍІ1tKgj5Yʤb.¾" ‚ B¡'ÍbÎ&Ù†0YíÕ×Ñ ç®Ôž½ Êh°Öwpe8q-å*í j|dÆÐwùYNȬÙ¹:>â¾¹ ‚ z¢_¨˜³I²!Í % WM"Ö%j¬—=•R-‘“N/›øøNhŒ°7²ç¦òVÞÛåö¬îÏÅÁ YQÖì‹$âݬ€*‚ BÊW¢©ÈsþŠëdkîdƒ5Ü‘X¯MÇR ‰‡VƤ`ÀmÌÈЦꥧÓ×ÂДð—î#34¡VEWJ§<â¶ê=&‚ Â+s%’K 5Hã€Ìƒ¥27öK2©£IÌN&µ8ib(+±c•Ì’TkÒßïŒól>æ¾\I¹öü†¬8¿G¨RMVV'.Þâ†Â&ïâË‚ ÚBW¢cã6tëØÿ&Xz6IW|MÌõ½+øvx'|,>ɽ7 ŽÚÉÄNпÝ;M`OÔK ¢k’ ]7–žíºÑ¿gúuíI¿6Ø¥«9¬sM œè³+>§ð›ê^0³>÷ÇER’€~cXyåÉ*@/Û&"q¹.æJ>*IšaŸ©oä¹]‚’:šHê¼ç¸ž¼?ƒ0‡ãQ›ÓËw‘SæÈЂ¦æw˜ðûE®fJ±wtâkÿÒ”ƒ>¡xS†°q{Ý×ÒÑÙå™ Ôî<‰ª—çSMK¤ªC&;ðÏÚ…¹ÓƱgØ(.¶;Ä–^D¯iC³a»9¶©•® {.*n¯êE·Mþü¹i^¦ȸʢÖP™”gð¼ùÜ\>ûO{¶ñ8ñ-Za#§VŒ›£áȦ ž÷Ý“%yù6Aø‰D³˜³N¶F-Q“)ÍD®)¼Cþ0„z‡×°ùóJ8—|j‹¾>bK…ô› z ¨ÁôÍ5ržZ–À8ó>é@áAÓ–@âçS†°åŒ-?9 C†CƒJL $DÙŠºŠgöM;Ï¢Yt ì«K2ŒÊÒkÁÒL´p&tã‹þ~Ø<–£[ÒÖî¹lU„—Ðõ %áŸ3³Ùs·!„¢Í"Ó‚$y’¾Ãx)©DJ=ÛúzxHß¡‚PÈh“ϱhð¯¸Lœ˜kyÈ<©’ˆN5ÅÎ\WšBfî€IjÉyëÎŒ!<Þoǧ¿„K±ô®„£¡–Ôë7ñêÝ€†ö4î,eÛß1¼p¢6ƒø˜82òZXíeÛ¡˜Ó%š Â&l¦¾•ž#ÞÚ¶Aç9±.2ç¹E–©ÉFXŸ«ª¿ ò¡‘]ŽÄÒw‚ "ª»×´':þÅêe^=†ÜÀ…’ØdݸLUr4i ÌóºgäDEÛœŽÌc¥&šà/»Ó¢”) ‰1nײiÉ~b^”i&í¥»WöåõþeÛ¡˜{«‘n×B‹F1âgAÆèPß Æå$›VñÎ8GZ’ìóÖm—-Ûæ­Û°>Wƒ{®¹^+qړѧˆÏzûµ‰FÙ¾uïÚ+Ec䊟ߧú!_>´ó¼øÓ’²‚ 0ýö ëzE1¢F?%¿â0S?ÚW}HðÑÔ¨‰9ÄÃ*ð3Íc_ãò ™ìÇž ¿ª|ÜݘÉý=?2mî*B_#)gEž–زÿþK& ‚𜷺ÒE^“âé[øOº¢gAÆX³‡;'Æ4…¿N“§gKBBþÒw¯ô¡çÅ^Ê!†ÕÉٚݱØ4Ñë#ØsQE; h“N³hÒJ®&Ep9A7;|¥ŸÏFESš/žÇ?ÃF2ð  ©ñ™³¤Ed”궆¿$Ó™Öµ æF¨•XT¨†Ññõ„¸šæ? ? 3ž‡éçXþÅB*ÌñdçwKž¼·ÈŒàrZö¬ó¹yo„Ñ%š‘פ9ßÌ÷m3ÄÝSS(?<‹Bœï*Æš=ÜÙ~"‹EgiÀC›[ð‰¦»[3Ê–m @Ó& ˆŒÜÇõAoÜžÊé6AþÇh½«.ÑÕï`³âfÃð:Ÿ3üü0ú¸õC&yýÞŸøX›œÞÌk—ÊamWèÎ[× ¸¦;õî0Æ­¬Š2Þ…/á,W®¾¾h×n%W¯ºIÏQ=ïC>Ï ZäµBTÎÁ¬«â”¹^Z¸òñ£j Ÿ_í™×ž9¶dÆæ–ù{‰‚rݾc]·g7|û©IyFíŒ`TöÓV´bÜŠÜ»<Ž¥ÝK¶ ‡æ>UÜ=54k›@³¶Y…òŠFœï*Æë"±ÿMÍšObèøw#âäñhyó‘è‘·ö±ÿÀöñVIæc*§Ûü]5Œÿö ¾–ßk|Ì})i\’}1{ߨMk»8<+\À³ÂÕB—d¸•UÑ8@7&¬q@z¡L2®^ fëÖ~lÝÚ¯P&™ðaŸçÍÝS,¹%BÁÊWæ‹V*¬–Ï* qdŒ'ÖEên›ÿlƒu¦sÍ÷cdMj¼3kå+™‚¸mþ˜Á=WñæB)qd"¥æYÒÛ­+"~æ‡æHßpqaL0Ÿõ.o›;Ý8IÏsáx§jH·pâ@õ::›¾xÆìK…Ûæðáç‚ EAîòFV9’p˜.V¹Ë½he ¢òí·(ÄY1FI€Ÿm¨ÙÃJÖnœrIÄDeKŠúí’L€È[û B]’ùxŒ¦íðÊÜýFÅN ±]“hjù Æ2c6ß}óÇÚ.®@â|—Üʼ»D³~´‚-ºñy¯®ÌüȈÚÇÎà•õfm]»¶³`ƒ{G>´ó\¡(Ðõhf—7Ї¶Ë+å<–J$xiSˆÂ‘ëåáUW‘=amOÿ1TN·ðêfÅ“x,Bf÷4&ÌÄç7ÐÌ¡9V†¢æÖs´Y\ùï cv…p(^•£c:7`ˆ«îîÆÚåh4¨¥2²ŒP¢áw‚ ‡!çÒ£ŽÙÇĺN($rÜêŽç@¬¸ÅS\øh’‰K+G”I”¾CÉÿñ™œ$ó1ŸvÖ”Úo¬±nÝi!÷gÞõŸôa!—ïa†ôï׃3z²áã4f¯=Åǽ–™·³j¿­ÙÀŒc ­_‰[¢²Ž ‚ðže'šÉ;ÍÞËK¸Ábï?2æRô›P@¬ÉÄ2­±ÆQK ù  “c8ɘAÿ÷9§îždëýÀ·k33†¾ wá·p~ Oq0ÏÎ{-wCÎP{ùiþÎgç¾&e?{¹0ù+¾[4)¯øÝ¦GÒê«åX|µ‹¯‚ΣFt¾;1§{UÚ•2Aa¤ V5o¼2“xô8¹+ßõíË€ø±<4?v…’â®­ ‚ðžéÍ´0¶±¤×èæ¸XºðÉè>XÙB˜¨ûUlx«Ó1È´#Æäí‹¶¿²æX/·ãÇÅsøñâ\J¼ˆ4-óý(ñËo˜ï?ˆ4=Ÿ™šÜžUÃý T…jFyï’òà*_…˜ÐÓMžÏéGÉÜ Ì%û%|ùíUÚÚobkðq^š£»ôëÚ“~m°'JWsXçš88ÑgW|NÝÕ½`f}$ýưòʓϢ—m„‘îššËõ¼²×{•;úP"ñ:ßpò€Pø”Ó¦ Rz©¸§ïPòMê+Å{Ey&ïÂèCƒ1èêÍšµ>ˆÂfÍïx´lƒqè•·~uÊ}¦ü§ÍËàœ¡"_}¾Yá\‰°äãͱ4vÁ³AoŒ"¶û¾Ï­Š+Ç÷Óý‚?v,}vQêgoàž¦Æ +Ÿ°+”2u ¶h,D$:Ê6nÏ¢ûš@6lÞÎæïYÞygÒ€¬X"UÕ2¹7î²gʶ½lÛsTÜ^Õ‹nëJ3iýz~[»š•«'S%= •IyϛϗMÊ3dÃX27'>»9§VŒ›3”òVå<ï;úùç´ø²m‚ð!—ž„Sܹf»Z±…{Íó§Iì$4ŸÒÆN¥~ŸT–U›@Y—²XnÙ†óðQÜ Þ†ÆøÍ>̵Y‰ü¼'‡Õio–ÆÂ4-òs :–‡iÖ|l¦ûr&3óÆ4m ©jÀðBy}ÚLþû{N˜ñÃÐzXýâ’%%Á®,úò@LŠE ¦o~²È„¡e Œ3ï“®4m $Þyþ8ã—l{VÚyÍŠ S`_¼L³Ï£²ôZ04S -œƒ Ýø¢¿6åèÖ´µËs‰!A^@wé1´£¬UáQº™QWxdYÛ÷uÁÞ‹J©%H6~Hº¬hÝÊQœ:ÆgÉ^ŒHOÿ3½9þ?Û·%«¤#ŠcÇ߬aM…âý£ j2ˆP‘ŒÚLŽïÙA›fÌÚ€V¹³ÈHïzLîÑ—~}{3ºUmŽY¼E¹~AÐ/mò9 þ—‰©¡(À†3c·ÁÛñéZÑR,½+áh¨%õúM¼z7 „¡=;KÙöwÌ‹kÑj3ˆ‰##¯íeÛ¡˜Ó]L¼i[7ßçîånÒ]öÍ]Mb½vxä82AïÜ5H•„)è;”×"¿u› o/ÚônÇ·Š™ ¾?˜q§—¢EK†·òÈÈ7kX•ÈÚ°Dþ>x„J wá·ì4ûR1|ù‹& =Ef‡­I<±)ºÕ)a(MÊ x_3»3î3c,‰qWéóíŠì F[XŸ,®dBñ¢z°‹qM{q¢ã_¬X†¼—yCFNT´}ÀéÈ<¾|k¢ þ²;-J™¢ãÖq-›–ì'æE™fÒ^º{ua_Òkn„bÎ@1-û´µ6vÀËpº~‚ô<Ž˜úÞb ˜pKtã¡ìÿK ÖÊŠ0² ÷ŠLw7Ì þ' ùþÁJFÿ÷%'÷æh$תõf gOzòF1ô]Iï¾Õiüª«™¡>î ÞK•6•¸x 饯î}ÝÈžX”—Áï)Ax·´¤†üÂÐÞ”™}u5C\ãzXICóz ãò ™ì‡ÿ„_è»õ |M%@&÷÷,dÅå,´ƒ¯‘´·$2õ=Ö~:‚ý÷»ÒÓYÔ „ü2HòT×Í÷¯>@!‘Ôwðî8ÇÆ²=ð8µ¾NÆ$Í‚·nÑþèQ~ó÷箾Ã{¡Ô:up˜ù–[¶‘ؾ-õKúrÄvSÖ~F­€Ótv¼Î`m= $/H˜3cè»ü,§³Ÿž^¾ (ÁÂAùH(_È·VKð[ÕŸ9ã0u‰O¹³Ü»!¡t™úy’I«‰{8šýôèÄå@)6|ÛšV0_À`ç.äÓgÀg0yǶUªÄgç·oXô!åÃêälÍîXlšÆèõ침¢´I§Y4i%W“"¸œ ›¾ÇÒÏg£‚êÅÛ*š>û&2Ju[Ã_’éLëÚs#ÔÊ ,*TÃèøzB\Í ó†Ÿ ÏÃôs,ÿb!æx²ó»%OÚ—™\NËžu>7ïm‚ð!’¤j3uÕ"bö1¥C_æþ‹m¯ømË74±{þ[›B"n)Ê‚´o›!ÍÚþéî?L›É×SÆë;ŒWÚ·ÍýF W©·~=»ªWçó·(ïC­DWª‡…Ñâôifu릷žÍ¦MàYáêK÷1¾†ó#É*U’Œrå0 ÇðA³¾êËŒ¬?±0Od¢ïš9|‚„w3XÿÚ¥r4xñøÖˆGøcMwºô^ÿâdó1Þ‰IÛŽH–6»[s^Ó¦…2Ù\Us©ƒ ÿjdŠåò|Çù®?_¦ ?79S§NeÊ”×ïQÇÛÛ[o¿‡üÒç¿• %ñyY>9ç´¼t ãµÓ¬ŠØLæö¬/®A­¸Ð!ml(§¶gw¡Cuìºs*ö«œs»tYÌ‘cŸ<ð}>VÞTˆûœEÅ‹óq½§ŠòÜ,9… «¦ðÙÊPÔàB÷¯ç0ª‰-’!™+ûÖ±nÛnÖ¬Lâ›{èjW„óL]ǘ̅_¾dæúk¨­ÕÈz¤iè¿xa_-à\ÄI6nºÁ+Û‚XÑɉ¬¹2¿™À‚¥§i8l(}>òçÚY_· Û'O£œ>šfn™yä63Md%•é¢_B9¡|FE÷Å=Øl»‘wjŽ5q„‘ËW£‰rt¥¦0ª©¥Ö²óFÏTUu#Ž4‰„rX‰“ëÅ;ú&&cá~‹¾Ù¯c½Š”lšâí=sçºæÛ®Ó5)ðœì$ss‡hÝBÙìtçîkк…¢S*Yؾ=£öí£ÕåËÜrpÀ+.ÇÔT¾ôRž¹MïÔË¿¦»Ö-”;n¡%z?‚P®¥gÝï™ \µ‰>•”¤ý7™V¯~ƳA?ÐTŠ&\ß”ÑSÝ8¼z~ÑÏË7¸UÏõC°¡¿m˜…¯¥ÚKt›ŒÞ¢£æþ@è¢Ñ¸öDðº#Äwì‚£J¯.LúÖÈ¡ ó5wö½$—Â÷ ÂÓ¨Hƒr71ˆ¤ó ¢€¾Š¾ NÄPã0¬¹ë°„‡^cú-KƵ¶ÏªßShèר™/ÿ½Bß³føU¶ÁAa|HÓ£—N¼în’y7©´pÊJ6ãu6%žHÁÉ© ¯ VŸD’e{tº& ¤²‹vÏI2!+1ÜÜ!k{v‚xÓÉ ÿÞ½©}ën‰‰\ôô䢗W¹_T*«æÌØØ<ç¥ÊÎ s]FÀª:í;‰7ŠwÞýÒO0+Œ¾›†e%™šš ™7™tK =„ý ûf]ömü„¿b:ÓÃ¥<>ñ¡üÉžr6­mi{º-›<62Ôùõ»[\ºÆä05cÛxñ\N«„“_ur 92œ7-ñ(‡Ýu==‚óm³pºUêÙº †*¤§Wyðwµ2S©älÕª¥ŒNžLròIF-£ò”ßinU†çéîïÈ`÷Ü( ìüa‡Ljp(¾C;ã¤RÐîUýy‡n¯º¡0y1-ñÑ©Xº8¢)lŸÈS…§ŒÉûExzèkxóï7ù=z ɆdÀÀ¹ Wù8L͸6•hkaê©h$11ŽϤR½†žâÁ)ÂC¢¿½“Ií‡p¬ÏzVެAQÛÔŠtžÆ‹η9nbiYcÛ?HGOK¬$sªöY͆{¹SÐð„¤= ô}À¤bî„'œH4\š¸ÒöV[ÖÇýúTV†¤“’Ïç»ÎÑaóY:l¾Â­ ú$>Ü|–›ƒèûW ™Õ½™â­¢Vh ‚Páɤž_Âð®ó°üb?k†Dònó78\†ç™×côԺ잼” iÙÍuDìþÿ9+¸0ê2I²ŽTYGª>ŒŽ›Øa(Û·)O8Ñt. ëÉ[SG0¤Ê`z;öáÛ^ 8Ò¶}‚ e(åcZ¿Ç‰±ÝàÏ„µaì>«§§ä¤ã|¶œKIa%±pü;춫ˈ™ch`,ø¼üÌð°ŠõÒ üû¿†ÒFƒ!M‹mý¦hެå|‚;¡® ‹'&ã$‹ÆÎ§þ·>옽àÞµÕ€.Œ ô¬Qç³æ˜Þ'O#‘h *qS¹Ò!ãeVE¯à]÷ñ;$AžvÖ/²".-Ϧù˳jʸšÞ·-[aç™ YQkÀlÖ ¸Çļ/-ê1~GÙOdžKº0iIÞC²¯Ó³}‚ð´Mçºö™Œ Éá俹šqåÁ'‚ ‚ <€H4Bægj‘ŽÃ~{†8 eaÔ®Ô2ÿ ›ZA„GJ$šæ d*ýhCŠ«žžç{›”LØî1oPgbA¡Â(R¢i%©sþ OžªmÕ„MJ@yS~±ŠOç}FÀ 9Ø=Ÿöà“AA P¤D35{z‡\+ O–ªm՜ýM51u]èèò ó#xÜa ‚ ‚P‰¦s€kuøì°c_Ÿ;´Üåˆ×ÑÞ„e„q0éÀãMA„ J$š×ê¨6Ëž°I 4yלSâèüSeZe~äˆ^ízðñ†ëØgLæÂšOÜso~7úæîÃÙ™5æ˜W[à®ôâõñd÷Z×ßÚά¨,yÐõY~ñÞÊB…í„§‘˜GS ã¬Dؤª¶ÍêƒÛè ‚ñ8ü]“Þ=™qs:ó¼PIªÇ¨ O´ó¬û=“«6ѧ’’´ÿ&ÓêÕÏx6èšJÑ„ë›2zª‡WÏÏwªÊ£=ïôÄJ ú°Ú¶ú˜#¯ü 6÷©çúŠ! ØÐ‰ß6ÌÂ×Rí%ºMFoQQs tÑh\û "xÝâ;vÁQ¥W&}käІyŒš;›®v÷J,lŸ ŒŽ›ØQš¯À‚ðô)Ñ` ðËŠœoæ[Uxûñ©Sþn¾ŠgEˆ@ŸQ•wšóÖœ¹ô”Ê·÷xÙ£{©?mÇ~^‚Q£1]€ÒšqÏZ缬WÕ‘*WI”ÁK2Ç™¬ I–1SdbªKÕƒx{wÈ©Ílß~>áá\¹ò{ JzxjÔè˜S›Ù¥Ëb®^ÝEppùë–àåùBNmf«_q+â×®ï*~A’–ª{ÕI•̲jb €y%¾dbêh”Ï}Šo›Úøý{5k_U„{¨"Äå,N9À˜Öïq¢Å@l7ø3am»Ïêéi9é8Ÿ-çRRA Y£ÃwÛÕeÄÌ14°4’x,ÿ€IPÈÄ_O¡í‚´²6u3<¬b½4ÿþ¯¡´Ñ`HÓb[¿)š#k9_ņàNc¨kèâ‰É8É¢±ó©ÿ­;f/¸wm5  #(ýî¨ó9¦÷ ÂÓ¨H‰æý+yûñö1¸UE‡åw=ìŠgEˆ@e~ Ï+kðJk@wû6|û:źº5ãöËðØ¹ §ÿNý\«"”fäòÕh¢]©©.45&±Ù¬*‹È …!çÄHxx íÛÏgïÞq%(áá»zuW¯î¢K—Ålß>òq‡S [¸q€V-¾âȱOʦPY"Ro @C §¡X0ͯMÐèÌÉÃ[¹îýlÖ¾¢ôÈ bÜC!FÈŠ³Ü°~‘qyW'›¿<û§¦Œû¡é}Û²)°kñ.ß·(âu$+j ˜Íš÷÷¥E=ÆïcüÝ— —taÒ’¼‡dÇÒ³}‚ð´)R¢™{E ÜIgyüFnJEˆ³"Ähy+‚”UîÝë›*–EÎÂùÖG´hÜ’”Õ±¼y³¥ ½Æô[–Œkm*'pNa‡ÚxƒáF=I wv(l©iH ]ôò(oµ˜¦”ÇZÌ|d‰.¬âW­;×d s)VªDš(d$Y"ÆhÃ^½%×e µ¤¥±*‘çÓ}rd‰£›Y‰–+I(¾î‹fQ%tæºþ§]™3¶:®¦ª"ÜC!FA„²Tªv’rõí·!Ίcš—¶×ÏðZ¥–|§þ–Ý<¶ÝŒõÕPR+W~@ F.] câe%£ž÷â¹ì¶qc<7¤LêµX`À͘ˆdIB ’láá%?ù¹zµÍМš]±7òô¯<œiC€¤æ¬l¤…*ŠÌ£¨4¤³á¦ÉQ·‘Öé´SgˆPLí„fa%tæsüò:ýiÎWï´¥›mÉ~ñáª1 ‚ ”¥rÔ!G(ïâš6Á<2 =YI\õÚ5˜çÀþ´õ|ÔðQër¶s®òq˜šqm*ÑÖ"W2!Yã,«¹¨ÐŽ‚h…-q²k1H)ˆWº³Ã¢K¬ê2øøþ3JÜÿñ%™§uäöò’´tP%ã«0¢– T2ËÀ 3Òe-í”)x+d€*É@þ^º nêùÕ`¤ƒ:?)+2õÇ‘ÂW£©êÀóíûqgê4^ËàÞôFö}P$Dc/¦9A¨¨ÄÊ@B‘4æœý|: ¦úã±k7)ÕªaÊ‹±f îQñg?ⓆŸâ¥©”ÿd}*+CÒI!ÏwÅßÝhÉÄÎ5xNáLcc"{•Y¦39g 8=ÒwW‘YpÁÌHmÝ%:$|ª{1#̆Jš$ÜÑíØfÐÓDRPâŠâ»ý+“¤”\MÛæ¬Ëpà:™´Ö$â–ïjþ6¨Ñ[µ9[—%i¤ºF§I;8”½qöBÀÅIZÙ”¢J[A(D¢)KJûy Ž'NbuãqMפ1éÌÙ¹f;ãÕï2Æ{/Ø¿˜÷D¥-ßöj`²ÌÔ4 s9Žî†¸GðžD©<§MÍyUǽ.NaW³j%0ÊìÎ4£¡: E¦mÁN&WÿÊj-÷æÌΠ¿yFT\Ï´g›Î’ZšÔû¾$dÐß<ïdU_ÃÝDÒ›sÞ)ID‚ B Í’’ƒY6AMhΆ¶ žHíœyVŽÜRHhŒ‰<£½M=£I²åËʹæ Måå´pª–º»€‚+'I’Òq•@–UË´ÂFO}IÁ_Hx·È»ý+7Œ´W'á#ݤ„=U•)8é,IàþD³b+ð>ÏØÆ²I}r탋<1÷¹ð˜$n£“}Õ?;Å3êšèŽòcñžÇ˜ðÀ"®Ù®åÂÔ†4ý<h˯ E=Ox’‰D³4,Ú2xêýÉe6m˜?¿­L«Ú)%o®¬@d x½_™•ß­b…û F6Î÷·é`÷2ÒcýÌ9§0RÏx.2D+ÜØn戧>W9•^ú{½ãUØ*%âfª˜ôh{CÍÁ—ûó£­L•ó2fÿI.÷mÁ5¥ÇKû{Þ‚ ]†ð“9z¬8¬¹×¤£òb¹ îi‘¸È©¼œ^Ée6ñªJ|uǪ ¬d—ôvDšÅÓCaDBIœL1M7õl4è¨NÄ7O’©æ¯L3|”¸H n¬ˆA[èL~W¯ÒáïÃ|= Ì›µ"sÚ ]:—èÝ>2…Ýç¹öÍ«IfY’S¸°j Ÿ­ Eí .tÿz£šØ"’¹²oë¶ífÍÊ$¾¹±'B#§p|rk^øÚ™_c JxŒ$Ë„©‡Ð»Ú¢2Ká¯É̹:‡›3>ᇠ4ï?‰ÓÚð׌ùçÄ~Bì«rãs4Ö‹j„±eÅé{?ÿ¢ç§¨@ºÚ$sá—/™¹þjk5²Þiú/ž@ØW 8q’›nðʶ VtrÈÿt´o˯ENî"›Yüo#mŠz‚†:3‚Iý +A‰æCcLXÇæõÁ4}s.fßË70ã‰eº‰z†/z‹Ö߿ȗ£fò‡Ã6F»½Cm‹:\;¨#㬄ï8S ?,i´5Ü›ÏCNÆ+òÏŸlÎyIAu£Öô2w–/ñË‹Mr^^©U‹ÈsaXc-ÎÅq¹U?Ž8iîþ¾ó6i»ëãqPÙab±»2  ZU…ÝÊLÆ6l‡tj/ á¤AÅuƒ+ß嚺ñR†½Ìcñ)R¹¦úWfÒYC=)…;uöDË`­HãEu*Ž€åÑú¤zÄ"yGä”äsÄH§C–¸ß­ÇUÿMמhÿØRþ“MáÑK;Ϻß3¸j}*)Iûo2­^ýŒgƒ~ ©M¸¾)£§ºqxõ|“§§þ÷=_Gµ§‘õ邯‘~Š™Cÿ‡Ïæc|ZOMâÞ·¨ÿk2XÔcTÀRã&añÙhê:JÔý~nïzàõé3L«;QsЕm\Ù’÷gÐs}ÅlèÄofák)öÝ&£·¨Ç¨¹?ºh4®ý¼îñ»àX^k"ÖTö19Ó½ ™H4KC{5“ÔÈXâàó¯¼öõÌ‘µ'8ð¿ìzÿAû›¦èó7Ã>É$H•óÌ*¬}%«>Ý—úÏ©’âÇèå£0ãq6§+¸ƒÉƸ¬ZÅ\t’WH¢»\”^Œ™T½„£Û3ÜP™ÉÔHS‘¶‹9{î`nåÅí^b»{vÒ© FéL²!úÞDô’–u‘1bcˆ§™.ŠêÆ’|%1#RU…Ý*­Ó#xN£à¿o¤9ë´V4Ñ5É4UFUf&>áá´‰§ƒ#—«y“©¼÷8Iõˆ¥ãÖfìêñ/’wr¸'Ïü]«û'ÁTþ_”ïD³€ûüþ}çb3îíJǪ9366Ïy©²sÂ\A†°ªNûÎ@â Óç¦bîÄ3ô ÌêM…$𠔜ÒÓ!6 #잛̒ÿ]£% p¥Ý«J¦ýO×.Žoíçïê}˜iŽZmzÍz…ZƒYúif…ÑwÓ°¬$@S“!ó&“n ¤‡°?ac߬˾ŸðWLgz¸< ÓLbÁ;£ùáÜ‹ü¶§7›ÛwcWX¶d\ÖªE…ÓB \ù _#<äaÖƒX¾f4>ÆÂÊ4pgÏ7Ìþå ¿e×Òf×®ã9úÕ(üÿ4àQÉË„ƒür¬-;®þD ËÂcžN%ZH$?†§ŒèSƒ ÊæåóñxoQß!âÙµ ¨é€¤=Il²îéJ4ï²øÔÀM«T†}Ù›†Ÿç¸ÙvÆO|‡gì2H;˜jšê8"q 7v(´´Õ§ayß¾› K,å›<8 Öãyaï„:³¶«7I€ŒÂŽ­S;¦>gSð~Þ=t–Ó}šrÓ,«I;P•ÎséÉXÈItM=€AÒp]U‰C'œ2b°+n®)YñŸÚ–ì³´gß绵ŽÅ,«<£î0xófâìí‰rv¦Vh]÷ïguÏžD¸¹f…äÁ®ÿÒqk3ö<D«“U±±H°ý .xÀ§;ï•§¸\öA–!“÷ù„‰8›w˳oîÜFlÉÞg:JHN>IÀ¨eTžò;Í­tt:AßcÇóì­tƒÕ…jÕ’Ù[&2{Λôú2Ù¶=>žJ€§z£™~‚¤./»ç$ zöCcW—­Q]²ÎÏ=å–]7¶GuƒÄ,Œwd°{î¿› ìüa‡Ljp(¾C;ã¤RÐîUýy‡n¯º>× E=Þùùš~÷9wí%±ïZv}Òûì“rõëÌÛ7R&-ü›–/aýñHÔž.¤ÜÙDHÆh|ì +Ó ×—?á»æu¹°å¾&ð´s,ý1„6Ûþæ“ÆÖè..Ãv…®¢ÚJ(@©V(­êP·ýùo-±©~;~ŠÐãµ™úÛ½£‚&u01XèÉgûžLH\Ïìtåd‡—è®lFŠ|O®LMóôpèM^0y®Z¯Ç÷úu\‰¶·'¸rå<µfÅ£àŽÂƒm’ž¶†hªß×™AÆŠ³è¨oÔ?`r>¹<áIDATYUÏòîE+~éú<§³k,DY»pÕÇ…$$ûøqûô% N™g5i·J¿·œ?‹4“µTËŒáœÊžD9†bwËÊ•´BÖú馗ŒÌ ¿¦t ÷ªÌLoÞÌÞçŸçd½º9ÛgЖ-Ìþ F-qº8nV:š)_“d™Èÿž«N÷pÚ]‚&×`Àñ{eëÔ.ULÆ}÷yfîd2k€[¡ûö ¥¥¿½“)=?$ìõõ¬YÃt·–Ü’2mvò+¼?î:çÎñãßâüí´°¿ï›—>Ž›ÒKL^=+IO̾y¡Ï'Ô ^HKK[ÑÓòkÎDW&øR+º +B— œos<<ƒ~.÷U7£ØþÁ@Þ¼÷7Õ¬íKÌì;÷Íj-ÙÑdhktÛLŸ?Þ¿—dØucg®¿Ó9t—X8h ×^[Ë©=M°þ•îÏþR´2 býÿí`Ì{þ×µ '¬s=••öœðÐÒùr4Á~Ö8]ÆÃ܃óªì¸Û¤]ÝÄuŒ’š[*gâIØJð0:ôf7u;ÇÇc¢©;7Sý+åpO¬"œ©æ¼‘x;»œ$S6Ȥ¤&ó«·ŠeÕõóú ûg|îøPãV=Fü6†ðj™<ÿoM®6ÝD¿ßä»^æôÏÊþ ?yîsUþ}‘¶-óíJJ&õüRÞº‰_ígM‹óŒjþ ƒ÷-ç…§ØvdcJBÖωÛÿcc¾û¦¾Á¥ebÇ9¼zbê(±õòÀRºÂ½[ÕŽ&Ý-ùê·M˜¿4 ÷¢$Sæõ=µ.&/eØ–±Ô±”»ç³$(yÔe’öx``¸Åê~ï²7¢?ƒ+= p]8¿}yŒ>K_ã¤ÿRª=ânÙ…ÐÞäd”7ý‡¦ËTGøÕWü~%$×ç[›7¿Ç3Ɉ;ͪOßåw]*iI)4ýöKZ‰$S(€”*ëŠõ§ÍJRçiJ/k[Utè‘ùà³oüg2qÚ§;Œ ܪÂÊáÏÇríù™˜7©Úö^c—©Qç©ñ/²~ßû\3Sb†B}”›Û¨´µ©‘TƒIX³Ž·e 6ä\µjüý´o?ŸíÛG>òëšâÔŠD—H´n÷fqÔDUÇ.Ú¦Ëi:Wef2aÙÏ&›º_:|˜¹ÃßÌ“´$‰ÊDc•x…Øp¸ÑiŒÆ.V½Bº:ûd[Ú„frÎëªgºP[o…œ•Yøe7}–‹5kZ+šÖê,­Z|U!îs«EjRß.Úóîa? S–ÏM+IÍôéÓ™6mZ±Ï ÁÏÏï±}Eõ8WTžæÑ,61擦,ž¢FSxhLMaTµ­Úæ?ÖAÎÄAŸI£8wÚò&ÃàÌ”—«pÞþçÜöàYƒ*‰U¬m…[R<ðè͇I­×SçÖ-\¹cgÇ/¯Bkm]"éø›;€Ö-MTõ»¯ä9®VXxÞ¦nd223ØããÆ ƒŠ«)î¨!Î<–«X’Í“pNrÆ3ÃgeZŸ®ÇyWsjkÚPÃh·!~û™½Ï8YïÞ´ìMÎaŸ”ÄooÒZžË77 äAZ®ÄS êoY!ÜGsÆãŽC(kgΜ)Öñ[¶l¡ÿþ@®¦sÃ@¦õÆœÃÑ8?÷!?oþœ—\DðèEÛÙÑöì5:ǵ†¸ª mš–;ª;,mzƒËnáT‹IÂM熳ÑçtçÇG‰­‹GŠöF{\Ó]qMw¥ò¿/’ìv½çµœr•U±‰r%þ™ã…\=¿ºáátú÷_¼–® ¡Û7æ\•*&-¬IûN½#ùŽWëõŒÚ»—msÌçÞì–-._æí}ûðïÝ;'y3Ï0Ç!ÁE†½¬G«ˆcc󵀯G±ªÝ"o`TÅ£2.Gålƒu¦=iÖJÚ°²m†«ÞW£5f²$¸Ž¿›VçbMkôè‰#k­y9Ü“Žê±³ç?HÞìrËÓßò¶«+s‡¿IÍðp\ââ¸â]•+Þ.ªˆ²ïs,á§9­Ä}.‚PBYÒƒÙrÈŽ![_¡²· ¯cÛc3Áémxö“Á>M‚ÏoçK{å¼¾yý?V-éÉÐ[Ä¡2¤S*YÖ©Ãwí¢ÙÅ‹ÜvrÂ36‡”–uêH´s2^xÑð\Cì#íI1¤pÕý*§|OqÈûúê¿Qëz-P[à`¦Æév-z¯ÆñfWpõ¼ê…‡óöä¼öÎHaÜîÝÌå“ÉfQ›´³Õ¹y“Xkë{I¦ fZ3þñ¨E !hÓ.qÓÖšx«x¢*EqÛé6æ™æØ§Úc—â‚o¸I–JFïìÏyß[˜['Ò£ÓÏ÷úh2û×rüŒIœ¬wo6×û›ºs³ºít¯“{sbZE8ç4}g*•\¬Y“‹Åú4+†<÷¹Ÿ¸ÏAJ#+ÑÌŒæJ‚#­îN0«v¯SâJb2¡ða¸O—ý»¿(p»øT¶n9;3«|oÜÀ5!J•11fŒ[ 1n1x$xÐü`sª„UAΔù×ï,‰æ±üÕà?’lO1æý¤š'b•i…M¦ V™VXê-±Ògý¿Ú FcÔ 6¨s~nuî‰`—k½JƒÚ\<ÁÕÜrm3`PH®r†•=âxùïìo”AÝKî|;`91.·ÉPÈ0Ó“a–‰Ö,­2ƒÃ®7˜Û*«Ž[‘•iHR:ÎIN8%;qÛìÒï R;ànt§JLl"lP•yX›P"=õ¼µéµ| m¦JUì¦î§½¥¸ÏAÊŽÒÊ_ Z ö~£f¨EÖϤÁß_©É7Üm:üó÷Qí{x#™O²bØã”˜xÎäö[7ÎòÿÌGÍ“äÎÌéîNäÝŸ8xÑ"kFI$šT UƒÝð8ÒŠA{ûó}ÛPN"@2¤Œ'I•ÊDP&ƒ:,ãA‘žõÏ,YÿÖ¿—†,Ab®/\fF°ÍˆÅÀ–œmêL5šÌ»7‹;ì«·«t+¶´Ò“ln†RV£’Õ¨j4²96²îF'žI°ä¥sWØÕ¾/޲9޲ $PÁÐÝ+9ÖâY.¹ør?³+Þìï{ çZÀ ¼´ì·;…ÛMoNŸöÇÒü^À‰Uª²x̪]½ŠSl,Ç}|«QƒL¥’ǵbÜéÓþOä}þ8ŸåõóáÉ}íÁ÷÷åT¦NÓAúq>ømNCþåÓºjtç?§Õ†X~67_Ó¹•¤¦ù´–4¾eYÆž£òç»+r¶O*ºuëÖ=ð˜q¿ŸçuV»™…=žOàí9{ú}#ÎÌYIbë¥ø‰fó<Ú½2…UKzæÛþRÇŠ±²ÉÓ$;Ùc±#Ýys¬EÖëcP¬d3sÚ4]óÿÎ ZͦØ×µ´D»áW4ýúc¶òÈõê" BqãÚõëŠd ¥'îór"í<ë~ÏdàªMô©¤$í¿É´zõ3ž ú¦R4áú¦ŒžêÆáÕóóŸkQŸ1‹‹0‡£žë+†0`C'~Û0 _K ´—è6½E=FÍýÐE£qí7ˆàuGˆïØG ”^]˜ô­‘Cæ1jîì<×)lŸ Tt÷'‘Eqw =ž›½^FàkWQú°à«ÖbÄù}|ëtfèˆ-TªÒIRS©JS†ŽÜJ­Úå{e“§QÔ¡„<5‰-yÃbG"%«C—ÎhÿØ‚±YSôæÖ›5E»}k«Ù”äºÆ† H?sý{ã+WB?þ]ÒÏœÀذA±bÊFîû÷ùãbÕœ¤O¥¬ú•æº$2Œ€yuÚwn„“º€iÍ2‚ø®½7ö’=µÛ}¶ÌK™~š€Yaô=,+ÉÐÔdȼÉ4±ÒCØŸ0€±=ûÑK»ž¿bÂÒ]‚ð„Ë `æÖ‘™Gn#zηNg|ëtæÿ™å¶¹\€‹åÛÖb7 Ê샺tÆÐ¥s‘š'K|] ݺ` KñÊ\ö}þá"5£'˜î"!<:ròIF-£ò”ßó,i’yÞü܇.=iî–Àþ©½ýz-íy“Ê÷}ÓÝ!$Þ‘Áîê\Øù5™ÔàP|‡vÆI¥ Ý« >úóÝ^uË®¡¹/H-ñÑ©Xº8æ_É'÷¾Š;å¯ ”ˆÉûEAÊýíLj?„c}Ö³rd Ô:ASƒ~ޤ}mWlkÑíÓ‰Ô<·•‹i¦Žõ¢ómއgäßgŒbûéèi‰•dNÕ>«Ù°`/wŒ\7i}_#0©˜ûá 'MA¡’I=¿„á]çaùÅ~Ö ‰äÝæop ùA§ÉÜkà–I½òñ•[PÅÔxózŒžZ—Ý“—r!-û,»¿ÃÎ .ŒºL’¬#UÖ‘ªcã&öFÊê B…}-âÿî÷ä,å!‚ <9R0¦õ{œh1Û þLXÆî³zzAN:NÀg˹”FPB Ç¿Ãn»ºŒ˜9Ÿ°¥LÿþqzŒÄÆ91qõ»øš¬ 5ÃsÀ*ÖK3ðïÿJ †4-¶õ›¢9²–óUlî4†º€.ž˜Œ“,;Ÿúßú°cö‚{×Vº0‚Ò³FÏšczŸ Tt%u.‚ å‰õ‹¬ˆËÛÞ=yöOM÷CÓû¶ÝUw³—(úu$+j ˜Íš÷÷¥E=ÆïcüÝ— —taÒ’¼‡dÇÒ³}‚P‘•bÔ¹ ‚ ‚ ”­"ÕhZIì~-‚ ‚ y)ÑL•ïÍA&’NAA¡(DMAá‰a)©I“ ˜ ]„R)ÑZç+AAxD²)‡u.‚ ”+–©»•H6¡ì‰Qç‚ Bù$ËYÿrÿ,Ëy÷›:¶°×÷—wKIÍ;ãÞgÂø€¢ÏciL!üd0 ¥™—=å #ôeWb)Ê(*c2×.G¡˰ 唨ÑA.Y)×"ß’”w[öϹ·åun÷ï¿kE@@Ñj6õ±œ^¿€…›.ãÐa46,ÁûÌfHâÆDô¥(¢ÈŒi\Û> ÿ Ô{íÞêZ[³GqaA(‘h ‚ WI`¡î?þA¯ QX3ºœq“¿Wð¿¿’¨Ùs4_ýR{%¤žœÏGówðË/ø¯ëÁ¹ß/ C‡ºíTf¿^eüq–~úGÒm0'˜DwzÏœÁ€7ù¦y%À!û»Ýª¼Ï‘3Ã8ñÙûL[’ÉOQtÕ\`É0c™žŸ¢yñê|üM]¯y?|ƒ~äË/òÜжتÌH¾ŠeÿŒª…Ò6ãçÒ&3š“ë2yØ ^xQƒ[á©)Æç-‰H4A„]gÇ[?Ì``STwwY5Ç×s½9·f(¿›ÁÚ%ãqÌ>ßɦÑã83ô~î쌙ÔcŸð|ßYÔ;ñý³‘?½ç1&<®v÷.×ð‹Ñ¬_=/ë…yFÌ|‡Mkç=øz‰F¶®ðç¹O~b¬ŸÆ›Ki×t:ÇýÊ‹6wQ¹Ðxà$¼}W3uìû|œºãžÁFäšBzä£Î/_0çNi:²<!Ί#ˆ8ËREˆDœe©"ÄШQ£²-0»ÿdAÉaIkœE=¶ òYGúÑ÷‰s/M ›Ztþð:ë"9¶:€‰ãkñá·C©QÐ š*4­_ßùñeK²¯nHOD«R5ب3HH3‚½ÑgÊ(•vxÙ¤s'Év R¯]àNfÁq‰î*ÿ{ÿK‚jaÌ¢QT±U˜ÂÃS’Qç%Z(ü²‚˲¾-nUáíc,—ÏŠgEˆDœe©"Ä"βTb„¬8ËZ‰§Jù“aUºð_‹¼XY º0¶ü’ÕŸ±‹tœ€Ï–s))Œ-+NÓpX/ªÙÕeÄÌ1´°Êª™1 3§$=Æ’±+gà[”Y–Ôî´xó Z` zßl>X}€ „ އÝδùp ýª«AS‡ ë§3kÒ0†-tÄR£F£RaáÑœã^£M3>˜àÅ´·†ð—‡ JYÛ+™ôZs>ý¼.cßÄßÎfdRHH bÑԥؿËæõ&®çÊÏS~"(!ˆEÓVáçßœÃSs½ž=”!?—ì3„G@J•uÅúêj%©sÏÀ­*:ô(í×±¼*J™ßøÏdâ´Oˬ¼‡ãÃ(·¢ü~*B™âw^þË´Z¤&õí¢%J¹Ÿ©¿s+IMppp‰Ï÷óó{àçð0eþÌ¢ü®AȺW¦OŸNÿþýóõ½,ÌüÙßÓ¿üüüJ×G³<~#7¥"ÄYbgYª1‚ˆ³,U„|}}ñ÷÷gúôéE>gäÈ‘,Z´èáUDb’vA(_J•hzû|P9Pâ¬1‚ˆ³,U„AÄY–*BŒÙ¦M›P¤d³¼$™‚ <\b­sA¡Ì%ÙI¦ <=ÄZç‚ B™*,ÙI¦ <]ÄZç‚ B™›6mZ¾DS$™‚ …H4A„ÊlŠ$S„¢Mç‚ B‘L›6ˆˆ‘d ‚Pd¥ZHAxºˆ$S„â(ÑÊ@‚ “Ëä2’‚ % ,Iâ(’Í,Å™ÌX„ŠÉjTÑŸwO³Q¬˜#BYRÈrá«PúûûçLq!I#GŽ|ø‘ ‚ %öþûïãçç—ó| Á××·ÐsDM¦ ¦|ÿý÷%>÷Mç!!!ù¶yzzæ$žB~gΜɷmË–-â3á‘1õìÎ]i ‚PT%é›ý *4Ñ ÁÏÏO4“¹¹y±ŸAx²ŸåÅI6·ýº‰S§NѲeK:ôèü"¡¼êÙ³§É ´¢*0ÑÌN2A„'Gq’ÍÀ­;˜4i111dddˆDSžB5*Õù&M‘d ‚ <¹Š’lnÝÁªU«ðòòÂÂÂggçG åɃÆñF’¤ü‰¦H2Až|J6—.]Ê[o½•o{àÖ&µ‚ ˜’'ÑI¦ ÂÓ£°dó×m›r~ÎN.W/^NHH·nÝB¯×àääDãÆ ÜºC$›‚ð25°°8rÍ·ß~›Å‹—: A¡â˜>}ºÉe%³“˘˜þý÷_âãã19ûeY&33“‹/rôèQz÷î-MAxùúúâïï_¬á#GŽÌy¦ä$šÙD²)‚ðôÈý!·3gÎpàÀŒF#fff@Vri0HLL$11½^ÏË/¿L÷îÝuØ‚ ÓZ×Ìr®xYxàʧ7;-^vn‹ösõ¯ ÿÍü[ˆ…ƒôK»K7X)<®%wèú&æØ[—îGk}è°àɵ¯N§Î½uÖ¨,æ[Sõ¼b7ýÓ`ëŠ ‘Ýqœx;K¸9Ρqâ!9ûMÄxÜyXSÿñèB éé¾ù@ĸ̇/J?f-¨Ã£â@¬cŸÄÔñ ËcÎ?¹ý€háÿ"ÄãáÝÛû­Ê¥j_A’þâÀÕ&§€3þã.ôŸ¢-è<.½ïß±:ô|Ù»¿ËÃæÔÈ̯,⮿õàã—û.lÿ!\ÑERñrañIѹ³ÿƒÂG[|˜v÷>_Eš\I@ÑoÒ§7.Ãk4w—W×~Ë{5µÝÄ÷׊Düh'¯èäN2$Þq¡ñ´Ý.yǧÿ9Ûu;÷zpWŽwŸUGN´­\äÉs/*ÿºr¦#ÛîM?ðþ-&€Çݼçú”:eܽ~î‘Ó¤CmÜ!¯óøTQvÊ¥º{ëÏ4¥jݵŸ:hTAç»óÈ.è>ýC¯Už¿Í'ÇÕ&VŠ¡óøTT¹°¦¿aå?|ë«ÊÞ=¨t›X3Š]Q%ÒG;tb:悌~óʽ6 ì8/µÇÆßŸßÙy±´ =âKKw†8Ï-lê€ù퇢>æq%¦Ti̳ßïp—.SšòôÊW'ô§(ÁxðRYv@³fˆgyå—•·|$ \¯È ]2\Eÿôê”þ¬=4Ÿ¾É'Ç¥G6WVtþSÁ™QÓ[·êYY7õ¿”jåy•E"}´“Wt2'|£ã'’³Û%ùl+Ômd…;òΪzs;cxôÉóÿUþ:'Žóã¦:üiâ˜GO¥R׬»7Î?r\Ýsc3ÇtÑo€Äý‚Ç[†Uwo‘"):ÿ©éÕPŽw'>8l¯x^\öîa¥û„ša^ü‡íp¶•Øg[˜¯àñ¾¤ôhN” “A³ñ^|øÏ—Í9&_NÕå?a÷öT³ÒîµçJvŸúb×Bç‘l4¸1µ„ðV* ùè²ì£Èä (‚þ×…Û7¯D•5^)<=üªþ­,«~Yµþ“úVºfÒ†ª;E¢Ý€‡øxx“ )!ýÉLÁŠß„7 RotÀƒÀ€E*xPptÀƒÀ€E*xPptÀƒ\½“2–É” {åvŽØžB•¹9ŸÆ­‘“C—]’‹Gen6ïÆ eÀã'®8Vtþƒ–Ÿ{tÀCô¹r;»áº4ñøQy ûsƒ•´§ÛbI›Gì¸1bóƒô'³øä˜Š£¸ä6ª¸øü<ÄÀCô #€ê?Äðüù4vŒÀ³·bØ0²ðh|cÐ_£€ÇÏZq”¢~cWðø‰GA!cð '†çúC7•` åÃÉë<ݘêñ㟵âÜΣÿ8ói¼8ö€YC¢ÏÕ;9x\½s@ ÏŸÊÜgïÓ„8²ð¨Ì͸1‡ö?kÅQ.º¸1•‡Äñ°<Èð $µg[c2¥ÑåÕ;ûÅ9› ?÷PQÑåE×CdÍ#¼³­ªko º¬<˜#9(…‡äTü&ïl«úSyP|{Àƒ”†¬÷y ¢–IÌû<ÐÄCB*~“ï}Øsñð 0€àA‘Šð 0€àA‘Šð 0€àA‘Šð 0€àA‘Šð 0€àA‘ŠýçÁƒÿcÍ)¬¨‰º1?k$j'KÔ—æ ð ý¶ôŽHËåµ÷CóÄTTt‰î;¤/4ôËÒ·XÐá-‹'äNÁŠcE]ñÝlAœ!±è¤?ÞÈúçé<$mÏ–€e*N<¨7:àA`Àƒ"§Ôð 0€àA‘ŠÓêxÀð HÅé€õF< àxP¤âtÀƒz£ð<(Rq:àA½Ñx©8ð Þè€<ŠTœxPotÀƒÀ€E*N<¨7:àA`Àƒ"§Ôð 0€àA‘ŠÓêxÀð HÅé€õF< àxP¤âtÀƒz£ð<(Rq:àA½Ñx©8ð Þè€<ŠTœxPotÀƒÀ€E*N<¨7:àÑ\®ßù„gsœÎ¨ûmŽ{¦~ xà àxP¤ât Á£ò‰ñÎ󩿬*:z"CÑëäÙ¨(U÷ övôÌ‹ýûÝÛþb½¹ÖÝc÷Þ*îVwO;Qô½åF„8_ù)à'€àA‘ŠÓ%¾”–Üšà’“ƒšŒê—~Û–Þ.)(Ö‡ó{|ç>/CË%Ï]}}Ì|øÎr€A<ŠTœ.ixÔ”Ÿ9´³k½§¨Õ¨|´Ð1Q;u·#¬Ç^—Ç%u¯eUæD;O-(«].K w^pµò;Ë xð<(RqzKð(sîÂñéµ$89Þ^½D+‹nM©;x€²gg‘(ð¨©(<›Ý}4ýÝ{î·•çÙFÏ<õ÷ÓªâÓ§²:°Ï|¬½à/€<ŠTœÞ<ŠîoH:•øøÅ³¢ç¹‡Ó=ŸxW‹‡ƒðf4GMÙÙ™½§UÕ­ùð÷NVr-eew';ïËÂ|Ùj ¼lõ]< àxP¤âô†x%nù Þö3V3dEÙéÿñÍò¯Šbæ×(Ì*þãÊ8ç½{ŠDGMé±CiŠ^‡wòäà¦ühÆÎy§þþ³êÝ™SY9ç/cÇç7·wuóؽïßÊ'…»ÕÝÒŽÁóï àA`Àƒ"§7Ä£r­}ÉŇo^Þ{ç5µ¦§YñlŠ/~“Ïø8ƨ\k͵Ýɪq7î•×âÁ kÅ}Í*²gäñ„¿ßâÂãË´Xvo+á¾rURöÄ.jÛ/Œ°¶ÞûÙÏÊxGÎKKd…)34§0fjžïíGÇ[ZhÁ¾œþ+þÇYuÀƒÀ€E*NÿÚËVOc?vZøî¿Úå‡ñï‡,.½yóáøqt—¼”ÿŠùfÿâ^ÿ¹#3YÑÿ\A©(˜NξÃɘdÜIÛ³å€àA™ŠÓ›Ä£üßb‡¡Ÿ–¤¼-{÷úå©ò)c*üqâ@@h×±Ç5àÕ««œ2w õ–EÏ;áƒzxy÷¢âä>ÞÈð 0€àA‘ŠÓãQþ¢(tþ§~ú%OÞ¾.}P¢;â}䥼ý©ŠÎ>OUg”¼œý_ýž³SsætóµwÎ"¹#D DÀƒ"§ àQþw±÷´O½tJ¾æ®|‘†æ’Ï ÒOÓtWÔËb¾Su#UCò"þ|ûêûåpp>îïþàK 2ï:ºþÖL®ÞÉ kg/‡.Ñ2¶òH>ç›r¤m¾”Ÿú÷-ZÞµù’8oM¿s¾îñFÖCð 0€†ÇÛÓúso–—ž|Z÷£'{Ë'vB+?M´,~ú ðÀYñw;Ì^væîä²½Ò¯3DeX7û^ÝL­¾NEçáñÎaLMÏz9‚ QœÖ¸óàÏ›×/J2ÒÊ9>%™»ß¼ùï›xd¦ÝT2‰Ff”×Ê¡dZ·Üd®ÜÎx©ŠçÇ7ƒ´Èo_€ùÁ[óãíË;çëod=Ôx`xThÛ½;wÿÕ‹ÛEžSjzš¾}‰Öÿ¯H·[µ~ê›n¾ÓWû¤›û ðÀWñ*‡K!Ï×kqƨ–Ë ñЫ/"DZÜx4ì3Æ–>-j9Åçªûôþ0{f¥™)º¬îÛ­ù¦¨ó@f¸{žj^”Àà1x þ£åõÅÌØm~™§ˆXoü¼‘õPÿyðàÿXsŠ+ª„„ÿÆìß‘ôFqÉ…´Ï9¿?Qr/â=Zy £DÕâtù7õÇMÓ;[“–óJvfA!ã~óÆ|or÷”—©ö½ÂHá­AËeÝúçfTð_mWVUè®Ìí—ÖÄdO‹äÖÕßDÚK“Æž3Ê|ñ2ýes7Íh9q¤ÍÈN»ûtGéÐQ!D¥]ô/mbièFbiKkM£E·ç&R™Þ•Ú‹ü+-p$3•泀湊æ¦Os²¤ÙºÑ˜Á4F˜ÎŒŒË´ÂüÎWò ^ «ÈÉ×¾Íþ£ìtÜ1£FlÕºÐÒoaKïÑ: *wœ?,èÆÔ/{%ÍéZ:d}„¿Ç›þ¤}ïÚõëþ'ûk†·oœA£’4º_`€˜ƒv2º¬­øzÏ‹ÔgZÔCŒƒÉDA7[Àâ>-…¥Âû-»OÝÉþl_ºô¡š¶lÁd¬µ5ã¨2·Ë\Ë1ÙÓäüGI…ôý%¢ -Z†¶õ—ÖѲm#:+„ªw úu`ðRi¯¹Cm–ɸhMe®Zà¼`©ÃÒv+ÖØ®Ñcé¡2 7ZmD1au2g~i;,™4VgìGèjkmÖ®²[µÌaÙ|çùÓݦó7ÌwX?ÿ~]CºÊGÊ·Žm-®8Ô~ø0ûI–[hØn¼ít—ßsFïOÐÚîçèïåãÝd8în{Ö¯;¶haºîz´üµ«5¶‰S,+p—ÿz´ÛÿøûORòót€‡dãá¿|`I§q{]}¹ßDà‘]î<±Ç[…þÚ_ŠA6H‹|™‹˜ü˼0­X ¦éÆ- Lu†­Þ¨6Üa¸*GµM´Ô/Q Ò¡ê£:Ncª÷ñž=Ú}é\gíµö†&6¦ü¿a“n€’I´‘ޝ™¹ºT4‰Â–›Œ¹Åb—­Ì-–|íʱ\å·»ë~-£-s\猳Ÿ=ÝtV§ Ué­2*Á*S­§/3ö™å³(6jc´7ß¿ÍlËÛŽŸôíûûäIèò²2Zó½xlp ng¨ÝPÀðøéñðLÒè[ÞqtŽ»n=Û¬PYå¬5÷Û빯”''³œxxŸÒŸõN®oŒ–~ƒbˆmË—?SQA7]¢e?ܦ'ŸlWà;;Þy•³ù }9[æ t(&«¬4ÀmÀdÖd£±þ T6o4ÛbfÅ``›£^$^SókÍ ÊªÕ1þîxS<’c媨f @~XY©0Rè²år ¸NI¶ZÀû-£5ûrª-8–ZZÓB¦ö¬® â¯²pãÂ-Ú[|Ö³C­|‘9«W}™îW¯B~|_ÿáÅéÝà íÁ+½Àƒx¤ÎQ«ì0:›'7žicŠÇëG{;fïP2vS°ˆä ,»æª}è¢- ]|x¸äbGÈÑÁæLÖ«NãŒu5 5ú¹ö—Ž’îê×u”Ó¨y¬y«-WÓ- ·0Íx Ø™›¿RRJ]¸·fׂ/•”l-,šÁíö– Ú ¡æzKŽÕjöê)îS»ùw“k7ÏBaÝæu,s–‡»'v…§}ú¤ë®æÅ«F<Ÿg νQ;èÊAëýÝ ïÙ­©è9m›¯¨ä , wrçxm¾SuÅqÂnQ¿±<<Î÷¥…Ì¡-0oÿKd‡VÑ29¿._¯µÄhÃÖþIVÚÍ3 «‹´x ®~zÔ(Ôs e´¦ùM$ þd.Ÿ¼|¨†Æ ·AÒQmÛ…öïç§±mÑÈ£‹€à!øõ•æb 5ñð«;`NÚ×Çvr ßH«”’FÇ7y4ê3â55s¦OG—ßì9$=ë×=éÛ[¶÷q›é«§8QÕ_J&LV)`ÒxïM[<c€àxP¢þã03*¤êðx¦ªú½g[ ‰ÅƒãîöFY™ÿ˜ÇþU+ÑS/³á eÃÕ~‰–“òŸØËc£¦‹/ˋͿ­÷œtƒ­¼oѲÏìtÀð<Ÿ ‹.:¸+DŽÄ‡Jœ¹Òõ¿Ožô´O´ŒÖð~ÊâXÏÒè¡.­ í;GÑÑnœC ¶+ÇÁÛi5ÌþeÀðøÉñÈ0¤ÿ«ÖÝt‰–"’idø¯šZíNVCÓ7Y§óζRU­’’B—q|g[Q¬ÿH×Õ­}Ÿ‡î×γ²äXM &£ Ñ]Å[«Ë¿«MÈjd†çÜÝMÊx?!™†tsoÄæuðÈ22ØÉ¡sç’XtqjñcáÑòxúxøÓE jÓ~Xð´ÉnögrßО4(Žy”Àãyóê?ѦñN~Ò©‰Etàà!º®ßùDWn¾'À@\¯žãÄc{âE²ðHLúD<¶ï( üEzêˆÌ'°°c$âŸpÏæÜ÷TmßvΘñÞã‡{Œ8v<›Ù+¦L~ž˜Ðüìþì­ Ø„X§X_{,æc8gWÎí„àssoômñBöµG|ÅÔ)Ø„W-£¢»ðÍ” Ïw|µó¸XXÄúüïÅžë˜/®c"™]E8·CçtÐyP±óxüèÞ‡^½þ ÁæôKoŒòï;ÊI*úøþæfÿ'W´Bîæšæš–Vã,, ÍÌ Ì-»1#ÌÌþ&æ–VËjWšo²pW±òo齸ÛVÎËÌ-Е´-½e­¼—ÿPx dÞÚ×q{§^Avó£÷>zx€àñâÁ7Ýk1ýÚ2¼t¸+í&0‚Õö›™6kœÎ ³ïïB²3îª2ØK¹³9k´U`-æzžJ wmþ¹ÞbŽ£—EƒÙµ¥•¼¥…1Z6µpègå3ËÂj®%»¾óàÅb…—"Ãm͆JúÍ̉–¦¨ºÆ¯ÉÏŽ.äý-'ê<Àð íë{_¶²b¸vep–s—z2ü4P[‚V2]ÔêDù¾×¯ÃRe-í kgsc ì½o ¿ |ýfs‹N Ë… f‹VVckÛÖx+¿‘–[ÌYc¬|¿àaaßûmV~ü¶””ë»:íèäq"iÖúÔ|™‚¬¨Ë˜h™ßÀð<Š^?•›ù/ùH¾÷é”z_¾‰U»že¼2¿› ZYÚml¬1K‡ ËpÞÌý‘ý8F°:ÓÞ˜i£Ãð“bp4¿O–“£ìt|€;›3&[©YZ™[jYrÚ[9¯¯›åÍ-{Z1››oá›ú7˜[µ·²Ô53·\déß›{€­´éËGíËY¦æŒe–~í¬\Öý˜x Ä]Iè¼£ó›¿­3Ý{Bæb”þIK™,l¦§:÷@Hˆ*ƒ­ÈÄÚ‘–öÈ›ö ¶ížOõ‚ƒ3¿ûn víÑ‹Mæ–Ý­¬XX˜6œúçZZu³@œðÚ‹/á4zåÊ¡+Ãw±àJ<|˜.A2Ì u^µß²}Ì]û°¸¿PÆ:p¡‡'yx xœó°kàµ?oyk½L+ܹþœÐr€QóàA]ĹCëð®¿DÉÿû‹T””BˆB‡à¶ê>ŠÝ}ºÿêüë §AüéãÖ­— R¡E*×%JÝžéz"ð§u, ýN,ý:÷ðî~Ï(›Q-'þj7…æ7¥­ç"÷å´gØh36a=’#yÞ\hõCüýÇʬ}³Í Ìï¥|÷ÿL<Bæ‘oãÑŠVÃ}™Eª¨ßÔÀCäx®_’­ÒéÈÂu†zš¹ÊÝŀǶåËŸ©¨TII¡K´Ì“ÃÖÌ.|Qxv—£;z'Ýl í?N*¬G«i©H%…àþÝ|'þê=w•éø­3U–:êÙšX2뎈 ^$^Sók¹ÖR„51_¶ª=ÚÑðe+F^_BgÒuYºkl׬°_±À̰½Ã†‘ mi„‡÷8… þRa]‰–û%ZF•­²fƒÂ Wy¶º›ëßcø G­‹5~<Î<º ´UéМ<Àðøð¨ 'йoZ×Ên‹â8€‡Hñ0ÐŽì§|uòÊhyýüËí»GKîç/DZ¸I\¼Š£ÉqX訣­3Ðyp»™®¾=5õVͳZ£í¸ÖÔzKóÇåïþ€÷-ZÞl|’÷mcº=ØrÆîRoÏ=«¬éêì¶ý¼»ÒíX)bí¿ÜfîÚ·R›#g³Ïioí·{­;Àžå¸WœÌì*µð~+â¿k«æç„‡n¹H‡du…·®7ÈŰù±\¼.°þJÁÁGW÷3»}UðGB~çñ²‚F¿~ï)iò€9÷kÝì¦×‹ôëc;9 Óýi;qó‡zûçe¯_W¼Û¹±àÈŽ»h ZÞ¹¡€÷-Þ¼ù¯$+½œãƒ.Ñr“×i2Ø3ýö£ãNÎХȞÅåÅ5ýú¾OÙÁ[ó>iû§þýŽΣ)…)-0[6w×éß׿¢(Ì&kמÝß›ø„ø¾.q«¼·Ú¤ñ­OKdÃJûƶèŽûøãÏÆ€MÝÙÝö/ßôÛ’ÅYtƒ ¶Ï77ùy:¢"€G þþ­%äËJ©#V>Ý_ *9(ŠÇ¥ˆÒ;¹!bÁ£¨ÿ8ltôðÃ>ŽÓòÙg°g:Ûw€ÀKU(Ù¹vxžÅ•× kú÷«ž3û£•EõìYh­Á~ô߇7þ§»‡÷à:ÈgÛNc_ê÷Ë‘²3q¢SìÆäTXyx$2¬Z¶õ]ÔýòÔ©Oû÷ÛI­<q5Ñyˆ1TÄëBÞÒß -£5h=àAN(ŽÇ£èȲ¡C>µo.Ñ2àADžl.6ídtyÑå Y§Sl’˜ÐÒw ˜Ó9°•!k&ï(ȳ-%]U›è?¾F…X;¬ó@é4U%`v}çA<È •ñx!pÖ¿Øü Ob£vrèܹ$ðàå´õÁ™½ÛFªÉ†rN ÁV¾:ä´­Í·ñìHš#DTÇ<ÞvRÎ]«–­~‰–[»²™cv!íY!€¡2åC Ìk¨ÿÁjvÁsƒCe<>µoÏ;÷"†`{»JJŠÄ¢_:[ëçC‡bËaáý¼ûÍ´™ùpØàSv¶’‰ ê3²èôß–,Ž4YÙ:ZVÇÛ·ñu|9Ãm‚WqÖØCçAd¨ŒGYýży­lØPèþ ×û̳ ™æÀñ˜e x*ãñ(:R`^{ xˆø˜ÇÖh Ç<Äž&ñ@É ð+骊úû‹^ ‚–Ù;wdj3cæäñ¿-‡,= QxÐC Û…«/v â—C×1t°G›»8Ôð 2TÆ£;ÛjØPtcÐ壘(ñÈA)<0?ʇC;]^t=DVÅé€GSIß™|ÊÎöªž.ºÄγ O‹TU_§½þ¬tA˜u&‡Ðÿׄ8<8~ 1dœX®~õxõ8±x+Íq/àAL(ŽtcÄÆñÀ‚vòuxŸIOófðh2ÛÒ†Ä ™a5ûLÛó±óóðÈA( êMœìÜÄO$p¶¡<Àðhœä=;''Nè>ìt»3¾š9xÌÅ9Ð¥]¬Œ¬u µo€àO¢x€àÑdÂl2—è/WórHñ¤dv(}¢úŒõ5äÒäOx€àÑ”ØqŽÌi‰3:³G—=/iÇ<°,[1"r”²MèFï@ÀC¬<Àðhœ¥0-vîÙÕ;np7—¹‹›9Û*-42FÎ:ƺþ}æ;S“–¸FÐa ®Û<2jˆÃÃ%ÐU&VFÇ›ÓÕ6ÔðgÀð<šO|úvÙè®#ô¾öÿw}TTš ;¢')"-•ʼnPöûÛ“0ÿ†D;cïùˆA##µ°Õþÿ]ë¦?*JxÄ'œæÝñoöò±òöAó÷\¦ú,HÇÌCT»]Ts;tÐy@ç OsœÇmà{‹Ð‚sRˆl„|lLZæþÿÝõk›þ¨(ѽlÕÂ3µFEŽZê ‡zŽBZ!t- 2 Ïæxð@ý‰x°Ù8çýP~ÜgíƒêˆÛö1iÜŸ¦eøêþ¥"õ™Öªbèªs;?‰@éXéBZð3Zݦõ< àx€‡ÑI^7ÃnéeZáé^ù‰»wÆå™M-Wœr"y÷®Ô€[Ýå^èùìMÚzDoDñ¢³!Äã"+{DÑý™LŸ½^ÐyÀð<!ÂröëëÖ_gFFÝkV»âs­f–ôXš—º{×ÛåžKà¾Ã|W‚Å+5«d¶8ðèÝ+¾Ÿà!¦€àx|oGäÏHÅJÓ˜Aa¾—i'Jhc>Kõ¿ĽBªßí®rÏ ØYÉq‡éÃ>J/Ìôc"ǸMÖ~ÖŠVÃ}ÍJª¸ßTÀƒÀ€àx|o°ŠR‹W£9ØÔZ’¶(ý·Õý«zéäîâóÈô\ý¼c«Ï´ö¯§O)“[’!<¦GÌ0_h^»ìäÎÊžÖúDàALÀð<„ËäÄ)47Ý/kâ-^Ê8¹ƒÿ:i™öãªÔÙñqà±8lÉ:­u¼oýÝÖ¢B_L<ˆ àx€‡pÑLZNó˜x{¹éámÉ»“"òW÷¯®]ÛyÔ&}g–¿ÉÓÎr/ÍŸ/ŠVè C l9ÀÛ.cvTè|è< àx€‡pÙ˜²‰æ7îð†iE2´Ï´6¿Î¾R{Ìc‡õ ìdYYµgë=ò²Åñ>£ ¬~­?U·uiÏñp̃À€àx»TZðÀo^MýBk ‡¸x©8ð]®°½ÑýJަ\7YrØ$â‘n /pÌc7Ýð 6€àA‘ŠÓQûq{\uß_PÏqÅ×§™kŠÌû}»)„r{´Œ­< àxP¤âtÀCÔ‰;ßǽÏ7¯&nA\±‡Xð˜6‘æ¹j+d„Cˆ Ú::ð (€àA‘ŠÓ‘Æ/7`pÒàBZáŠÐ4ßGË‹IÞ¡l·Ãÿè±#G³§ÙEkì:¸ïØ‘»’;Û2d‹‘ƒh.ú3Cûºrؾ&®\<ÂöÄð<(Rq:à!ÒèeêkíYƒðÀ¾=|ü𶔤n.;£;r쀶k Â#ûøá»’º9Ÿ7KçÑ5ºÍÁf’M°6»öe+6÷à\à€9A<ŠTœxˆ4cRÆxðäâqtïpFí©M¬môì£u/jíÛ5;߉·~×G1ÈÒ>¶=ÍÚg£cHWŽ#Û×´¶óˆ€Îƒ €E*NB’p¡…×´ð·ìÝáÁ¿çÙVøw;žÍùG'œ›ãÁÏ„*Á9 áăs1ãÿÏ<…z[‘às¡ñàmK øg æÑòÓ|×i‹&Z<Èœù71wVçÔ<ºÐB ‡Ç»ïyC ÷§(ž©Ä×7“7z@ÀA¡çáð¸v«‚7úåëBöÂ]$/œElj‡¨Š.×ïTñ†ÆÓXt¡ñ8xø!otþþC=Q=üP$†GdBRo›0#\Ù3™µÿèaîŽfdìãÈ=·c‚NR¥÷÷³·í7ÞÐñ-è?f†Îœ:GTxˆj· ·aãÑ¡óåß¡Ðyàù â/:t?Mç•­º]õpþQ—­šÙ\è#-Ü–='}g¤NÐ: WÃ8öœ=Ðy|#È(<›ãÁý)J"lvÎy×nW…Ί—ãÃC袋üEÔˆ΢ã=æqø!ÿ·Kv/5ȤcËDãú–\ iÑÝ[Ít‹'Â-çË\D—øñÀ¿ÛñlÎ?:œm%â©ç<‚œ!·èxðøq+N‡³­D‘ìãûâS¦‰Æ…ã*Ýö˜ì9<9ðã·‹êW4•T«8ðE6fmšµkvÔª#ñîy<<ÐrÔÊ#÷÷¼Š IDAT$âaHïÙ'`fÆeZ¡÷üݼõ€<ŠTœxàΕ”cò¶"-òe Ð%ƒ·L"³BgMuÕ8ßæÒ>µ|è<ÄÀð HÅé€îem˜–: [ÆÌ@x4/‡xðè0ÐoTè…¶Á¶!"<æ·‹êW4•T«8ðÀ—Œc™ ñЉG’°oçsYš{™V©}¸ù ‰ÆÃË×»m”ÌÖÉiFæbkDu¶þÝ.ª_xHÐTxP­âtÀ_fíš½1%õà!Mú®2Wã5+1à±)`s÷Èîç·[Füð 0€àA‘ŠÓñ<àÝu{·ýÇsѲ]ræ´µÉù2ãjÍ ý˜Çô°š6š‡nü#ÀƒÀ€E*N<„MÚÑôŽ ƒg><- ±—k¬¿æ!~-È=ÛJ5Juëˆ­ÑÆ1€‡Xx©8ð*Oä KfI÷JÛ§ìµ:rgîñ£ßõÅÃÖÏV!Báhï£Mþð 0€àA‘ŠÓ¡² mÁø”‰ Cv¨:EeæñÅciȲù¦óã ¶âàxP¤âô†x%è!õMùjz*yg2ÎîxO£}æf„“c$¦ÄÉñ~ðê%…ñÐÍÔSOøUÅ9tQHröѯ¾0E"ýú³g|õ§€<ŠTœÞJCïwW¯˜ï8xSôîõ³èûíGž¸þâYÑóÜÃ銞ÇO¼£Çór¯zyÜ7Ù|ÕÛóX÷Àøº =…Øœý¼Òö ݸЇµŸu‡àÛÖÆ$ð<(Rqz“/[ÿY”¢W=ÐüÆ™¼Þ¾ù'KÞ½~‘öAqZÉ îO_¾¼2Î)3èôÑ)CÝɵç/ÐVå¯ÏžoÙʺ¼½r&KÎf_Få‡òš²Ë—ó§{Ô^ÍgŸÍâw5o*·ë]“ošž¥¾šÛ¸WC•úô_eÐêO±fhFU±På®n¨=w8çí´¼ChBç}p,ëÄĘØònÝ^ýçÊè²´G·%‘3¥"»N Ë8ü·qˆÇb÷Å«õW£%Àƒ„€E*NÀ!½HÕ¦—ÓúšMšó“·ÜŸòð(s|²jìiý]ç³þzýüݧÏ×w'ELZ¸²v¸'÷òG^ë{$ ©PõÔ|Ï¥ÜWeEÞ\Îëærèð«cìY&)™oÿ®Lѩ鲶ª•©¢bûÜšž:ï¯þS^ƒ£ÜµÃyì~ðX^Lòe»þGùgö£q±±=|Ó˺u»é`‡­Ì:–3Ú·Ï;)ëøm8Ù ®þ]=õ¼š¹àA`Àƒ"§7Ñy¿þïæ;§ñŸ†;ÉNSö?w±´çoÏý–ÕÕ'/å¿bl“W¥//Ôw'õ-EKV¾x~u9g_è_ÿZyØSù¥ eÕ%W¯íË9}áã‡òʇÓ3÷¼{Q™N¯lS‰®öþÖ‡!]ª¼UÅ?¼-%©›ËÎèc|3û±šŽÑl;÷7£Fbk¼öFKG©*‡OýߨáW½=%O =Ý‹< õñèÍñô<È àxP¤âô¯mõ¿í;Îy÷øÚD§ÌÝESnd¥wò<˜ð¼ˆ{…¢[S°—wxÝI‹W¾*zb–ºåö«—%®vÍ©ÃQQwµt*¸k^Ä^«kƒz:Ny]Yþî@u‡>ÕzãkÐÊs?œÁ¡HåáØp¬môìgÙîÛ“¤ì’zÁxóŸ«V<ž·Ùk³l¤ÂœxÓÃùÇКû&›% x ó·;>é×ïÒäɳ˜òqÓÐÀƒœ€E*NoˆG…ÍÖâ7lÓr¯ÙŽý4ØþXö®œ³Pçñ<åµì §ƒÛ19êó¢èŸÌÜú+ß=OJÙ¹ðô_Ϲ®Ü›d¿—¿óxWõæÀátåÀ‚kÕØš÷å%JÇVõÑçWpýmNµŒ\uÈùŠ’¿*CfÕô·¯¬ÂUñCG±c¶)¸¥Å¯ŸÖOä¹ùEõÝvð²—Gîüþ½9½§ÚOÝ™¼ û)êE®øxI¨ç@rì×ÒBËvÎö:e¯Ôz£¬ìçéñóãÁÿÉ´VT ‰DݘŸ5µ“Ñ9e¬÷®=úc¿Í‹n“ õƒ•ÝNX$ì}Uwª.–~š¦èötËŒl«ìŒûƒl³]ö6øUÍ­L<”ÿ¸47YŽ{›Ý69íµüTËl—´K{̾œR;tÊî×òó ÒðÞkáöí¹;Ì6Ãp÷ßóý´Ô|Û„¯Ý˜³·îž^±L*ëÖ?7£‚ôJñçwÇìWÃgcËKuŒlmÑZSà´¿™B7÷0 IÐc²ù@ç!A‡æP»ó(~_&æ Œ.ÑÐ›É ÝÅÍÝláÛqõšjç³ÁÕÕÑÕ}½}  Ë×ä»Vòââ=Ô&KËÅÅÙÕsŠ·‘‹«ƒ«Û:;îÕŒíõONYÍrp³7ß>½GiçE#¾Æ®vñ£UÎ7òµgÆÌïUÞiZ„#ÚVˆp‡ Îøhim·Šéߎáa`ÍbÖFËΡ½Ï8¹09íõÚË7¿ìÐ᡺úéÑ£ª«¡å@}=fý5qíökwoáÏ?v6/õõÐBzÁaÙ(ù“§Î e´­ÿÚ&?OçAôBð<fã¶ÁÑ¿ “Û7È[û-uqsþ¾•ñp5rðã]m‰³«“‹mô‘÷¤Q¯ÓúŸ®“LéÞKÑJ´…µîÉžr54ÚÇýÙ %GÝp½l¸ÃÉ1}泬Ö,}GƒACÚEȯ_m3%Öšaƒ¦x;+Ë„åË÷Ϙ.Ѳ¨ä!O¢"J&N@ ý·Í¿[Y:a“èHÀƒ„€à!ž Ñ…oÐÐh7µÛ2Çkn·ÐnrQrë ÖåuÉãhsDˆ!xÜ89¶þE¿öæ”Tâ}¬~‰–˾týô™¯OUÏž7®$ð<(…GŠÎÚ[òèÆüÝ­ZFsºãúh¯™ižŽ»´×ž7/U[-ÿLxعÙ;¦g÷ ê×6¦í€Àô-ôO¤O·³°ƒ¢ëëçøÏ:X6\A9DelðX-ö[7;4tȨÌNìûuŸÃGqÊ!*<ÎØÓÅ#[1®÷´fË·< àxPíä0<Ì×ÒÌW 6Xa°Isíòù;&«ÛÙ»XÔÎÁµÜR]zVú¦ºDÝI“Æ 1è§¼kž’9ùF®ÓW®V€ÌÀä@›$Í4ùÜàÌ`ZËý@……‡¥¾·Á2Žæ´ÀéB(D+¶m«¡>>hü2β-FÞhl8§uÑç¤.k{!\#BÌlˆ«!a1­Ú„8qå à!ú„àxP¢þã°iúMëÑÙª‰‰#g˜/Ú¼zó€9Ì.ý=û+*·ŽiÓ*JA&\mœcÇyæÃ6,5]adâ;:XßÄ&ˆ¾¨p°š‡­ƒ»#†ëÕãÖ¯`æ(s\´ ]nk€V ¼Šõ¸w¯Tmmôç?šÐ=æ¤bÓúß]»òËñ¶=íNUkw33”-žf†ÞF:>:Ë}W,ô[8#`æø  ÃC†÷ïÝ!ªCëØÖòÑò="Ô†† 8u¥ï*t}$ ?0Q“2~ouù·^7œ7»"‡Hð¸Rxl„s˜ÔVÍí‘ßµ!àA`Àƒ:x\t9ˆó¸N;óˆŸåxCÚÿÕØ,oïæ¬ëf=ÓÃ8xžê4Æ„a–+4 5&›Oj?´—·R‡à¶ ! RQRè¾`iѺ]„-º½t„,úŠbH[ù°/WÀÒ6Rðj(J!¿ð_§CM)„†®C‹T®K˜-x -`3…ÆžOóZNsס9ÓìœiÌ šàÛ›ˆÎŒŒË´Â¤‡r²?“%‡(ð¸y0#Q*jR[?ïj;bxÔÁ;ÛꦼÅë6ÿêÞ-EGÁ}=JF…ÿ…¦½šËx¯GyÎÙ…½*µK{ÍãÞ½·;×jc¯ka×L™aÜøj7¨oÕ]ätµ&‹âÐ%à ànU—­þêÖM„Ç̱ÎktPÓóãq»`FÀzéØ>ë3¾w[ÀƒÀ€¥ðhòä¨(ãÍH 4é_˜0y€–C5¼ùd`Ç<Ðú¯ÃÌãµ|ç¯\Mà˜‡©É:kE+ßpÖZ!?(9W*&(É»¸~oÛxÀð<°“kQqxÞ 39}¦¢}”màAlÀðO–gÛº“»ƒÏ{üæÝ+¥÷ÚÄT‹´ð p!x€à!ix 9¢$*ÄvH<¿wÊÚ”|™´ð p!x€à!ix¹vB9¶‹÷¸@û¥¹ù2…“ð 6€àx…Ço7ÎôLîé”ï²oòùË´ÂhÝ|áä<ˆ àx€‡äàqñöåa»†oÌÙ|rÔ¥ß[]Þ©yZè׬oäúOx6ǃǕ›ïIÄ#0ð‰x\¾VI8+^Ž«7?ˆGpȲðØw†DAk‡öEåËÚ\Úãwþä™WH²Žyà|®‰pn'œ›ãÁ M"8»œxðo.f<ðÿ9ƒ¡· ø7Ç3õ“ˆή'ø7oÉDáÖ¥qéã—.½ÔérÆ´³˜ضh™”³­Èœù71wVçÔ<ºÐB ‡Ç»ïyC ×àÁÃ×7“7z@ÀA1ãqíVoôË×…ì?„+ºH*^.,7ï})ºýN<üý³y£‡'QÑÇxC£@Ìx4ý´˜ñ ;È=BØþ£%xœ»U0*eô ë•…£¯\Ë¿‰Öœ:÷‚7ôÉ3/Åü²•Hžk"œÛ¡ó€Î:è< óÌÉg‡Ä Yc¸æÊæ«×n5øÑ÷l‡Îã;‚ŒÂ³9²ð@‰xDE%ЃÄá‘}é@ð›Önº’x½ñOOŸ{A"8Ÿk"œÛál+Qâó '8CnÑñà!tê:´œÒ|x-=1hb¨Žá– ú^³úÉô 6ÞBñÀœÝ‰x´ ÖF,ﮌP#ìFÀp–eSxܸzùITÿ'ÈÆåÆ+‡*{x^;'¼Äáÿ‰&ª_x€GC<êc¼‰î>wàFzo<~D<œ~e cÙ™±l Y>ò ßUð¸¿/³JM­dÒÄ—zºè²J]ÝÝgSÇ åx·í×î"àAlÀƒd< <À^Îj­’½zqr†e?Žˆ3n âÓé¥Ëj€ê9Ïü|±9ýü•ß—Ûá"›"ÌÿÊuµ–͆쩿þ%¾mU¤2(iÍã–¼%ˆÇ—l2±W±òYxˆ–ýXFpO–ƒ‰µÍz–_;FƒcYÙæ%nìÜJß}j>°iý™¯OUÏžØ9WDãQZ”¼ÝééWÏm]Rxˆ*žî›³ÃƤßýëMÙŬÀù˜oÞn¼Rœx˜.èûVq„‹qv´3Þ+õ®ÒSƒfºî3ËŽŠRjâQ,ªŒøUmß7Åî›xxLf…ôvð`º¸ÙJ3´ ÆÉ‘/sq“žë(¿Qí"Û/¢/aÀžÉrg4¼š¤àÑxF†³­ðð<Mœ,fÆî´Ç¸y "mLÿÆëK€‡0x¸º°œ|{3¹Ç<ºÛúw`¬%†5s¹Ûò~ÞC‚'Z-Ù£š;[+ž¿á<ÀðÀÑyŒƒáQ)E;ß—:‡¶j“|7v7¹P¹‘v#5Œ5ÖénؼðøÖËVc¿ý²ß‘s–£¿,Ëׄ˜cí7MbOVˆTP÷W7ÒÛ°¿óÑË´BË™»_¹>à?’…ÇÕ;9A!c™L造1¿_Ï¥ÙYkŸ~¬=|J.ÅYéÇŒâÞ˜1£Ð2à!ò”åd}np<‰Q{ÌÃØÈÄ@ß`é¦e£mGˇȫrT'1'-Û¬¹v³ŽþIßyr’¹¦ï[´ì2)é'ÇÃÕnûùÚæ–;G*¾¡ûíæu/^¹0¼‡2C{;¸9¶ ;K‹íššûgÌHX®igeùµ«Û™Ìñ˜Ó˯—\˜üÒ KS{¥î~8yðÞÓÒžÓvæË\äÿ¤¢vÃ^þ¨jßÚ¥k‚ÆHû°·Ø¬×æ>ãbx+Eþ9üéÖ Øý›ÚÅ÷ßÊCõÛÝ*® :/yi¶ <Šo"àÛp$[%_7ä’ðm7ì;ð`A´Wi+TÛ\_\uW,ÏåŸ9f~j‘æÒ_b£-¨%Ñî)6Ô—X™K爜×϶ˆ9—žóÓ¹Šê{LBotr¨Í”uß.¿˜›V¢x‰Ú;—_dš}M¼qOûöE{Ôf¦3Š—­Yv±-<ªšª³ËÏIrÈ\:tÛ{:›†hItM’LæyŽØzýȽ†&˜ÍS&×çduwx0)NmSÀƒ}pŠQ)‡öò9Ä|QÊF7øÿôë‡ö¿ªÌ´Sß$™h/[ñÀÏž~;ßÍ,iÉŽ$yÊºÂØÕÂ}Ïú-8¹hFîLÇl§Q[ǘ ÌÞÜd -ÖÑ3Ú@ÌÓÙàh0—·-tñw’à´Â²šêvÃòwq¢E³óûM«üQÍÚèˆz#Oñzƒßyp(€¸¶¦Ö9!–ÿ™óØ"î`Îã—ûwä¥× ¾?ôà±ÝÛ÷lIÞ*ŠMŒŽXÊ_éíåë5c™ÛTþTÓ{­D+­Ä‘­JþLoi¥=“–X¯IÞh»d£OªÖ€¤úIúH&ëM†Åc42r¤U„•õçÖv«ì¦øLq[ìæ5ß‹?ƒä9)2Î6Nl%N7Oß?xÞ›'}>ÈvO?,8~>ëÚ²Ê{Ïy¼P]m}NV£(¾õi•Zk€‡Ú¤Ä ÇIDATµ <À°55x³jûتéùJq…šlyì¦=T:ÓÉ sbx¨a \°ÀÜ [ÓÍb¨Î¨Ý+ûK(@{Öë¬Ô3ç±/CuÎãÀ^Ì9å6À£àÁ©àNØšncG ©sµ•-¯uµ•-¯f&§«­íüà#€¸¶~àÁNšö;€ÀKp'l ðxÀƒC<À°5ÀàALðwÂÖ€1<8ÀÜ [<ÄðàPp'l ðxÀƒC<À°5ÀàALðwÂÖ€1<8ÀÜ [<ÄðàPp'l ðxÀ£#]-mÁ9˜Ö˜cÇt§vЧvœ4tµ¤™<ŠŠë)£P^Oøa§u½aÂCs’ 'ðÀ<ø\Åùºq£xzw;f¢üª˜U õ°ÓºÞ0á¡9YBÍð(-kFç2bMHvðP‹5뱫ÅnØ)œzØÙ% ’›Êî,o„Ù@þc§þ`ùõî…Å,ëêa§u½±†‡¦%¨<Ôù šsSнN=ìto¡ò vZ×T 1 çtx`ZcŽÓnØ)œzØqÒPIµ9TP„r§ü°ÓºÞ0á¡9IV[iÐØé†ýµuÇÌb˜Â¯hÁSÔÃNëzƒÕV àî„­bxp(€¸¶x<ˆ àÁ¡àNØàð &€‡x€;ak€Àƒ˜ àî„­bxp(€¸¶x<ˆ àÁ¡àNØàð &€‡x€;ak€Àƒ˜ àî„­bzeàñ/D¿>è²§#¸IEND®B`‚ttfautohint-0.97/doc/img/o-and-i.pdf0000644000175000001440000001014212237364644014210 00000000000000%PDF-1.5 %µí®û 3 0 obj << /Length 4 0 R /Filter /FlateDecode >> stream xœ+ä2PÁ¢týD…ôb.§.#ˆ ˆ6Ô34R04Ò3¶#…\.ý4]] „BH—†¿‚§fH—kW búÏ endstream endobj 4 0 obj 72 endobj 2 0 obj << /ExtGState << /a0 << /CA 1 /ca 1 >> >> /Font << /f-0-0 5 0 R >> >> endobj 6 0 obj << /Type /Page /Parent 1 0 R /MediaBox [ 0 0 306.121246 180.319992 ] /Contents 3 0 R /Group << /Type /Group /S /Transparency /I true /CS /DeviceRGB >> /Resources 2 0 R >> endobj 7 0 obj << /Length 8 0 R /Filter /FlateDecode /Subtype /Type1C >> stream xœí’yT”eÆŸëºqD\)ÍmrGPDQ“r-rKÍ4„A0ƵE´0tÌÄÜÓÒ6wQÑÔLm_qkWK-Ë%SSÓl¾:}ëùþùþûÎé>çù÷Þßs& ÀMÊr&evä¹²œŽdƒc ¬×ÝÛÀxÂÛˆÞÆò†ü¾ß7¿a½7®6² ¶Ö¨`IÍ îªeÑ$X`ÏÚá!* 0´†¡)bÐ;62&2ÚÚ2~’ýï‹ì£'ÛS2³²³rsí}#í)9ÙÙ¶ä\‡ÓžãtÙÇ;ÓyöA޼qùöœ {†•Ι˜åcOÈs8ìs2\SóÖ¸4‡3ß‘ßÕ–˜’doèp:òR³í)ãGgg¥ý™ ·OÌreZ3œ®vŽIiŽ\WVŽÓžêL·''XMÿXúg}¤­Wž#ÕåHÿ£±"—“7ÆaoéråvŠª•Q‰Ìψt:\á¶ÖT{‡è蘈 v¬dl%;U²s%ã*Ù¥‚í£+Ù>ÂB‡×&ù?–¾J¶÷3&Ú’µ úWáÞí=»›ïÖnïÅ0O¼ožÏzkFZßžy~ ÏîÙ[é¹ËçúFXŽ/ÞSì9ã,»Ù Ì[t½yQPèµi%Þ3%ØtÎÛïœ<ǯ3,Ýæ9éÛæ°…ú·úöÌ\ï=ºWOÈ3Ð6Ì:u‘·Çâå‹`!a1–`)žÇ2,Ç x+°/áe¼‚WñVa5Ö`-Öa=6`#¬ÃÀflA)¶b^ÇvìÀN¼]x»±{ñÞÆ;xïá}|€ñ>Æ'øe؇ý8€ƒ8„Ïð9¾À—ø _ãÆÅ·øÇp'ð=~ÀIüˆŸp §qgñ3ÎáœÇ\Ꮔ˸‚ßp×à×q>”ã&~‡Ÿ† )0A¬Â`V¥ÕÂê e Öd-ÖfÖeoá­¬Çú¼ ØØ˜MhçílÊflÎlÉVlÍp¶a[F°#Åh¶gư#cÙ‰Ç.ìÊn¼ƒÝÏ;y{°'{±7û0‰ìË~¼›÷0‰÷²?“™Âû8€9ˆƒ9„÷s(‡q8à>È‘Ň˜ÊÑLc:Ìàf2‹cù0³9ŽNæ0—0ùtq<'p"'q2§ðQ>ÆÇù§²€Ó8Oò)rŸfgrÝœÍg8‡Ïr.‹9Ïq>p!q1—p)Ÿç2.ç |‘+¸’/ñe¾ÂWùWq5×p-×q=7p#K¸‰›¹…¥ÜÊm|Û¹ƒ;ùwñMîæîå[|›ïð]¾Ç÷ù?äGü˜ŸðS–q÷óò?ãçü‚_ò+~Íox˜Gx”ßò;ãqžà÷ü'ù#â)žæžåÏ<Ç_xžx‘¿ò/ó ãU^£‡^^ç úXΛü~A” @©Š‚UU6USˆª+T5TSµT[uTWaºE·ªžêë65PC5Rc5‘]·«©š©¹Z¨¥Z©µÂÕFm¡vŠT”¢Õ^£ŽŠU'uVœº¨«ºéuW¼îÔ]ꡞê¥Þê£%ª¯úénÝ£$Ý«þJVŠîÓ Ô Öݯ¡¦áz@#ô Fj”RªF+Mér(Cc”©,ÕÃÊÖ89•£\=¢<åË¥ñš ‰š¤Éš¢Gõ˜×šªMÓt=©§T¨zZEš©Yrk¶žÑ=«¹*Ö<=§ùZ …Z¤ÅZ¢¥z^Ë´\/èE­ÐJ½¤—õŠ^ÕkZ¥ÕZ£µZ§õÚ *Ñ&mÖ•j«¶éum×íÔÚ¥7µ[{´Woém½£wõžÞ×úPéc}¢OU¦}Ú¯:¨CúLŸë }©¯ôµ¾ÑaÑQ}«ïtLÇuBßëÔúI§tZgtV?ëœ~Ñy]ÐEýªKº¬+úMWuMyu]7äS¹nVû_ÍÛ¢Šûز¹‡æ»Wšå÷,0·ß¬’ Ìì³ ÝŠ -›áŽ .·úâ¦ÌèSôGtÇl¿‰.±Ø¿NiŒßï8•a¹õ—ú†yšùjxâû³¬ÌZ3´ÀøM”Ub:Êô›þV‡iUVæ7q¥1+ý¦¯õGǃÿ«Ù_ömÒìà endstream endobj 8 0 obj 2011 endobj 9 0 obj << /Length 10 0 R /Filter /FlateDecode >> stream xœ]P½nà ÞyŠÓ!‚¸]"!KUºxèêö0R 茿}Ï8J¥pÜ÷sú8yé^º ÈJ¶Ç>DG8§…,€cˆâÔ€ ¶ÜºzÛÉd!ÙܯsÁ©‹> ­A~29ZáðìÒ€ä;9¤G8|_úê—œpÂX@‰¶‡žÇ½šüf&YÍÇÎ1ÊzdÛŸâkÍMíO{$›ÎÙX$GZ©´÷­Àèþq»cðöjHè'ÏJ¥¸ݨúæÂøyÇÏuÆM½MÛ¾}i"NXwS£m¡BÄûúrÊ›«ž_rºsâ endstream endobj 10 0 obj 235 endobj 11 0 obj << /Type /FontDescriptor /FontName /LARJPS+LinLibertineO /FontFamily (Linux Libertine O) /Flags 4 /FontBBox [ -1082 -256 6171 1125 ] /ItalicAngle 0 /Ascent 894 /Descent -245 /CapHeight 1125 /StemV 80 /StemH 80 /FontFile3 7 0 R >> endobj 5 0 obj << /Type /Font /Subtype /Type1 /BaseFont /LARJPS+LinLibertineO /FirstChar 32 /LastChar 79 /FontDescriptor 11 0 R /Encoding /WinAnsiEncoding /Widths [ 250 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 296 0 0 0 0 0 701 ] /ToUnicode 9 0 R >> endobj 1 0 obj << /Type /Pages /Kids [ 6 0 R ] /Count 1 >> endobj 12 0 obj << /Creator (cairo 1.12.8 (http://cairographics.org)) /Producer (cairo 1.12.8 (http://cairographics.org)) >> endobj 13 0 obj << /Type /Catalog /Pages 1 0 R >> endobj xref 0 14 0000000000 65535 f 0000003582 00000 n 0000000185 00000 n 0000000015 00000 n 0000000164 00000 n 0000003268 00000 n 0000000294 00000 n 0000000522 00000 n 0000002630 00000 n 0000002653 00000 n 0000002966 00000 n 0000002989 00000 n 0000003647 00000 n 0000003775 00000 n trailer << /Size 14 /Root 13 0 R /Info 12 0 R >> startxref 3828 %%EOF ttfautohint-0.97/doc/ttfautohint-css.html0000644000175000001440000001130512230440054015523 00000000000000 ttfautohint-0.97/doc/ttfautohint-2.pandoc0000644000175000001440000002756112237364626015430 00000000000000 The ttfautohint API =================== This section documents the single function of the ttfautohint library, `TTF_autohint`, together with its callback functions, `TA_Progress_Func` and `TA_Info_Func`. All information has been directly extracted from the `ttfautohint.h` header file. Preprocessor Macros and Typedefs -------------------------------- Some default values. ```C #define TA_HINTING_RANGE_MIN 8 #define TA_HINTING_RANGE_MAX 50 #define TA_HINTING_LIMIT 200 #define TA_INCREASE_X_HEIGHT 14 ``` An error type. ```C typedef int TA_Error; ``` Callback: `TA_Progress_Func` ---------------------------- A callback function to get progress information. *curr_idx* gives the currently processed glyph index; if it is negative, an error has occurred. *num_glyphs* holds the total number of glyphs in the font (this value can't be larger than 65535). *curr_sfnt* gives the current subfont within a TrueType Collection (TTC), and *num_sfnts* the total number of subfonts. If the return value is non-zero, `TTF_autohint` aborts with `TA_Err_Canceled`. Use this for a 'Cancel' button or similar features in interactive use. *progress_data* is a void pointer to user-supplied data. ```C typedef int (*TA_Progress_Func)(long curr_idx, long num_glyphs, long curr_sfnt, long num_sfnts, void* progress_data); ``` Callback: `TA_Info_Func` ------------------------ A callback function to manipulate strings in the `name` table. *platform_id*, *encoding_id*, *language_id*, and *name_id* are the identifiers of a `name` table entry pointed to by *str* with a length pointed to by *str_len* (in bytes; the string has no trailing NULL byte). Please refer to the [OpenType specification] for a detailed description of the various parameters, in particular which encoding is used for a given platform and encoding ID. [OpenType specification]: http://www.microsoft.com/typography/otspec/name.htm The string *str* is allocated with `malloc`; the application should reallocate the data if necessary, ensuring that the string length doesn't exceed 0xFFFF. *info_data* is a void pointer to user-supplied data. If an error occurs, return a non-zero value and don't modify *str* and *str_len* (such errors are handled as non-fatal). ```C typedef int (*TA_Info_Func)(unsigned short platform_id, unsigned short encoding_id, unsigned short language_id, unsigned short name_id, unsigned short* str_len, unsigned char** str, void* info_data); ``` Function: `TTF_autohint` ------------------------ Read a TrueType font, remove existing bytecode (in the SFNT tables `prep`, `fpgm`, `cvt `, and `glyf`), and write a new TrueType font with new bytecode based on the autohinting of the FreeType library. It expects a format string *options* and a variable number of arguments, depending on the fields in *options*. The fields are comma separated; whitespace within the format string is not significant, a trailing comma is ignored. Fields are parsed from left to right; if a field occurs multiple times, the last field's argument wins. The same is true for fields that are mutually exclusive. Depending on the field, zero or one argument is expected. Note that fields marked as 'not implemented yet' are subject to change. ### I/O `in-file` : A pointer of type `FILE*` to the data stream of the input font, opened for binary reading. Mutually exclusive with `in-buffer`. `in-buffer` : A pointer of type `const char*` to a buffer that contains the input font. Needs `in-buffer-len`. Mutually exclusive with `in-file`. `in-buffer-len` : A value of type `size_t`, giving the length of the input buffer. Needs `in-buffer`. `out-file` : A pointer of type `FILE*` to the data stream of the output font, opened for binary writing. Mutually exclusive with `out-buffer`. `out-buffer` : A pointer of type `char**` to a buffer that contains the output font. Needs `out-buffer-len`. Mutually exclusive with `out-file`. Deallocate the memory with `free`. `out-buffer-len` : A pointer of type `size_t*` to a value giving the length of the output buffer. Needs `out-buffer`. ### Messages and Callbacks `progress-callback` : A pointer of type [`TA_Progress_Func`](#callback-ta_progress_func), specifying a callback function for progress reports. This function gets called after a single glyph has been processed. If this field is not set or set to NULL, no progress callback function is used. `progress-callback-data` : A pointer of type `void*` to user data that is passed to the progress callback function. `error-string` : A pointer of type `unsigned char**` to a string (in UTF-8 encoding) that verbally describes the error code. You must not change the returned value. `info-callback` : A pointer of type [`TA_Info_Func`](#callback-ta_info_func), specifying a callback function for manipulating the `name` table. This function gets called for each `name` table entry. If not set or set to NULL, the table data stays unmodified. `info-callback-data` : A pointer of type `void*` to user data that is passed to the info callback function. `debug` : If this integer is set to\ 1, lots of debugging information is print to stderr. The default value is\ 0. ### General Hinting Options `hinting-range-min` : An integer (which must be larger than or equal to\ 2) giving the lowest PPEM value used for autohinting. If this field is not set, it defaults to `TA_HINTING_RANGE_MIN`. `hinting-range-max` : An integer (which must be larger than or equal to the value of `hinting-range-min`) giving the highest PPEM value used for autohinting. If this field is not set, it defaults to `TA_HINTING_RANGE_MAX`. `hinting-limit` : An integer (which must be larger than or equal to the value of `hinting-range-max`) that gives the largest PPEM value at which hinting is applied. For larger values, hinting is switched off. If this field is not set, it defaults to `TA_HINTING_LIMIT`. If it is set to\ 0, no hinting limit is added to the bytecode. `hint-composites` : If this integer is set to\ 1, composite glyphs get separate hints. This implies adding a special glyph to the font called ['.ttfautohint'](#the-.ttfautohint-glyph). Setting it to\ 0 (which is the default), the hints of the composite glyphs' components are used. Adding hints for composite glyphs increases the size of the resulting bytecode a lot, but it might deliver better hinting results. However, this depends on the processed font and must be checked by inspection. `pre-hinting` : An integer (1\ for 'on' and 0\ for 'off', which is the default) to specify whether native TrueType hinting shall be applied to all glyphs before passing them to the (internal) autohinter. The used resolution is the em-size in font units; for most fonts this is 2048ppem. Use this if the hints move or scale subglyphs independently of the output resolution. ### Hinting Algorithms `gray-strong-stem-width` : An integer (1\ for 'on' and 0\ for 'off', which is the default) that specifies whether horizontal stems should be snapped and positioned to integer pixel values for normal grayscale rendering. `gdi-cleartype-strong-stem-width` : An integer (1\ for 'on', which is the default, and 0\ for 'off') that specifies whether horizontal stems should be snapped and positioned to integer pixel values for GDI ClearType rendering, this is, the rasterizer version (as returned by the GETINFO bytecode instruction) is in the range 36\ <= version <\ 38 and ClearType is enabled. `dw-cleartype-strong-stem-width` : An integer (1\ for 'on' and 0\ for 'off', which is the default) that specifies whether horizontal stems should be snapped and positioned to integer pixel values for DW ClearType rendering, this is, the rasterizer version (as returned by the GETINFO bytecode instruction) is >=\ 38, ClearType is enabled, and subpixel positioning is enabled also. `increase-x-height` : An integer. For PPEM values in the range 6\ <= PPEM <=\ `increase-x-height`, round up the font's x\ height much more often than normally. If it is set to\ 0, this feature is switched off. If this field is not set, it defaults to `TA_INCREASE_X_HEIGHT`. Use this flag to improve the legibility of small font sizes if necessary. `x-height-snapping-exceptions` : A pointer of type `const char*` to a null-terminated string that gives a list of comma separated PPEM values or value ranges at which no x-height snapping shall be applied. A value range has the form *value1*`-`*value2*, meaning *value1* <= PPEM <= *value2*. *value1* or *value2* (or both) can be missing; a missing value is replaced by the beginning or end of the whole interval of valid PPEM values, respectively. Whitespace is not significant; superfluous commas are ignored, and ranges must be specified in increasing order. For example, the string `"3, 5-7, 9-"` means the values 3, 5, 6, 7, 9, 10, 11, 12, etc. Consequently, if the supplied argument is `"-"`, no x-height snapping takes place at all. The default is the empty string (`""`), meaning no snapping exceptions. `windows-compatibility` : If this integer is set to\ 1, two artificial blue zones are used, positioned at the `usWinAscent` and `usWinDescent` values (from the font's `OS/2` table). The idea is to help ttfautohint so that the hinted glyphs stay within this horizontal stripe since Windows clips everything falling outside. The default is\ 0. ### Scripts `fallback-script` : A string consisting of four lowercase characters that specifies the default script for glyphs which can't be mapped to a script automatically. If set to `"dflt"` (which is the default), no script is used. Valid values can be found in the header file `ttfautohint-scripts.h`. `symbol` : Set this integer to\ 1 if you want to process a font that lacks the characters of a supported script, for example, a symbol font. ttfautohint then uses default values for the standard stem width and height instead of deriving these values from a script's key character (for the latin script, it is character 'o'). The default value is\ 0. ### Miscellaneous `ignore-restrictions` : If the font has set bit\ 1 in the 'fsType' field of the `OS/2` table, the ttfautohint library refuses to process the font since a permission to do that is required from the font's legal owner. In case you have such a permission you might set the integer argument to value\ 1 to make ttfautohint handle the font. The default value is\ 0. `dehint` : If set to\ 1, remove all hints from the font. All other hinting options are ignored. ### Remarks * Obviously, it is necessary to have an input and an output data stream. All other options are optional. * `hinting-range-min` and `hinting-range-max` specify the range for which the autohinter generates optimized hinting code. If a PPEM value is smaller than the value of `hinting-range-min`, hinting still takes place but the configuration created for `hinting-range-min` is used. The analogous action is taken for `hinting-range-max`, only limited by the value given with `hinting-limit`. The font's `gasp` table is set up to always use grayscale rendering with grid-fitting for standard hinting, and symmetric grid-fitting and symmetric smoothing for horizontal subpixel hinting (ClearType). * ttfautohint can process its own output a second time only if option `hint-composites` is not set (or if the font doesn't contain composite glyphs at all). This limitation might change in the future. ```C TA_Error TTF_autohint(const char* options, ...); ``` ttfautohint-0.97/doc/template.html0000644000175000001440000000244612076547345014230 00000000000000 $for(author-meta)$ $endfor$ $if(version)$ $endif$ $if(title-prefix)$$title-prefix$ - $endif$$if(pagetitle)$$pagetitle$$endif$ $for(header-includes)$ $header-includes$ $endfor$ $for(include-before)$ $include-before$ $endfor$

$if(toc)$
$toc$
$endif$ $for(include-after)$ $include-after$ $endfor$ ttfautohint-0.97/Makefile.am0000644000175000001440000000110511747713417013004 00000000000000## Makefile.am # due to a limitation of `autoreconf', # all -I directives currently must be set on a single line ACLOCAL_AMFLAGS = -I gnulib/m4 -I m4 SUBDIRS = gnulib/src \ lib \ frontend \ doc EXTRA_DIST = bootstrap \ bootstrap.conf \ FTL.TXT \ gnulib/m4/gnulib-cache.m4 \ GPLv2.TXT \ README \ TODO \ .version BUILT_SOURCES = .version .version: echo $(VERSION) > $@-t && mv $@-t $@ dist-hook: echo $(VERSION) > $(distdir)/VERSION ## end of Makefile.am ttfautohint-0.97/ChangeLog0000644000175000001440000000055111601026513012505 00000000000000This package doesn't provide a detailed ChangeLog. Instead, please check out the git repository of `ttfautohint' and use a program like `gitk' to inspect the various commits directly. Alternatively, you might directly go to the URL below to view the commits with your web browser. The URL of the git repository is http://repo.or.cz/w/ttfautohint.git EOF ttfautohint-0.97/AUTHORS0000644000175000001440000000007411601026513012003 00000000000000Authors of ttfautohint. Werner Lemberg EOF ttfautohint-0.97/THANKS0000644000175000001440000000236612055603407011663 00000000000000The ttfautohint library has been written by Werner Lemberg . It is largely based on the FreeType autohinting module, written by David Turner . Special thanks to Dave Crossland for proposing the original idea, and to Raph Levien and the Google Web Fonts team for providing financial support to initiate the project. Thanks also to FontLab, Google (again) and all the other people who contributed to the campaign at Pledgie for continuing the financial support. The following people have provided help in developing and testing the library and front-ends: Dave Arnold Vernon Adams Frederik Berlaen James Cloos Erwin Denissen Greg Hitchcock Hirwen Harendal Khaled Hosny Daniel Johnson David Lemon Karsten Lücke Thomas Phinney Eben Sorkin Adam Twardoch Zack Weinberg EOF ttfautohint-0.97/README0000644000175000001440000000265312237363177011640 00000000000000ttfautohint 0.97 ---------------- by Werner Lemberg This project provides a library which takes a TrueType font as the input, removes its bytecode instructions (if any), and returns a new font where all glyphs are bytecode hinted using the information given by FreeType's autohinting module. The idea is to provide the excellent quality of the autohinter on platforms which don't use FreeType. The library has a single API function, `TTF_autohint'; see `lib/ttfautohint.h' for a detailed description. Note that the library itself won't get installed currently. A command-line interface to the library is the `ttfautohint' program; after compilation and installation, say ttfautohint --help for usage information, or say man ttfautohint to read its manual page. A GUI to the library is `ttfautohintGUI'; it uses the Qt4 framework. The compilation of this application can be disabled with the `--without-qt' configuration option. ----------------------------------------------------------------------------- Copyright (C) 2011-2013 by Werner Lemberg. This file is part of the ttfautohint library, and may only be used, modified, and distributed under the terms given in `COPYING'. By continuing to use, modify, or distribute this file you indicate that you have read `COPYING' and understand and accept it fully. The file `COPYING' mentioned in the previous paragraph is distributed with the ttfautohint library. EOF ttfautohint-0.97/NEWS0000644000175000001440000001361012235146401011435 00000000000000New in 0.97: * Improved script support. Besides Cyrillic and Greek, which are now handled separately from Latin, ttfautohint can handle Hebrew. * Option `-f' now takes a parameter to specify the fallback script. The corresponding long option name has been renamed from `--latin-fallback' to `--fallback-script'. * Work around a bug in display environments that use FreeType 2.5.0 and earlier for rendering: Sometimes, the `strong' stem width routine was used for DW ClearType (this is, subpixel hinting in FreeType is enabled) even if `smooth' was selected while generating the font with ttfautohint. New in 0.96: * Option `--components' has been replaced with `--composites': By default, the components of a composite glyph are now hinted separately, since tests has shown that this gives good results in most cases. If this option is set, however, the composite glyph itself gets hinted (and the hints of the components are ignored). An unfortunate side effect is that ttfautohint's option `-c' (which stays as a shorthand for `--composites') now does exactly the opposite as in previous releases. * Older versions of Monotype's `iType' bytecode interpreter have a serious bug: The DIV instruction rounds the result, while the correct operation is truncation. This caused `exploding characters' with fonts hinted by ttfautohint. Since many printers contain this rasterizer without any possibility to update to a non-buggy version, ttfautohint now contains work-arounds to circumvent the problem. * Better support for glyphs where some points have almost the same position (for example glyph `Oslash' in font `Roboto-Thin'). * Better support for glyphs which use explicit `on' points around round extrema. New in 0.95: * New option `--dehint' to strip off all hints without generating new hints. This option is intended for testing purposes. * Minor fixes to the created bytecode for compatibility. * Minor GUI improvements. New in 0.94: * New option `--windows-compatibility' which adds two artificial blue zones at vertical positions given by `usWinAscent' and `usWinDescent'. This helps ttfautohint's hinting algorithm reduce the possibility of clipping if those two values are very tight. * Implement option `--x-height-snapping-exceptions', making ttfautohint avoid x-height snapping for selected PPEM values. Useful in combination with `--windows-compatibility'. * Minor fixes to the created bytecode for compatibility and robustness. New in 0.93: * New option `--components' to treat components of composite glyphs separately. This greatly reduces the bytecode size. I'm waiting for reports whether this option works for most fonts; in case this is true I'm inverting the option, making it the default (and the old behaviour optional). * Full support of TTCs, this is, all subfonts get auto-hinted now. * The upper limit of the `--increase-x-height' option has been removed. * Drag-and-drop support in the GUI. * The TTY version of ttfautohint now acts like a (Unix) filter, this is, it accepts stdin and stdout as input and output, respectively. * Less memory consumption. New in 0.92: * A serious bug in the created bytecode has been fixed, causing incorrect rounding. New in 0.91: * A new, `strong' routine to handle stem widths and positions has been added, to be selected with the `--strong-stem-width' command line option. If it is active, stem widths and positions are snapped to the grid as much as possible. This algorithm is useful for GDI ClearType support. * A new command line option `--debug' (not available for ttfautohintGUI) to print very detailed debugging information. New in 0.9: * The created bytecode has been reduced in size, making it approx. 20% smaller. * New option `--symbol' to use standard stem height and width values instead of using character `o' (which may be missing). Use this option for symbol fonts or math glyphs. * More documentation (in text, HTML, and PDF format). It's still incomplete, though. * Option `--ignore-permissions' has been renamed to `--ignore-restrictions'. The short form is still `-i'. * Defaults for various parameters have been set to more sensible values: hinting-range-max: 50 (was 1000) hinting-limit: 200 (was 1000) * Option `--increase-x-height' now has a mandatory argument (in the range 6-20 or value 0 to disable it, default value is 14). New in 0.8: * Implement option `-x' to increase the x height of the font for small PPEM values by rounding up far more often then rounding down. * Add option `-G N' to switch off hinting completely above value N. * ttfautohint now appends version information and the used parameters to the `Version' field(s) in the `name' table. This can be suppressed with option `-n'. New in 0.7: * A GUI has been added, using the Qt framework. The binary is called `ttfautohintGUI'. New in 0.6.1: * The improved handling of composite glyphs in 0.6 was buggy under certain circumstances, making ttfautohint crash and FontValidator complain. * Dropout handling has been activated. New in 0.6: * Improved handling of composite glyphs. * Implement option `-p' to pre-hint glyphs with original hints before conversion takes place. * Don't add a DSIG table if there is none in the input font. * Human-readable error messages instead of hexadecimal error codes. * Better tests (both at runtime and compile time) to reject too old FreeType versions. New in 0.5: * Rendering on iOS is now expected to give good results. * No bad rendering at very large PPEM values. New in 0.4: * The bytecode has been changed to `create' twilight points. This should avoid rendering artifacts on some platforms. New in 0.3: * Fix font generation; sometimes the `glyf' table was one byte too short, making the font invalid. New in 0.2: * Fix bytecode bugs which prevented correct rendering on some platforms. New in 0.1: * First release. EOF ttfautohint-0.97/.version0000644000175000001440000000000512237364551012430 000000000000000.97 ttfautohint-0.97/bootstrap.conf0000644000175000001440000000452712164061302013626 00000000000000# Bootstrap configuration. # Copyright (C) 2006-2007, 2009-2012 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 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 . # gnulib structure in ttfautohint bundle m4_base=gnulib/m4 source_base=gnulib/src build_aux=gnulib gnulib_name=libgnu checkout_only_file=INSTALL.git # gnulib modules used by this package. gnulib_modules=" fcntl-h getopt-gnu git-version-gen isatty memmem-simple strerror_r-posix " # Additional xgettext options to use. Use "\\\newline" to break lines. XGETTEXT_OPTIONS=$XGETTEXT_OPTIONS'\\\ --from-code=UTF-8\\\ --flag=asprintf:2:c-format --flag=vasprintf:2:c-format\\\ --flag=asnprintf:3:c-format --flag=vasnprintf:3:c-format\\\ --flag=wrapf:1:c-format\\\ ' # If "AM_GNU_GETTEXT(external" or "AM_GNU_GETTEXT([external]" # appears in configure.ac, exclude some unnecessary files. # Without grep's -E option (not portable enough, pre-configure), # the following test is ugly. Also, this depends on the existence # of configure.ac, not the obsolescent-named configure.in. But if # you're using this infrastructure, you should care about such things. gettext_external=0 grep '^[ ]*AM_GNU_GETTEXT(external\>' configure.ac > /dev/null && gettext_external=1 grep '^[ ]*AM_GNU_GETTEXT(\[external\]' configure.ac > /dev/null && gettext_external=1 if test $gettext_external = 1; then # Gettext supplies these files, but we don't need them since # we don't have an intl subdirectory. excluded_files=' m4/glibc2.m4 m4/intdiv0.m4 m4/lcmessage.m4 m4/lock.m4 m4/printf-posix.m4 m4/size_max.m4 m4/uintmax_t.m4 m4/ulonglong.m4 m4/visibility.m4 m4/xsize.m4 ' fi # Build prerequisites buildreq="\ autoconf 2.65 automake 1.13 git 1.5.5 libtool 2.2.2 tar - " ttfautohint-0.97/frontend/0000755000175000001440000000000012237367737012657 500000000000000ttfautohint-0.97/frontend/Makefile.in0000644000175000001440000016321112237364313014633 00000000000000# Makefile.in generated by automake 1.14 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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@ # Makefile.am # Copyright (C) 2011-2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' 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@ bin_PROGRAMS = ttfautohint$(EXEEXT) $(am__EXEEXT_1) @USE_QT_TRUE@am__append_1 = ttfautohintGUI @USE_QT_TRUE@am__append_2 = ttfautohintGUI.1 subdir = frontend DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/gnulib/depcomp $(dist_man_MANS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/autotroll.m4 \ $(top_srcdir)/m4/ltlize_lang.m4 \ $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/errno_h.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/fcntl-o.m4 \ $(top_srcdir)/gnulib/m4/fcntl_h.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/isatty.m4 \ $(top_srcdir)/gnulib/m4/lib-ld.m4 \ $(top_srcdir)/gnulib/m4/lib-link.m4 \ $(top_srcdir)/gnulib/m4/lib-prefix.m4 \ $(top_srcdir)/gnulib/m4/libtool.m4 \ $(top_srcdir)/gnulib/m4/lock.m4 \ $(top_srcdir)/gnulib/m4/longlong.m4 \ $(top_srcdir)/gnulib/m4/ltoptions.m4 \ $(top_srcdir)/gnulib/m4/ltsugar.m4 \ $(top_srcdir)/gnulib/m4/ltversion.m4 \ $(top_srcdir)/gnulib/m4/lt~obsolete.m4 \ $(top_srcdir)/gnulib/m4/memchr.m4 \ $(top_srcdir)/gnulib/m4/memmem.m4 \ $(top_srcdir)/gnulib/m4/mmap-anon.m4 \ $(top_srcdir)/gnulib/m4/msvc-inval.m4 \ $(top_srcdir)/gnulib/m4/msvc-nothrow.m4 \ $(top_srcdir)/gnulib/m4/multiarch.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdint.m4 \ $(top_srcdir)/gnulib/m4/strerror.m4 \ $(top_srcdir)/gnulib/m4/strerror_r.m4 \ $(top_srcdir)/gnulib/m4/string_h.m4 \ $(top_srcdir)/gnulib/m4/sys_socket_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/threadlib.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = @USE_QT_TRUE@am__EXEEXT_1 = ttfautohintGUI$(EXEEXT) am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" PROGRAMS = $(bin_PROGRAMS) am_ttfautohint_OBJECTS = info.$(OBJEXT) main.$(OBJEXT) ttfautohint_OBJECTS = $(am_ttfautohint_OBJECTS) ttfautohint_LDADD = $(LDADD) am__DEPENDENCIES_1 = ttfautohint_DEPENDENCIES = $(top_builddir)/lib/libttfautohint.la \ $(top_builddir)/gnulib/src/libgnu.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) 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 = am__ttfautohintGUI_SOURCES_DIST = ddlineedit.cpp ddlineedit.h info.cpp \ info.h main.cpp maingui.cpp maingui.h ttlineedit.cpp \ ttlineedit.h @USE_QT_TRUE@am_ttfautohintGUI_OBJECTS = \ @USE_QT_TRUE@ ttfautohintGUI-ddlineedit.$(OBJEXT) \ @USE_QT_TRUE@ ttfautohintGUI-info.$(OBJEXT) \ @USE_QT_TRUE@ ttfautohintGUI-main.$(OBJEXT) \ @USE_QT_TRUE@ ttfautohintGUI-maingui.$(OBJEXT) \ @USE_QT_TRUE@ ttfautohintGUI-ttlineedit.$(OBJEXT) @USE_QT_TRUE@nodist_ttfautohintGUI_OBJECTS = \ @USE_QT_TRUE@ ttfautohintGUI-ddlineedit.moc.$(OBJEXT) \ @USE_QT_TRUE@ ttfautohintGUI-maingui.moc.$(OBJEXT) \ @USE_QT_TRUE@ ttfautohintGUI-ttlineedit.moc.$(OBJEXT) ttfautohintGUI_OBJECTS = $(am_ttfautohintGUI_OBJECTS) \ $(nodist_ttfautohintGUI_OBJECTS) am__DEPENDENCIES_2 = $(top_builddir)/lib/libttfautohint.la \ $(top_builddir)/gnulib/src/libgnu.la $(am__DEPENDENCIES_1) \ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) @USE_QT_TRUE@ttfautohintGUI_DEPENDENCIES = $(am__DEPENDENCIES_2) \ @USE_QT_TRUE@ $(am__DEPENDENCIES_1) ttfautohintGUI_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \ $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \ $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) \ $(ttfautohintGUI_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@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/gnulib/depcomp am__depfiles_maybe = depfiles 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 = COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(ttfautohint_SOURCES) $(ttfautohintGUI_SOURCES) \ $(nodist_ttfautohintGUI_SOURCES) DIST_SOURCES = $(ttfautohint_SOURCES) \ $(am__ttfautohintGUI_SOURCES_DIST) am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac 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; }; \ } man1dir = $(mandir)/man1 NROFF = nroff MANS = $(dist_man_MANS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@ AR = @AR@ ARFLAGS = @ARFLAGS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@ BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@ BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@ BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@ BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ 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@ EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@ EMULTIHOP_VALUE = @EMULTIHOP_VALUE@ ENOLINK_HIDDEN = @ENOLINK_HIDDEN@ ENOLINK_VALUE = @ENOLINK_VALUE@ EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@ EOVERFLOW_VALUE = @EOVERFLOW_VALUE@ ERRNO_H = @ERRNO_H@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CPPFLAGS = @FREETYPE_CPPFLAGS@ FREETYPE_LIBS = @FREETYPE_LIBS@ GETOPT_H = @GETOPT_H@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FCNTL = @GNULIB_FCNTL@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FFSL = @GNULIB_FFSL@ GNULIB_FFSLL = @GNULIB_FFSLL@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@ GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@ GNULIB_MBSCHR = @GNULIB_MBSCHR@ GNULIB_MBSCSPN = @GNULIB_MBSCSPN@ GNULIB_MBSLEN = @GNULIB_MBSLEN@ GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@ GNULIB_MBSNLEN = @GNULIB_MBSNLEN@ GNULIB_MBSPBRK = @GNULIB_MBSPBRK@ GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@ GNULIB_MBSRCHR = @GNULIB_MBSRCHR@ GNULIB_MBSSEP = @GNULIB_MBSSEP@ GNULIB_MBSSPN = @GNULIB_MBSSPN@ GNULIB_MBSSTR = @GNULIB_MBSSTR@ GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@ GNULIB_MEMCHR = @GNULIB_MEMCHR@ GNULIB_MEMMEM = @GNULIB_MEMMEM@ GNULIB_MEMPCPY = @GNULIB_MEMPCPY@ GNULIB_MEMRCHR = @GNULIB_MEMRCHR@ GNULIB_NONBLOCKING = @GNULIB_NONBLOCKING@ GNULIB_OPEN = @GNULIB_OPEN@ GNULIB_OPENAT = @GNULIB_OPENAT@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STPCPY = @GNULIB_STPCPY@ GNULIB_STPNCPY = @GNULIB_STPNCPY@ GNULIB_STRCASESTR = @GNULIB_STRCASESTR@ GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@ GNULIB_STRDUP = @GNULIB_STRDUP@ GNULIB_STRERROR = @GNULIB_STRERROR@ GNULIB_STRERROR_R = @GNULIB_STRERROR_R@ GNULIB_STRNCAT = @GNULIB_STRNCAT@ GNULIB_STRNDUP = @GNULIB_STRNDUP@ GNULIB_STRNLEN = @GNULIB_STRNLEN@ GNULIB_STRPBRK = @GNULIB_STRPBRK@ GNULIB_STRSEP = @GNULIB_STRSEP@ GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@ GNULIB_STRSTR = @GNULIB_STRSTR@ GNULIB_STRTOK_R = @GNULIB_STRTOK_R@ GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WRITE = @GNULIB_WRITE@ GREP = @GREP@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@ HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@ HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@ HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@ HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@ HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@ HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FCNTL = @HAVE_FCNTL@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FFSL = @HAVE_FFSL@ HAVE_FFSLL = @HAVE_FFSLL@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_INTTYPES_H = @HAVE_INTTYPES_H@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@ HAVE_MBSLEN = @HAVE_MBSLEN@ HAVE_MEMCHR = @HAVE_MEMCHR@ HAVE_MEMPCPY = @HAVE_MEMPCPY@ HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@ HAVE_OPENAT = @HAVE_OPENAT@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@ HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@ HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STDINT_H = @HAVE_STDINT_H@ HAVE_STPCPY = @HAVE_STPCPY@ HAVE_STPNCPY = @HAVE_STPNCPY@ HAVE_STRCASESTR = @HAVE_STRCASESTR@ HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ HAVE_STRPBRK = @HAVE_STRPBRK@ HAVE_STRSEP = @HAVE_STRSEP@ HAVE_STRVERSCMP = @HAVE_STRVERSCMP@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@ HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_H = @HAVE_WCHAR_H@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@ HELP2MAN = @HELP2MAN@ IMPORT = @IMPORT@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INKSCAPE = @INKSCAPE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MOC = @MOC@ NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@ NEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@ NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_ERRNO_H = @NEXT_ERRNO_H@ NEXT_FCNTL_H = @NEXT_FCNTL_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDINT_H = @NEXT_STDINT_H@ NEXT_STRING_H = @NEXT_STRING_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ 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@ PANDOC = @PANDOC@ PATH_SEPARATOR = @PATH_SEPARATOR@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@ QMAKE = @QMAKE@ QT_CFLAGS = @QT_CFLAGS@ QT_CPPFLAGS = @QT_CPPFLAGS@ QT_CXXFLAGS = @QT_CXXFLAGS@ QT_DEFINES = @QT_DEFINES@ QT_INCPATH = @QT_INCPATH@ QT_LDFLAGS = @QT_LDFLAGS@ QT_LFLAGS = @QT_LFLAGS@ QT_LIBS = @QT_LIBS@ QT_PATH = @QT_PATH@ QT_VERSION = @QT_VERSION@ QT_VERSION_MAJOR = @QT_VERSION_MAJOR@ RANLIB = @RANLIB@ RCC = @RCC@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FCNTL = @REPLACE_FCNTL@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MEMCHR = @REPLACE_MEMCHR@ REPLACE_MEMMEM = @REPLACE_MEMMEM@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_OPEN = @REPLACE_OPEN@ REPLACE_OPENAT = @REPLACE_OPENAT@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STPNCPY = @REPLACE_STPNCPY@ REPLACE_STRCASESTR = @REPLACE_STRCASESTR@ REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@ REPLACE_STRDUP = @REPLACE_STRDUP@ REPLACE_STRERROR = @REPLACE_STRERROR@ REPLACE_STRERROR_R = @REPLACE_STRERROR_R@ REPLACE_STRNCAT = @REPLACE_STRNCAT@ REPLACE_STRNDUP = @REPLACE_STRNDUP@ REPLACE_STRNLEN = @REPLACE_STRNLEN@ REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@ REPLACE_STRSTR = @REPLACE_STRSTR@ REPLACE_STRTOK_R = @REPLACE_STRTOK_R@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@ SIZE_T_SUFFIX = @SIZE_T_SUFFIX@ STDDEF_H = @STDDEF_H@ STDINT_H = @STDINT_H@ STRIP = @STRIP@ UIC = @UIC@ UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ 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@ ft_config = @ft_config@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ 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@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUFFIXES = .moc.cpp .h # Make call to `moc' emit just `MOC'. moc_verbose = $(moc_verbose_@AM_V@) moc_verbose_ = $(moc_verbose_@AM_DEFAULT_V@) moc_verbose_0 = @echo " MOC " $@; DISTCLEANFILES = $(BUILT_SOURCES) AM_CPPFLAGS = -I$(top_srcdir)/lib \ -I$(top_builddir)/gnulib/src \ -I$(top_srcdir)/gnulib/src \ $(FREETYPE_CPPFLAGS) LDADD = $(top_builddir)/lib/libttfautohint.la \ $(top_builddir)/gnulib/src/libgnu.la \ $(LTLIBINTL) \ $(LTLIBTHREAD) \ $(FREETYPE_LIBS) ttfautohint_SOURCES = info.cpp \ info.h \ main.cpp manpages = ttfautohint.1 $(am__append_2) @USE_QT_TRUE@ttfautohintGUI_SOURCES = ddlineedit.cpp \ @USE_QT_TRUE@ ddlineedit.h \ @USE_QT_TRUE@ info.cpp \ @USE_QT_TRUE@ info.h \ @USE_QT_TRUE@ main.cpp \ @USE_QT_TRUE@ maingui.cpp \ @USE_QT_TRUE@ maingui.h \ @USE_QT_TRUE@ ttlineedit.cpp \ @USE_QT_TRUE@ ttlineedit.h @USE_QT_TRUE@nodist_ttfautohintGUI_SOURCES = ddlineedit.moc.cpp \ @USE_QT_TRUE@ maingui.moc.cpp \ @USE_QT_TRUE@ ttlineedit.moc.cpp @USE_QT_TRUE@ttfautohintGUI_CXXFLAGS = $(QT_CXXFLAGS) @USE_QT_TRUE@ttfautohintGUI_LDFLAGS = $(QT_LDFLAGS) @USE_QT_TRUE@ttfautohintGUI_CPPFLAGS = $(AM_CPPFLAGS) \ @USE_QT_TRUE@ $(QT_CPPFLAGS) \ @USE_QT_TRUE@ -DBUILD_GUI @USE_QT_TRUE@ttfautohintGUI_LDADD = $(LDADD) \ @USE_QT_TRUE@ $(QT_LIBS) @USE_QT_TRUE@BUILT_SOURCES = ddlineedit.moc.cpp \ @USE_QT_TRUE@ maingui.moc.cpp \ @USE_QT_TRUE@ ttlineedit.moc.cpp @WITH_DOC_TRUE@dist_man_MANS = $(manpages) all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .moc.cpp .h .cpp .lo .o .obj $(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) --gnits frontend/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnits frontend/Makefile .PRECIOUS: 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__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 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): 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 installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ case ' $(AM_INSTALLCHECK_STD_OPTIONS_EXEMPT) ' in \ *" $$p "* | *" $(srcdir)/$$p "*) continue;; \ esac; \ f=`echo "$$p" | \ sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ for opt in --help --version; do \ if "$(DESTDIR)$(bindir)/$$f" $$opt >c$${pid}_.out \ 2>c$${pid}_.err &2; bad=1; fi; \ done; \ done; rm -f c$${pid}_.???; exit $$bad ttfautohint$(EXEEXT): $(ttfautohint_OBJECTS) $(ttfautohint_DEPENDENCIES) $(EXTRA_ttfautohint_DEPENDENCIES) @rm -f ttfautohint$(EXEEXT) $(AM_V_CXXLD)$(CXXLINK) $(ttfautohint_OBJECTS) $(ttfautohint_LDADD) $(LIBS) ttfautohintGUI$(EXEEXT): $(ttfautohintGUI_OBJECTS) $(ttfautohintGUI_DEPENDENCIES) $(EXTRA_ttfautohintGUI_DEPENDENCIES) @rm -f ttfautohintGUI$(EXEEXT) $(AM_V_CXXLD)$(ttfautohintGUI_LINK) $(ttfautohintGUI_OBJECTS) $(ttfautohintGUI_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/info.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-ddlineedit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-ddlineedit.moc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-info.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-maingui.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-maingui.moc.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-ttlineedit.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ttfautohintGUI-ttlineedit.moc.Po@am__quote@ .cpp.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 $@ $< .cpp.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) '$<'` .cpp.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 $@ $< ttfautohintGUI-ddlineedit.o: ddlineedit.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ddlineedit.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ddlineedit.Tpo -c -o ttfautohintGUI-ddlineedit.o `test -f 'ddlineedit.cpp' || echo '$(srcdir)/'`ddlineedit.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ddlineedit.Tpo $(DEPDIR)/ttfautohintGUI-ddlineedit.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ddlineedit.cpp' object='ttfautohintGUI-ddlineedit.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ddlineedit.o `test -f 'ddlineedit.cpp' || echo '$(srcdir)/'`ddlineedit.cpp ttfautohintGUI-ddlineedit.obj: ddlineedit.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ddlineedit.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ddlineedit.Tpo -c -o ttfautohintGUI-ddlineedit.obj `if test -f 'ddlineedit.cpp'; then $(CYGPATH_W) 'ddlineedit.cpp'; else $(CYGPATH_W) '$(srcdir)/ddlineedit.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ddlineedit.Tpo $(DEPDIR)/ttfautohintGUI-ddlineedit.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ddlineedit.cpp' object='ttfautohintGUI-ddlineedit.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ddlineedit.obj `if test -f 'ddlineedit.cpp'; then $(CYGPATH_W) 'ddlineedit.cpp'; else $(CYGPATH_W) '$(srcdir)/ddlineedit.cpp'; fi` ttfautohintGUI-info.o: info.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-info.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-info.Tpo -c -o ttfautohintGUI-info.o `test -f 'info.cpp' || echo '$(srcdir)/'`info.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-info.Tpo $(DEPDIR)/ttfautohintGUI-info.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='info.cpp' object='ttfautohintGUI-info.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-info.o `test -f 'info.cpp' || echo '$(srcdir)/'`info.cpp ttfautohintGUI-info.obj: info.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-info.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-info.Tpo -c -o ttfautohintGUI-info.obj `if test -f 'info.cpp'; then $(CYGPATH_W) 'info.cpp'; else $(CYGPATH_W) '$(srcdir)/info.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-info.Tpo $(DEPDIR)/ttfautohintGUI-info.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='info.cpp' object='ttfautohintGUI-info.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-info.obj `if test -f 'info.cpp'; then $(CYGPATH_W) 'info.cpp'; else $(CYGPATH_W) '$(srcdir)/info.cpp'; fi` ttfautohintGUI-main.o: main.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-main.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-main.Tpo -c -o ttfautohintGUI-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-main.Tpo $(DEPDIR)/ttfautohintGUI-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='ttfautohintGUI-main.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-main.o `test -f 'main.cpp' || echo '$(srcdir)/'`main.cpp ttfautohintGUI-main.obj: main.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-main.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-main.Tpo -c -o ttfautohintGUI-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-main.Tpo $(DEPDIR)/ttfautohintGUI-main.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cpp' object='ttfautohintGUI-main.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-main.obj `if test -f 'main.cpp'; then $(CYGPATH_W) 'main.cpp'; else $(CYGPATH_W) '$(srcdir)/main.cpp'; fi` ttfautohintGUI-maingui.o: maingui.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-maingui.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-maingui.Tpo -c -o ttfautohintGUI-maingui.o `test -f 'maingui.cpp' || echo '$(srcdir)/'`maingui.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-maingui.Tpo $(DEPDIR)/ttfautohintGUI-maingui.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='maingui.cpp' object='ttfautohintGUI-maingui.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-maingui.o `test -f 'maingui.cpp' || echo '$(srcdir)/'`maingui.cpp ttfautohintGUI-maingui.obj: maingui.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-maingui.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-maingui.Tpo -c -o ttfautohintGUI-maingui.obj `if test -f 'maingui.cpp'; then $(CYGPATH_W) 'maingui.cpp'; else $(CYGPATH_W) '$(srcdir)/maingui.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-maingui.Tpo $(DEPDIR)/ttfautohintGUI-maingui.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='maingui.cpp' object='ttfautohintGUI-maingui.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-maingui.obj `if test -f 'maingui.cpp'; then $(CYGPATH_W) 'maingui.cpp'; else $(CYGPATH_W) '$(srcdir)/maingui.cpp'; fi` ttfautohintGUI-ttlineedit.o: ttlineedit.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ttlineedit.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ttlineedit.Tpo -c -o ttfautohintGUI-ttlineedit.o `test -f 'ttlineedit.cpp' || echo '$(srcdir)/'`ttlineedit.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ttlineedit.Tpo $(DEPDIR)/ttfautohintGUI-ttlineedit.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ttlineedit.cpp' object='ttfautohintGUI-ttlineedit.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ttlineedit.o `test -f 'ttlineedit.cpp' || echo '$(srcdir)/'`ttlineedit.cpp ttfautohintGUI-ttlineedit.obj: ttlineedit.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ttlineedit.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ttlineedit.Tpo -c -o ttfautohintGUI-ttlineedit.obj `if test -f 'ttlineedit.cpp'; then $(CYGPATH_W) 'ttlineedit.cpp'; else $(CYGPATH_W) '$(srcdir)/ttlineedit.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ttlineedit.Tpo $(DEPDIR)/ttfautohintGUI-ttlineedit.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ttlineedit.cpp' object='ttfautohintGUI-ttlineedit.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ttlineedit.obj `if test -f 'ttlineedit.cpp'; then $(CYGPATH_W) 'ttlineedit.cpp'; else $(CYGPATH_W) '$(srcdir)/ttlineedit.cpp'; fi` ttfautohintGUI-ddlineedit.moc.o: ddlineedit.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ddlineedit.moc.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ddlineedit.moc.Tpo -c -o ttfautohintGUI-ddlineedit.moc.o `test -f 'ddlineedit.moc.cpp' || echo '$(srcdir)/'`ddlineedit.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ddlineedit.moc.Tpo $(DEPDIR)/ttfautohintGUI-ddlineedit.moc.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ddlineedit.moc.cpp' object='ttfautohintGUI-ddlineedit.moc.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ddlineedit.moc.o `test -f 'ddlineedit.moc.cpp' || echo '$(srcdir)/'`ddlineedit.moc.cpp ttfautohintGUI-ddlineedit.moc.obj: ddlineedit.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ddlineedit.moc.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ddlineedit.moc.Tpo -c -o ttfautohintGUI-ddlineedit.moc.obj `if test -f 'ddlineedit.moc.cpp'; then $(CYGPATH_W) 'ddlineedit.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/ddlineedit.moc.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ddlineedit.moc.Tpo $(DEPDIR)/ttfautohintGUI-ddlineedit.moc.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ddlineedit.moc.cpp' object='ttfautohintGUI-ddlineedit.moc.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ddlineedit.moc.obj `if test -f 'ddlineedit.moc.cpp'; then $(CYGPATH_W) 'ddlineedit.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/ddlineedit.moc.cpp'; fi` ttfautohintGUI-maingui.moc.o: maingui.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-maingui.moc.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-maingui.moc.Tpo -c -o ttfautohintGUI-maingui.moc.o `test -f 'maingui.moc.cpp' || echo '$(srcdir)/'`maingui.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-maingui.moc.Tpo $(DEPDIR)/ttfautohintGUI-maingui.moc.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='maingui.moc.cpp' object='ttfautohintGUI-maingui.moc.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-maingui.moc.o `test -f 'maingui.moc.cpp' || echo '$(srcdir)/'`maingui.moc.cpp ttfautohintGUI-maingui.moc.obj: maingui.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-maingui.moc.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-maingui.moc.Tpo -c -o ttfautohintGUI-maingui.moc.obj `if test -f 'maingui.moc.cpp'; then $(CYGPATH_W) 'maingui.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/maingui.moc.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-maingui.moc.Tpo $(DEPDIR)/ttfautohintGUI-maingui.moc.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='maingui.moc.cpp' object='ttfautohintGUI-maingui.moc.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-maingui.moc.obj `if test -f 'maingui.moc.cpp'; then $(CYGPATH_W) 'maingui.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/maingui.moc.cpp'; fi` ttfautohintGUI-ttlineedit.moc.o: ttlineedit.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ttlineedit.moc.o -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ttlineedit.moc.Tpo -c -o ttfautohintGUI-ttlineedit.moc.o `test -f 'ttlineedit.moc.cpp' || echo '$(srcdir)/'`ttlineedit.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ttlineedit.moc.Tpo $(DEPDIR)/ttfautohintGUI-ttlineedit.moc.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ttlineedit.moc.cpp' object='ttfautohintGUI-ttlineedit.moc.o' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ttlineedit.moc.o `test -f 'ttlineedit.moc.cpp' || echo '$(srcdir)/'`ttlineedit.moc.cpp ttfautohintGUI-ttlineedit.moc.obj: ttlineedit.moc.cpp @am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -MT ttfautohintGUI-ttlineedit.moc.obj -MD -MP -MF $(DEPDIR)/ttfautohintGUI-ttlineedit.moc.Tpo -c -o ttfautohintGUI-ttlineedit.moc.obj `if test -f 'ttlineedit.moc.cpp'; then $(CYGPATH_W) 'ttlineedit.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/ttlineedit.moc.cpp'; fi` @am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/ttfautohintGUI-ttlineedit.moc.Tpo $(DEPDIR)/ttfautohintGUI-ttlineedit.moc.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ttlineedit.moc.cpp' object='ttfautohintGUI-ttlineedit.moc.obj' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ttfautohintGUI_CPPFLAGS) $(CPPFLAGS) $(ttfautohintGUI_CXXFLAGS) $(CXXFLAGS) -c -o ttfautohintGUI-ttlineedit.moc.obj `if test -f 'ttlineedit.moc.cpp'; then $(CYGPATH_W) 'ttlineedit.moc.cpp'; else $(CYGPATH_W) '$(srcdir)/ttlineedit.moc.cpp'; fi` mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man1: $(dist_man_MANS) @$(NORMAL_INSTALL) @list1=''; \ list2='$(dist_man_MANS)'; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list=''; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \ sed -n '/\.1[a-z]*$$/p'; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(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-am 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" cscopelist: cscopelist-am 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 distdir: $(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: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am all-am: Makefile $(PROGRAMS) $(MANS) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-man install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: installcheck-binPROGRAMS maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-man uninstall-man: uninstall-man1 .MAKE: all check install install-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am check check-am clean \ clean-binPROGRAMS clean-generic clean-libtool cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags distdir 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-man install-man1 \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am \ installcheck-binPROGRAMS installdirs 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-man uninstall-man1 .h.moc.cpp: $(moc_verbose)$(MOC) $(QT_CPPFLAGS) $(EXTRA_CPPFLAGS) $< -o $@ # `ttfautohint.h' holds default values for some options, # `ttfautohint-scripts.' the list of available scripts ttfautohint.1: $(top_srcdir)/frontend/main.cpp \ $(top_srcdir)/lib/ttfautohint.h \ $(top_srcdir)/lib/ttfautohint-scripts.h \ $(top_srcdir)/.version $(MAKE) $(AM_MAKEFLAGS) ttfautohint$(EXEEXT) $(HELP2MAN) --output=$@ \ --no-info \ --name="add new, auto-generated hints to a TrueType font" \ ./ttfautohint$(EXEEXT) ttfautohintGUI.1: $(top_srcdir)/frontend/main.cpp \ $(top_srcdir)/lib/ttfautohint.h \ $(top_srcdir)/lib/ttfautohint-scripts.h \ $(top_srcdir)/.version $(MAKE) $(AM_MAKEFLAGS) ttfautohintGUI$(EXEEXT) $(HELP2MAN) --output=$@ \ --no-info \ --name="add new, auto-generated hints to a TrueType font" \ --help-option=--help-all \ ./ttfautohintGUI$(EXEEXT) # end of Makefile.am # 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: ttfautohint-0.97/frontend/Makefile.am0000644000175000001440000000626712230136405014621 00000000000000# Makefile.am # Copyright (C) 2011-2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. SUFFIXES = .moc.cpp .h # Make call to `moc' emit just `MOC'. moc_verbose = $(moc_verbose_@AM_V@) moc_verbose_ = $(moc_verbose_@AM_DEFAULT_V@) moc_verbose_0 = @echo " MOC " $@; .h.moc.cpp: $(moc_verbose)$(MOC) $(QT_CPPFLAGS) $(EXTRA_CPPFLAGS) $< -o $@ DISTCLEANFILES = $(BUILT_SOURCES) AM_CPPFLAGS = -I$(top_srcdir)/lib \ -I$(top_builddir)/gnulib/src \ -I$(top_srcdir)/gnulib/src \ $(FREETYPE_CPPFLAGS) LDADD = $(top_builddir)/lib/libttfautohint.la \ $(top_builddir)/gnulib/src/libgnu.la \ $(LTLIBINTL) \ $(LTLIBTHREAD) \ $(FREETYPE_LIBS) bin_PROGRAMS = ttfautohint ttfautohint_SOURCES = info.cpp \ info.h \ main.cpp manpages = ttfautohint.1 if USE_QT bin_PROGRAMS += ttfautohintGUI ttfautohintGUI_SOURCES = ddlineedit.cpp \ ddlineedit.h \ info.cpp \ info.h \ main.cpp \ maingui.cpp \ maingui.h \ ttlineedit.cpp \ ttlineedit.h nodist_ttfautohintGUI_SOURCES = ddlineedit.moc.cpp \ maingui.moc.cpp \ ttlineedit.moc.cpp ttfautohintGUI_CXXFLAGS = $(QT_CXXFLAGS) ttfautohintGUI_LDFLAGS = $(QT_LDFLAGS) ttfautohintGUI_CPPFLAGS = $(AM_CPPFLAGS) \ $(QT_CPPFLAGS) \ -DBUILD_GUI ttfautohintGUI_LDADD = $(LDADD) \ $(QT_LIBS) BUILT_SOURCES = ddlineedit.moc.cpp \ maingui.moc.cpp \ ttlineedit.moc.cpp manpages += ttfautohintGUI.1 endif if WITH_DOC dist_man_MANS = $(manpages) endif # `ttfautohint.h' holds default values for some options, # `ttfautohint-scripts.' the list of available scripts ttfautohint.1: $(top_srcdir)/frontend/main.cpp \ $(top_srcdir)/lib/ttfautohint.h \ $(top_srcdir)/lib/ttfautohint-scripts.h \ $(top_srcdir)/.version $(MAKE) $(AM_MAKEFLAGS) ttfautohint$(EXEEXT) $(HELP2MAN) --output=$@ \ --no-info \ --name="add new, auto-generated hints to a TrueType font" \ ./ttfautohint$(EXEEXT) ttfautohintGUI.1: $(top_srcdir)/frontend/main.cpp \ $(top_srcdir)/lib/ttfautohint.h \ $(top_srcdir)/lib/ttfautohint-scripts.h \ $(top_srcdir)/.version $(MAKE) $(AM_MAKEFLAGS) ttfautohintGUI$(EXEEXT) $(HELP2MAN) --output=$@ \ --no-info \ --name="add new, auto-generated hints to a TrueType font" \ --help-option=--help-all \ ./ttfautohintGUI$(EXEEXT) # end of Makefile.am ttfautohint-0.97/frontend/info.h0000644000175000001440000000257112230255562013671 00000000000000// info.h // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. #ifndef __INFO_H__ #define __INFO_H__ #include #include extern "C" { typedef struct Info_Data_ { unsigned char* data; unsigned char* data_wide; unsigned short data_len; unsigned short data_wide_len; int hinting_range_min; int hinting_range_max; int hinting_limit; bool gray_strong_stem_width; bool gdi_cleartype_strong_stem_width; bool dw_cleartype_strong_stem_width; int increase_x_height; number_range* x_height_snapping_exceptions; bool windows_compatibility; bool pre_hinting; bool hint_composites; char fallback_script[5]; bool symbol; bool dehint; } Info_Data; int build_version_string(Info_Data* idata); TA_Error info(unsigned short platform_id, unsigned short encoding_id, unsigned short language_id, unsigned short name_id, unsigned short* str_len, unsigned char** str, void* user); } // extern "C" #endif // __INFO_H__ // end of info.h ttfautohint-0.97/frontend/ttlineedit.cpp0000644000175000001440000000257312227251166015442 00000000000000// ttlineedit.cpp // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. // Derived class `Tooltip_Line_Edit' is QLineEdit that displays a tooltip // if the data in the field is wider than the field width. #include #include "ttlineedit.h" Tooltip_Line_Edit::Tooltip_Line_Edit(QWidget* parent) : QLineEdit(parent) { connect(this, SIGNAL(textChanged(QString)), this, SLOT(change_tooltip(QString))); } void Tooltip_Line_Edit::change_tooltip(QString tip) { QFont font = this->font(); QFontMetrics metrics(font); // get the (sum of the) left and right borders; this is a bit tricky // since Qt doesn't have methods to directly access those margin values int line_minwidth = minimumSizeHint().width(); int char_maxwidth = metrics.maxWidth(); int border = line_minwidth - char_maxwidth; int linewidth = this->width(); int textwidth = metrics.width(tip); if (textwidth > linewidth - border) this->setToolTip(tip); else this->setToolTip(""); } // end of ttlineedit.cpp ttfautohint-0.97/frontend/ddlineedit.h0000644000175000001440000000144712076552172015051 00000000000000// ddlineedit.h // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. #ifndef __DDLINEEDIT_H__ #define __DDLINEEDIT_H__ #include #include "ttlineedit.h" #include class Drag_Drop_Line_Edit : public Tooltip_Line_Edit { Q_OBJECT public: Drag_Drop_Line_Edit(QWidget* = 0); void dragEnterEvent(QDragEnterEvent*); void dropEvent(QDropEvent*); }; #endif // __DDLINEEDIT_H__ // end of ddlineedit.h ttfautohint-0.97/frontend/ddlineedit.cpp0000644000175000001440000000353612227251102015370 00000000000000// ddlineedit.cpp // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. // Derived class `Drag_Drop_Line_Edit' is Tooltip_Line_Edit // that accepts drag and drop. #include #include "ddlineedit.h" Drag_Drop_Line_Edit::Drag_Drop_Line_Edit(QWidget* parent) : Tooltip_Line_Edit(parent) { // empty } // XXX: There are no standardized MIME types for TTFs and TTCs // that work everywhere. So we rely on the extension. void Drag_Drop_Line_Edit::dragEnterEvent(QDragEnterEvent* event) { QList url_list; QString file_name; if (event->mimeData()->hasUrls()) { url_list = event->mimeData()->urls(); // if just text was dropped, url_list is empty if (url_list.size()) { file_name = url_list[0].toLocalFile(); if (file_name.endsWith(".ttf") || file_name.endsWith(".TTF") || file_name.endsWith(".ttc") || file_name.endsWith(".TTC")) event->acceptProposedAction(); } } } void Drag_Drop_Line_Edit::dropEvent(QDropEvent* event) { QList url_list; QString file_name; QFileInfo info; if (event->mimeData()->hasUrls()) { url_list = event->mimeData()->urls(); // if just text was dropped, url_list is empty if (url_list.size()) { file_name = url_list[0].toLocalFile(); // check whether `file_name' is valid info.setFile(file_name); if (info.isFile()) setText(file_name); } } event->acceptProposedAction(); } // end of ddlineedit.cpp ttfautohint-0.97/frontend/main.cpp0000644000175000001440000006612512235131511014212 00000000000000// main.cpp // Copyright (C) 2011-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. // This program is a wrapper for `TTF_autohint'. #ifdef BUILD_GUI # ifndef _WIN32 # define CONSOLE_OUTPUT # endif #else # define CONSOLE_OUTPUT #endif #include #include #include #include #include #include #include #include #include #include #if BUILD_GUI # include # include "maingui.h" #else # include "info.h" #endif #include #include #ifdef _WIN32 # include # define SET_BINARY(f) do { \ if (!isatty(fileno(f))) \ setmode(fileno(f), O_BINARY); \ } while (0) #endif #ifndef SET_BINARY # define SET_BINARY(f) do {} while (0) #endif using namespace std; // the available script tags and its descriptions are directly extracted // from `ttfautohint-scripts.h' typedef struct Script_Names_ { const char* tag; const char* description; } Script_Names; #undef SCRIPT #define SCRIPT(s, S, d) \ {#s, d}, const Script_Names script_names[] = { #include {NULL, NULL} }; #ifndef BUILD_GUI extern "C" { typedef struct Progress_Data_ { long last_sfnt; bool begin; int last_percent; } Progress_Data; int progress(long curr_idx, long num_glyphs, long curr_sfnt, long num_sfnts, void* user) { Progress_Data* data = (Progress_Data*)user; if (num_sfnts > 1 && curr_sfnt != data->last_sfnt) { fprintf(stderr, "subfont %ld of %ld\n", curr_sfnt + 1, num_sfnts); data->last_sfnt = curr_sfnt; data->last_percent = 0; data->begin = true; } if (data->begin) { fprintf(stderr, " %ld glyphs\n" " ", num_glyphs); data->begin = false; } // print progress approx. every 10% int curr_percent = curr_idx * 100 / num_glyphs; int curr_diff = curr_percent - data->last_percent; if (curr_diff >= 10) { fprintf(stderr, " %d%%", curr_percent); data->last_percent = curr_percent - curr_percent % 10; } if (curr_idx + 1 == num_glyphs) fprintf(stderr, "\n"); return 0; } } // extern "C" #endif // !BUILD_GUI #ifdef CONSOLE_OUTPUT static void show_help(bool #ifdef BUILD_GUI all #endif , bool is_error) { FILE* handle = is_error ? stderr : stdout; fprintf(handle, #ifdef BUILD_GUI "Usage: ttfautohintGUI [OPTION]...\n" "A GUI application to replace hints in a TrueType font.\n" #else "Usage: ttfautohint [OPTION]... [IN-FILE [OUT-FILE]]\n" "Replace hints in TrueType font IN-FILE and write output to OUT-FILE.\n" "If OUT-FILE is missing, standard output is used instead;\n" "if IN-FILE is missing also, standard input and output are used.\n" #endif "\n" "The new hints are based on FreeType's auto-hinter.\n" "\n" "This program is a simple front-end to the `ttfautohint' library.\n" "\n"); fprintf(handle, "Long options can be given with one or two dashes,\n" "and with and without equal sign between option and argument.\n" "This means that the following forms are acceptable:\n" "`-foo=bar', `--foo=bar', `-foo bar', `--foo bar'.\n" "\n" "Mandatory arguments to long options are mandatory for short options too.\n" #ifdef BUILD_GUI "Options not related to Qt or X11 set default values.\n" #endif "\n" ); fprintf(handle, "Options:\n" #ifndef BUILD_GUI " --debug print debugging information\n" #endif " -c, --composites hint glyph composites also\n" " -d, --dehint remove all hints\n" " -f, --fallback-script=S set fallback script (default: dflt)\n" " -G, --hinting-limit=N switch off hinting above this PPEM value\n" " (default: %d); value 0 means no limit\n" " -h, --help display this help and exit\n" #ifdef BUILD_GUI " --help-all show Qt and X11 specific options also\n" #endif " -i, --ignore-restrictions override font license restrictions\n" " -l, --hinting-range-min=N the minimum PPEM value for hint sets\n" " (default: %d)\n" " -n, --no-info don't add ttfautohint info\n" " to the version string(s) in the `name' table\n" " -p, --pre-hinting apply original hints in advance\n", TA_HINTING_LIMIT, TA_HINTING_RANGE_MIN); fprintf(handle, " -r, --hinting-range-max=N the maximum PPEM value for hint sets\n" " (default: %d)\n" " -s, --symbol input is symbol font\n" " -v, --verbose show progress information\n" " -V, --version print version information and exit\n" " -w, --strong-stem-width=S use strong stem width routine for modes S,\n" " where S is a string of up to three letters\n" " with possible values `g' for grayscale,\n" " `G' for GDI ClearType, and `D' for\n" " DirectWrite ClearType (default: G)\n" " -W, --windows-compatibility\n" " add blue zones for `usWinAscent' and\n" " `usWinDescent' to avoid clipping\n" " -x, --increase-x-height=N increase x height for sizes in the range\n" " 6<=PPEM<=N; value 0 switches off this feature\n" " (default: %d)\n" " -X, --x-height-snapping-exceptions=STRING\n" " specify a comma-separated list of\n" " x-height snapping exceptions, for example\n" " \"-9, 13-17, 19\" (default: \"\")\n" "\n", TA_HINTING_RANGE_MAX, TA_INCREASE_X_HEIGHT); #ifdef BUILD_GUI if (all) { fprintf(handle, "Qt Options:\n" " --graphicssystem=SYSTEM\n" " select a different graphics system backend\n" " instead of the default one\n" " (possible values: `raster', `opengl')\n" " --reverse set layout direction to right-to-left\n"); fprintf(handle, " --session=ID restore the application for the given ID\n" " --style=STYLE set application GUI style\n" " (possible values: motif, windows, platinum)\n" " --stylesheet=SHEET apply the given Qt stylesheet\n" " to the application widgets\n" "\n"); fprintf(handle, "X11 options:\n" " --background=COLOR set the default background color\n" " and an application palette\n" " (light and dark shades are calculated)\n" " --bg=COLOR same as --background\n" " --btn=COLOR set the default button color\n" " --button=COLOR same as --btn\n" " --cmap use a private color map on an 8-bit display\n" " --display=NAME use the given X-server display\n"); fprintf(handle, " --fg=COLOR set the default foreground color\n" " --fn=FONTNAME set the application font\n" " --font=FONTNAME same as --fn\n" " --foreground=COLOR same as --fg\n" " --geometry=GEOMETRY set the client geometry of first window\n" " --im=SERVER set the X Input Method (XIM) server\n" " --inputstyle=STYLE set X Input Method input style\n" " (possible values: onthespot, overthespot,\n" " offthespot, root)\n"); fprintf(handle, " --name=NAME set the application name\n" " --ncols=COUNT limit the number of colors allocated\n" " in the color cube on an 8-bit display,\n" " if the application is using the\n" " QApplication::ManyColor color specification\n" " --title=TITLE set the application title (caption)\n" " --visual=VISUAL force the application\n" " to use the given visual on an 8-bit display\n" " (only possible value: TrueColor)\n" "\n"); } #endif // BUILD_GUI fprintf(handle, "The program accepts both TTF and TTC files as input.\n" "Use option -i only if you have a legal permission to modify the font.\n" "The used PPEM value for option -p is FUnits per em, normally 2048.\n" "With option -s, use default values for standard stem width and height,\n" "otherwise they are derived from script-specific characters\n" "resembling the shape of character `o'.\n" "\n"); fprintf(handle, "A hint set contains the optimal hinting for a certain PPEM value;\n" "the larger the hint set range, the more hint sets get computed,\n" "usually increasing the output font size. Note, however,\n" "that the `gasp' table of the output file enables grayscale hinting\n" "for all sizes (limited by option -G, which is handled in the bytecode).\n" "\n"); fprintf(handle, "Option -f takes a four-letter string that identifies the script\n" "to be used as a fallback for glyphs that have character codes\n" "outside of known script ranges. Possible values are\n" "\n"); const Script_Names* sn = script_names; for(;;) { fprintf(handle, " %s (%s)", sn->tag, sn->description); sn++; if (sn->tag) fprintf(handle, ",\n"); else { fprintf(handle, ".\n"); break; } } fprintf(handle, "\n" "If no option -f is given, or if its value is `dflt',\n" "no fallback script is used.\n" "\n"); fprintf(handle, #ifdef BUILD_GUI "A command-line version of this program is called `ttfautohint'.\n" #else "A GUI version of this program is called `ttfautohintGUI'.\n" #endif "\n" "Report bugs to: freetype-devel@nongnu.org\n" "ttfautohint home page: \n"); if (is_error) exit(EXIT_FAILURE); else exit(EXIT_SUCCESS); } static void show_version() { fprintf(stdout, #ifdef BUILD_GUI "ttfautohintGUI " VERSION "\n" #else "ttfautohint " VERSION "\n" #endif "Copyright (C) 2011-2013 Werner Lemberg .\n" "License: FreeType License (FTL) or GNU GPLv2.\n" "This is free software: you are free to change and redistribute it.\n" "There is NO WARRANTY, to the extent permitted by law.\n"); exit(EXIT_SUCCESS); } #endif // CONSOLE_OUTPUT int main(int argc, char** argv) { int hinting_range_min = 0; int hinting_range_max = 0; int hinting_limit = 0; int increase_x_height = 0; bool have_hinting_range_min = false; bool have_hinting_range_max = false; bool have_hinting_limit = false; bool have_increase_x_height = false; bool gray_strong_stem_width = false; bool gdi_cleartype_strong_stem_width = true; bool dw_cleartype_strong_stem_width = false; bool ignore_restrictions = false; bool windows_compatibility = false; bool pre_hinting = false; bool hint_composites = false; bool no_info = false; bool symbol = false; const char* fallback_script = NULL; bool have_fallback_script = false; const char* x_height_snapping_exceptions_string = NULL; bool have_x_height_snapping_exceptions_string = false; bool dehint = false; #ifndef BUILD_GUI bool debug = false; TA_Progress_Func progress_func = NULL; TA_Info_Func info_func = info; #endif // make GNU, Qt, and X11 command line options look the same; // we allow `--foo=bar', `--foo bar', `-foo=bar', `-foo bar', // and short options specific to ttfautohint // set up a new argument string vector new_arg_string; new_arg_string.push_back(argv[0]); while (1) { // use pseudo short options for long-only options enum { PASS_THROUGH = CHAR_MAX + 1, HELP_ALL_OPTION, DEBUG_OPTION }; static struct option long_options[] = { {"help", no_argument, NULL, 'h'}, #ifdef BUILD_GUI {"help-all", no_argument, NULL, HELP_ALL_OPTION}, #endif // ttfautohint options {"composites", no_argument, NULL, 'c'}, #ifndef BUILD_GUI {"debug", no_argument, NULL, DEBUG_OPTION}, #endif {"dehint", no_argument, NULL, 'd'}, {"fallback-script", required_argument, NULL, 'f'}, {"hinting-limit", required_argument, NULL, 'G'}, {"hinting-range-max", required_argument, NULL, 'r'}, {"hinting-range-min", required_argument, NULL, 'l'}, {"ignore-restrictions", no_argument, NULL, 'i'}, {"increase-x-height", required_argument, NULL, 'x'}, {"no-info", no_argument, NULL, 'n'}, {"pre-hinting", no_argument, NULL, 'p'}, {"strong-stem-width", required_argument, NULL, 'w'}, {"symbol", no_argument, NULL, 's'}, {"verbose", no_argument, NULL, 'v'}, {"version", no_argument, NULL, 'V'}, {"windows-compatibility", no_argument, NULL, 'W'}, {"x-height-snapping-exceptions", required_argument, NULL, 'X'}, // Qt options {"graphicssystem", required_argument, NULL, PASS_THROUGH}, {"reverse", no_argument, NULL, PASS_THROUGH}, {"session", required_argument, NULL, PASS_THROUGH}, {"style", required_argument, NULL, PASS_THROUGH}, {"stylesheet", required_argument, NULL, PASS_THROUGH}, // X11 options {"background", required_argument, NULL, PASS_THROUGH}, {"bg", required_argument, NULL, PASS_THROUGH}, {"btn", required_argument, NULL, PASS_THROUGH}, {"button", required_argument, NULL, PASS_THROUGH}, {"cmap", no_argument, NULL, PASS_THROUGH}, {"display", required_argument, NULL, PASS_THROUGH}, {"fg", required_argument, NULL, PASS_THROUGH}, {"fn", required_argument, NULL, PASS_THROUGH}, {"font", required_argument, NULL, PASS_THROUGH}, {"foreground", required_argument, NULL, PASS_THROUGH}, {"geometry", required_argument, NULL, PASS_THROUGH}, {"im", required_argument, NULL, PASS_THROUGH}, {"inputstyle", required_argument, NULL, PASS_THROUGH}, {"name", required_argument, NULL, PASS_THROUGH}, {"ncols", required_argument, NULL, PASS_THROUGH}, {"title", required_argument, NULL, PASS_THROUGH}, {"visual", required_argument, NULL, PASS_THROUGH}, {NULL, 0, NULL, 0} }; int option_index; int c = getopt_long_only(argc, argv, "cdf:G:hil:npr:stVvw:Wx:X:", long_options, &option_index); if (c == -1) break; switch (c) { case 'c': hint_composites = true; break; case 'd': dehint = true; break; case 'f': fallback_script = optarg; have_fallback_script = true; break; case 'G': hinting_limit = atoi(optarg); have_hinting_limit = true; break; case 'h': #ifdef CONSOLE_OUTPUT show_help(false, false); #endif break; case 'i': ignore_restrictions = true; break; case 'l': hinting_range_min = atoi(optarg); have_hinting_range_min = true; break; case 'n': no_info = true; break; case 'p': pre_hinting = true; break; case 'r': hinting_range_max = atoi(optarg); have_hinting_range_max = true; break; case 's': symbol = true; break; case 'v': #ifndef BUILD_GUI progress_func = progress; #endif break; case 'V': #ifdef CONSOLE_OUTPUT show_version(); #endif break; case 'w': gray_strong_stem_width = strchr(optarg, 'g') ? true : false; gdi_cleartype_strong_stem_width = strchr(optarg, 'G') ? true : false; dw_cleartype_strong_stem_width = strchr(optarg, 'D') ? true : false; break; case 'W': windows_compatibility = true; break; case 'x': increase_x_height = atoi(optarg); have_increase_x_height = true; break; case 'X': x_height_snapping_exceptions_string = optarg; have_x_height_snapping_exceptions_string = true; break; #ifndef BUILD_GUI case DEBUG_OPTION: debug = true; break; #endif #ifdef BUILD_GUI case HELP_ALL_OPTION: #ifdef CONSOLE_OUTPUT show_help(true, false); #endif break; #endif case PASS_THROUGH: { // append argument with proper syntax for Qt string arg; arg += '-'; arg += long_options[option_index].name; new_arg_string.push_back(arg); if (optarg) new_arg_string.push_back(optarg); break; } default: exit(EXIT_FAILURE); } } if (dehint) { // -d makes ttfautohint ignore all other hinting options have_fallback_script = false; have_hinting_range_min = false; have_hinting_range_max = false; have_hinting_limit = false; have_increase_x_height = false; have_x_height_snapping_exceptions_string = false; } if (!have_fallback_script) fallback_script = "dflt"; if (!have_hinting_range_min) hinting_range_min = TA_HINTING_RANGE_MIN; if (!have_hinting_range_max) hinting_range_max = TA_HINTING_RANGE_MAX; if (!have_hinting_limit) hinting_limit = TA_HINTING_LIMIT; if (!have_increase_x_height) increase_x_height = TA_INCREASE_X_HEIGHT; if (!have_x_height_snapping_exceptions_string) x_height_snapping_exceptions_string = ""; #ifndef BUILD_GUI if (!isatty(fileno(stderr)) && !debug) setvbuf(stderr, (char*)NULL, _IONBF, BUFSIZ); if (hinting_range_min < 2) { fprintf(stderr, "The hinting range minimum must be at least 2\n"); exit(EXIT_FAILURE); } if (hinting_range_max < hinting_range_min) { fprintf(stderr, "The hinting range maximum must not be smaller" " than the minimum (%d)\n", hinting_range_min); exit(EXIT_FAILURE); } if (hinting_limit != 0 && hinting_limit < hinting_range_max) { fprintf(stderr, "A non-zero hinting limit must not be smaller" " than the hinting range maximum (%d)\n", hinting_range_max); exit(EXIT_FAILURE); } if (increase_x_height != 0 && increase_x_height < 6) { fprintf(stderr, "A non-zero x height increase limit" " must be larger than or equal to 6\n"); exit(EXIT_FAILURE); } number_range* x_height_snapping_exceptions = NULL; if (have_x_height_snapping_exceptions_string) { const char* s; s = number_set_parse(x_height_snapping_exceptions_string, &x_height_snapping_exceptions, 6, 0x7FFF); if (*s) { if (x_height_snapping_exceptions == NUMBERSET_ALLOCATION_ERROR) fprintf(stderr, "Allocation error while scanning" " x height snapping exceptions\n"); else { if (x_height_snapping_exceptions == NUMBERSET_INVALID_CHARACTER) fprintf(stderr, "Invalid character"); else if (x_height_snapping_exceptions == NUMBERSET_OVERFLOW) fprintf(stderr, "Overflow"); else if (x_height_snapping_exceptions == NUMBERSET_INVALID_RANGE) fprintf(stderr, "Invalid range"); else if (x_height_snapping_exceptions == NUMBERSET_OVERLAPPING_RANGES) fprintf(stderr, "Overlapping ranges"); else if (x_height_snapping_exceptions == NUMBERSET_NOT_ASCENDING) fprintf(stderr, "Values und ranges must be ascending"); fprintf(stderr, " in x height snapping exceptions:\n" " \"%s\"\n" " %*s\n", x_height_snapping_exceptions_string, s - x_height_snapping_exceptions_string + 1, "^"); } exit(EXIT_FAILURE); } } if (have_fallback_script) { const Script_Names* sn; for (sn = script_names; sn->tag; sn++) if (!strcmp(fallback_script, sn->tag)) break; if (!sn->tag) { fprintf(stderr, "Unknown script tag `%s'\n", fallback_script); exit(EXIT_FAILURE); } } int num_args = argc - optind; if (num_args > 2) show_help(false, true); FILE* in; if (num_args > 0) { in = fopen(argv[optind], "rb"); if (!in) { fprintf(stderr, "The following error occurred while opening font `%s':\n" "\n" " %s\n", argv[optind], strerror(errno)); exit(EXIT_FAILURE); } } else { if (isatty(fileno(stdin))) show_help(false, true); in = stdin; } FILE* out; if (num_args > 1) { if (!strcmp(argv[optind], argv[optind + 1])) { fprintf(stderr, "Input and output file names must not be identical\n"); exit(EXIT_FAILURE); } out = fopen(argv[optind + 1], "wb"); if (!out) { fprintf(stderr, "The following error occurred while opening font `%s':\n" "\n" " %s\n", argv[optind + 1], strerror(errno)); exit(EXIT_FAILURE); } } else { if (isatty(fileno(stdout))) show_help(false, true); out = stdout; } const unsigned char* error_string; Progress_Data progress_data = {-1, 1, 0}; Info_Data info_data; if (no_info) info_func = NULL; else { info_data.data = NULL; // must be deallocated after use info_data.data_wide = NULL; // must be deallocated after use info_data.data_len = 0; info_data.data_wide_len = 0; info_data.hinting_range_min = hinting_range_min; info_data.hinting_range_max = hinting_range_max; info_data.hinting_limit = hinting_limit; info_data.gray_strong_stem_width = gray_strong_stem_width; info_data.gdi_cleartype_strong_stem_width = gdi_cleartype_strong_stem_width; info_data.dw_cleartype_strong_stem_width = dw_cleartype_strong_stem_width; info_data.windows_compatibility = windows_compatibility; info_data.pre_hinting = pre_hinting; info_data.hint_composites = hint_composites; info_data.increase_x_height = increase_x_height; info_data.x_height_snapping_exceptions = x_height_snapping_exceptions; info_data.symbol = symbol; strncpy(info_data.fallback_script, fallback_script, sizeof (info_data.fallback_script)); info_data.dehint = dehint; int ret = build_version_string(&info_data); if (ret == 1) fprintf(stderr, "Warning: Can't allocate memory" " for ttfautohint options string in `name' table\n"); else if (ret == 2) fprintf(stderr, "Warning: ttfautohint options string" " in `name' table too long\n"); } if (in == stdin) SET_BINARY(stdin); if (out == stdout) SET_BINARY(stdout); TA_Error error = TTF_autohint("in-file, out-file," "hinting-range-min, hinting-range-max, hinting-limit," "gray-strong-stem-width, gdi-cleartype-strong-stem-width," "dw-cleartype-strong-stem-width," "error-string," "progress-callback, progress-callback-data," "info-callback, info-callback-data," "ignore-restrictions, windows-compatibility," "pre-hinting, hint-composites," "increase-x-height, x-height-snapping-exceptions," "fallback-script, symbol," "dehint, debug", in, out, hinting_range_min, hinting_range_max, hinting_limit, gray_strong_stem_width, gdi_cleartype_strong_stem_width, dw_cleartype_strong_stem_width, &error_string, progress_func, &progress_data, info_func, &info_data, ignore_restrictions, windows_compatibility, pre_hinting, hint_composites, increase_x_height, x_height_snapping_exceptions_string, fallback_script, symbol, dehint, debug); if (!no_info) { free(info_data.data); free(info_data.data_wide); } number_set_free(x_height_snapping_exceptions); if (error) { if (error == TA_Err_Invalid_FreeType_Version) fprintf(stderr, "FreeType version 2.4.5 or higher is needed.\n" "Perhaps using a wrong FreeType DLL?\n"); else if (error == TA_Err_Invalid_Font_Type) fprintf(stderr, "This font is not a valid font" " in SFNT format with TrueType outlines.\n" "In particular, CFF outlines are not supported.\n"); else if (error == TA_Err_Already_Processed) fprintf(stderr, "This font has already been processed with ttfautohint.\n"); else if (error == TA_Err_Missing_Legal_Permission) fprintf(stderr, "Bit 1 in the `fsType' field of the `OS/2' table is set:\n" "This font must not be modified" " without permission of the legal owner.\n" "Use command line option `-i' to continue" " if you have such a permission.\n"); else if (error == TA_Err_Missing_Unicode_CMap) fprintf(stderr, "No Unicode character map.\n"); else if (error == TA_Err_Missing_Symbol_CMap) fprintf(stderr, "No symbol character map.\n"); else if (error == TA_Err_Missing_Glyph) fprintf(stderr, "No glyph for the key character" " to derive standard width and height.\n" "For the latin script, this key character is `o' (U+006F).\n"); else fprintf(stderr, "Error code `0x%02x' while autohinting font:\n" " %s\n", error, error_string); exit(EXIT_FAILURE); } if (in != stdin) fclose(in); if (out != stdout) fclose(out); exit(EXIT_SUCCESS); return 0; // never reached #else // BUILD_GUI int new_argc = new_arg_string.size(); char** new_argv = new char*[new_argc]; // construct new argc and argv variables from collected data for (int i = 0; i < new_argc; i++) new_argv[i] = const_cast(new_arg_string[i].data()); QApplication app(new_argc, new_argv); app.setApplicationName("TTFautohint"); app.setApplicationVersion(VERSION); app.setOrganizationName("FreeType"); app.setOrganizationDomain("freetype.org"); Main_GUI gui(hinting_range_min, hinting_range_max, hinting_limit, gray_strong_stem_width, gdi_cleartype_strong_stem_width, dw_cleartype_strong_stem_width, increase_x_height, x_height_snapping_exceptions_string, ignore_restrictions, windows_compatibility, pre_hinting, hint_composites, no_info, fallback_script, symbol, dehint); // display the window off the screen -- // to get proper window dimensions including the frame, // the window manager must have a chance to decorate it gui.move(-50000, -50000); gui.show(); // if the vertical size of our window is too large, // select a horizontal layout QRect screen(QApplication::desktop()->availableGeometry()); if (gui.frameGeometry().height() > screen.width()) { gui.create_alternative_layout(); gui.adjustSize(); } gui.move(0, 0); gui.show(); return app.exec(); #endif // BUILD_GUI } // end of main.cpp ttfautohint-0.97/frontend/ttfautohintGUI.10000644000175000001440000001363312237364626015577 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.12. .TH TTFAUTOHINTGUI "1" "November 2013" "ttfautohintGUI 0.97" "User Commands" .SH NAME ttfautohintGUI \- add new, auto-generated hints to a TrueType font .SH SYNOPSIS .B ttfautohintGUI [\fIOPTION\fR]... .SH DESCRIPTION A GUI application to replace hints in a TrueType font. .PP The new hints are based on FreeType's auto\-hinter. .PP This program is a simple front\-end to the `ttfautohint' library. .PP Long options can be given with one or two dashes, and with and without equal sign between option and argument. This means that the following forms are acceptable: `\-foo=bar', `\-\-foo=bar', `\-foo bar', `\-\-foo bar'. .PP Mandatory arguments to long options are mandatory for short options too. Options not related to Qt or X11 set default values. .SH OPTIONS .TP \fB\-c\fR, \fB\-\-composites\fR hint glyph composites also .TP \fB\-d\fR, \fB\-\-dehint\fR remove all hints .TP \fB\-f\fR, \fB\-\-fallback\-script\fR=\fIS\fR set fallback script (default: dflt) .TP \fB\-G\fR, \fB\-\-hinting\-limit\fR=\fIN\fR switch off hinting above this PPEM value (default: 200); value 0 means no limit .TP \fB\-h\fR, \fB\-\-help\fR display this help and exit .TP \fB\-\-help\-all\fR show Qt and X11 specific options also .TP \fB\-i\fR, \fB\-\-ignore\-restrictions\fR override font license restrictions .TP \fB\-l\fR, \fB\-\-hinting\-range\-min\fR=\fIN\fR the minimum PPEM value for hint sets (default: 8) .TP \fB\-n\fR, \fB\-\-no\-info\fR don't add ttfautohint info to the version string(s) in the `name' table .TP \fB\-p\fR, \fB\-\-pre\-hinting\fR apply original hints in advance .TP \fB\-r\fR, \fB\-\-hinting\-range\-max\fR=\fIN\fR the maximum PPEM value for hint sets (default: 50) .TP \fB\-s\fR, \fB\-\-symbol\fR input is symbol font .TP \fB\-v\fR, \fB\-\-verbose\fR show progress information .TP \fB\-V\fR, \fB\-\-version\fR print version information and exit .TP \fB\-w\fR, \fB\-\-strong\-stem\-width\fR=\fIS\fR use strong stem width routine for modes S, where S is a string of up to three letters with possible values `g' for grayscale, `G' for GDI ClearType, and `D' for DirectWrite ClearType (default: G) .TP \fB\-W\fR, \fB\-\-windows\-compatibility\fR add blue zones for `usWinAscent' and `usWinDescent' to avoid clipping .TP \fB\-x\fR, \fB\-\-increase\-x\-height\fR=\fIN\fR increase x height for sizes in the range 6<=PPEM<=N; value 0 switches off this feature (default: 14) .TP \fB\-X\fR, \fB\-\-x\-height\-snapping\-exceptions\fR=\fISTRING\fR specify a comma\-separated list of x\-height snapping exceptions, for example "\-9, 13\-17, 19" (default: "") .SS "Qt Options:" .TP \fB\-\-graphicssystem\fR=\fISYSTEM\fR select a different graphics system backend instead of the default one (possible values: `raster', `opengl') .TP \fB\-\-reverse\fR set layout direction to right\-to\-left .TP \fB\-\-session\fR=\fIID\fR restore the application for the given ID .TP \fB\-\-style\fR=\fISTYLE\fR set application GUI style (possible values: motif, windows, platinum) .TP \fB\-\-stylesheet\fR=\fISHEET\fR apply the given Qt stylesheet to the application widgets .SS "X11 options:" .TP \fB\-\-background\fR=\fICOLOR\fR set the default background color and an application palette (light and dark shades are calculated) .TP \fB\-\-bg\fR=\fICOLOR\fR same as \fB\-\-background\fR .TP \fB\-\-btn\fR=\fICOLOR\fR set the default button color .TP \fB\-\-button\fR=\fICOLOR\fR same as \fB\-\-btn\fR .TP \fB\-\-cmap\fR use a private color map on an 8\-bit display .TP \fB\-\-display\fR=\fINAME\fR use the given X\-server display .TP \fB\-\-fg\fR=\fICOLOR\fR set the default foreground color .TP \fB\-\-fn\fR=\fIFONTNAME\fR set the application font .TP \fB\-\-font\fR=\fIFONTNAME\fR same as \fB\-\-fn\fR .TP \fB\-\-foreground\fR=\fICOLOR\fR same as \fB\-\-fg\fR .TP \fB\-\-geometry\fR=\fIGEOMETRY\fR set the client geometry of first window .TP \fB\-\-im\fR=\fISERVER\fR set the X Input Method (XIM) server .TP \fB\-\-inputstyle\fR=\fISTYLE\fR set X Input Method input style (possible values: onthespot, overthespot, offthespot, root) .TP \fB\-\-name\fR=\fINAME\fR set the application name .TP \fB\-\-ncols\fR=\fICOUNT\fR limit the number of colors allocated in the color cube on an 8\-bit display, if the application is using the QApplication::ManyColor color specification .TP \fB\-\-title\fR=\fITITLE\fR set the application title (caption) .TP \fB\-\-visual\fR=\fIVISUAL\fR force the application to use the given visual on an 8\-bit display (only possible value: TrueColor) .PP The program accepts both TTF and TTC files as input. Use option \fB\-i\fR only if you have a legal permission to modify the font. The used PPEM value for option \fB\-p\fR is FUnits per em, normally 2048. With option \fB\-s\fR, use default values for standard stem width and height, otherwise they are derived from script\-specific characters resembling the shape of character `o'. .PP A hint set contains the optimal hinting for a certain PPEM value; the larger the hint set range, the more hint sets get computed, usually increasing the output font size. Note, however, that the `gasp' table of the output file enables grayscale hinting for all sizes (limited by option \fB\-G\fR, which is handled in the bytecode). .PP Option \fB\-f\fR takes a four\-letter string that identifies the script to be used as a fallback for glyphs that have character codes outside of known script ranges. Possible values are .IP cyrl (Cyrillic), dflt (no script), grek (Greek), hebr (Hebrew), latn (Latin). .PP If no option \fB\-f\fR is given, or if its value is `dflt', no fallback script is used. .PP A command\-line version of this program is called `ttfautohint'. .SH "REPORTING BUGS" Report bugs to: freetype\-devel@nongnu.org ttfautohint home page: .SH COPYRIGHT Copyright \(co 2011\-2013 Werner Lemberg . License: FreeType License (FTL) or GNU GPLv2. .br This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ttfautohint-0.97/frontend/maingui.h0000644000175000001440000000650412231157650014367 00000000000000// maingui.h // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. #ifndef __MAINGUI_H__ #define __MAINGUI_H__ #include #include #include "ddlineedit.h" #include "ttlineedit.h" #include #include #include class QAction; class QButtonGroup; class QCheckBox; class QComboBox; class QFile; class QLabel; class QLocale; class QMenu; class QPushButton; class QSpinBox; class Drag_Drop_Line_Edit; class Tooltip_Line_Edit; class Main_GUI : public QMainWindow { Q_OBJECT public: Main_GUI(int, int, int, bool, bool, bool, int, const char*, bool, bool, bool, bool, bool, const char*, bool, bool); ~Main_GUI(); void create_alternative_layout(); protected: void closeEvent(QCloseEvent*); private slots: void about(); void browse_input(); void browse_output(); void check_min(); void check_max(); void check_limit(); void check_dehint(); void check_no_limit(); void check_no_increase(); void absolute_input(); void absolute_output(); void check_number_set(); void clear_status_bar(); void check_run(); void run(); private: int hinting_range_min; int hinting_range_max; int hinting_limit; int gray_strong_stem_width; int gdi_cleartype_strong_stem_width; int dw_cleartype_strong_stem_width; int increase_x_height; QString x_height_snapping_exceptions_string; number_range* x_height_snapping_exceptions; int ignore_restrictions; int windows_compatibility; int pre_hinting; int hint_composites; int no_info; int fallback_script_idx; int symbol; int dehint; void create_layout(); void create_connections(); void create_actions(); void create_menus(); void create_status_bar(); void set_defaults(); void read_settings(); void write_settings(); int check_filenames(const QString&, const QString&); int open_files(const QString&, FILE**, const QString&, FILE**); int handle_error(TA_Error, const unsigned char*, QString); QMenu* file_menu; QMenu* help_menu; QLabel* input_label; Drag_Drop_Line_Edit* input_line; QPushButton* input_button; QLabel* output_label; Drag_Drop_Line_Edit* output_line; QPushButton* output_button; QLabel* min_label; QSpinBox* min_box; QLabel* max_label; QSpinBox* max_box; QLabel* stem_label; QCheckBox* gray_box; QCheckBox* gdi_box; QCheckBox* dw_box; QLabel* fallback_label; QComboBox* fallback_box; QLabel* limit_label; QSpinBox* limit_box; QCheckBox* no_limit_box; QLabel* increase_label; QSpinBox* increase_box; QCheckBox* no_increase_box; QLabel* snapping_label; Tooltip_Line_Edit* snapping_line; QCheckBox* wincomp_box; QCheckBox* pre_box; QCheckBox* hint_box; QCheckBox* symbol_box; QCheckBox* dehint_box; QCheckBox* info_box; QPushButton* run_button; QAction* exit_act; QAction* about_act; QAction* about_Qt_act; QLocale* locale; }; #endif // __MAINGUI_H__ // end of maingui.h ttfautohint-0.97/frontend/ttfautohint.10000644000175000001440000001020512237364625015221 00000000000000.\" DO NOT MODIFY THIS FILE! It was generated by help2man 1.40.12. .TH TTFAUTOHINT "1" "November 2013" "ttfautohint 0.97" "User Commands" .SH NAME ttfautohint \- add new, auto-generated hints to a TrueType font .SH SYNOPSIS .B ttfautohint [\fIOPTION\fR]... [\fIIN-FILE \fR[\fIOUT-FILE\fR]] .SH DESCRIPTION Replace hints in TrueType font IN\-FILE and write output to OUT\-FILE. If OUT\-FILE is missing, standard output is used instead; if IN\-FILE is missing also, standard input and output are used. .PP The new hints are based on FreeType's auto\-hinter. .PP This program is a simple front\-end to the `ttfautohint' library. .PP Long options can be given with one or two dashes, and with and without equal sign between option and argument. This means that the following forms are acceptable: `\-foo=bar', `\-\-foo=bar', `\-foo bar', `\-\-foo bar'. .PP Mandatory arguments to long options are mandatory for short options too. .SH OPTIONS .TP \fB\-\-debug\fR print debugging information .TP \fB\-c\fR, \fB\-\-composites\fR hint glyph composites also .TP \fB\-d\fR, \fB\-\-dehint\fR remove all hints .TP \fB\-f\fR, \fB\-\-fallback\-script\fR=\fIS\fR set fallback script (default: dflt) .TP \fB\-G\fR, \fB\-\-hinting\-limit\fR=\fIN\fR switch off hinting above this PPEM value (default: 200); value 0 means no limit .TP \fB\-h\fR, \fB\-\-help\fR display this help and exit .TP \fB\-i\fR, \fB\-\-ignore\-restrictions\fR override font license restrictions .TP \fB\-l\fR, \fB\-\-hinting\-range\-min\fR=\fIN\fR the minimum PPEM value for hint sets (default: 8) .TP \fB\-n\fR, \fB\-\-no\-info\fR don't add ttfautohint info to the version string(s) in the `name' table .TP \fB\-p\fR, \fB\-\-pre\-hinting\fR apply original hints in advance .TP \fB\-r\fR, \fB\-\-hinting\-range\-max\fR=\fIN\fR the maximum PPEM value for hint sets (default: 50) .TP \fB\-s\fR, \fB\-\-symbol\fR input is symbol font .TP \fB\-v\fR, \fB\-\-verbose\fR show progress information .TP \fB\-V\fR, \fB\-\-version\fR print version information and exit .TP \fB\-w\fR, \fB\-\-strong\-stem\-width\fR=\fIS\fR use strong stem width routine for modes S, where S is a string of up to three letters with possible values `g' for grayscale, `G' for GDI ClearType, and `D' for DirectWrite ClearType (default: G) .TP \fB\-W\fR, \fB\-\-windows\-compatibility\fR add blue zones for `usWinAscent' and `usWinDescent' to avoid clipping .TP \fB\-x\fR, \fB\-\-increase\-x\-height\fR=\fIN\fR increase x height for sizes in the range 6<=PPEM<=N; value 0 switches off this feature (default: 14) .TP \fB\-X\fR, \fB\-\-x\-height\-snapping\-exceptions\fR=\fISTRING\fR specify a comma\-separated list of x\-height snapping exceptions, for example "\-9, 13\-17, 19" (default: "") .PP The program accepts both TTF and TTC files as input. Use option \fB\-i\fR only if you have a legal permission to modify the font. The used PPEM value for option \fB\-p\fR is FUnits per em, normally 2048. With option \fB\-s\fR, use default values for standard stem width and height, otherwise they are derived from script\-specific characters resembling the shape of character `o'. .PP A hint set contains the optimal hinting for a certain PPEM value; the larger the hint set range, the more hint sets get computed, usually increasing the output font size. Note, however, that the `gasp' table of the output file enables grayscale hinting for all sizes (limited by option \fB\-G\fR, which is handled in the bytecode). .PP Option \fB\-f\fR takes a four\-letter string that identifies the script to be used as a fallback for glyphs that have character codes outside of known script ranges. Possible values are .IP cyrl (Cyrillic), dflt (no script), grek (Greek), hebr (Hebrew), latn (Latin). .PP If no option \fB\-f\fR is given, or if its value is `dflt', no fallback script is used. .PP A GUI version of this program is called `ttfautohintGUI'. .SH "REPORTING BUGS" Report bugs to: freetype\-devel@nongnu.org ttfautohint home page: .SH COPYRIGHT Copyright \(co 2011\-2013 Werner Lemberg . License: FreeType License (FTL) or GNU GPLv2. .br This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. ttfautohint-0.97/frontend/info.cpp0000644000175000001440000001414112230423025014207 00000000000000// info.cpp // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. #include #include #include #include #include "info.h" #define TTFAUTOHINT_STRING "; ttfautohint" #define TTFAUTOHINT_STRING_WIDE "\0;\0 \0t\0t\0f\0a\0u\0t\0o\0h\0i\0n\0t" // build string that gets appended to the `Version' field(s) extern "C" { // return value 1 means allocation error, value 2 too long a string int build_version_string(Info_Data* idata) { char* d; char* dw; char* s = NULL; size_t s_len; unsigned char* data_new; unsigned short data_new_len; char strong[4]; int count; int ret = 0; // 128 bytes certainly hold the following options except -X data_new = (unsigned char*)realloc(idata->data, 128); if (!data_new) { ret = 1; goto Fail; } idata->data = data_new; d = (char*)idata->data; d += sprintf(d, TTFAUTOHINT_STRING " (v%s)", VERSION); if (idata->dehint) { d += sprintf(d, " -d"); goto Dehint_only; } d += sprintf(d, " -l %d", idata->hinting_range_min); d += sprintf(d, " -r %d", idata->hinting_range_max); d += sprintf(d, " -G %d", idata->hinting_limit); d += sprintf(d, " -x %d", idata->increase_x_height); d += sprintf(d, " -f %s", idata->fallback_script); count = 0; strong[0] = '\0'; strong[1] = '\0'; strong[2] = '\0'; strong[3] = '\0'; if (idata->gray_strong_stem_width) strong[count++] = 'g'; if (idata->gdi_cleartype_strong_stem_width) strong[count++] = 'G'; if (idata->dw_cleartype_strong_stem_width) strong[count++] = 'D'; if (*strong) d += sprintf(d, " -w %s", strong); else d += sprintf(d, " -w \"\""); if (idata->windows_compatibility) d += sprintf(d, " -W"); if (idata->pre_hinting) d += sprintf(d, " -p"); if (idata->hint_composites) d += sprintf(d, " -c"); if (idata->symbol) d += sprintf(d, " -s"); if (idata->x_height_snapping_exceptions) d += sprintf(d, " -X \"\""); // fill in data later Dehint_only: idata->data_len = d - (char*)idata->data; if (idata->x_height_snapping_exceptions) { s = number_set_show(idata->x_height_snapping_exceptions, 6, 0x7FFF); if (!s) { ret = 1; goto Fail; } // ensure UTF16-BE version doesn't get too long s_len = strlen(s); if (s_len > 0xFFFF / 2 - 128) { ret = 2; goto Fail; } } else s_len = 0; // we now reallocate to the real size // (plus one byte so that `sprintf' works) data_new_len = idata->data_len + s_len; data_new = (unsigned char*)realloc(idata->data, data_new_len + 1); if (!data_new) { ret = 1; goto Fail; } if (idata->x_height_snapping_exceptions) { // overwrite second doublequote and append it instead d = (char*)(data_new + idata->data_len - 1); sprintf(d, "%s\"", s); } idata->data = data_new; idata->data_len = data_new_len; // prepare UTF16-BE version data idata->data_wide_len = 2 * idata->data_len; data_new = (unsigned char*)realloc(idata->data_wide, idata->data_wide_len); if (!data_new) { ret = 1; goto Fail; } idata->data_wide = data_new; d = (char*)idata->data; dw = (char*)idata->data_wide; for (unsigned short i = 0; i < idata->data_len; i++) { *(dw++) = '\0'; *(dw++) = *(d++); } Exit: free(s); return ret; Fail: free(idata->data); free(idata->data_wide); idata->data = NULL; idata->data_wide = NULL; idata->data_len = 0; idata->data_wide_len = 0; goto Exit; } int info(unsigned short platform_id, unsigned short encoding_id, unsigned short /* language_id */, unsigned short name_id, unsigned short* len, unsigned char** str, void* user) { Info_Data* idata = (Info_Data*)user; unsigned char ttfautohint_string[] = TTFAUTOHINT_STRING; unsigned char ttfautohint_string_wide[] = TTFAUTOHINT_STRING_WIDE; // we use memmem, so don't count the trailing \0 character size_t ttfautohint_string_len = sizeof (TTFAUTOHINT_STRING) - 1; size_t ttfautohint_string_wide_len = sizeof (TTFAUTOHINT_STRING_WIDE) - 1; unsigned char* v; unsigned short v_len; unsigned char* s; size_t s_len; size_t offset; // if it is a version string, append our data if (name_id != 5) return 0; if (platform_id == 1 || (platform_id == 3 && !(encoding_id == 1 || encoding_id == 10))) { // one-byte or multi-byte encodings v = idata->data; v_len = idata->data_len; s = ttfautohint_string; s_len = ttfautohint_string_len; offset = 2; } else { // (two-byte) UTF-16BE for everything else v = idata->data_wide; v_len = idata->data_wide_len; s = ttfautohint_string_wide; s_len = ttfautohint_string_wide_len; offset = 4; } // if we already have an ttfautohint info string, // remove it up to a following `;' character (or end of string) unsigned char* s_start = (unsigned char*)memmem(*str, *len, s, s_len); if (s_start) { unsigned char* s_end = s_start + offset; unsigned char* limit = *str + *len; while (s_end < limit) { if (*s_end == ';') { if (offset == 2) break; else { if (*(s_end - 1) == '\0') // UTF-16BE { s_end--; break; } } } s_end++; } while (s_end < limit) *s_start++ = *s_end++; *len -= s_end - s_start; } // do nothing if the string would become too long if (*len > 0xFFFF - v_len) return 0; unsigned short len_new = *len + v_len; unsigned char* str_new = (unsigned char*)realloc(*str, len_new); if (!str_new) return 1; *str = str_new; memcpy(*str + *len, v, v_len); *len = len_new; return 0; } } // extern "C" // end of info.cpp ttfautohint-0.97/frontend/ttlineedit.h0000644000175000001440000000135112076552172015103 00000000000000// ttlineedit.h // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. #ifndef __TTLINEEDIT_H__ #define __TTLINEEDIT_H__ #include #include class Tooltip_Line_Edit : public QLineEdit { Q_OBJECT public: Tooltip_Line_Edit(QWidget* = 0); public slots: void change_tooltip(QString); }; #endif // __TTLINEEDIT_H__ // end of ttlineedit.h ttfautohint-0.97/frontend/maingui.cpp0000644000175000001440000012443112231351177014722 00000000000000// maingui.cpp // Copyright (C) 2012-2013 by Werner Lemberg. // // This file is part of the ttfautohint library, and may only be used, // modified, and distributed under the terms given in `COPYING'. By // continuing to use, modify, or distribute this file you indicate that you // have read `COPYING' and understand and accept it fully. // // The file `COPYING' mentioned in the previous paragraph is distributed // with the ttfautohint library. #include #include #include #include #include #include "info.h" #include "maingui.h" #include // XXX Qt 4.8 bug: locale->quoteString("foo") // inserts wrongly encoded quote characters // into rich text QString #if HAVE_QT_QUOTESTRING # define QUOTE_STRING(x) locale->quoteString(x) # define QUOTE_STRING_LITERAL(x) locale->quoteString(x) #else # define QUOTE_STRING(x) "\"" + x + "\"" # define QUOTE_STRING_LITERAL(x) "\"" x "\"" #endif // the available script tags and its descriptions are directly extracted // from `ttfautohint-scripts.h' typedef struct Script_Names_ { const char* tag; const char* description; } Script_Names; #undef SCRIPT #define SCRIPT(s, S, d) \ {#s, d}, const Script_Names script_names[] = { #include {NULL, NULL} }; Main_GUI::Main_GUI(int range_min, int range_max, int limit, bool gray, bool gdi, bool dw, int increase, const char* exceptions, bool ignore, bool wincomp, bool pre, bool composites, bool no, const char* fallback, bool symb, bool dh) : hinting_range_min(range_min), hinting_range_max(range_max), hinting_limit(limit), gray_strong_stem_width(gray), gdi_cleartype_strong_stem_width(gdi), dw_cleartype_strong_stem_width(dw), increase_x_height(increase), x_height_snapping_exceptions_string(exceptions), ignore_restrictions(ignore), windows_compatibility(wincomp), pre_hinting(pre), hint_composites(composites), no_info(no), symbol(symb), dehint(dh) { int i; int dflt_script_idx = 0; // map fallback script tag to an index, // replacing an invalid one with the default value for (i = 0; script_names[i].tag; i++) { if (!strcmp("dflt", script_names[i].tag)) dflt_script_idx = i; if (!strcmp(fallback, script_names[i].tag)) break; } fallback_script_idx = script_names[i].tag ? i : dflt_script_idx; x_height_snapping_exceptions = NULL; create_layout(); create_connections(); create_actions(); create_menus(); create_status_bar(); set_defaults(); read_settings(); setUnifiedTitleAndToolBarOnMac(true); // XXX register translations somewhere and loop over them if (QLocale::system().name() == "en_US") locale = new QLocale; else locale = new QLocale(QLocale::C); } Main_GUI::~Main_GUI() { number_set_free(x_height_snapping_exceptions); } // overloading void Main_GUI::closeEvent(QCloseEvent* event) { write_settings(); event->accept(); } void Main_GUI::about() { QMessageBox::about(this, tr("About TTFautohint"), tr("

This is TTFautohint version %1
" " Copyright %2 2011-2013
" " by Werner Lemberg <wl@gnu.org>

" "" "

TTFautohint adds new auto-generated hints" " to a TrueType font or TrueType collection.

" "" "

License:" " FreeType" " License (FTL) or" " GNU" " GPLv2

") .arg(VERSION) .arg(QChar(0xA9))); } void Main_GUI::browse_input() { // XXX remember last directory QString file = QFileDialog::getOpenFileName( this, tr("Open Input File"), QDir::homePath(), ""); if (!file.isEmpty()) input_line->setText(QDir::toNativeSeparators(file)); } void Main_GUI::browse_output() { // XXX remember last directory QString file = QFileDialog::getSaveFileName( this, tr("Open Output File"), QDir::homePath(), ""); if (!file.isEmpty()) output_line->setText(QDir::toNativeSeparators(file)); } void Main_GUI::check_min() { int min = min_box->value(); int max = max_box->value(); int limit = limit_box->value(); if (min > max) max_box->setValue(min); if (min > limit) limit_box->setValue(min); } void Main_GUI::check_max() { int min = min_box->value(); int max = max_box->value(); int limit = limit_box->value(); if (max < min) min_box->setValue(max); if (max > limit) limit_box->setValue(max); } void Main_GUI::check_limit() { int min = min_box->value(); int max = max_box->value(); int limit = limit_box->value(); if (limit < max) max_box->setValue(limit); if (limit < min) min_box->setValue(limit); } void Main_GUI::check_dehint() { if (dehint_box->isChecked()) { min_label->setEnabled(false); min_box->setEnabled(false); max_label->setEnabled(false); max_box->setEnabled(false); fallback_label->setEnabled(false); fallback_box->setEnabled(false); no_limit_box->setEnabled(false); limit_label->setEnabled(false); limit_box->setEnabled(false); no_increase_box->setEnabled(false); increase_label->setEnabled(false); increase_box->setEnabled(false); snapping_label->setEnabled(false); snapping_line->setEnabled(false); wincomp_box->setEnabled(false); pre_box->setEnabled(false); hint_box->setEnabled(false); symbol_box->setEnabled(false); stem_label->setEnabled(false); gray_box->setEnabled(false); gdi_box->setEnabled(false); dw_box->setEnabled(false); } else { min_label->setEnabled(true); min_box->setEnabled(true); max_label->setEnabled(true); max_box->setEnabled(true); fallback_label->setEnabled(true); fallback_box->setEnabled(true); no_limit_box->setEnabled(true); check_no_limit(); no_increase_box->setEnabled(true); check_no_increase(); snapping_label->setEnabled(true); snapping_line->setEnabled(true); wincomp_box->setEnabled(true); pre_box->setEnabled(true); hint_box->setEnabled(true); symbol_box->setEnabled(true); stem_label->setEnabled(true); gray_box->setEnabled(true); gdi_box->setEnabled(true); dw_box->setEnabled(true); } } void Main_GUI::check_no_limit() { if (no_limit_box->isChecked()) { limit_label->setEnabled(false); limit_box->setEnabled(false); } else { limit_label->setEnabled(true); limit_box->setEnabled(true); } } void Main_GUI::check_no_increase() { if (no_increase_box->isChecked()) { increase_label->setEnabled(false); increase_box->setEnabled(false); } else { increase_label->setEnabled(true); increase_box->setEnabled(true); } } void Main_GUI::check_run() { if (input_line->text().isEmpty() || output_line->text().isEmpty()) run_button->setEnabled(false); else run_button->setEnabled(true); } void Main_GUI::absolute_input() { QString input_name = QDir::fromNativeSeparators(input_line->text()); if (!input_name.isEmpty() && QDir::isRelativePath(input_name)) { QDir cur_path(QDir::currentPath() + "/" + input_name); input_line->setText(QDir::toNativeSeparators(cur_path.absolutePath())); } } void Main_GUI::absolute_output() { QString output_name = QDir::fromNativeSeparators(output_line->text()); if (!output_name.isEmpty() && QDir::isRelativePath(output_name)) { QDir cur_path(QDir::currentPath() + "/" + output_name); output_line->setText(QDir::toNativeSeparators(cur_path.absolutePath())); } } void Main_GUI::check_number_set() { QString text = snapping_line->text(); QString qs; // construct ASCII string from arbitrary Unicode data; // the idea is to accept, say, CJK fullwidth digits also for (int i = 0; i < text.size(); i++) { QChar c = text.at(i); int digit = c.digitValue(); if (digit >= 0) qs += QString::number(digit); else if (c.isSpace()) qs += ' '; // U+30FC KATAGANA-HIRAGANA PROLONGED SOUND MARK is assigned // to the `-' key in some Japanese input methods else if (c.category() == QChar::Punctuation_Dash || c == QChar(0x30FC)) qs += '-'; // various Unicode COMMA characters, // including representation forms else if (c == QChar(',') || c == QChar(0x055D) || c == QChar(0x060C) || c == QChar(0x07F8) || c == QChar(0x1363) || c == QChar(0x1802) || c == QChar(0x1808) || c == QChar(0x3001) || c == QChar(0xA4FE) || c == QChar(0xA60D) || c == QChar(0xA6F5) || c == QChar(0xFE10) || c == QChar(0xFE11) || c == QChar(0xFE50) || c == QChar(0xFE51) || c == QChar(0xFF0C) || c == QChar(0xFF64)) qs += ','; else qs += c; // we do error handling below } if (x_height_snapping_exceptions) number_set_free(x_height_snapping_exceptions); QByteArray str = qs.toLocal8Bit(); const char* s = number_set_parse(str.constData(), &x_height_snapping_exceptions, 6, 0x7FFF); if (s && *s) { statusBar()->setStyleSheet("color: red;"); if (x_height_snapping_exceptions == NUMBERSET_ALLOCATION_ERROR) statusBar()->showMessage( tr("allocation error")); else if (x_height_snapping_exceptions == NUMBERSET_INVALID_CHARACTER) statusBar()->showMessage( tr("invalid character (use digits, dashes, commas, and spaces)")); else if (x_height_snapping_exceptions == NUMBERSET_OVERFLOW) statusBar()->showMessage( tr("overflow")); else if (x_height_snapping_exceptions == NUMBERSET_INVALID_RANGE) statusBar()->showMessage( tr("invalid range (minimum is 6, maximum is 32767)")); else if (x_height_snapping_exceptions == NUMBERSET_OVERLAPPING_RANGES) statusBar()->showMessage( tr("overlapping ranges")); else if (x_height_snapping_exceptions == NUMBERSET_NOT_ASCENDING) statusBar()->showMessage( tr("values und ranges must be specified in ascending order")); snapping_line->setText(qs); snapping_line->setFocus(Qt::OtherFocusReason); snapping_line->setCursorPosition(s - str.constData()); x_height_snapping_exceptions = NULL; } else { // normalize if there is no error char* new_str = number_set_show(x_height_snapping_exceptions, 6, 0x7FFF); snapping_line->setText(new_str); free(new_str); } } void Main_GUI::clear_status_bar() { statusBar()->clearMessage(); statusBar()->setStyleSheet(""); } int Main_GUI::check_filenames(const QString& input_name, const QString& output_name) { if (!QFile::exists(input_name)) { QMessageBox::warning( this, "TTFautohint", tr("The file %1 cannot be found.") .arg(QUOTE_STRING(QDir::toNativeSeparators(input_name))), QMessageBox::Ok, QMessageBox::Ok); return 0; } if (input_name == output_name) { QMessageBox::warning( this, "TTFautohint", tr("Input and output file names must be different."), QMessageBox::Ok, QMessageBox::Ok); return 0; } if (QFile::exists(output_name)) { int ret = QMessageBox::warning( this, "TTFautohint", tr("The file %1 already exists.\n" "Overwrite?") .arg(QUOTE_STRING(QDir::toNativeSeparators(output_name))), QMessageBox::Yes | QMessageBox::No, QMessageBox::No); if (ret == QMessageBox::No) return 0; } return 1; } int Main_GUI::open_files(const QString& input_name, FILE** in, const QString& output_name, FILE** out) { const int buf_len = 1024; char buf[buf_len]; *in = fopen(qPrintable(input_name), "rb"); if (!*in) { strerror_r(errno, buf, buf_len); QMessageBox::warning( this, "TTFautohint", tr("The following error occurred while opening input file %1:\n") .arg(QUOTE_STRING(QDir::toNativeSeparators(input_name))) + QString::fromLocal8Bit(buf), QMessageBox::Ok, QMessageBox::Ok); return 0; } *out = fopen(qPrintable(output_name), "wb"); if (!*out) { strerror_r(errno, buf, buf_len); QMessageBox::warning( this, "TTFautohint", tr("The following error occurred while opening output file %1:\n") .arg(QUOTE_STRING(QDir::toNativeSeparators(output_name))) + QString::fromLocal8Bit(buf), QMessageBox::Ok, QMessageBox::Ok); return 0; } return 1; } extern "C" { struct GUI_Progress_Data { long last_sfnt; bool begin; QProgressDialog* dialog; }; int gui_progress(long curr_idx, long num_glyphs, long curr_sfnt, long num_sfnts, void* user) { GUI_Progress_Data* data = static_cast(user); if (num_sfnts > 1 && curr_sfnt != data->last_sfnt) { data->dialog->setLabelText(QCoreApplication::translate( "GuiProgress", "Auto-hinting subfont %1 of %2" " with %3 glyphs...") .arg(curr_sfnt + 1) .arg(num_sfnts) .arg(num_glyphs)); if (curr_sfnt + 1 == num_sfnts) { data->dialog->setAutoReset(true); data->dialog->setAutoClose(true); } else { data->dialog->setAutoReset(false); data->dialog->setAutoClose(false); } data->last_sfnt = curr_sfnt; data->begin = true; } if (data->begin) { if (num_sfnts == 1) data->dialog->setLabelText(QCoreApplication::translate( "GuiProgress", "Auto-hinting %1 glyphs...") .arg(num_glyphs)); data->dialog->setMaximum(num_glyphs - 1); data->begin = false; } data->dialog->setValue(curr_idx); if (data->dialog->wasCanceled()) return 1; return 0; } } // extern "C" // return value 1 indicates a retry int Main_GUI::handle_error(TA_Error error, const unsigned char* error_string, QString output_name) { int ret = 0; if (error == TA_Err_Canceled) ; else if (error == TA_Err_Invalid_FreeType_Version) QMessageBox::critical( this, "TTFautohint", tr("FreeType version 2.4.5 or higher is needed.\n" "Are you perhaps using a wrong FreeType DLL?"), QMessageBox::Ok, QMessageBox::Ok); else if (error == TA_Err_Invalid_Font_Type) QMessageBox::warning( this, "TTFautohint", tr("This font is not a valid font" " in SFNT format with TrueType outlines.\n" "In particular, CFF outlines are not supported."), QMessageBox::Ok, QMessageBox::Ok); else if (error == TA_Err_Already_Processed) QMessageBox::warning( this, "TTFautohint", tr("This font has already been processed by TTFautohint."), QMessageBox::Ok, QMessageBox::Ok); else if (error == TA_Err_Missing_Legal_Permission) { int yesno = QMessageBox::warning( this, "TTFautohint", tr("Bit 1 in the %1 field of the %2 table is set:" " This font must not be modified" " without permission of the legal owner.\n" "Do you have such a permission?") .arg(QUOTE_STRING_LITERAL("fsType")) .arg(QUOTE_STRING_LITERAL("OS/2")), QMessageBox::Yes | QMessageBox::No, QMessageBox::No); if (yesno == QMessageBox::Yes) { ignore_restrictions = true; ret = 1; } } else if (error == TA_Err_Missing_Unicode_CMap) QMessageBox::warning( this, "TTFautohint", tr("No Unicode character map."), QMessageBox::Ok, QMessageBox::Ok); else if (error == TA_Err_Missing_Symbol_CMap) QMessageBox::warning( this, "TTFautohint", tr("No symbol character map."), QMessageBox::Ok, QMessageBox::Ok); else if (error == TA_Err_Missing_Glyph) QMessageBox::warning( this, "TTFautohint", tr("No glyph for the key character" " to derive standard stem width and height.\n" "For the latin script, this key character is %1 (U+006F).\n" "\n" "Set the %2 checkbox if you want to circumvent this test.") .arg(QUOTE_STRING_LITERAL("o")) .arg(QUOTE_STRING_LITERAL("symbol")), QMessageBox::Ok, QMessageBox::Ok); else QMessageBox::warning( this, "TTFautohint", tr("Error code 0x%1 while autohinting font:\n") .arg(error, 2, 16, QLatin1Char('0')) + QString::fromLocal8Bit((const char*)error_string), QMessageBox::Ok, QMessageBox::Ok); if (QFile::exists(output_name) && remove(qPrintable(output_name))) { const int buf_len = 1024; char buf[buf_len]; strerror_r(errno, buf, buf_len); QMessageBox::warning( this, "TTFautohint", tr("The following error occurred while removing output file %1:\n") .arg(QUOTE_STRING(QDir::toNativeSeparators(output_name))) + QString::fromLocal8Bit(buf), QMessageBox::Ok, QMessageBox::Ok); } return ret; } void Main_GUI::run() { statusBar()->clearMessage(); QString input_name = QDir::fromNativeSeparators(input_line->text()); QString output_name = QDir::fromNativeSeparators(output_line->text()); if (!check_filenames(input_name, output_name)) return; // we need C file descriptors for communication with TTF_autohint FILE* input; FILE* output; again: if (!open_files(input_name, &input, output_name, &output)) return; QProgressDialog dialog; dialog.setCancelButtonText(tr("Cancel")); dialog.setMinimumDuration(1000); dialog.setWindowModality(Qt::WindowModal); const unsigned char* error_string; TA_Info_Func info_func = info; GUI_Progress_Data gui_progress_data = {-1, true, &dialog}; Info_Data info_data; info_data.data = NULL; // must be deallocated after use info_data.data_wide = NULL; // must be deallocated after use info_data.data_len = 0; info_data.data_wide_len = 0; info_data.hinting_range_min = min_box->value(); info_data.hinting_range_max = max_box->value(); info_data.hinting_limit = no_limit_box->isChecked() ? 0 : limit_box->value(); info_data.gray_strong_stem_width = gray_box->isChecked(); info_data.gdi_cleartype_strong_stem_width = gdi_box->isChecked(); info_data.dw_cleartype_strong_stem_width = dw_box->isChecked(); info_data.increase_x_height = no_increase_box->isChecked() ? 0 : increase_box->value(); info_data.x_height_snapping_exceptions = x_height_snapping_exceptions; info_data.windows_compatibility = wincomp_box->isChecked(); info_data.pre_hinting = pre_box->isChecked(); info_data.hint_composites = hint_box->isChecked(); info_data.symbol = symbol_box->isChecked(); info_data.dehint = dehint_box->isChecked(); strncpy(info_data.fallback_script, script_names[fallback_box->currentIndex()].tag, sizeof (info_data.fallback_script)); if (info_box->isChecked()) { int ret = build_version_string(&info_data); if (ret == 1) QMessageBox::information( this, "TTFautohint", tr("Can't allocate memory for TTFautohint options string" " in name table."), QMessageBox::Ok, QMessageBox::Ok); else if (ret == 2) QMessageBox::information( this, "TTFautohint", tr("TTFautohint options string" " in name table too long."), QMessageBox::Ok, QMessageBox::Ok); } else info_func = NULL; QByteArray snapping_string = snapping_line->text().toLocal8Bit(); TA_Error error = TTF_autohint("in-file, out-file," "hinting-range-min, hinting-range-max," "hinting-limit," "gray-strong-stem-width," "gdi-cleartype-strong-stem-width," "dw-cleartype-strong-stem-width," "error-string," "progress-callback, progress-callback-data," "info-callback, info-callback-data," "ignore-restrictions," "windows-compatibility," "pre-hinting," "hint-composites," "increase-x-height," "x-height-snapping-exceptions," "fallback-script, symbol," "dehint", input, output, info_data.hinting_range_min, info_data.hinting_range_max, info_data.hinting_limit, info_data.gray_strong_stem_width, info_data.gdi_cleartype_strong_stem_width, info_data.dw_cleartype_strong_stem_width, &error_string, gui_progress, &gui_progress_data, info_func, &info_data, ignore_restrictions, info_data.windows_compatibility, info_data.pre_hinting, info_data.hint_composites, info_data.increase_x_height, snapping_string.constData(), info_data.fallback_script, info_data.symbol, info_data.dehint); if (info_box->isChecked()) { free(info_data.data); free(info_data.data_wide); } fclose(input); fclose(output); if (error) { if (handle_error(error, error_string, output_name)) goto again; } else statusBar()->showMessage(tr("Auto-hinting finished.")); } // XXX distances are specified in pixels, // making the layout dependent on the output device resolution void Main_GUI::create_layout() { // // file stuff // QCompleter* completer = new QCompleter(this); QFileSystemModel* model = new QFileSystemModel(completer); model->setRootPath(QDir::rootPath()); completer->setModel(model); input_label = new QLabel(tr("&Input File:")); input_line = new Drag_Drop_Line_Edit; input_button = new QPushButton(tr("Browse...")); input_label->setBuddy(input_line); // enforce rich text to get nice word wrapping input_label->setToolTip( tr("The input file, either a TrueType font (TTF)," " TrueType collection (TTC), or a TrueType-based OpenType font.")); input_line->setCompleter(completer); output_label = new QLabel(tr("&Output File:")); output_line = new Drag_Drop_Line_Edit; output_button = new QPushButton(tr("Browse...")); output_label->setBuddy(output_line); output_label->setToolTip( tr("The output file, which will be essentially identical" " to the input font but will contain new, generated hints.")); output_line->setCompleter(completer); // layout QGridLayout* file_layout = new QGridLayout; file_layout->addWidget(input_label, 0, 0, Qt::AlignRight); file_layout->addWidget(input_line, 0, 1); file_layout->addWidget(input_button, 0, 2); file_layout->setRowStretch(1, 1); file_layout->addWidget(output_label, 2, 0, Qt::AlignRight); file_layout->addWidget(output_line, 2, 1); file_layout->addWidget(output_button, 2, 2); // // minmax controls // min_label = new QLabel(tr("Hint Set Range Mi&nimum:")); min_box = new QSpinBox; min_label->setBuddy(min_box); min_label->setToolTip( tr("The minimum PPEM value of the range for which" " TTFautohint computes hint sets." " A hint set for a given PPEM value hints this size optimally." " The larger the range, the more hint sets are considered," " usually increasing the size of the bytecode.
" "Note that changing this range doesn't influence" " the gasp table:" " Hinting is enabled for all sizes.")); min_box->setKeyboardTracking(false); min_box->setRange(2, 10000); max_label = new QLabel(tr("Hint Set Range Ma&ximum:")); max_box = new QSpinBox; max_label->setBuddy(max_box); max_label->setToolTip( tr("The maximum PPEM value of the range for which" " TTFautohint computes hint sets." " A hint set for a given PPEM value hints this size optimally." " The larger the range, the more hint sets are considered," " usually increasing the size of the bytecode.
" "Note that changing this range doesn't influence" " the gasp table:" " Hinting is enabled for all sizes.")); max_box->setKeyboardTracking(false); max_box->setRange(2, 10000); // // hinting and fallback controls // fallback_label = new QLabel(tr("Fallback &Script:")); fallback_box = new QComboBox; fallback_label->setBuddy(fallback_box); fallback_label->setToolTip( tr("This sets the fallback script module for glyphs" " that TTFautohint can't map to a script automatically.")); for (int i = 0; script_names[i].tag; i++) { // XXX: how to provide translations? fallback_box->insertItem(i, QString("%1 (%2)") .arg(script_names[i].tag) .arg(script_names[i].description)); } // // hinting limit // limit_label = new QLabel(tr("Hinting &Limit:")); limit_box = new QSpinBox; limit_label->setBuddy(limit_box); limit_label->setToolTip( tr("Make TTFautohint add bytecode to the output font so that" " sizes larger than this PPEM value are not hinted" " (regardless of the values in the gasp table).")); limit_box->setKeyboardTracking(false); limit_box->setRange(2, 10000); no_limit_box = new QCheckBox(tr("No Hinting Limit"), this); no_limit_box->setToolTip( tr("If switched on, TTFautohint adds no hinting limit" " to the bytecode.")); // // x height increase limit // increase_label = new QLabel(tr("x Height In&crease Limit:")); increase_box = new QSpinBox; increase_label->setBuddy(increase_box); increase_label->setToolTip( tr("For PPEM values in the range 5 < PPEM < n," " where n is the value selected by this spin box," " round up the font's x height much more often than normally.
" "Use this if holes in letters like e get filled," " for example.")); increase_box->setKeyboardTracking(false); increase_box->setRange(6, 10000); no_increase_box = new QCheckBox(tr("No x Height Increase"), this); no_increase_box->setToolTip( tr("If switched on," " TTFautohint does not increase the x height.")); // // x height snapping exceptions // snapping_label = new QLabel(tr("x Height Snapping Excep&tions:")); snapping_line = new Tooltip_Line_Edit; snapping_label->setBuddy(snapping_line); snapping_label->setToolTip( tr("

A list of comma separated PPEM values or value ranges" " at which no x height snapping shall be applied" " (x height snapping usually slightly increases" " the size of all glyphs).

" "" "Examples:
" "  2, 3-5, 12-17
" "  -20, 40-" " (meaning PPEM ≤ 20 or PPEM ≥ 40)
" "  - (meaning all possible PPEM values)")); // // flags // wincomp_box = new QCheckBox(tr("Windows Com&patibility"), this); wincomp_box->setToolTip( tr("If switched on, add two artificial blue zones positioned at the" " usWinAscent and usWinDescent values" " (from the font's OS/2 table)." " This option, usually in combination" " with value - (a single dash)" " for the x Height Snapping Exceptions option," " should be used if those two OS/2 values are tight," " and you are experiencing clipping during rendering.")); pre_box = new QCheckBox(tr("Pr&e-hinting"), this); pre_box->setToolTip( tr("If switched on, the original bytecode of the input font" " gets applied before TTFautohint starts processing" " the outlines of the glyphs.")); hint_box = new QCheckBox(tr("Hint Co&mposites") + " ", this); // make label wider hint_box->setToolTip( tr("If switched on, TTFautohint hints composite glyphs" " as a whole, including subglyphs." " Otherwise, glyph components get hinted separately.
" "Deactivating this flag reduces the bytecode size enormously," " however, it might yield worse results.")); symbol_box = new QCheckBox(tr("S&ymbol Font"), this); symbol_box->setToolTip( tr("If switched on, TTFautohint uses default values" " for standard stem width and height" " instead of deriving these values from the input font.
" "Use this for fonts that don't contain glyphs" " of a (supported) script.")); dehint_box = new QCheckBox(tr("&Dehint"), this); dehint_box->setToolTip( tr("If set, remove all hints from the font.")); info_box = new QCheckBox(tr("Add ttf&autohint Info"), this); info_box->setToolTip( tr("If switched on, information about TTFautohint" " and its calling parameters are added to the version string(s)" " (name ID 5) in the name table.")); // // stem width and positioning // stem_label = new QLabel(tr("Strong Stem &Width and Positioning:")); stem_label->setToolTip( tr("TTFautohint provides two different hinting algorithms" " that can be selected for various hinting modes." "" "

strong (checkbox set):" " Position horizontal stems and snap stem widths" " to integer pixel values. While making the output look crisper," " outlines become more distorted.

" "" "

smooth (checkbox not set):" " Use discrete values for horizontal stems and stem widths." " This only slightly increases the contrast" " but avoids larger outline distortion.

")); gray_box = new QCheckBox(tr("Grayscale"), this); gray_box->setToolTip( tr("Grayscale rendering, no ClearType activated.")); stem_label->setBuddy(gray_box); gdi_box = new QCheckBox(tr("GDI ClearType"), this); gdi_box->setToolTip( tr("GDI ClearType rendering," " introduced in 2000 for Windows XP.
" "The rasterizer version (as returned by the" " GETINFO bytecode instruction) is in the range" " 36 ≤ version < 38, and ClearType is enabled.
" "Along the vertical axis, this mode behaves like B/W rendering.")); dw_box = new QCheckBox(tr("DW ClearType"), this); dw_box->setToolTip( tr("DirectWrite ClearType rendering," " introduced in 2008 for Windows Vista.
" "The rasterizer version (as returned by the" " GETINFO bytecode instruction) is ≥ 38," " ClearType is enabled, and subpixel positioning is enabled also.
" "Smooth rendering along the vertical axis.")); // // running // run_button = new QPushButton(" " + tr("&Run") + " "); // make label wider // // the whole gui // QGridLayout* gui_layout = new QGridLayout; QFrame* hline = new QFrame; hline->setFrameShape(QFrame::HLine); int row = 0; // this counter simplifies inserting new items gui_layout->setRowMinimumHeight(row, 10); // XXX urgh, pixels... gui_layout->setRowStretch(row++, 1); gui_layout->addLayout(file_layout, row, 0, row, -1); gui_layout->setRowStretch(row++, 1); gui_layout->addWidget(hline, row, 0, row, -1); gui_layout->setRowStretch(row++, 1); gui_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_layout->setRowStretch(row++, 1); gui_layout->addWidget(min_label, row, 0, Qt::AlignRight); gui_layout->addWidget(min_box, row++, 1, Qt::AlignLeft); gui_layout->addWidget(max_label, row, 0, Qt::AlignRight); gui_layout->addWidget(max_box, row++, 1, Qt::AlignLeft); gui_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_layout->setRowStretch(row++, 1); gui_layout->addWidget(fallback_label, row, 0, Qt::AlignRight); gui_layout->addWidget(fallback_box, row++, 1, Qt::AlignLeft); gui_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_layout->setRowStretch(row++, 1); gui_layout->addWidget(limit_label, row, 0, Qt::AlignRight); gui_layout->addWidget(limit_box, row++, 1, Qt::AlignLeft); gui_layout->addWidget(no_limit_box, row++, 1); gui_layout->addWidget(increase_label, row, 0, Qt::AlignRight); gui_layout->addWidget(increase_box, row++, 1, Qt::AlignLeft); gui_layout->addWidget(no_increase_box, row++, 1); gui_layout->addWidget(snapping_label, row, 0, Qt::AlignRight); gui_layout->addWidget(snapping_line, row++, 1, Qt::AlignLeft); gui_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_layout->setRowStretch(row++, 1); gui_layout->addWidget(wincomp_box, row++, 1); gui_layout->addWidget(pre_box, row++, 1); gui_layout->addWidget(hint_box, row++, 1); gui_layout->addWidget(symbol_box, row++, 1); gui_layout->addWidget(dehint_box, row++, 1); gui_layout->addWidget(info_box, row++, 1); gui_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_layout->setRowStretch(row++, 1); gui_layout->addWidget(stem_label, row, 0, Qt::AlignRight); gui_layout->addWidget(gray_box, row++, 1); gui_layout->addWidget(gdi_box, row++, 1); gui_layout->addWidget(dw_box, row++, 1); gui_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_layout->setRowStretch(row++, 1); gui_layout->addWidget(run_button, row++, 1, Qt::AlignRight); // create dummy widget to register layout QWidget* main_widget = new QWidget; main_widget->setLayout(gui_layout); setCentralWidget(main_widget); setWindowTitle("TTFautohint"); } // XXX distances are specified in pixels, // making the layout dependent on the output device resolution void Main_GUI::create_alternative_layout() { // top area QGridLayout* file_alt_layout = new QGridLayout; file_alt_layout->addWidget(input_label, 0, 0, Qt::AlignRight); file_alt_layout->addWidget(input_line, 0, 1); file_alt_layout->addWidget(input_button, 0, 2); file_alt_layout->setRowStretch(1, 1); file_alt_layout->addWidget(output_label, 2, 0, Qt::AlignRight); file_alt_layout->addWidget(output_line, 2, 1); file_alt_layout->addWidget(output_button, 2, 2); QGridLayout* gui_alt_layout = new QGridLayout; QFrame* hline = new QFrame; hline->setFrameShape(QFrame::HLine); int row = 0; // this counter simplifies inserting new items // margin gui_alt_layout->setColumnMinimumWidth(0, 10); // XXX urgh, pixels... gui_alt_layout->setColumnStretch(0, 1); // left gui_alt_layout->setRowMinimumHeight(row, 10); // XXX urgh, pixels... gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->addLayout(file_alt_layout, row, 0, row, -1); gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->addWidget(hline, row, 0, row, -1); gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->addWidget(min_label, row, 1, Qt::AlignRight); gui_alt_layout->addWidget(min_box, row++, 2, Qt::AlignLeft); gui_alt_layout->addWidget(max_label, row, 1, Qt::AlignRight); gui_alt_layout->addWidget(max_box, row++, 2, Qt::AlignLeft); gui_alt_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->addWidget(fallback_label, row, 1, Qt::AlignRight); gui_alt_layout->addWidget(fallback_box, row++, 2, Qt::AlignLeft); gui_alt_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->addWidget(limit_label, row, 1, Qt::AlignRight); gui_alt_layout->addWidget(limit_box, row++, 2, Qt::AlignLeft); gui_alt_layout->addWidget(no_limit_box, row++, 2); gui_alt_layout->addWidget(increase_label, row, 1, Qt::AlignRight); gui_alt_layout->addWidget(increase_box, row++, 2, Qt::AlignLeft); gui_alt_layout->addWidget(no_increase_box, row++, 2); gui_alt_layout->addWidget(snapping_label, row, 1, Qt::AlignRight); gui_alt_layout->addWidget(snapping_line, row++, 2, Qt::AlignLeft); // column separator gui_alt_layout->setColumnMinimumWidth(3, 20); // XXX urgh, pixels... gui_alt_layout->setColumnStretch(3, 1); // right row = 4; gui_alt_layout->addWidget(wincomp_box, row++, 4); gui_alt_layout->addWidget(pre_box, row++, 4); gui_alt_layout->addWidget(hint_box, row++, 4); gui_alt_layout->addWidget(symbol_box, row++, 4); gui_alt_layout->addWidget(dehint_box, row++, 4); gui_alt_layout->addWidget(info_box, row++, 4); gui_alt_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->addWidget(stem_label, row++, 4); QGridLayout* stem_layout = new QGridLayout; stem_layout->setColumnMinimumWidth(0, 20); // XXX urgh, pixels... stem_layout->addWidget(gray_box, 0, 1); stem_layout->addWidget(gdi_box, 1, 1); stem_layout->addWidget(dw_box, 2, 1); gui_alt_layout->addLayout(stem_layout, row, 4, 3, 1); row += 3; gui_alt_layout->setRowMinimumHeight(row, 20); // XXX urgh, pixels... gui_alt_layout->setRowStretch(row++, 1); gui_alt_layout->addWidget(run_button, row++, 4, Qt::AlignRight); // margin gui_alt_layout->setColumnMinimumWidth(5, 10); // XXX urgh, pixels... gui_alt_layout->setColumnStretch(5, 1); // create dummy widget to register layout QWidget* main_alt_widget = new QWidget; main_alt_widget->setLayout(gui_alt_layout); // setCentralWidget automatically deletes the old widget setCentralWidget(main_alt_widget); setWindowTitle("TTFautohint"); } void Main_GUI::create_connections() { connect(input_button, SIGNAL(clicked()), this, SLOT(browse_input())); connect(output_button, SIGNAL(clicked()), this, SLOT(browse_output())); connect(input_line, SIGNAL(textChanged(QString)), this, SLOT(check_run())); connect(output_line, SIGNAL(textChanged(QString)), this, SLOT(check_run())); connect(input_line, SIGNAL(editingFinished()), this, SLOT(absolute_input())); connect(output_line, SIGNAL(editingFinished()), this, SLOT(absolute_output())); connect(min_box, SIGNAL(valueChanged(int)), this, SLOT(check_min())); connect(max_box, SIGNAL(valueChanged(int)), this, SLOT(check_max())); connect(limit_box, SIGNAL(valueChanged(int)), this, SLOT(check_limit())); connect(no_limit_box, SIGNAL(clicked()), this, SLOT(check_no_limit())); connect(no_increase_box, SIGNAL(clicked()), this, SLOT(check_no_increase())); connect(snapping_line, SIGNAL(editingFinished()), this, SLOT(check_number_set())); connect(snapping_line, SIGNAL(textEdited(QString)), this, SLOT(clear_status_bar())); connect(dehint_box, SIGNAL(clicked()), this, SLOT(check_dehint())); connect(run_button, SIGNAL(clicked()), this, SLOT(run())); } void Main_GUI::create_actions() { exit_act = new QAction(tr("E&xit"), this); exit_act->setShortcuts(QKeySequence::Quit); connect(exit_act, SIGNAL(triggered()), this, SLOT(close())); about_act = new QAction(tr("&About"), this); connect(about_act, SIGNAL(triggered()), this, SLOT(about())); about_Qt_act = new QAction(tr("About &Qt"), this); connect(about_Qt_act, SIGNAL(triggered()), qApp, SLOT(aboutQt())); } void Main_GUI::create_menus() { file_menu = menuBar()->addMenu(tr("&File")); file_menu->addAction(exit_act); help_menu = menuBar()->addMenu(tr("&Help")); help_menu->addAction(about_act); help_menu->addAction(about_Qt_act); } void Main_GUI::create_status_bar() { statusBar()->showMessage(""); } void Main_GUI::set_defaults() { min_box->setValue(hinting_range_min); max_box->setValue(hinting_range_max); fallback_box->setCurrentIndex(fallback_script_idx); limit_box->setValue(hinting_limit ? hinting_limit : hinting_range_max); // handle command line option `--hinting-limit=0' if (!hinting_limit) { hinting_limit = max_box->value(); no_limit_box->setChecked(true); } increase_box->setValue(increase_x_height ? increase_x_height : TA_INCREASE_X_HEIGHT); // handle command line option `--increase-x-height=0' if (!increase_x_height) { increase_x_height = TA_INCREASE_X_HEIGHT; no_increase_box->setChecked(true); } snapping_line->setText(x_height_snapping_exceptions_string); if (windows_compatibility) wincomp_box->setChecked(true); if (pre_hinting) pre_box->setChecked(true); if (hint_composites) hint_box->setChecked(true); if (symbol) symbol_box->setChecked(true); if (dehint) dehint_box->setChecked(true); if (!no_info) info_box->setChecked(true); if (gray_strong_stem_width) gray_box->setChecked(true); if (gdi_cleartype_strong_stem_width) gdi_box->setChecked(true); if (dw_cleartype_strong_stem_width) dw_box->setChecked(true); run_button->setEnabled(false); check_min(); check_max(); check_limit(); check_no_limit(); check_no_increase(); check_number_set(); // do this last since it disables almost everything check_dehint(); } void Main_GUI::read_settings() { QSettings settings; // QPoint pos = settings.value("pos", QPoint(200, 200)).toPoint(); // QSize size = settings.value("size", QSize(400, 400)).toSize(); // resize(size); // move(pos); } void Main_GUI::write_settings() { QSettings settings; // settings.setValue("pos", pos()); // settings.setValue("size", size()); } // end of maingui.cpp ttfautohint-0.97/bootstrap0000755000175000001440000007330412172721643012716 00000000000000#! /bin/sh # Print a version string. scriptversion=2013-07-03.20; # UTC # Bootstrap this package from checked-out sources. # Copyright (C) 2003-2013 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 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 . # Originally written by Paul Eggert. The canonical version of this # script is maintained as build-aux/bootstrap in gnulib, however, to # be useful to your project, you should place a copy of it under # version control in the top-level directory of your project. The # intent is that all customization can be done with a bootstrap.conf # file also maintained in your version control; gnulib comes with a # template build-aux/bootstrap.conf to get you started. # Please report bugs or propose patches to bug-gnulib@gnu.org. nl=' ' # Ensure file names are sorted consistently across platforms. LC_ALL=C export LC_ALL # Ensure that CDPATH is not set. Otherwise, the output from cd # would cause trouble in at least one use below. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH local_gl_dir=gl me=$0 usage() { cat <&2 } # warn_ WORD1... warn_ () { # If IFS does not start with ' ', set it and emit the warning in a subshell. case $IFS in ' '*) warnf_ '%s\n' "$*";; *) (IFS=' '; warn_ "$@");; esac } # die WORD1... die() { warn_ "$@"; exit 1; } # Configuration. # Name of the Makefile.am gnulib_mk=gnulib.mk # List of gnulib modules needed. gnulib_modules= # Any gnulib files needed that are not in modules. gnulib_files= : ${AUTOPOINT=autopoint} : ${AUTORECONF=autoreconf} # A function to be called right after gnulib-tool is run. # Override it via your own definition in bootstrap.conf. bootstrap_post_import_hook() { :; } # A function to be called after everything else in this script. # Override it via your own definition in bootstrap.conf. bootstrap_epilogue() { :; } # The command to download all .po files for a specified domain into # a specified directory. Fill in the first %s is the domain name, and # the second with the destination directory. Use rsync's -L and -r # options because the latest/%s directory and the .po files within are # all symlinks. po_download_command_format=\ "rsync --delete --exclude '*.s1' -Lrtvz \ 'translationproject.org::tp/latest/%s/' '%s'" # Fallback for downloading .po files (if rsync fails). po_download_command_format2=\ "wget --mirror -nd -q -np -A.po -P '%s' \ http://translationproject.org/latest/%s/" # Prefer a non-empty tarname (4th argument of AC_INIT if given), else # fall back to the package name (1st argument with munging) extract_package_name=' /^AC_INIT(\[*/{ s/// /^[^,]*,[^,]*,[^,]*,[ []*\([^][ ,)]\)/{ s//\1/ s/[],)].*// p q } s/[],)].*// s/^GNU // y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ s/[^abcdefghijklmnopqrstuvwxyz0123456789_]/-/g p } ' package=$(sed -n "$extract_package_name" configure.ac) \ || die 'cannot find package name in configure.ac' gnulib_name=lib$package build_aux=build-aux source_base=lib m4_base=m4 doc_base=doc tests_base=tests gnulib_extra_files='' # Additional gnulib-tool options to use. Use "\newline" to break lines. gnulib_tool_option_extras= # Other locale categories that need message catalogs. EXTRA_LOCALE_CATEGORIES= # Additional xgettext options to use. Use "\\\newline" to break lines. XGETTEXT_OPTIONS='\\\ --flag=_:1:pass-c-format\\\ --flag=N_:1:pass-c-format\\\ --flag=error:3:c-format --flag=error_at_line:5:c-format\\\ ' # Package bug report address and copyright holder for gettext files COPYRIGHT_HOLDER='Free Software Foundation, Inc.' MSGID_BUGS_ADDRESS=bug-$package@gnu.org # Files we don't want to import. excluded_files= # File that should exist in the top directory of a checked out hierarchy, # but not in a distribution tarball. checkout_only_file=README-hacking # Whether to use copies instead of symlinks. copy=false # Set this to '.cvsignore .gitignore' in bootstrap.conf if you want # those files to be generated in directories like lib/, m4/, and po/. # Or set it to 'auto' to make this script select which to use based # on which version control system (if any) is used in the source directory. vc_ignore=auto # Set this to true in bootstrap.conf to enable --bootstrap-sync by # default. bootstrap_sync=false # Use git to update gnulib sources use_git=true # find_tool ENVVAR NAMES... # ------------------------- # Search for a required program. Use the value of ENVVAR, if set, # otherwise find the first of the NAMES that can be run (i.e., # supports --version). If found, set ENVVAR to the program name, # die otherwise. # # FIXME: code duplication, see also gnu-web-doc-update. find_tool () { find_tool_envvar=$1 shift find_tool_names=$@ eval "find_tool_res=\$$find_tool_envvar" if test x"$find_tool_res" = x; then for i do if ($i --version /dev/null 2>&1; then find_tool_res=$i break fi done else find_tool_error_prefix="\$$find_tool_envvar: " fi test x"$find_tool_res" != x \ || die "one of these is required: $find_tool_names" ($find_tool_res --version /dev/null 2>&1 \ || die "${find_tool_error_prefix}cannot run $find_tool_res --version" eval "$find_tool_envvar=\$find_tool_res" eval "export $find_tool_envvar" } # Find sha1sum, named gsha1sum on MacPorts, and shasum on Mac OS X 10.6. find_tool SHA1SUM sha1sum gsha1sum shasum # Override the default configuration, if necessary. # Make sure that bootstrap.conf is sourced from the current directory # if we were invoked as "sh bootstrap". case "$0" in */*) test -r "$0.conf" && . "$0.conf" ;; *) test -r "$0.conf" && . ./"$0.conf" ;; esac # Extra files from gnulib, which override files from other sources. test -z "${gnulib_extra_files}" && \ gnulib_extra_files=" build-aux/install-sh build-aux/mdate-sh build-aux/texinfo.tex build-aux/depcomp build-aux/config.guess build-aux/config.sub doc/INSTALL " if test "$vc_ignore" = auto; then vc_ignore= test -d .git && vc_ignore=.gitignore test -d CVS && vc_ignore="$vc_ignore .cvsignore" fi # Translate configuration into internal form. # Parse options. for option do case $option in --help) usage exit;; --gnulib-srcdir=*) GNULIB_SRCDIR=${option#--gnulib-srcdir=};; --skip-po) SKIP_PO=t;; --force) checkout_only_file=;; --copy) copy=true;; --bootstrap-sync) bootstrap_sync=true;; --no-bootstrap-sync) bootstrap_sync=false;; --no-git) use_git=false;; *) die "$option: unknown option";; esac done $use_git || test -d "$GNULIB_SRCDIR" \ || die "Error: --no-git requires --gnulib-srcdir" if test -n "$checkout_only_file" && test ! -r "$checkout_only_file"; then die "Bootstrapping from a non-checked-out distribution is risky." fi # Strip blank and comment lines to leave significant entries. gitignore_entries() { sed '/^#/d; /^$/d' "$@" } # If $STR is not already on a line by itself in $FILE, insert it at the start. # Entries are inserted at the start of the ignore list to ensure existing # entries starting with ! are not overridden. Such entries support # whitelisting exceptions after a more generic blacklist pattern. insert_if_absent() { file=$1 str=$2 test -f $file || touch $file test -r $file || die "Error: failed to read ignore file: $file" duplicate_entries=$(gitignore_entries $file | sort | uniq -d) if [ "$duplicate_entries" ] ; then die "Error: Duplicate entries in $file: " $duplicate_entries fi linesold=$(gitignore_entries $file | wc -l) linesnew=$(echo "$str" | gitignore_entries - $file | sort -u | wc -l) if [ $linesold != $linesnew ] ; then { echo "$str" | cat - $file > $file.bak && mv $file.bak $file; } \ || die "insert_if_absent $file $str: failed" fi } # Adjust $PATTERN for $VC_IGNORE_FILE and insert it with # insert_if_absent. insert_vc_ignore() { vc_ignore_file="$1" pattern="$2" case $vc_ignore_file in *.gitignore) # A .gitignore entry that does not start with '/' applies # recursively to subdirectories, so prepend '/' to every # .gitignore entry. pattern=$(echo "$pattern" | sed s,^,/,);; esac insert_if_absent "$vc_ignore_file" "$pattern" } # Die if there is no AC_CONFIG_AUX_DIR($build_aux) line in configure.ac. found_aux_dir=no grep '^[ ]*AC_CONFIG_AUX_DIR(\['"$build_aux"'\])' configure.ac \ >/dev/null && found_aux_dir=yes grep '^[ ]*AC_CONFIG_AUX_DIR('"$build_aux"')' configure.ac \ >/dev/null && found_aux_dir=yes test $found_aux_dir = yes \ || die "configure.ac lacks 'AC_CONFIG_AUX_DIR([$build_aux])'; add it" # If $build_aux doesn't exist, create it now, otherwise some bits # below will malfunction. If creating it, also mark it as ignored. if test ! -d $build_aux; then mkdir $build_aux for dot_ig in x $vc_ignore; do test $dot_ig = x && continue insert_vc_ignore $dot_ig $build_aux done fi # 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. sort_ver() { # sort -V is not generally available ver1="$1" ver2="$2" # split on '.' and compare each component i=1 while : ; do p1=$(echo "$ver1" | cut -d. -f$i) p2=$(echo "$ver2" | cut -d. -f$i) if [ ! "$p1" ]; then echo "$1 $2" break elif [ ! "$p2" ]; then echo "$2 $1" break elif [ ! "$p1" = "$p2" ]; then if [ "$p1" -gt "$p2" ] 2>/dev/null; then # numeric comparison echo "$2 $1" elif [ "$p2" -gt "$p1" ] 2>/dev/null; then # numeric comparison echo "$1 $2" else # numeric, then lexicographic comparison lp=$(printf "$p1\n$p2\n" | LANG=C sort -n | tail -n1) if [ "$lp" = "$p2" ]; then echo "$1 $2" else echo "$2 $1" fi fi break fi i=$(($i+1)) done } get_version() { app=$1 $app --version >/dev/null 2>&1 || return 1 $app --version 2>&1 | sed -n '# Move version to start of line. s/.*[v ]\([0-9]\)/\1/ # Skip lines that do not start with version. /^[0-9]/!d # Remove characters after the version. s/[^.a-z0-9-].*// # The first component must be digits only. s/^\([0-9]*\)[a-z-].*/\1/ #the following essentially does s/5.005/5.5/ s/\.0*\([1-9]\)/.\1/g p q' } check_versions() { ret=0 while read app req_ver; do # We only need libtoolize from the libtool package. if test "$app" = libtool; then app=libtoolize fi # Exempt git if --no-git is in effect. if test "$app" = git; then $use_git || continue fi # Honor $APP variables ($TAR, $AUTOCONF, etc.) appvar=$(echo $app | LC_ALL=C tr '[a-z]-' '[A-Z]_') test "$appvar" = TAR && appvar=AMTAR case $appvar in GZIP) ;; # Do not use $GZIP: it contains gzip options. *) eval "app=\${$appvar-$app}" ;; esac # Handle the still-experimental Automake-NG programs specially. # They remain named as the mainstream Automake programs ("automake", # and "aclocal") to avoid gratuitous incompatibilities with # pre-existing usages (by, say, autoreconf, or custom autogen.sh # scripts), but correctly identify themselves (as being part of # "GNU automake-ng") when asked their version. case $app in automake-ng|aclocal-ng) app=${app%-ng} ($app --version | grep '(GNU automake-ng)') >/dev/null 2>&1 || { warn_ "Error: '$app' not found or not from Automake-NG" ret=1 continue } ;; esac if [ "$req_ver" = "-" ]; then # Merely require app to exist; not all prereq apps are well-behaved # so we have to rely on $? rather than get_version. $app --version >/dev/null 2>&1 if [ 126 -le $? ]; then warn_ "Error: '$app' not found" ret=1 fi else # Require app to produce a new enough version string. inst_ver=$(get_version $app) if [ ! "$inst_ver" ]; then warn_ "Error: '$app' not found" ret=1 else latest_ver=$(sort_ver $req_ver $inst_ver | cut -d' ' -f2) if [ ! "$latest_ver" = "$inst_ver" ]; then warnf_ '%s\n' \ "Error: '$app' version == $inst_ver is too old" \ " '$app' version >= $req_ver is required" ret=1 fi fi fi done return $ret } print_versions() { echo "Program Min_version" echo "----------------------" printf %s "$buildreq" echo "----------------------" # can't depend on column -t } use_libtool=0 # We'd like to use grep -E, to see if any of LT_INIT, # AC_PROG_LIBTOOL, AM_PROG_LIBTOOL is used in configure.ac, # but that's not portable enough (e.g., for Solaris). grep '^[ ]*A[CM]_PROG_LIBTOOL' configure.ac >/dev/null \ && use_libtool=1 grep '^[ ]*LT_INIT' configure.ac >/dev/null \ && use_libtool=1 if test $use_libtool = 1; then find_tool LIBTOOLIZE glibtoolize libtoolize fi # gnulib-tool requires at least automake and autoconf. # If either is not listed, add it (with minimum version) as a prerequisite. case $buildreq in *automake*) ;; *) buildreq="automake 1.9 $buildreq" ;; esac case $buildreq in *autoconf*) ;; *) buildreq="autoconf 2.59 $buildreq" ;; esac # When we can deduce that gnulib-tool will require patch, # and when patch is not already listed as a prerequisite, add it, too. if test -d "$local_gl_dir" \ && ! find "$local_gl_dir" -name '*.diff' -exec false {} +; then case $buildreq in *patch*) ;; *) buildreq="patch - $buildreq" ;; esac fi if ! printf "$buildreq" | check_versions; then echo >&2 if test -f README-prereq; then die "See README-prereq for how to get the prerequisite programs" else die "Please install the prerequisite programs" fi fi echo "$0: Bootstrapping from checked-out $package sources..." # See if we can use gnulib's git-merge-changelog merge driver. if $use_git && test -d .git && (git --version) >/dev/null 2>/dev/null ; then if git config merge.merge-changelog.driver >/dev/null ; then : elif (git-merge-changelog --version) >/dev/null 2>/dev/null ; then echo "$0: initializing git-merge-changelog driver" git config merge.merge-changelog.name 'GNU-style ChangeLog merge driver' git config merge.merge-changelog.driver 'git-merge-changelog %O %A %B' else echo "$0: consider installing git-merge-changelog from gnulib" fi fi cleanup_gnulib() { status=$? rm -fr "$gnulib_path" exit $status } git_modules_config () { test -f .gitmodules && git config --file .gitmodules "$@" } if $use_git; then gnulib_path=$(git_modules_config submodule.gnulib.path) test -z "$gnulib_path" && gnulib_path=gnulib fi # Get gnulib files. Populate $GNULIB_SRCDIR, possibly updating a # submodule, for use in the rest of the script. case ${GNULIB_SRCDIR--} in -) # Note that $use_git is necessarily true in this case. if git_modules_config submodule.gnulib.url >/dev/null; then echo "$0: getting gnulib files..." git submodule init || exit $? git submodule update || exit $? elif [ ! -d "$gnulib_path" ]; then echo "$0: getting gnulib files..." trap cleanup_gnulib 1 2 13 15 shallow= git clone -h 2>&1 | grep -- --depth > /dev/null && shallow='--depth 2' git clone $shallow git://git.sv.gnu.org/gnulib "$gnulib_path" || cleanup_gnulib trap - 1 2 13 15 fi GNULIB_SRCDIR=$gnulib_path ;; *) # Use GNULIB_SRCDIR directly or as a reference. if $use_git && test -d "$GNULIB_SRCDIR"/.git && \ git_modules_config submodule.gnulib.url >/dev/null; then echo "$0: getting gnulib files..." if git submodule -h|grep -- --reference > /dev/null; then # Prefer the one-liner available in git 1.6.4 or newer. git submodule update --init --reference "$GNULIB_SRCDIR" \ "$gnulib_path" || exit $? else # This fallback allows at least git 1.5.5. if test -f "$gnulib_path"/gnulib-tool; then # Since file already exists, assume submodule init already complete. git submodule update || exit $? else # Older git can't clone into an empty directory. rmdir "$gnulib_path" 2>/dev/null git clone --reference "$GNULIB_SRCDIR" \ "$(git_modules_config submodule.gnulib.url)" "$gnulib_path" \ && git submodule init && git submodule update \ || exit $? fi fi GNULIB_SRCDIR=$gnulib_path fi ;; esac # $GNULIB_SRCDIR now points to the version of gnulib to use, and # we no longer need to use git or $gnulib_path below here. if $bootstrap_sync; then cmp -s "$0" "$GNULIB_SRCDIR/build-aux/bootstrap" || { echo "$0: updating bootstrap and restarting..." case $(sh -c 'echo "$1"' -- a) in a) ignored=--;; *) ignored=ignored;; esac exec sh -c \ 'cp "$1" "$2" && shift && exec "${CONFIG_SHELL-/bin/sh}" "$@"' \ $ignored "$GNULIB_SRCDIR/build-aux/bootstrap" \ "$0" "$@" --no-bootstrap-sync } fi gnulib_tool=$GNULIB_SRCDIR/gnulib-tool <$gnulib_tool || exit $? # Get translations. download_po_files() { subdir=$1 domain=$2 echo "$me: getting translations into $subdir for $domain..." cmd=$(printf "$po_download_command_format" "$domain" "$subdir") eval "$cmd" && return # Fallback to HTTP. cmd=$(printf "$po_download_command_format2" "$subdir" "$domain") eval "$cmd" } # Mirror .po files to $po_dir/.reference and copy only the new # or modified ones into $po_dir. Also update $po_dir/LINGUAS. # Note po files that exist locally only are left in $po_dir but will # not be included in LINGUAS and hence will not be distributed. update_po_files() { # Directory containing primary .po files. # Overwrite them only when we're sure a .po file is new. po_dir=$1 domain=$2 # Mirror *.po files into this dir. # Usually contains *.s1 checksum files. ref_po_dir="$po_dir/.reference" test -d $ref_po_dir || mkdir $ref_po_dir || return download_po_files $ref_po_dir $domain \ && ls "$ref_po_dir"/*.po 2>/dev/null | sed 's|.*/||; s|\.po$||' > "$po_dir/LINGUAS" || return langs=$(cd $ref_po_dir && echo *.po | sed 's/\.po//g') test "$langs" = '*' && langs=x for po in $langs; do case $po in x) continue;; esac new_po="$ref_po_dir/$po.po" cksum_file="$ref_po_dir/$po.s1" if ! test -f "$cksum_file" || ! test -f "$po_dir/$po.po" || ! $SHA1SUM -c --status "$cksum_file" \ < "$new_po" > /dev/null; then echo "$me: updated $po_dir/$po.po..." cp "$new_po" "$po_dir/$po.po" \ && $SHA1SUM < "$new_po" > "$cksum_file" fi done } case $SKIP_PO in '') if test -d po; then update_po_files po $package || exit fi if test -d runtime-po; then update_po_files runtime-po $package-runtime || exit fi;; esac symlink_to_dir() { src=$1/$2 dst=${3-$2} test -f "$src" && { # If the destination directory doesn't exist, create it. # This is required at least for "lib/uniwidth/cjk.h". dst_dir=$(dirname "$dst") if ! test -d "$dst_dir"; then mkdir -p "$dst_dir" # If we've just created a directory like lib/uniwidth, # tell version control system(s) it's ignorable. # FIXME: for now, this does only one level parent=$(dirname "$dst_dir") for dot_ig in x $vc_ignore; do test $dot_ig = x && continue ig=$parent/$dot_ig insert_vc_ignore $ig "${dst_dir##*/}" done fi if $copy; then { test ! -h "$dst" || { echo "$me: rm -f $dst" && rm -f "$dst" } } && test -f "$dst" && cmp -s "$src" "$dst" || { echo "$me: cp -fp $src $dst" && cp -fp "$src" "$dst" } else # Leave any existing symlink alone, if it already points to the source, # so that broken build tools that care about symlink times # aren't confused into doing unnecessary builds. Conversely, if the # existing symlink's time stamp is older than the source, make it afresh, # so that broken tools aren't confused into skipping needed builds. See # . test -h "$dst" && src_ls=$(ls -diL "$src" 2>/dev/null) && set $src_ls && src_i=$1 && dst_ls=$(ls -diL "$dst" 2>/dev/null) && set $dst_ls && dst_i=$1 && test "$src_i" = "$dst_i" && both_ls=$(ls -dt "$src" "$dst") && test "X$both_ls" = "X$dst$nl$src" || { dot_dots= case $src in /*) ;; *) case /$dst/ in *//* | */../* | */./* | /*/*/*/*/*/) die "invalid symlink calculation: $src -> $dst";; /*/*/*/*/) dot_dots=../../../;; /*/*/*/) dot_dots=../../;; /*/*/) dot_dots=../;; esac;; esac echo "$me: ln -fs $dot_dots$src $dst" && ln -fs "$dot_dots$src" "$dst" } fi } } version_controlled_file() { parent=$1 file=$2 if test -d .git; then git rm -n "$file" > /dev/null 2>&1 elif test -d .svn; then svn log -r HEAD "$file" > /dev/null 2>&1 elif test -d CVS; then grep -F "/${file##*/}/" "$parent/CVS/Entries" 2>/dev/null | grep '^/[^/]*/[0-9]' > /dev/null else warn_ "no version control for $file?" false fi } # NOTE: we have to be careful to run both autopoint and libtoolize # before gnulib-tool, since gnulib-tool is likely to provide newer # versions of files "installed" by these two programs. # Then, *after* gnulib-tool (see below), we have to be careful to # run autoreconf in such a way that it does not run either of these # two just-pre-run programs. # Import from gettext. with_gettext=yes grep '^[ ]*AM_GNU_GETTEXT_VERSION(' configure.ac >/dev/null || \ with_gettext=no if test $with_gettext = yes || test $use_libtool = 1; then tempbase=.bootstrap$$ trap "rm -f $tempbase.0 $tempbase.1" 1 2 13 15 > $tempbase.0 > $tempbase.1 && find . ! -type d -print | sort > $tempbase.0 || exit if test $with_gettext = yes; then # Released autopoint has the tendency to install macros that have been # obsoleted in current gnulib, so run this before gnulib-tool. echo "$0: $AUTOPOINT --force" $AUTOPOINT --force || exit fi # Autoreconf runs aclocal before libtoolize, which causes spurious # warnings if the initial aclocal is confused by the libtoolized # (or worse out-of-date) macro directory. # libtoolize 1.9b added the --install option; but we support back # to libtoolize 1.5.22, where the install action was default. if test $use_libtool = 1; then install= case $($LIBTOOLIZE --help) in *--install*) install=--install ;; esac echo "running: $LIBTOOLIZE $install --copy" $LIBTOOLIZE $install --copy fi find . ! -type d -print | sort >$tempbase.1 old_IFS=$IFS IFS=$nl for file in $(comm -13 $tempbase.0 $tempbase.1); do IFS=$old_IFS parent=${file%/*} version_controlled_file "$parent" "$file" || { for dot_ig in x $vc_ignore; do test $dot_ig = x && continue ig=$parent/$dot_ig insert_vc_ignore "$ig" "${file##*/}" done } done IFS=$old_IFS rm -f $tempbase.0 $tempbase.1 trap - 1 2 13 15 fi # Import from gnulib. gnulib_tool_options="\ --import\ --no-changelog\ --aux-dir $build_aux\ --doc-base $doc_base\ --lib $gnulib_name\ --m4-base $m4_base/\ --source-base $source_base/\ --tests-base $tests_base\ --local-dir $local_gl_dir\ $gnulib_tool_option_extras\ " if test $use_libtool = 1; then case "$gnulib_tool_options " in *' --libtool '*) ;; *) gnulib_tool_options="$gnulib_tool_options --libtool" ;; esac fi echo "$0: $gnulib_tool $gnulib_tool_options --import ..." $gnulib_tool $gnulib_tool_options --import $gnulib_modules && for file in $gnulib_files; do symlink_to_dir "$GNULIB_SRCDIR" $file \ || die "failed to symlink $file" done bootstrap_post_import_hook \ || die "bootstrap_post_import_hook failed" # Remove any dangling symlink matching "*.m4" or "*.[ch]" in some # gnulib-populated directories. Such .m4 files would cause aclocal to fail. # The following requires GNU find 4.2.3 or newer. Considering the usual # portability constraints of this script, that may seem a very demanding # requirement, but it should be ok. Ignore any failure, which is fine, # since this is only a convenience to help developers avoid the relatively # unusual case in which a symlinked-to .m4 file is git-removed from gnulib # between successive runs of this script. find "$m4_base" "$source_base" \ -depth \( -name '*.m4' -o -name '*.[ch]' \) \ -type l -xtype l -delete > /dev/null 2>&1 # Invoke autoreconf with --force --install to ensure upgrades of tools # such as ylwrap. AUTORECONFFLAGS="--verbose --install --force -I $m4_base $ACLOCAL_FLAGS" # Some systems (RHEL 5) are using ancient autotools, for which the # --no-recursive option had not been invented. Detect that lack and # omit the option when it's not supported. FIXME in 2017: remove this # hack when RHEL 5 autotools are updated, or when they become irrelevant. case $($AUTORECONF --help) in *--no-recursive*) AUTORECONFFLAGS="$AUTORECONFFLAGS --no-recursive";; esac # Tell autoreconf not to invoke autopoint or libtoolize; they were run above. echo "running: AUTOPOINT=true LIBTOOLIZE=true $AUTORECONF $AUTORECONFFLAGS" AUTOPOINT=true LIBTOOLIZE=true $AUTORECONF $AUTORECONFFLAGS \ || die "autoreconf failed" # Get some extra files from gnulib, overriding existing files. for file in $gnulib_extra_files; do case $file in */INSTALL) dst=INSTALL;; build-aux/*) dst=$build_aux/${file#build-aux/};; *) dst=$file;; esac symlink_to_dir "$GNULIB_SRCDIR" $file $dst \ || die "failed to symlink $file" done if test $with_gettext = yes; then # Create gettext configuration. echo "$0: Creating po/Makevars from po/Makevars.template ..." rm -f po/Makevars sed ' /^EXTRA_LOCALE_CATEGORIES *=/s/=.*/= '"$EXTRA_LOCALE_CATEGORIES"'/ /^COPYRIGHT_HOLDER *=/s/=.*/= '"$COPYRIGHT_HOLDER"'/ /^MSGID_BUGS_ADDRESS *=/s|=.*|= '"$MSGID_BUGS_ADDRESS"'| /^XGETTEXT_OPTIONS *=/{ s/$/ \\/ a\ '"$XGETTEXT_OPTIONS"' $${end_of_xgettext_options+} } ' po/Makevars.template >po/Makevars \ || die 'cannot generate po/Makevars' # If the 'gettext' module is in use, grab the latest Makefile.in.in. # If only the 'gettext-h' module is in use, assume autopoint already # put the correct version of this file into place. case $gnulib_modules in *gettext-h*) ;; *gettext*) cp $GNULIB_SRCDIR/build-aux/po/Makefile.in.in po/Makefile.in.in \ || die "cannot create po/Makefile.in.in" ;; esac if test -d runtime-po; then # Similarly for runtime-po/Makevars, but not quite the same. rm -f runtime-po/Makevars sed ' /^DOMAIN *=.*/s/=.*/= '"$package"'-runtime/ /^subdir *=.*/s/=.*/= runtime-po/ /^MSGID_BUGS_ADDRESS *=/s/=.*/= bug-'"$package"'@gnu.org/ /^XGETTEXT_OPTIONS *=/{ s/$/ \\/ a\ '"$XGETTEXT_OPTIONS_RUNTIME"' $${end_of_xgettext_options+} } ' po/Makevars.template >runtime-po/Makevars \ || die 'cannot generate runtime-po/Makevars' # Copy identical files from po to runtime-po. (cd po && cp -p Makefile.in.in *-quot *.header *.sed *.sin ../runtime-po) fi fi bootstrap_epilogue echo "$0: done. Now you can run './configure'." # 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: "UTC" # time-stamp-end: "; # UTC" # End: ttfautohint-0.97/configure.ac0000644000175000001440000001311412231003464013220 00000000000000# configure.ac # Copyright (C) 2011-2013 by Werner Lemberg. # # This file is part of the ttfautohint library, and may only be used, # modified, and distributed under the terms given in `COPYING'. By # continuing to use, modify, or distribute this file you indicate that you # have read `COPYING' and understand and accept it fully. # # The file `COPYING' mentioned in the previous paragraph is distributed # with the ttfautohint library. AC_INIT([ttfautohint], m4_esyscmd([gnulib/git-version-gen VERSION]), [freetype-devel@nongnu.org]) AC_CONFIG_AUX_DIR([gnulib]) AM_INIT_AUTOMAKE([-Wall -Werror] m4_bmatch(m4_defn([AC_PACKAGE_VERSION]), [-], [gnu], [gnits])) AC_CONFIG_MACRO_DIRS([gnulib/m4 m4]) AM_SILENT_RULES([yes]) AC_USE_SYSTEM_EXTENSIONS AC_PROG_CPP AC_PROG_CC AC_PROG_CXX # AM_PROG_AR is new in automake 1.11.2; # however, MinGW doesn't have it yet (May 2012) m4_ifdef([AM_PROG_AR], [AM_PROG_AR]) gl_EARLY gl_INIT AC_TYPE_UINT64_T AT_WITH_QT AT_REQUIRE_QT_VERSION([4.6]) if test x"$with_qt" != x"no"; then AC_MSG_CHECKING([for QLocale::quoteString]) AS_VERSION_COMPARE([$QT_VERSION], [4.8], [AC_MSG_RESULT(no)], [AC_MSG_RESULT(no)], [AC_MSG_RESULT(yes) AC_DEFINE([HAVE_QT_QUOTESTRING], [1], [Define if Qt function QLocale::quoteString is available.])]) fi AM_CONDITIONAL([USE_QT], [test x"$with_qt" != x"no"]) LT_INIT LT_LTLIZE_LANG([C]) AC_ARG_WITH([doc], [AS_HELP_STRING([--with-doc], [install documentation @<:@default=yes@:>@])], [], [with_doc=yes]) AC_ARG_WITH([freetype-config], [AS_HELP_STRING([--with-freetype-config=PROG], [use FreeType configuration program PROG])], [freetype_config=$withval], [freetype_config=yes]) if test "$freetype_config" = "yes"; then AC_PATH_PROG(ft_config, freetype-config, no) if test "$ft_config" = "no"; then AC_MSG_ERROR([FreeType library is missing; see http://www.freetype.org/]) fi else ft_config="$freetype_config" fi FREETYPE_CPPFLAGS="`$ft_config --cflags`" FREETYPE_LIBS="`$ft_config --libtool`" # many platforms no longer install .la files for system libraries if test ! -f $FREETYPE_LIBS; then FREETYPE_LIBS="`$ft_config --libs`" fi AC_SUBST(FREETYPE_CPPFLAGS) AC_SUBST(FREETYPE_LIBS) AC_MSG_CHECKING([whether FreeType header files are version 2.4.5 or higher]) old_CPPFLAGS="$CPPFLAGS" CPPFLAGS=$FREETYPE_CPPFLAGS AC_PREPROC_IFELSE([AC_LANG_SOURCE([[ #include #include FT_FREETYPE_H #if (FREETYPE_MAJOR*1000 + FREETYPE_MINOR)*1000 + FREETYPE_PATCH < 2004005 #error Freetype version too low. #endif ]])], [AC_MSG_RESULT(yes) CPPFLAGS="$old_CPPFLAGS"], [AC_MSG_ERROR([Need FreeType version 2.4.5 or higher])]) AC_MSG_CHECKING([whether FreeType library is version 2.4.5 or higher]) old_CPPFLAGS="$CPPFLAGS" CPPFLAGS=$FREETYPE_CPPFLAGS old_LIBS="$LIBS" LIBS=$FREETYPE_LIBS AC_LANG_PUSH([LTLIZED C]) AC_RUN_IFELSE([AC_LANG_SOURCE([[ #include #include #include FT_FREETYPE_H int main() { FT_Error error; FT_Library library; FT_Int major, minor, patch; error = FT_Init_FreeType(&library); if (error) { printf("(test program reports error code %d)... ", error); exit(EXIT_FAILURE); } FT_Library_Version(library, &major, &minor, &patch); printf("(found %d.%d.%d)... ", major, minor, patch); if (((major*1000 + minor)*1000 + patch) >= 2004005) exit(EXIT_SUCCESS); exit(EXIT_FAILURE); } ]])], [AC_MSG_RESULT(yes) CPPFLAGS="$old_CPPFLAGS" LIBS="$old_LIBS"], [AC_MSG_ERROR([Need FreeType version 2.4.5 or higher])], [AC_MSG_RESULT([skipped due to cross-compilation])]) AC_LANG_POP if test $cross_compiling = no; then AM_MISSING_PROG(HELP2MAN, help2man) else HELP2MAN=: fi # The documentation is part of the distributed bundle. In the following, # tests for the documentation building tools are made fatal in case those # files are missing (which can happen during bootstrap). AC_DEFUN([TA_DOC], [if test -f "$1"; then AC_MSG_WARN([$2]) with_doc=no else AC_MSG_ERROR([$2]) fi]) image_file=$srcdir/doc/img/ttfautohintGUI.png html_file=$srcdir/doc/ttfautohint.html pdf_file=$srcdir/doc/ttfautohint.pdf if test x"$with_doc" != x"no"; then # snapshot image creation if test x"$DISPLAY" == x; then TA_DOC([$image_file], [Need X11 to create snapshot image of ttfautohintGUI]) else AC_CHECK_PROG([IMPORT], [import], [import], [no]) if test x"$IMPORT" == x"no"; then TA_DOC([$image_file], [Need ImageMagick to create snapshot image of ttfautohintGUI]) fi fi # conversion of SVG to PDF AC_CHECK_PROG([INKSCAPE], [inkscape], [inkscape], [no]) if test x"$INKSCAPE" == x"no"; then TA_DOC([$pdf_file], [Need inkscape to convert SVG image files to PDF]) fi # documentation creation AC_CHECK_PROG([PANDOC], [pandoc], [pandoc], [no]) if test x"$PANDOC" == x"no"; then TA_DOC([$html_file], [Need pandoc to create PDF and HTML documentation files]) fi # PDF documentation AC_CHECK_PROGS([LATEX], [lualatex xelatex], [no]) if test x"$PDFLATEX" == x"no"; then TA_DOC([$pdf_file], [Need lualatex or xelatex to create documentation in PDF format]) fi fi AM_CONDITIONAL([WITH_DOC], [test x"$with_doc" != x"no"]) AC_CONFIG_HEADERS([config.h]) AC_CONFIG_FILES([Makefile gnulib/src/Makefile lib/Makefile frontend/Makefile doc/Makefile]) AC_OUTPUT # end of configure.ac ttfautohint-0.97/aclocal.m40000644000175000001440000013070112237364302012603 00000000000000# generated automatically by aclocal 1.14 -*- Autoconf -*- # Copyright (C) 1996-2013 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.69],, [m4_warning([this file was generated for autoconf 2.69. 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'.])]) # Copyright (C) 2002-2013 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.14' 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.14], [], [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.14])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # Copyright (C) 2011-2013 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_AR([ACT-IF-FAIL]) # ------------------------- # Try to determine the archiver interface, and trigger the ar-lib wrapper # if it is needed. If the detection of archiver interface fails, run # ACT-IF-FAIL (default is to abort configure with a proper error message). AC_DEFUN([AM_PROG_AR], [AC_BEFORE([$0], [LT_INIT])dnl AC_BEFORE([$0], [AC_PROG_LIBTOOL])dnl AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([ar-lib])dnl AC_CHECK_TOOLS([AR], [ar lib "link -lib"], [false]) : ${AR=ar} AC_CACHE_CHECK([the archiver ($AR) interface], [am_cv_ar_interface], [AC_LANG_PUSH([C]) am_cv_ar_interface=ar AC_COMPILE_IFELSE([AC_LANG_SOURCE([[int some_variable = 0;]])], [am_ar_try='$AR cru libconftest.a conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([am_ar_try]) if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a ]) AC_LANG_POP([C])]) case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # 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__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) m4_default([$1], [AC_MSG_ERROR([could not determine $AR interface])]) ;; esac AC_SUBST([AR])dnl ]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001-2013 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], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997-2013 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-2013 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-2013 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. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named 'Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running 'make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "$am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _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. FIXME. This creates each '.P' file that we will # 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" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996-2013 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. 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 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-2013 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}" != 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-2013 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-2013 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 to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from 'make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997-2013 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 case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac 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-2013 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-2013 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-2013 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-2013 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-2013 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-2013 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-2013 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-2013 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([m4/autotroll.m4]) m4_include([m4/ltlize_lang.m4]) m4_include([gnulib/m4/00gnulib.m4]) m4_include([gnulib/m4/errno_h.m4]) m4_include([gnulib/m4/extensions.m4]) m4_include([gnulib/m4/extern-inline.m4]) m4_include([gnulib/m4/fcntl-o.m4]) m4_include([gnulib/m4/fcntl_h.m4]) m4_include([gnulib/m4/getopt.m4]) m4_include([gnulib/m4/gnulib-common.m4]) m4_include([gnulib/m4/gnulib-comp.m4]) m4_include([gnulib/m4/include_next.m4]) m4_include([gnulib/m4/isatty.m4]) m4_include([gnulib/m4/lib-ld.m4]) m4_include([gnulib/m4/lib-link.m4]) m4_include([gnulib/m4/lib-prefix.m4]) m4_include([gnulib/m4/libtool.m4]) m4_include([gnulib/m4/lock.m4]) m4_include([gnulib/m4/longlong.m4]) m4_include([gnulib/m4/ltoptions.m4]) m4_include([gnulib/m4/ltsugar.m4]) m4_include([gnulib/m4/ltversion.m4]) m4_include([gnulib/m4/lt~obsolete.m4]) m4_include([gnulib/m4/memchr.m4]) m4_include([gnulib/m4/memmem.m4]) m4_include([gnulib/m4/mmap-anon.m4]) m4_include([gnulib/m4/msvc-inval.m4]) m4_include([gnulib/m4/msvc-nothrow.m4]) m4_include([gnulib/m4/multiarch.m4]) m4_include([gnulib/m4/nocrash.m4]) m4_include([gnulib/m4/off_t.m4]) m4_include([gnulib/m4/onceonly.m4]) m4_include([gnulib/m4/ssize_t.m4]) m4_include([gnulib/m4/stddef_h.m4]) m4_include([gnulib/m4/stdint.m4]) m4_include([gnulib/m4/strerror.m4]) m4_include([gnulib/m4/strerror_r.m4]) m4_include([gnulib/m4/string_h.m4]) m4_include([gnulib/m4/sys_socket_h.m4]) m4_include([gnulib/m4/sys_types_h.m4]) m4_include([gnulib/m4/threadlib.m4]) m4_include([gnulib/m4/unistd_h.m4]) m4_include([gnulib/m4/warn-on-use.m4]) m4_include([gnulib/m4/wchar_t.m4]) ttfautohint-0.97/GPLv2.TXT0000644000175000001440000004311211601026513012226 00000000000000 GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 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 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, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. ttfautohint-0.97/config.h.in0000644000175000001440000005243112237364307012776 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to the number of bits in type 'ptrdiff_t'. */ #undef BITSIZEOF_PTRDIFF_T /* Define to the number of bits in type 'sig_atomic_t'. */ #undef BITSIZEOF_SIG_ATOMIC_T /* Define to the number of bits in type 'size_t'. */ #undef BITSIZEOF_SIZE_T /* Define to the number of bits in type 'wchar_t'. */ #undef BITSIZEOF_WCHAR_T /* Define to the number of bits in type 'wint_t'. */ #undef BITSIZEOF_WINT_T /* Define to a C preprocessor expression that evaluates to 1 or 0, depending whether the gnulib module lock shall be considered present. */ #undef GNULIB_LOCK /* Define to 1 when the gnulib module getopt-gnu should be tested. */ #undef GNULIB_TEST_GETOPT_GNU /* Define to 1 when the gnulib module isatty should be tested. */ #undef GNULIB_TEST_ISATTY /* Define to 1 when the gnulib module memchr should be tested. */ #undef GNULIB_TEST_MEMCHR /* Define to 1 when the gnulib module memmem should be tested. */ #undef GNULIB_TEST_MEMMEM /* Define to 1 when the gnulib module strerror_r should be tested. */ #undef GNULIB_TEST_STRERROR_R /* Define to 1 if you have the header file. */ #undef HAVE_BP_SYM_H /* Define to 1 if you have the 'catgets' function. */ #undef HAVE_CATGETS /* Define to 1 if you have the declaration of `getenv', and to 0 if you don't. */ #undef HAVE_DECL_GETENV /* Define to 1 if you have the declaration of `memmem', and to 0 if you don't. */ #undef HAVE_DECL_MEMMEM /* Define to 1 if you have the declaration of `strerror_r', and to 0 if you don't. */ #undef HAVE_DECL_STRERROR_R /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_GETOPT_H /* Define to 1 if you have the `getopt_long_only' function. */ #undef HAVE_GETOPT_LONG_ONLY /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if the system has the type 'long long int'. */ #undef HAVE_LONG_LONG_INT /* Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including config.h and . */ #undef HAVE_MAP_ANONYMOUS /* Define to 1 if you have the `memmem' function. */ #undef HAVE_MEMMEM /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the 'mprotect' function. */ #undef HAVE_MPROTECT /* Define to 1 on MSVC platforms that have the "invalid parameter handler" concept. */ #undef HAVE_MSVC_INVALID_PARAMETER_HANDLER /* Define if the defines PTHREAD_MUTEX_RECURSIVE. */ #undef HAVE_PTHREAD_MUTEX_RECURSIVE /* Define if the POSIX multithreading library has read/write locks. */ #undef HAVE_PTHREAD_RWLOCK /* Define if the Qt framework is available. */ #undef HAVE_QT /* Define if Qt function QLocale::quoteString is available. */ #undef HAVE_QT_QUOTESTRING /* Define to 1 if chdir is declared even after undefining macros. */ #undef HAVE_RAW_DECL_CHDIR /* Define to 1 if chown is declared even after undefining macros. */ #undef HAVE_RAW_DECL_CHOWN /* Define to 1 if dup is declared even after undefining macros. */ #undef HAVE_RAW_DECL_DUP /* Define to 1 if dup2 is declared even after undefining macros. */ #undef HAVE_RAW_DECL_DUP2 /* Define to 1 if dup3 is declared even after undefining macros. */ #undef HAVE_RAW_DECL_DUP3 /* Define to 1 if endusershell is declared even after undefining macros. */ #undef HAVE_RAW_DECL_ENDUSERSHELL /* Define to 1 if environ is declared even after undefining macros. */ #undef HAVE_RAW_DECL_ENVIRON /* Define to 1 if euidaccess is declared even after undefining macros. */ #undef HAVE_RAW_DECL_EUIDACCESS /* Define to 1 if faccessat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FACCESSAT /* Define to 1 if fchdir is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FCHDIR /* Define to 1 if fchownat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FCHOWNAT /* Define to 1 if fcntl is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FCNTL /* Define to 1 if fdatasync is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FDATASYNC /* Define to 1 if ffsl is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FFSL /* Define to 1 if ffsll is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FFSLL /* Define to 1 if fsync is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FSYNC /* Define to 1 if ftruncate is declared even after undefining macros. */ #undef HAVE_RAW_DECL_FTRUNCATE /* Define to 1 if getcwd is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETCWD /* Define to 1 if getdomainname is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETDOMAINNAME /* Define to 1 if getdtablesize is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETDTABLESIZE /* Define to 1 if getgroups is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETGROUPS /* Define to 1 if gethostname is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETHOSTNAME /* Define to 1 if getlogin is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETLOGIN /* Define to 1 if getlogin_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETLOGIN_R /* Define to 1 if getpagesize is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETPAGESIZE /* Define to 1 if getusershell is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GETUSERSHELL /* Define to 1 if group_member is declared even after undefining macros. */ #undef HAVE_RAW_DECL_GROUP_MEMBER /* Define to 1 if isatty is declared even after undefining macros. */ #undef HAVE_RAW_DECL_ISATTY /* Define to 1 if lchown is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LCHOWN /* Define to 1 if link is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LINK /* Define to 1 if linkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LINKAT /* Define to 1 if lseek is declared even after undefining macros. */ #undef HAVE_RAW_DECL_LSEEK /* Define to 1 if memmem is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MEMMEM /* Define to 1 if mempcpy is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MEMPCPY /* Define to 1 if memrchr is declared even after undefining macros. */ #undef HAVE_RAW_DECL_MEMRCHR /* Define to 1 if openat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_OPENAT /* Define to 1 if pipe is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PIPE /* Define to 1 if pipe2 is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PIPE2 /* Define to 1 if pread is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PREAD /* Define to 1 if pwrite is declared even after undefining macros. */ #undef HAVE_RAW_DECL_PWRITE /* Define to 1 if rawmemchr is declared even after undefining macros. */ #undef HAVE_RAW_DECL_RAWMEMCHR /* Define to 1 if readlink is declared even after undefining macros. */ #undef HAVE_RAW_DECL_READLINK /* Define to 1 if readlinkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_READLINKAT /* Define to 1 if rmdir is declared even after undefining macros. */ #undef HAVE_RAW_DECL_RMDIR /* Define to 1 if sethostname is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SETHOSTNAME /* Define to 1 if setusershell is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SETUSERSHELL /* Define to 1 if sleep is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SLEEP /* Define to 1 if stpcpy is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STPCPY /* Define to 1 if stpncpy is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STPNCPY /* Define to 1 if strcasestr is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRCASESTR /* Define to 1 if strchrnul is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRCHRNUL /* Define to 1 if strdup is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRDUP /* Define to 1 if strerror_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRERROR_R /* Define to 1 if strncat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRNCAT /* Define to 1 if strndup is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRNDUP /* Define to 1 if strnlen is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRNLEN /* Define to 1 if strpbrk is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRPBRK /* Define to 1 if strsep is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRSEP /* Define to 1 if strsignal is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRSIGNAL /* Define to 1 if strtok_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRTOK_R /* Define to 1 if strverscmp is declared even after undefining macros. */ #undef HAVE_RAW_DECL_STRVERSCMP /* Define to 1 if symlink is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SYMLINK /* Define to 1 if symlinkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_SYMLINKAT /* Define to 1 if ttyname_r is declared even after undefining macros. */ #undef HAVE_RAW_DECL_TTYNAME_R /* Define to 1 if unlink is declared even after undefining macros. */ #undef HAVE_RAW_DECL_UNLINK /* Define to 1 if unlinkat is declared even after undefining macros. */ #undef HAVE_RAW_DECL_UNLINKAT /* Define to 1 if usleep is declared even after undefining macros. */ #undef HAVE_RAW_DECL_USLEEP /* Define to 1 if 'sig_atomic_t' is a signed integer type. */ #undef HAVE_SIGNED_SIG_ATOMIC_T /* Define to 1 if 'wchar_t' is a signed integer type. */ #undef HAVE_SIGNED_WCHAR_T /* Define to 1 if 'wint_t' is a signed integer type. */ #undef HAVE_SIGNED_WINT_T /* Define to 1 if you have the 'snprintf' function. */ #undef HAVE_SNPRINTF /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the 'strerror_r' function. */ #undef HAVE_STRERROR_R /* 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 'symlink' function. */ #undef HAVE_SYMLINK /* Define to 1 if you have the header file. */ #undef HAVE_SYS_BITYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_INTTYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_MMAN_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_SOCKET_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 to 1 if the system has the type 'unsigned long long int'. */ #undef HAVE_UNSIGNED_LONG_LONG_INT /* Define to 1 if you have the header file. */ #undef HAVE_WCHAR_H /* Define if you have the 'wchar_t' type. */ #undef HAVE_WCHAR_T /* Define to 1 if you have the header file. */ #undef HAVE_WINSOCK2_H /* Define to 1 if O_NOATIME works. */ #undef HAVE_WORKING_O_NOATIME /* Define to 1 if O_NOFOLLOW works. */ #undef HAVE_WORKING_O_NOFOLLOW /* Define to 1 if you have the '_set_invalid_parameter_handler' function. */ #undef HAVE__SET_INVALID_PARAMETER_HANDLER /* Define to 1 if you have the '__xpg_strerror_r' function. */ #undef HAVE___XPG_STRERROR_R /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Define to a substitute value for mmap()'s MAP_ANONYMOUS flag. */ #undef MAP_ANONYMOUS /* 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 if the pthread_in_use() detection is hard. */ #undef PTHREAD_IN_USE_DETECTION_HARD /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type 'ptrdiff_t'. */ #undef PTRDIFF_T_SUFFIX /* Define to 1 if strerror(0) does not return a message implying success. */ #undef REPLACE_STRERROR_0 /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type 'sig_atomic_t'. */ #undef SIG_ATOMIC_T_SUFFIX /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type 'size_t'. */ #undef SIZE_T_SUFFIX /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Define if the POSIX multithreading library can be used. */ #undef USE_POSIX_THREADS /* Define if references to the POSIX multithreading library should be made weak. */ #undef USE_POSIX_THREADS_WEAK /* Define if the GNU Pth multithreading library can be used. */ #undef USE_PTH_THREADS /* Define if references to the GNU Pth multithreading library should be made weak. */ #undef USE_PTH_THREADS_WEAK /* Define if the old Solaris multithreading library can be used. */ #undef USE_SOLARIS_THREADS /* Define if references to the old Solaris multithreading library should be made weak. */ #undef USE_SOLARIS_THREADS_WEAK /* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable general extensions on OS X. */ #ifndef _DARWIN_C_SOURCE # undef _DARWIN_C_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable X/Open extensions if necessary. HP-UX 11.11 defines mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of whether compiling with -Ae or -D_HPUX_SOURCE=1. */ #ifndef _XOPEN_SOURCE # undef _XOPEN_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif /* Define if the native Windows multithreading API can be used. */ #undef USE_WINDOWS_THREADS /* Version number of package */ #undef VERSION /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type 'wchar_t'. */ #undef WCHAR_T_SUFFIX /* Define to l, ll, u, ul, ull, etc., as suitable for constants of type 'wint_t'. */ #undef WINT_T_SUFFIX /* Define to 1 if on MINIX. */ #undef _MINIX /* Define to 1 to make NetBSD features available. MINIX 3 needs this. */ #undef _NETBSD_SOURCE /* The _Noreturn keyword of C11. */ #if ! (defined _Noreturn \ || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__)) # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ || 0x5110 <= __SUNPRO_C) # define _Noreturn __attribute__ ((__noreturn__)) # elif defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn # endif #endif /* Define to 2 if the system does not provide POSIX.1 features except with this defined. */ #undef _POSIX_1_SOURCE /* Define to 1 if you need to in order for 'stat' and other things to work. */ #undef _POSIX_SOURCE /* Define for Solaris 2.5.1 so the uint64_t typedef from , , or is not used. If the typedef were allowed, the #define below would cause a syntax error. */ #undef _UINT64_T /* Define to rpl_ if the getopt replacement functions and variables should be used. */ #undef __GETOPT_PREFIX /* Please see the Gnulib manual for how to use these macros. Suppress extern inline with HP-UX cc, as it appears to be broken; see . Suppress extern inline with Sun C in standards-conformance mode, as it mishandles inline functions that call each other. E.g., for 'inline void f (void) { } inline void g (void) { f (); }', c99 incorrectly complains 'reference to static identifier "f" in extern inline function'. This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. Suppress the use of extern inline on problematic Apple configurations. OS X 10.8 and earlier mishandle it; see, e.g., . OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and for clang but remains for g++; see . Perhaps Apple will fix this some day. */ #if (defined __APPLE__ \ && (defined __header_inline \ ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ && ! defined __clang__) \ : ((! defined _DONT_USE_CTYPE_INLINE_ \ && (defined __GNUC__ || defined __cplusplus)) \ || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \ && defined __GNUC__ && ! defined __cplusplus)))) # define _GL_EXTERN_INLINE_APPLE_BUG #endif #if ((__GNUC__ \ ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ : (199901L <= __STDC_VERSION__ \ && !defined __HP_cc \ && !(defined __SUNPRO_C && __STDC__))) \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # define _GL_INLINE inline # define _GL_EXTERN_INLINE extern inline # define _GL_EXTERN_INLINE_IN_USE #elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__ /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) # else # define _GL_INLINE extern inline # endif # define _GL_EXTERN_INLINE extern # define _GL_EXTERN_INLINE_IN_USE #else # define _GL_INLINE static _GL_UNUSED # define _GL_EXTERN_INLINE static _GL_UNUSED #endif #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else # define _GL_INLINE_HEADER_CONST_PRAGMA \ _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") # endif /* Suppress GCC's bogus "no previous prototype for 'FOO'" and "no previous declaration for 'FOO'" diagnostics, when FOO is an inline function in the header; see . */ # define _GL_INLINE_HEADER_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ _GL_INLINE_HEADER_CONST_PRAGMA # define _GL_INLINE_HEADER_END \ _Pragma ("GCC diagnostic pop") #else # define _GL_INLINE_HEADER_BEGIN # define _GL_INLINE_HEADER_END #endif /* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of earlier versions), but does not display it by setting __GNUC_STDC_INLINE__. __APPLE__ && __MACH__ test for Mac OS X. __APPLE_CC__ tests for the Apple compiler and its version. __STDC_VERSION__ tests for the C99 mode. */ #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__ # define __GNUC_STDC_INLINE__ 1 #endif /* Define to `int' if does not define. */ #undef mode_t /* Define to `int' if does not define. */ #undef pid_t /* Define to the equivalent of the C99 'restrict' keyword, or to nothing if this is not supported. Do not define if restrict is supported directly. */ #undef restrict /* Work around a bug in Sun C++: it does not support _Restrict or __restrict__, even though the corresponding Sun C compiler ends up with "#define restrict _Restrict" or "#define restrict __restrict__" in the previous line. Perhaps some future version of Sun C++ will work with restrict; if so, hopefully it defines __RESTRICT like Sun C does. */ #if defined __SUNPRO_CC && !defined __RESTRICT # define _Restrict # define __restrict__ #endif /* Define as a signed type of the same size as size_t. */ #undef ssize_t /* Define to the type of an unsigned integer type of width exactly 64 bits if such a type exists and the standard includes do not define it. */ #undef uint64_t /* Define as a marker that can be attached to declarations that might not be used. This helps to reduce warnings, such as from GCC -Wunused-parameter. */ #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) # define _GL_UNUSED __attribute__ ((__unused__)) #else # define _GL_UNUSED #endif /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name is a misnomer outside of parameter lists. */ #define _UNUSED_PARAMETER_ _GL_UNUSED /* The __pure__ attribute was added in gcc 2.96. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__)) #else # define _GL_ATTRIBUTE_PURE /* empty */ #endif /* The __const__ attribute was added in gcc 2.95. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__)) #else # define _GL_ATTRIBUTE_CONST /* empty */ #endif ttfautohint-0.97/VERSION0000644000175000001440000000000512237367737012023 000000000000000.97 ttfautohint-0.97/COPYING0000644000175000001440000000530611714037610011776 00000000000000The ttfautohint library is copyrighted work and cannot be used legally without a software license. Since it is largely based on FreeType, the same license conditions are used. In order to make this project usable to a vast majority of developers, the ttfautohint library is distributed under two mutually exclusive open-source licenses. This means that *you* must choose *one* of the two licenses described below, then obey all its terms and conditions when using the ttfautohint library in any of your projects or products. - The FreeType License, found in the file `FTL.TXT', which is similar to the original BSD license *with* an advertising clause that forces you to explicitly cite the ttfautohint library in your product's documentation. All details are in the license file. This license is suited to products which don't use the GNU General Public License. Note that this license is compatible to the GNU General Public License version 3, but not version 2. - The GNU General Public License version 2, found in `GPLv2.TXT' (any later version can be used also), for programs which already use the GPL. In addition, as a special exception to both the FreeType (FTL) and GNU General Public License (GPL), the copyright holder of ttfautohint gives you unlimited permission to copy, distribute and modify the bytecode that gets embedded in the fonts processed by ttfautohint. You need not follow the terms of the FTL or GPL when using or distributing such bytecode, even though portions of the text of ttfautohint appear in them. The FTL or GPL (depending on your choice) does govern all other use of the material that constitutes ttfautohint. This special exception to the FTL and GPL applies to versions of ttfautohint released by the copyright holder of ttfautohint. Note that people who make modified versions of ttfautohint are not obligated to grant this special exception for their modified versions; it is their choice whether to do so. Both the FTL and the GPL give permission to release a modified version without this exception; this exception also makes it possible to release a modified version which carries forward this exception. ----------------------------------------------------------------------------- The following files are distributed with the source bundle of the ttfautohint library to configure and build the library with GNU tools, but which aren't part of it due to a different license (GPL only). bootstrap bootstrap.conf m4/ltlize_lang.m4 All files of the following directories are distributed with the source bundle of the ttfautohint library to configure and build the library with GNU tools, but which aren't part of it due to a different license (GPL only). gnulib EOF ttfautohint-0.97/INSTALL0000644000175000001440000003661012237363404012002 00000000000000Installation Instructions ************************* Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, Inc. 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 warranty of any kind. Basic Installation ================== Briefly, the shell command `./configure && make && make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. Some packages provide this `INSTALL' file but do not implement all of the features documented below. The lack of an optional feature in a given package is not necessarily a bug. More recommendations for GNU packages can be found in *note Makefile Conventions: (standards)Makefile Conventions. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package, generally using the just-built uninstalled binaries. 4. Type `make install' to install the programs and any data files and documentation. When installing into a prefix owned by root, it is recommended that the package be configured and built as a regular user, and only the `make install' phase executed with root privileges. 5. Optionally, type `make installcheck' to repeat any self-tests, but this time using the binaries in their final installed location. This target does not install anything. Running this target as a regular user, particularly if the prior `make install' required root privileges, verifies that the installation completed correctly. 6. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 7. Often, you can also type `make uninstall' to remove the installed files again. In practice, not all packages have tested that uninstallation works correctly, even though it is required by the GNU Coding Standards. 8. Some packages, particularly those that use Automake, provide `make distcheck', which can by used by developers to test that all other targets like `make install' and `make uninstall' work correctly. This target is generally not run by end users. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. This is known as a "VPATH" build. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX', where PREFIX must be an absolute file name. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. In general, the default for these options is expressed in terms of `${prefix}', so that specifying just `--prefix' will affect all of the other directory specifications that were not explicitly provided. The most portable way to affect installation locations is to pass the correct locations to `configure'; however, many packages provide one or both of the following shortcuts of passing variable assignments to the `make install' command line to change installation locations without having to reconfigure or recompile. The first method involves providing an override variable for each affected directory. For example, `make install prefix=/alternate/directory' will choose an alternate location for all directory configuration variables that were expressed in terms of `${prefix}'. Any directories that were specified during `configure', but not in terms of `${prefix}', must each be overridden at install time for the entire installation to be relocated. The approach of makefile variable overrides for each directory variable is required by the GNU Coding Standards, and ideally causes no recompilation. However, some platforms have known limitations with the semantics of shared libraries that end up requiring recompilation when using this method, particularly noticeable in packages that use GNU Libtool. The second method involves providing the `DESTDIR' variable. For example, `make install DESTDIR=/alternate/directory' will prepend `/alternate/directory' before all installation names. The approach of `DESTDIR' overrides is not required by the GNU Coding Standards, and does not work on platforms that have drive letters. On the other hand, it does better at avoiding recompilation issues, and works well even when some directory options were not specified in terms of `${prefix}' at `configure' time. Optional Features ================= If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Some packages offer the ability to configure how verbose the execution of `make' will be. For these packages, running `./configure --enable-silent-rules' sets the default to minimal output, which can be overridden with `make V=1'; while running `./configure --disable-silent-rules' sets the default to verbose, which can be overridden with `make V=0'. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" and if that doesn't work, install pre-built binaries of GCC for HP-UX. HP-UX `make' updates targets which have the same time stamps as their prerequisites, which makes it generally unusable when shipped generated files such as `configure' are involved. Use GNU `make' instead. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" On Solaris, don't put `/usr/ucb' early in your `PATH'. This directory contains several dysfunctional programs; working variants of these programs are available in `/usr/bin'. So, if you need `/usr/ucb' in your `PATH', put it _after_ `/usr/bin'. On Haiku, software installed for all users goes in `/boot/common', not `/usr/local'. It is recommended to use the following options: ./configure --prefix=/boot/common Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf limitation. Until the limitation is lifted, you can use this workaround: CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. ttfautohint-0.97/gnulib/0000755000175000001440000000000012237367736012317 500000000000000ttfautohint-0.97/gnulib/m4/0000755000175000001440000000000012237367736012637 500000000000000ttfautohint-0.97/gnulib/m4/threadlib.m40000644000175000001440000003414312237364241014750 00000000000000# threadlib.m4 serial 10 (gettext-0.18.2) dnl Copyright (C) 2005-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl gl_THREADLIB dnl ------------ dnl Tests for a multithreading library to be used. dnl If the configure.ac contains a definition of the gl_THREADLIB_DEFAULT_NO dnl (it must be placed before the invocation of gl_THREADLIB_EARLY!), then the dnl default is 'no', otherwise it is system dependent. In both cases, the user dnl can change the choice through the options --enable-threads=choice or dnl --disable-threads. dnl Defines at most one of the macros USE_POSIX_THREADS, USE_SOLARIS_THREADS, dnl USE_PTH_THREADS, USE_WINDOWS_THREADS dnl Sets the variables LIBTHREAD and LTLIBTHREAD to the linker options for use dnl in a Makefile (LIBTHREAD for use without libtool, LTLIBTHREAD for use with dnl libtool). dnl Sets the variables LIBMULTITHREAD and LTLIBMULTITHREAD similarly, for dnl programs that really need multithread functionality. The difference dnl between LIBTHREAD and LIBMULTITHREAD is that on platforms supporting weak dnl symbols, typically LIBTHREAD="" whereas LIBMULTITHREAD="-lpthread". dnl Adds to CPPFLAGS the flag -D_REENTRANT or -D_THREAD_SAFE if needed for dnl multithread-safe programs. AC_DEFUN([gl_THREADLIB_EARLY], [ AC_REQUIRE([gl_THREADLIB_EARLY_BODY]) ]) dnl The guts of gl_THREADLIB_EARLY. Needs to be expanded only once. AC_DEFUN([gl_THREADLIB_EARLY_BODY], [ dnl Ordering constraints: This macro modifies CPPFLAGS in a way that dnl influences the result of the autoconf tests that test for *_unlocked dnl declarations, on AIX 5 at least. Therefore it must come early. AC_BEFORE([$0], [gl_FUNC_GLIBC_UNLOCKED_IO])dnl AC_BEFORE([$0], [gl_ARGP])dnl AC_REQUIRE([AC_CANONICAL_HOST]) dnl _GNU_SOURCE is needed for pthread_rwlock_t on glibc systems. dnl AC_USE_SYSTEM_EXTENSIONS was introduced in autoconf 2.60 and obsoletes dnl AC_GNU_SOURCE. m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])], [AC_REQUIRE([AC_GNU_SOURCE])]) dnl Check for multithreading. m4_ifdef([gl_THREADLIB_DEFAULT_NO], [m4_divert_text([DEFAULTS], [gl_use_threads_default=no])], [m4_divert_text([DEFAULTS], [gl_use_threads_default=])]) AC_ARG_ENABLE([threads], AC_HELP_STRING([--enable-threads={posix|solaris|pth|windows}], [specify multithreading API])m4_ifdef([gl_THREADLIB_DEFAULT_NO], [], [ AC_HELP_STRING([--disable-threads], [build without multithread safety])]), [gl_use_threads=$enableval], [if test -n "$gl_use_threads_default"; then gl_use_threads="$gl_use_threads_default" else changequote(,)dnl case "$host_os" in dnl Disable multithreading by default on OSF/1, because it interferes dnl with fork()/exec(): When msgexec is linked with -lpthread, its dnl child process gets an endless segmentation fault inside execvp(). dnl Disable multithreading by default on Cygwin 1.5.x, because it has dnl bugs that lead to endless loops or crashes. See dnl . osf*) gl_use_threads=no ;; cygwin*) case `uname -r` in 1.[0-5].*) gl_use_threads=no ;; *) gl_use_threads=yes ;; esac ;; *) gl_use_threads=yes ;; esac changequote([,])dnl fi ]) if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # For using : case "$host_os" in osf*) # On OSF/1, the compiler needs the flag -D_REENTRANT so that it # groks . cc also understands the flag -pthread, but # we don't use it because 1. gcc-2.95 doesn't understand -pthread, # 2. putting a flag into CPPFLAGS that has an effect on the linker # causes the AC_LINK_IFELSE test below to succeed unexpectedly, # leading to wrong values of LIBTHREAD and LTLIBTHREAD. CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac # Some systems optimize for single-threaded programs by default, and # need special flags to disable these optimizations. For example, the # definition of 'errno' in . case "$host_os" in aix* | freebsd*) CPPFLAGS="$CPPFLAGS -D_THREAD_SAFE" ;; solaris*) CPPFLAGS="$CPPFLAGS -D_REENTRANT" ;; esac fi ]) dnl The guts of gl_THREADLIB. Needs to be expanded only once. AC_DEFUN([gl_THREADLIB_BODY], [ AC_REQUIRE([gl_THREADLIB_EARLY_BODY]) gl_threads_api=none LIBTHREAD= LTLIBTHREAD= LIBMULTITHREAD= LTLIBMULTITHREAD= if test "$gl_use_threads" != no; then dnl Check whether the compiler and linker support weak declarations. AC_CACHE_CHECK([whether imported symbols can be declared weak], [gl_cv_have_weak], [gl_cv_have_weak=no dnl First, test whether the compiler accepts it syntactically. AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[extern void xyzzy (); #pragma weak xyzzy]], [[xyzzy();]])], [gl_cv_have_weak=maybe]) if test $gl_cv_have_weak = maybe; then dnl Second, test whether it actually works. On Cygwin 1.7.2, with dnl gcc 4.3, symbols declared weak always evaluate to the address 0. AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #pragma weak fputs int main () { return (fputs == NULL); }]])], [gl_cv_have_weak=yes], [gl_cv_have_weak=no], [dnl When cross-compiling, assume that only ELF platforms support dnl weak symbols. AC_EGREP_CPP([Extensible Linking Format], [#ifdef __ELF__ Extensible Linking Format #endif ], [gl_cv_have_weak="guessing yes"], [gl_cv_have_weak="guessing no"]) ]) fi ]) if test "$gl_use_threads" = yes || test "$gl_use_threads" = posix; then # On OSF/1, the compiler needs the flag -pthread or -D_REENTRANT so that # it groks . It's added above, in gl_THREADLIB_EARLY_BODY. AC_CHECK_HEADER([pthread.h], [gl_have_pthread_h=yes], [gl_have_pthread_h=no]) if test "$gl_have_pthread_h" = yes; then # Other possible tests: # -lpthreads (FSU threads, PCthreads) # -lgthreads gl_have_pthread= # Test whether both pthread_mutex_lock and pthread_mutexattr_init exist # in libc. IRIX 6.5 has the first one in both libc and libpthread, but # the second one only in libpthread, and lock.c needs it. AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[pthread_mutex_lock((pthread_mutex_t*)0); pthread_mutexattr_init((pthread_mutexattr_t*)0);]])], [gl_have_pthread=yes]) # Test for libpthread by looking for pthread_kill. (Not pthread_self, # since it is defined as a macro on OSF/1.) if test -n "$gl_have_pthread"; then # The program links fine without libpthread. But it may actually # need to link with libpthread in order to create multiple threads. AC_CHECK_LIB([pthread], [pthread_kill], [LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread # On Solaris and HP-UX, most pthread functions exist also in libc. # Therefore pthread_in_use() needs to actually try to create a # thread: pthread_create from libc will fail, whereas # pthread_create will actually create a thread. case "$host_os" in solaris* | hpux*) AC_DEFINE([PTHREAD_IN_USE_DETECTION_HARD], [1], [Define if the pthread_in_use() detection is hard.]) esac ]) else # Some library is needed. Try libpthread and libc_r. AC_CHECK_LIB([pthread], [pthread_kill], [gl_have_pthread=yes LIBTHREAD=-lpthread LTLIBTHREAD=-lpthread LIBMULTITHREAD=-lpthread LTLIBMULTITHREAD=-lpthread]) if test -z "$gl_have_pthread"; then # For FreeBSD 4. AC_CHECK_LIB([c_r], [pthread_kill], [gl_have_pthread=yes LIBTHREAD=-lc_r LTLIBTHREAD=-lc_r LIBMULTITHREAD=-lc_r LTLIBMULTITHREAD=-lc_r]) fi fi if test -n "$gl_have_pthread"; then gl_threads_api=posix AC_DEFINE([USE_POSIX_THREADS], [1], [Define if the POSIX multithreading library can be used.]) if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then AC_DEFINE([USE_POSIX_THREADS_WEAK], [1], [Define if references to the POSIX multithreading library should be made weak.]) LIBTHREAD= LTLIBTHREAD= fi fi fi fi fi if test -z "$gl_have_pthread"; then if test "$gl_use_threads" = yes || test "$gl_use_threads" = solaris; then gl_have_solaristhread= gl_save_LIBS="$LIBS" LIBS="$LIBS -lthread" AC_LINK_IFELSE( [AC_LANG_PROGRAM( [[ #include #include ]], [[thr_self();]])], [gl_have_solaristhread=yes]) LIBS="$gl_save_LIBS" if test -n "$gl_have_solaristhread"; then gl_threads_api=solaris LIBTHREAD=-lthread LTLIBTHREAD=-lthread LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" AC_DEFINE([USE_SOLARIS_THREADS], [1], [Define if the old Solaris multithreading library can be used.]) if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then AC_DEFINE([USE_SOLARIS_THREADS_WEAK], [1], [Define if references to the old Solaris multithreading library should be made weak.]) LIBTHREAD= LTLIBTHREAD= fi fi fi fi if test "$gl_use_threads" = pth; then gl_save_CPPFLAGS="$CPPFLAGS" AC_LIB_LINKFLAGS([pth]) gl_have_pth= gl_save_LIBS="$LIBS" LIBS="$LIBS $LIBPTH" AC_LINK_IFELSE( [AC_LANG_PROGRAM([[#include ]], [[pth_self();]])], [gl_have_pth=yes]) LIBS="$gl_save_LIBS" if test -n "$gl_have_pth"; then gl_threads_api=pth LIBTHREAD="$LIBPTH" LTLIBTHREAD="$LTLIBPTH" LIBMULTITHREAD="$LIBTHREAD" LTLIBMULTITHREAD="$LTLIBTHREAD" AC_DEFINE([USE_PTH_THREADS], [1], [Define if the GNU Pth multithreading library can be used.]) if test -n "$LIBMULTITHREAD" || test -n "$LTLIBMULTITHREAD"; then if case "$gl_cv_have_weak" in *yes) true;; *) false;; esac; then AC_DEFINE([USE_PTH_THREADS_WEAK], [1], [Define if references to the GNU Pth multithreading library should be made weak.]) LIBTHREAD= LTLIBTHREAD= fi fi else CPPFLAGS="$gl_save_CPPFLAGS" fi fi if test -z "$gl_have_pthread"; then case "$gl_use_threads" in yes | windows | win32) # The 'win32' is for backward compatibility. if { case "$host_os" in mingw*) true;; *) false;; esac }; then gl_threads_api=windows AC_DEFINE([USE_WINDOWS_THREADS], [1], [Define if the native Windows multithreading API can be used.]) fi ;; esac fi fi AC_MSG_CHECKING([for multithread API to use]) AC_MSG_RESULT([$gl_threads_api]) AC_SUBST([LIBTHREAD]) AC_SUBST([LTLIBTHREAD]) AC_SUBST([LIBMULTITHREAD]) AC_SUBST([LTLIBMULTITHREAD]) ]) AC_DEFUN([gl_THREADLIB], [ AC_REQUIRE([gl_THREADLIB_EARLY]) AC_REQUIRE([gl_THREADLIB_BODY]) ]) dnl gl_DISABLE_THREADS dnl ------------------ dnl Sets the gl_THREADLIB default so that threads are not used by default. dnl The user can still override it at installation time, by using the dnl configure option '--enable-threads'. AC_DEFUN([gl_DISABLE_THREADS], [ m4_divert_text([INIT_PREPARE], [gl_use_threads_default=no]) ]) dnl Survey of platforms: dnl dnl Platform Available Compiler Supports test-lock dnl flavours option weak result dnl --------------- --------- --------- -------- --------- dnl Linux 2.4/glibc posix -lpthread Y OK dnl dnl GNU Hurd/glibc posix dnl dnl FreeBSD 5.3 posix -lc_r Y dnl posix -lkse ? Y dnl posix -lpthread ? Y dnl posix -lthr Y dnl dnl FreeBSD 5.2 posix -lc_r Y dnl posix -lkse Y dnl posix -lthr Y dnl dnl FreeBSD 4.0,4.10 posix -lc_r Y OK dnl dnl NetBSD 1.6 -- dnl dnl OpenBSD 3.4 posix -lpthread Y OK dnl dnl Mac OS X 10.[123] posix -lpthread Y OK dnl dnl Solaris 7,8,9 posix -lpthread Y Sol 7,8: 0.0; Sol 9: OK dnl solaris -lthread Y Sol 7,8: 0.0; Sol 9: OK dnl dnl HP-UX 11 posix -lpthread N (cc) OK dnl Y (gcc) dnl dnl IRIX 6.5 posix -lpthread Y 0.5 dnl dnl AIX 4.3,5.1 posix -lpthread N AIX 4: 0.5; AIX 5: OK dnl dnl OSF/1 4.0,5.1 posix -pthread (cc) N OK dnl -lpthread (gcc) Y dnl dnl Cygwin posix -lpthread Y OK dnl dnl Any of the above pth -lpth 0.0 dnl dnl Mingw windows N OK dnl dnl BeOS 5 -- dnl dnl The test-lock result shows what happens if in test-lock.c EXPLICIT_YIELD is dnl turned off: dnl OK if all three tests terminate OK, dnl 0.5 if the first test terminates OK but the second one loops endlessly, dnl 0.0 if the first test already loops endlessly. ttfautohint-0.97/gnulib/m4/memchr.m40000644000175000001440000000534012237364241014262 00000000000000# memchr.m4 serial 12 dnl Copyright (C) 2002-2004, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN_ONCE([gl_FUNC_MEMCHR], [ dnl Check for prerequisites for memory fence checks. gl_FUNC_MMAP_ANON AC_CHECK_HEADERS_ONCE([sys/mman.h]) AC_CHECK_FUNCS_ONCE([mprotect]) AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) m4_ifdef([gl_FUNC_MEMCHR_OBSOLETE], [ dnl These days, we assume memchr is present. But if support for old dnl platforms is desired: AC_CHECK_FUNCS_ONCE([memchr]) if test $ac_cv_func_memchr = no; then HAVE_MEMCHR=0 fi ]) if test $HAVE_MEMCHR = 1; then # Detect platform-specific bugs in some versions of glibc: # memchr should not dereference anything with length 0 # http://bugzilla.redhat.com/499689 # memchr should not dereference overestimated length after a match # http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=521737 # http://sourceware.org/bugzilla/show_bug.cgi?id=10162 # Assume that memchr works on platforms that lack mprotect. AC_CACHE_CHECK([whether memchr works], [gl_cv_func_memchr_works], [AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include #if HAVE_SYS_MMAN_H # include # include # include # include # ifndef MAP_FILE # define MAP_FILE 0 # endif #endif ]], [[ int result = 0; char *fence = NULL; #if HAVE_SYS_MMAN_H && HAVE_MPROTECT # if HAVE_MAP_ANONYMOUS const int flags = MAP_ANONYMOUS | MAP_PRIVATE; const int fd = -1; # else /* !HAVE_MAP_ANONYMOUS */ const int flags = MAP_FILE | MAP_PRIVATE; int fd = open ("/dev/zero", O_RDONLY, 0666); if (fd >= 0) # endif { int pagesize = getpagesize (); char *two_pages = (char *) mmap (NULL, 2 * pagesize, PROT_READ | PROT_WRITE, flags, fd, 0); if (two_pages != (char *)(-1) && mprotect (two_pages + pagesize, pagesize, PROT_NONE) == 0) fence = two_pages + pagesize; } #endif if (fence) { if (memchr (fence, 0, 0)) result |= 1; strcpy (fence - 9, "12345678"); if (memchr (fence - 9, 0, 79) != fence - 1) result |= 2; if (memchr (fence - 1, 0, 3) != fence - 1) result |= 4; } return result; ]])], [gl_cv_func_memchr_works=yes], [gl_cv_func_memchr_works=no], [dnl Be pessimistic for now. gl_cv_func_memchr_works="guessing no"])]) if test "$gl_cv_func_memchr_works" != yes; then REPLACE_MEMCHR=1 fi fi ]) # Prerequisites of lib/memchr.c. AC_DEFUN([gl_PREREQ_MEMCHR], [ AC_CHECK_HEADERS([bp-sym.h]) ]) ttfautohint-0.97/gnulib/m4/nocrash.m40000644000175000001440000001055512237364241014450 00000000000000# nocrash.m4 serial 4 dnl Copyright (C) 2005, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Based on libsigsegv, from Bruno Haible and Paolo Bonzini. AC_PREREQ([2.13]) dnl Expands to some code for use in .c programs that will cause the configure dnl test to exit instead of crashing. This is useful to avoid triggering dnl action from a background debugger and to avoid core dumps. dnl Usage: ... dnl ]GL_NOCRASH[ dnl ... dnl int main() { nocrash_init(); ... } AC_DEFUN([GL_NOCRASH],[[ #include #if defined __MACH__ && defined __APPLE__ /* Avoid a crash on Mac OS X. */ #include #include #include #include #include #include /* The exception port on which our thread listens. */ static mach_port_t our_exception_port; /* The main function of the thread listening for exceptions of type EXC_BAD_ACCESS. */ static void * mach_exception_thread (void *arg) { /* Buffer for a message to be received. */ struct { mach_msg_header_t head; mach_msg_body_t msgh_body; char data[1024]; } msg; mach_msg_return_t retval; /* Wait for a message on the exception port. */ retval = mach_msg (&msg.head, MACH_RCV_MSG | MACH_RCV_LARGE, 0, sizeof (msg), our_exception_port, MACH_MSG_TIMEOUT_NONE, MACH_PORT_NULL); if (retval != MACH_MSG_SUCCESS) abort (); exit (1); } static void nocrash_init (void) { mach_port_t self = mach_task_self (); /* Allocate a port on which the thread shall listen for exceptions. */ if (mach_port_allocate (self, MACH_PORT_RIGHT_RECEIVE, &our_exception_port) == KERN_SUCCESS) { /* See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/mach_port_insert_right.html. */ if (mach_port_insert_right (self, our_exception_port, our_exception_port, MACH_MSG_TYPE_MAKE_SEND) == KERN_SUCCESS) { /* The exceptions we want to catch. Only EXC_BAD_ACCESS is interesting for us. */ exception_mask_t mask = EXC_MASK_BAD_ACCESS; /* Create the thread listening on the exception port. */ pthread_attr_t attr; pthread_t thread; if (pthread_attr_init (&attr) == 0 && pthread_attr_setdetachstate (&attr, PTHREAD_CREATE_DETACHED) == 0 && pthread_create (&thread, &attr, mach_exception_thread, NULL) == 0) { pthread_attr_destroy (&attr); /* Replace the exception port info for these exceptions with our own. Note that we replace the exception port for the entire task, not only for a particular thread. This has the effect that when our exception port gets the message, the thread specific exception port has already been asked, and we don't need to bother about it. See http://web.mit.edu/darwin/src/modules/xnu/osfmk/man/task_set_exception_ports.html. */ task_set_exception_ports (self, mask, our_exception_port, EXCEPTION_DEFAULT, MACHINE_THREAD_STATE); } } } } #elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* Avoid a crash on native Windows. */ #define WIN32_LEAN_AND_MEAN #include #include static LONG WINAPI exception_filter (EXCEPTION_POINTERS *ExceptionInfo) { switch (ExceptionInfo->ExceptionRecord->ExceptionCode) { case EXCEPTION_ACCESS_VIOLATION: case EXCEPTION_IN_PAGE_ERROR: case EXCEPTION_STACK_OVERFLOW: case EXCEPTION_GUARD_PAGE: case EXCEPTION_PRIV_INSTRUCTION: case EXCEPTION_ILLEGAL_INSTRUCTION: case EXCEPTION_DATATYPE_MISALIGNMENT: case EXCEPTION_ARRAY_BOUNDS_EXCEEDED: case EXCEPTION_NONCONTINUABLE_EXCEPTION: exit (1); } return EXCEPTION_CONTINUE_SEARCH; } static void nocrash_init (void) { SetUnhandledExceptionFilter ((LPTOP_LEVEL_EXCEPTION_FILTER) exception_filter); } #else /* Avoid a crash on POSIX systems. */ #include /* A POSIX signal handler. */ static void exception_handler (int sig) { exit (1); } static void nocrash_init (void) { #ifdef SIGSEGV signal (SIGSEGV, exception_handler); #endif #ifdef SIGBUS signal (SIGBUS, exception_handler); #endif } #endif ]]) ttfautohint-0.97/gnulib/m4/gnulib-cache.m40000644000175000001440000000373012237364244015334 00000000000000# Copyright (C) 2002-2013 Free Software Foundation, Inc. # # 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 file 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 file. If not, see . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # # This file represents the specification of how gnulib-tool is used. # It acts as a cache: It is written and read by gnulib-tool. # In projects that use version control, this file is meant to be put under # version control, like the configure.ac and various Makefile.am files. # Specification in the form of a command-line invocation: # gnulib-tool --import --dir=. --local-dir=gl --lib=libgnu --source-base=gnulib/src --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=gnulib --no-conditional-dependencies --libtool --macro-prefix=gl fcntl-h getopt-gnu git-version-gen isatty memmem-simple strerror_r-posix # Specification in the form of a few gnulib-tool.m4 macro invocations: gl_LOCAL_DIR([gl]) gl_MODULES([ fcntl-h getopt-gnu git-version-gen isatty memmem-simple strerror_r-posix ]) gl_AVOID([]) gl_SOURCE_BASE([gnulib/src]) gl_M4_BASE([gnulib/m4]) gl_PO_BASE([]) gl_DOC_BASE([doc]) gl_TESTS_BASE([tests]) gl_LIB([libgnu]) gl_MAKEFILE_NAME([]) gl_LIBTOOL gl_MACRO_PREFIX([gl]) gl_PO_DOMAIN([]) gl_WITNESS_C_MACRO([]) ttfautohint-0.97/gnulib/m4/gnulib-common.m40000644000175000001440000003332112237364241015555 00000000000000# gnulib-common.m4 serial 33 dnl Copyright (C) 2007-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # gl_COMMON # is expanded unconditionally through gnulib-tool magic. AC_DEFUN([gl_COMMON], [ dnl Use AC_REQUIRE here, so that the code is expanded once only. AC_REQUIRE([gl_00GNULIB]) AC_REQUIRE([gl_COMMON_BODY]) ]) AC_DEFUN([gl_COMMON_BODY], [ AH_VERBATIM([_Noreturn], [/* The _Noreturn keyword of C11. */ #if ! (defined _Noreturn \ || (defined __STDC_VERSION__ && 201112 <= __STDC_VERSION__)) # if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \ || 0x5110 <= __SUNPRO_C) # define _Noreturn __attribute__ ((__noreturn__)) # elif defined _MSC_VER && 1200 <= _MSC_VER # define _Noreturn __declspec (noreturn) # else # define _Noreturn # endif #endif ]) AH_VERBATIM([isoc99_inline], [/* Work around a bug in Apple GCC 4.0.1 build 5465: In C99 mode, it supports the ISO C 99 semantics of 'extern inline' (unlike the GNU C semantics of earlier versions), but does not display it by setting __GNUC_STDC_INLINE__. __APPLE__ && __MACH__ test for Mac OS X. __APPLE_CC__ tests for the Apple compiler and its version. __STDC_VERSION__ tests for the C99 mode. */ #if defined __APPLE__ && defined __MACH__ && __APPLE_CC__ >= 5465 && !defined __cplusplus && __STDC_VERSION__ >= 199901L && !defined __GNUC_STDC_INLINE__ # define __GNUC_STDC_INLINE__ 1 #endif]) AH_VERBATIM([unused_parameter], [/* Define as a marker that can be attached to declarations that might not be used. This helps to reduce warnings, such as from GCC -Wunused-parameter. */ #if __GNUC__ >= 3 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) # define _GL_UNUSED __attribute__ ((__unused__)) #else # define _GL_UNUSED #endif /* The name _UNUSED_PARAMETER_ is an earlier spelling, although the name is a misnomer outside of parameter lists. */ #define _UNUSED_PARAMETER_ _GL_UNUSED /* The __pure__ attribute was added in gcc 2.96. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__)) #else # define _GL_ATTRIBUTE_PURE /* empty */ #endif /* The __const__ attribute was added in gcc 2.95. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95) # define _GL_ATTRIBUTE_CONST __attribute__ ((__const__)) #else # define _GL_ATTRIBUTE_CONST /* empty */ #endif ]) dnl Preparation for running test programs: dnl Tell glibc to write diagnostics from -D_FORTIFY_SOURCE=2 to stderr, not dnl to /dev/tty, so they can be redirected to log files. Such diagnostics dnl arise e.g., in the macros gl_PRINTF_DIRECTIVE_N, gl_SNPRINTF_DIRECTIVE_N. LIBC_FATAL_STDERR_=1 export LIBC_FATAL_STDERR_ ]) # gl_MODULE_INDICATOR_CONDITION # expands to a C preprocessor expression that evaluates to 1 or 0, depending # whether a gnulib module that has been requested shall be considered present # or not. m4_define([gl_MODULE_INDICATOR_CONDITION], [1]) # gl_MODULE_INDICATOR_SET_VARIABLE([modulename]) # sets the shell variable that indicates the presence of the given module to # a C preprocessor expression that will evaluate to 1. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE], [ gl_MODULE_INDICATOR_SET_VARIABLE_AUX( [GNULIB_[]m4_translit([[$1]], [abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])], [gl_MODULE_INDICATOR_CONDITION]) ]) # gl_MODULE_INDICATOR_SET_VARIABLE_AUX([variable]) # modifies the shell variable to include the gl_MODULE_INDICATOR_CONDITION. # The shell variable's value is a C preprocessor expression that evaluates # to 0 or 1. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX], [ m4_if(m4_defn([gl_MODULE_INDICATOR_CONDITION]), [1], [ dnl Simplify the expression VALUE || 1 to 1. $1=1 ], [gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([$1], [gl_MODULE_INDICATOR_CONDITION])]) ]) # gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR([variable], [condition]) # modifies the shell variable to include the given condition. The shell # variable's value is a C preprocessor expression that evaluates to 0 or 1. AC_DEFUN([gl_MODULE_INDICATOR_SET_VARIABLE_AUX_OR], [ dnl Simplify the expression 1 || CONDITION to 1. if test "$[]$1" != 1; then dnl Simplify the expression 0 || CONDITION to CONDITION. if test "$[]$1" = 0; then $1=$2 else $1="($[]$1 || $2)" fi fi ]) # gl_MODULE_INDICATOR([modulename]) # defines a C macro indicating the presence of the given module # in a location where it can be used. # | Value | Value | # | in lib/ | in tests/ | # --------------------------------------------+---------+-----------+ # Module present among main modules: | 1 | 1 | # --------------------------------------------+---------+-----------+ # Module present among tests-related modules: | 0 | 1 | # --------------------------------------------+---------+-----------+ # Module not present at all: | 0 | 0 | # --------------------------------------------+---------+-----------+ AC_DEFUN([gl_MODULE_INDICATOR], [ AC_DEFINE_UNQUOTED([GNULIB_]m4_translit([[$1]], [abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [gl_MODULE_INDICATOR_CONDITION], [Define to a C preprocessor expression that evaluates to 1 or 0, depending whether the gnulib module $1 shall be considered present.]) ]) # gl_MODULE_INDICATOR_FOR_TESTS([modulename]) # defines a C macro indicating the presence of the given module # in lib or tests. This is useful to determine whether the module # should be tested. # | Value | Value | # | in lib/ | in tests/ | # --------------------------------------------+---------+-----------+ # Module present among main modules: | 1 | 1 | # --------------------------------------------+---------+-----------+ # Module present among tests-related modules: | 1 | 1 | # --------------------------------------------+---------+-----------+ # Module not present at all: | 0 | 0 | # --------------------------------------------+---------+-----------+ AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], [ AC_DEFINE([GNULIB_TEST_]m4_translit([[$1]], [abcdefghijklmnopqrstuvwxyz./-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ___]), [1], [Define to 1 when the gnulib module $1 should be tested.]) ]) # gl_ASSERT_NO_GNULIB_POSIXCHECK # asserts that there will never be a need to #define GNULIB_POSIXCHECK. # and thereby enables an optimization of configure and config.h. # Used by Emacs. AC_DEFUN([gl_ASSERT_NO_GNULIB_POSIXCHECK], [ dnl Override gl_WARN_ON_USE_PREPARE. dnl But hide this definition from 'aclocal'. AC_DEFUN([gl_W][ARN_ON_USE_PREPARE], []) ]) # gl_ASSERT_NO_GNULIB_TESTS # asserts that there will be no gnulib tests in the scope of the configure.ac # and thereby enables an optimization of config.h. # Used by Emacs. AC_DEFUN([gl_ASSERT_NO_GNULIB_TESTS], [ dnl Override gl_MODULE_INDICATOR_FOR_TESTS. AC_DEFUN([gl_MODULE_INDICATOR_FOR_TESTS], []) ]) # Test whether exists. # Set HAVE_FEATURES_H. AC_DEFUN([gl_FEATURES_H], [ AC_CHECK_HEADERS_ONCE([features.h]) if test $ac_cv_header_features_h = yes; then HAVE_FEATURES_H=1 else HAVE_FEATURES_H=0 fi AC_SUBST([HAVE_FEATURES_H]) ]) # m4_foreach_w # is a backport of autoconf-2.59c's m4_foreach_w. # Remove this macro when we can assume autoconf >= 2.60. m4_ifndef([m4_foreach_w], [m4_define([m4_foreach_w], [m4_foreach([$1], m4_split(m4_normalize([$2]), [ ]), [$3])])]) # AS_VAR_IF(VAR, VALUE, [IF-MATCH], [IF-NOT-MATCH]) # ---------------------------------------------------- # Backport of autoconf-2.63b's macro. # Remove this macro when we can assume autoconf >= 2.64. m4_ifndef([AS_VAR_IF], [m4_define([AS_VAR_IF], [AS_IF([test x"AS_VAR_GET([$1])" = x""$2], [$3], [$4])])]) # gl_PROG_CC_C99 # Modifies the value of the shell variable CC in an attempt to make $CC # understand ISO C99 source code. # This is like AC_PROG_CC_C99, except that # - AC_PROG_CC_C99 did not exist in Autoconf versions < 2.60, # - AC_PROG_CC_C99 does not mix well with AC_PROG_CC_STDC # , # but many more packages use AC_PROG_CC_STDC than AC_PROG_CC_C99 # . # Remaining problems: # - When AC_PROG_CC_STDC is invoked twice, it adds the C99 enabling options # to CC twice # . # - AC_PROG_CC_STDC is likely to change now that C11 is an ISO standard. AC_DEFUN([gl_PROG_CC_C99], [ dnl Change that version number to the minimum Autoconf version that supports dnl mixing AC_PROG_CC_C99 calls with AC_PROG_CC_STDC calls. m4_version_prereq([9.0], [AC_REQUIRE([AC_PROG_CC_C99])], [AC_REQUIRE([AC_PROG_CC_STDC])]) ]) # gl_PROG_AR_RANLIB # Determines the values for AR, ARFLAGS, RANLIB that fit with the compiler. # The user can set the variables AR, ARFLAGS, RANLIB if he wants to override # the values. AC_DEFUN([gl_PROG_AR_RANLIB], [ dnl Minix 3 comes with two toolchains: The Amsterdam Compiler Kit compiler dnl as "cc", and GCC as "gcc". They have different object file formats and dnl library formats. In particular, the GNU binutils programs ar, ranlib dnl produce libraries that work only with gcc, not with cc. AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK([for Minix Amsterdam compiler], [gl_cv_c_amsterdam_compiler], [ AC_EGREP_CPP([Amsterdam], [ #ifdef __ACK__ Amsterdam #endif ], [gl_cv_c_amsterdam_compiler=yes], [gl_cv_c_amsterdam_compiler=no]) ]) if test -z "$AR"; then if test $gl_cv_c_amsterdam_compiler = yes; then AR='cc -c.a' if test -z "$ARFLAGS"; then ARFLAGS='-o' fi else dnl Use the Automake-documented default values for AR and ARFLAGS, dnl but prefer ${host}-ar over ar (useful for cross-compiling). AC_CHECK_TOOL([AR], [ar], [ar]) if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi else if test -z "$ARFLAGS"; then ARFLAGS='cru' fi fi AC_SUBST([AR]) AC_SUBST([ARFLAGS]) if test -z "$RANLIB"; then if test $gl_cv_c_amsterdam_compiler = yes; then RANLIB=':' else dnl Use the ranlib program if it is available. AC_PROG_RANLIB fi fi AC_SUBST([RANLIB]) ]) # AC_PROG_MKDIR_P # is a backport of autoconf-2.60's AC_PROG_MKDIR_P, with a fix # for interoperability with automake-1.9.6 from autoconf-2.62. # Remove this macro when we can assume autoconf >= 2.62 or # autoconf >= 2.60 && automake >= 1.10. # AC_AUTOCONF_VERSION was introduced in 2.62, so use that as the witness. m4_ifndef([AC_AUTOCONF_VERSION],[ m4_ifdef([AC_PROG_MKDIR_P], [ dnl For automake-1.9.6 && autoconf < 2.62: Ensure MKDIR_P is AC_SUBSTed. m4_define([AC_PROG_MKDIR_P], m4_defn([AC_PROG_MKDIR_P])[ AC_SUBST([MKDIR_P])])], [ dnl For autoconf < 2.60: Backport of AC_PROG_MKDIR_P. AC_DEFUN_ONCE([AC_PROG_MKDIR_P], [AC_REQUIRE([AM_PROG_MKDIR_P])dnl defined by automake MKDIR_P='$(mkdir_p)' AC_SUBST([MKDIR_P])])]) ]) # AC_C_RESTRICT # This definition overrides the AC_C_RESTRICT macro from autoconf 2.60..2.61, # so that mixed use of GNU C and GNU C++ and mixed use of Sun C and Sun C++ # works. # This definition can be removed once autoconf >= 2.62 can be assumed. # AC_AUTOCONF_VERSION was introduced in 2.62, so use that as the witness. m4_ifndef([AC_AUTOCONF_VERSION],[ AC_DEFUN([AC_C_RESTRICT], [AC_CACHE_CHECK([for C/C++ restrict keyword], [ac_cv_c_restrict], [ac_cv_c_restrict=no # The order here caters to the fact that C++ does not require restrict. for ac_kw in __restrict __restrict__ _Restrict restrict; do AC_COMPILE_IFELSE([AC_LANG_PROGRAM( [[typedef int * int_ptr; int foo (int_ptr $ac_kw ip) { return ip[0]; }]], [[int s[1]; int * $ac_kw t = s; t[0] = 0; return foo(t)]])], [ac_cv_c_restrict=$ac_kw]) test "$ac_cv_c_restrict" != no && break done ]) AH_VERBATIM([restrict], [/* Define to the equivalent of the C99 'restrict' keyword, or to nothing if this is not supported. Do not define if restrict is supported directly. */ #undef restrict /* Work around a bug in Sun C++: it does not support _Restrict, even though the corresponding Sun C compiler does, which causes "#define restrict _Restrict" in the previous line. Perhaps some future version of Sun C++ will work with _Restrict; if so, it'll probably define __RESTRICT, just as Sun C does. */ #if defined __SUNPRO_CC && !defined __RESTRICT # define _Restrict #endif]) case $ac_cv_c_restrict in restrict) ;; no) AC_DEFINE([restrict], []) ;; *) AC_DEFINE_UNQUOTED([restrict], [$ac_cv_c_restrict]) ;; esac ]) ]) # gl_BIGENDIAN # is like AC_C_BIGENDIAN, except that it can be AC_REQUIREd. # Note that AC_REQUIRE([AC_C_BIGENDIAN]) does not work reliably because some # macros invoke AC_C_BIGENDIAN with arguments. AC_DEFUN([gl_BIGENDIAN], [ AC_C_BIGENDIAN ]) # gl_CACHE_VAL_SILENT(cache-id, command-to-set-it) # is like AC_CACHE_VAL(cache-id, command-to-set-it), except that it does not # output a spurious "(cached)" mark in the midst of other configure output. # This macro should be used instead of AC_CACHE_VAL when it is not surrounded # by an AC_MSG_CHECKING/AC_MSG_RESULT pair. AC_DEFUN([gl_CACHE_VAL_SILENT], [ saved_as_echo_n="$as_echo_n" as_echo_n=':' AC_CACHE_VAL([$1], [$2]) as_echo_n="$saved_as_echo_n" ]) ttfautohint-0.97/gnulib/m4/lib-ld.m40000644000175000001440000000714312237364241014155 00000000000000# lib-ld.m4 serial 6 dnl Copyright (C) 1996-2003, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Subroutines of libtool.m4, dnl with replacements s/_*LT_PATH/AC_LIB_PROG/ and s/lt_/acl_/ to avoid dnl collision with libtool.m4. dnl From libtool-2.4. Sets the variable with_gnu_ld to yes or no. AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], [acl_cv_prog_gnu_ld], [# I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 /dev/null 2>&1 \ && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 \ || PATH_SEPARATOR=';' } fi ac_prog=ld if test "$GCC" = yes; 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 "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL([acl_cv_path_LD], [if test -z "$LD"; then acl_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$acl_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then acl_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 `"$acl_cv_path_LD" -v 2>&1 . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # # This file represents the compiled summary of the specification in # gnulib-cache.m4. It lists the computed macro invocations that need # to be invoked from configure.ac. # In projects that use version control, this file can be treated like # other built files. # This macro should be invoked from ./configure.ac, in the section # "Checks for programs", right after AC_PROG_CC, and certainly before # any checks for libraries, header files, types and library functions. AC_DEFUN([gl_EARLY], [ m4_pattern_forbid([^gl_[A-Z]])dnl the gnulib macro namespace m4_pattern_allow([^gl_ES$])dnl a valid locale name m4_pattern_allow([^gl_LIBOBJS$])dnl a variable m4_pattern_allow([^gl_LTLIBOBJS$])dnl a variable AC_REQUIRE([gl_PROG_AR_RANLIB]) AC_REQUIRE([AM_PROG_CC_C_O]) # Code from module errno: # Code from module extensions: AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) # Code from module extern-inline: # Code from module fcntl-h: # Code from module getopt-gnu: # Code from module getopt-posix: # Code from module gettext-h: # Code from module git-version-gen: # Code from module havelib: # Code from module include_next: # Code from module isatty: # Code from module lock: # Code from module memchr: # Code from module memmem-simple: # Code from module msvc-inval: # Code from module msvc-nothrow: # Code from module multiarch: # Code from module nocrash: # Code from module snippet/arg-nonnull: # Code from module snippet/c++defs: # Code from module snippet/warn-on-use: # Code from module ssize_t: # Code from module stddef: # Code from module stdint: # Code from module strerror-override: # Code from module strerror_r-posix: # Code from module string: # Code from module sys_types: # Code from module threadlib: gl_THREADLIB_EARLY # Code from module unistd: ]) # This macro should be invoked from ./configure.ac, in the section # "Check for header files, types and library functions". AC_DEFUN([gl_INIT], [ AM_CONDITIONAL([GL_COND_LIBTOOL], [true]) gl_cond_libtool=true gl_m4_base='gnulib/m4' m4_pushdef([AC_LIBOBJ], m4_defn([gl_LIBOBJ])) m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gl_REPLACE_FUNCS])) m4_pushdef([AC_LIBSOURCES], m4_defn([gl_LIBSOURCES])) m4_pushdef([gl_LIBSOURCES_LIST], []) m4_pushdef([gl_LIBSOURCES_DIR], []) gl_COMMON gl_source_base='gnulib/src' gl_HEADER_ERRNO_H AC_REQUIRE([gl_EXTERN_INLINE]) gl_FCNTL_H gl_FUNC_GETOPT_GNU if test $REPLACE_GETOPT = 1; then AC_LIBOBJ([getopt]) AC_LIBOBJ([getopt1]) gl_PREREQ_GETOPT dnl Arrange for unistd.h to include getopt.h. GNULIB_GL_UNISTD_H_GETOPT=1 fi AC_SUBST([GNULIB_GL_UNISTD_H_GETOPT]) gl_MODULE_INDICATOR_FOR_TESTS([getopt-gnu]) gl_FUNC_GETOPT_POSIX if test $REPLACE_GETOPT = 1; then AC_LIBOBJ([getopt]) AC_LIBOBJ([getopt1]) gl_PREREQ_GETOPT dnl Arrange for unistd.h to include getopt.h. GNULIB_GL_UNISTD_H_GETOPT=1 fi AC_SUBST([GNULIB_GL_UNISTD_H_GETOPT]) AC_SUBST([LIBINTL]) AC_SUBST([LTLIBINTL]) gl_FUNC_ISATTY if test $REPLACE_ISATTY = 1; then AC_LIBOBJ([isatty]) gl_PREREQ_ISATTY fi gl_UNISTD_MODULE_INDICATOR([isatty]) gl_LOCK gl_MODULE_INDICATOR([lock]) gl_FUNC_MEMCHR if test $HAVE_MEMCHR = 0 || test $REPLACE_MEMCHR = 1; then AC_LIBOBJ([memchr]) gl_PREREQ_MEMCHR fi gl_STRING_MODULE_INDICATOR([memchr]) gl_FUNC_MEMMEM_SIMPLE if test $HAVE_MEMMEM = 0 || test $REPLACE_MEMMEM = 1; then AC_LIBOBJ([memmem]) fi gl_STRING_MODULE_INDICATOR([memmem]) gl_MSVC_INVAL if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then AC_LIBOBJ([msvc-inval]) fi gl_MSVC_NOTHROW if test $HAVE_MSVC_INVALID_PARAMETER_HANDLER = 1; then AC_LIBOBJ([msvc-nothrow]) fi gl_MULTIARCH gt_TYPE_SSIZE_T gl_STDDEF_H gl_STDINT_H AC_REQUIRE([gl_HEADER_ERRNO_H]) AC_REQUIRE([gl_FUNC_STRERROR_0]) if test -n "$ERRNO_H" || test $REPLACE_STRERROR_0 = 1; then AC_LIBOBJ([strerror-override]) gl_PREREQ_SYS_H_WINSOCK2 fi gl_FUNC_STRERROR_R if test $HAVE_DECL_STRERROR_R = 0 || test $REPLACE_STRERROR_R = 1; then AC_LIBOBJ([strerror_r]) gl_PREREQ_STRERROR_R fi gl_STRING_MODULE_INDICATOR([strerror_r]) gl_HEADER_STRING_H gl_SYS_TYPES_H AC_PROG_MKDIR_P gl_THREADLIB gl_UNISTD_H # End of code from modules m4_ifval(gl_LIBSOURCES_LIST, [ m4_syscmd([test ! -d ]m4_defn([gl_LIBSOURCES_DIR])[ || for gl_file in ]gl_LIBSOURCES_LIST[ ; do if test ! -r ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file ; then echo "missing file ]m4_defn([gl_LIBSOURCES_DIR])[/$gl_file" >&2 exit 1 fi done])dnl m4_if(m4_sysval, [0], [], [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ]) m4_popdef([gl_LIBSOURCES_DIR]) m4_popdef([gl_LIBSOURCES_LIST]) m4_popdef([AC_LIBSOURCES]) m4_popdef([AC_REPLACE_FUNCS]) m4_popdef([AC_LIBOBJ]) AC_CONFIG_COMMANDS_PRE([ gl_libobjs= gl_ltlibobjs= if test -n "$gl_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gl_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gl_libobjs="$gl_libobjs $i.$ac_objext" gl_ltlibobjs="$gl_ltlibobjs $i.lo" done fi AC_SUBST([gl_LIBOBJS], [$gl_libobjs]) AC_SUBST([gl_LTLIBOBJS], [$gl_ltlibobjs]) ]) gltests_libdeps= gltests_ltlibdeps= m4_pushdef([AC_LIBOBJ], m4_defn([gltests_LIBOBJ])) m4_pushdef([AC_REPLACE_FUNCS], m4_defn([gltests_REPLACE_FUNCS])) m4_pushdef([AC_LIBSOURCES], m4_defn([gltests_LIBSOURCES])) m4_pushdef([gltests_LIBSOURCES_LIST], []) m4_pushdef([gltests_LIBSOURCES_DIR], []) gl_COMMON gl_source_base='tests' changequote(,)dnl gltests_WITNESS=IN_`echo "${PACKAGE-$PACKAGE_TARNAME}" | LC_ALL=C tr abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ | LC_ALL=C sed -e 's/[^A-Z0-9_]/_/g'`_GNULIB_TESTS changequote([, ])dnl AC_SUBST([gltests_WITNESS]) gl_module_indicator_condition=$gltests_WITNESS m4_pushdef([gl_MODULE_INDICATOR_CONDITION], [$gl_module_indicator_condition]) m4_popdef([gl_MODULE_INDICATOR_CONDITION]) m4_ifval(gltests_LIBSOURCES_LIST, [ m4_syscmd([test ! -d ]m4_defn([gltests_LIBSOURCES_DIR])[ || for gl_file in ]gltests_LIBSOURCES_LIST[ ; do if test ! -r ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file ; then echo "missing file ]m4_defn([gltests_LIBSOURCES_DIR])[/$gl_file" >&2 exit 1 fi done])dnl m4_if(m4_sysval, [0], [], [AC_FATAL([expected source file, required through AC_LIBSOURCES, not found])]) ]) m4_popdef([gltests_LIBSOURCES_DIR]) m4_popdef([gltests_LIBSOURCES_LIST]) m4_popdef([AC_LIBSOURCES]) m4_popdef([AC_REPLACE_FUNCS]) m4_popdef([AC_LIBOBJ]) AC_CONFIG_COMMANDS_PRE([ gltests_libobjs= gltests_ltlibobjs= if test -n "$gltests_LIBOBJS"; then # Remove the extension. sed_drop_objext='s/\.o$//;s/\.obj$//' for i in `for i in $gltests_LIBOBJS; do echo "$i"; done | sed -e "$sed_drop_objext" | sort | uniq`; do gltests_libobjs="$gltests_libobjs $i.$ac_objext" gltests_ltlibobjs="$gltests_ltlibobjs $i.lo" done fi AC_SUBST([gltests_LIBOBJS], [$gltests_libobjs]) AC_SUBST([gltests_LTLIBOBJS], [$gltests_ltlibobjs]) ]) ]) # Like AC_LIBOBJ, except that the module name goes # into gl_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gl_LIBOBJ], [ AS_LITERAL_IF([$1], [gl_LIBSOURCES([$1.c])])dnl gl_LIBOBJS="$gl_LIBOBJS $1.$ac_objext" ]) # Like AC_REPLACE_FUNCS, except that the module name goes # into gl_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gl_REPLACE_FUNCS], [ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl AC_CHECK_FUNCS([$1], , [gl_LIBOBJ($ac_func)]) ]) # Like AC_LIBSOURCES, except the directory where the source file is # expected is derived from the gnulib-tool parameterization, # and alloca is special cased (for the alloca-opt module). # We could also entirely rely on EXTRA_lib..._SOURCES. AC_DEFUN([gl_LIBSOURCES], [ m4_foreach([_gl_NAME], [$1], [ m4_if(_gl_NAME, [alloca.c], [], [ m4_define([gl_LIBSOURCES_DIR], [gnulib/src]) m4_append([gl_LIBSOURCES_LIST], _gl_NAME, [ ]) ]) ]) ]) # Like AC_LIBOBJ, except that the module name goes # into gltests_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gltests_LIBOBJ], [ AS_LITERAL_IF([$1], [gltests_LIBSOURCES([$1.c])])dnl gltests_LIBOBJS="$gltests_LIBOBJS $1.$ac_objext" ]) # Like AC_REPLACE_FUNCS, except that the module name goes # into gltests_LIBOBJS instead of into LIBOBJS. AC_DEFUN([gltests_REPLACE_FUNCS], [ m4_foreach_w([gl_NAME], [$1], [AC_LIBSOURCES(gl_NAME[.c])])dnl AC_CHECK_FUNCS([$1], , [gltests_LIBOBJ($ac_func)]) ]) # Like AC_LIBSOURCES, except the directory where the source file is # expected is derived from the gnulib-tool parameterization, # and alloca is special cased (for the alloca-opt module). # We could also entirely rely on EXTRA_lib..._SOURCES. AC_DEFUN([gltests_LIBSOURCES], [ m4_foreach([_gl_NAME], [$1], [ m4_if(_gl_NAME, [alloca.c], [], [ m4_define([gltests_LIBSOURCES_DIR], [tests]) m4_append([gltests_LIBSOURCES_LIST], _gl_NAME, [ ]) ]) ]) ]) # This macro records the list of files which have been installed by # gnulib-tool and may be removed by future gnulib-tool invocations. AC_DEFUN([gl_FILE_LIST], [ build-aux/config.rpath build-aux/git-version-gen build-aux/snippet/arg-nonnull.h build-aux/snippet/c++defs.h build-aux/snippet/warn-on-use.h lib/errno.in.h lib/fcntl.in.h lib/getopt.c lib/getopt.in.h lib/getopt1.c lib/getopt_int.h lib/gettext.h lib/glthread/lock.c lib/glthread/lock.h lib/glthread/threadlib.c lib/isatty.c lib/memchr.c lib/memchr.valgrind lib/memmem.c lib/msvc-inval.c lib/msvc-inval.h lib/msvc-nothrow.c lib/msvc-nothrow.h lib/stddef.in.h lib/stdint.in.h lib/str-two-way.h lib/strerror-override.c lib/strerror-override.h lib/strerror_r.c lib/string.in.h lib/sys_types.in.h lib/unistd.c lib/unistd.in.h m4/00gnulib.m4 m4/errno_h.m4 m4/extensions.m4 m4/extern-inline.m4 m4/fcntl-o.m4 m4/fcntl_h.m4 m4/getopt.m4 m4/gnulib-common.m4 m4/include_next.m4 m4/isatty.m4 m4/lib-ld.m4 m4/lib-link.m4 m4/lib-prefix.m4 m4/lock.m4 m4/longlong.m4 m4/memchr.m4 m4/memmem.m4 m4/mmap-anon.m4 m4/msvc-inval.m4 m4/msvc-nothrow.m4 m4/multiarch.m4 m4/nocrash.m4 m4/off_t.m4 m4/onceonly.m4 m4/ssize_t.m4 m4/stddef_h.m4 m4/stdint.m4 m4/strerror.m4 m4/strerror_r.m4 m4/string_h.m4 m4/sys_socket_h.m4 m4/sys_types_h.m4 m4/threadlib.m4 m4/unistd_h.m4 m4/warn-on-use.m4 m4/wchar_t.m4 ]) ttfautohint-0.97/gnulib/m4/getopt.m40000644000175000001440000003013412237364241014310 00000000000000# getopt.m4 serial 44 dnl Copyright (C) 2002-2006, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # Request a POSIX compliant getopt function. AC_DEFUN([gl_FUNC_GETOPT_POSIX], [ m4_divert_text([DEFAULTS], [gl_getopt_required=POSIX]) AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) AC_REQUIRE([gl_GETOPT_CHECK_HEADERS]) dnl Other modules can request the gnulib implementation of the getopt dnl functions unconditionally, by defining gl_REPLACE_GETOPT_ALWAYS. dnl argp.m4 does this. m4_ifdef([gl_REPLACE_GETOPT_ALWAYS], [ REPLACE_GETOPT=1 ], [ REPLACE_GETOPT=0 if test -n "$gl_replace_getopt"; then REPLACE_GETOPT=1 fi ]) if test $REPLACE_GETOPT = 1; then dnl Arrange for getopt.h to be created. gl_GETOPT_SUBSTITUTE_HEADER fi ]) # Request a POSIX compliant getopt function with GNU extensions (such as # options with optional arguments) and the functions getopt_long, # getopt_long_only. AC_DEFUN([gl_FUNC_GETOPT_GNU], [ m4_divert_text([INIT_PREPARE], [gl_getopt_required=GNU]) AC_REQUIRE([gl_FUNC_GETOPT_POSIX]) ]) # Determine whether to replace the entire getopt facility. AC_DEFUN([gl_GETOPT_CHECK_HEADERS], [ AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles AC_REQUIRE([AC_PROG_AWK]) dnl for awk that supports ENVIRON dnl Persuade Solaris to declare optarg, optind, opterr, optopt. AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) gl_CHECK_NEXT_HEADERS([getopt.h]) if test $ac_cv_header_getopt_h = yes; then HAVE_GETOPT_H=1 else HAVE_GETOPT_H=0 fi AC_SUBST([HAVE_GETOPT_H]) gl_replace_getopt= dnl Test whether is available. if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then AC_CHECK_HEADERS([getopt.h], [], [gl_replace_getopt=yes]) fi dnl Test whether the function getopt_long is available. if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then AC_CHECK_FUNCS([getopt_long_only], [], [gl_replace_getopt=yes]) fi dnl POSIX 2008 does not specify leading '+' behavior, but see dnl http://austingroupbugs.net/view.php?id=191 for a recommendation on dnl the next version of POSIX. For now, we only guarantee leading '+' dnl behavior with getopt-gnu. if test -z "$gl_replace_getopt"; then AC_CACHE_CHECK([whether getopt is POSIX compatible], [gl_cv_func_getopt_posix], [ dnl Merging these three different test programs into a single one dnl would require a reset mechanism. On BSD systems, it can be done dnl through 'optreset'; on some others (glibc), it can be done by dnl setting 'optind' to 0; on others again (HP-UX, IRIX, OSF/1, dnl Solaris 9, musl libc), there is no such mechanism. if test $cross_compiling = no; then dnl Sanity check. Succeeds everywhere (except on MSVC, dnl which lacks and getopt() entirely). AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include #include int main () { static char program[] = "program"; static char a[] = "-a"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, a, foo, bar, NULL }; int c; c = getopt (4, argv, "ab"); if (!(c == 'a')) return 1; c = getopt (4, argv, "ab"); if (!(c == -1)) return 2; if (!(optind == 2)) return 3; return 0; } ]])], [gl_cv_func_getopt_posix=maybe], [gl_cv_func_getopt_posix=no]) if test $gl_cv_func_getopt_posix = maybe; then dnl Sanity check with '+'. Succeeds everywhere (except on MSVC, dnl which lacks and getopt() entirely). AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include #include int main () { static char program[] = "program"; static char donald[] = "donald"; static char p[] = "-p"; static char billy[] = "billy"; static char duck[] = "duck"; static char a[] = "-a"; static char bar[] = "bar"; char *argv[] = { program, donald, p, billy, duck, a, bar, NULL }; int c; c = getopt (7, argv, "+abp:q:"); if (!(c == -1)) return 4; if (!(strcmp (argv[0], "program") == 0)) return 5; if (!(strcmp (argv[1], "donald") == 0)) return 6; if (!(strcmp (argv[2], "-p") == 0)) return 7; if (!(strcmp (argv[3], "billy") == 0)) return 8; if (!(strcmp (argv[4], "duck") == 0)) return 9; if (!(strcmp (argv[5], "-a") == 0)) return 10; if (!(strcmp (argv[6], "bar") == 0)) return 11; if (!(optind == 1)) return 12; return 0; } ]])], [gl_cv_func_getopt_posix=maybe], [gl_cv_func_getopt_posix=no]) fi if test $gl_cv_func_getopt_posix = maybe; then dnl Detect Mac OS X 10.5, AIX 7.1, mingw bug. AC_RUN_IFELSE( [AC_LANG_SOURCE([[ #include #include #include int main () { static char program[] = "program"; static char ab[] = "-ab"; char *argv[3] = { program, ab, NULL }; if (getopt (2, argv, "ab:") != 'a') return 13; if (getopt (2, argv, "ab:") != '?') return 14; if (optopt != 'b') return 15; if (optind != 2) return 16; return 0; } ]])], [gl_cv_func_getopt_posix=yes], [gl_cv_func_getopt_posix=no]) fi else case "$host_os" in darwin* | aix* | mingw*) gl_cv_func_getopt_posix="guessing no";; *) gl_cv_func_getopt_posix="guessing yes";; esac fi ]) case "$gl_cv_func_getopt_posix" in *no) gl_replace_getopt=yes ;; esac fi if test -z "$gl_replace_getopt" && test $gl_getopt_required = GNU; then AC_CACHE_CHECK([for working GNU getopt function], [gl_cv_func_getopt_gnu], [# Even with POSIXLY_CORRECT, the GNU extension of leading '-' in the # optstring is necessary for programs like m4 that have POSIX-mandated # semantics for supporting options interspersed with files. # Also, since getopt_long is a GNU extension, we require optind=0. # Bash ties 'set -o posix' to a non-exported POSIXLY_CORRECT; # so take care to revert to the correct (non-)export state. dnl GNU Coding Standards currently allow awk but not env; besides, env dnl is ambiguous with environment values that contain newlines. gl_awk_probe='BEGIN { if ("POSIXLY_CORRECT" in ENVIRON) print "x" }' case ${POSIXLY_CORRECT+x}`$AWK "$gl_awk_probe" #include #include ]GL_NOCRASH[ ]], [[ int result = 0; nocrash_init(); /* This code succeeds on glibc 2.8, OpenBSD 4.0, Cygwin, mingw, and fails on Mac OS X 10.5, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10. */ { static char conftest[] = "conftest"; static char plus[] = "-+"; char *argv[3] = { conftest, plus, NULL }; opterr = 0; if (getopt (2, argv, "+a") != '?') result |= 1; } /* This code succeeds on glibc 2.8, mingw, and fails on Mac OS X 10.5, OpenBSD 4.0, AIX 5.2, HP-UX 11, IRIX 6.5, OSF/1 5.1, Solaris 10, Cygwin 1.5.x. */ { static char program[] = "program"; static char p[] = "-p"; static char foo[] = "foo"; static char bar[] = "bar"; char *argv[] = { program, p, foo, bar, NULL }; optind = 1; if (getopt (4, argv, "p::") != 'p') result |= 2; else if (optarg != NULL) result |= 4; else if (getopt (4, argv, "p::") != -1) result |= 6; else if (optind != 2) result |= 8; } /* This code succeeds on glibc 2.8 and fails on Cygwin 1.7.0. */ { static char program[] = "program"; static char foo[] = "foo"; static char p[] = "-p"; char *argv[] = { program, foo, p, NULL }; optind = 0; if (getopt (3, argv, "-p") != 1) result |= 16; else if (getopt (3, argv, "-p") != 'p') result |= 16; } /* This code fails on glibc 2.11. */ { static char program[] = "program"; static char b[] = "-b"; static char a[] = "-a"; char *argv[] = { program, b, a, NULL }; optind = opterr = 0; if (getopt (3, argv, "+:a:b") != 'b') result |= 32; else if (getopt (3, argv, "+:a:b") != ':') result |= 32; } /* This code dumps core on glibc 2.14. */ { static char program[] = "program"; static char w[] = "-W"; static char dummy[] = "dummy"; char *argv[] = { program, w, dummy, NULL }; optind = opterr = 1; if (getopt (3, argv, "W;") != 'W') result |= 64; } return result; ]])], [gl_cv_func_getopt_gnu=yes], [gl_cv_func_getopt_gnu=no], [dnl Cross compiling. Assume the worst, even on glibc platforms. gl_cv_func_getopt_gnu="guessing no" ]) case $gl_had_POSIXLY_CORRECT in exported) ;; yes) AS_UNSET([POSIXLY_CORRECT]); POSIXLY_CORRECT=1 ;; *) AS_UNSET([POSIXLY_CORRECT]) ;; esac ]) if test "$gl_cv_func_getopt_gnu" != yes; then gl_replace_getopt=yes else AC_CACHE_CHECK([for working GNU getopt_long function], [gl_cv_func_getopt_long_gnu], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include #include #include ]], [[static const struct option long_options[] = { { "xtremely-",no_argument, NULL, 1003 }, { "xtra", no_argument, NULL, 1001 }, { "xtreme", no_argument, NULL, 1002 }, { "xtremely", no_argument, NULL, 1003 }, { NULL, 0, NULL, 0 } }; /* This code fails on OpenBSD 5.0. */ { static char program[] = "program"; static char xtremel[] = "--xtremel"; char *argv[] = { program, xtremel, NULL }; int option_index; optind = 1; opterr = 0; if (getopt_long (2, argv, "", long_options, &option_index) != 1003) return 1; } return 0; ]])], [gl_cv_func_getopt_long_gnu=yes], [gl_cv_func_getopt_long_gnu=no], [dnl Cross compiling. Guess no on OpenBSD, yes otherwise. case "$host_os" in openbsd*) gl_cv_func_getopt_long_gnu="guessing no";; *) gl_cv_func_getopt_long_gnu="guessing yes";; esac ]) ]) case "$gl_cv_func_getopt_long_gnu" in *yes) ;; *) gl_replace_getopt=yes ;; esac fi fi ]) AC_DEFUN([gl_GETOPT_SUBSTITUTE_HEADER], [ GETOPT_H=getopt.h AC_DEFINE([__GETOPT_PREFIX], [[rpl_]], [Define to rpl_ if the getopt replacement functions and variables should be used.]) AC_SUBST([GETOPT_H]) ]) # Prerequisites of lib/getopt*. AC_DEFUN([gl_PREREQ_GETOPT], [ AC_CHECK_DECLS_ONCE([getenv]) ]) ttfautohint-0.97/gnulib/m4/stdint.m40000644000175000001440000003701412237364241014317 00000000000000# stdint.m4 serial 43 dnl Copyright (C) 2001-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Paul Eggert and Bruno Haible. dnl Test whether is supported or must be substituted. AC_DEFUN_ONCE([gl_STDINT_H], [ AC_PREREQ([2.59])dnl dnl Check for long long int and unsigned long long int. AC_REQUIRE([AC_TYPE_LONG_LONG_INT]) if test $ac_cv_type_long_long_int = yes; then HAVE_LONG_LONG_INT=1 else HAVE_LONG_LONG_INT=0 fi AC_SUBST([HAVE_LONG_LONG_INT]) AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT]) if test $ac_cv_type_unsigned_long_long_int = yes; then HAVE_UNSIGNED_LONG_LONG_INT=1 else HAVE_UNSIGNED_LONG_LONG_INT=0 fi AC_SUBST([HAVE_UNSIGNED_LONG_LONG_INT]) dnl Check for , in the same way as gl_WCHAR_H does. AC_CHECK_HEADERS_ONCE([wchar.h]) if test $ac_cv_header_wchar_h = yes; then HAVE_WCHAR_H=1 else HAVE_WCHAR_H=0 fi AC_SUBST([HAVE_WCHAR_H]) dnl Check for . dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_inttypes_h. if test $ac_cv_header_inttypes_h = yes; then HAVE_INTTYPES_H=1 else HAVE_INTTYPES_H=0 fi AC_SUBST([HAVE_INTTYPES_H]) dnl Check for . dnl AC_INCLUDES_DEFAULT defines $ac_cv_header_sys_types_h. if test $ac_cv_header_sys_types_h = yes; then HAVE_SYS_TYPES_H=1 else HAVE_SYS_TYPES_H=0 fi AC_SUBST([HAVE_SYS_TYPES_H]) gl_CHECK_NEXT_HEADERS([stdint.h]) if test $ac_cv_header_stdint_h = yes; then HAVE_STDINT_H=1 else HAVE_STDINT_H=0 fi AC_SUBST([HAVE_STDINT_H]) dnl Now see whether we need a substitute . if test $ac_cv_header_stdint_h = yes; then AC_CACHE_CHECK([whether stdint.h conforms to C99], [gl_cv_header_working_stdint_h], [gl_cv_header_working_stdint_h=no AC_COMPILE_IFELSE([ AC_LANG_PROGRAM([[ #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */ #include /* Dragonfly defines WCHAR_MIN, WCHAR_MAX only in . */ #if !(defined WCHAR_MIN && defined WCHAR_MAX) #error "WCHAR_MIN, WCHAR_MAX not defined in " #endif ] gl_STDINT_INCLUDES [ #ifdef INT8_MAX int8_t a1 = INT8_MAX; int8_t a1min = INT8_MIN; #endif #ifdef INT16_MAX int16_t a2 = INT16_MAX; int16_t a2min = INT16_MIN; #endif #ifdef INT32_MAX int32_t a3 = INT32_MAX; int32_t a3min = INT32_MIN; #endif #ifdef INT64_MAX int64_t a4 = INT64_MAX; int64_t a4min = INT64_MIN; #endif #ifdef UINT8_MAX uint8_t b1 = UINT8_MAX; #else typedef int b1[(unsigned char) -1 != 255 ? 1 : -1]; #endif #ifdef UINT16_MAX uint16_t b2 = UINT16_MAX; #endif #ifdef UINT32_MAX uint32_t b3 = UINT32_MAX; #endif #ifdef UINT64_MAX uint64_t b4 = UINT64_MAX; #endif int_least8_t c1 = INT8_C (0x7f); int_least8_t c1max = INT_LEAST8_MAX; int_least8_t c1min = INT_LEAST8_MIN; int_least16_t c2 = INT16_C (0x7fff); int_least16_t c2max = INT_LEAST16_MAX; int_least16_t c2min = INT_LEAST16_MIN; int_least32_t c3 = INT32_C (0x7fffffff); int_least32_t c3max = INT_LEAST32_MAX; int_least32_t c3min = INT_LEAST32_MIN; int_least64_t c4 = INT64_C (0x7fffffffffffffff); int_least64_t c4max = INT_LEAST64_MAX; int_least64_t c4min = INT_LEAST64_MIN; uint_least8_t d1 = UINT8_C (0xff); uint_least8_t d1max = UINT_LEAST8_MAX; uint_least16_t d2 = UINT16_C (0xffff); uint_least16_t d2max = UINT_LEAST16_MAX; uint_least32_t d3 = UINT32_C (0xffffffff); uint_least32_t d3max = UINT_LEAST32_MAX; uint_least64_t d4 = UINT64_C (0xffffffffffffffff); uint_least64_t d4max = UINT_LEAST64_MAX; int_fast8_t e1 = INT_FAST8_MAX; int_fast8_t e1min = INT_FAST8_MIN; int_fast16_t e2 = INT_FAST16_MAX; int_fast16_t e2min = INT_FAST16_MIN; int_fast32_t e3 = INT_FAST32_MAX; int_fast32_t e3min = INT_FAST32_MIN; int_fast64_t e4 = INT_FAST64_MAX; int_fast64_t e4min = INT_FAST64_MIN; uint_fast8_t f1 = UINT_FAST8_MAX; uint_fast16_t f2 = UINT_FAST16_MAX; uint_fast32_t f3 = UINT_FAST32_MAX; uint_fast64_t f4 = UINT_FAST64_MAX; #ifdef INTPTR_MAX intptr_t g = INTPTR_MAX; intptr_t gmin = INTPTR_MIN; #endif #ifdef UINTPTR_MAX uintptr_t h = UINTPTR_MAX; #endif intmax_t i = INTMAX_MAX; uintmax_t j = UINTMAX_MAX; #include /* for CHAR_BIT */ #define TYPE_MINIMUM(t) \ ((t) ((t) 0 < (t) -1 ? (t) 0 : ~ TYPE_MAXIMUM (t))) #define TYPE_MAXIMUM(t) \ ((t) ((t) 0 < (t) -1 \ ? (t) -1 \ : ((((t) 1 << (sizeof (t) * CHAR_BIT - 2)) - 1) * 2 + 1))) struct s { int check_PTRDIFF: PTRDIFF_MIN == TYPE_MINIMUM (ptrdiff_t) && PTRDIFF_MAX == TYPE_MAXIMUM (ptrdiff_t) ? 1 : -1; /* Detect bug in FreeBSD 6.0 / ia64. */ int check_SIG_ATOMIC: SIG_ATOMIC_MIN == TYPE_MINIMUM (sig_atomic_t) && SIG_ATOMIC_MAX == TYPE_MAXIMUM (sig_atomic_t) ? 1 : -1; int check_SIZE: SIZE_MAX == TYPE_MAXIMUM (size_t) ? 1 : -1; int check_WCHAR: WCHAR_MIN == TYPE_MINIMUM (wchar_t) && WCHAR_MAX == TYPE_MAXIMUM (wchar_t) ? 1 : -1; /* Detect bug in mingw. */ int check_WINT: WINT_MIN == TYPE_MINIMUM (wint_t) && WINT_MAX == TYPE_MAXIMUM (wint_t) ? 1 : -1; /* Detect bugs in glibc 2.4 and Solaris 10 stdint.h, among others. */ int check_UINT8_C: (-1 < UINT8_C (0)) == (-1 < (uint_least8_t) 0) ? 1 : -1; int check_UINT16_C: (-1 < UINT16_C (0)) == (-1 < (uint_least16_t) 0) ? 1 : -1; /* Detect bugs in OpenBSD 3.9 stdint.h. */ #ifdef UINT8_MAX int check_uint8: (uint8_t) -1 == UINT8_MAX ? 1 : -1; #endif #ifdef UINT16_MAX int check_uint16: (uint16_t) -1 == UINT16_MAX ? 1 : -1; #endif #ifdef UINT32_MAX int check_uint32: (uint32_t) -1 == UINT32_MAX ? 1 : -1; #endif #ifdef UINT64_MAX int check_uint64: (uint64_t) -1 == UINT64_MAX ? 1 : -1; #endif int check_uint_least8: (uint_least8_t) -1 == UINT_LEAST8_MAX ? 1 : -1; int check_uint_least16: (uint_least16_t) -1 == UINT_LEAST16_MAX ? 1 : -1; int check_uint_least32: (uint_least32_t) -1 == UINT_LEAST32_MAX ? 1 : -1; int check_uint_least64: (uint_least64_t) -1 == UINT_LEAST64_MAX ? 1 : -1; int check_uint_fast8: (uint_fast8_t) -1 == UINT_FAST8_MAX ? 1 : -1; int check_uint_fast16: (uint_fast16_t) -1 == UINT_FAST16_MAX ? 1 : -1; int check_uint_fast32: (uint_fast32_t) -1 == UINT_FAST32_MAX ? 1 : -1; int check_uint_fast64: (uint_fast64_t) -1 == UINT_FAST64_MAX ? 1 : -1; int check_uintptr: (uintptr_t) -1 == UINTPTR_MAX ? 1 : -1; int check_uintmax: (uintmax_t) -1 == UINTMAX_MAX ? 1 : -1; int check_size: (size_t) -1 == SIZE_MAX ? 1 : -1; }; ]])], [dnl Determine whether the various *_MIN, *_MAX macros are usable dnl in preprocessor expression. We could do it by compiling a test dnl program for each of these macros. It is faster to run a program dnl that inspects the macro expansion. dnl This detects a bug on HP-UX 11.23/ia64. AC_RUN_IFELSE([ AC_LANG_PROGRAM([[ #define _GL_JUST_INCLUDE_SYSTEM_STDINT_H 1 /* work if build isn't clean */ #include ] gl_STDINT_INCLUDES [ #include #include #define MVAL(macro) MVAL1(macro) #define MVAL1(expression) #expression static const char *macro_values[] = { #ifdef INT8_MAX MVAL (INT8_MAX), #endif #ifdef INT16_MAX MVAL (INT16_MAX), #endif #ifdef INT32_MAX MVAL (INT32_MAX), #endif #ifdef INT64_MAX MVAL (INT64_MAX), #endif #ifdef UINT8_MAX MVAL (UINT8_MAX), #endif #ifdef UINT16_MAX MVAL (UINT16_MAX), #endif #ifdef UINT32_MAX MVAL (UINT32_MAX), #endif #ifdef UINT64_MAX MVAL (UINT64_MAX), #endif NULL }; ]], [[ const char **mv; for (mv = macro_values; *mv != NULL; mv++) { const char *value = *mv; /* Test whether it looks like a cast expression. */ if (strncmp (value, "((unsigned int)"/*)*/, 15) == 0 || strncmp (value, "((unsigned short)"/*)*/, 17) == 0 || strncmp (value, "((unsigned char)"/*)*/, 16) == 0 || strncmp (value, "((int)"/*)*/, 6) == 0 || strncmp (value, "((signed short)"/*)*/, 15) == 0 || strncmp (value, "((signed char)"/*)*/, 14) == 0) return mv - macro_values + 1; } return 0; ]])], [gl_cv_header_working_stdint_h=yes], [], [dnl When cross-compiling, assume it works. gl_cv_header_working_stdint_h=yes ]) ]) ]) fi if test "$gl_cv_header_working_stdint_h" = yes; then STDINT_H= else dnl Check for , and for dnl (used in Linux libc4 >= 4.6.7 and libc5). AC_CHECK_HEADERS([sys/inttypes.h sys/bitypes.h]) if test $ac_cv_header_sys_inttypes_h = yes; then HAVE_SYS_INTTYPES_H=1 else HAVE_SYS_INTTYPES_H=0 fi AC_SUBST([HAVE_SYS_INTTYPES_H]) if test $ac_cv_header_sys_bitypes_h = yes; then HAVE_SYS_BITYPES_H=1 else HAVE_SYS_BITYPES_H=0 fi AC_SUBST([HAVE_SYS_BITYPES_H]) gl_STDINT_TYPE_PROPERTIES STDINT_H=stdint.h fi AC_SUBST([STDINT_H]) AM_CONDITIONAL([GL_GENERATE_STDINT_H], [test -n "$STDINT_H"]) ]) dnl gl_STDINT_BITSIZEOF(TYPES, INCLUDES) dnl Determine the size of each of the given types in bits. AC_DEFUN([gl_STDINT_BITSIZEOF], [ dnl Use a shell loop, to avoid bloating configure, and dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into dnl config.h.in, dnl - extra AC_SUBST calls, so that the right substitutions are made. m4_foreach_w([gltype], [$1], [AH_TEMPLATE([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]), [Define to the number of bits in type ']gltype['.])]) for gltype in $1 ; do AC_CACHE_CHECK([for bit size of $gltype], [gl_cv_bitsizeof_${gltype}], [AC_COMPUTE_INT([result], [sizeof ($gltype) * CHAR_BIT], [$2 #include ], [result=unknown]) eval gl_cv_bitsizeof_${gltype}=\$result ]) eval result=\$gl_cv_bitsizeof_${gltype} if test $result = unknown; then dnl Use a nonempty default, because some compilers, such as IRIX 5 cc, dnl do a syntax check even on unused #if conditions and give an error dnl on valid C code like this: dnl #if 0 dnl # if > 32 dnl # endif dnl #endif result=0 fi GLTYPE=`echo "$gltype" | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` AC_DEFINE_UNQUOTED([BITSIZEOF_${GLTYPE}], [$result]) eval BITSIZEOF_${GLTYPE}=\$result done m4_foreach_w([gltype], [$1], [AC_SUBST([BITSIZEOF_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))]) ]) dnl gl_CHECK_TYPES_SIGNED(TYPES, INCLUDES) dnl Determine the signedness of each of the given types. dnl Define HAVE_SIGNED_TYPE if type is signed. AC_DEFUN([gl_CHECK_TYPES_SIGNED], [ dnl Use a shell loop, to avoid bloating configure, and dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into dnl config.h.in, dnl - extra AC_SUBST calls, so that the right substitutions are made. m4_foreach_w([gltype], [$1], [AH_TEMPLATE([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]), [Define to 1 if ']gltype[' is a signed integer type.])]) for gltype in $1 ; do AC_CACHE_CHECK([whether $gltype is signed], [gl_cv_type_${gltype}_signed], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([$2[ int verify[2 * (($gltype) -1 < ($gltype) 0) - 1];]])], result=yes, result=no) eval gl_cv_type_${gltype}_signed=\$result ]) eval result=\$gl_cv_type_${gltype}_signed GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` if test "$result" = yes; then AC_DEFINE_UNQUOTED([HAVE_SIGNED_${GLTYPE}], [1]) eval HAVE_SIGNED_${GLTYPE}=1 else eval HAVE_SIGNED_${GLTYPE}=0 fi done m4_foreach_w([gltype], [$1], [AC_SUBST([HAVE_SIGNED_]m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_]))]) ]) dnl gl_INTEGER_TYPE_SUFFIX(TYPES, INCLUDES) dnl Determine the suffix to use for integer constants of the given types. dnl Define t_SUFFIX for each such type. AC_DEFUN([gl_INTEGER_TYPE_SUFFIX], [ dnl Use a shell loop, to avoid bloating configure, and dnl - extra AH_TEMPLATE calls, so that autoheader knows what to put into dnl config.h.in, dnl - extra AC_SUBST calls, so that the right substitutions are made. m4_foreach_w([gltype], [$1], [AH_TEMPLATE(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX], [Define to l, ll, u, ul, ull, etc., as suitable for constants of type ']gltype['.])]) for gltype in $1 ; do AC_CACHE_CHECK([for $gltype integer literal suffix], [gl_cv_type_${gltype}_suffix], [eval gl_cv_type_${gltype}_suffix=no eval result=\$gl_cv_type_${gltype}_signed if test "$result" = yes; then glsufu= else glsufu=u fi for glsuf in "$glsufu" ${glsufu}l ${glsufu}ll ${glsufu}i64; do case $glsuf in '') gltype1='int';; l) gltype1='long int';; ll) gltype1='long long int';; i64) gltype1='__int64';; u) gltype1='unsigned int';; ul) gltype1='unsigned long int';; ull) gltype1='unsigned long long int';; ui64)gltype1='unsigned __int64';; esac AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([$2[ extern $gltype foo; extern $gltype1 foo;]])], [eval gl_cv_type_${gltype}_suffix=\$glsuf]) eval result=\$gl_cv_type_${gltype}_suffix test "$result" != no && break done]) GLTYPE=`echo $gltype | tr 'abcdefghijklmnopqrstuvwxyz ' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ_'` eval result=\$gl_cv_type_${gltype}_suffix test "$result" = no && result= eval ${GLTYPE}_SUFFIX=\$result AC_DEFINE_UNQUOTED([${GLTYPE}_SUFFIX], [$result]) done m4_foreach_w([gltype], [$1], [AC_SUBST(m4_translit(gltype,[abcdefghijklmnopqrstuvwxyz ],[ABCDEFGHIJKLMNOPQRSTUVWXYZ_])[_SUFFIX])]) ]) dnl gl_STDINT_INCLUDES AC_DEFUN([gl_STDINT_INCLUDES], [[ /* BSD/OS 4.0.1 has a bug: , and must be included before . */ #include #include #if HAVE_WCHAR_H # include # include # include #endif ]]) dnl gl_STDINT_TYPE_PROPERTIES dnl Compute HAVE_SIGNED_t, BITSIZEOF_t and t_SUFFIX, for all the types t dnl of interest to stdint.in.h. AC_DEFUN([gl_STDINT_TYPE_PROPERTIES], [ AC_REQUIRE([gl_MULTIARCH]) if test $APPLE_UNIVERSAL_BUILD = 0; then gl_STDINT_BITSIZEOF([ptrdiff_t size_t], [gl_STDINT_INCLUDES]) fi gl_STDINT_BITSIZEOF([sig_atomic_t wchar_t wint_t], [gl_STDINT_INCLUDES]) gl_CHECK_TYPES_SIGNED([sig_atomic_t wchar_t wint_t], [gl_STDINT_INCLUDES]) gl_cv_type_ptrdiff_t_signed=yes gl_cv_type_size_t_signed=no if test $APPLE_UNIVERSAL_BUILD = 0; then gl_INTEGER_TYPE_SUFFIX([ptrdiff_t size_t], [gl_STDINT_INCLUDES]) fi gl_INTEGER_TYPE_SUFFIX([sig_atomic_t wchar_t wint_t], [gl_STDINT_INCLUDES]) dnl If wint_t is smaller than 'int', it cannot satisfy the ISO C 99 dnl requirement that wint_t is "unchanged by default argument promotions". dnl In this case gnulib's and override wint_t. dnl Set the variable BITSIZEOF_WINT_T accordingly. if test $BITSIZEOF_WINT_T -lt 32; then BITSIZEOF_WINT_T=32 fi ]) dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in. dnl Remove this when we can assume autoconf >= 2.61. m4_ifdef([AC_COMPUTE_INT], [], [ AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])]) ]) # Hey Emacs! # Local Variables: # indent-tabs-mode: nil # End: ttfautohint-0.97/gnulib/m4/unistd_h.m40000644000175000001440000002153112237364241014624 00000000000000# unistd_h.m4 serial 67 dnl Copyright (C) 2006-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Written by Simon Josefsson, Bruno Haible. AC_DEFUN([gl_UNISTD_H], [ dnl Use AC_REQUIRE here, so that the default behavior below is expanded dnl once only, before all statements that occur in other macros. AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) gl_CHECK_NEXT_HEADERS([unistd.h]) if test $ac_cv_header_unistd_h = yes; then HAVE_UNISTD_H=1 else HAVE_UNISTD_H=0 fi AC_SUBST([HAVE_UNISTD_H]) dnl Ensure the type pid_t gets defined. AC_REQUIRE([AC_TYPE_PID_T]) dnl Determine WINDOWS_64_BIT_OFF_T. AC_REQUIRE([gl_TYPE_OFF_T]) dnl Check for declarations of anything we want to poison if the dnl corresponding gnulib module is not in use. gl_WARN_ON_USE_PREPARE([[ #if HAVE_UNISTD_H # include #endif /* Some systems declare various items in the wrong headers. */ #if !(defined __GLIBC__ && !defined __UCLIBC__) # include # include # include # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ # include # endif #endif ]], [chdir chown dup dup2 dup3 environ euidaccess faccessat fchdir fchownat fdatasync fsync ftruncate getcwd getdomainname getdtablesize getgroups gethostname getlogin getlogin_r getpagesize getusershell setusershell endusershell group_member isatty lchown link linkat lseek pipe pipe2 pread pwrite readlink readlinkat rmdir sethostname sleep symlink symlinkat ttyname_r unlink unlinkat usleep]) ]) AC_DEFUN([gl_UNISTD_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) dnl Define it also as a C macro, for the benefit of the unit tests. gl_MODULE_INDICATOR_FOR_TESTS([$1]) ]) AC_DEFUN([gl_UNISTD_H_DEFAULTS], [ GNULIB_CHDIR=0; AC_SUBST([GNULIB_CHDIR]) GNULIB_CHOWN=0; AC_SUBST([GNULIB_CHOWN]) GNULIB_CLOSE=0; AC_SUBST([GNULIB_CLOSE]) GNULIB_DUP=0; AC_SUBST([GNULIB_DUP]) GNULIB_DUP2=0; AC_SUBST([GNULIB_DUP2]) GNULIB_DUP3=0; AC_SUBST([GNULIB_DUP3]) GNULIB_ENVIRON=0; AC_SUBST([GNULIB_ENVIRON]) GNULIB_EUIDACCESS=0; AC_SUBST([GNULIB_EUIDACCESS]) GNULIB_FACCESSAT=0; AC_SUBST([GNULIB_FACCESSAT]) GNULIB_FCHDIR=0; AC_SUBST([GNULIB_FCHDIR]) GNULIB_FCHOWNAT=0; AC_SUBST([GNULIB_FCHOWNAT]) GNULIB_FDATASYNC=0; AC_SUBST([GNULIB_FDATASYNC]) GNULIB_FSYNC=0; AC_SUBST([GNULIB_FSYNC]) GNULIB_FTRUNCATE=0; AC_SUBST([GNULIB_FTRUNCATE]) GNULIB_GETCWD=0; AC_SUBST([GNULIB_GETCWD]) GNULIB_GETDOMAINNAME=0; AC_SUBST([GNULIB_GETDOMAINNAME]) GNULIB_GETDTABLESIZE=0; AC_SUBST([GNULIB_GETDTABLESIZE]) GNULIB_GETGROUPS=0; AC_SUBST([GNULIB_GETGROUPS]) GNULIB_GETHOSTNAME=0; AC_SUBST([GNULIB_GETHOSTNAME]) GNULIB_GETLOGIN=0; AC_SUBST([GNULIB_GETLOGIN]) GNULIB_GETLOGIN_R=0; AC_SUBST([GNULIB_GETLOGIN_R]) GNULIB_GETPAGESIZE=0; AC_SUBST([GNULIB_GETPAGESIZE]) GNULIB_GETUSERSHELL=0; AC_SUBST([GNULIB_GETUSERSHELL]) GNULIB_GROUP_MEMBER=0; AC_SUBST([GNULIB_GROUP_MEMBER]) GNULIB_ISATTY=0; AC_SUBST([GNULIB_ISATTY]) GNULIB_LCHOWN=0; AC_SUBST([GNULIB_LCHOWN]) GNULIB_LINK=0; AC_SUBST([GNULIB_LINK]) GNULIB_LINKAT=0; AC_SUBST([GNULIB_LINKAT]) GNULIB_LSEEK=0; AC_SUBST([GNULIB_LSEEK]) GNULIB_PIPE=0; AC_SUBST([GNULIB_PIPE]) GNULIB_PIPE2=0; AC_SUBST([GNULIB_PIPE2]) GNULIB_PREAD=0; AC_SUBST([GNULIB_PREAD]) GNULIB_PWRITE=0; AC_SUBST([GNULIB_PWRITE]) GNULIB_READ=0; AC_SUBST([GNULIB_READ]) GNULIB_READLINK=0; AC_SUBST([GNULIB_READLINK]) GNULIB_READLINKAT=0; AC_SUBST([GNULIB_READLINKAT]) GNULIB_RMDIR=0; AC_SUBST([GNULIB_RMDIR]) GNULIB_SETHOSTNAME=0; AC_SUBST([GNULIB_SETHOSTNAME]) GNULIB_SLEEP=0; AC_SUBST([GNULIB_SLEEP]) GNULIB_SYMLINK=0; AC_SUBST([GNULIB_SYMLINK]) GNULIB_SYMLINKAT=0; AC_SUBST([GNULIB_SYMLINKAT]) GNULIB_TTYNAME_R=0; AC_SUBST([GNULIB_TTYNAME_R]) GNULIB_UNISTD_H_NONBLOCKING=0; AC_SUBST([GNULIB_UNISTD_H_NONBLOCKING]) GNULIB_UNISTD_H_SIGPIPE=0; AC_SUBST([GNULIB_UNISTD_H_SIGPIPE]) GNULIB_UNLINK=0; AC_SUBST([GNULIB_UNLINK]) GNULIB_UNLINKAT=0; AC_SUBST([GNULIB_UNLINKAT]) GNULIB_USLEEP=0; AC_SUBST([GNULIB_USLEEP]) GNULIB_WRITE=0; AC_SUBST([GNULIB_WRITE]) dnl Assume proper GNU behavior unless another module says otherwise. HAVE_CHOWN=1; AC_SUBST([HAVE_CHOWN]) HAVE_DUP2=1; AC_SUBST([HAVE_DUP2]) HAVE_DUP3=1; AC_SUBST([HAVE_DUP3]) HAVE_EUIDACCESS=1; AC_SUBST([HAVE_EUIDACCESS]) HAVE_FACCESSAT=1; AC_SUBST([HAVE_FACCESSAT]) HAVE_FCHDIR=1; AC_SUBST([HAVE_FCHDIR]) HAVE_FCHOWNAT=1; AC_SUBST([HAVE_FCHOWNAT]) HAVE_FDATASYNC=1; AC_SUBST([HAVE_FDATASYNC]) HAVE_FSYNC=1; AC_SUBST([HAVE_FSYNC]) HAVE_FTRUNCATE=1; AC_SUBST([HAVE_FTRUNCATE]) HAVE_GETDTABLESIZE=1; AC_SUBST([HAVE_GETDTABLESIZE]) HAVE_GETGROUPS=1; AC_SUBST([HAVE_GETGROUPS]) HAVE_GETHOSTNAME=1; AC_SUBST([HAVE_GETHOSTNAME]) HAVE_GETLOGIN=1; AC_SUBST([HAVE_GETLOGIN]) HAVE_GETPAGESIZE=1; AC_SUBST([HAVE_GETPAGESIZE]) HAVE_GROUP_MEMBER=1; AC_SUBST([HAVE_GROUP_MEMBER]) HAVE_LCHOWN=1; AC_SUBST([HAVE_LCHOWN]) HAVE_LINK=1; AC_SUBST([HAVE_LINK]) HAVE_LINKAT=1; AC_SUBST([HAVE_LINKAT]) HAVE_PIPE=1; AC_SUBST([HAVE_PIPE]) HAVE_PIPE2=1; AC_SUBST([HAVE_PIPE2]) HAVE_PREAD=1; AC_SUBST([HAVE_PREAD]) HAVE_PWRITE=1; AC_SUBST([HAVE_PWRITE]) HAVE_READLINK=1; AC_SUBST([HAVE_READLINK]) HAVE_READLINKAT=1; AC_SUBST([HAVE_READLINKAT]) HAVE_SETHOSTNAME=1; AC_SUBST([HAVE_SETHOSTNAME]) HAVE_SLEEP=1; AC_SUBST([HAVE_SLEEP]) HAVE_SYMLINK=1; AC_SUBST([HAVE_SYMLINK]) HAVE_SYMLINKAT=1; AC_SUBST([HAVE_SYMLINKAT]) HAVE_UNLINKAT=1; AC_SUBST([HAVE_UNLINKAT]) HAVE_USLEEP=1; AC_SUBST([HAVE_USLEEP]) HAVE_DECL_ENVIRON=1; AC_SUBST([HAVE_DECL_ENVIRON]) HAVE_DECL_FCHDIR=1; AC_SUBST([HAVE_DECL_FCHDIR]) HAVE_DECL_FDATASYNC=1; AC_SUBST([HAVE_DECL_FDATASYNC]) HAVE_DECL_GETDOMAINNAME=1; AC_SUBST([HAVE_DECL_GETDOMAINNAME]) HAVE_DECL_GETLOGIN_R=1; AC_SUBST([HAVE_DECL_GETLOGIN_R]) HAVE_DECL_GETPAGESIZE=1; AC_SUBST([HAVE_DECL_GETPAGESIZE]) HAVE_DECL_GETUSERSHELL=1; AC_SUBST([HAVE_DECL_GETUSERSHELL]) HAVE_DECL_SETHOSTNAME=1; AC_SUBST([HAVE_DECL_SETHOSTNAME]) HAVE_DECL_TTYNAME_R=1; AC_SUBST([HAVE_DECL_TTYNAME_R]) HAVE_OS_H=0; AC_SUBST([HAVE_OS_H]) HAVE_SYS_PARAM_H=0; AC_SUBST([HAVE_SYS_PARAM_H]) REPLACE_CHOWN=0; AC_SUBST([REPLACE_CHOWN]) REPLACE_CLOSE=0; AC_SUBST([REPLACE_CLOSE]) REPLACE_DUP=0; AC_SUBST([REPLACE_DUP]) REPLACE_DUP2=0; AC_SUBST([REPLACE_DUP2]) REPLACE_FCHOWNAT=0; AC_SUBST([REPLACE_FCHOWNAT]) REPLACE_FTRUNCATE=0; AC_SUBST([REPLACE_FTRUNCATE]) REPLACE_GETCWD=0; AC_SUBST([REPLACE_GETCWD]) REPLACE_GETDOMAINNAME=0; AC_SUBST([REPLACE_GETDOMAINNAME]) REPLACE_GETDTABLESIZE=0; AC_SUBST([REPLACE_GETDTABLESIZE]) REPLACE_GETLOGIN_R=0; AC_SUBST([REPLACE_GETLOGIN_R]) REPLACE_GETGROUPS=0; AC_SUBST([REPLACE_GETGROUPS]) REPLACE_GETPAGESIZE=0; AC_SUBST([REPLACE_GETPAGESIZE]) REPLACE_ISATTY=0; AC_SUBST([REPLACE_ISATTY]) REPLACE_LCHOWN=0; AC_SUBST([REPLACE_LCHOWN]) REPLACE_LINK=0; AC_SUBST([REPLACE_LINK]) REPLACE_LINKAT=0; AC_SUBST([REPLACE_LINKAT]) REPLACE_LSEEK=0; AC_SUBST([REPLACE_LSEEK]) REPLACE_PREAD=0; AC_SUBST([REPLACE_PREAD]) REPLACE_PWRITE=0; AC_SUBST([REPLACE_PWRITE]) REPLACE_READ=0; AC_SUBST([REPLACE_READ]) REPLACE_READLINK=0; AC_SUBST([REPLACE_READLINK]) REPLACE_RMDIR=0; AC_SUBST([REPLACE_RMDIR]) REPLACE_SLEEP=0; AC_SUBST([REPLACE_SLEEP]) REPLACE_SYMLINK=0; AC_SUBST([REPLACE_SYMLINK]) REPLACE_TTYNAME_R=0; AC_SUBST([REPLACE_TTYNAME_R]) REPLACE_UNLINK=0; AC_SUBST([REPLACE_UNLINK]) REPLACE_UNLINKAT=0; AC_SUBST([REPLACE_UNLINKAT]) REPLACE_USLEEP=0; AC_SUBST([REPLACE_USLEEP]) REPLACE_WRITE=0; AC_SUBST([REPLACE_WRITE]) UNISTD_H_HAVE_WINSOCK2_H=0; AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H]) UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS=0; AC_SUBST([UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS]) ]) ttfautohint-0.97/gnulib/m4/ltsugar.m40000644000175000001440000001042412237364235014472 00000000000000# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 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 ]) ttfautohint-0.97/gnulib/m4/libtool.m40000644000175000001440000105721612237364235014470 00000000000000# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 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) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008, 2009, 2010, 2011 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 57 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.58])dnl We use AC_INCLUDES_DEFAULT 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_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` ]) # _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 _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which 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 "X${COLLECT_NAMES+set}" != Xset; 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 ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # 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], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _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\\"\\\`\\\\\\"" ;; *) 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\\"\\\`\\\\\\"" ;; *) 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 $lt_write_fail = 0 && 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 "$silent" = yes && 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 which 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 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $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. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _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 "X${COLLECT_NAMES+set}" != Xset; 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) _LT_PROG_REPLACE_SHELLFNS 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' TIMESTAMP='$TIMESTAMP' 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 $_lt_result -eq 0; 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 $_lt_result -eq 0 && $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*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; 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 "$lt_cv_ld_force_load" = "no"; 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 "$lt_cv_ld_force_load" = "yes"; 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*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; 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 "$lt_cv_apple_cc_single_mod" != "yes"; 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 "${lt_cv_aix_libpath+set}" = 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 which will find a shell with a builtin # printf (which 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], [ --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 "$GCC" = yes; 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 in which 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 "x$enable_libtool_lock" != xno && 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 which ABI we are using. 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 which ABI we are using. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; 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* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. 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*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|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" ;; ppc*-*linux*|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 x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; *-*solaris*) # Find out which ABI we are using. 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*) 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 "$ac_status" -eq 0; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test "$ac_status" -ne 0; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test "x$lt_cv_ar_at_file" = xno; 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 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" # 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 x"[$]$2" = xyes; 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 x"[$]$2" = xyes; 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; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # 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"; 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 $i != 17 # 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 "$cross_compiling" = yes; 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 -fvisbility=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 "x$enable_dlopen" != xyes; 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 ]) ;; *) 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 "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && 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 "x$lt_cv_dlopen_self" = xyes; 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 "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; 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 "$hard_links" = no; 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 in which 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 "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # 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 "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; 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 "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; 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_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 AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; 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` 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" else 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 /usr/local/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 "$host_cpu" = ia64; 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 # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # 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}' else # 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' fi 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%'\''`; test $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 /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/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 /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/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} $libname${shared_ext}' 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 ;; 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' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; 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=yes 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 "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; 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 "$lt_cv_prog_gnu_ld" = yes; 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} /usr/local/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 ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-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 # Append ld.so.conf contents 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*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac 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 if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; 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 /usr/local/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 "$with_gnu_ld" = yes; 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=freebsd-elf 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 "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/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 "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _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], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which 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 which 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 "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; 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 "$with_gnu_ld" = yes; 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 /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 ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; 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) 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*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; 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 ;; 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 case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) 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 "$lt_cv_path_NM" != "no"; 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 /dev/null 2>&1 | sed '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols" ;; *) 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 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 "x$lt_cv_path_mainfest_tool" != xyes; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # 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 "$GCC" = yes; 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 "$host_cpu" = ia64; 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 # 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 -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$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 -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\)[[ ]]*$/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/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 # and D for any global 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};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print 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 con'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* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$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 "$pipe_works" = yes; 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_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_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 "$GXX" = yes; 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 "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; 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']) ;; 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 "$host_cpu" = ia64; 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 "$host_cpu" != ia64; 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) 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 "$GCC" = yes; 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 "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; 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']) ;; 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 "$host_cpu" = ia64; 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 ;; 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']) ;; 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) 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' ;; 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 which 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 AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global defined # symbols, whereas GNU nm marks them as "W". 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) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | 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 "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) 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 "$with_gnu_ld" = yes; 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 "$lt_use_gnu_ld_interface" = yes; 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 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 "$host_cpu" != ia64; 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 (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; 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 ;; 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 "$host_os" = linux-dietlibc; 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 "$tmp_diet" = no 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' ;; 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 "x$supports_anon_versioning" = xyes; 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 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 "x$supports_anon_versioning" = xyes; 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 can not *** 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 "$_LT_TAGVAR(ld_shlibs, $1)" = no; 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 "$GCC" = yes && 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 "$host_cpu" = ia64; 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 AIX nm, but means don't demangle with GNU nm # Also, AIX nm treats weak defined symbols like other global # defined symbols, whereas GNU nm marks them as "W". 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) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | 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 # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; 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,' if test "$GCC" = yes; 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 "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; 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 "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi 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_use_runtimelinking" = yes; 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 "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; 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 "$with_gnu_ld" = yes; 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 # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' 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~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then sed -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else sed -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $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 "$GCC" = yes; 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 $output_objdir/$soname = $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 $output_objdir/$soname = $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 "$GCC" = yes && test "$with_gnu_ld" = no; 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 "$with_gnu_ld" = no; 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 "$GCC" = yes && test "$with_gnu_ld" = no; 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 "$with_gnu_ld" = no; 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 "$GCC" = yes; 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 "$lt_cv_irix_exported_symbol" = yes; 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 ;; 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*) 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__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; 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 case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _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' ;; esac 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 _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; 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 "$GCC" = yes; 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 "$GCC" = yes; 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 "$GCC" = yes; 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 "x$host_vendor" = xsequent; 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 "$GCC" = yes; 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 can NOT 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 "$GCC" = yes; 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 x$host_vendor = xsni; 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 "$_LT_TAGVAR(ld_shlibs, $1)" = no && 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 "$enable_shared" = yes && test "$GCC" = yes; 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 ## 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... 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 which 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 "$can_build_shared" = "no" && 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 "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no 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 "$enable_shared" = yes || 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 "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; 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 "$_lt_caught_CXX_error" != yes; 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 "$GXX" = yes; 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 "$GXX" = yes; 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 "$with_gnu_ld" = yes; 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 "$host_cpu" = ia64; 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 # need to do runtime linking. 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 ;; 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,' if test "$GXX" = yes; 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 "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; 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 "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi 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_use_runtimelinking" = yes; 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 "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; 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 "$with_gnu_ld" = yes; 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 # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' 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~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then $SED -n -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' -e '1\\\!p' < $export_symbols > $output_objdir/$soname.exp; else $SED -e 's/\\\\\\\(.*\\\\\\\)/-link\\\ -EXPORT:\\\\\\\1/' < $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 (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; 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) ;; 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 ;; gnu*) ;; 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 $output_objdir/$soname = $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 "$GXX" = yes; 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 $output_objdir/$soname = $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 $with_gnu_ld = no; 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 "$GXX" = yes; then if test $with_gnu_ld = no; 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 "$GXX" = yes; then if test "$with_gnu_ld" = no; 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) 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 "x$supports_anon_versioning" = xyes; 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 ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) 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__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; 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 "$GXX" = yes && test "$with_gnu_ld" = no; 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 "$GXX" = yes && test "$with_gnu_ld" = no; 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 $LDFLAGS $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 -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 $LDFLAGS $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 -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 can NOT 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 "$_LT_TAGVAR(ld_shlibs, $1)" = no && 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 "$_lt_caught_CXX_error" != yes 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 ${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 ])# _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 $p = "-L" || test $p = "-R"; 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 "$pre_test_object_deps_done" = no; 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 "$pre_test_object_deps_done" = no; 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)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; 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 "X$F77" = "Xno"; 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 "$_lt_disable_F77" != yes; 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 "$can_build_shared" = "no" && 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 "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no 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 "$enable_shared" = yes || 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 "$_lt_disable_F77" != yes 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 "X$FC" = "Xno"; 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 "$_lt_disable_FC" != yes; 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 "$can_build_shared" = "no" && 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 "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no 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 "$enable_shared" = yes || 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 "$_lt_disable_FC" != yes 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 ## 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... 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 ## 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... 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 "x${GCJFLAGS+set}" = xset || 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 $lt_ac_count -gt 10 && 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], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},${_lt_dummy#??}"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,b/c, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) 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_PROG_FUNCTION_REPLACE (FUNCNAME, REPLACEMENT-BODY) # ------------------------------------------------------ # In `$cfgfile', look for function FUNCNAME delimited by `^FUNCNAME ()$' and # '^} FUNCNAME ', and replace its body with REPLACEMENT-BODY. m4_defun([_LT_PROG_FUNCTION_REPLACE], [dnl { sed -e '/^$1 ()$/,/^} # $1 /c\ $1 ()\ {\ m4_bpatsubsts([$2], [$], [\\], [^\([ ]\)], [\\\1]) } # Extended-shell $1 implementation' "$cfgfile" > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: ]) # _LT_PROG_REPLACE_SHELLFNS # ------------------------- # Replace existing portable implementations of several shell functions with # equivalent extended shell implementations where those features are available.. m4_defun([_LT_PROG_REPLACE_SHELLFNS], [if test x"$xsi_shell" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_dirname], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_basename], [dnl func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_dirname_and_basename], [dnl case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}"]) _LT_PROG_FUNCTION_REPLACE([func_stripname], [dnl # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"}]) _LT_PROG_FUNCTION_REPLACE([func_split_long_opt], [dnl func_split_long_opt_name=${1%%=*} func_split_long_opt_arg=${1#*=}]) _LT_PROG_FUNCTION_REPLACE([func_split_short_opt], [dnl func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"}]) _LT_PROG_FUNCTION_REPLACE([func_lo2o], [dnl case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac]) _LT_PROG_FUNCTION_REPLACE([func_xform], [ func_xform_result=${1%.*}.lo]) _LT_PROG_FUNCTION_REPLACE([func_arith], [ func_arith_result=$(( $[*] ))]) _LT_PROG_FUNCTION_REPLACE([func_len], [ func_len_result=${#1}]) fi if test x"$lt_shell_append" = xyes; then _LT_PROG_FUNCTION_REPLACE([func_append], [ eval "${1}+=\\${2}"]) _LT_PROG_FUNCTION_REPLACE([func_append_quoted], [dnl func_quote_for_eval "${2}" dnl m4 expansion turns \\\\ into \\, and then the shell eval turns that into \ eval "${1}+=\\\\ \\$func_quote_for_eval_result"]) # Save a `func_append' function call where possible by direct use of '+=' sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1+="%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: else # Save a `func_append' function call even when '+=' is not available sed -e 's%func_append \([[a-zA-Z_]]\{1,\}\) "%\1="$\1%g' $cfgfile > $cfgfile.tmp \ && mv -f "$cfgfile.tmp" "$cfgfile" \ || (rm -f "$cfgfile" && cp "$cfgfile.tmp" "$cfgfile" && rm -f "$cfgfile.tmp") test 0 -eq $? || _lt_function_replace_fail=: fi if test x"$_lt_function_replace_fail" = x":"; then AC_MSG_WARN([Unable to substitute extended shell functions in $ofile]) fi ]) # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine which 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 ttfautohint-0.97/gnulib/m4/mmap-anon.m40000644000175000001440000000373312237364241014676 00000000000000# mmap-anon.m4 serial 10 dnl Copyright (C) 2005, 2007, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # Detect how mmap can be used to create anonymous (not file-backed) memory # mappings. # - On Linux, AIX, OSF/1, Solaris, Cygwin, Interix, Haiku, both MAP_ANONYMOUS # and MAP_ANON exist and have the same value. # - On HP-UX, only MAP_ANONYMOUS exists. # - On Mac OS X, FreeBSD, NetBSD, OpenBSD, only MAP_ANON exists. # - On IRIX, neither exists, and a file descriptor opened to /dev/zero must be # used. AC_DEFUN([gl_FUNC_MMAP_ANON], [ dnl Persuade glibc to define MAP_ANONYMOUS. AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) # Check for mmap(). Don't use AC_FUNC_MMAP, because it checks too much: it # fails on HP-UX 11, because MAP_FIXED mappings do not work. But this is # irrelevant for anonymous mappings. AC_CHECK_FUNC([mmap], [gl_have_mmap=yes], [gl_have_mmap=no]) # Try to allow MAP_ANONYMOUS. gl_have_mmap_anonymous=no if test $gl_have_mmap = yes; then AC_MSG_CHECKING([for MAP_ANONYMOUS]) AC_EGREP_CPP([I cannot identify this map], [ #include #ifdef MAP_ANONYMOUS I cannot identify this map #endif ], [gl_have_mmap_anonymous=yes]) if test $gl_have_mmap_anonymous != yes; then AC_EGREP_CPP([I cannot identify this map], [ #include #ifdef MAP_ANON I cannot identify this map #endif ], [AC_DEFINE([MAP_ANONYMOUS], [MAP_ANON], [Define to a substitute value for mmap()'s MAP_ANONYMOUS flag.]) gl_have_mmap_anonymous=yes]) fi AC_MSG_RESULT([$gl_have_mmap_anonymous]) if test $gl_have_mmap_anonymous = yes; then AC_DEFINE([HAVE_MAP_ANONYMOUS], [1], [Define to 1 if mmap()'s MAP_ANONYMOUS flag is available after including config.h and .]) fi fi ]) ttfautohint-0.97/gnulib/m4/msvc-inval.m40000644000175000001440000000133412237364241015065 00000000000000# msvc-inval.m4 serial 1 dnl Copyright (C) 2011-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_MSVC_INVAL], [ AC_CHECK_FUNCS_ONCE([_set_invalid_parameter_handler]) if test $ac_cv_func__set_invalid_parameter_handler = yes; then HAVE_MSVC_INVALID_PARAMETER_HANDLER=1 AC_DEFINE([HAVE_MSVC_INVALID_PARAMETER_HANDLER], [1], [Define to 1 on MSVC platforms that have the "invalid parameter handler" concept.]) else HAVE_MSVC_INVALID_PARAMETER_HANDLER=0 fi AC_SUBST([HAVE_MSVC_INVALID_PARAMETER_HANDLER]) ]) ttfautohint-0.97/gnulib/m4/sys_types_h.m40000644000175000001440000000121712237364241015357 00000000000000# sys_types_h.m4 serial 5 dnl Copyright (C) 2011-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN_ONCE([gl_SYS_TYPES_H], [ AC_REQUIRE([gl_SYS_TYPES_H_DEFAULTS]) gl_NEXT_HEADERS([sys/types.h]) dnl Ensure the type pid_t gets defined. AC_REQUIRE([AC_TYPE_PID_T]) dnl Ensure the type mode_t gets defined. AC_REQUIRE([AC_TYPE_MODE_T]) dnl Whether to override the 'off_t' type. AC_REQUIRE([gl_TYPE_OFF_T]) ]) AC_DEFUN([gl_SYS_TYPES_H_DEFAULTS], [ ]) ttfautohint-0.97/gnulib/m4/lib-prefix.m40000644000175000001440000002042212237364241015046 00000000000000# lib-prefix.m4 serial 7 (gettext-0.18) dnl Copyright (C) 2001-2005, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl AC_LIB_ARG_WITH is synonymous to AC_ARG_WITH in autoconf-2.13, and dnl similar to AC_ARG_WITH in autoconf 2.52...2.57 except that is doesn't dnl require excessive bracketing. ifdef([AC_HELP_STRING], [AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])], [AC_DEFUN([AC_][LIB_ARG_WITH], [AC_ARG_WITH([$1],[$2],[$3],[$4])])]) dnl AC_LIB_PREFIX adds to the CPPFLAGS and LDFLAGS the flags that are needed dnl to access previously installed libraries. The basic assumption is that dnl a user will want packages to use other packages he previously installed dnl with the same --prefix option. dnl This macro is not needed if only AC_LIB_LINKFLAGS is used to locate dnl libraries, but is otherwise very convenient. AC_DEFUN([AC_LIB_PREFIX], [ AC_BEFORE([$0], [AC_LIB_LINKFLAGS]) AC_REQUIRE([AC_PROG_CC]) AC_REQUIRE([AC_CANONICAL_HOST]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_LIB_ARG_WITH([lib-prefix], [ --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib --without-lib-prefix don't search for libraries in includedir and libdir], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" fi fi ]) if test $use_additional = yes; then dnl Potentially add $additional_includedir to $CPPFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's already present in $CPPFLAGS, dnl 3. if it's /usr/local/include and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= for x in $CPPFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $CPPFLAGS. CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir" fi fi fi fi dnl Potentially add $additional_libdir to $LDFLAGS. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's already present in $LDFLAGS, dnl 3. if it's /usr/local/lib and we are using GCC on Linux, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem"; then haveit= for x in $LDFLAGS; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem"; then if test -n "$GCC"; then case $host_os in linux*) haveit=yes;; esac fi fi if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LDFLAGS. LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir" fi fi fi fi fi ]) dnl AC_LIB_PREPARE_PREFIX creates variables acl_final_prefix, dnl acl_final_exec_prefix, containing the values to which $prefix and dnl $exec_prefix will expand at the end of the configure script. AC_DEFUN([AC_LIB_PREPARE_PREFIX], [ dnl Unfortunately, prefix and exec_prefix get only finally determined dnl at the end of configure. if test "X$prefix" = "XNONE"; then acl_final_prefix="$ac_default_prefix" else acl_final_prefix="$prefix" fi if test "X$exec_prefix" = "XNONE"; then acl_final_exec_prefix='${prefix}' else acl_final_exec_prefix="$exec_prefix" fi acl_save_prefix="$prefix" prefix="$acl_final_prefix" eval acl_final_exec_prefix=\"$acl_final_exec_prefix\" prefix="$acl_save_prefix" ]) dnl AC_LIB_WITH_FINAL_PREFIX([statement]) evaluates statement, with the dnl variables prefix and exec_prefix bound to the values they will have dnl at the end of the configure script. AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [ acl_save_prefix="$prefix" prefix="$acl_final_prefix" acl_save_exec_prefix="$exec_prefix" exec_prefix="$acl_final_exec_prefix" $1 exec_prefix="$acl_save_exec_prefix" prefix="$acl_save_prefix" ]) dnl AC_LIB_PREPARE_MULTILIB creates dnl - a variable acl_libdirstem, containing the basename of the libdir, either dnl "lib" or "lib64" or "lib/64", dnl - a variable acl_libdirstem2, as a secondary possible value for dnl acl_libdirstem, either the same as acl_libdirstem or "lib/sparcv9" or dnl "lib/amd64". AC_DEFUN([AC_LIB_PREPARE_MULTILIB], [ dnl There is no formal standard regarding lib and lib64. dnl On glibc systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib64 and 32-bit libraries go under $prefix/lib. We determine dnl the compiler's default mode by looking at the compiler's library search dnl path. If at least one of its elements ends in /lib64 or points to a dnl directory whose absolute pathname ends in /lib64, we assume a 64-bit ABI. dnl Otherwise we use the default, namely "lib". dnl On Solaris systems, the current practice is that on a system supporting dnl 32-bit and 64-bit instruction sets or ABIs, 64-bit libraries go under dnl $prefix/lib/64 (which is a symlink to either $prefix/lib/sparcv9 or dnl $prefix/lib/amd64) and 32-bit libraries go under $prefix/lib. AC_REQUIRE([AC_CANONICAL_HOST]) acl_libdirstem=lib acl_libdirstem2= case "$host_os" in solaris*) dnl See Solaris 10 Software Developer Collection > Solaris 64-bit Developer's Guide > The Development Environment dnl . dnl "Portable Makefiles should refer to any library directories using the 64 symbolic link." dnl But we want to recognize the sparcv9 or amd64 subdirectory also if the dnl symlink is missing, so we set acl_libdirstem2 too. AC_CACHE_CHECK([for 64-bit host], [gl_cv_solaris_64bit], [AC_EGREP_CPP([sixtyfour bits], [ #ifdef _LP64 sixtyfour bits #endif ], [gl_cv_solaris_64bit=yes], [gl_cv_solaris_64bit=no]) ]) if test $gl_cv_solaris_64bit = yes; then acl_libdirstem=lib/64 case "$host_cpu" in sparc*) acl_libdirstem2=lib/sparcv9 ;; i*86 | x86_64) acl_libdirstem2=lib/amd64 ;; esac fi ;; *) searchpath=`(LC_ALL=C $CC -print-search-dirs) 2>/dev/null | sed -n -e 's,^libraries: ,,p' | sed -e 's,^=,,'` if test -n "$searchpath"; then acl_save_IFS="${IFS= }"; IFS=":" for searchdir in $searchpath; do if test -d "$searchdir"; then case "$searchdir" in */lib64/ | */lib64 ) acl_libdirstem=lib64 ;; */../ | */.. ) # Better ignore directories of this form. They are misleading. ;; *) searchdir=`cd "$searchdir" && pwd` case "$searchdir" in */lib64 ) acl_libdirstem=lib64 ;; esac ;; esac fi done IFS="$acl_save_IFS" fi ;; esac test -n "$acl_libdirstem2" || acl_libdirstem2="$acl_libdirstem" ]) ttfautohint-0.97/gnulib/m4/lib-link.m40000644000175000001440000010044312237364241014510 00000000000000# lib-link.m4 serial 26 (gettext-0.18.2) dnl Copyright (C) 2001-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_PREREQ([2.54]) dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and dnl augments the CPPFLAGS variable. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [ AC_LIB_LINKFLAGS_BODY([$1], [$2]) ac_cv_lib[]Name[]_libs="$LIB[]NAME" ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME" ac_cv_lib[]Name[]_cppflags="$INC[]NAME" ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX" ]) LIB[]NAME="$ac_cv_lib[]Name[]_libs" LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs" INC[]NAME="$ac_cv_lib[]Name[]_cppflags" LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the dnl results of this search when this library appears as a dependency. HAVE_LIB[]NAME=yes popdef([NAME]) popdef([Name]) ]) dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message]) dnl searches for libname and the libraries corresponding to explicit and dnl implicit dependencies, together with the specified include files and dnl the ability to compile and link the specified testcode. The missing-message dnl defaults to 'no' and may contain additional hints for the user. dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME} dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [ AC_REQUIRE([AC_LIB_PREPARE_PREFIX]) AC_REQUIRE([AC_LIB_RPATH]) pushdef([Name],[m4_translit([$1],[./+-], [____])]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME dnl accordingly. AC_LIB_LINKFLAGS_BODY([$1], [$2]) dnl Add $INC[]NAME to CPPFLAGS before performing the following checks, dnl because if the user has installed lib[]Name and not disabled its use dnl via --without-lib[]Name-prefix, he wants to use it. ac_save_CPPFLAGS="$CPPFLAGS" AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME) AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [ ac_save_LIBS="$LIBS" dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS, dnl because these -l options might require -L options that are present in dnl LIBS. -l options benefit only from the -L options listed before it. dnl Otherwise, add it to the front of LIBS, because it may be a static dnl library that depends on another static library that is present in LIBS. dnl Static libraries benefit only from the static libraries listed after dnl it. case " $LIB[]NAME" in *" -l"*) LIBS="$LIBS $LIB[]NAME" ;; *) LIBS="$LIB[]NAME $LIBS" ;; esac AC_LINK_IFELSE( [AC_LANG_PROGRAM([[$3]], [[$4]])], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])']) LIBS="$ac_save_LIBS" ]) if test "$ac_cv_lib[]Name" = yes; then HAVE_LIB[]NAME=yes AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.]) AC_MSG_CHECKING([how to link with lib[]$1]) AC_MSG_RESULT([$LIB[]NAME]) else HAVE_LIB[]NAME=no dnl If $LIB[]NAME didn't lead to a usable library, we don't need dnl $INC[]NAME either. CPPFLAGS="$ac_save_CPPFLAGS" LIB[]NAME= LTLIB[]NAME= LIB[]NAME[]_PREFIX= fi AC_SUBST([HAVE_LIB]NAME) AC_SUBST([LIB]NAME) AC_SUBST([LTLIB]NAME) AC_SUBST([LIB]NAME[_PREFIX]) popdef([NAME]) popdef([Name]) ]) dnl Determine the platform dependent parameters needed to use rpath: dnl acl_libext, dnl acl_shlibext, dnl acl_libname_spec, dnl acl_library_names_spec, dnl acl_hardcode_libdir_flag_spec, dnl acl_hardcode_libdir_separator, dnl acl_hardcode_direct, dnl acl_hardcode_minus_L. AC_DEFUN([AC_LIB_RPATH], [ dnl Tell automake >= 1.10 to complain if config.rpath is missing. m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])]) AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [ CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \ ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh . ./conftest.sh rm -f ./conftest.sh acl_cv_rpath=done ]) wl="$acl_cv_wl" acl_libext="$acl_cv_libext" acl_shlibext="$acl_cv_shlibext" acl_libname_spec="$acl_cv_libname_spec" acl_library_names_spec="$acl_cv_library_names_spec" acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec" acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator" acl_hardcode_direct="$acl_cv_hardcode_direct" acl_hardcode_minus_L="$acl_cv_hardcode_minus_L" dnl Determine whether the user wants rpath handling at all. AC_ARG_ENABLE([rpath], [ --disable-rpath do not hardcode runtime library paths], :, enable_rpath=yes) ]) dnl AC_LIB_FROMPACKAGE(name, package) dnl declares that libname comes from the given package. The configure file dnl will then not have a --with-libname-prefix option but a dnl --with-package-prefix option. Several libraries can come from the same dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar dnl macro call that searches for libname. AC_DEFUN([AC_LIB_FROMPACKAGE], [ pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_frompackage_]NAME, [$2]) popdef([NAME]) pushdef([PACK],[$2]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) define([acl_libsinpackage_]PACKUP, m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1]) popdef([PACKUP]) popdef([PACK]) ]) dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and dnl the libraries corresponding to explicit and implicit dependencies. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables. dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem. AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [ AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])]) pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-], [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])]) pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])]) dnl Autoconf >= 2.61 supports dots in --with options. pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[m4_translit(PACK,[.],[_])],PACK)]) dnl By default, look in $includedir and $libdir. use_additional=yes AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) AC_ARG_WITH(P_A_C_K[-prefix], [[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]], [ if test "X$withval" = "Xno"; then use_additional=no else if test "X$withval" = "X"; then AC_LIB_WITH_FINAL_PREFIX([ eval additional_includedir=\"$includedir\" eval additional_libdir=\"$libdir\" ]) else additional_includedir="$withval/include" additional_libdir="$withval/$acl_libdirstem" if test "$acl_libdirstem2" != "$acl_libdirstem" \ && ! test -d "$withval/$acl_libdirstem"; then additional_libdir="$withval/$acl_libdirstem2" fi fi fi ]) dnl Search the library and its dependencies in $additional_libdir and dnl $LDFLAGS. Using breadth-first-seach. LIB[]NAME= LTLIB[]NAME= INC[]NAME= LIB[]NAME[]_PREFIX= dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been dnl computed. So it has to be reset here. HAVE_LIB[]NAME= rpathdirs= ltrpathdirs= names_already_handled= names_next_round='$1 $2' while test -n "$names_next_round"; do names_this_round="$names_next_round" names_next_round= for name in $names_this_round; do already_handled= for n in $names_already_handled; do if test "$n" = "$name"; then already_handled=yes break fi done if test -z "$already_handled"; then names_already_handled="$names_already_handled $name" dnl See if it was already located by an earlier AC_LIB_LINKFLAGS dnl or AC_LIB_HAVE_LINKFLAGS call. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'` eval value=\"\$HAVE_LIB$uppername\" if test -n "$value"; then if test "$value" = yes; then eval value=\"\$LIB$uppername\" test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value" eval value=\"\$LTLIB$uppername\" test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value" else dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined dnl that this library doesn't exist. So just drop it. : fi else dnl Search the library lib$name in $additional_libdir and $LDFLAGS dnl and the already constructed $LIBNAME/$LTLIBNAME. found_dir= found_la= found_so= found_a= eval libname=\"$acl_libname_spec\" # typically: libname=lib$name if test -n "$acl_shlibext"; then shrext=".$acl_shlibext" # typically: shrext=.so else shrext= fi if test $use_additional = yes; then dir="$additional_libdir" dnl The same code as in the loop below: dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi fi if test "X$found_dir" = "X"; then for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) case "$x" in -L*) dir=`echo "X$x" | sed -e 's/^X-L//'` dnl First look for a shared library. if test -n "$acl_shlibext"; then if test -f "$dir/$libname$shrext"; then found_dir="$dir" found_so="$dir/$libname$shrext" else if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then ver=`(cd "$dir" && \ for f in "$libname$shrext".*; do echo "$f"; done \ | sed -e "s,^$libname$shrext\\\\.,," \ | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \ | sed 1q ) 2>/dev/null` if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then found_dir="$dir" found_so="$dir/$libname$shrext.$ver" fi else eval library_names=\"$acl_library_names_spec\" for f in $library_names; do if test -f "$dir/$f"; then found_dir="$dir" found_so="$dir/$f" break fi done fi fi fi dnl Then look for a static library. if test "X$found_dir" = "X"; then if test -f "$dir/$libname.$acl_libext"; then found_dir="$dir" found_a="$dir/$libname.$acl_libext" fi fi if test "X$found_dir" != "X"; then if test -f "$dir/$libname.la"; then found_la="$dir/$libname.la" fi fi ;; esac if test "X$found_dir" != "X"; then break fi done fi if test "X$found_dir" != "X"; then dnl Found the library. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name" if test "X$found_so" != "X"; then dnl Linking with a shared library. We attempt to hardcode its dnl directory into the executable's runpath, unless it's the dnl standard /usr/lib. if test "$enable_rpath" = no \ || test "X$found_dir" = "X/usr/$acl_libdirstem" \ || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then dnl No hardcoding is needed. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl Use an explicit option to hardcode DIR into the resulting dnl binary. dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $found_dir" fi dnl The hardcoding into $LIBNAME is system dependent. if test "$acl_hardcode_direct" = yes; then dnl Using DIR/libNAME.so during linking hardcodes DIR into the dnl resulting binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode DIR into the resulting dnl binary. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $found_dir" fi else dnl Rely on "-L$found_dir". dnl But don't add it if it's already contained in the LDFLAGS dnl or the already constructed $LIBNAME haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$found_dir"; then haveit=yes break fi done if test -z "$haveit"; then LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir" fi if test "$acl_hardcode_minus_L" != no; then dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so" else dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH dnl here, because this doesn't fit in flags passed to the dnl compiler. So give up. No hardcoding. This affects only dnl very old systems. dnl FIXME: Not sure whether we should use dnl "-L$found_dir -l$name" or "-L$found_dir $found_so" dnl here. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" fi fi fi fi else if test "X$found_a" != "X"; then dnl Linking with a static library. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a" else dnl We shouldn't come here, but anyway it's good to have a dnl fallback. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name" fi fi dnl Assume the include files are nearby. additional_includedir= case "$found_dir" in */$acl_libdirstem | */$acl_libdirstem/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; */$acl_libdirstem2 | */$acl_libdirstem2/) basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'` if test "$name" = '$1'; then LIB[]NAME[]_PREFIX="$basedir" fi additional_includedir="$basedir/include" ;; esac if test "X$additional_includedir" != "X"; then dnl Potentially add $additional_includedir to $INCNAME. dnl But don't add it dnl 1. if it's the standard /usr/include, dnl 2. if it's /usr/local/include and we are using GCC on Linux, dnl 3. if it's already present in $CPPFLAGS or the already dnl constructed $INCNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_includedir" != "X/usr/include"; then haveit= if test "X$additional_includedir" = "X/usr/local/include"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then for x in $CPPFLAGS $INC[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-I$additional_includedir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_includedir"; then dnl Really add $additional_includedir to $INCNAME. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir" fi fi fi fi fi dnl Look for dependencies. if test -n "$found_la"; then dnl Read the .la file. It defines the variables dnl dlname, library_names, old_library, dependency_libs, current, dnl age, revision, installed, dlopen, dlpreopen, libdir. save_libdir="$libdir" case "$found_la" in */* | *\\*) . "$found_la" ;; *) . "./$found_la" ;; esac libdir="$save_libdir" dnl We use only dependency_libs. for dep in $dependency_libs; do case "$dep" in -L*) additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'` dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME. dnl But don't add it dnl 1. if it's the standard /usr/lib, dnl 2. if it's /usr/local/lib and we are using GCC on Linux, dnl 3. if it's already present in $LDFLAGS or the already dnl constructed $LIBNAME, dnl 4. if it doesn't exist as a directory. if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \ && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then haveit= if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \ || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then if test -n "$GCC"; then case $host_os in linux* | gnu* | k*bsd*-gnu) haveit=yes;; esac fi fi if test -z "$haveit"; then haveit= for x in $LDFLAGS $LIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LIBNAME. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir" fi fi haveit= for x in $LDFLAGS $LTLIB[]NAME; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X-L$additional_libdir"; then haveit=yes break fi done if test -z "$haveit"; then if test -d "$additional_libdir"; then dnl Really add $additional_libdir to $LTLIBNAME. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir" fi fi fi fi ;; -R*) dir=`echo "X$dep" | sed -e 's/^X-R//'` if test "$enable_rpath" != no; then dnl Potentially add DIR to rpathdirs. dnl The rpathdirs will be appended to $LIBNAME at the end. haveit= for x in $rpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then rpathdirs="$rpathdirs $dir" fi dnl Potentially add DIR to ltrpathdirs. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end. haveit= for x in $ltrpathdirs; do if test "X$x" = "X$dir"; then haveit=yes break fi done if test -z "$haveit"; then ltrpathdirs="$ltrpathdirs $dir" fi fi ;; -l*) dnl Handle this in the next round. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'` ;; *.la) dnl Handle this in the next round. Throw away the .la's dnl directory; it is already contained in a preceding -L dnl option. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'` ;; *) dnl Most likely an immediate library name. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep" ;; esac done fi else dnl Didn't find the library; assume it is in the system directories dnl known to the linker and runtime loader. (All the system dnl directories known to the linker should also be known to the dnl runtime loader, otherwise the system is severely misconfigured.) LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name" LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name" fi fi fi done done if test "X$rpathdirs" != "X"; then if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user must dnl pass all path elements in one option. We can arrange that for a dnl single library, but not when more than one $LIBNAMEs are used. alldirs= for found_dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir" done dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl. acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" else dnl The -rpath options are cumulative. for found_dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$found_dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag" done fi fi if test "X$ltrpathdirs" != "X"; then dnl When using libtool, the option that works for both libraries and dnl executables is -R. The -R options are cumulative. for found_dir in $ltrpathdirs; do LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir" done fi popdef([P_A_C_K]) popdef([PACKLIBS]) popdef([PACKUP]) popdef([PACK]) popdef([NAME]) ]) dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR, dnl unless already present in VAR. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes dnl contains two or three consecutive elements that belong together. AC_DEFUN([AC_LIB_APPENDTOVAR], [ for element in [$2]; do haveit= for x in $[$1]; do AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"]) if test "X$x" = "X$element"; then haveit=yes break fi done if test -z "$haveit"; then [$1]="${[$1]}${[$1]:+ }$element" fi done ]) dnl For those cases where a variable contains several -L and -l options dnl referring to unknown libraries and directories, this macro determines the dnl necessary additional linker options for the runtime path. dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL]) dnl sets LDADDVAR to linker options needed together with LIBSVALUE. dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed, dnl otherwise linking without libtool is assumed. AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS], [ AC_REQUIRE([AC_LIB_RPATH]) AC_REQUIRE([AC_LIB_PREPARE_MULTILIB]) $1= if test "$enable_rpath" != no; then if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then dnl Use an explicit option to hardcode directories into the resulting dnl binary. rpathdirs= next= for opt in $2; do if test -n "$next"; then dir="$next" dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= else case $opt in -L) next=yes ;; -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'` dnl No need to hardcode the standard /usr/lib. if test "X$dir" != "X/usr/$acl_libdirstem" \ && test "X$dir" != "X/usr/$acl_libdirstem2"; then rpathdirs="$rpathdirs $dir" fi next= ;; *) next= ;; esac fi done if test "X$rpathdirs" != "X"; then if test -n ""$3""; then dnl libtool is used for linking. Use -R options. for dir in $rpathdirs; do $1="${$1}${$1:+ }-R$dir" done else dnl The linker is used for linking directly. if test -n "$acl_hardcode_libdir_separator"; then dnl Weird platform: only the last -rpath option counts, the user dnl must pass all path elements in one option. alldirs= for dir in $rpathdirs; do alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir" done acl_save_libdir="$libdir" libdir="$alldirs" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="$flag" else dnl The -rpath options are cumulative. for dir in $rpathdirs; do acl_save_libdir="$libdir" libdir="$dir" eval flag=\"$acl_hardcode_libdir_flag_spec\" libdir="$acl_save_libdir" $1="${$1}${$1:+ }$flag" done fi fi fi fi fi AC_SUBST([$1]) ]) ttfautohint-0.97/gnulib/m4/longlong.m40000644000175000001440000001120312237364241014621 00000000000000# longlong.m4 serial 17 dnl Copyright (C) 1999-2007, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Paul Eggert. # Define HAVE_LONG_LONG_INT if 'long long int' works. # This fixes a bug in Autoconf 2.61, and can be faster # than what's in Autoconf 2.62 through 2.68. # Note: If the type 'long long int' exists but is only 32 bits large # (as on some very old compilers), HAVE_LONG_LONG_INT will not be # defined. In this case you can treat 'long long int' like 'long int'. AC_DEFUN([AC_TYPE_LONG_LONG_INT], [ AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT]) AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int], [ac_cv_type_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then ac_cv_type_long_long_int=$ac_cv_type_unsigned_long_long_int if test $ac_cv_type_long_long_int = yes; then dnl Catch a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004. dnl If cross compiling, assume the bug is not important, since dnl nobody cross compiles for this platform as far as we know. AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[@%:@include @%:@ifndef LLONG_MAX @%:@ define HALF \ (1LL << (sizeof (long long int) * CHAR_BIT - 2)) @%:@ define LLONG_MAX (HALF - 1 + HALF) @%:@endif]], [[long long int n = 1; int i; for (i = 0; ; i++) { long long int m = n << i; if (m >> i != n) return 1; if (LLONG_MAX / 2 < m) break; } return 0;]])], [], [ac_cv_type_long_long_int=no], [:]) fi fi]) if test $ac_cv_type_long_long_int = yes; then AC_DEFINE([HAVE_LONG_LONG_INT], [1], [Define to 1 if the system has the type 'long long int'.]) fi ]) # Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works. # This fixes a bug in Autoconf 2.61, and can be faster # than what's in Autoconf 2.62 through 2.68. # Note: If the type 'unsigned long long int' exists but is only 32 bits # large (as on some very old compilers), AC_TYPE_UNSIGNED_LONG_LONG_INT # will not be defined. In this case you can treat 'unsigned long long int' # like 'unsigned long int'. AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT], [ AC_CACHE_CHECK([for unsigned long long int], [ac_cv_type_unsigned_long_long_int], [ac_cv_type_unsigned_long_long_int=yes if test "x${ac_cv_prog_cc_c99-no}" = xno; then AC_LINK_IFELSE( [_AC_TYPE_LONG_LONG_SNIPPET], [], [ac_cv_type_unsigned_long_long_int=no]) fi]) if test $ac_cv_type_unsigned_long_long_int = yes; then AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1], [Define to 1 if the system has the type 'unsigned long long int'.]) fi ]) # Expands to a C program that can be used to test for simultaneous support # of 'long long' and 'unsigned long long'. We don't want to say that # 'long long' is available if 'unsigned long long' is not, or vice versa, # because too many programs rely on the symmetry between signed and unsigned # integer types (excluding 'bool'). AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET], [ AC_LANG_PROGRAM( [[/* For now, do not test the preprocessor; as of 2007 there are too many implementations with broken preprocessors. Perhaps this can be revisited in 2012. In the meantime, code should not expect #if to work with literals wider than 32 bits. */ /* Test literals. */ long long int ll = 9223372036854775807ll; long long int nll = -9223372036854775807LL; unsigned long long int ull = 18446744073709551615ULL; /* Test constant expressions. */ typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll) ? 1 : -1)]; typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1 ? 1 : -1)]; int i = 63;]], [[/* Test availability of runtime routines for shift and division. */ long long int llmax = 9223372036854775807ll; unsigned long long int ullmax = 18446744073709551615ull; return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i) | (llmax / ll) | (llmax % ll) | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i) | (ullmax / ull) | (ullmax % ull));]]) ]) ttfautohint-0.97/gnulib/m4/ltversion.m40000644000175000001440000000126212237364235015036 00000000000000# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 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 3337 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.4.2]) m4_define([LT_PACKAGE_REVISION], [1.3337]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.2' macro_revision='1.3337' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) ttfautohint-0.97/gnulib/m4/errno_h.m40000644000175000001440000000623412237364241014446 00000000000000# errno_h.m4 serial 12 dnl Copyright (C) 2004, 2006, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN_ONCE([gl_HEADER_ERRNO_H], [ AC_REQUIRE([AC_PROG_CC]) AC_CACHE_CHECK([for complete errno.h], [gl_cv_header_errno_h_complete], [ AC_EGREP_CPP([booboo],[ #include #if !defined ETXTBSY booboo #endif #if !defined ENOMSG booboo #endif #if !defined EIDRM booboo #endif #if !defined ENOLINK booboo #endif #if !defined EPROTO booboo #endif #if !defined EMULTIHOP booboo #endif #if !defined EBADMSG booboo #endif #if !defined EOVERFLOW booboo #endif #if !defined ENOTSUP booboo #endif #if !defined ENETRESET booboo #endif #if !defined ECONNABORTED booboo #endif #if !defined ESTALE booboo #endif #if !defined EDQUOT booboo #endif #if !defined ECANCELED booboo #endif #if !defined EOWNERDEAD booboo #endif #if !defined ENOTRECOVERABLE booboo #endif #if !defined EILSEQ booboo #endif ], [gl_cv_header_errno_h_complete=no], [gl_cv_header_errno_h_complete=yes]) ]) if test $gl_cv_header_errno_h_complete = yes; then ERRNO_H='' else gl_NEXT_HEADERS([errno.h]) ERRNO_H='errno.h' fi AC_SUBST([ERRNO_H]) AM_CONDITIONAL([GL_GENERATE_ERRNO_H], [test -n "$ERRNO_H"]) gl_REPLACE_ERRNO_VALUE([EMULTIHOP]) gl_REPLACE_ERRNO_VALUE([ENOLINK]) gl_REPLACE_ERRNO_VALUE([EOVERFLOW]) ]) # Assuming $1 = EOVERFLOW. # The EOVERFLOW errno value ought to be defined in , according to # POSIX. But some systems (like OpenBSD 4.0 or AIX 3) don't define it, and # some systems (like OSF/1) define it when _XOPEN_SOURCE_EXTENDED is defined. # Check for the value of EOVERFLOW. # Set the variables EOVERFLOW_HIDDEN and EOVERFLOW_VALUE. AC_DEFUN([gl_REPLACE_ERRNO_VALUE], [ if test -n "$ERRNO_H"; then AC_CACHE_CHECK([for ]$1[ value], [gl_cv_header_errno_h_]$1, [ AC_EGREP_CPP([yes],[ #include #ifdef ]$1[ yes #endif ], [gl_cv_header_errno_h_]$1[=yes], [gl_cv_header_errno_h_]$1[=no]) if test $gl_cv_header_errno_h_]$1[ = no; then AC_EGREP_CPP([yes],[ #define _XOPEN_SOURCE_EXTENDED 1 #include #ifdef ]$1[ yes #endif ], [gl_cv_header_errno_h_]$1[=hidden]) if test $gl_cv_header_errno_h_]$1[ = hidden; then dnl The macro exists but is hidden. dnl Define it to the same value. AC_COMPUTE_INT([gl_cv_header_errno_h_]$1, $1, [ #define _XOPEN_SOURCE_EXTENDED 1 #include /* The following two lines are a workaround against an autoconf-2.52 bug. */ #include #include ]) fi fi ]) case $gl_cv_header_errno_h_]$1[ in yes | no) ]$1[_HIDDEN=0; ]$1[_VALUE= ;; *) ]$1[_HIDDEN=1; ]$1[_VALUE="$gl_cv_header_errno_h_]$1[" ;; esac AC_SUBST($1[_HIDDEN]) AC_SUBST($1[_VALUE]) fi ]) dnl Autoconf >= 2.61 has AC_COMPUTE_INT built-in. dnl Remove this when we can assume autoconf >= 2.61. m4_ifdef([AC_COMPUTE_INT], [], [ AC_DEFUN([AC_COMPUTE_INT], [_AC_COMPUTE_INT([$2],[$1],[$3],[$4])]) ]) ttfautohint-0.97/gnulib/m4/warn-on-use.m40000644000175000001440000000415412237364242015165 00000000000000# warn-on-use.m4 serial 5 dnl Copyright (C) 2010-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # gl_WARN_ON_USE_PREPARE(INCLUDES, NAMES) # --------------------------------------- # For each whitespace-separated element in the list of NAMES, define # HAVE_RAW_DECL_name if the function has a declaration among INCLUDES # even after being undefined as a macro. # # See warn-on-use.h for some hints on how to poison function names, as # well as ideas on poisoning global variables and macros. NAMES may # include global variables, but remember that only functions work with # _GL_WARN_ON_USE. Typically, INCLUDES only needs to list a single # header, but if the replacement header pulls in other headers because # some systems declare functions in the wrong header, then INCLUDES # should do likewise. # # It is generally safe to assume declarations for functions declared # in the intersection of C89 and C11 (such as printf) without # needing gl_WARN_ON_USE_PREPARE. AC_DEFUN([gl_WARN_ON_USE_PREPARE], [ m4_foreach_w([gl_decl], [$2], [AH_TEMPLATE([HAVE_RAW_DECL_]AS_TR_CPP(m4_defn([gl_decl])), [Define to 1 if ]m4_defn([gl_decl])[ is declared even after undefining macros.])])dnl dnl FIXME: gl_Symbol must be used unquoted until we can assume dnl autoconf 2.64 or newer. for gl_func in m4_flatten([$2]); do AS_VAR_PUSHDEF([gl_Symbol], [gl_cv_have_raw_decl_$gl_func])dnl AC_CACHE_CHECK([whether $gl_func is declared without a macro], gl_Symbol, [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$1], [@%:@undef $gl_func (void) $gl_func;])], [AS_VAR_SET(gl_Symbol, [yes])], [AS_VAR_SET(gl_Symbol, [no])])]) AS_VAR_IF(gl_Symbol, [yes], [AC_DEFINE_UNQUOTED(AS_TR_CPP([HAVE_RAW_DECL_$gl_func]), [1]) dnl shortcut - if the raw declaration exists, then set a cache dnl variable to allow skipping any later AC_CHECK_DECL efforts eval ac_cv_have_decl_$gl_func=yes]) AS_VAR_POPDEF([gl_Symbol])dnl done ]) ttfautohint-0.97/gnulib/m4/onceonly.m40000644000175000001440000001062712237364241014641 00000000000000# onceonly.m4 serial 9 dnl Copyright (C) 2002-2003, 2005-2006, 2008-2013 Free Software Foundation, dnl Inc. dnl dnl This file is free software; you can redistribute it and/or modify dnl it under the terms of the GNU General Public License as published by dnl the Free Software Foundation; either version 3 of the License, or dnl (at your option) any later version. dnl dnl This file is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the dnl GNU General Public License for more details. dnl dnl You should have received a copy of the GNU General Public License dnl along with this file. If not, see . dnl dnl As a special exception to the GNU General Public License, dnl this file may be distributed as part of a program dnl that contains a configuration script generated by Autoconf, under dnl the same distribution terms as the rest of that program. dnl This file defines some "once only" variants of standard autoconf macros. dnl AC_CHECK_HEADERS_ONCE like AC_CHECK_HEADERS dnl AC_CHECK_FUNCS_ONCE like AC_CHECK_FUNCS dnl AC_CHECK_DECLS_ONCE like AC_CHECK_DECLS dnl AC_REQUIRE([AC_FUNC_STRCOLL]) like AC_FUNC_STRCOLL dnl The advantage is that the check for each of the headers/functions/decls dnl will be put only once into the 'configure' file. It keeps the size of dnl the 'configure' file down, and avoids redundant output when 'configure' dnl is run. dnl The drawback is that the checks cannot be conditionalized. If you write dnl if some_condition; then gl_CHECK_HEADERS(stdlib.h); fi dnl inside an AC_DEFUNed function, the gl_CHECK_HEADERS macro call expands to dnl empty, and the check will be inserted before the body of the AC_DEFUNed dnl function. dnl The original code implemented AC_CHECK_HEADERS_ONCE and AC_CHECK_FUNCS_ONCE dnl in terms of AC_DEFUN and AC_REQUIRE. This implementation uses diversions to dnl named sections DEFAULTS and INIT_PREPARE in order to check all requested dnl headers at once, thus reducing the size of 'configure'. It is known to work dnl with autoconf 2.57..2.62 at least . The size reduction is ca. 9%. dnl Autoconf version 2.59 plus gnulib is required; this file is not needed dnl with Autoconf 2.60 or greater. But note that autoconf's implementation of dnl AC_CHECK_DECLS_ONCE expects a comma-separated list of symbols as first dnl argument! AC_PREREQ([2.59]) # AC_CHECK_HEADERS_ONCE(HEADER1 HEADER2 ...) is a once-only variant of # AC_CHECK_HEADERS(HEADER1 HEADER2 ...). AC_DEFUN([AC_CHECK_HEADERS_ONCE], [ : m4_foreach_w([gl_HEADER_NAME], [$1], [ AC_DEFUN([gl_CHECK_HEADER_]m4_quote(m4_translit(gl_HEADER_NAME, [./-], [___])), [ m4_divert_text([INIT_PREPARE], [gl_header_list="$gl_header_list gl_HEADER_NAME"]) gl_HEADERS_EXPANSION AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_HEADER_NAME])), [Define to 1 if you have the <]m4_defn([gl_HEADER_NAME])[> header file.]) ]) AC_REQUIRE([gl_CHECK_HEADER_]m4_quote(m4_translit(gl_HEADER_NAME, [./-], [___]))) ]) ]) m4_define([gl_HEADERS_EXPANSION], [ m4_divert_text([DEFAULTS], [gl_header_list=]) AC_CHECK_HEADERS([$gl_header_list]) m4_define([gl_HEADERS_EXPANSION], []) ]) # AC_CHECK_FUNCS_ONCE(FUNC1 FUNC2 ...) is a once-only variant of # AC_CHECK_FUNCS(FUNC1 FUNC2 ...). AC_DEFUN([AC_CHECK_FUNCS_ONCE], [ : m4_foreach_w([gl_FUNC_NAME], [$1], [ AC_DEFUN([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME]), [ m4_divert_text([INIT_PREPARE], [gl_func_list="$gl_func_list gl_FUNC_NAME"]) gl_FUNCS_EXPANSION AH_TEMPLATE(AS_TR_CPP([HAVE_]m4_defn([gl_FUNC_NAME])), [Define to 1 if you have the ']m4_defn([gl_FUNC_NAME])[' function.]) ]) AC_REQUIRE([gl_CHECK_FUNC_]m4_defn([gl_FUNC_NAME])) ]) ]) m4_define([gl_FUNCS_EXPANSION], [ m4_divert_text([DEFAULTS], [gl_func_list=]) AC_CHECK_FUNCS([$gl_func_list]) m4_define([gl_FUNCS_EXPANSION], []) ]) # AC_CHECK_DECLS_ONCE(DECL1 DECL2 ...) is a once-only variant of # AC_CHECK_DECLS(DECL1, DECL2, ...). AC_DEFUN([AC_CHECK_DECLS_ONCE], [ : m4_foreach_w([gl_DECL_NAME], [$1], [ AC_DEFUN([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME]), [ AC_CHECK_DECLS(m4_defn([gl_DECL_NAME])) ]) AC_REQUIRE([gl_CHECK_DECL_]m4_defn([gl_DECL_NAME])) ]) ]) ttfautohint-0.97/gnulib/m4/isatty.m40000644000175000001440000000124212237364241014321 00000000000000# isatty.m4 serial 3 dnl Copyright (C) 2012-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_FUNC_ISATTY], [ AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles dnl On native Windows, the system's isatty(), defined as an alias of _isatty() dnl in the "oldnames" library, returns true for the NUL device. case $host_os in mingw*) REPLACE_ISATTY=1 ;; esac ]) # Prerequisites of lib/isatty.c. AC_DEFUN([gl_PREREQ_ISATTY], [:]) ttfautohint-0.97/gnulib/m4/ltoptions.m40000644000175000001440000003007312237364235015046 00000000000000# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008, 2009 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 7 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_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT 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_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=default]) test -z "$pic_mode" && 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], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## 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])]) ttfautohint-0.97/gnulib/m4/sys_socket_h.m40000644000175000001440000001416312237364241015507 00000000000000# sys_socket_h.m4 serial 23 dnl Copyright (C) 2005-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Simon Josefsson. AC_DEFUN([gl_HEADER_SYS_SOCKET], [ AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS]) AC_REQUIRE([AC_CANONICAL_HOST]) dnl On OSF/1, the functions recv(), send(), recvfrom(), sendto() have dnl old-style declarations (with return type 'int' instead of 'ssize_t') dnl unless _POSIX_PII_SOCKET is defined. case "$host_os" in osf*) AC_DEFINE([_POSIX_PII_SOCKET], [1], [Define to 1 in order to get the POSIX compatible declarations of socket functions.]) ;; esac AC_CACHE_CHECK([whether is self-contained], [gl_cv_header_sys_socket_h_selfcontained], [ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include ]], [[]])], [gl_cv_header_sys_socket_h_selfcontained=yes], [gl_cv_header_sys_socket_h_selfcontained=no]) ]) if test $gl_cv_header_sys_socket_h_selfcontained = yes; then dnl If the shutdown function exists, should define dnl SHUT_RD, SHUT_WR, SHUT_RDWR. AC_CHECK_FUNCS([shutdown]) if test $ac_cv_func_shutdown = yes; then AC_CACHE_CHECK([whether defines the SHUT_* macros], [gl_cv_header_sys_socket_h_shut], [ AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[#include ]], [[int a[] = { SHUT_RD, SHUT_WR, SHUT_RDWR };]])], [gl_cv_header_sys_socket_h_shut=yes], [gl_cv_header_sys_socket_h_shut=no]) ]) if test $gl_cv_header_sys_socket_h_shut = no; then SYS_SOCKET_H='sys/socket.h' fi fi fi # We need to check for ws2tcpip.h now. gl_PREREQ_SYS_H_SOCKET AC_CHECK_TYPES([struct sockaddr_storage, sa_family_t],,,[ /* sys/types.h is not needed according to POSIX, but the sys/socket.h in i386-unknown-freebsd4.10 and powerpc-apple-darwin5.5 required it. */ #include #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_WS2TCPIP_H #include #endif ]) if test $ac_cv_type_struct_sockaddr_storage = no; then HAVE_STRUCT_SOCKADDR_STORAGE=0 fi if test $ac_cv_type_sa_family_t = no; then HAVE_SA_FAMILY_T=0 fi if test $ac_cv_type_struct_sockaddr_storage != no; then AC_CHECK_MEMBERS([struct sockaddr_storage.ss_family], [], [HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY=0], [#include #ifdef HAVE_SYS_SOCKET_H #include #endif #ifdef HAVE_WS2TCPIP_H #include #endif ]) fi if test $HAVE_STRUCT_SOCKADDR_STORAGE = 0 || test $HAVE_SA_FAMILY_T = 0 \ || test $HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY = 0; then SYS_SOCKET_H='sys/socket.h' fi gl_PREREQ_SYS_H_WINSOCK2 dnl Check for declarations of anything we want to poison if the dnl corresponding gnulib module is not in use. gl_WARN_ON_USE_PREPARE([[ /* Some systems require prerequisite headers. */ #include #include ]], [socket connect accept bind getpeername getsockname getsockopt listen recv send recvfrom sendto setsockopt shutdown accept4]) ]) AC_DEFUN([gl_PREREQ_SYS_H_SOCKET], [ dnl Check prerequisites of the replacement. AC_REQUIRE([gl_CHECK_SOCKET_HEADERS]) gl_CHECK_NEXT_HEADERS([sys/socket.h]) if test $ac_cv_header_sys_socket_h = yes; then HAVE_SYS_SOCKET_H=1 HAVE_WS2TCPIP_H=0 else HAVE_SYS_SOCKET_H=0 if test $ac_cv_header_ws2tcpip_h = yes; then HAVE_WS2TCPIP_H=1 else HAVE_WS2TCPIP_H=0 fi fi AC_SUBST([HAVE_SYS_SOCKET_H]) AC_SUBST([HAVE_WS2TCPIP_H]) ]) # Common prerequisites of the replacement and of the # replacement. # Sets and substitutes HAVE_WINSOCK2_H. AC_DEFUN([gl_PREREQ_SYS_H_WINSOCK2], [ m4_ifdef([gl_UNISTD_H_DEFAULTS], [AC_REQUIRE([gl_UNISTD_H_DEFAULTS])]) m4_ifdef([gl_SYS_IOCTL_H_DEFAULTS], [AC_REQUIRE([gl_SYS_IOCTL_H_DEFAULTS])]) AC_CHECK_HEADERS_ONCE([sys/socket.h]) if test $ac_cv_header_sys_socket_h != yes; then dnl We cannot use AC_CHECK_HEADERS_ONCE here, because that would make dnl the check for those headers unconditional; yet cygwin reports dnl that the headers are present but cannot be compiled (since on dnl cygwin, all socket information should come from sys/socket.h). AC_CHECK_HEADERS([winsock2.h]) fi if test "$ac_cv_header_winsock2_h" = yes; then HAVE_WINSOCK2_H=1 UNISTD_H_HAVE_WINSOCK2_H=1 SYS_IOCTL_H_HAVE_WINSOCK2_H=1 else HAVE_WINSOCK2_H=0 fi AC_SUBST([HAVE_WINSOCK2_H]) ]) AC_DEFUN([gl_SYS_SOCKET_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_SYS_SOCKET_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) dnl Define it also as a C macro, for the benefit of the unit tests. gl_MODULE_INDICATOR_FOR_TESTS([$1]) ]) AC_DEFUN([gl_SYS_SOCKET_H_DEFAULTS], [ GNULIB_SOCKET=0; AC_SUBST([GNULIB_SOCKET]) GNULIB_CONNECT=0; AC_SUBST([GNULIB_CONNECT]) GNULIB_ACCEPT=0; AC_SUBST([GNULIB_ACCEPT]) GNULIB_BIND=0; AC_SUBST([GNULIB_BIND]) GNULIB_GETPEERNAME=0; AC_SUBST([GNULIB_GETPEERNAME]) GNULIB_GETSOCKNAME=0; AC_SUBST([GNULIB_GETSOCKNAME]) GNULIB_GETSOCKOPT=0; AC_SUBST([GNULIB_GETSOCKOPT]) GNULIB_LISTEN=0; AC_SUBST([GNULIB_LISTEN]) GNULIB_RECV=0; AC_SUBST([GNULIB_RECV]) GNULIB_SEND=0; AC_SUBST([GNULIB_SEND]) GNULIB_RECVFROM=0; AC_SUBST([GNULIB_RECVFROM]) GNULIB_SENDTO=0; AC_SUBST([GNULIB_SENDTO]) GNULIB_SETSOCKOPT=0; AC_SUBST([GNULIB_SETSOCKOPT]) GNULIB_SHUTDOWN=0; AC_SUBST([GNULIB_SHUTDOWN]) GNULIB_ACCEPT4=0; AC_SUBST([GNULIB_ACCEPT4]) HAVE_STRUCT_SOCKADDR_STORAGE=1; AC_SUBST([HAVE_STRUCT_SOCKADDR_STORAGE]) HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY=1; AC_SUBST([HAVE_STRUCT_SOCKADDR_STORAGE_SS_FAMILY]) HAVE_SA_FAMILY_T=1; AC_SUBST([HAVE_SA_FAMILY_T]) HAVE_ACCEPT4=1; AC_SUBST([HAVE_ACCEPT4]) ]) ttfautohint-0.97/gnulib/m4/fcntl-o.m40000644000175000001440000001107412237364241014352 00000000000000# fcntl-o.m4 serial 4 dnl Copyright (C) 2006, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Written by Paul Eggert. # Test whether the flags O_NOATIME and O_NOFOLLOW actually work. # Define HAVE_WORKING_O_NOATIME to 1 if O_NOATIME works, or to 0 otherwise. # Define HAVE_WORKING_O_NOFOLLOW to 1 if O_NOFOLLOW works, or to 0 otherwise. AC_DEFUN([gl_FCNTL_O_FLAGS], [ dnl Persuade glibc to define O_NOATIME and O_NOFOLLOW. dnl AC_USE_SYSTEM_EXTENSIONS was introduced in autoconf 2.60 and obsoletes dnl AC_GNU_SOURCE. m4_ifdef([AC_USE_SYSTEM_EXTENSIONS], [AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS])], [AC_REQUIRE([AC_GNU_SOURCE])]) AC_CHECK_HEADERS_ONCE([unistd.h]) AC_CHECK_FUNCS_ONCE([symlink]) AC_CACHE_CHECK([for working fcntl.h], [gl_cv_header_working_fcntl_h], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include #include #if HAVE_UNISTD_H # include #else /* on Windows with MSVC */ # include # include # defined sleep(n) _sleep ((n) * 1000) #endif #include #ifndef O_NOATIME #define O_NOATIME 0 #endif #ifndef O_NOFOLLOW #define O_NOFOLLOW 0 #endif static int const constants[] = { O_CREAT, O_EXCL, O_NOCTTY, O_TRUNC, O_APPEND, O_NONBLOCK, O_SYNC, O_ACCMODE, O_RDONLY, O_RDWR, O_WRONLY }; ]], [[ int result = !constants; #if HAVE_SYMLINK { static char const sym[] = "conftest.sym"; if (symlink ("/dev/null", sym) != 0) result |= 2; else { int fd = open (sym, O_WRONLY | O_NOFOLLOW | O_CREAT, 0); if (fd >= 0) { close (fd); result |= 4; } } if (unlink (sym) != 0 || symlink (".", sym) != 0) result |= 2; else { int fd = open (sym, O_RDONLY | O_NOFOLLOW); if (fd >= 0) { close (fd); result |= 4; } } unlink (sym); } #endif { static char const file[] = "confdefs.h"; int fd = open (file, O_RDONLY | O_NOATIME); if (fd < 0) result |= 8; else { struct stat st0; if (fstat (fd, &st0) != 0) result |= 16; else { char c; sleep (1); if (read (fd, &c, 1) != 1) result |= 24; else { if (close (fd) != 0) result |= 32; else { struct stat st1; if (stat (file, &st1) != 0) result |= 40; else if (st0.st_atime != st1.st_atime) result |= 64; } } } } } return result;]])], [gl_cv_header_working_fcntl_h=yes], [case $? in #( 4) gl_cv_header_working_fcntl_h='no (bad O_NOFOLLOW)';; #( 64) gl_cv_header_working_fcntl_h='no (bad O_NOATIME)';; #( 68) gl_cv_header_working_fcntl_h='no (bad O_NOATIME, O_NOFOLLOW)';; #( *) gl_cv_header_working_fcntl_h='no';; esac], [gl_cv_header_working_fcntl_h=cross-compiling])]) case $gl_cv_header_working_fcntl_h in #( *O_NOATIME* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOATIME], [$ac_val], [Define to 1 if O_NOATIME works.]) case $gl_cv_header_working_fcntl_h in #( *O_NOFOLLOW* | no | cross-compiling) ac_val=0;; #( *) ac_val=1;; esac AC_DEFINE_UNQUOTED([HAVE_WORKING_O_NOFOLLOW], [$ac_val], [Define to 1 if O_NOFOLLOW works.]) ]) ttfautohint-0.97/gnulib/m4/msvc-nothrow.m40000644000175000001440000000053012237364241015451 00000000000000# msvc-nothrow.m4 serial 1 dnl Copyright (C) 2011-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_MSVC_NOTHROW], [ AC_REQUIRE([gl_MSVC_INVAL]) ]) ttfautohint-0.97/gnulib/m4/string_h.m40000644000175000001440000001271412237364241014627 00000000000000# Configure a GNU-like replacement for . # Copyright (C) 2007-2013 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. # serial 21 # Written by Paul Eggert. AC_DEFUN([gl_HEADER_STRING_H], [ dnl Use AC_REQUIRE here, so that the default behavior below is expanded dnl once only, before all statements that occur in other macros. AC_REQUIRE([gl_HEADER_STRING_H_BODY]) ]) AC_DEFUN([gl_HEADER_STRING_H_BODY], [ AC_REQUIRE([AC_C_RESTRICT]) AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) gl_NEXT_HEADERS([string.h]) dnl Check for declarations of anything we want to poison if the dnl corresponding gnulib module is not in use, and which is not dnl guaranteed by C89. gl_WARN_ON_USE_PREPARE([[#include ]], [ffsl ffsll memmem mempcpy memrchr rawmemchr stpcpy stpncpy strchrnul strdup strncat strndup strnlen strpbrk strsep strcasestr strtok_r strerror_r strsignal strverscmp]) ]) AC_DEFUN([gl_STRING_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) dnl Define it also as a C macro, for the benefit of the unit tests. gl_MODULE_INDICATOR_FOR_TESTS([$1]) ]) AC_DEFUN([gl_HEADER_STRING_H_DEFAULTS], [ GNULIB_FFSL=0; AC_SUBST([GNULIB_FFSL]) GNULIB_FFSLL=0; AC_SUBST([GNULIB_FFSLL]) GNULIB_MEMCHR=0; AC_SUBST([GNULIB_MEMCHR]) GNULIB_MEMMEM=0; AC_SUBST([GNULIB_MEMMEM]) GNULIB_MEMPCPY=0; AC_SUBST([GNULIB_MEMPCPY]) GNULIB_MEMRCHR=0; AC_SUBST([GNULIB_MEMRCHR]) GNULIB_RAWMEMCHR=0; AC_SUBST([GNULIB_RAWMEMCHR]) GNULIB_STPCPY=0; AC_SUBST([GNULIB_STPCPY]) GNULIB_STPNCPY=0; AC_SUBST([GNULIB_STPNCPY]) GNULIB_STRCHRNUL=0; AC_SUBST([GNULIB_STRCHRNUL]) GNULIB_STRDUP=0; AC_SUBST([GNULIB_STRDUP]) GNULIB_STRNCAT=0; AC_SUBST([GNULIB_STRNCAT]) GNULIB_STRNDUP=0; AC_SUBST([GNULIB_STRNDUP]) GNULIB_STRNLEN=0; AC_SUBST([GNULIB_STRNLEN]) GNULIB_STRPBRK=0; AC_SUBST([GNULIB_STRPBRK]) GNULIB_STRSEP=0; AC_SUBST([GNULIB_STRSEP]) GNULIB_STRSTR=0; AC_SUBST([GNULIB_STRSTR]) GNULIB_STRCASESTR=0; AC_SUBST([GNULIB_STRCASESTR]) GNULIB_STRTOK_R=0; AC_SUBST([GNULIB_STRTOK_R]) GNULIB_MBSLEN=0; AC_SUBST([GNULIB_MBSLEN]) GNULIB_MBSNLEN=0; AC_SUBST([GNULIB_MBSNLEN]) GNULIB_MBSCHR=0; AC_SUBST([GNULIB_MBSCHR]) GNULIB_MBSRCHR=0; AC_SUBST([GNULIB_MBSRCHR]) GNULIB_MBSSTR=0; AC_SUBST([GNULIB_MBSSTR]) GNULIB_MBSCASECMP=0; AC_SUBST([GNULIB_MBSCASECMP]) GNULIB_MBSNCASECMP=0; AC_SUBST([GNULIB_MBSNCASECMP]) GNULIB_MBSPCASECMP=0; AC_SUBST([GNULIB_MBSPCASECMP]) GNULIB_MBSCASESTR=0; AC_SUBST([GNULIB_MBSCASESTR]) GNULIB_MBSCSPN=0; AC_SUBST([GNULIB_MBSCSPN]) GNULIB_MBSPBRK=0; AC_SUBST([GNULIB_MBSPBRK]) GNULIB_MBSSPN=0; AC_SUBST([GNULIB_MBSSPN]) GNULIB_MBSSEP=0; AC_SUBST([GNULIB_MBSSEP]) GNULIB_MBSTOK_R=0; AC_SUBST([GNULIB_MBSTOK_R]) GNULIB_STRERROR=0; AC_SUBST([GNULIB_STRERROR]) GNULIB_STRERROR_R=0; AC_SUBST([GNULIB_STRERROR_R]) GNULIB_STRSIGNAL=0; AC_SUBST([GNULIB_STRSIGNAL]) GNULIB_STRVERSCMP=0; AC_SUBST([GNULIB_STRVERSCMP]) HAVE_MBSLEN=0; AC_SUBST([HAVE_MBSLEN]) dnl Assume proper GNU behavior unless another module says otherwise. HAVE_FFSL=1; AC_SUBST([HAVE_FFSL]) HAVE_FFSLL=1; AC_SUBST([HAVE_FFSLL]) HAVE_MEMCHR=1; AC_SUBST([HAVE_MEMCHR]) HAVE_DECL_MEMMEM=1; AC_SUBST([HAVE_DECL_MEMMEM]) HAVE_MEMPCPY=1; AC_SUBST([HAVE_MEMPCPY]) HAVE_DECL_MEMRCHR=1; AC_SUBST([HAVE_DECL_MEMRCHR]) HAVE_RAWMEMCHR=1; AC_SUBST([HAVE_RAWMEMCHR]) HAVE_STPCPY=1; AC_SUBST([HAVE_STPCPY]) HAVE_STPNCPY=1; AC_SUBST([HAVE_STPNCPY]) HAVE_STRCHRNUL=1; AC_SUBST([HAVE_STRCHRNUL]) HAVE_DECL_STRDUP=1; AC_SUBST([HAVE_DECL_STRDUP]) HAVE_DECL_STRNDUP=1; AC_SUBST([HAVE_DECL_STRNDUP]) HAVE_DECL_STRNLEN=1; AC_SUBST([HAVE_DECL_STRNLEN]) HAVE_STRPBRK=1; AC_SUBST([HAVE_STRPBRK]) HAVE_STRSEP=1; AC_SUBST([HAVE_STRSEP]) HAVE_STRCASESTR=1; AC_SUBST([HAVE_STRCASESTR]) HAVE_DECL_STRTOK_R=1; AC_SUBST([HAVE_DECL_STRTOK_R]) HAVE_DECL_STRERROR_R=1; AC_SUBST([HAVE_DECL_STRERROR_R]) HAVE_DECL_STRSIGNAL=1; AC_SUBST([HAVE_DECL_STRSIGNAL]) HAVE_STRVERSCMP=1; AC_SUBST([HAVE_STRVERSCMP]) REPLACE_MEMCHR=0; AC_SUBST([REPLACE_MEMCHR]) REPLACE_MEMMEM=0; AC_SUBST([REPLACE_MEMMEM]) REPLACE_STPNCPY=0; AC_SUBST([REPLACE_STPNCPY]) REPLACE_STRDUP=0; AC_SUBST([REPLACE_STRDUP]) REPLACE_STRSTR=0; AC_SUBST([REPLACE_STRSTR]) REPLACE_STRCASESTR=0; AC_SUBST([REPLACE_STRCASESTR]) REPLACE_STRCHRNUL=0; AC_SUBST([REPLACE_STRCHRNUL]) REPLACE_STRERROR=0; AC_SUBST([REPLACE_STRERROR]) REPLACE_STRERROR_R=0; AC_SUBST([REPLACE_STRERROR_R]) REPLACE_STRNCAT=0; AC_SUBST([REPLACE_STRNCAT]) REPLACE_STRNDUP=0; AC_SUBST([REPLACE_STRNDUP]) REPLACE_STRNLEN=0; AC_SUBST([REPLACE_STRNLEN]) REPLACE_STRSIGNAL=0; AC_SUBST([REPLACE_STRSIGNAL]) REPLACE_STRTOK_R=0; AC_SUBST([REPLACE_STRTOK_R]) UNDEFINE_STRTOK_R=0; AC_SUBST([UNDEFINE_STRTOK_R]) ]) ttfautohint-0.97/gnulib/m4/extern-inline.m40000644000175000001440000000670712237364241015600 00000000000000dnl 'extern inline' a la ISO C99. dnl Copyright 2012-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_EXTERN_INLINE], [ AH_VERBATIM([extern_inline], [/* Please see the Gnulib manual for how to use these macros. Suppress extern inline with HP-UX cc, as it appears to be broken; see . Suppress extern inline with Sun C in standards-conformance mode, as it mishandles inline functions that call each other. E.g., for 'inline void f (void) { } inline void g (void) { f (); }', c99 incorrectly complains 'reference to static identifier "f" in extern inline function'. This bug was observed with Sun C 5.12 SunOS_i386 2011/11/16. Suppress the use of extern inline on problematic Apple configurations. OS X 10.8 and earlier mishandle it; see, e.g., . OS X 10.9 has a macro __header_inline indicating the bug is fixed for C and for clang but remains for g++; see . Perhaps Apple will fix this some day. */ #if (defined __APPLE__ \ && (defined __header_inline \ ? (defined __cplusplus && defined __GNUC_STDC_INLINE__ \ && ! defined __clang__) \ : ((! defined _DONT_USE_CTYPE_INLINE_ \ && (defined __GNUC__ || defined __cplusplus)) \ || (defined _FORTIFY_SOURCE && 0 < _FORTIFY_SOURCE \ && defined __GNUC__ && ! defined __cplusplus)))) # define _GL_EXTERN_INLINE_APPLE_BUG #endif #if ((__GNUC__ \ ? defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ \ : (199901L <= __STDC_VERSION__ \ && !defined __HP_cc \ && !(defined __SUNPRO_C && __STDC__))) \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # define _GL_INLINE inline # define _GL_EXTERN_INLINE extern inline # define _GL_EXTERN_INLINE_IN_USE #elif (2 < __GNUC__ + (7 <= __GNUC_MINOR__) && !defined __STRICT_ANSI__ \ && !defined _GL_EXTERN_INLINE_APPLE_BUG) # if defined __GNUC_GNU_INLINE__ && __GNUC_GNU_INLINE__ /* __gnu_inline__ suppresses a GCC 4.2 diagnostic. */ # define _GL_INLINE extern inline __attribute__ ((__gnu_inline__)) # else # define _GL_INLINE extern inline # endif # define _GL_EXTERN_INLINE extern # define _GL_EXTERN_INLINE_IN_USE #else # define _GL_INLINE static _GL_UNUSED # define _GL_EXTERN_INLINE static _GL_UNUSED #endif #if 4 < __GNUC__ + (6 <= __GNUC_MINOR__) # if defined __GNUC_STDC_INLINE__ && __GNUC_STDC_INLINE__ # define _GL_INLINE_HEADER_CONST_PRAGMA # else # define _GL_INLINE_HEADER_CONST_PRAGMA \ _Pragma ("GCC diagnostic ignored \"-Wsuggest-attribute=const\"") # endif /* Suppress GCC's bogus "no previous prototype for 'FOO'" and "no previous declaration for 'FOO'" diagnostics, when FOO is an inline function in the header; see . */ # define _GL_INLINE_HEADER_BEGIN \ _Pragma ("GCC diagnostic push") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-prototypes\"") \ _Pragma ("GCC diagnostic ignored \"-Wmissing-declarations\"") \ _GL_INLINE_HEADER_CONST_PRAGMA # define _GL_INLINE_HEADER_END \ _Pragma ("GCC diagnostic pop") #else # define _GL_INLINE_HEADER_BEGIN # define _GL_INLINE_HEADER_END #endif]) ]) ttfautohint-0.97/gnulib/m4/lock.m40000644000175000001440000000266712237364241013750 00000000000000# lock.m4 serial 13 (gettext-0.18.2) dnl Copyright (C) 2005-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. AC_DEFUN([gl_LOCK], [ AC_REQUIRE([gl_THREADLIB]) if test "$gl_threads_api" = posix; then # OSF/1 4.0 and Mac OS X 10.1 lack the pthread_rwlock_t type and the # pthread_rwlock_* functions. AC_CHECK_TYPE([pthread_rwlock_t], [AC_DEFINE([HAVE_PTHREAD_RWLOCK], [1], [Define if the POSIX multithreading library has read/write locks.])], [], [#include ]) # glibc defines PTHREAD_MUTEX_RECURSIVE as enum, not as a macro. AC_COMPILE_IFELSE([ AC_LANG_PROGRAM( [[#include ]], [[ #if __FreeBSD__ == 4 error "No, in FreeBSD 4.0 recursive mutexes actually don't work." #elif (defined __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ \ && __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ < 1070) error "No, in Mac OS X < 10.7 recursive mutexes actually don't work." #else int x = (int)PTHREAD_MUTEX_RECURSIVE; return !x; #endif ]])], [AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE], [1], [Define if the defines PTHREAD_MUTEX_RECURSIVE.])]) fi gl_PREREQ_LOCK ]) # Prerequisites of lib/glthread/lock.c. AC_DEFUN([gl_PREREQ_LOCK], [:]) ttfautohint-0.97/gnulib/m4/stddef_h.m40000644000175000001440000000275512237364241014576 00000000000000dnl A placeholder for POSIX 2008 , for platforms that have issues. # stddef_h.m4 serial 4 dnl Copyright (C) 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_STDDEF_H], [ AC_REQUIRE([gl_STDDEF_H_DEFAULTS]) AC_REQUIRE([gt_TYPE_WCHAR_T]) STDDEF_H= if test $gt_cv_c_wchar_t = no; then HAVE_WCHAR_T=0 STDDEF_H=stddef.h fi AC_CACHE_CHECK([whether NULL can be used in arbitrary expressions], [gl_cv_decl_null_works], [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include int test[2 * (sizeof NULL == sizeof (void *)) -1]; ]])], [gl_cv_decl_null_works=yes], [gl_cv_decl_null_works=no])]) if test $gl_cv_decl_null_works = no; then REPLACE_NULL=1 STDDEF_H=stddef.h fi AC_SUBST([STDDEF_H]) AM_CONDITIONAL([GL_GENERATE_STDDEF_H], [test -n "$STDDEF_H"]) if test -n "$STDDEF_H"; then gl_NEXT_HEADERS([stddef.h]) fi ]) AC_DEFUN([gl_STDDEF_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_STDDEF_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) ]) AC_DEFUN([gl_STDDEF_H_DEFAULTS], [ dnl Assume proper GNU behavior unless another module says otherwise. REPLACE_NULL=0; AC_SUBST([REPLACE_NULL]) HAVE_WCHAR_T=1; AC_SUBST([HAVE_WCHAR_T]) ]) ttfautohint-0.97/gnulib/m4/memmem.m40000644000175000001440000001120612237364241014262 00000000000000# memmem.m4 serial 24 dnl Copyright (C) 2002-2004, 2007-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Check that memmem is present and functional. AC_DEFUN([gl_FUNC_MEMMEM_SIMPLE], [ dnl Persuade glibc to declare memmem(). AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) AC_CHECK_FUNCS([memmem]) if test $ac_cv_func_memmem = yes; then HAVE_MEMMEM=1 else HAVE_MEMMEM=0 fi AC_CHECK_DECLS_ONCE([memmem]) if test $ac_cv_have_decl_memmem = no; then HAVE_DECL_MEMMEM=0 else dnl Detect http://sourceware.org/bugzilla/show_bug.cgi?id=12092. dnl Also check that we handle empty needles correctly. AC_CACHE_CHECK([whether memmem works], [gl_cv_func_memmem_works_always], [AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include /* for memmem */ #define P "_EF_BF_BD" #define HAYSTACK "F_BD_CE_BD" P P P P "_C3_88_20" P P P "_C3_A7_20" P #define NEEDLE P P P P P ]], [[ int result = 0; if (memmem (HAYSTACK, strlen (HAYSTACK), NEEDLE, strlen (NEEDLE))) result |= 1; /* Check for empty needle behavior. */ { const char *haystack = "AAA"; if (memmem (haystack, 3, NULL, 0) != haystack) result |= 2; } return result; ]])], [gl_cv_func_memmem_works_always=yes], [gl_cv_func_memmem_works_always=no], [dnl glibc 2.9..2.12 and cygwin 1.7.7 have issue #12092 above. dnl Also empty needles work on glibc >= 2.1 and cygwin >= 1.7.0. dnl uClibc is not affected, since it uses different source code. dnl Assume that it works on all other platforms (even if not linear). AC_EGREP_CPP([Lucky user], [ #ifdef __GNU_LIBRARY__ #include #if ((__GLIBC__ == 2 && ((__GLIBC_MINOR > 0 && __GLIBC_MINOR__ < 9) \ || __GLIBC_MINOR__ > 12)) \ || (__GLIBC__ > 2)) \ || defined __UCLIBC__ Lucky user #endif #elif defined __CYGWIN__ #include #if CYGWIN_VERSION_DLL_COMBINED > CYGWIN_VERSION_DLL_MAKE_COMBINED (1007, 7) Lucky user #endif #else Lucky user #endif ], [gl_cv_func_memmem_works_always="guessing yes"], [gl_cv_func_memmem_works_always="guessing no"]) ]) ]) case "$gl_cv_func_memmem_works_always" in *yes) ;; *) REPLACE_MEMMEM=1 ;; esac fi gl_PREREQ_MEMMEM ]) # gl_FUNC_MEMMEM_SIMPLE dnl Additionally, check that memmem has linear performance characteristics AC_DEFUN([gl_FUNC_MEMMEM], [ AC_REQUIRE([gl_FUNC_MEMMEM_SIMPLE]) if test $HAVE_DECL_MEMMEM = 1 && test $REPLACE_MEMMEM = 0; then AC_CACHE_CHECK([whether memmem works in linear time], [gl_cv_func_memmem_works_fast], [AC_RUN_IFELSE([AC_LANG_PROGRAM([[ #include /* for signal */ #include /* for memmem */ #include /* for malloc */ #include /* for alarm */ static void quit (int sig) { exit (sig + 128); } ]], [[ int result = 0; size_t m = 1000000; char *haystack = (char *) malloc (2 * m + 1); char *needle = (char *) malloc (m + 1); /* Failure to compile this test due to missing alarm is okay, since all such platforms (mingw) also lack memmem. */ signal (SIGALRM, quit); alarm (5); /* Check for quadratic performance. */ if (haystack && needle) { memset (haystack, 'A', 2 * m); haystack[2 * m] = 'B'; memset (needle, 'A', m); needle[m] = 'B'; if (!memmem (haystack, 2 * m + 1, needle, m + 1)) result |= 1; } return result; ]])], [gl_cv_func_memmem_works_fast=yes], [gl_cv_func_memmem_works_fast=no], [dnl Only glibc >= 2.9 and cygwin > 1.7.0 are known to have a dnl memmem that works in linear time. AC_EGREP_CPP([Lucky user], [ #include #ifdef __GNU_LIBRARY__ #if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 9) || (__GLIBC__ > 2)) \ && !defined __UCLIBC__ Lucky user #endif #endif #ifdef __CYGWIN__ #include #if CYGWIN_VERSION_DLL_COMBINED > CYGWIN_VERSION_DLL_MAKE_COMBINED (1007, 0) Lucky user #endif #endif ], [gl_cv_func_memmem_works_fast="guessing yes"], [gl_cv_func_memmem_works_fast="guessing no"]) ]) ]) case "$gl_cv_func_memmem_works_fast" in *yes) ;; *) REPLACE_MEMMEM=1 ;; esac fi ]) # gl_FUNC_MEMMEM # Prerequisites of lib/memmem.c. AC_DEFUN([gl_PREREQ_MEMMEM], [:]) ttfautohint-0.97/gnulib/m4/wchar_t.m40000644000175000001440000000146212237364242014440 00000000000000# wchar_t.m4 serial 4 (gettext-0.18.2) dnl Copyright (C) 2002-2003, 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether has the 'wchar_t' type. dnl Prerequisite: AC_PROG_CC AC_DEFUN([gt_TYPE_WCHAR_T], [ AC_CACHE_CHECK([for wchar_t], [gt_cv_c_wchar_t], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include wchar_t foo = (wchar_t)'\0';]], [[]])], [gt_cv_c_wchar_t=yes], [gt_cv_c_wchar_t=no])]) if test $gt_cv_c_wchar_t = yes; then AC_DEFINE([HAVE_WCHAR_T], [1], [Define if you have the 'wchar_t' type.]) fi ]) ttfautohint-0.97/gnulib/m4/strerror_r.m40000644000175000001440000001506712237364241015221 00000000000000# strerror_r.m4 serial 15 dnl Copyright (C) 2002, 2007-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_FUNC_STRERROR_R], [ AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) AC_REQUIRE([gl_FUNC_STRERROR_R_WORKS]) dnl Persuade Solaris to declare strerror_r(). AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) dnl Some systems don't declare strerror_r() if _THREAD_SAFE and _REENTRANT dnl are not defined. AC_CHECK_DECLS_ONCE([strerror_r]) if test $ac_cv_have_decl_strerror_r = no; then HAVE_DECL_STRERROR_R=0 fi if test $ac_cv_func_strerror_r = yes; then if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then if test $gl_cv_func_strerror_r_posix_signature = yes; then case "$gl_cv_func_strerror_r_works" in dnl The system's strerror_r has bugs. Replace it. *no) REPLACE_STRERROR_R=1 ;; esac else dnl The system's strerror_r() has a wrong signature. Replace it. REPLACE_STRERROR_R=1 fi else dnl The system's strerror_r() cannot know about the new errno values we dnl add to , or any fix for strerror(0). Replace it. REPLACE_STRERROR_R=1 fi fi ]) # Prerequisites of lib/strerror_r.c. AC_DEFUN([gl_PREREQ_STRERROR_R], [ dnl glibc >= 2.3.4 and cygwin 1.7.9 have a function __xpg_strerror_r. AC_CHECK_FUNCS_ONCE([__xpg_strerror_r]) AC_CHECK_FUNCS_ONCE([catgets]) AC_CHECK_FUNCS_ONCE([snprintf]) ]) # Detect if strerror_r works, but without affecting whether a replacement # strerror_r will be used. AC_DEFUN([gl_FUNC_STRERROR_R_WORKS], [ AC_REQUIRE([gl_HEADER_ERRNO_H]) AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles AC_REQUIRE([gl_FUNC_STRERROR_0]) AC_CHECK_FUNCS_ONCE([strerror_r]) if test $ac_cv_func_strerror_r = yes; then if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then dnl The POSIX prototype is: int strerror_r (int, char *, size_t); dnl glibc, Cygwin: char *strerror_r (int, char *, size_t); dnl AIX 5.1, OSF/1 5.1: int strerror_r (int, char *, int); AC_CACHE_CHECK([for strerror_r with POSIX signature], [gl_cv_func_strerror_r_posix_signature], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include int strerror_r (int, char *, size_t); ]], [])], [gl_cv_func_strerror_r_posix_signature=yes], [gl_cv_func_strerror_r_posix_signature=no]) ]) if test $gl_cv_func_strerror_r_posix_signature = yes; then dnl AIX 6.1 strerror_r fails by returning -1, not an error number. dnl HP-UX 11.31 strerror_r always fails when the buffer length argument dnl is less than 80. dnl FreeBSD 8.s strerror_r claims failure on 0 dnl Mac OS X 10.5 strerror_r treats 0 like -1 dnl Solaris 10 strerror_r corrupts errno on failure AC_CACHE_CHECK([whether strerror_r works], [gl_cv_func_strerror_r_works], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include #include ]], [[int result = 0; char buf[79]; if (strerror_r (EACCES, buf, 0) < 0) result |= 1; errno = 0; if (strerror_r (EACCES, buf, sizeof buf) != 0) result |= 2; strcpy (buf, "Unknown"); if (strerror_r (0, buf, sizeof buf) != 0) result |= 4; if (errno) result |= 8; if (strstr (buf, "nknown") || strstr (buf, "ndefined")) result |= 0x10; errno = 0; *buf = 0; if (strerror_r (-3, buf, sizeof buf) < 0) result |= 0x20; if (errno) result |= 0x40; if (!*buf) result |= 0x80; return result; ]])], [gl_cv_func_strerror_r_works=yes], [gl_cv_func_strerror_r_works=no], [ changequote(,)dnl case "$host_os" in # Guess no on AIX. aix*) gl_cv_func_strerror_r_works="guessing no";; # Guess no on HP-UX. hpux*) gl_cv_func_strerror_r_works="guessing no";; # Guess no on BSD variants. *bsd*) gl_cv_func_strerror_r_works="guessing no";; # Guess yes otherwise. *) gl_cv_func_strerror_r_works="guessing yes";; esac changequote([,])dnl ]) ]) else dnl The system's strerror() has a wrong signature. dnl glibc >= 2.3.4 and cygwin 1.7.9 have a function __xpg_strerror_r. AC_CHECK_FUNCS_ONCE([__xpg_strerror_r]) dnl In glibc < 2.14, __xpg_strerror_r does not populate buf on failure. dnl In cygwin < 1.7.10, __xpg_strerror_r clobbers strerror's buffer. if test $ac_cv_func___xpg_strerror_r = yes; then AC_CACHE_CHECK([whether __xpg_strerror_r works], [gl_cv_func_strerror_r_works], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include #include extern #ifdef __cplusplus "C" #endif int __xpg_strerror_r(int, char *, size_t); ]], [[int result = 0; char buf[256] = "^"; char copy[256]; char *str = strerror (-1); strcpy (copy, str); if (__xpg_strerror_r (-2, buf, 1) == 0) result |= 1; if (*buf) result |= 2; __xpg_strerror_r (-2, buf, 256); if (strcmp (str, copy)) result |= 4; return result; ]])], [gl_cv_func_strerror_r_works=yes], [gl_cv_func_strerror_r_works=no], [dnl Guess no on all platforms that have __xpg_strerror_r, dnl at least until fixed glibc and cygwin are more common. gl_cv_func_strerror_r_works="guessing no" ]) ]) fi fi fi fi ]) ttfautohint-0.97/gnulib/m4/fcntl_h.m40000644000175000001440000000327112237364241014425 00000000000000# serial 15 # Configure fcntl.h. dnl Copyright (C) 2006-2007, 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Written by Paul Eggert. AC_DEFUN([gl_FCNTL_H], [ AC_REQUIRE([gl_FCNTL_H_DEFAULTS]) AC_REQUIRE([gl_FCNTL_O_FLAGS]) gl_NEXT_HEADERS([fcntl.h]) dnl Ensure the type pid_t gets defined. AC_REQUIRE([AC_TYPE_PID_T]) dnl Ensure the type mode_t gets defined. AC_REQUIRE([AC_TYPE_MODE_T]) dnl Check for declarations of anything we want to poison if the dnl corresponding gnulib module is not in use, if it is not common dnl enough to be declared everywhere. gl_WARN_ON_USE_PREPARE([[#include ]], [fcntl openat]) ]) AC_DEFUN([gl_FCNTL_MODULE_INDICATOR], [ dnl Use AC_REQUIRE here, so that the default settings are expanded once only. AC_REQUIRE([gl_FCNTL_H_DEFAULTS]) gl_MODULE_INDICATOR_SET_VARIABLE([$1]) dnl Define it also as a C macro, for the benefit of the unit tests. gl_MODULE_INDICATOR_FOR_TESTS([$1]) ]) AC_DEFUN([gl_FCNTL_H_DEFAULTS], [ GNULIB_FCNTL=0; AC_SUBST([GNULIB_FCNTL]) GNULIB_NONBLOCKING=0; AC_SUBST([GNULIB_NONBLOCKING]) GNULIB_OPEN=0; AC_SUBST([GNULIB_OPEN]) GNULIB_OPENAT=0; AC_SUBST([GNULIB_OPENAT]) dnl Assume proper GNU behavior unless another module says otherwise. HAVE_FCNTL=1; AC_SUBST([HAVE_FCNTL]) HAVE_OPENAT=1; AC_SUBST([HAVE_OPENAT]) REPLACE_FCNTL=0; AC_SUBST([REPLACE_FCNTL]) REPLACE_OPEN=0; AC_SUBST([REPLACE_OPEN]) REPLACE_OPENAT=0; AC_SUBST([REPLACE_OPENAT]) ]) ttfautohint-0.97/gnulib/m4/00gnulib.m40000644000175000001440000000252212237364241014426 00000000000000# 00gnulib.m4 serial 2 dnl Copyright (C) 2009-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl This file must be named something that sorts before all other dnl gnulib-provided .m4 files. It is needed until such time as we can dnl assume Autoconf 2.64, with its improved AC_DEFUN_ONCE semantics. # AC_DEFUN_ONCE([NAME], VALUE) # ---------------------------- # Define NAME to expand to VALUE on the first use (whether by direct # expansion, or by AC_REQUIRE), and to nothing on all subsequent uses. # Avoid bugs in AC_REQUIRE in Autoconf 2.63 and earlier. This # definition is slower than the version in Autoconf 2.64, because it # can only use interfaces that existed since 2.59; but it achieves the # same effect. Quoting is necessary to avoid confusing Automake. m4_version_prereq([2.63.263], [], [m4_define([AC][_DEFUN_ONCE], [AC][_DEFUN([$1], [AC_REQUIRE([_gl_DEFUN_ONCE([$1])], [m4_indir([_gl_DEFUN_ONCE([$1])])])])]dnl [AC][_DEFUN([_gl_DEFUN_ONCE([$1])], [$2])])]) # gl_00GNULIB # ----------- # Witness macro that this file has been included. Needed to force # Automake to include this file prior to all other gnulib .m4 files. AC_DEFUN([gl_00GNULIB]) ttfautohint-0.97/gnulib/m4/include_next.m40000644000175000001440000002542412237364241015475 00000000000000# include_next.m4 serial 23 dnl Copyright (C) 2006-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Paul Eggert and Derek Price. dnl Sets INCLUDE_NEXT and PRAGMA_SYSTEM_HEADER. dnl dnl INCLUDE_NEXT expands to 'include_next' if the compiler supports it, or to dnl 'include' otherwise. dnl dnl INCLUDE_NEXT_AS_FIRST_DIRECTIVE expands to 'include_next' if the compiler dnl supports it in the special case that it is the first include directive in dnl the given file, or to 'include' otherwise. dnl dnl PRAGMA_SYSTEM_HEADER can be used in files that contain #include_next, dnl so as to avoid GCC warnings when the gcc option -pedantic is used. dnl '#pragma GCC system_header' has the same effect as if the file was found dnl through the include search path specified with '-isystem' options (as dnl opposed to the search path specified with '-I' options). Namely, gcc dnl does not warn about some things, and on some systems (Solaris and Interix) dnl __STDC__ evaluates to 0 instead of to 1. The latter is an undesired side dnl effect; we are therefore careful to use 'defined __STDC__' or '1' instead dnl of plain '__STDC__'. dnl dnl PRAGMA_COLUMNS can be used in files that override system header files, so dnl as to avoid compilation errors on HP NonStop systems when the gnulib file dnl is included by a system header file that does a "#pragma COLUMNS 80" (which dnl has the effect of truncating the lines of that file and all files that it dnl includes to 80 columns) and the gnulib file has lines longer than 80 dnl columns. AC_DEFUN([gl_INCLUDE_NEXT], [ AC_LANG_PREPROC_REQUIRE() AC_CACHE_CHECK([whether the preprocessor supports include_next], [gl_cv_have_include_next], [rm -rf conftestd1a conftestd1b conftestd2 mkdir conftestd1a conftestd1b conftestd2 dnl IBM C 9.0, 10.1 (original versions, prior to the 2009-01 updates) on dnl AIX 6.1 support include_next when used as first preprocessor directive dnl in a file, but not when preceded by another include directive. Check dnl for this bug by including . dnl Additionally, with this same compiler, include_next is a no-op when dnl used in a header file that was included by specifying its absolute dnl file name. Despite these two bugs, include_next is used in the dnl compiler's . By virtue of the second bug, we need to use dnl include_next as well in this case. cat < conftestd1a/conftest.h #define DEFINED_IN_CONFTESTD1 #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd1b/conftest.h #define DEFINED_IN_CONFTESTD1 #include #include_next #ifdef DEFINED_IN_CONFTESTD2 int foo; #else #error "include_next doesn't work" #endif EOF cat < conftestd2/conftest.h #ifndef DEFINED_IN_CONFTESTD1 #error "include_next test doesn't work" #endif #define DEFINED_IN_CONFTESTD2 EOF gl_save_CPPFLAGS="$CPPFLAGS" CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1b -Iconftestd2" dnl We intentionally avoid using AC_LANG_SOURCE here. AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include ]], [gl_cv_have_include_next=yes], [CPPFLAGS="$gl_save_CPPFLAGS -Iconftestd1a -Iconftestd2" AC_COMPILE_IFELSE([AC_LANG_DEFINES_PROVIDED[#include ]], [gl_cv_have_include_next=buggy], [gl_cv_have_include_next=no]) ]) CPPFLAGS="$gl_save_CPPFLAGS" rm -rf conftestd1a conftestd1b conftestd2 ]) PRAGMA_SYSTEM_HEADER= if test $gl_cv_have_include_next = yes; then INCLUDE_NEXT=include_next INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next if test -n "$GCC"; then PRAGMA_SYSTEM_HEADER='#pragma GCC system_header' fi else if test $gl_cv_have_include_next = buggy; then INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include_next else INCLUDE_NEXT=include INCLUDE_NEXT_AS_FIRST_DIRECTIVE=include fi fi AC_SUBST([INCLUDE_NEXT]) AC_SUBST([INCLUDE_NEXT_AS_FIRST_DIRECTIVE]) AC_SUBST([PRAGMA_SYSTEM_HEADER]) AC_CACHE_CHECK([whether system header files limit the line length], [gl_cv_pragma_columns], [dnl HP NonStop systems, which define __TANDEM, have this misfeature. AC_EGREP_CPP([choke me], [ #ifdef __TANDEM choke me #endif ], [gl_cv_pragma_columns=yes], [gl_cv_pragma_columns=no]) ]) if test $gl_cv_pragma_columns = yes; then PRAGMA_COLUMNS="#pragma COLUMNS 10000" else PRAGMA_COLUMNS= fi AC_SUBST([PRAGMA_COLUMNS]) ]) # gl_CHECK_NEXT_HEADERS(HEADER1 HEADER2 ...) # ------------------------------------------ # For each arg foo.h, if #include_next works, define NEXT_FOO_H to be # ''; otherwise define it to be # '"///usr/include/foo.h"', or whatever other absolute file name is suitable. # Also, if #include_next works as first preprocessing directive in a file, # define NEXT_AS_FIRST_DIRECTIVE_FOO_H to be ''; otherwise define it to # be # '"///usr/include/foo.h"', or whatever other absolute file name is suitable. # That way, a header file with the following line: # #@INCLUDE_NEXT@ @NEXT_FOO_H@ # or # #@INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ @NEXT_AS_FIRST_DIRECTIVE_FOO_H@ # behaves (after sed substitution) as if it contained # #include_next # even if the compiler does not support include_next. # The three "///" are to pacify Sun C 5.8, which otherwise would say # "warning: #include of /usr/include/... may be non-portable". # Use '""', not '<>', so that the /// cannot be confused with a C99 comment. # Note: This macro assumes that the header file is not empty after # preprocessing, i.e. it does not only define preprocessor macros but also # provides some type/enum definitions or function/variable declarations. # # This macro also checks whether each header exists, by invoking # AC_CHECK_HEADERS_ONCE or AC_CHECK_HEADERS on each argument. AC_DEFUN([gl_CHECK_NEXT_HEADERS], [ gl_NEXT_HEADERS_INTERNAL([$1], [check]) ]) # gl_NEXT_HEADERS(HEADER1 HEADER2 ...) # ------------------------------------ # Like gl_CHECK_NEXT_HEADERS, except do not check whether the headers exist. # This is suitable for headers like that are standardized by C89 # and therefore can be assumed to exist. AC_DEFUN([gl_NEXT_HEADERS], [ gl_NEXT_HEADERS_INTERNAL([$1], [assume]) ]) # The guts of gl_CHECK_NEXT_HEADERS and gl_NEXT_HEADERS. AC_DEFUN([gl_NEXT_HEADERS_INTERNAL], [ AC_REQUIRE([gl_INCLUDE_NEXT]) AC_REQUIRE([AC_CANONICAL_HOST]) m4_if([$2], [check], [AC_CHECK_HEADERS_ONCE([$1]) ]) dnl FIXME: gl_next_header and gl_header_exists must be used unquoted dnl until we can assume autoconf 2.64 or newer. m4_foreach_w([gl_HEADER_NAME], [$1], [AS_VAR_PUSHDEF([gl_next_header], [gl_cv_next_]m4_defn([gl_HEADER_NAME])) if test $gl_cv_have_include_next = yes; then AS_VAR_SET(gl_next_header, ['<'gl_HEADER_NAME'>']) else AC_CACHE_CHECK( [absolute name of <]m4_defn([gl_HEADER_NAME])[>], m4_defn([gl_next_header]), [m4_if([$2], [check], [AS_VAR_PUSHDEF([gl_header_exists], [ac_cv_header_]m4_defn([gl_HEADER_NAME])) if test AS_VAR_GET(gl_header_exists) = yes; then AS_VAR_POPDEF([gl_header_exists]) ]) AC_LANG_CONFTEST( [AC_LANG_SOURCE( [[#include <]]m4_dquote(m4_defn([gl_HEADER_NAME]))[[>]] )]) dnl AIX "xlc -E" and "cc -E" omit #line directives for header dnl files that contain only a #include of other header files and dnl no non-comment tokens of their own. This leads to a failure dnl to detect the absolute name of , , dnl and others. The workaround is to force preservation dnl of comments through option -C. This ensures all necessary dnl #line directives are present. GCC supports option -C as well. case "$host_os" in aix*) gl_absname_cpp="$ac_cpp -C" ;; *) gl_absname_cpp="$ac_cpp" ;; esac changequote(,) case "$host_os" in mingw*) dnl For the sake of native Windows compilers (excluding gcc), dnl treat backslash as a directory separator, like /. dnl Actually, these compilers use a double-backslash as dnl directory separator, inside the dnl # line "filename" dnl directives. gl_dirsep_regex='[/\\]' ;; *) gl_dirsep_regex='\/' ;; esac dnl A sed expression that turns a string into a basic regular dnl expression, for use within "/.../". gl_make_literal_regex_sed='s,[]$^\\.*/[],\\&,g' changequote([,]) gl_header_literal_regex=`echo ']m4_defn([gl_HEADER_NAME])[' \ | sed -e "$gl_make_literal_regex_sed"` gl_absolute_header_sed="/${gl_dirsep_regex}${gl_header_literal_regex}/"'{ s/.*"\(.*'"${gl_dirsep_regex}${gl_header_literal_regex}"'\)".*/\1/ changequote(,)dnl s|^/[^/]|//&| changequote([,])dnl p q }' dnl eval is necessary to expand gl_absname_cpp. dnl Ultrix and Pyramid sh refuse to redirect output of eval, dnl so use subshell. AS_VAR_SET(gl_next_header, ['"'`(eval "$gl_absname_cpp conftest.$ac_ext") 2>&AS_MESSAGE_LOG_FD | sed -n "$gl_absolute_header_sed"`'"']) m4_if([$2], [check], [else AS_VAR_SET(gl_next_header, ['<'gl_HEADER_NAME'>']) fi ]) ]) fi AC_SUBST( AS_TR_CPP([NEXT_]m4_defn([gl_HEADER_NAME])), [AS_VAR_GET(gl_next_header)]) if test $gl_cv_have_include_next = yes || test $gl_cv_have_include_next = buggy; then # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include_next' gl_next_as_first_directive='<'gl_HEADER_NAME'>' else # INCLUDE_NEXT_AS_FIRST_DIRECTIVE='include' gl_next_as_first_directive=AS_VAR_GET(gl_next_header) fi AC_SUBST( AS_TR_CPP([NEXT_AS_FIRST_DIRECTIVE_]m4_defn([gl_HEADER_NAME])), [$gl_next_as_first_directive]) AS_VAR_POPDEF([gl_next_header])]) ]) # Autoconf 2.68 added warnings for our use of AC_COMPILE_IFELSE; # this fallback is safe for all earlier autoconf versions. m4_define_default([AC_LANG_DEFINES_PROVIDED]) ttfautohint-0.97/gnulib/m4/multiarch.m40000644000175000001440000000367412237364241015007 00000000000000# multiarch.m4 serial 7 dnl Copyright (C) 2008-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. # Determine whether the compiler is or may be producing universal binaries. # # On Mac OS X 10.5 and later systems, the user can create libraries and # executables that work on multiple system types--known as "fat" or # "universal" binaries--by specifying multiple '-arch' options to the # compiler but only a single '-arch' option to the preprocessor. Like # this: # # ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ # CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ # CPP="gcc -E" CXXCPP="g++ -E" # # Detect this situation and set APPLE_UNIVERSAL_BUILD accordingly. AC_DEFUN_ONCE([gl_MULTIARCH], [ dnl Code similar to autoconf-2.63 AC_C_BIGENDIAN. gl_cv_c_multiarch=no AC_COMPILE_IFELSE( [AC_LANG_SOURCE( [[#ifndef __APPLE_CC__ not a universal capable compiler #endif typedef int dummy; ]])], [ dnl Check for potential -arch flags. It is not universal unless dnl there are at least two -arch flags with different values. arch= prev= for word in ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}; do if test -n "$prev"; then case $word in i?86 | x86_64 | ppc | ppc64) if test -z "$arch" || test "$arch" = "$word"; then arch="$word" else gl_cv_c_multiarch=yes fi ;; esac prev= else if test "x$word" = "x-arch"; then prev=arch fi fi done ]) if test $gl_cv_c_multiarch = yes; then APPLE_UNIVERSAL_BUILD=1 else APPLE_UNIVERSAL_BUILD=0 fi AC_SUBST([APPLE_UNIVERSAL_BUILD]) ]) ttfautohint-0.97/gnulib/m4/extensions.m40000644000175000001440000001223712237364241015211 00000000000000# serial 13 -*- Autoconf -*- # Enable extensions on systems that normally disable them. # Copyright (C) 2003, 2006-2013 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 definition of AC_USE_SYSTEM_EXTENSIONS is stolen from git # Autoconf. Perhaps we can remove this once we can assume Autoconf # 2.70 or later everywhere, but since Autoconf mutates rapidly # enough in this area it's likely we'll need to redefine # AC_USE_SYSTEM_EXTENSIONS for quite some time. # If autoconf reports a warning # warning: AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS # or warning: AC_RUN_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS # the fix is # 1) to ensure that AC_USE_SYSTEM_EXTENSIONS is never directly invoked # but always AC_REQUIREd, # 2) to ensure that for each occurrence of # AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) # or # AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS]) # the corresponding gnulib module description has 'extensions' among # its dependencies. This will ensure that the gl_USE_SYSTEM_EXTENSIONS # invocation occurs in gl_EARLY, not in gl_INIT. # AC_USE_SYSTEM_EXTENSIONS # ------------------------ # Enable extensions on systems that normally disable them, # typically due to standards-conformance issues. # # Remember that #undef in AH_VERBATIM gets replaced with #define by # AC_DEFINE. The goal here is to define all known feature-enabling # macros, then, if reports of conflicts are made, disable macros that # cause problems on some platforms (such as __EXTENSIONS__). AC_DEFUN_ONCE([AC_USE_SYSTEM_EXTENSIONS], [AC_BEFORE([$0], [AC_COMPILE_IFELSE])dnl AC_BEFORE([$0], [AC_RUN_IFELSE])dnl AC_CHECK_HEADER([minix/config.h], [MINIX=yes], [MINIX=]) if test "$MINIX" = yes; then AC_DEFINE([_POSIX_SOURCE], [1], [Define to 1 if you need to in order for 'stat' and other things to work.]) AC_DEFINE([_POSIX_1_SOURCE], [2], [Define to 2 if the system does not provide POSIX.1 features except with this defined.]) AC_DEFINE([_MINIX], [1], [Define to 1 if on MINIX.]) AC_DEFINE([_NETBSD_SOURCE], [1], [Define to 1 to make NetBSD features available. MINIX 3 needs this.]) fi dnl Use a different key than __EXTENSIONS__, as that name broke existing dnl configure.ac when using autoheader 2.62. AH_VERBATIM([USE_SYSTEM_EXTENSIONS], [/* Enable extensions on AIX 3, Interix. */ #ifndef _ALL_SOURCE # undef _ALL_SOURCE #endif /* Enable general extensions on OS X. */ #ifndef _DARWIN_C_SOURCE # undef _DARWIN_C_SOURCE #endif /* Enable GNU extensions on systems that have them. */ #ifndef _GNU_SOURCE # undef _GNU_SOURCE #endif /* Enable threading extensions on Solaris. */ #ifndef _POSIX_PTHREAD_SEMANTICS # undef _POSIX_PTHREAD_SEMANTICS #endif /* Enable extensions on HP NonStop. */ #ifndef _TANDEM_SOURCE # undef _TANDEM_SOURCE #endif /* Enable X/Open extensions if necessary. HP-UX 11.11 defines mbstate_t only if _XOPEN_SOURCE is defined to 500, regardless of whether compiling with -Ae or -D_HPUX_SOURCE=1. */ #ifndef _XOPEN_SOURCE # undef _XOPEN_SOURCE #endif /* Enable general extensions on Solaris. */ #ifndef __EXTENSIONS__ # undef __EXTENSIONS__ #endif ]) AC_CACHE_CHECK([whether it is safe to define __EXTENSIONS__], [ac_cv_safe_to_define___extensions__], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[ # define __EXTENSIONS__ 1 ]AC_INCLUDES_DEFAULT])], [ac_cv_safe_to_define___extensions__=yes], [ac_cv_safe_to_define___extensions__=no])]) test $ac_cv_safe_to_define___extensions__ = yes && AC_DEFINE([__EXTENSIONS__]) AC_DEFINE([_ALL_SOURCE]) AC_DEFINE([_DARWIN_C_SOURCE]) AC_DEFINE([_GNU_SOURCE]) AC_DEFINE([_POSIX_PTHREAD_SEMANTICS]) AC_DEFINE([_TANDEM_SOURCE]) AC_CACHE_CHECK([whether _XOPEN_SOURCE should be defined], [ac_cv_should_define__xopen_source], [ac_cv_should_define__xopen_source=no AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[ #include mbstate_t x;]])], [], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[ #define _XOPEN_SOURCE 500 #include mbstate_t x;]])], [ac_cv_should_define__xopen_source=yes])])]) test $ac_cv_should_define__xopen_source = yes && AC_DEFINE([_XOPEN_SOURCE], [500]) ])# AC_USE_SYSTEM_EXTENSIONS # gl_USE_SYSTEM_EXTENSIONS # ------------------------ # Enable extensions on systems that normally disable them, # typically due to standards-conformance issues. AC_DEFUN_ONCE([gl_USE_SYSTEM_EXTENSIONS], [ dnl Require this macro before AC_USE_SYSTEM_EXTENSIONS. dnl gnulib does not need it. But if it gets required by third-party macros dnl after AC_USE_SYSTEM_EXTENSIONS is required, autoconf 2.62..2.63 emit a dnl warning: "AC_COMPILE_IFELSE was called before AC_USE_SYSTEM_EXTENSIONS". dnl Note: We can do this only for one of the macros AC_AIX, AC_GNU_SOURCE, dnl AC_MINIX. If people still use AC_AIX or AC_MINIX, they are out of luck. AC_REQUIRE([AC_GNU_SOURCE]) AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) ]) ttfautohint-0.97/gnulib/m4/strerror.m40000644000175000001440000000623612237364241014676 00000000000000# strerror.m4 serial 17 dnl Copyright (C) 2002, 2007-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. AC_DEFUN([gl_FUNC_STRERROR], [ AC_REQUIRE([gl_HEADER_STRING_H_DEFAULTS]) AC_REQUIRE([gl_HEADER_ERRNO_H]) AC_REQUIRE([gl_FUNC_STRERROR_0]) AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles m4_ifdef([gl_FUNC_STRERROR_R_WORKS], [ AC_REQUIRE([gl_FUNC_STRERROR_R_WORKS]) ]) if test "$ERRNO_H:$REPLACE_STRERROR_0" = :0; then AC_CACHE_CHECK([for working strerror function], [gl_cv_func_working_strerror], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[if (!*strerror (-2)) return 1;]])], [gl_cv_func_working_strerror=yes], [gl_cv_func_working_strerror=no], [case "$host_os" in # Guess yes on glibc systems. *-gnu*) gl_cv_func_working_strerror="guessing yes" ;; # If we don't know, assume the worst. *) gl_cv_func_working_strerror="guessing no" ;; esac ]) ]) case "$gl_cv_func_working_strerror" in *yes) ;; *) dnl The system's strerror() fails to return a string for out-of-range dnl integers. Replace it. REPLACE_STRERROR=1 ;; esac m4_ifdef([gl_FUNC_STRERROR_R_WORKS], [ dnl If the system's strerror_r or __xpg_strerror_r clobbers strerror's dnl buffer, we must replace strerror. case "$gl_cv_func_strerror_r_works" in *no) REPLACE_STRERROR=1 ;; esac ]) else dnl The system's strerror() cannot know about the new errno values we add dnl to , or any fix for strerror(0). Replace it. REPLACE_STRERROR=1 fi ]) dnl Detect if strerror(0) passes (that is, does not set errno, and does not dnl return a string that matches strerror(-1)). AC_DEFUN([gl_FUNC_STRERROR_0], [ AC_REQUIRE([AC_CANONICAL_HOST]) dnl for cross-compiles REPLACE_STRERROR_0=0 AC_CACHE_CHECK([whether strerror(0) succeeds], [gl_cv_func_strerror_0_works], [AC_RUN_IFELSE( [AC_LANG_PROGRAM( [[#include #include ]], [[int result = 0; char *str; errno = 0; str = strerror (0); if (!*str) result |= 1; if (errno) result |= 2; if (strstr (str, "nknown") || strstr (str, "ndefined")) result |= 4; return result;]])], [gl_cv_func_strerror_0_works=yes], [gl_cv_func_strerror_0_works=no], [case "$host_os" in # Guess yes on glibc systems. *-gnu*) gl_cv_func_strerror_0_works="guessing yes" ;; # If we don't know, assume the worst. *) gl_cv_func_strerror_0_works="guessing no" ;; esac ]) ]) case "$gl_cv_func_strerror_0_works" in *yes) ;; *) REPLACE_STRERROR_0=1 AC_DEFINE([REPLACE_STRERROR_0], [1], [Define to 1 if strerror(0) does not return a message implying success.]) ;; esac ]) ttfautohint-0.97/gnulib/m4/ssize_t.m40000644000175000001440000000146312237364241014471 00000000000000# ssize_t.m4 serial 5 (gettext-0.18.2) dnl Copyright (C) 2001-2003, 2006, 2010-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl From Bruno Haible. dnl Test whether ssize_t is defined. AC_DEFUN([gt_TYPE_SSIZE_T], [ AC_CACHE_CHECK([for ssize_t], [gt_cv_ssize_t], [AC_COMPILE_IFELSE( [AC_LANG_PROGRAM( [[#include ]], [[int x = sizeof (ssize_t *) + sizeof (ssize_t); return !x;]])], [gt_cv_ssize_t=yes], [gt_cv_ssize_t=no])]) if test $gt_cv_ssize_t = no; then AC_DEFINE([ssize_t], [int], [Define as a signed type of the same size as size_t.]) fi ]) ttfautohint-0.97/gnulib/m4/off_t.m40000644000175000001440000000100612237364241014077 00000000000000# off_t.m4 serial 1 dnl Copyright (C) 2012-2013 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, dnl with or without modifications, as long as this notice is preserved. dnl Check whether to override the 'off_t' type. dnl Set WINDOWS_64_BIT_OFF_T. AC_DEFUN([gl_TYPE_OFF_T], [ m4_ifdef([gl_LARGEFILE], [ AC_REQUIRE([gl_LARGEFILE]) ], [ WINDOWS_64_BIT_OFF_T=0 ]) AC_SUBST([WINDOWS_64_BIT_OFF_T]) ]) ttfautohint-0.97/gnulib/m4/lt~obsolete.m40000644000175000001440000001375612237364236015377 00000000000000# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2009 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])]) ttfautohint-0.97/gnulib/git-version-gen0000755000175000001440000001751412237364241015176 00000000000000#!/bin/sh # Print a version string. scriptversion=2012-12-31.23; # UTC # Copyright (C) 2007-2013 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 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 . # This script is derived from GIT-VERSION-GEN from GIT: http://git.or.cz/. # It may be run two ways: # - from a git repository in which the "git describe" command below # produces useful output (thus requiring at least one signed tag) # - from a non-git-repo directory containing a .tarball-version file, which # presumes this script is invoked like "./git-version-gen .tarball-version". # In order to use intra-version strings in your project, you will need two # separate generated version string files: # # .tarball-version - present only in a distribution tarball, and not in # a checked-out repository. Created with contents that were learned at # the last time autoconf was run, and used by git-version-gen. Must not # be present in either $(srcdir) or $(builddir) for git-version-gen to # give accurate answers during normal development with a checked out tree, # but must be present in a tarball when there is no version control system. # Therefore, it cannot be used in any dependencies. GNUmakefile has # hooks to force a reconfigure at distribution time to get the value # correct, without penalizing normal development with extra reconfigures. # # .version - present in a checked-out repository and in a distribution # tarball. Usable in dependencies, particularly for files that don't # want to depend on config.h but do want to track version changes. # Delete this file prior to any autoconf run where you want to rebuild # files to pick up a version string change; and leave it stale to # minimize rebuild time after unrelated changes to configure sources. # # As with any generated file in a VC'd directory, you should add # /.version to .gitignore, so that you don't accidentally commit it. # .tarball-version is never generated in a VC'd directory, so needn't # be listed there. # # Use the following line in your configure.ac, so that $(VERSION) will # automatically be up-to-date each time configure is run (and note that # since configure.ac no longer includes a version string, Makefile rules # should not depend on configure.ac for version updates). # # AC_INIT([GNU project], # m4_esyscmd([build-aux/git-version-gen .tarball-version]), # [bug-project@example]) # # Then use the following lines in your Makefile.am, so that .version # will be present for dependencies, and so that .version and # .tarball-version will exist in distribution tarballs. # # EXTRA_DIST = $(top_srcdir)/.version # BUILT_SOURCES = $(top_srcdir)/.version # $(top_srcdir)/.version: # echo $(VERSION) > $@-t && mv $@-t $@ # dist-hook: # echo $(VERSION) > $(distdir)/.tarball-version me=$0 version="git-version-gen $scriptversion Copyright 2011 Free Software Foundation, Inc. There is NO warranty. You may redistribute this software under the terms of the GNU General Public License. For more information about these matters, see the files named COPYING." usage="\ Usage: $me [OPTION]... \$srcdir/.tarball-version [TAG-NORMALIZATION-SED-SCRIPT] Print a version string. Options: --prefix prefix of git tags (default 'v') --fallback fallback version to use if \"git --version\" fails --help display this help and exit --version output version information and exit Running without arguments will suffice in most cases." prefix=v fallback= while test $# -gt 0; do case $1 in --help) echo "$usage"; exit 0;; --version) echo "$version"; exit 0;; --prefix) shift; prefix="$1";; --fallback) shift; fallback="$1";; -*) echo "$0: Unknown option '$1'." >&2 echo "$0: Try '--help' for more information." >&2 exit 1;; *) if test "x$tarball_version_file" = x; then tarball_version_file="$1" elif test "x$tag_sed_script" = x; then tag_sed_script="$1" else echo "$0: extra non-option argument '$1'." >&2 exit 1 fi;; esac shift done if test "x$tarball_version_file" = x; then echo "$usage" exit 1 fi tag_sed_script="${tag_sed_script:-s/x/x/}" nl=' ' # Avoid meddling by environment variable of the same name. v= v_from_git= # First see if there is a tarball-only version file. # then try "git describe", then default. if test -f $tarball_version_file then v=`cat $tarball_version_file` || v= case $v in *$nl*) v= ;; # reject multi-line output [0-9]*) ;; *) v= ;; esac test "x$v" = x \ && echo "$0: WARNING: $tarball_version_file is missing or damaged" 1>&2 fi if test "x$v" != x then : # use $v # Otherwise, if there is at least one git commit involving the working # directory, and "git describe" output looks sensible, use that to # derive a version string. elif test "`git log -1 --pretty=format:x . 2>&1`" = x \ && v=`git describe --abbrev=4 --match="$prefix*" HEAD 2>/dev/null \ || git describe --abbrev=4 HEAD 2>/dev/null` \ && v=`printf '%s\n' "$v" | sed "$tag_sed_script"` \ && case $v in $prefix[0-9]*) ;; *) (exit 1) ;; esac then # Is this a new git that lists number of commits since the last # tag or the previous older version that did not? # Newer: v6.10-77-g0f8faeb # Older: v6.10-g0f8faeb case $v in *-*-*) : git describe is okay three part flavor ;; *-*) : git describe is older two part flavor # Recreate the number of commits and rewrite such that the # result is the same as if we were using the newer version # of git describe. vtag=`echo "$v" | sed 's/-.*//'` commit_list=`git rev-list "$vtag"..HEAD 2>/dev/null` \ || { commit_list=failed; echo "$0: WARNING: git rev-list failed" 1>&2; } numcommits=`echo "$commit_list" | wc -l` v=`echo "$v" | sed "s/\(.*\)-\(.*\)/\1-$numcommits-\2/"`; test "$commit_list" = failed && v=UNKNOWN ;; esac # Change the first '-' to a '.', so version-comparing tools work properly. # Remove the "g" in git describe's output string, to save a byte. v=`echo "$v" | sed 's/-/./;s/\(.*\)-g/\1-/'`; v_from_git=1 elif test "x$fallback" = x || git --version >/dev/null 2>&1; then v=UNKNOWN else v=$fallback fi v=`echo "$v" |sed "s/^$prefix//"` # Test whether to append the "-dirty" suffix only if the version # string we're using came from git. I.e., skip the test if it's "UNKNOWN" # or if it came from .tarball-version. if test "x$v_from_git" != x; then # Don't declare a version "dirty" merely because a time stamp has changed. git update-index --refresh > /dev/null 2>&1 dirty=`exec 2>/dev/null;git diff-index --name-only HEAD` || dirty= case "$dirty" in '') ;; *) # Append the suffix only if there isn't one already. case $v in *-dirty) ;; *) v="$v-dirty" ;; esac ;; esac fi # Omit the trailing newline, so that m4_esyscmd can use the result directly. echo "$v" | tr -d "$nl" # 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: "UTC" # time-stamp-end: "; # UTC" # End: ttfautohint-0.97/gnulib/ar-lib0000755000175000001440000001330212237364312013315 00000000000000#! /bin/sh # Wrapper for Microsoft lib.exe me=ar-lib scriptversion=2012-03-01.08; # UTC # Copyright (C) 2010-2013 Free Software Foundation, Inc. # Written by Peter Rosin . # # 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 # . # func_error message func_error () { echo "$me: $1" 1>&2 exit 1 } file_conv= # func_file_conv build_file # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. 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*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv in mingw) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin) file=`cygpath -m "$file" || echo "$file"` ;; wine) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_at_file at_file operation archive # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE # for each of them. # When interpreting the content of the @FILE, do NOT use func_file_conv, # since the user would need to supply preconverted file names to # binutils ar, at least for MinGW. func_at_file () { operation=$2 archive=$3 at_file_contents=`cat "$1"` eval set x "$at_file_contents" shift for member do $AR -NOLOGO $operation:"$member" "$archive" || exit $? done } case $1 in '') func_error "no command. Try '$0 --help' for more information." ;; -h | --h*) cat <. */ #ifndef _GL_CXXDEFS_H #define _GL_CXXDEFS_H /* The three most frequent use cases of these macros are: * For providing a substitute for a function that is missing on some platforms, but is declared and works fine on the platforms on which it exists: #if @GNULIB_FOO@ # if !@HAVE_FOO@ _GL_FUNCDECL_SYS (foo, ...); # endif _GL_CXXALIAS_SYS (foo, ...); _GL_CXXALIASWARN (foo); #elif defined GNULIB_POSIXCHECK ... #endif * For providing a replacement for a function that exists on all platforms, but is broken/insufficient and needs to be replaced on some platforms: #if @GNULIB_FOO@ # if @REPLACE_FOO@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef foo # define foo rpl_foo # endif _GL_FUNCDECL_RPL (foo, ...); _GL_CXXALIAS_RPL (foo, ...); # else _GL_CXXALIAS_SYS (foo, ...); # endif _GL_CXXALIASWARN (foo); #elif defined GNULIB_POSIXCHECK ... #endif * For providing a replacement for a function that exists on some platforms but is broken/insufficient and needs to be replaced on some of them and is additionally either missing or undeclared on some other platforms: #if @GNULIB_FOO@ # if @REPLACE_FOO@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef foo # define foo rpl_foo # endif _GL_FUNCDECL_RPL (foo, ...); _GL_CXXALIAS_RPL (foo, ...); # else # if !@HAVE_FOO@ or if !@HAVE_DECL_FOO@ _GL_FUNCDECL_SYS (foo, ...); # endif _GL_CXXALIAS_SYS (foo, ...); # endif _GL_CXXALIASWARN (foo); #elif defined GNULIB_POSIXCHECK ... #endif */ /* _GL_EXTERN_C declaration; performs the declaration with C linkage. */ #if defined __cplusplus # define _GL_EXTERN_C extern "C" #else # define _GL_EXTERN_C extern #endif /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes); declares a replacement function, named rpl_func, with the given prototype, consisting of return type, parameters, and attributes. Example: _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...) _GL_ARG_NONNULL ((1))); */ #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \ _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes) #define _GL_FUNCDECL_RPL_1(rpl_func,rettype,parameters_and_attributes) \ _GL_EXTERN_C rettype rpl_func parameters_and_attributes /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes); declares the system function, named func, with the given prototype, consisting of return type, parameters, and attributes. Example: _GL_FUNCDECL_SYS (open, int, (const char *filename, int flags, ...) _GL_ARG_NONNULL ((1))); */ #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \ _GL_EXTERN_C rettype func parameters_and_attributes /* _GL_CXXALIAS_RPL (func, rettype, parameters); declares a C++ alias called GNULIB_NAMESPACE::func that redirects to rpl_func, if GNULIB_NAMESPACE is defined. Example: _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...)); */ #define _GL_CXXALIAS_RPL(func,rettype,parameters) \ _GL_CXXALIAS_RPL_1 (func, rpl_##func, rettype, parameters) #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ rettype (*const func) parameters = ::rpl_func; \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_RPL_1(func,rpl_func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_RPL_CAST_1 (func, rpl_func, rettype, parameters); is like _GL_CXXALIAS_RPL_1 (func, rpl_func, rettype, parameters); except that the C function rpl_func may have a slightly different declaration. A cast is used to silence the "invalid conversion" error that would otherwise occur. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ rettype (*const func) parameters = \ reinterpret_cast(::rpl_func); \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_RPL_CAST_1(func,rpl_func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_SYS (func, rettype, parameters); declares a C++ alias called GNULIB_NAMESPACE::func that redirects to the system provided function func, if GNULIB_NAMESPACE is defined. Example: _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...)); */ #if defined __cplusplus && defined GNULIB_NAMESPACE /* If we were to write rettype (*const func) parameters = ::func; like above in _GL_CXXALIAS_RPL_1, the compiler could optimize calls better (remove an indirection through a 'static' pointer variable), but then the _GL_CXXALIASWARN macro below would cause a warning not only for uses of ::func but also for uses of GNULIB_NAMESPACE::func. */ # define _GL_CXXALIAS_SYS(func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ static rettype (*func) parameters = ::func; \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_SYS(func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_SYS_CAST (func, rettype, parameters); is like _GL_CXXALIAS_SYS (func, rettype, parameters); except that the C function func may have a slightly different declaration. A cast is used to silence the "invalid conversion" error that would otherwise occur. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \ namespace GNULIB_NAMESPACE \ { \ static rettype (*func) parameters = \ reinterpret_cast(::func); \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_SYS_CAST(func,rettype,parameters) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIAS_SYS_CAST2 (func, rettype, parameters, rettype2, parameters2); is like _GL_CXXALIAS_SYS (func, rettype, parameters); except that the C function is picked among a set of overloaded functions, namely the one with rettype2 and parameters2. Two consecutive casts are used to silence the "cannot find a match" and "invalid conversion" errors that would otherwise occur. */ #if defined __cplusplus && defined GNULIB_NAMESPACE /* The outer cast must be a reinterpret_cast. The inner cast: When the function is defined as a set of overloaded functions, it works as a static_cast<>, choosing the designated variant. When the function is defined as a single variant, it works as a reinterpret_cast<>. The parenthesized cast syntax works both ways. */ # define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \ namespace GNULIB_NAMESPACE \ { \ static rettype (*func) parameters = \ reinterpret_cast( \ (rettype2(*)parameters2)(::func)); \ } \ _GL_EXTERN_C int _gl_cxxalias_dummy #else # define _GL_CXXALIAS_SYS_CAST2(func,rettype,parameters,rettype2,parameters2) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIASWARN (func); causes a warning to be emitted when ::func is used but not when GNULIB_NAMESPACE::func is used. func must be defined without overloaded variants. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIASWARN(func) \ _GL_CXXALIASWARN_1 (func, GNULIB_NAMESPACE) # define _GL_CXXALIASWARN_1(func,namespace) \ _GL_CXXALIASWARN_2 (func, namespace) /* To work around GCC bug , we enable the warning only when not optimizing. */ # if !__OPTIMIZE__ # define _GL_CXXALIASWARN_2(func,namespace) \ _GL_WARN_ON_USE (func, \ "The symbol ::" #func " refers to the system function. " \ "Use " #namespace "::" #func " instead.") # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING # define _GL_CXXALIASWARN_2(func,namespace) \ extern __typeof__ (func) func # else # define _GL_CXXALIASWARN_2(func,namespace) \ _GL_EXTERN_C int _gl_cxxalias_dummy # endif #else # define _GL_CXXALIASWARN(func) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif /* _GL_CXXALIASWARN1 (func, rettype, parameters_and_attributes); causes a warning to be emitted when the given overloaded variant of ::func is used but not when GNULIB_NAMESPACE::func is used. */ #if defined __cplusplus && defined GNULIB_NAMESPACE # define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \ _GL_CXXALIASWARN1_1 (func, rettype, parameters_and_attributes, \ GNULIB_NAMESPACE) # define _GL_CXXALIASWARN1_1(func,rettype,parameters_and_attributes,namespace) \ _GL_CXXALIASWARN1_2 (func, rettype, parameters_and_attributes, namespace) /* To work around GCC bug , we enable the warning only when not optimizing. */ # if !__OPTIMIZE__ # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ _GL_WARN_ON_USE_CXX (func, rettype, parameters_and_attributes, \ "The symbol ::" #func " refers to the system function. " \ "Use " #namespace "::" #func " instead.") # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ extern __typeof__ (func) func # else # define _GL_CXXALIASWARN1_2(func,rettype,parameters_and_attributes,namespace) \ _GL_EXTERN_C int _gl_cxxalias_dummy # endif #else # define _GL_CXXALIASWARN1(func,rettype,parameters_and_attributes) \ _GL_EXTERN_C int _gl_cxxalias_dummy #endif #endif /* _GL_CXXDEFS_H */ ttfautohint-0.97/gnulib/snippet/arg-nonnull.h0000644000175000001440000000230012237364242016306 00000000000000/* A C macro for declaring that specific arguments must not be NULL. Copyright (C) 2009-2013 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 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 . */ /* _GL_ARG_NONNULL((n,...,m)) tells the compiler and static analyzer tools that the values passed as arguments n, ..., m must be non-NULL pointers. n = 1 stands for the first argument, n = 2 for the second argument etc. */ #ifndef _GL_ARG_NONNULL # if (__GNUC__ == 3 && __GNUC_MINOR__ >= 3) || __GNUC__ > 3 # define _GL_ARG_NONNULL(params) __attribute__ ((__nonnull__ params)) # else # define _GL_ARG_NONNULL(params) # endif #endif ttfautohint-0.97/gnulib/snippet/warn-on-use.h0000644000175000001440000001200712237364242016232 00000000000000/* A C macro for emitting warnings if a function is used. Copyright (C) 2010-2013 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 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 . */ /* _GL_WARN_ON_USE (function, "literal string") issues a declaration for FUNCTION which will then trigger a compiler warning containing the text of "literal string" anywhere that function is called, if supported by the compiler. If the compiler does not support this feature, the macro expands to an unused extern declaration. This macro is useful for marking a function as a potential portability trap, with the intent that "literal string" include instructions on the replacement function that should be used instead. However, one of the reasons that a function is a portability trap is if it has the wrong signature. Declaring FUNCTION with a different signature in C is a compilation error, so this macro must use the same type as any existing declaration so that programs that avoid the problematic FUNCTION do not fail to compile merely because they included a header that poisoned the function. But this implies that _GL_WARN_ON_USE is only safe to use if FUNCTION is known to already have a declaration. Use of this macro implies that there must not be any other macro hiding the declaration of FUNCTION; but undefining FUNCTION first is part of the poisoning process anyway (although for symbols that are provided only via a macro, the result is a compilation error rather than a warning containing "literal string"). Also note that in C++, it is only safe to use if FUNCTION has no overloads. For an example, it is possible to poison 'getline' by: - adding a call to gl_WARN_ON_USE_PREPARE([[#include ]], [getline]) in configure.ac, which potentially defines HAVE_RAW_DECL_GETLINE - adding this code to a header that wraps the system : #undef getline #if HAVE_RAW_DECL_GETLINE _GL_WARN_ON_USE (getline, "getline is required by POSIX 2008, but" "not universally present; use the gnulib module getline"); #endif It is not possible to directly poison global variables. But it is possible to write a wrapper accessor function, and poison that (less common usage, like &environ, will cause a compilation error rather than issue the nice warning, but the end result of informing the developer about their portability problem is still achieved): #if HAVE_RAW_DECL_ENVIRON static char ***rpl_environ (void) { return &environ; } _GL_WARN_ON_USE (rpl_environ, "environ is not always properly declared"); # undef environ # define environ (*rpl_environ ()) #endif */ #ifndef _GL_WARN_ON_USE # if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) /* A compiler attribute is available in gcc versions 4.3.0 and later. */ # define _GL_WARN_ON_USE(function, message) \ extern __typeof__ (function) function __attribute__ ((__warning__ (message))) # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING /* Verify the existence of the function. */ # define _GL_WARN_ON_USE(function, message) \ extern __typeof__ (function) function # else /* Unsupported. */ # define _GL_WARN_ON_USE(function, message) \ _GL_WARN_EXTERN_C int _gl_warn_on_use # endif #endif /* _GL_WARN_ON_USE_CXX (function, rettype, parameters_and_attributes, "string") is like _GL_WARN_ON_USE (function, "string"), except that the function is declared with the given prototype, consisting of return type, parameters, and attributes. This variant is useful for overloaded functions in C++. _GL_WARN_ON_USE does not work in this case. */ #ifndef _GL_WARN_ON_USE_CXX # if 4 < __GNUC__ || (__GNUC__ == 4 && 3 <= __GNUC_MINOR__) # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ extern rettype function parameters_and_attributes \ __attribute__ ((__warning__ (msg))) # elif __GNUC__ >= 3 && GNULIB_STRICT_CHECKING /* Verify the existence of the function. */ # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ extern rettype function parameters_and_attributes # else /* Unsupported. */ # define _GL_WARN_ON_USE_CXX(function,rettype,parameters_and_attributes,msg) \ _GL_WARN_EXTERN_C int _gl_warn_on_use # endif #endif /* _GL_WARN_EXTERN_C declaration; performs the declaration with C linkage. */ #ifndef _GL_WARN_EXTERN_C # if defined __cplusplus # define _GL_WARN_EXTERN_C extern "C" # else # define _GL_WARN_EXTERN_C extern # endif #endif ttfautohint-0.97/gnulib/config.guess0000755000175000001440000013036112177765604014562 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright 1992-2013 Free Software Foundation, Inc. timestamp='2013-06-10' # 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. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD # # Please send patches with a ChangeLog entry to config-patches@gnu.org. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -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-2013 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 trap 'exit 1' 1 2 15 # 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. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { 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) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; 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 ; set_cc_for_build= ;' # 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) >/dev/null 2>&1 ; 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/*) # If the system lacks a compiler, then just pick glibc. # We could probably try harder. LIBC=gnu eval $set_cc_for_build cat <<-EOF > $dummy.c #include #if defined(__UCLIBC__) LIBC=uclibc #elif defined(__dietlibc__) LIBC=dietlibc #else LIBC=gnu #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` ;; 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". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-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. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $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 # 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/[-_].*/\./'` ;; 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}" 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 ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} 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 ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; 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.*:*) eval $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 [ "$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) eval $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 [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${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 [ -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 eval $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 [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` 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:BSD:*) 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 [ -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 [ "${HP_ARCH}" = "" ]; then eval $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 [ ${HP_ARCH} = "hppa2.0w" ] then eval $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:*:*) eval $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 [ -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 ;; *:FreeBSD:*:*) UNAME_PROCESSOR=`/usr/bin/uname -p` case ${UNAME_PROCESSOR} in amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW64*:*) echo ${UNAME_MACHINE}-pc-mingw64 exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:MSYS*:*) echo ${UNAME_MACHINE}-pc-msys exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 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 ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-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 '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-${LIBC} exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-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` 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:*:*) eval $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 ;; 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 ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-${LIBC}"; exit; } ;; or1k:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} exit ;; or32: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 ;; 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:*:*) echo ${UNAME_MACHINE}-unknown-linux-${LIBC} 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.*:* | i*86:SYSTEM_V: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 configury 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 [ -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 ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown eval $set_cc_for_build if test "$UNAME_PROCESSOR" = unknown ; then UNAME_PROCESSOR=powerpc fi if [ "$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 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 ;; *: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. 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 ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; x86_64:VMkernel:*:*) echo ${UNAME_MACHINE}-unknown-esx exit ;; esac eval $set_cc_for_build cat >$dummy.c < # include #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 (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #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 printf ("vax-dec-ultrix\n"); exit (0); # 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; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp 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` /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 exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: ttfautohint-0.97/gnulib/install-sh0000755000175000001440000003325511732267016014240 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-11-20.07; # 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. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # 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_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' 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 no_target_directory= 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 *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done 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 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; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi 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 eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob 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=$dstdir/_inst.$$_ rmtmp=$dstdir/_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` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob 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: "UTC" # time-stamp-end: "; # UTC" # End: ttfautohint-0.97/gnulib/missing0000755000175000001440000001533112237364312013624 00000000000000#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2012-06-26.16; # UTC # Copyright (C) 1996-2013 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=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://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 'automa4te' 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 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: ttfautohint-0.97/gnulib/config.sub0000755000175000001440000010541212237363404014211 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright 1992-2013 Free Software Foundation, Inc. timestamp='2013-10-01' # 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 with a ChangeLog entry to config-patches@gnu.org. # # 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: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # 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 $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -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-2013 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" 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 # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-android* | linux-dietlibc | linux-newlib* | \ linux-musl* | linux-uclibc* | uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | \ knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; android-linux) os=-linux-android basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -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*) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*178) os=-lynxos178 ;; -lynx*5) os=-lynxos5 ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | aarch64 | aarch64_be \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arceb \ | arm | arm[bl]e | arme[lb] | armv[2-8] | armv[3-8][lb] | armv7[arm] \ | avr | avr32 \ | be32 | be64 \ | bfin \ | c4x | c8051 | clipper \ | d10v | d30v | dlx | dsp16xx \ | epiphany \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | hexagon \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | k1om \ | le32 | le64 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | microblazeel | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipsr5900 | mipsr5900el \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nds32 | nds32le | nds32be \ | nios | nios2 | nios2eb | nios2el \ | ns16k | ns32k \ | open8 \ | or1k | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle \ | pyramid \ | rl78 | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu \ | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \ | ubicom32 \ | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \ | we32k \ | x86 | xc16x | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; c54x) basic_machine=tic54x-unknown ;; c55x) basic_machine=tic55x-unknown ;; c6x) basic_machine=tic6x-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | nvptx | picochip) basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; strongarm | thumb | xscale) basic_machine=arm-unknown ;; xgate) basic_machine=$basic_machine-unknown os=-none ;; xscaleeb) basic_machine=armeb-unknown ;; xscaleel) basic_machine=armel-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | aarch64-* | aarch64_be-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* | arceb-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | be32-* | be64-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* \ | c8051-* | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | hexagon-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | k1om-* \ | le32-* | le64-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* \ | microblaze-* | microblazeel-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipsr5900-* | mipsr5900el-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nds32-* | nds32le-* | nds32be-* \ | nios-* | nios2-* | nios2eb-* | nios2el-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | open8-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \ | pyramid-* \ | rl78-* | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \ | tahoe-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile*-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \ | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c54x-*) basic_machine=tic54x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c55x-*) basic_machine=tic55x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c6x-*) basic_machine=tic6x-`echo $basic_machine | sed 's/^[^-]*-//'` ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16 | cr16-*) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze*) basic_machine=microblaze-xilinx ;; mingw64) basic_machine=x86_64-pc os=-mingw64 ;; mingw32) basic_machine=i686-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; msys) basic_machine=i686-pc os=-msys ;; mvs) basic_machine=i370-ibm os=-mvs ;; nacl) basic_machine=le32-unknown os=-nacl ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; neo-tandem) basic_machine=neo-tandem ;; nse-tandem) basic_machine=nse-tandem ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc | ppcbe) basic_machine=powerpc-unknown ;; ppc-* | ppcbe-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos | rdos64) basic_machine=x86_64-pc os=-rdos ;; rdos32) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; strongarm-* | thumb-*) basic_machine=arm-`echo $basic_machine | sed 's/^[^-]*-//'` ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tile*) basic_machine=$basic_machine-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; xscale-* | xscalee[bl]-*) basic_machine=`echo $basic_machine | sed 's/^xscale/arm/'` ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # 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) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* | -plan9* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -bitrig* | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -mingw64* | -linux-gnu* | -linux-android* \ | -linux-newlib* | -linux-musl* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; c8051-*) os=-elf ;; hexagon-*) os=-elf ;; tic54x-*) os=-coff ;; tic55x-*) os=-coff ;; tic6x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or1k-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $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 ;; -mvs* | -opened*) vendor=ibm ;; -os400*) 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 basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: ttfautohint-0.97/gnulib/ltmain.sh0000644000175000001440000105152212237364235014054 00000000000000 # libtool (GNU libtool) 2.4.2 # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, # 2007, 2008, 2009, 2010, 2011 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 GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --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 # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --no-quiet, --no-silent # print informational messages (default) # --no-warn don't display warning messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print more informational messages than default # --no-verbose don't print the extra informational messages # --version print version information # -h, --help, --help-all print short, long, or detailed 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) # $progname: (GNU libtool) 2.4.2 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . # GNU libtool home page: . # General help using GNU software: . PROGRAM=libtool PACKAGE=libtool VERSION=2.4.2 TIMESTAMP="" package_revision=1.3337 # 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 # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # NLS nuisances: We save the old values to restore during execute mode. lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL $lt_unset CDPATH # 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" : ${CP="cp -f"} test "${ECHO+set}" = set || ECHO=${as_echo-'printf %s\n'} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: 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. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { func_dirname_result=`$ECHO "${1}" | $SED "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_dirname may be replaced by extended shell implementation # func_basename file func_basename () { func_basename_result=`$ECHO "${1}" | $SED "$basename"` } # func_basename may be replaced by extended shell implementation # 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" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "${1}" | $SED -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "${1}" | $SED -e "$basename"` } # func_dirname_and_basename may be replaced by extended shell implementation # func_stripname 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). # func_strip_suffix prefix name func_stripname () { 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 may be replaced by extended shell implementation # These SED scripts presuppose an absolute path with a trailing slash. pathcar='s,^/\([^/]*\).*$,\1,' pathcdr='s,^/[^/]*,,' removedotparts=':dotsl s@/\./@/@g t dotsl s,/\.$,/,' collapseslashes='s@/\{1,\}@/@g' finalslash='s,/*$,/,' # 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. # value returned in "$func_normal_abspath_result" func_normal_abspath () { # 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 "$removedotparts" -e "$collapseslashes" -e "$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 "$pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$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_normal_abspath_result=$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_relative_path SRCDIR DSTDIR # generates a relative path from SRCDIR to DSTDIR, with a trailing # slash if non-empty, suitable for immediately appending a filename # without needing to append a separator. # value returned in "$func_relative_path_result" func_relative_path () { 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 "x$func_relative_path_tlibdir" = x ; 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 "x$func_stripname_result" != x ; then func_relative_path_result=${func_relative_path_result}/${func_stripname_result} fi # Normalisation. If bindir is libdir, return empty string, # else relative path ending with a slash; either way, target # file name can be directly appended. if test ! -z "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result/" func_relative_path_result=$func_stripname_result fi } # The name of this program: func_dirname_and_basename "$progpath" progname=$func_basename_result # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. 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 # which contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to 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 '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname: ${opt_mode+$opt_mode: }$*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && 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_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname: ${opt_mode+$opt_mode: }"${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname: ${opt_mode+$opt_mode: }warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "$my_directory_path" | $SED -e "$dirname"` done my_dir_list=`$ECHO "$my_dir_list" | $SED 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_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 "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "$my_tmpdir" } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "$1" | $SED "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # 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 () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "$1" | $SED \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_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. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent 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 () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent 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 () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi 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 () { case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED 's/^\([0-9]\)/_\1/; s/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_version # Echo version message to standard output and exit. func_version () { $opt_debug $SED -n '/(C)/!b go :more /\./!{ N s/\n# / / b more } :go /^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $opt_debug $SED -n '/^# Usage:/,/^# *.*--help/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" echo $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help [NOEXIT] # Echo long help message to standard output and exit, # unless 'noexit' is passed as argument. func_help () { $opt_debug $SED -n '/^# Usage:/,/# Report bugs to/ { :print s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(${AUTOMAKE-automake} --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(${AUTOCONF-autoconf} --version) 2>/dev/null |$SED 1q`"'/ p d } /^# .* home page:/b print /^# General help using/b print ' < "$progpath" ret=$? if test -z "$1"; then exit $ret fi } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $opt_debug func_error "missing argument for $1." exit_cmd=exit } # 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. func_split_short_opt () { my_sed_short_opt='1s/^\(..\).*$/\1/;q' my_sed_short_rest='1s/^..\(.*\)$/\1/;q' func_split_short_opt_name=`$ECHO "$1" | $SED "$my_sed_short_opt"` func_split_short_opt_arg=`$ECHO "$1" | $SED "$my_sed_short_rest"` } # func_split_short_opt may be replaced by extended shell implementation # func_split_long_opt longopt # Set func_split_long_opt_name and func_split_long_opt_arg shell # variables after splitting LONGOPT at the `=' sign. func_split_long_opt () { my_sed_long_opt='1s/^\(--[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^--[^=]*=//' func_split_long_opt_name=`$ECHO "$1" | $SED "$my_sed_long_opt"` func_split_long_opt_arg=`$ECHO "$1" | $SED "$my_sed_long_arg"` } # func_split_long_opt may be replaced by extended shell implementation exit_cmd=: magic="%%%MAGIC variable%%%" magic_exe="%%%MAGIC EXE variable%%%" # Global variables. nonopt= preserve_args= lo2o="s/\\.lo\$/.${objext}/" o2lo="s/\\.${objext}\$/.lo/" 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= # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "${1}=\$${1}\${2}" } # func_append may be replaced by extended shell implementation # func_append_quoted var value # Quote VALUE and append to the end of shell variable VAR, separated # by a space. func_append_quoted () { func_quote_for_eval "${2}" eval "${1}=\$${1}\\ \$func_quote_for_eval_result" } # func_append_quoted may be replaced by extended shell implementation # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "${@}"` } # func_arith may be replaced by extended shell implementation # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "${1}" : ".*" 2>/dev/null || echo $max_cmd_len` } # func_len may be replaced by extended shell implementation # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"` } # func_lo2o may be replaced by extended shell implementation # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "${1}" | $SED 's/\.[^.]*$/.lo/'` } # func_xform may be replaced by extended shell implementation # func_fatal_configuration arg... # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_error ${1+"$@"} func_error "See the $PACKAGE documentation for more information." func_fatal_error "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 "$build_libtool_libs" = yes; then echo "enable shared libraries" else echo "disable shared libraries" fi if test "$build_old_libs" = yes; 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 } # 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 # Option defaults: opt_debug=: opt_dry_run=false opt_config=false opt_preserve_dup_deps=false opt_features=false opt_finish=false opt_help=false opt_help_all=false opt_silent=: opt_warning=: opt_verbose=: opt_silent=false opt_verbose=false # Parse options once, thoroughly. This comes as soon as possible in the # script to make things like `--version' happen as quickly as we can. { # this just eases exit handling while test $# -gt 0; do opt="$1" shift case $opt in --debug|-x) opt_debug='set -x' func_echo "enabling shell trace mode" $opt_debug ;; --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) opt_config=: func_config ;; --dlopen|-dlopen) optarg="$1" opt_dlopen="${opt_dlopen+$opt_dlopen }$optarg" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) opt_features=: func_features ;; --finish) opt_finish=: set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help_all=: opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_mode="$optarg" case $optarg in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_silent=false func_append preserve_args " $opt" ;; --no-warning|--no-warn) opt_warning=false func_append preserve_args " $opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $opt" ;; --silent|--quiet) opt_silent=: func_append preserve_args " $opt" opt_verbose=false ;; --verbose|-v) opt_verbose=: func_append preserve_args " $opt" opt_silent=false ;; --tag) test $# = 0 && func_missing_arg $opt && break optarg="$1" opt_tag="$optarg" func_append preserve_args " $opt $optarg" func_enable_tag "$optarg" shift ;; -\?|-h) func_usage ;; --help) func_help ;; --version) func_version ;; # Separate optargs to long options: --*=*) func_split_long_opt "$opt" set dummy "$func_split_long_opt_name" "$func_split_long_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-n*|-v*) func_split_short_opt "$opt" set dummy "$func_split_short_opt_name" "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) break ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) set dummy "$opt" ${1+"$@"}; shift; break ;; esac done # Validate options: # save first non-option argument if test "$#" -gt 0; then nonopt="$opt" shift fi # preserve --debug test "$opt_debug" = : || func_append preserve_args " --debug" case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # 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 if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test "$opt_mode" != execute; 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." } # Bail if the options were screwed $exit_cmd $EXIT_FAILURE } ## ----------- ## ## Main. ## ## ----------- ## # 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 \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # 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 "$lalib_p" = yes } # 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 () { func_lalib_p "$1" } # 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 () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" 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 () { $opt_debug 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 () { $opt_debug 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 "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; 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 "$lt_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 () { $opt_debug # 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 () { $opt_debug 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 () { $opt_debug # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$lt_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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug $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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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 () { $opt_debug 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_mode_compile arg... func_mode_compile () { $opt_debug # 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 "$build_libtool_libs" != yes && \ func_fatal_configuration "can not 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 "$build_old_libs" = yes; 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 "$pic_mode" = no && test "$deplibs_check_method" != pass_all; 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 "$compiler_c_o" = no; 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 "$need_locks" = yes; 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 "$need_locks" = warn; 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 "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; 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 "$need_locks" = warn && 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 "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; 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 "$need_locks" = warn && 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 "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$opt_mode" = compile && 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 -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 () { $opt_debug # 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 test "X$opt_dry_run" = Xfalse; then 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" else # 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 fi } test "$opt_mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug 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_silent && 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 "$opt_mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # 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=no 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=yes ;; -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$prev" = x-m && 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=yes if test "$isdir" = yes; 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 ;; 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 "$build_old_libs" = yes; 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=yes 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'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; 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_silent || { 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 "$opt_mode" = install && 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 () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; 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$TIMESTAMP) $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 con'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 /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; 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 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[]; LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," 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" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; 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"' # 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_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 () { $opt_debug 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 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 } }'` 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 () { $opt_debug 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 () { $opt_debug 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 which possess that section. Heuristic: eliminate # all those which 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_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 () { $opt_debug 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 () { $opt_debug 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_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 () { $opt_debug 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 () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" if test "$lock_old_archive_extraction" = yes; 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 "$lock_old_archive_extraction" = yes; 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 () { $opt_debug 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` darwin_base_archive=`basename "$darwin_archive"` 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 "$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 in which 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$TIMESTAMP) $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/ which is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options which 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$TIMESTAMP) $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 "$fast_install" = yes; 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 "$shlibpath_overrides_runpath" = yes && 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 /* 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 platforms) ... */ #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 # ifndef _INTPTR_T_DEFINED # define _INTPTR_T_DEFINED # define intptr_t int # endif #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 ((void *) 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]; int 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 = 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 (strcmp (str, pat) == 0) *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 int 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) { int orig_value_len = strlen (orig_value); int 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 #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\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 () { $opt_debug case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_mode_link arg... func_mode_link () { $opt_debug 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 # which 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 which 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= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no 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 "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && 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) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; 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 ;; 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 "$pic_object" = none && test "$non_pic_object" = none; 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 "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; 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 "$prev" = dlprefiles; 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 "$non_pic_object" != none; 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 "$pic_object" = none ; 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 ;; 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 "$prev" = rpath; 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$arg" = "X-export-symbols"; 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$arg" = "X-lc" || test "X$arg" = "X-lm"; 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$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && 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$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" 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 ;; -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 # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization -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*|-flto*|-fwhopr*|-fuse-linker-plugin) 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 ;; # 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 "$pic_object" = none && test "$non_pic_object" = none; 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 "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; 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 "$prev" = dlprefiles; 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 "$non_pic_object" != none; 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 "$pic_object" = none ; 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 "$prev" = dlfiles; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test "$prev" = dlprefiles; 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 "$export_dynamic" = yes && 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\" 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 "$linkmode" = lib; 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=no 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 "$linkmode,$pass" = "lib,link"; 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 "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS% $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; 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 "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; 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 "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # 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 "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; 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=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; 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 "$pass" = conv && 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 "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; 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 "$pass" = link; 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 "$pass" = conv; 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=no 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=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then 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." else echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; 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=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # 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 "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test "$pass" = conv; 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 "$linkmode" != prog && test "$linkmode" != lib; 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 "$prefer_static_libs" = yes || test "$prefer_static_libs,$installed" = "built,no"; }; 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 "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; 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 "X$installed" = Xyes; 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 "X$hardcode_automatic" = Xyes && 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 "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; 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 "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; 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 "$linkmode" = prog && test "$pass" != link; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes 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 test "$linkalldeplibs" = yes; 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 "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || 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 test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && 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 "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test "$installed" = no; 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 "$shouldnotlink" = yes && test "$pass" = link; then echo if test "$linkmode" = prog; 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 "$linkmode" = lib && test "$hardcode_into_libs" = yes; 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*) 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 "$linkmode" = prog || test "$opt_mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; 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 can not # 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 "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; 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 "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; 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 "$linkmode" = prog; 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 "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$opt_mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; 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 "$linkmode" = prog; 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 "$linkmode" = prog; 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 "$hardcode_direct" != unsupported; 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 "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; 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 can not 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 "$module" = yes; 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 "$build_old_libs" = no; 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 "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; 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 "$link_static" = no && 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 "$link_all_deplibs" != no; 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 "$pass" = link; then if test "$linkmode" = "prog"; 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 "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # 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= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_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 # 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 "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; 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 "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; 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 "$deplibs_check_method" != pass_all; 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 "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; 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 # which has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|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" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; 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 "$loop" -ne 0; 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 "$loop" -ne 0; 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" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. 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 "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" func_append libobjs " $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$opt_mode" != relink; 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 "X$precious_files_regex" != "X"; 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 "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; 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 "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; 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 "$build_libtool_libs" = yes; 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 "$build_libtool_need_lc" = "yes"; 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 "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; 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 "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; 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 "X$deplibs_check_method" = "Xnone"; 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 "$droppeddeps" = yes; then if test "$module" = yes; 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 "$build_old_libs" = no; 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 "$allow_undefined" = no; 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 "$build_old_libs" = no; 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 "$build_libtool_libs" = yes; then # Remove ${wl} instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$opt_mode" != relink && 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 "$opt_mode" != relink && 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 if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # 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 fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || 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 "$try_normal_branch" = yes \ && { 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 "X$skipped_export" != "X:"; 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 "X$skipped_export" != "X:" && 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 "$compiler_needs_object" = yes && 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 "$thread_safe" = yes && 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 "$opt_mode" = relink; 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 "$module" = yes && 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 "X$skipped_export" != "X:" && 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 "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; 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 "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; 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 "X$objlist" = X || 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 "$k" -eq 1 ; 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 if ${skipped_export-false}; then 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 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_silent || { 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 "$opt_mode" = relink; 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 if ${skipped_export-false}; then 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 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 "$module" = yes && 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="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { 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 "$opt_mode" = relink; 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 "$opt_mode" = relink; 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 "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; 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= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` 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 "$build_libtool_libs" != yes && 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" ### testsuite: skip nested quoting test 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 if test "$build_libtool_libs" != yes; then 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 fi if test -n "$pic_flag" || test "$pic_mode" != default; 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" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ 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 "$tagname" = CXX ; 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 "$build_old_libs" = yes; 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@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=no ;; *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # 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 fi 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 "$no_install" = yes; 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 if test "$hardcode_action" = relink; then # 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" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # 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 if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then func_append oldobjs " $symfileobj" fi fi addlibs="$old_convenience" fi 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 "$build_libtool_libs" = yes; 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 "X$oldobjs" = "X" ; 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 "$build_old_libs" = yes && 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 "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; 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 "x$bindir" != x ; 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$TIMESTAMP) $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 can not 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 "$installed" = no && test "$need_relink" = yes; 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 } { test "$opt_mode" = link || test "$opt_mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= 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=yes ;; -*) 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 "X$dir" = X.; then odir="$objdir" else odir="$dir/$objdir" fi func_basename "$file" name="$func_basename_result" test "$opt_mode" = uninstall && odir="$dir" # Remember odir for removal later, being careful to avoid duplicates if test "$opt_mode" = clean; 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 test "$rmforce" = yes; 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" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || 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 "$pic_object" != none; 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 "$non_pic_object" != none; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test "$opt_mode" = clean ; 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 "$fast_install" = yes && 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 } { test "$opt_mode" = uninstall || test "$opt_mode" = clean; } && func_mode_uninstall ${1+"$@"} 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 # in which 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: # vi:sw=2 ttfautohint-0.97/gnulib/src/0000755000175000001440000000000012237367736013106 500000000000000ttfautohint-0.97/gnulib/src/Makefile.in0000644000175000001440000017244112237364313015070 00000000000000# Makefile.in generated by automake 1.14 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2013 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) 2002-2013 Free Software Foundation, Inc. # # 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 file 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 file. If not, see . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # Reproduce by: gnulib-tool --import --dir=. --local-dir=gl --lib=libgnu --source-base=gnulib/src --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=gnulib --no-conditional-dependencies --libtool --macro-prefix=gl fcntl-h getopt-gnu git-version-gen isatty memmem-simple strerror_r-posix VPATH = @srcdir@ am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)' 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@ subdir = gnulib/src DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \ $(top_srcdir)/gnulib/depcomp $(noinst_HEADERS) ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/autotroll.m4 \ $(top_srcdir)/m4/ltlize_lang.m4 \ $(top_srcdir)/gnulib/m4/00gnulib.m4 \ $(top_srcdir)/gnulib/m4/errno_h.m4 \ $(top_srcdir)/gnulib/m4/extensions.m4 \ $(top_srcdir)/gnulib/m4/extern-inline.m4 \ $(top_srcdir)/gnulib/m4/fcntl-o.m4 \ $(top_srcdir)/gnulib/m4/fcntl_h.m4 \ $(top_srcdir)/gnulib/m4/getopt.m4 \ $(top_srcdir)/gnulib/m4/gnulib-common.m4 \ $(top_srcdir)/gnulib/m4/gnulib-comp.m4 \ $(top_srcdir)/gnulib/m4/include_next.m4 \ $(top_srcdir)/gnulib/m4/isatty.m4 \ $(top_srcdir)/gnulib/m4/lib-ld.m4 \ $(top_srcdir)/gnulib/m4/lib-link.m4 \ $(top_srcdir)/gnulib/m4/lib-prefix.m4 \ $(top_srcdir)/gnulib/m4/libtool.m4 \ $(top_srcdir)/gnulib/m4/lock.m4 \ $(top_srcdir)/gnulib/m4/longlong.m4 \ $(top_srcdir)/gnulib/m4/ltoptions.m4 \ $(top_srcdir)/gnulib/m4/ltsugar.m4 \ $(top_srcdir)/gnulib/m4/ltversion.m4 \ $(top_srcdir)/gnulib/m4/lt~obsolete.m4 \ $(top_srcdir)/gnulib/m4/memchr.m4 \ $(top_srcdir)/gnulib/m4/memmem.m4 \ $(top_srcdir)/gnulib/m4/mmap-anon.m4 \ $(top_srcdir)/gnulib/m4/msvc-inval.m4 \ $(top_srcdir)/gnulib/m4/msvc-nothrow.m4 \ $(top_srcdir)/gnulib/m4/multiarch.m4 \ $(top_srcdir)/gnulib/m4/nocrash.m4 \ $(top_srcdir)/gnulib/m4/off_t.m4 \ $(top_srcdir)/gnulib/m4/onceonly.m4 \ $(top_srcdir)/gnulib/m4/ssize_t.m4 \ $(top_srcdir)/gnulib/m4/stddef_h.m4 \ $(top_srcdir)/gnulib/m4/stdint.m4 \ $(top_srcdir)/gnulib/m4/strerror.m4 \ $(top_srcdir)/gnulib/m4/strerror_r.m4 \ $(top_srcdir)/gnulib/m4/string_h.m4 \ $(top_srcdir)/gnulib/m4/sys_socket_h.m4 \ $(top_srcdir)/gnulib/m4/sys_types_h.m4 \ $(top_srcdir)/gnulib/m4/threadlib.m4 \ $(top_srcdir)/gnulib/m4/unistd_h.m4 \ $(top_srcdir)/gnulib/m4/warn-on-use.m4 \ $(top_srcdir)/gnulib/m4/wchar_t.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = LIBRARIES = $(noinst_LIBRARIES) LTLIBRARIES = $(noinst_LTLIBRARIES) am__DEPENDENCIES_1 = am__dirstamp = $(am__leading_dot)dirstamp am_libgnu_la_OBJECTS = glthread/lock.lo glthread/threadlib.lo \ unistd.lo libgnu_la_OBJECTS = $(am_libgnu_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 = libgnu_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libgnu_la_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@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/gnulib/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libgnu_la_SOURCES) $(EXTRA_libgnu_la_SOURCES) DIST_SOURCES = $(libgnu_la_SOURCES) $(EXTRA_libgnu_la_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 HEADERS = $(noinst_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 \ distdir am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # 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 DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) 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" ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ APPLE_UNIVERSAL_BUILD = @APPLE_UNIVERSAL_BUILD@ AR = @AR@ ARFLAGS = @ARFLAGS@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ BITSIZEOF_PTRDIFF_T = @BITSIZEOF_PTRDIFF_T@ BITSIZEOF_SIG_ATOMIC_T = @BITSIZEOF_SIG_ATOMIC_T@ BITSIZEOF_SIZE_T = @BITSIZEOF_SIZE_T@ BITSIZEOF_WCHAR_T = @BITSIZEOF_WCHAR_T@ BITSIZEOF_WINT_T = @BITSIZEOF_WINT_T@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ 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@ EMULTIHOP_HIDDEN = @EMULTIHOP_HIDDEN@ EMULTIHOP_VALUE = @EMULTIHOP_VALUE@ ENOLINK_HIDDEN = @ENOLINK_HIDDEN@ ENOLINK_VALUE = @ENOLINK_VALUE@ EOVERFLOW_HIDDEN = @EOVERFLOW_HIDDEN@ EOVERFLOW_VALUE = @EOVERFLOW_VALUE@ ERRNO_H = @ERRNO_H@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FREETYPE_CPPFLAGS = @FREETYPE_CPPFLAGS@ FREETYPE_LIBS = @FREETYPE_LIBS@ GETOPT_H = @GETOPT_H@ GNULIB_CHDIR = @GNULIB_CHDIR@ GNULIB_CHOWN = @GNULIB_CHOWN@ GNULIB_CLOSE = @GNULIB_CLOSE@ GNULIB_DUP = @GNULIB_DUP@ GNULIB_DUP2 = @GNULIB_DUP2@ GNULIB_DUP3 = @GNULIB_DUP3@ GNULIB_ENVIRON = @GNULIB_ENVIRON@ GNULIB_EUIDACCESS = @GNULIB_EUIDACCESS@ GNULIB_FACCESSAT = @GNULIB_FACCESSAT@ GNULIB_FCHDIR = @GNULIB_FCHDIR@ GNULIB_FCHOWNAT = @GNULIB_FCHOWNAT@ GNULIB_FCNTL = @GNULIB_FCNTL@ GNULIB_FDATASYNC = @GNULIB_FDATASYNC@ GNULIB_FFSL = @GNULIB_FFSL@ GNULIB_FFSLL = @GNULIB_FFSLL@ GNULIB_FSYNC = @GNULIB_FSYNC@ GNULIB_FTRUNCATE = @GNULIB_FTRUNCATE@ GNULIB_GETCWD = @GNULIB_GETCWD@ GNULIB_GETDOMAINNAME = @GNULIB_GETDOMAINNAME@ GNULIB_GETDTABLESIZE = @GNULIB_GETDTABLESIZE@ GNULIB_GETGROUPS = @GNULIB_GETGROUPS@ GNULIB_GETHOSTNAME = @GNULIB_GETHOSTNAME@ GNULIB_GETLOGIN = @GNULIB_GETLOGIN@ GNULIB_GETLOGIN_R = @GNULIB_GETLOGIN_R@ GNULIB_GETPAGESIZE = @GNULIB_GETPAGESIZE@ GNULIB_GETUSERSHELL = @GNULIB_GETUSERSHELL@ GNULIB_GL_UNISTD_H_GETOPT = @GNULIB_GL_UNISTD_H_GETOPT@ GNULIB_GROUP_MEMBER = @GNULIB_GROUP_MEMBER@ GNULIB_ISATTY = @GNULIB_ISATTY@ GNULIB_LCHOWN = @GNULIB_LCHOWN@ GNULIB_LINK = @GNULIB_LINK@ GNULIB_LINKAT = @GNULIB_LINKAT@ GNULIB_LSEEK = @GNULIB_LSEEK@ GNULIB_MBSCASECMP = @GNULIB_MBSCASECMP@ GNULIB_MBSCASESTR = @GNULIB_MBSCASESTR@ GNULIB_MBSCHR = @GNULIB_MBSCHR@ GNULIB_MBSCSPN = @GNULIB_MBSCSPN@ GNULIB_MBSLEN = @GNULIB_MBSLEN@ GNULIB_MBSNCASECMP = @GNULIB_MBSNCASECMP@ GNULIB_MBSNLEN = @GNULIB_MBSNLEN@ GNULIB_MBSPBRK = @GNULIB_MBSPBRK@ GNULIB_MBSPCASECMP = @GNULIB_MBSPCASECMP@ GNULIB_MBSRCHR = @GNULIB_MBSRCHR@ GNULIB_MBSSEP = @GNULIB_MBSSEP@ GNULIB_MBSSPN = @GNULIB_MBSSPN@ GNULIB_MBSSTR = @GNULIB_MBSSTR@ GNULIB_MBSTOK_R = @GNULIB_MBSTOK_R@ GNULIB_MEMCHR = @GNULIB_MEMCHR@ GNULIB_MEMMEM = @GNULIB_MEMMEM@ GNULIB_MEMPCPY = @GNULIB_MEMPCPY@ GNULIB_MEMRCHR = @GNULIB_MEMRCHR@ GNULIB_NONBLOCKING = @GNULIB_NONBLOCKING@ GNULIB_OPEN = @GNULIB_OPEN@ GNULIB_OPENAT = @GNULIB_OPENAT@ GNULIB_PIPE = @GNULIB_PIPE@ GNULIB_PIPE2 = @GNULIB_PIPE2@ GNULIB_PREAD = @GNULIB_PREAD@ GNULIB_PWRITE = @GNULIB_PWRITE@ GNULIB_RAWMEMCHR = @GNULIB_RAWMEMCHR@ GNULIB_READ = @GNULIB_READ@ GNULIB_READLINK = @GNULIB_READLINK@ GNULIB_READLINKAT = @GNULIB_READLINKAT@ GNULIB_RMDIR = @GNULIB_RMDIR@ GNULIB_SETHOSTNAME = @GNULIB_SETHOSTNAME@ GNULIB_SLEEP = @GNULIB_SLEEP@ GNULIB_STPCPY = @GNULIB_STPCPY@ GNULIB_STPNCPY = @GNULIB_STPNCPY@ GNULIB_STRCASESTR = @GNULIB_STRCASESTR@ GNULIB_STRCHRNUL = @GNULIB_STRCHRNUL@ GNULIB_STRDUP = @GNULIB_STRDUP@ GNULIB_STRERROR = @GNULIB_STRERROR@ GNULIB_STRERROR_R = @GNULIB_STRERROR_R@ GNULIB_STRNCAT = @GNULIB_STRNCAT@ GNULIB_STRNDUP = @GNULIB_STRNDUP@ GNULIB_STRNLEN = @GNULIB_STRNLEN@ GNULIB_STRPBRK = @GNULIB_STRPBRK@ GNULIB_STRSEP = @GNULIB_STRSEP@ GNULIB_STRSIGNAL = @GNULIB_STRSIGNAL@ GNULIB_STRSTR = @GNULIB_STRSTR@ GNULIB_STRTOK_R = @GNULIB_STRTOK_R@ GNULIB_STRVERSCMP = @GNULIB_STRVERSCMP@ GNULIB_SYMLINK = @GNULIB_SYMLINK@ GNULIB_SYMLINKAT = @GNULIB_SYMLINKAT@ GNULIB_TTYNAME_R = @GNULIB_TTYNAME_R@ GNULIB_UNISTD_H_NONBLOCKING = @GNULIB_UNISTD_H_NONBLOCKING@ GNULIB_UNISTD_H_SIGPIPE = @GNULIB_UNISTD_H_SIGPIPE@ GNULIB_UNLINK = @GNULIB_UNLINK@ GNULIB_UNLINKAT = @GNULIB_UNLINKAT@ GNULIB_USLEEP = @GNULIB_USLEEP@ GNULIB_WRITE = @GNULIB_WRITE@ GREP = @GREP@ HAVE_CHOWN = @HAVE_CHOWN@ HAVE_DECL_ENVIRON = @HAVE_DECL_ENVIRON@ HAVE_DECL_FCHDIR = @HAVE_DECL_FCHDIR@ HAVE_DECL_FDATASYNC = @HAVE_DECL_FDATASYNC@ HAVE_DECL_GETDOMAINNAME = @HAVE_DECL_GETDOMAINNAME@ HAVE_DECL_GETLOGIN_R = @HAVE_DECL_GETLOGIN_R@ HAVE_DECL_GETPAGESIZE = @HAVE_DECL_GETPAGESIZE@ HAVE_DECL_GETUSERSHELL = @HAVE_DECL_GETUSERSHELL@ HAVE_DECL_MEMMEM = @HAVE_DECL_MEMMEM@ HAVE_DECL_MEMRCHR = @HAVE_DECL_MEMRCHR@ HAVE_DECL_SETHOSTNAME = @HAVE_DECL_SETHOSTNAME@ HAVE_DECL_STRDUP = @HAVE_DECL_STRDUP@ HAVE_DECL_STRERROR_R = @HAVE_DECL_STRERROR_R@ HAVE_DECL_STRNDUP = @HAVE_DECL_STRNDUP@ HAVE_DECL_STRNLEN = @HAVE_DECL_STRNLEN@ HAVE_DECL_STRSIGNAL = @HAVE_DECL_STRSIGNAL@ HAVE_DECL_STRTOK_R = @HAVE_DECL_STRTOK_R@ HAVE_DECL_TTYNAME_R = @HAVE_DECL_TTYNAME_R@ HAVE_DUP2 = @HAVE_DUP2@ HAVE_DUP3 = @HAVE_DUP3@ HAVE_EUIDACCESS = @HAVE_EUIDACCESS@ HAVE_FACCESSAT = @HAVE_FACCESSAT@ HAVE_FCHDIR = @HAVE_FCHDIR@ HAVE_FCHOWNAT = @HAVE_FCHOWNAT@ HAVE_FCNTL = @HAVE_FCNTL@ HAVE_FDATASYNC = @HAVE_FDATASYNC@ HAVE_FFSL = @HAVE_FFSL@ HAVE_FFSLL = @HAVE_FFSLL@ HAVE_FSYNC = @HAVE_FSYNC@ HAVE_FTRUNCATE = @HAVE_FTRUNCATE@ HAVE_GETDTABLESIZE = @HAVE_GETDTABLESIZE@ HAVE_GETGROUPS = @HAVE_GETGROUPS@ HAVE_GETHOSTNAME = @HAVE_GETHOSTNAME@ HAVE_GETLOGIN = @HAVE_GETLOGIN@ HAVE_GETOPT_H = @HAVE_GETOPT_H@ HAVE_GETPAGESIZE = @HAVE_GETPAGESIZE@ HAVE_GROUP_MEMBER = @HAVE_GROUP_MEMBER@ HAVE_INTTYPES_H = @HAVE_INTTYPES_H@ HAVE_LCHOWN = @HAVE_LCHOWN@ HAVE_LINK = @HAVE_LINK@ HAVE_LINKAT = @HAVE_LINKAT@ HAVE_LONG_LONG_INT = @HAVE_LONG_LONG_INT@ HAVE_MBSLEN = @HAVE_MBSLEN@ HAVE_MEMCHR = @HAVE_MEMCHR@ HAVE_MEMPCPY = @HAVE_MEMPCPY@ HAVE_MSVC_INVALID_PARAMETER_HANDLER = @HAVE_MSVC_INVALID_PARAMETER_HANDLER@ HAVE_OPENAT = @HAVE_OPENAT@ HAVE_OS_H = @HAVE_OS_H@ HAVE_PIPE = @HAVE_PIPE@ HAVE_PIPE2 = @HAVE_PIPE2@ HAVE_PREAD = @HAVE_PREAD@ HAVE_PWRITE = @HAVE_PWRITE@ HAVE_RAWMEMCHR = @HAVE_RAWMEMCHR@ HAVE_READLINK = @HAVE_READLINK@ HAVE_READLINKAT = @HAVE_READLINKAT@ HAVE_SETHOSTNAME = @HAVE_SETHOSTNAME@ HAVE_SIGNED_SIG_ATOMIC_T = @HAVE_SIGNED_SIG_ATOMIC_T@ HAVE_SIGNED_WCHAR_T = @HAVE_SIGNED_WCHAR_T@ HAVE_SIGNED_WINT_T = @HAVE_SIGNED_WINT_T@ HAVE_SLEEP = @HAVE_SLEEP@ HAVE_STDINT_H = @HAVE_STDINT_H@ HAVE_STPCPY = @HAVE_STPCPY@ HAVE_STPNCPY = @HAVE_STPNCPY@ HAVE_STRCASESTR = @HAVE_STRCASESTR@ HAVE_STRCHRNUL = @HAVE_STRCHRNUL@ HAVE_STRPBRK = @HAVE_STRPBRK@ HAVE_STRSEP = @HAVE_STRSEP@ HAVE_STRVERSCMP = @HAVE_STRVERSCMP@ HAVE_SYMLINK = @HAVE_SYMLINK@ HAVE_SYMLINKAT = @HAVE_SYMLINKAT@ HAVE_SYS_BITYPES_H = @HAVE_SYS_BITYPES_H@ HAVE_SYS_INTTYPES_H = @HAVE_SYS_INTTYPES_H@ HAVE_SYS_PARAM_H = @HAVE_SYS_PARAM_H@ HAVE_SYS_TYPES_H = @HAVE_SYS_TYPES_H@ HAVE_UNISTD_H = @HAVE_UNISTD_H@ HAVE_UNLINKAT = @HAVE_UNLINKAT@ HAVE_UNSIGNED_LONG_LONG_INT = @HAVE_UNSIGNED_LONG_LONG_INT@ HAVE_USLEEP = @HAVE_USLEEP@ HAVE_WCHAR_H = @HAVE_WCHAR_H@ HAVE_WCHAR_T = @HAVE_WCHAR_T@ HAVE_WINSOCK2_H = @HAVE_WINSOCK2_H@ HELP2MAN = @HELP2MAN@ IMPORT = @IMPORT@ INCLUDE_NEXT = @INCLUDE_NEXT@ INCLUDE_NEXT_AS_FIRST_DIRECTIVE = @INCLUDE_NEXT_AS_FIRST_DIRECTIVE@ INKSCAPE = @INKSCAPE@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBINTL = @LIBINTL@ LIBMULTITHREAD = @LIBMULTITHREAD@ LIBOBJS = @LIBOBJS@ LIBPTH = @LIBPTH@ LIBPTH_PREFIX = @LIBPTH_PREFIX@ LIBS = @LIBS@ LIBTHREAD = @LIBTHREAD@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBINTL = @LTLIBINTL@ LTLIBMULTITHREAD = @LTLIBMULTITHREAD@ LTLIBOBJS = @LTLIBOBJS@ LTLIBPTH = @LTLIBPTH@ LTLIBTHREAD = @LTLIBTHREAD@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ MOC = @MOC@ NEXT_AS_FIRST_DIRECTIVE_ERRNO_H = @NEXT_AS_FIRST_DIRECTIVE_ERRNO_H@ NEXT_AS_FIRST_DIRECTIVE_FCNTL_H = @NEXT_AS_FIRST_DIRECTIVE_FCNTL_H@ NEXT_AS_FIRST_DIRECTIVE_GETOPT_H = @NEXT_AS_FIRST_DIRECTIVE_GETOPT_H@ NEXT_AS_FIRST_DIRECTIVE_STDDEF_H = @NEXT_AS_FIRST_DIRECTIVE_STDDEF_H@ NEXT_AS_FIRST_DIRECTIVE_STDINT_H = @NEXT_AS_FIRST_DIRECTIVE_STDINT_H@ NEXT_AS_FIRST_DIRECTIVE_STRING_H = @NEXT_AS_FIRST_DIRECTIVE_STRING_H@ NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H = @NEXT_AS_FIRST_DIRECTIVE_SYS_TYPES_H@ NEXT_AS_FIRST_DIRECTIVE_UNISTD_H = @NEXT_AS_FIRST_DIRECTIVE_UNISTD_H@ NEXT_ERRNO_H = @NEXT_ERRNO_H@ NEXT_FCNTL_H = @NEXT_FCNTL_H@ NEXT_GETOPT_H = @NEXT_GETOPT_H@ NEXT_STDDEF_H = @NEXT_STDDEF_H@ NEXT_STDINT_H = @NEXT_STDINT_H@ NEXT_STRING_H = @NEXT_STRING_H@ NEXT_SYS_TYPES_H = @NEXT_SYS_TYPES_H@ NEXT_UNISTD_H = @NEXT_UNISTD_H@ 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@ PANDOC = @PANDOC@ PATH_SEPARATOR = @PATH_SEPARATOR@ PRAGMA_COLUMNS = @PRAGMA_COLUMNS@ PRAGMA_SYSTEM_HEADER = @PRAGMA_SYSTEM_HEADER@ PTRDIFF_T_SUFFIX = @PTRDIFF_T_SUFFIX@ QMAKE = @QMAKE@ QT_CFLAGS = @QT_CFLAGS@ QT_CPPFLAGS = @QT_CPPFLAGS@ QT_CXXFLAGS = @QT_CXXFLAGS@ QT_DEFINES = @QT_DEFINES@ QT_INCPATH = @QT_INCPATH@ QT_LDFLAGS = @QT_LDFLAGS@ QT_LFLAGS = @QT_LFLAGS@ QT_LIBS = @QT_LIBS@ QT_PATH = @QT_PATH@ QT_VERSION = @QT_VERSION@ QT_VERSION_MAJOR = @QT_VERSION_MAJOR@ RANLIB = @RANLIB@ RCC = @RCC@ REPLACE_CHOWN = @REPLACE_CHOWN@ REPLACE_CLOSE = @REPLACE_CLOSE@ REPLACE_DUP = @REPLACE_DUP@ REPLACE_DUP2 = @REPLACE_DUP2@ REPLACE_FCHOWNAT = @REPLACE_FCHOWNAT@ REPLACE_FCNTL = @REPLACE_FCNTL@ REPLACE_FTRUNCATE = @REPLACE_FTRUNCATE@ REPLACE_GETCWD = @REPLACE_GETCWD@ REPLACE_GETDOMAINNAME = @REPLACE_GETDOMAINNAME@ REPLACE_GETDTABLESIZE = @REPLACE_GETDTABLESIZE@ REPLACE_GETGROUPS = @REPLACE_GETGROUPS@ REPLACE_GETLOGIN_R = @REPLACE_GETLOGIN_R@ REPLACE_GETPAGESIZE = @REPLACE_GETPAGESIZE@ REPLACE_ISATTY = @REPLACE_ISATTY@ REPLACE_LCHOWN = @REPLACE_LCHOWN@ REPLACE_LINK = @REPLACE_LINK@ REPLACE_LINKAT = @REPLACE_LINKAT@ REPLACE_LSEEK = @REPLACE_LSEEK@ REPLACE_MEMCHR = @REPLACE_MEMCHR@ REPLACE_MEMMEM = @REPLACE_MEMMEM@ REPLACE_NULL = @REPLACE_NULL@ REPLACE_OPEN = @REPLACE_OPEN@ REPLACE_OPENAT = @REPLACE_OPENAT@ REPLACE_PREAD = @REPLACE_PREAD@ REPLACE_PWRITE = @REPLACE_PWRITE@ REPLACE_READ = @REPLACE_READ@ REPLACE_READLINK = @REPLACE_READLINK@ REPLACE_RMDIR = @REPLACE_RMDIR@ REPLACE_SLEEP = @REPLACE_SLEEP@ REPLACE_STPNCPY = @REPLACE_STPNCPY@ REPLACE_STRCASESTR = @REPLACE_STRCASESTR@ REPLACE_STRCHRNUL = @REPLACE_STRCHRNUL@ REPLACE_STRDUP = @REPLACE_STRDUP@ REPLACE_STRERROR = @REPLACE_STRERROR@ REPLACE_STRERROR_R = @REPLACE_STRERROR_R@ REPLACE_STRNCAT = @REPLACE_STRNCAT@ REPLACE_STRNDUP = @REPLACE_STRNDUP@ REPLACE_STRNLEN = @REPLACE_STRNLEN@ REPLACE_STRSIGNAL = @REPLACE_STRSIGNAL@ REPLACE_STRSTR = @REPLACE_STRSTR@ REPLACE_STRTOK_R = @REPLACE_STRTOK_R@ REPLACE_SYMLINK = @REPLACE_SYMLINK@ REPLACE_TTYNAME_R = @REPLACE_TTYNAME_R@ REPLACE_UNLINK = @REPLACE_UNLINK@ REPLACE_UNLINKAT = @REPLACE_UNLINKAT@ REPLACE_USLEEP = @REPLACE_USLEEP@ REPLACE_WRITE = @REPLACE_WRITE@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ SIG_ATOMIC_T_SUFFIX = @SIG_ATOMIC_T_SUFFIX@ SIZE_T_SUFFIX = @SIZE_T_SUFFIX@ STDDEF_H = @STDDEF_H@ STDINT_H = @STDINT_H@ STRIP = @STRIP@ UIC = @UIC@ UNDEFINE_STRTOK_R = @UNDEFINE_STRTOK_R@ UNISTD_H_HAVE_WINSOCK2_H = @UNISTD_H_HAVE_WINSOCK2_H@ UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS = @UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS@ VERSION = @VERSION@ WCHAR_T_SUFFIX = @WCHAR_T_SUFFIX@ WINDOWS_64_BIT_OFF_T = @WINDOWS_64_BIT_OFF_T@ WINT_T_SUFFIX = @WINT_T_SUFFIX@ 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@ ft_config = @ft_config@ gl_LIBOBJS = @gl_LIBOBJS@ gl_LTLIBOBJS = @gl_LTLIBOBJS@ gltests_LIBOBJS = @gltests_LIBOBJS@ gltests_LTLIBOBJS = @gltests_LTLIBOBJS@ gltests_WITNESS = @gltests_WITNESS@ 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@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AUTOMAKE_OPTIONS = 1.9.6 gnits subdir-objects SUBDIRS = noinst_HEADERS = noinst_LIBRARIES = noinst_LTLIBRARIES = libgnu.la EXTRA_DIST = errno.in.h fcntl.in.h getopt.c getopt.in.h getopt1.c \ getopt_int.h $(top_srcdir)/gnulib/git-version-gen \ $(top_srcdir)/gnulib/config.rpath isatty.c memchr.c \ memchr.valgrind memmem.c str-two-way.h msvc-inval.c \ msvc-inval.h msvc-nothrow.c msvc-nothrow.h \ $(top_srcdir)/gnulib/snippet/arg-nonnull.h \ $(top_srcdir)/gnulib/snippet/c++defs.h \ $(top_srcdir)/gnulib/snippet/warn-on-use.h stddef.in.h \ stdint.in.h strerror-override.c strerror-override.h \ strerror_r.c string.in.h sys_types.in.h \ $(top_srcdir)/gnulib/config.rpath unistd.in.h # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. BUILT_SOURCES = $(ERRNO_H) fcntl.h $(GETOPT_H) arg-nonnull.h c++defs.h \ warn-on-use.h $(STDDEF_H) $(STDINT_H) string.h sys/types.h \ unistd.h SUFFIXES = MOSTLYCLEANFILES = core *.stackdump errno.h errno.h-t fcntl.h \ fcntl.h-t getopt.h getopt.h-t arg-nonnull.h arg-nonnull.h-t \ c++defs.h c++defs.h-t warn-on-use.h warn-on-use.h-t stddef.h \ stddef.h-t stdint.h stdint.h-t string.h string.h-t sys/types.h \ sys/types.h-t unistd.h unistd.h-t MOSTLYCLEANDIRS = CLEANFILES = DISTCLEANFILES = MAINTAINERCLEANFILES = AM_CPPFLAGS = AM_CFLAGS = libgnu_la_SOURCES = gettext.h glthread/lock.h glthread/lock.c \ glthread/threadlib.c unistd.c libgnu_la_LIBADD = $(gl_LTLIBOBJS) libgnu_la_DEPENDENCIES = $(gl_LTLIBOBJS) EXTRA_libgnu_la_SOURCES = getopt.c getopt1.c isatty.c memchr.c \ memmem.c msvc-inval.c msvc-nothrow.c strerror-override.c \ strerror_r.c libgnu_la_LDFLAGS = $(AM_LDFLAGS) -no-undefined $(LTLIBINTL) \ $(LTLIBTHREAD) ARG_NONNULL_H = arg-nonnull.h CXXDEFS_H = c++defs.h WARN_ON_USE_H = warn-on-use.h all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: .SUFFIXES: .c .lo .o .obj $(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) --gnits gnulib/src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnits gnulib/src/Makefile .PRECIOUS: 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__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ 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): clean-noinstLIBRARIES: -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) clean-noinstLTLIBRARIES: -test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES) @list='$(noinst_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}; \ } glthread/$(am__dirstamp): @$(MKDIR_P) glthread @: > glthread/$(am__dirstamp) glthread/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) glthread/$(DEPDIR) @: > glthread/$(DEPDIR)/$(am__dirstamp) glthread/lock.lo: glthread/$(am__dirstamp) \ glthread/$(DEPDIR)/$(am__dirstamp) glthread/threadlib.lo: glthread/$(am__dirstamp) \ glthread/$(DEPDIR)/$(am__dirstamp) libgnu.la: $(libgnu_la_OBJECTS) $(libgnu_la_DEPENDENCIES) $(EXTRA_libgnu_la_DEPENDENCIES) $(AM_V_CCLD)$(libgnu_la_LINK) $(libgnu_la_OBJECTS) $(libgnu_la_LIBADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f glthread/*.$(OBJEXT) -rm -f glthread/*.lo distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/getopt1.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/isatty.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/memchr.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/memmem.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/msvc-inval.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/msvc-nothrow.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strerror-override.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strerror_r.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/unistd.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@glthread/$(DEPDIR)/lock.Plo@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@glthread/$(DEPDIR)/threadlib.Plo@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\ @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs -rm -rf glthread/.libs glthread/_libs # 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" 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 distdir: $(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 @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 check-am: all-am check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-recursive all-am: Makefile $(LIBRARIES) $(LTLIBRARIES) $(HEADERS) installdirs: installdirs-recursive installdirs-am: install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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: -test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES) clean-generic: -test -z "$(CLEANFILES)" || rm -f $(CLEANFILES) 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) -rm -f glthread/$(DEPDIR)/$(am__dirstamp) -rm -f glthread/$(am__dirstamp) -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES) -test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES) clean: clean-recursive clean-am: clean-generic clean-libtool clean-noinstLIBRARIES \ clean-noinstLTLIBRARIES mostlyclean-am distclean: distclean-recursive -rm -rf ./$(DEPDIR) glthread/$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: 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 -rf ./$(DEPDIR) glthread/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool mostlyclean-local pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: .MAKE: $(am__recursive_targets) all check install install-am \ install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am check \ check-am clean clean-generic clean-libtool \ clean-noinstLIBRARIES clean-noinstLTLIBRARIES cscopelist-am \ ctags ctags-am distclean distclean-compile distclean-generic \ distclean-libtool distclean-tags 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 installdirs-am maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-compile \ mostlyclean-generic mostlyclean-libtool mostlyclean-local pdf \ pdf-am ps ps-am tags tags-am uninstall uninstall-am # We need the following in order to create when the system # doesn't have one that is POSIX compliant. @GL_GENERATE_ERRNO_H_TRUE@errno.h: errno.in.h $(top_builddir)/config.status @GL_GENERATE_ERRNO_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ @GL_GENERATE_ERRNO_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ @GL_GENERATE_ERRNO_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''NEXT_ERRNO_H''@|$(NEXT_ERRNO_H)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''EMULTIHOP_HIDDEN''@|$(EMULTIHOP_HIDDEN)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''EMULTIHOP_VALUE''@|$(EMULTIHOP_VALUE)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''ENOLINK_HIDDEN''@|$(ENOLINK_HIDDEN)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \ @GL_GENERATE_ERRNO_H_TRUE@ < $(srcdir)/errno.in.h; \ @GL_GENERATE_ERRNO_H_TRUE@ } > $@-t && \ @GL_GENERATE_ERRNO_H_TRUE@ mv $@-t $@ @GL_GENERATE_ERRNO_H_FALSE@errno.h: $(top_builddir)/config.status @GL_GENERATE_ERRNO_H_FALSE@ rm -f $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. fcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_FCNTL_H''@|$(NEXT_FCNTL_H)|g' \ -e 's/@''GNULIB_FCNTL''@/$(GNULIB_FCNTL)/g' \ -e 's/@''GNULIB_NONBLOCKING''@/$(GNULIB_NONBLOCKING)/g' \ -e 's/@''GNULIB_OPEN''@/$(GNULIB_OPEN)/g' \ -e 's/@''GNULIB_OPENAT''@/$(GNULIB_OPENAT)/g' \ -e 's|@''HAVE_FCNTL''@|$(HAVE_FCNTL)|g' \ -e 's|@''HAVE_OPENAT''@|$(HAVE_OPENAT)|g' \ -e 's|@''REPLACE_FCNTL''@|$(REPLACE_FCNTL)|g' \ -e 's|@''REPLACE_OPEN''@|$(REPLACE_OPEN)|g' \ -e 's|@''REPLACE_OPENAT''@|$(REPLACE_OPENAT)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ < $(srcdir)/fcntl.in.h; \ } > $@-t && \ mv $@-t $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_GETOPT_H''@|$(NEXT_GETOPT_H)|g' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ < $(srcdir)/getopt.in.h; \ } > $@-t && \ mv -f $@-t $@ # The arg-nonnull.h that gets inserted into generated .h files is the same as # build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut # off. arg-nonnull.h: $(top_srcdir)/gnulib/snippet/arg-nonnull.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/GL_ARG_NONNULL/,$$p' \ < $(top_srcdir)/gnulib/snippet/arg-nonnull.h \ > $@-t && \ mv $@-t $@ # The c++defs.h that gets inserted into generated .h files is the same as # build-aux/snippet/c++defs.h, except that it has the copyright header cut off. c++defs.h: $(top_srcdir)/gnulib/snippet/c++defs.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/_GL_CXXDEFS/,$$p' \ < $(top_srcdir)/gnulib/snippet/c++defs.h \ > $@-t && \ mv $@-t $@ # The warn-on-use.h that gets inserted into generated .h files is the same as # build-aux/snippet/warn-on-use.h, except that it has the copyright header cut # off. warn-on-use.h: $(top_srcdir)/gnulib/snippet/warn-on-use.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/^.ifndef/,$$p' \ < $(top_srcdir)/gnulib/snippet/warn-on-use.h \ > $@-t && \ mv $@-t $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. @GL_GENERATE_STDDEF_H_TRUE@stddef.h: stddef.in.h $(top_builddir)/config.status @GL_GENERATE_STDDEF_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ @GL_GENERATE_STDDEF_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ @GL_GENERATE_STDDEF_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \ @GL_GENERATE_STDDEF_H_TRUE@ < $(srcdir)/stddef.in.h; \ @GL_GENERATE_STDDEF_H_TRUE@ } > $@-t && \ @GL_GENERATE_STDDEF_H_TRUE@ mv $@-t $@ @GL_GENERATE_STDDEF_H_FALSE@stddef.h: $(top_builddir)/config.status @GL_GENERATE_STDDEF_H_FALSE@ rm -f $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. @GL_GENERATE_STDINT_H_TRUE@stdint.h: stdint.in.h $(top_builddir)/config.status @GL_GENERATE_STDINT_H_TRUE@ $(AM_V_GEN)rm -f $@-t $@ && \ @GL_GENERATE_STDINT_H_TRUE@ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ @GL_GENERATE_STDINT_H_TRUE@ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ @GL_GENERATE_STDINT_H_TRUE@ -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ @GL_GENERATE_STDINT_H_TRUE@ < $(srcdir)/stdint.in.h; \ @GL_GENERATE_STDINT_H_TRUE@ } > $@-t && \ @GL_GENERATE_STDINT_H_TRUE@ mv $@-t $@ @GL_GENERATE_STDINT_H_FALSE@stdint.h: $(top_builddir)/config.status @GL_GENERATE_STDINT_H_FALSE@ rm -f $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. string.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \ -e 's/@''GNULIB_FFSL''@/$(GNULIB_FFSL)/g' \ -e 's/@''GNULIB_FFSLL''@/$(GNULIB_FFSLL)/g' \ -e 's/@''GNULIB_MBSLEN''@/$(GNULIB_MBSLEN)/g' \ -e 's/@''GNULIB_MBSNLEN''@/$(GNULIB_MBSNLEN)/g' \ -e 's/@''GNULIB_MBSCHR''@/$(GNULIB_MBSCHR)/g' \ -e 's/@''GNULIB_MBSRCHR''@/$(GNULIB_MBSRCHR)/g' \ -e 's/@''GNULIB_MBSSTR''@/$(GNULIB_MBSSTR)/g' \ -e 's/@''GNULIB_MBSCASECMP''@/$(GNULIB_MBSCASECMP)/g' \ -e 's/@''GNULIB_MBSNCASECMP''@/$(GNULIB_MBSNCASECMP)/g' \ -e 's/@''GNULIB_MBSPCASECMP''@/$(GNULIB_MBSPCASECMP)/g' \ -e 's/@''GNULIB_MBSCASESTR''@/$(GNULIB_MBSCASESTR)/g' \ -e 's/@''GNULIB_MBSCSPN''@/$(GNULIB_MBSCSPN)/g' \ -e 's/@''GNULIB_MBSPBRK''@/$(GNULIB_MBSPBRK)/g' \ -e 's/@''GNULIB_MBSSPN''@/$(GNULIB_MBSSPN)/g' \ -e 's/@''GNULIB_MBSSEP''@/$(GNULIB_MBSSEP)/g' \ -e 's/@''GNULIB_MBSTOK_R''@/$(GNULIB_MBSTOK_R)/g' \ -e 's/@''GNULIB_MEMCHR''@/$(GNULIB_MEMCHR)/g' \ -e 's/@''GNULIB_MEMMEM''@/$(GNULIB_MEMMEM)/g' \ -e 's/@''GNULIB_MEMPCPY''@/$(GNULIB_MEMPCPY)/g' \ -e 's/@''GNULIB_MEMRCHR''@/$(GNULIB_MEMRCHR)/g' \ -e 's/@''GNULIB_RAWMEMCHR''@/$(GNULIB_RAWMEMCHR)/g' \ -e 's/@''GNULIB_STPCPY''@/$(GNULIB_STPCPY)/g' \ -e 's/@''GNULIB_STPNCPY''@/$(GNULIB_STPNCPY)/g' \ -e 's/@''GNULIB_STRCHRNUL''@/$(GNULIB_STRCHRNUL)/g' \ -e 's/@''GNULIB_STRDUP''@/$(GNULIB_STRDUP)/g' \ -e 's/@''GNULIB_STRNCAT''@/$(GNULIB_STRNCAT)/g' \ -e 's/@''GNULIB_STRNDUP''@/$(GNULIB_STRNDUP)/g' \ -e 's/@''GNULIB_STRNLEN''@/$(GNULIB_STRNLEN)/g' \ -e 's/@''GNULIB_STRPBRK''@/$(GNULIB_STRPBRK)/g' \ -e 's/@''GNULIB_STRSEP''@/$(GNULIB_STRSEP)/g' \ -e 's/@''GNULIB_STRSTR''@/$(GNULIB_STRSTR)/g' \ -e 's/@''GNULIB_STRCASESTR''@/$(GNULIB_STRCASESTR)/g' \ -e 's/@''GNULIB_STRTOK_R''@/$(GNULIB_STRTOK_R)/g' \ -e 's/@''GNULIB_STRERROR''@/$(GNULIB_STRERROR)/g' \ -e 's/@''GNULIB_STRERROR_R''@/$(GNULIB_STRERROR_R)/g' \ -e 's/@''GNULIB_STRSIGNAL''@/$(GNULIB_STRSIGNAL)/g' \ -e 's/@''GNULIB_STRVERSCMP''@/$(GNULIB_STRVERSCMP)/g' \ < $(srcdir)/string.in.h | \ sed -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \ -e 's|@''HAVE_FFSLL''@|$(HAVE_FFSLL)|g' \ -e 's|@''HAVE_MBSLEN''@|$(HAVE_MBSLEN)|g' \ -e 's|@''HAVE_MEMCHR''@|$(HAVE_MEMCHR)|g' \ -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \ -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \ -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \ -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \ -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \ -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \ -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \ -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \ -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \ -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \ -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \ -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \ -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \ -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \ -e 's|@''HAVE_DECL_STRERROR_R''@|$(HAVE_DECL_STRERROR_R)|g' \ -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \ -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \ -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \ -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \ -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \ -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \ -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \ -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \ -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \ -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \ -e 's|@''REPLACE_STRERROR_R''@|$(REPLACE_STRERROR_R)|g' \ -e 's|@''REPLACE_STRNCAT''@|$(REPLACE_STRNCAT)|g' \ -e 's|@''REPLACE_STRNDUP''@|$(REPLACE_STRNDUP)|g' \ -e 's|@''REPLACE_STRNLEN''@|$(REPLACE_STRNLEN)|g' \ -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \ -e 's|@''REPLACE_STRTOK_R''@|$(REPLACE_STRTOK_R)|g' \ -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ < $(srcdir)/string.in.h; \ } > $@-t && \ mv $@-t $@ # We need the following in order to create when the system # doesn't have one that works with the given compiler. sys/types.h: sys_types.in.h $(top_builddir)/config.status $(AM_V_at)$(MKDIR_P) sys $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ # We need the following in order to create an empty placeholder for # when the system doesn't have one. unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \ -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \ -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \ -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \ -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \ -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \ -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \ -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \ -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \ -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \ -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \ -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \ -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \ -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \ -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \ -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \ -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \ -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \ -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \ -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \ -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \ -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \ -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \ -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \ -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \ -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \ -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \ -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \ -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \ -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \ -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \ -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \ -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \ -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \ -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \ -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \ -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \ -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \ -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \ -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \ -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \ -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \ -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \ -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \ -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \ -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \ -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \ -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \ -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \ < $(srcdir)/unistd.in.h | \ sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \ -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \ -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \ -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \ -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \ -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \ -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \ -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \ -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \ -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \ -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \ -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \ -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \ -e 's|@''HAVE_GETLOGIN''@|$(HAVE_GETLOGIN)|g' \ -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \ -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \ -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \ -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \ -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \ -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \ -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \ -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \ -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \ -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \ -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \ -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \ -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \ -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \ -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \ -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \ -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \ -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \ -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \ -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \ -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \ -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \ -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \ -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \ -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \ -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \ -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \ -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \ | \ sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \ -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \ -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \ -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \ -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \ -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \ -e 's|@''REPLACE_GETDTABLESIZE''@|$(REPLACE_GETDTABLESIZE)|g' \ -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \ -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \ -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \ -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \ -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \ -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \ -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \ -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \ -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \ -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \ -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \ -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \ -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \ -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \ -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \ -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ } > $@-t && \ mv $@-t $@ mostlyclean-local: mostlyclean-generic @for dir in '' $(MOSTLYCLEANDIRS); do \ if test -n "$$dir" && test -d $$dir; then \ echo "rmdir $$dir"; rmdir $$dir; \ fi; \ done; \ : # 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: ttfautohint-0.97/gnulib/src/glthread/0000755000175000001440000000000012237367736014700 500000000000000ttfautohint-0.97/gnulib/src/glthread/lock.c0000644000175000001440000006417012237364242015711 00000000000000/* Locking in multithreaded situations. Copyright (C) 2005-2013 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 3, 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 . */ /* Written by Bruno Haible , 2005. Based on GCC's gthr-posix.h, gthr-posix95.h, gthr-solaris.h, gthr-win32.h. */ #include #include "glthread/lock.h" /* ========================================================================= */ #if USE_POSIX_THREADS /* -------------------------- gl_lock_t datatype -------------------------- */ /* ------------------------- gl_rwlock_t datatype ------------------------- */ # if HAVE_PTHREAD_RWLOCK # if !defined PTHREAD_RWLOCK_INITIALIZER int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_rwlock_init (&lock->rwlock, NULL); if (err != 0) return err; lock->initialized = 1; return 0; } int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock) { if (!lock->initialized) { int err; err = pthread_mutex_lock (&lock->guard); if (err != 0) return err; if (!lock->initialized) { err = glthread_rwlock_init_multithreaded (lock); if (err != 0) { pthread_mutex_unlock (&lock->guard); return err; } } err = pthread_mutex_unlock (&lock->guard); if (err != 0) return err; } return pthread_rwlock_rdlock (&lock->rwlock); } int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock) { if (!lock->initialized) { int err; err = pthread_mutex_lock (&lock->guard); if (err != 0) return err; if (!lock->initialized) { err = glthread_rwlock_init_multithreaded (lock); if (err != 0) { pthread_mutex_unlock (&lock->guard); return err; } } err = pthread_mutex_unlock (&lock->guard); if (err != 0) return err; } return pthread_rwlock_wrlock (&lock->rwlock); } int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock) { if (!lock->initialized) return EINVAL; return pthread_rwlock_unlock (&lock->rwlock); } int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock) { int err; if (!lock->initialized) return EINVAL; err = pthread_rwlock_destroy (&lock->rwlock); if (err != 0) return err; lock->initialized = 0; return 0; } # endif # else int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_init (&lock->lock, NULL); if (err != 0) return err; err = pthread_cond_init (&lock->waiting_readers, NULL); if (err != 0) return err; err = pthread_cond_init (&lock->waiting_writers, NULL); if (err != 0) return err; lock->waiting_writers_count = 0; lock->runcount = 0; return 0; } int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_lock (&lock->lock); if (err != 0) return err; /* Test whether only readers are currently running, and whether the runcount field will not overflow. */ /* POSIX says: "It is implementation-defined whether the calling thread acquires the lock when a writer does not hold the lock and there are writers blocked on the lock." Let's say, no: give the writers a higher priority. */ while (!(lock->runcount + 1 > 0 && lock->waiting_writers_count == 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_readers. */ err = pthread_cond_wait (&lock->waiting_readers, &lock->lock); if (err != 0) { pthread_mutex_unlock (&lock->lock); return err; } } lock->runcount++; return pthread_mutex_unlock (&lock->lock); } int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_lock (&lock->lock); if (err != 0) return err; /* Test whether no readers or writers are currently running. */ while (!(lock->runcount == 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_writers. */ lock->waiting_writers_count++; err = pthread_cond_wait (&lock->waiting_writers, &lock->lock); if (err != 0) { lock->waiting_writers_count--; pthread_mutex_unlock (&lock->lock); return err; } lock->waiting_writers_count--; } lock->runcount--; /* runcount becomes -1 */ return pthread_mutex_unlock (&lock->lock); } int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_lock (&lock->lock); if (err != 0) return err; if (lock->runcount < 0) { /* Drop a writer lock. */ if (!(lock->runcount == -1)) { pthread_mutex_unlock (&lock->lock); return EINVAL; } lock->runcount = 0; } else { /* Drop a reader lock. */ if (!(lock->runcount > 0)) { pthread_mutex_unlock (&lock->lock); return EINVAL; } lock->runcount--; } if (lock->runcount == 0) { /* POSIX recommends that "write locks shall take precedence over read locks", to avoid "writer starvation". */ if (lock->waiting_writers_count > 0) { /* Wake up one of the waiting writers. */ err = pthread_cond_signal (&lock->waiting_writers); if (err != 0) { pthread_mutex_unlock (&lock->lock); return err; } } else { /* Wake up all waiting readers. */ err = pthread_cond_broadcast (&lock->waiting_readers); if (err != 0) { pthread_mutex_unlock (&lock->lock); return err; } } } return pthread_mutex_unlock (&lock->lock); } int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock) { int err; err = pthread_mutex_destroy (&lock->lock); if (err != 0) return err; err = pthread_cond_destroy (&lock->waiting_readers); if (err != 0) return err; err = pthread_cond_destroy (&lock->waiting_writers); if (err != 0) return err; return 0; } # endif /* --------------------- gl_recursive_lock_t datatype --------------------- */ # if HAVE_PTHREAD_MUTEX_RECURSIVE # if defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER || defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { pthread_mutexattr_t attributes; int err; err = pthread_mutexattr_init (&attributes); if (err != 0) return err; err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutex_init (lock, &attributes); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutexattr_destroy (&attributes); if (err != 0) return err; return 0; } # else int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { pthread_mutexattr_t attributes; int err; err = pthread_mutexattr_init (&attributes); if (err != 0) return err; err = pthread_mutexattr_settype (&attributes, PTHREAD_MUTEX_RECURSIVE); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutex_init (&lock->recmutex, &attributes); if (err != 0) { pthread_mutexattr_destroy (&attributes); return err; } err = pthread_mutexattr_destroy (&attributes); if (err != 0) return err; lock->initialized = 1; return 0; } int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock) { if (!lock->initialized) { int err; err = pthread_mutex_lock (&lock->guard); if (err != 0) return err; if (!lock->initialized) { err = glthread_recursive_lock_init_multithreaded (lock); if (err != 0) { pthread_mutex_unlock (&lock->guard); return err; } } err = pthread_mutex_unlock (&lock->guard); if (err != 0) return err; } return pthread_mutex_lock (&lock->recmutex); } int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock) { if (!lock->initialized) return EINVAL; return pthread_mutex_unlock (&lock->recmutex); } int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock) { int err; if (!lock->initialized) return EINVAL; err = pthread_mutex_destroy (&lock->recmutex); if (err != 0) return err; lock->initialized = 0; return 0; } # endif # else int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { int err; err = pthread_mutex_init (&lock->mutex, NULL); if (err != 0) return err; lock->owner = (pthread_t) 0; lock->depth = 0; return 0; } int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock) { pthread_t self = pthread_self (); if (lock->owner != self) { int err; err = pthread_mutex_lock (&lock->mutex); if (err != 0) return err; lock->owner = self; } if (++(lock->depth) == 0) /* wraparound? */ { lock->depth--; return EAGAIN; } return 0; } int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != pthread_self ()) return EPERM; if (lock->depth == 0) return EINVAL; if (--(lock->depth) == 0) { lock->owner = (pthread_t) 0; return pthread_mutex_unlock (&lock->mutex); } else return 0; } int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != (pthread_t) 0) return EBUSY; return pthread_mutex_destroy (&lock->mutex); } # endif /* -------------------------- gl_once_t datatype -------------------------- */ static const pthread_once_t fresh_once = PTHREAD_ONCE_INIT; int glthread_once_singlethreaded (pthread_once_t *once_control) { /* We don't know whether pthread_once_t is an integer type, a floating-point type, a pointer type, or a structure type. */ char *firstbyte = (char *)once_control; if (*firstbyte == *(const char *)&fresh_once) { /* First time use of once_control. Invert the first byte. */ *firstbyte = ~ *(const char *)&fresh_once; return 1; } else return 0; } #endif /* ========================================================================= */ #if USE_PTH_THREADS /* Use the GNU Pth threads library. */ /* -------------------------- gl_lock_t datatype -------------------------- */ /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* -------------------------- gl_once_t datatype -------------------------- */ static void glthread_once_call (void *arg) { void (**gl_once_temp_addr) (void) = (void (**) (void)) arg; void (*initfunction) (void) = *gl_once_temp_addr; initfunction (); } int glthread_once_multithreaded (pth_once_t *once_control, void (*initfunction) (void)) { void (*temp) (void) = initfunction; return (!pth_once (once_control, glthread_once_call, &temp) ? errno : 0); } int glthread_once_singlethreaded (pth_once_t *once_control) { /* We know that pth_once_t is an integer type. */ if (*once_control == PTH_ONCE_INIT) { /* First time use of once_control. Invert the marker. */ *once_control = ~ PTH_ONCE_INIT; return 1; } else return 0; } #endif /* ========================================================================= */ #if USE_SOLARIS_THREADS /* Use the old Solaris threads library. */ /* -------------------------- gl_lock_t datatype -------------------------- */ /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* --------------------- gl_recursive_lock_t datatype --------------------- */ int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock) { int err; err = mutex_init (&lock->mutex, USYNC_THREAD, NULL); if (err != 0) return err; lock->owner = (thread_t) 0; lock->depth = 0; return 0; } int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock) { thread_t self = thr_self (); if (lock->owner != self) { int err; err = mutex_lock (&lock->mutex); if (err != 0) return err; lock->owner = self; } if (++(lock->depth) == 0) /* wraparound? */ { lock->depth--; return EAGAIN; } return 0; } int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != thr_self ()) return EPERM; if (lock->depth == 0) return EINVAL; if (--(lock->depth) == 0) { lock->owner = (thread_t) 0; return mutex_unlock (&lock->mutex); } else return 0; } int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock) { if (lock->owner != (thread_t) 0) return EBUSY; return mutex_destroy (&lock->mutex); } /* -------------------------- gl_once_t datatype -------------------------- */ int glthread_once_multithreaded (gl_once_t *once_control, void (*initfunction) (void)) { if (!once_control->inited) { int err; /* Use the mutex to guarantee that if another thread is already calling the initfunction, this thread waits until it's finished. */ err = mutex_lock (&once_control->mutex); if (err != 0) return err; if (!once_control->inited) { once_control->inited = 1; initfunction (); } return mutex_unlock (&once_control->mutex); } else return 0; } int glthread_once_singlethreaded (gl_once_t *once_control) { /* We know that gl_once_t contains an integer type. */ if (!once_control->inited) { /* First time use of once_control. Invert the marker. */ once_control->inited = ~ 0; return 1; } else return 0; } #endif /* ========================================================================= */ #if USE_WINDOWS_THREADS /* -------------------------- gl_lock_t datatype -------------------------- */ void glthread_lock_init_func (gl_lock_t *lock) { InitializeCriticalSection (&lock->lock); lock->guard.done = 1; } int glthread_lock_lock_func (gl_lock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_lock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } EnterCriticalSection (&lock->lock); return 0; } int glthread_lock_unlock_func (gl_lock_t *lock) { if (!lock->guard.done) return EINVAL; LeaveCriticalSection (&lock->lock); return 0; } int glthread_lock_destroy_func (gl_lock_t *lock) { if (!lock->guard.done) return EINVAL; DeleteCriticalSection (&lock->lock); lock->guard.done = 0; return 0; } /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* In this file, the waitqueues are implemented as circular arrays. */ #define gl_waitqueue_t gl_carray_waitqueue_t static void gl_waitqueue_init (gl_waitqueue_t *wq) { wq->array = NULL; wq->count = 0; wq->alloc = 0; wq->offset = 0; } /* Enqueues the current thread, represented by an event, in a wait queue. Returns INVALID_HANDLE_VALUE if an allocation failure occurs. */ static HANDLE gl_waitqueue_add (gl_waitqueue_t *wq) { HANDLE event; unsigned int index; if (wq->count == wq->alloc) { unsigned int new_alloc = 2 * wq->alloc + 1; HANDLE *new_array = (HANDLE *) realloc (wq->array, new_alloc * sizeof (HANDLE)); if (new_array == NULL) /* No more memory. */ return INVALID_HANDLE_VALUE; /* Now is a good opportunity to rotate the array so that its contents starts at offset 0. */ if (wq->offset > 0) { unsigned int old_count = wq->count; unsigned int old_alloc = wq->alloc; unsigned int old_offset = wq->offset; unsigned int i; if (old_offset + old_count > old_alloc) { unsigned int limit = old_offset + old_count - old_alloc; for (i = 0; i < limit; i++) new_array[old_alloc + i] = new_array[i]; } for (i = 0; i < old_count; i++) new_array[i] = new_array[old_offset + i]; wq->offset = 0; } wq->array = new_array; wq->alloc = new_alloc; } /* Whether the created event is a manual-reset one or an auto-reset one, does not matter, since we will wait on it only once. */ event = CreateEvent (NULL, TRUE, FALSE, NULL); if (event == INVALID_HANDLE_VALUE) /* No way to allocate an event. */ return INVALID_HANDLE_VALUE; index = wq->offset + wq->count; if (index >= wq->alloc) index -= wq->alloc; wq->array[index] = event; wq->count++; return event; } /* Notifies the first thread from a wait queue and dequeues it. */ static void gl_waitqueue_notify_first (gl_waitqueue_t *wq) { SetEvent (wq->array[wq->offset + 0]); wq->offset++; wq->count--; if (wq->count == 0 || wq->offset == wq->alloc) wq->offset = 0; } /* Notifies all threads from a wait queue and dequeues them all. */ static void gl_waitqueue_notify_all (gl_waitqueue_t *wq) { unsigned int i; for (i = 0; i < wq->count; i++) { unsigned int index = wq->offset + i; if (index >= wq->alloc) index -= wq->alloc; SetEvent (wq->array[index]); } wq->count = 0; wq->offset = 0; } void glthread_rwlock_init_func (gl_rwlock_t *lock) { InitializeCriticalSection (&lock->lock); gl_waitqueue_init (&lock->waiting_readers); gl_waitqueue_init (&lock->waiting_writers); lock->runcount = 0; lock->guard.done = 1; } int glthread_rwlock_rdlock_func (gl_rwlock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_rwlock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } EnterCriticalSection (&lock->lock); /* Test whether only readers are currently running, and whether the runcount field will not overflow. */ if (!(lock->runcount + 1 > 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_readers. */ HANDLE event = gl_waitqueue_add (&lock->waiting_readers); if (event != INVALID_HANDLE_VALUE) { DWORD result; LeaveCriticalSection (&lock->lock); /* Wait until another thread signals this event. */ result = WaitForSingleObject (event, INFINITE); if (result == WAIT_FAILED || result == WAIT_TIMEOUT) abort (); CloseHandle (event); /* The thread which signalled the event already did the bookkeeping: removed us from the waiting_readers, incremented lock->runcount. */ if (!(lock->runcount > 0)) abort (); return 0; } else { /* Allocation failure. Weird. */ do { LeaveCriticalSection (&lock->lock); Sleep (1); EnterCriticalSection (&lock->lock); } while (!(lock->runcount + 1 > 0)); } } lock->runcount++; LeaveCriticalSection (&lock->lock); return 0; } int glthread_rwlock_wrlock_func (gl_rwlock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_rwlock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } EnterCriticalSection (&lock->lock); /* Test whether no readers or writers are currently running. */ if (!(lock->runcount == 0)) { /* This thread has to wait for a while. Enqueue it among the waiting_writers. */ HANDLE event = gl_waitqueue_add (&lock->waiting_writers); if (event != INVALID_HANDLE_VALUE) { DWORD result; LeaveCriticalSection (&lock->lock); /* Wait until another thread signals this event. */ result = WaitForSingleObject (event, INFINITE); if (result == WAIT_FAILED || result == WAIT_TIMEOUT) abort (); CloseHandle (event); /* The thread which signalled the event already did the bookkeeping: removed us from the waiting_writers, set lock->runcount = -1. */ if (!(lock->runcount == -1)) abort (); return 0; } else { /* Allocation failure. Weird. */ do { LeaveCriticalSection (&lock->lock); Sleep (1); EnterCriticalSection (&lock->lock); } while (!(lock->runcount == 0)); } } lock->runcount--; /* runcount becomes -1 */ LeaveCriticalSection (&lock->lock); return 0; } int glthread_rwlock_unlock_func (gl_rwlock_t *lock) { if (!lock->guard.done) return EINVAL; EnterCriticalSection (&lock->lock); if (lock->runcount < 0) { /* Drop a writer lock. */ if (!(lock->runcount == -1)) abort (); lock->runcount = 0; } else { /* Drop a reader lock. */ if (!(lock->runcount > 0)) { LeaveCriticalSection (&lock->lock); return EPERM; } lock->runcount--; } if (lock->runcount == 0) { /* POSIX recommends that "write locks shall take precedence over read locks", to avoid "writer starvation". */ if (lock->waiting_writers.count > 0) { /* Wake up one of the waiting writers. */ lock->runcount--; gl_waitqueue_notify_first (&lock->waiting_writers); } else { /* Wake up all waiting readers. */ lock->runcount += lock->waiting_readers.count; gl_waitqueue_notify_all (&lock->waiting_readers); } } LeaveCriticalSection (&lock->lock); return 0; } int glthread_rwlock_destroy_func (gl_rwlock_t *lock) { if (!lock->guard.done) return EINVAL; if (lock->runcount != 0) return EBUSY; DeleteCriticalSection (&lock->lock); if (lock->waiting_readers.array != NULL) free (lock->waiting_readers.array); if (lock->waiting_writers.array != NULL) free (lock->waiting_writers.array); lock->guard.done = 0; return 0; } /* --------------------- gl_recursive_lock_t datatype --------------------- */ void glthread_recursive_lock_init_func (gl_recursive_lock_t *lock) { lock->owner = 0; lock->depth = 0; InitializeCriticalSection (&lock->lock); lock->guard.done = 1; } int glthread_recursive_lock_lock_func (gl_recursive_lock_t *lock) { if (!lock->guard.done) { if (InterlockedIncrement (&lock->guard.started) == 0) /* This thread is the first one to need this lock. Initialize it. */ glthread_recursive_lock_init (lock); else /* Yield the CPU while waiting for another thread to finish initializing this lock. */ while (!lock->guard.done) Sleep (0); } { DWORD self = GetCurrentThreadId (); if (lock->owner != self) { EnterCriticalSection (&lock->lock); lock->owner = self; } if (++(lock->depth) == 0) /* wraparound? */ { lock->depth--; return EAGAIN; } } return 0; } int glthread_recursive_lock_unlock_func (gl_recursive_lock_t *lock) { if (lock->owner != GetCurrentThreadId ()) return EPERM; if (lock->depth == 0) return EINVAL; if (--(lock->depth) == 0) { lock->owner = 0; LeaveCriticalSection (&lock->lock); } return 0; } int glthread_recursive_lock_destroy_func (gl_recursive_lock_t *lock) { if (lock->owner != 0) return EBUSY; DeleteCriticalSection (&lock->lock); lock->guard.done = 0; return 0; } /* -------------------------- gl_once_t datatype -------------------------- */ void glthread_once_func (gl_once_t *once_control, void (*initfunction) (void)) { if (once_control->inited <= 0) { if (InterlockedIncrement (&once_control->started) == 0) { /* This thread is the first one to come to this once_control. */ InitializeCriticalSection (&once_control->lock); EnterCriticalSection (&once_control->lock); once_control->inited = 0; initfunction (); once_control->inited = 1; LeaveCriticalSection (&once_control->lock); } else { /* Undo last operation. */ InterlockedDecrement (&once_control->started); /* Some other thread has already started the initialization. Yield the CPU while waiting for the other thread to finish initializing and taking the lock. */ while (once_control->inited < 0) Sleep (0); if (once_control->inited <= 0) { /* Take the lock. This blocks until the other thread has finished calling the initfunction. */ EnterCriticalSection (&once_control->lock); LeaveCriticalSection (&once_control->lock); if (!(once_control->inited > 0)) abort (); } } } } #endif /* ========================================================================= */ ttfautohint-0.97/gnulib/src/glthread/threadlib.c0000644000175000001440000000353612237364242016716 00000000000000/* Multithreading primitives. Copyright (C) 2005-2013 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 3, 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 . */ /* Written by Bruno Haible , 2005. */ #include /* ========================================================================= */ #if USE_POSIX_THREADS /* Use the POSIX threads library. */ # include # include # if PTHREAD_IN_USE_DETECTION_HARD /* The function to be executed by a dummy thread. */ static void * dummy_thread_func (void *arg) { return arg; } int glthread_in_use (void) { static int tested; static int result; /* 1: linked with -lpthread, 0: only with libc */ if (!tested) { pthread_t thread; if (pthread_create (&thread, NULL, dummy_thread_func, NULL) != 0) /* Thread creation failed. */ result = 0; else { /* Thread creation works. */ void *retval; if (pthread_join (thread, &retval) != 0) abort (); result = 1; } tested = 1; } return result; } # endif #endif /* ========================================================================= */ /* This declaration is solely to ensure that after preprocessing this file is never empty. */ typedef int dummy; ttfautohint-0.97/gnulib/src/glthread/lock.h0000644000175000001440000010665212237364242015720 00000000000000/* Locking in multithreaded situations. Copyright (C) 2005-2013 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 3, 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 . */ /* Written by Bruno Haible , 2005. Based on GCC's gthr-posix.h, gthr-posix95.h, gthr-solaris.h, gthr-win32.h. */ /* This file contains locking primitives for use with a given thread library. It does not contain primitives for creating threads or for other synchronization primitives. Normal (non-recursive) locks: Type: gl_lock_t Declaration: gl_lock_define(extern, name) Initializer: gl_lock_define_initialized(, name) Initialization: gl_lock_init (name); Taking the lock: gl_lock_lock (name); Releasing the lock: gl_lock_unlock (name); De-initialization: gl_lock_destroy (name); Equivalent functions with control of error handling: Initialization: err = glthread_lock_init (&name); Taking the lock: err = glthread_lock_lock (&name); Releasing the lock: err = glthread_lock_unlock (&name); De-initialization: err = glthread_lock_destroy (&name); Read-Write (non-recursive) locks: Type: gl_rwlock_t Declaration: gl_rwlock_define(extern, name) Initializer: gl_rwlock_define_initialized(, name) Initialization: gl_rwlock_init (name); Taking the lock: gl_rwlock_rdlock (name); gl_rwlock_wrlock (name); Releasing the lock: gl_rwlock_unlock (name); De-initialization: gl_rwlock_destroy (name); Equivalent functions with control of error handling: Initialization: err = glthread_rwlock_init (&name); Taking the lock: err = glthread_rwlock_rdlock (&name); err = glthread_rwlock_wrlock (&name); Releasing the lock: err = glthread_rwlock_unlock (&name); De-initialization: err = glthread_rwlock_destroy (&name); Recursive locks: Type: gl_recursive_lock_t Declaration: gl_recursive_lock_define(extern, name) Initializer: gl_recursive_lock_define_initialized(, name) Initialization: gl_recursive_lock_init (name); Taking the lock: gl_recursive_lock_lock (name); Releasing the lock: gl_recursive_lock_unlock (name); De-initialization: gl_recursive_lock_destroy (name); Equivalent functions with control of error handling: Initialization: err = glthread_recursive_lock_init (&name); Taking the lock: err = glthread_recursive_lock_lock (&name); Releasing the lock: err = glthread_recursive_lock_unlock (&name); De-initialization: err = glthread_recursive_lock_destroy (&name); Once-only execution: Type: gl_once_t Initializer: gl_once_define(extern, name) Execution: gl_once (name, initfunction); Equivalent functions with control of error handling: Execution: err = glthread_once (&name, initfunction); */ #ifndef _LOCK_H #define _LOCK_H #include #include /* ========================================================================= */ #if USE_POSIX_THREADS /* Use the POSIX threads library. */ # include # ifdef __cplusplus extern "C" { # endif # if PTHREAD_IN_USE_DETECTION_HARD /* The pthread_in_use() detection needs to be done at runtime. */ # define pthread_in_use() \ glthread_in_use () extern int glthread_in_use (void); # endif # if USE_POSIX_THREADS_WEAK /* Use weak references to the POSIX threads library. */ /* Weak references avoid dragging in external libraries if the other parts of the program don't use them. Here we use them, because we don't want every program that uses libintl to depend on libpthread. This assumes that libpthread would not be loaded after libintl; i.e. if libintl is loaded first, by an executable that does not depend on libpthread, and then a module is dynamically loaded that depends on libpthread, libintl will not be multithread-safe. */ /* The way to test at runtime whether libpthread is present is to test whether a function pointer's value, such as &pthread_mutex_init, is non-NULL. However, some versions of GCC have a bug through which, in PIC mode, &foo != NULL always evaluates to true if there is a direct call to foo(...) in the same function. To avoid this, we test the address of a function in libpthread that we don't use. */ # pragma weak pthread_mutex_init # pragma weak pthread_mutex_lock # pragma weak pthread_mutex_unlock # pragma weak pthread_mutex_destroy # pragma weak pthread_rwlock_init # pragma weak pthread_rwlock_rdlock # pragma weak pthread_rwlock_wrlock # pragma weak pthread_rwlock_unlock # pragma weak pthread_rwlock_destroy # pragma weak pthread_once # pragma weak pthread_cond_init # pragma weak pthread_cond_wait # pragma weak pthread_cond_signal # pragma weak pthread_cond_broadcast # pragma weak pthread_cond_destroy # pragma weak pthread_mutexattr_init # pragma weak pthread_mutexattr_settype # pragma weak pthread_mutexattr_destroy # ifndef pthread_self # pragma weak pthread_self # endif # if !PTHREAD_IN_USE_DETECTION_HARD # pragma weak pthread_cancel # define pthread_in_use() (pthread_cancel != NULL) # endif # else # if !PTHREAD_IN_USE_DETECTION_HARD # define pthread_in_use() 1 # endif # endif /* -------------------------- gl_lock_t datatype -------------------------- */ typedef pthread_mutex_t gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME = gl_lock_initializer; # define gl_lock_initializer \ PTHREAD_MUTEX_INITIALIZER # define glthread_lock_init(LOCK) \ (pthread_in_use () ? pthread_mutex_init (LOCK, NULL) : 0) # define glthread_lock_lock(LOCK) \ (pthread_in_use () ? pthread_mutex_lock (LOCK) : 0) # define glthread_lock_unlock(LOCK) \ (pthread_in_use () ? pthread_mutex_unlock (LOCK) : 0) # define glthread_lock_destroy(LOCK) \ (pthread_in_use () ? pthread_mutex_destroy (LOCK) : 0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ # if HAVE_PTHREAD_RWLOCK # ifdef PTHREAD_RWLOCK_INITIALIZER typedef pthread_rwlock_t gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pthread_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ PTHREAD_RWLOCK_INITIALIZER # define glthread_rwlock_init(LOCK) \ (pthread_in_use () ? pthread_rwlock_init (LOCK, NULL) : 0) # define glthread_rwlock_rdlock(LOCK) \ (pthread_in_use () ? pthread_rwlock_rdlock (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (pthread_in_use () ? pthread_rwlock_wrlock (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (pthread_in_use () ? pthread_rwlock_unlock (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (pthread_in_use () ? pthread_rwlock_destroy (LOCK) : 0) # else typedef struct { int initialized; pthread_mutex_t guard; /* protects the initialization */ pthread_rwlock_t rwlock; /* read-write lock */ } gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ { 0, PTHREAD_MUTEX_INITIALIZER } # define glthread_rwlock_init(LOCK) \ (pthread_in_use () ? glthread_rwlock_init_multithreaded (LOCK) : 0) # define glthread_rwlock_rdlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_rdlock_multithreaded (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_wrlock_multithreaded (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_unlock_multithreaded (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (pthread_in_use () ? glthread_rwlock_destroy_multithreaded (LOCK) : 0) extern int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock); # endif # else typedef struct { pthread_mutex_t lock; /* protects the remaining fields */ pthread_cond_t waiting_readers; /* waiting readers */ pthread_cond_t waiting_writers; /* waiting writers */ unsigned int waiting_writers_count; /* number of waiting writers */ int runcount; /* number of readers running, or -1 when a writer runs */ } gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ { PTHREAD_MUTEX_INITIALIZER, PTHREAD_COND_INITIALIZER, PTHREAD_COND_INITIALIZER, 0, 0 } # define glthread_rwlock_init(LOCK) \ (pthread_in_use () ? glthread_rwlock_init_multithreaded (LOCK) : 0) # define glthread_rwlock_rdlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_rdlock_multithreaded (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_wrlock_multithreaded (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (pthread_in_use () ? glthread_rwlock_unlock_multithreaded (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (pthread_in_use () ? glthread_rwlock_destroy_multithreaded (LOCK) : 0) extern int glthread_rwlock_init_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_rdlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_wrlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_unlock_multithreaded (gl_rwlock_t *lock); extern int glthread_rwlock_destroy_multithreaded (gl_rwlock_t *lock); # endif /* --------------------- gl_recursive_lock_t datatype --------------------- */ # if HAVE_PTHREAD_MUTEX_RECURSIVE # if defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER || defined PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP typedef pthread_mutex_t gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pthread_mutex_t NAME = gl_recursive_lock_initializer; # ifdef PTHREAD_RECURSIVE_MUTEX_INITIALIZER # define gl_recursive_lock_initializer \ PTHREAD_RECURSIVE_MUTEX_INITIALIZER # else # define gl_recursive_lock_initializer \ PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP # endif # define glthread_recursive_lock_init(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (pthread_in_use () ? pthread_mutex_lock (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pthread_in_use () ? pthread_mutex_unlock (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (pthread_in_use () ? pthread_mutex_destroy (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); # else typedef struct { pthread_mutex_t recmutex; /* recursive mutex */ pthread_mutex_t guard; /* protects the initialization */ int initialized; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { PTHREAD_MUTEX_INITIALIZER, PTHREAD_MUTEX_INITIALIZER, 0 } # define glthread_recursive_lock_init(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock); # endif # else /* Old versions of POSIX threads on Solaris did not have recursive locks. We have to implement them ourselves. */ typedef struct { pthread_mutex_t mutex; pthread_t owner; unsigned long depth; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { PTHREAD_MUTEX_INITIALIZER, (pthread_t) 0, 0 } # define glthread_recursive_lock_init(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (pthread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock); # endif /* -------------------------- gl_once_t datatype -------------------------- */ typedef pthread_once_t gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS pthread_once_t NAME = PTHREAD_ONCE_INIT; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (pthread_in_use () \ ? pthread_once (ONCE_CONTROL, INITFUNCTION) \ : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) extern int glthread_once_singlethreaded (pthread_once_t *once_control); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if USE_PTH_THREADS /* Use the GNU Pth threads library. */ # include # ifdef __cplusplus extern "C" { # endif # if USE_PTH_THREADS_WEAK /* Use weak references to the GNU Pth threads library. */ # pragma weak pth_mutex_init # pragma weak pth_mutex_acquire # pragma weak pth_mutex_release # pragma weak pth_rwlock_init # pragma weak pth_rwlock_acquire # pragma weak pth_rwlock_release # pragma weak pth_once # pragma weak pth_cancel # define pth_in_use() (pth_cancel != NULL) # else # define pth_in_use() 1 # endif /* -------------------------- gl_lock_t datatype -------------------------- */ typedef pth_mutex_t gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME = gl_lock_initializer; # define gl_lock_initializer \ PTH_MUTEX_INIT # define glthread_lock_init(LOCK) \ (pth_in_use () && !pth_mutex_init (LOCK) ? errno : 0) # define glthread_lock_lock(LOCK) \ (pth_in_use () && !pth_mutex_acquire (LOCK, 0, NULL) ? errno : 0) # define glthread_lock_unlock(LOCK) \ (pth_in_use () && !pth_mutex_release (LOCK) ? errno : 0) # define glthread_lock_destroy(LOCK) \ ((void)(LOCK), 0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ typedef pth_rwlock_t gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS pth_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pth_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ PTH_RWLOCK_INIT # define glthread_rwlock_init(LOCK) \ (pth_in_use () && !pth_rwlock_init (LOCK) ? errno : 0) # define glthread_rwlock_rdlock(LOCK) \ (pth_in_use () && !pth_rwlock_acquire (LOCK, PTH_RWLOCK_RD, 0, NULL) ? errno : 0) # define glthread_rwlock_wrlock(LOCK) \ (pth_in_use () && !pth_rwlock_acquire (LOCK, PTH_RWLOCK_RW, 0, NULL) ? errno : 0) # define glthread_rwlock_unlock(LOCK) \ (pth_in_use () && !pth_rwlock_release (LOCK) ? errno : 0) # define glthread_rwlock_destroy(LOCK) \ ((void)(LOCK), 0) /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* In Pth, mutexes are recursive by default. */ typedef pth_mutex_t gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS pth_mutex_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ PTH_MUTEX_INIT # define glthread_recursive_lock_init(LOCK) \ (pth_in_use () && !pth_mutex_init (LOCK) ? errno : 0) # define glthread_recursive_lock_lock(LOCK) \ (pth_in_use () && !pth_mutex_acquire (LOCK, 0, NULL) ? errno : 0) # define glthread_recursive_lock_unlock(LOCK) \ (pth_in_use () && !pth_mutex_release (LOCK) ? errno : 0) # define glthread_recursive_lock_destroy(LOCK) \ ((void)(LOCK), 0) /* -------------------------- gl_once_t datatype -------------------------- */ typedef pth_once_t gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS pth_once_t NAME = PTH_ONCE_INIT; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (pth_in_use () \ ? glthread_once_multithreaded (ONCE_CONTROL, INITFUNCTION) \ : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) extern int glthread_once_multithreaded (pth_once_t *once_control, void (*initfunction) (void)); extern int glthread_once_singlethreaded (pth_once_t *once_control); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if USE_SOLARIS_THREADS /* Use the old Solaris threads library. */ # include # include # ifdef __cplusplus extern "C" { # endif # if USE_SOLARIS_THREADS_WEAK /* Use weak references to the old Solaris threads library. */ # pragma weak mutex_init # pragma weak mutex_lock # pragma weak mutex_unlock # pragma weak mutex_destroy # pragma weak rwlock_init # pragma weak rw_rdlock # pragma weak rw_wrlock # pragma weak rw_unlock # pragma weak rwlock_destroy # pragma weak thr_self # pragma weak thr_suspend # define thread_in_use() (thr_suspend != NULL) # else # define thread_in_use() 1 # endif /* -------------------------- gl_lock_t datatype -------------------------- */ typedef mutex_t gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS mutex_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS mutex_t NAME = gl_lock_initializer; # define gl_lock_initializer \ DEFAULTMUTEX # define glthread_lock_init(LOCK) \ (thread_in_use () ? mutex_init (LOCK, USYNC_THREAD, NULL) : 0) # define glthread_lock_lock(LOCK) \ (thread_in_use () ? mutex_lock (LOCK) : 0) # define glthread_lock_unlock(LOCK) \ (thread_in_use () ? mutex_unlock (LOCK) : 0) # define glthread_lock_destroy(LOCK) \ (thread_in_use () ? mutex_destroy (LOCK) : 0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ typedef rwlock_t gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ DEFAULTRWLOCK # define glthread_rwlock_init(LOCK) \ (thread_in_use () ? rwlock_init (LOCK, USYNC_THREAD, NULL) : 0) # define glthread_rwlock_rdlock(LOCK) \ (thread_in_use () ? rw_rdlock (LOCK) : 0) # define glthread_rwlock_wrlock(LOCK) \ (thread_in_use () ? rw_wrlock (LOCK) : 0) # define glthread_rwlock_unlock(LOCK) \ (thread_in_use () ? rw_unlock (LOCK) : 0) # define glthread_rwlock_destroy(LOCK) \ (thread_in_use () ? rwlock_destroy (LOCK) : 0) /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* Old Solaris threads did not have recursive locks. We have to implement them ourselves. */ typedef struct { mutex_t mutex; thread_t owner; unsigned long depth; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { DEFAULTMUTEX, (thread_t) 0, 0 } # define glthread_recursive_lock_init(LOCK) \ (thread_in_use () ? glthread_recursive_lock_init_multithreaded (LOCK) : 0) # define glthread_recursive_lock_lock(LOCK) \ (thread_in_use () ? glthread_recursive_lock_lock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_unlock(LOCK) \ (thread_in_use () ? glthread_recursive_lock_unlock_multithreaded (LOCK) : 0) # define glthread_recursive_lock_destroy(LOCK) \ (thread_in_use () ? glthread_recursive_lock_destroy_multithreaded (LOCK) : 0) extern int glthread_recursive_lock_init_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_multithreaded (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_multithreaded (gl_recursive_lock_t *lock); /* -------------------------- gl_once_t datatype -------------------------- */ typedef struct { volatile int inited; mutex_t mutex; } gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS gl_once_t NAME = { 0, DEFAULTMUTEX }; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (thread_in_use () \ ? glthread_once_multithreaded (ONCE_CONTROL, INITFUNCTION) \ : (glthread_once_singlethreaded (ONCE_CONTROL) ? (INITFUNCTION (), 0) : 0)) extern int glthread_once_multithreaded (gl_once_t *once_control, void (*initfunction) (void)); extern int glthread_once_singlethreaded (gl_once_t *once_control); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if USE_WINDOWS_THREADS # define WIN32_LEAN_AND_MEAN /* avoid including junk */ # include # ifdef __cplusplus extern "C" { # endif /* We can use CRITICAL_SECTION directly, rather than the native Windows Event, Mutex, Semaphore types, because - we need only to synchronize inside a single process (address space), not inter-process locking, - we don't need to support trylock operations. (TryEnterCriticalSection does not work on Windows 95/98/ME. Packages that need trylock usually define their own mutex type.) */ /* There is no way to statically initialize a CRITICAL_SECTION. It needs to be done lazily, once only. For this we need spinlocks. */ typedef struct { volatile int done; volatile long started; } gl_spinlock_t; /* -------------------------- gl_lock_t datatype -------------------------- */ typedef struct { gl_spinlock_t guard; /* protects the initialization */ CRITICAL_SECTION lock; } gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_lock_t NAME; # define gl_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_lock_t NAME = gl_lock_initializer; # define gl_lock_initializer \ { { 0, -1 } } # define glthread_lock_init(LOCK) \ (glthread_lock_init_func (LOCK), 0) # define glthread_lock_lock(LOCK) \ glthread_lock_lock_func (LOCK) # define glthread_lock_unlock(LOCK) \ glthread_lock_unlock_func (LOCK) # define glthread_lock_destroy(LOCK) \ glthread_lock_destroy_func (LOCK) extern void glthread_lock_init_func (gl_lock_t *lock); extern int glthread_lock_lock_func (gl_lock_t *lock); extern int glthread_lock_unlock_func (gl_lock_t *lock); extern int glthread_lock_destroy_func (gl_lock_t *lock); /* ------------------------- gl_rwlock_t datatype ------------------------- */ /* It is impossible to implement read-write locks using plain locks, without introducing an extra thread dedicated to managing read-write locks. Therefore here we need to use the low-level Event type. */ typedef struct { HANDLE *array; /* array of waiting threads, each represented by an event */ unsigned int count; /* number of waiting threads */ unsigned int alloc; /* length of allocated array */ unsigned int offset; /* index of first waiting thread in array */ } gl_carray_waitqueue_t; typedef struct { gl_spinlock_t guard; /* protects the initialization */ CRITICAL_SECTION lock; /* protects the remaining fields */ gl_carray_waitqueue_t waiting_readers; /* waiting readers */ gl_carray_waitqueue_t waiting_writers; /* waiting writers */ int runcount; /* number of readers running, or -1 when a writer runs */ } gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME; # define gl_rwlock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_rwlock_t NAME = gl_rwlock_initializer; # define gl_rwlock_initializer \ { { 0, -1 } } # define glthread_rwlock_init(LOCK) \ (glthread_rwlock_init_func (LOCK), 0) # define glthread_rwlock_rdlock(LOCK) \ glthread_rwlock_rdlock_func (LOCK) # define glthread_rwlock_wrlock(LOCK) \ glthread_rwlock_wrlock_func (LOCK) # define glthread_rwlock_unlock(LOCK) \ glthread_rwlock_unlock_func (LOCK) # define glthread_rwlock_destroy(LOCK) \ glthread_rwlock_destroy_func (LOCK) extern void glthread_rwlock_init_func (gl_rwlock_t *lock); extern int glthread_rwlock_rdlock_func (gl_rwlock_t *lock); extern int glthread_rwlock_wrlock_func (gl_rwlock_t *lock); extern int glthread_rwlock_unlock_func (gl_rwlock_t *lock); extern int glthread_rwlock_destroy_func (gl_rwlock_t *lock); /* --------------------- gl_recursive_lock_t datatype --------------------- */ /* The native Windows documentation says that CRITICAL_SECTION already implements a recursive lock. But we need not rely on it: It's easy to implement a recursive lock without this assumption. */ typedef struct { gl_spinlock_t guard; /* protects the initialization */ DWORD owner; unsigned long depth; CRITICAL_SECTION lock; } gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME; # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) \ STORAGECLASS gl_recursive_lock_t NAME = gl_recursive_lock_initializer; # define gl_recursive_lock_initializer \ { { 0, -1 }, 0, 0 } # define glthread_recursive_lock_init(LOCK) \ (glthread_recursive_lock_init_func (LOCK), 0) # define glthread_recursive_lock_lock(LOCK) \ glthread_recursive_lock_lock_func (LOCK) # define glthread_recursive_lock_unlock(LOCK) \ glthread_recursive_lock_unlock_func (LOCK) # define glthread_recursive_lock_destroy(LOCK) \ glthread_recursive_lock_destroy_func (LOCK) extern void glthread_recursive_lock_init_func (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_lock_func (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_unlock_func (gl_recursive_lock_t *lock); extern int glthread_recursive_lock_destroy_func (gl_recursive_lock_t *lock); /* -------------------------- gl_once_t datatype -------------------------- */ typedef struct { volatile int inited; volatile long started; CRITICAL_SECTION lock; } gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS gl_once_t NAME = { -1, -1 }; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (glthread_once_func (ONCE_CONTROL, INITFUNCTION), 0) extern void glthread_once_func (gl_once_t *once_control, void (*initfunction) (void)); # ifdef __cplusplus } # endif #endif /* ========================================================================= */ #if !(USE_POSIX_THREADS || USE_PTH_THREADS || USE_SOLARIS_THREADS || USE_WINDOWS_THREADS) /* Provide dummy implementation if threads are not supported. */ /* -------------------------- gl_lock_t datatype -------------------------- */ typedef int gl_lock_t; # define gl_lock_define(STORAGECLASS, NAME) # define gl_lock_define_initialized(STORAGECLASS, NAME) # define glthread_lock_init(NAME) 0 # define glthread_lock_lock(NAME) 0 # define glthread_lock_unlock(NAME) 0 # define glthread_lock_destroy(NAME) 0 /* ------------------------- gl_rwlock_t datatype ------------------------- */ typedef int gl_rwlock_t; # define gl_rwlock_define(STORAGECLASS, NAME) # define gl_rwlock_define_initialized(STORAGECLASS, NAME) # define glthread_rwlock_init(NAME) 0 # define glthread_rwlock_rdlock(NAME) 0 # define glthread_rwlock_wrlock(NAME) 0 # define glthread_rwlock_unlock(NAME) 0 # define glthread_rwlock_destroy(NAME) 0 /* --------------------- gl_recursive_lock_t datatype --------------------- */ typedef int gl_recursive_lock_t; # define gl_recursive_lock_define(STORAGECLASS, NAME) # define gl_recursive_lock_define_initialized(STORAGECLASS, NAME) # define glthread_recursive_lock_init(NAME) 0 # define glthread_recursive_lock_lock(NAME) 0 # define glthread_recursive_lock_unlock(NAME) 0 # define glthread_recursive_lock_destroy(NAME) 0 /* -------------------------- gl_once_t datatype -------------------------- */ typedef int gl_once_t; # define gl_once_define(STORAGECLASS, NAME) \ STORAGECLASS gl_once_t NAME = 0; # define glthread_once(ONCE_CONTROL, INITFUNCTION) \ (*(ONCE_CONTROL) == 0 ? (*(ONCE_CONTROL) = ~ 0, INITFUNCTION (), 0) : 0) #endif /* ========================================================================= */ /* Macros with built-in error handling. */ /* -------------------------- gl_lock_t datatype -------------------------- */ #define gl_lock_init(NAME) \ do \ { \ if (glthread_lock_init (&NAME)) \ abort (); \ } \ while (0) #define gl_lock_lock(NAME) \ do \ { \ if (glthread_lock_lock (&NAME)) \ abort (); \ } \ while (0) #define gl_lock_unlock(NAME) \ do \ { \ if (glthread_lock_unlock (&NAME)) \ abort (); \ } \ while (0) #define gl_lock_destroy(NAME) \ do \ { \ if (glthread_lock_destroy (&NAME)) \ abort (); \ } \ while (0) /* ------------------------- gl_rwlock_t datatype ------------------------- */ #define gl_rwlock_init(NAME) \ do \ { \ if (glthread_rwlock_init (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_rdlock(NAME) \ do \ { \ if (glthread_rwlock_rdlock (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_wrlock(NAME) \ do \ { \ if (glthread_rwlock_wrlock (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_unlock(NAME) \ do \ { \ if (glthread_rwlock_unlock (&NAME)) \ abort (); \ } \ while (0) #define gl_rwlock_destroy(NAME) \ do \ { \ if (glthread_rwlock_destroy (&NAME)) \ abort (); \ } \ while (0) /* --------------------- gl_recursive_lock_t datatype --------------------- */ #define gl_recursive_lock_init(NAME) \ do \ { \ if (glthread_recursive_lock_init (&NAME)) \ abort (); \ } \ while (0) #define gl_recursive_lock_lock(NAME) \ do \ { \ if (glthread_recursive_lock_lock (&NAME)) \ abort (); \ } \ while (0) #define gl_recursive_lock_unlock(NAME) \ do \ { \ if (glthread_recursive_lock_unlock (&NAME)) \ abort (); \ } \ while (0) #define gl_recursive_lock_destroy(NAME) \ do \ { \ if (glthread_recursive_lock_destroy (&NAME)) \ abort (); \ } \ while (0) /* -------------------------- gl_once_t datatype -------------------------- */ #define gl_once(NAME, INITFUNCTION) \ do \ { \ if (glthread_once (&NAME, INITFUNCTION)) \ abort (); \ } \ while (0) /* ========================================================================= */ #endif /* _LOCK_H */ ttfautohint-0.97/gnulib/src/stdint.in.h0000644000175000001440000004461012237364242015103 00000000000000/* Copyright (C) 2001-2002, 2004-2013 Free Software Foundation, Inc. Written by Paul Eggert, Bruno Haible, Sam Steingold, Peter Burwood. This file is part of gnulib. 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, 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 . */ /* * ISO C 99 for platforms that lack it. * */ #ifndef _@GUARD_PREFIX@_STDINT_H #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* When including a system file that in turn includes , use the system , not our substitute. This avoids problems with (for example) VMS, whose includes . */ #define _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H /* On Android (Bionic libc), includes this file before having defined 'time_t'. Therefore in this case avoid including other system header files; just include the system's . Ideally we should test __BIONIC__ here, but it is only defined after has been included; hence test __ANDROID__ instead. */ #if defined __ANDROID__ \ && defined _SYS_TYPES_H_ && !defined __need_size_t # @INCLUDE_NEXT@ @NEXT_STDINT_H@ #else /* Get those types that are already defined in other system include files, so that we can "#define int8_t signed char" below without worrying about a later system include file containing a "typedef signed char int8_t;" that will get messed up by our macro. Our macros should all be consistent with the system versions, except for the "fast" types and macros, which we recommend against using in public interfaces due to compiler differences. */ #if @HAVE_STDINT_H@ # if defined __sgi && ! defined __c99 /* Bypass IRIX's if in C89 mode, since it merely annoys users with "This header file is to be used only for c99 mode compilations" diagnostics. */ # define __STDINT_H__ # endif /* Some pre-C++11 implementations need this. */ # ifdef __cplusplus # ifndef __STDC_CONSTANT_MACROS # define __STDC_CONSTANT_MACROS 1 # endif # ifndef __STDC_LIMIT_MACROS # define __STDC_LIMIT_MACROS 1 # endif # endif /* Other systems may have an incomplete or buggy . Include it before , since any "#include " in would reinclude us, skipping our contents because _@GUARD_PREFIX@_STDINT_H is defined. The include_next requires a split double-inclusion guard. */ # @INCLUDE_NEXT@ @NEXT_STDINT_H@ #endif #if ! defined _@GUARD_PREFIX@_STDINT_H && ! defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H #define _@GUARD_PREFIX@_STDINT_H /* defines some of the stdint.h types as well, on glibc, IRIX 6.5, and OpenBSD 3.8 (via ). AIX 5.2 isn't needed and causes troubles. Mac OS X 10.4.6 includes (which is us), but relies on the system definitions, so include after @NEXT_STDINT_H@. */ #if @HAVE_SYS_TYPES_H@ && ! defined _AIX # include #endif /* Get SCHAR_MIN, SCHAR_MAX, UCHAR_MAX, INT_MIN, INT_MAX, LONG_MIN, LONG_MAX, ULONG_MAX. */ #include #if @HAVE_INTTYPES_H@ /* In OpenBSD 3.8, includes , which defines int{8,16,32,64}_t, uint{8,16,32,64}_t and __BIT_TYPES_DEFINED__. also defines intptr_t and uintptr_t. */ # include #elif @HAVE_SYS_INTTYPES_H@ /* Solaris 7 has the types except the *_fast*_t types, and the macros except for *_FAST*_*, INTPTR_MIN, PTRDIFF_MIN, PTRDIFF_MAX. */ # include #endif #if @HAVE_SYS_BITYPES_H@ && ! defined __BIT_TYPES_DEFINED__ /* Linux libc4 >= 4.6.7 and libc5 have a that defines int{8,16,32,64}_t and __BIT_TYPES_DEFINED__. In libc5 >= 5.2.2 it is included by . */ # include #endif #undef _GL_JUST_INCLUDE_SYSTEM_INTTYPES_H /* Minimum and maximum values for an integer type under the usual assumption. Return an unspecified value if BITS == 0, adding a check to pacify picky compilers. */ #define _STDINT_MIN(signed, bits, zero) \ ((signed) ? (- ((zero) + 1) << ((bits) ? (bits) - 1 : 0)) : (zero)) #define _STDINT_MAX(signed, bits, zero) \ ((signed) \ ? ~ _STDINT_MIN (signed, bits, zero) \ : /* The expression for the unsigned case. The subtraction of (signed) \ is a nop in the unsigned case and avoids "signed integer overflow" \ warnings in the signed case. */ \ ((((zero) + 1) << ((bits) ? (bits) - 1 - (signed) : 0)) - 1) * 2 + 1) #if !GNULIB_defined_stdint_types /* 7.18.1.1. Exact-width integer types */ /* Here we assume a standard architecture where the hardware integer types have 8, 16, 32, optionally 64 bits. */ #undef int8_t #undef uint8_t typedef signed char gl_int8_t; typedef unsigned char gl_uint8_t; #define int8_t gl_int8_t #define uint8_t gl_uint8_t #undef int16_t #undef uint16_t typedef short int gl_int16_t; typedef unsigned short int gl_uint16_t; #define int16_t gl_int16_t #define uint16_t gl_uint16_t #undef int32_t #undef uint32_t typedef int gl_int32_t; typedef unsigned int gl_uint32_t; #define int32_t gl_int32_t #define uint32_t gl_uint32_t /* If the system defines INT64_MAX, assume int64_t works. That way, if the underlying platform defines int64_t to be a 64-bit long long int, the code below won't mistakenly define it to be a 64-bit long int, which would mess up C++ name mangling. We must use #ifdef rather than #if, to avoid an error with HP-UX 10.20 cc. */ #ifdef INT64_MAX # define GL_INT64_T #else /* Do not undefine int64_t if gnulib is not being used with 64-bit types, since otherwise it breaks platforms like Tandem/NSK. */ # if LONG_MAX >> 31 >> 31 == 1 # undef int64_t typedef long int gl_int64_t; # define int64_t gl_int64_t # define GL_INT64_T # elif defined _MSC_VER # undef int64_t typedef __int64 gl_int64_t; # define int64_t gl_int64_t # define GL_INT64_T # elif @HAVE_LONG_LONG_INT@ # undef int64_t typedef long long int gl_int64_t; # define int64_t gl_int64_t # define GL_INT64_T # endif #endif #ifdef UINT64_MAX # define GL_UINT64_T #else # if ULONG_MAX >> 31 >> 31 >> 1 == 1 # undef uint64_t typedef unsigned long int gl_uint64_t; # define uint64_t gl_uint64_t # define GL_UINT64_T # elif defined _MSC_VER # undef uint64_t typedef unsigned __int64 gl_uint64_t; # define uint64_t gl_uint64_t # define GL_UINT64_T # elif @HAVE_UNSIGNED_LONG_LONG_INT@ # undef uint64_t typedef unsigned long long int gl_uint64_t; # define uint64_t gl_uint64_t # define GL_UINT64_T # endif #endif /* Avoid collision with Solaris 2.5.1 etc. */ #define _UINT8_T #define _UINT32_T #define _UINT64_T /* 7.18.1.2. Minimum-width integer types */ /* Here we assume a standard architecture where the hardware integer types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types are the same as the corresponding N_t types. */ #undef int_least8_t #undef uint_least8_t #undef int_least16_t #undef uint_least16_t #undef int_least32_t #undef uint_least32_t #undef int_least64_t #undef uint_least64_t #define int_least8_t int8_t #define uint_least8_t uint8_t #define int_least16_t int16_t #define uint_least16_t uint16_t #define int_least32_t int32_t #define uint_least32_t uint32_t #ifdef GL_INT64_T # define int_least64_t int64_t #endif #ifdef GL_UINT64_T # define uint_least64_t uint64_t #endif /* 7.18.1.3. Fastest minimum-width integer types */ /* Note: Other substitutes may define these types differently. It is not recommended to use these types in public header files. */ /* Here we assume a standard architecture where the hardware integer types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types are taken from the same list of types. The following code normally uses types consistent with glibc, as that lessens the chance of incompatibility with older GNU hosts. */ #undef int_fast8_t #undef uint_fast8_t #undef int_fast16_t #undef uint_fast16_t #undef int_fast32_t #undef uint_fast32_t #undef int_fast64_t #undef uint_fast64_t typedef signed char gl_int_fast8_t; typedef unsigned char gl_uint_fast8_t; #ifdef __sun /* Define types compatible with SunOS 5.10, so that code compiled under earlier SunOS versions works with code compiled under SunOS 5.10. */ typedef int gl_int_fast32_t; typedef unsigned int gl_uint_fast32_t; #else typedef long int gl_int_fast32_t; typedef unsigned long int gl_uint_fast32_t; #endif typedef gl_int_fast32_t gl_int_fast16_t; typedef gl_uint_fast32_t gl_uint_fast16_t; #define int_fast8_t gl_int_fast8_t #define uint_fast8_t gl_uint_fast8_t #define int_fast16_t gl_int_fast16_t #define uint_fast16_t gl_uint_fast16_t #define int_fast32_t gl_int_fast32_t #define uint_fast32_t gl_uint_fast32_t #ifdef GL_INT64_T # define int_fast64_t int64_t #endif #ifdef GL_UINT64_T # define uint_fast64_t uint64_t #endif /* 7.18.1.4. Integer types capable of holding object pointers */ #undef intptr_t #undef uintptr_t typedef long int gl_intptr_t; typedef unsigned long int gl_uintptr_t; #define intptr_t gl_intptr_t #define uintptr_t gl_uintptr_t /* 7.18.1.5. Greatest-width integer types */ /* Note: These types are compiler dependent. It may be unwise to use them in public header files. */ /* If the system defines INTMAX_MAX, assume that intmax_t works, and similarly for UINTMAX_MAX and uintmax_t. This avoids problems with assuming one type where another is used by the system. */ #ifndef INTMAX_MAX # undef INTMAX_C # undef intmax_t # if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1 typedef long long int gl_intmax_t; # define intmax_t gl_intmax_t # elif defined GL_INT64_T # define intmax_t int64_t # else typedef long int gl_intmax_t; # define intmax_t gl_intmax_t # endif #endif #ifndef UINTMAX_MAX # undef UINTMAX_C # undef uintmax_t # if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1 typedef unsigned long long int gl_uintmax_t; # define uintmax_t gl_uintmax_t # elif defined GL_UINT64_T # define uintmax_t uint64_t # else typedef unsigned long int gl_uintmax_t; # define uintmax_t gl_uintmax_t # endif #endif /* Verify that intmax_t and uintmax_t have the same size. Too much code breaks if this is not the case. If this check fails, the reason is likely to be found in the autoconf macros. */ typedef int _verify_intmax_size[sizeof (intmax_t) == sizeof (uintmax_t) ? 1 : -1]; #define GNULIB_defined_stdint_types 1 #endif /* !GNULIB_defined_stdint_types */ /* 7.18.2. Limits of specified-width integer types */ /* 7.18.2.1. Limits of exact-width integer types */ /* Here we assume a standard architecture where the hardware integer types have 8, 16, 32, optionally 64 bits. */ #undef INT8_MIN #undef INT8_MAX #undef UINT8_MAX #define INT8_MIN (~ INT8_MAX) #define INT8_MAX 127 #define UINT8_MAX 255 #undef INT16_MIN #undef INT16_MAX #undef UINT16_MAX #define INT16_MIN (~ INT16_MAX) #define INT16_MAX 32767 #define UINT16_MAX 65535 #undef INT32_MIN #undef INT32_MAX #undef UINT32_MAX #define INT32_MIN (~ INT32_MAX) #define INT32_MAX 2147483647 #define UINT32_MAX 4294967295U #if defined GL_INT64_T && ! defined INT64_MAX /* Prefer (- INTMAX_C (1) << 63) over (~ INT64_MAX) because SunPRO C 5.0 evaluates the latter incorrectly in preprocessor expressions. */ # define INT64_MIN (- INTMAX_C (1) << 63) # define INT64_MAX INTMAX_C (9223372036854775807) #endif #if defined GL_UINT64_T && ! defined UINT64_MAX # define UINT64_MAX UINTMAX_C (18446744073709551615) #endif /* 7.18.2.2. Limits of minimum-width integer types */ /* Here we assume a standard architecture where the hardware integer types have 8, 16, 32, optionally 64 bits. Therefore the leastN_t types are the same as the corresponding N_t types. */ #undef INT_LEAST8_MIN #undef INT_LEAST8_MAX #undef UINT_LEAST8_MAX #define INT_LEAST8_MIN INT8_MIN #define INT_LEAST8_MAX INT8_MAX #define UINT_LEAST8_MAX UINT8_MAX #undef INT_LEAST16_MIN #undef INT_LEAST16_MAX #undef UINT_LEAST16_MAX #define INT_LEAST16_MIN INT16_MIN #define INT_LEAST16_MAX INT16_MAX #define UINT_LEAST16_MAX UINT16_MAX #undef INT_LEAST32_MIN #undef INT_LEAST32_MAX #undef UINT_LEAST32_MAX #define INT_LEAST32_MIN INT32_MIN #define INT_LEAST32_MAX INT32_MAX #define UINT_LEAST32_MAX UINT32_MAX #undef INT_LEAST64_MIN #undef INT_LEAST64_MAX #ifdef GL_INT64_T # define INT_LEAST64_MIN INT64_MIN # define INT_LEAST64_MAX INT64_MAX #endif #undef UINT_LEAST64_MAX #ifdef GL_UINT64_T # define UINT_LEAST64_MAX UINT64_MAX #endif /* 7.18.2.3. Limits of fastest minimum-width integer types */ /* Here we assume a standard architecture where the hardware integer types have 8, 16, 32, optionally 64 bits. Therefore the fastN_t types are taken from the same list of types. */ #undef INT_FAST8_MIN #undef INT_FAST8_MAX #undef UINT_FAST8_MAX #define INT_FAST8_MIN SCHAR_MIN #define INT_FAST8_MAX SCHAR_MAX #define UINT_FAST8_MAX UCHAR_MAX #undef INT_FAST16_MIN #undef INT_FAST16_MAX #undef UINT_FAST16_MAX #define INT_FAST16_MIN INT_FAST32_MIN #define INT_FAST16_MAX INT_FAST32_MAX #define UINT_FAST16_MAX UINT_FAST32_MAX #undef INT_FAST32_MIN #undef INT_FAST32_MAX #undef UINT_FAST32_MAX #ifdef __sun # define INT_FAST32_MIN INT_MIN # define INT_FAST32_MAX INT_MAX # define UINT_FAST32_MAX UINT_MAX #else # define INT_FAST32_MIN LONG_MIN # define INT_FAST32_MAX LONG_MAX # define UINT_FAST32_MAX ULONG_MAX #endif #undef INT_FAST64_MIN #undef INT_FAST64_MAX #ifdef GL_INT64_T # define INT_FAST64_MIN INT64_MIN # define INT_FAST64_MAX INT64_MAX #endif #undef UINT_FAST64_MAX #ifdef GL_UINT64_T # define UINT_FAST64_MAX UINT64_MAX #endif /* 7.18.2.4. Limits of integer types capable of holding object pointers */ #undef INTPTR_MIN #undef INTPTR_MAX #undef UINTPTR_MAX #define INTPTR_MIN LONG_MIN #define INTPTR_MAX LONG_MAX #define UINTPTR_MAX ULONG_MAX /* 7.18.2.5. Limits of greatest-width integer types */ #ifndef INTMAX_MAX # undef INTMAX_MIN # ifdef INT64_MAX # define INTMAX_MIN INT64_MIN # define INTMAX_MAX INT64_MAX # else # define INTMAX_MIN INT32_MIN # define INTMAX_MAX INT32_MAX # endif #endif #ifndef UINTMAX_MAX # ifdef UINT64_MAX # define UINTMAX_MAX UINT64_MAX # else # define UINTMAX_MAX UINT32_MAX # endif #endif /* 7.18.3. Limits of other integer types */ /* ptrdiff_t limits */ #undef PTRDIFF_MIN #undef PTRDIFF_MAX #if @APPLE_UNIVERSAL_BUILD@ # ifdef _LP64 # define PTRDIFF_MIN _STDINT_MIN (1, 64, 0l) # define PTRDIFF_MAX _STDINT_MAX (1, 64, 0l) # else # define PTRDIFF_MIN _STDINT_MIN (1, 32, 0) # define PTRDIFF_MAX _STDINT_MAX (1, 32, 0) # endif #else # define PTRDIFF_MIN \ _STDINT_MIN (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@) # define PTRDIFF_MAX \ _STDINT_MAX (1, @BITSIZEOF_PTRDIFF_T@, 0@PTRDIFF_T_SUFFIX@) #endif /* sig_atomic_t limits */ #undef SIG_ATOMIC_MIN #undef SIG_ATOMIC_MAX #define SIG_ATOMIC_MIN \ _STDINT_MIN (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \ 0@SIG_ATOMIC_T_SUFFIX@) #define SIG_ATOMIC_MAX \ _STDINT_MAX (@HAVE_SIGNED_SIG_ATOMIC_T@, @BITSIZEOF_SIG_ATOMIC_T@, \ 0@SIG_ATOMIC_T_SUFFIX@) /* size_t limit */ #undef SIZE_MAX #if @APPLE_UNIVERSAL_BUILD@ # ifdef _LP64 # define SIZE_MAX _STDINT_MAX (0, 64, 0ul) # else # define SIZE_MAX _STDINT_MAX (0, 32, 0ul) # endif #else # define SIZE_MAX _STDINT_MAX (0, @BITSIZEOF_SIZE_T@, 0@SIZE_T_SUFFIX@) #endif /* wchar_t limits */ /* Get WCHAR_MIN, WCHAR_MAX. This include is not on the top, above, because on OSF/1 4.0 we have a sequence of nested includes -> -> -> , and the latter includes and assumes its types are already defined. */ #if @HAVE_WCHAR_H@ && ! (defined WCHAR_MIN && defined WCHAR_MAX) /* BSD/OS 4.0.1 has a bug: , and must be included before . */ # include # include # include # define _GL_JUST_INCLUDE_SYSTEM_WCHAR_H # include # undef _GL_JUST_INCLUDE_SYSTEM_WCHAR_H #endif #undef WCHAR_MIN #undef WCHAR_MAX #define WCHAR_MIN \ _STDINT_MIN (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) #define WCHAR_MAX \ _STDINT_MAX (@HAVE_SIGNED_WCHAR_T@, @BITSIZEOF_WCHAR_T@, 0@WCHAR_T_SUFFIX@) /* wint_t limits */ #undef WINT_MIN #undef WINT_MAX #define WINT_MIN \ _STDINT_MIN (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) #define WINT_MAX \ _STDINT_MAX (@HAVE_SIGNED_WINT_T@, @BITSIZEOF_WINT_T@, 0@WINT_T_SUFFIX@) /* 7.18.4. Macros for integer constants */ /* 7.18.4.1. Macros for minimum-width integer constants */ /* According to ISO C 99 Technical Corrigendum 1 */ /* Here we assume a standard architecture where the hardware integer types have 8, 16, 32, optionally 64 bits, and int is 32 bits. */ #undef INT8_C #undef UINT8_C #define INT8_C(x) x #define UINT8_C(x) x #undef INT16_C #undef UINT16_C #define INT16_C(x) x #define UINT16_C(x) x #undef INT32_C #undef UINT32_C #define INT32_C(x) x #define UINT32_C(x) x ## U #undef INT64_C #undef UINT64_C #if LONG_MAX >> 31 >> 31 == 1 # define INT64_C(x) x##L #elif defined _MSC_VER # define INT64_C(x) x##i64 #elif @HAVE_LONG_LONG_INT@ # define INT64_C(x) x##LL #endif #if ULONG_MAX >> 31 >> 31 >> 1 == 1 # define UINT64_C(x) x##UL #elif defined _MSC_VER # define UINT64_C(x) x##ui64 #elif @HAVE_UNSIGNED_LONG_LONG_INT@ # define UINT64_C(x) x##ULL #endif /* 7.18.4.2. Macros for greatest-width integer constants */ #ifndef INTMAX_C # if @HAVE_LONG_LONG_INT@ && LONG_MAX >> 30 == 1 # define INTMAX_C(x) x##LL # elif defined GL_INT64_T # define INTMAX_C(x) INT64_C(x) # else # define INTMAX_C(x) x##L # endif #endif #ifndef UINTMAX_C # if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1 # define UINTMAX_C(x) x##ULL # elif defined GL_UINT64_T # define UINTMAX_C(x) UINT64_C(x) # else # define UINTMAX_C(x) x##UL # endif #endif #endif /* _@GUARD_PREFIX@_STDINT_H */ #endif /* !(defined __ANDROID__ && ...) */ #endif /* !defined _@GUARD_PREFIX@_STDINT_H && !defined _GL_JUST_INCLUDE_SYSTEM_STDINT_H */ ttfautohint-0.97/gnulib/src/str-two-way.h0000644000175000001440000004216512237364242015411 00000000000000/* Byte-wise substring search, using the Two-Way algorithm. Copyright (C) 2008-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. Written by Eric Blake , 2008. 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, 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 . */ /* Before including this file, you need to include and , and define: RESULT_TYPE A macro that expands to the return type. AVAILABLE(h, h_l, j, n_l) A macro that returns nonzero if there are at least N_L bytes left starting at H[J]. H is 'unsigned char *', H_L, J, and N_L are 'size_t'; H_L is an lvalue. For NUL-terminated searches, H_L can be modified each iteration to avoid having to compute the end of H up front. For case-insensitivity, you may optionally define: CMP_FUNC(p1, p2, l) A macro that returns 0 iff the first L characters of P1 and P2 are equal. CANON_ELEMENT(c) A macro that canonicalizes an element right after it has been fetched from one of the two strings. The argument is an 'unsigned char'; the result must be an 'unsigned char' as well. This file undefines the macros documented above, and defines LONG_NEEDLE_THRESHOLD. */ #include #include /* We use the Two-Way string matching algorithm (also known as Chrochemore-Perrin), which guarantees linear complexity with constant space. Additionally, for long needles, we also use a bad character shift table similar to the Boyer-Moore algorithm to achieve improved (potentially sub-linear) performance. See http://www-igm.univ-mlv.fr/~lecroq/string/node26.html#SECTION00260, http://en.wikipedia.org/wiki/Boyer-Moore_string_search_algorithm, http://citeseerx.ist.psu.edu/viewdoc/download?doi=10.1.1.34.6641&rep=rep1&type=pdf */ /* Point at which computing a bad-byte shift table is likely to be worthwhile. Small needles should not compute a table, since it adds (1 << CHAR_BIT) + NEEDLE_LEN computations of preparation for a speedup no greater than a factor of NEEDLE_LEN. The larger the needle, the better the potential performance gain. On the other hand, on non-POSIX systems with CHAR_BIT larger than eight, the memory required for the table is prohibitive. */ #if CHAR_BIT < 10 # define LONG_NEEDLE_THRESHOLD 32U #else # define LONG_NEEDLE_THRESHOLD SIZE_MAX #endif #ifndef MAX # define MAX(a, b) ((a < b) ? (b) : (a)) #endif #ifndef CANON_ELEMENT # define CANON_ELEMENT(c) c #endif #ifndef CMP_FUNC # define CMP_FUNC memcmp #endif /* Perform a critical factorization of NEEDLE, of length NEEDLE_LEN. Return the index of the first byte in the right half, and set *PERIOD to the global period of the right half. The global period of a string is the smallest index (possibly its length) at which all remaining bytes in the string are repetitions of the prefix (the last repetition may be a subset of the prefix). When NEEDLE is factored into two halves, a local period is the length of the smallest word that shares a suffix with the left half and shares a prefix with the right half. All factorizations of a non-empty NEEDLE have a local period of at least 1 and no greater than NEEDLE_LEN. A critical factorization has the property that the local period equals the global period. All strings have at least one critical factorization with the left half smaller than the global period. And while some strings have more than one critical factorization, it is provable that with an ordered alphabet, at least one of the critical factorizations corresponds to a maximal suffix. Given an ordered alphabet, a critical factorization can be computed in linear time, with 2 * NEEDLE_LEN comparisons, by computing the shorter of two ordered maximal suffixes. The ordered maximal suffixes are determined by lexicographic comparison while tracking periodicity. */ static size_t critical_factorization (const unsigned char *needle, size_t needle_len, size_t *period) { /* Index of last byte of left half, or SIZE_MAX. */ size_t max_suffix, max_suffix_rev; size_t j; /* Index into NEEDLE for current candidate suffix. */ size_t k; /* Offset into current period. */ size_t p; /* Intermediate period. */ unsigned char a, b; /* Current comparison bytes. */ /* Special case NEEDLE_LEN of 1 or 2 (all callers already filtered out 0-length needles. */ if (needle_len < 3) { *period = 1; return needle_len - 1; } /* Invariants: 0 <= j < NEEDLE_LEN - 1 -1 <= max_suffix{,_rev} < j (treating SIZE_MAX as if it were signed) min(max_suffix, max_suffix_rev) < global period of NEEDLE 1 <= p <= global period of NEEDLE p == global period of the substring NEEDLE[max_suffix{,_rev}+1...j] 1 <= k <= p */ /* Perform lexicographic search. */ max_suffix = SIZE_MAX; j = 0; k = p = 1; while (j + k < needle_len) { a = CANON_ELEMENT (needle[j + k]); b = CANON_ELEMENT (needle[max_suffix + k]); if (a < b) { /* Suffix is smaller, period is entire prefix so far. */ j += k; k = 1; p = j - max_suffix; } else if (a == b) { /* Advance through repetition of the current period. */ if (k != p) ++k; else { j += p; k = 1; } } else /* b < a */ { /* Suffix is larger, start over from current location. */ max_suffix = j++; k = p = 1; } } *period = p; /* Perform reverse lexicographic search. */ max_suffix_rev = SIZE_MAX; j = 0; k = p = 1; while (j + k < needle_len) { a = CANON_ELEMENT (needle[j + k]); b = CANON_ELEMENT (needle[max_suffix_rev + k]); if (b < a) { /* Suffix is smaller, period is entire prefix so far. */ j += k; k = 1; p = j - max_suffix_rev; } else if (a == b) { /* Advance through repetition of the current period. */ if (k != p) ++k; else { j += p; k = 1; } } else /* a < b */ { /* Suffix is larger, start over from current location. */ max_suffix_rev = j++; k = p = 1; } } /* Choose the shorter suffix. Return the index of the first byte of the right half, rather than the last byte of the left half. For some examples, 'banana' has two critical factorizations, both exposed by the two lexicographic extreme suffixes of 'anana' and 'nana', where both suffixes have a period of 2. On the other hand, with 'aab' and 'bba', both strings have a single critical factorization of the last byte, with the suffix having a period of 1. While the maximal lexicographic suffix of 'aab' is 'b', the maximal lexicographic suffix of 'bba' is 'ba', which is not a critical factorization. Conversely, the maximal reverse lexicographic suffix of 'a' works for 'bba', but not 'ab' for 'aab'. The shorter suffix of the two will always be a critical factorization. */ if (max_suffix_rev + 1 < max_suffix + 1) return max_suffix + 1; *period = p; return max_suffix_rev + 1; } /* Return the first location of non-empty NEEDLE within HAYSTACK, or NULL. HAYSTACK_LEN is the minimum known length of HAYSTACK. This method is optimized for NEEDLE_LEN < LONG_NEEDLE_THRESHOLD. Performance is guaranteed to be linear, with an initialization cost of 2 * NEEDLE_LEN comparisons. If AVAILABLE does not modify HAYSTACK_LEN (as in memmem), then at most 2 * HAYSTACK_LEN - NEEDLE_LEN comparisons occur in searching. If AVAILABLE modifies HAYSTACK_LEN (as in strstr), then at most 3 * HAYSTACK_LEN - NEEDLE_LEN comparisons occur in searching. */ static RETURN_TYPE two_way_short_needle (const unsigned char *haystack, size_t haystack_len, const unsigned char *needle, size_t needle_len) { size_t i; /* Index into current byte of NEEDLE. */ size_t j; /* Index into current window of HAYSTACK. */ size_t period; /* The period of the right half of needle. */ size_t suffix; /* The index of the right half of needle. */ /* Factor the needle into two halves, such that the left half is smaller than the global period, and the right half is periodic (with a period as large as NEEDLE_LEN - suffix). */ suffix = critical_factorization (needle, needle_len, &period); /* Perform the search. Each iteration compares the right half first. */ if (CMP_FUNC (needle, needle + period, suffix) == 0) { /* Entire needle is periodic; a mismatch in the left half can only advance by the period, so use memory to avoid rescanning known occurrences of the period in the right half. */ size_t memory = 0; j = 0; while (AVAILABLE (haystack, haystack_len, j, needle_len)) { /* Scan for matches in right half. */ i = MAX (suffix, memory); while (i < needle_len && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) ++i; if (needle_len <= i) { /* Scan for matches in left half. */ i = suffix - 1; while (memory < i + 1 && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) --i; if (i + 1 < memory + 1) return (RETURN_TYPE) (haystack + j); /* No match, so remember how many repetitions of period on the right half were scanned. */ j += period; memory = needle_len - period; } else { j += i - suffix + 1; memory = 0; } } } else { /* The two halves of needle are distinct; no extra memory is required, and any mismatch results in a maximal shift. */ period = MAX (suffix, needle_len - suffix) + 1; j = 0; while (AVAILABLE (haystack, haystack_len, j, needle_len)) { /* Scan for matches in right half. */ i = suffix; while (i < needle_len && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) ++i; if (needle_len <= i) { /* Scan for matches in left half. */ i = suffix - 1; while (i != SIZE_MAX && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) --i; if (i == SIZE_MAX) return (RETURN_TYPE) (haystack + j); j += period; } else j += i - suffix + 1; } } return NULL; } /* Return the first location of non-empty NEEDLE within HAYSTACK, or NULL. HAYSTACK_LEN is the minimum known length of HAYSTACK. This method is optimized for LONG_NEEDLE_THRESHOLD <= NEEDLE_LEN. Performance is guaranteed to be linear, with an initialization cost of 3 * NEEDLE_LEN + (1 << CHAR_BIT) operations. If AVAILABLE does not modify HAYSTACK_LEN (as in memmem), then at most 2 * HAYSTACK_LEN - NEEDLE_LEN comparisons occur in searching, and sublinear performance O(HAYSTACK_LEN / NEEDLE_LEN) is possible. If AVAILABLE modifies HAYSTACK_LEN (as in strstr), then at most 3 * HAYSTACK_LEN - NEEDLE_LEN comparisons occur in searching, and sublinear performance is not possible. */ static RETURN_TYPE two_way_long_needle (const unsigned char *haystack, size_t haystack_len, const unsigned char *needle, size_t needle_len) { size_t i; /* Index into current byte of NEEDLE. */ size_t j; /* Index into current window of HAYSTACK. */ size_t period; /* The period of the right half of needle. */ size_t suffix; /* The index of the right half of needle. */ size_t shift_table[1U << CHAR_BIT]; /* See below. */ /* Factor the needle into two halves, such that the left half is smaller than the global period, and the right half is periodic (with a period as large as NEEDLE_LEN - suffix). */ suffix = critical_factorization (needle, needle_len, &period); /* Populate shift_table. For each possible byte value c, shift_table[c] is the distance from the last occurrence of c to the end of NEEDLE, or NEEDLE_LEN if c is absent from the NEEDLE. shift_table[NEEDLE[NEEDLE_LEN - 1]] contains the only 0. */ for (i = 0; i < 1U << CHAR_BIT; i++) shift_table[i] = needle_len; for (i = 0; i < needle_len; i++) shift_table[CANON_ELEMENT (needle[i])] = needle_len - i - 1; /* Perform the search. Each iteration compares the right half first. */ if (CMP_FUNC (needle, needle + period, suffix) == 0) { /* Entire needle is periodic; a mismatch in the left half can only advance by the period, so use memory to avoid rescanning known occurrences of the period in the right half. */ size_t memory = 0; size_t shift; j = 0; while (AVAILABLE (haystack, haystack_len, j, needle_len)) { /* Check the last byte first; if it does not match, then shift to the next possible match location. */ shift = shift_table[CANON_ELEMENT (haystack[j + needle_len - 1])]; if (0 < shift) { if (memory && shift < period) { /* Since needle is periodic, but the last period has a byte out of place, there can be no match until after the mismatch. */ shift = needle_len - period; } memory = 0; j += shift; continue; } /* Scan for matches in right half. The last byte has already been matched, by virtue of the shift table. */ i = MAX (suffix, memory); while (i < needle_len - 1 && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) ++i; if (needle_len - 1 <= i) { /* Scan for matches in left half. */ i = suffix - 1; while (memory < i + 1 && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) --i; if (i + 1 < memory + 1) return (RETURN_TYPE) (haystack + j); /* No match, so remember how many repetitions of period on the right half were scanned. */ j += period; memory = needle_len - period; } else { j += i - suffix + 1; memory = 0; } } } else { /* The two halves of needle are distinct; no extra memory is required, and any mismatch results in a maximal shift. */ size_t shift; period = MAX (suffix, needle_len - suffix) + 1; j = 0; while (AVAILABLE (haystack, haystack_len, j, needle_len)) { /* Check the last byte first; if it does not match, then shift to the next possible match location. */ shift = shift_table[CANON_ELEMENT (haystack[j + needle_len - 1])]; if (0 < shift) { j += shift; continue; } /* Scan for matches in right half. The last byte has already been matched, by virtue of the shift table. */ i = suffix; while (i < needle_len - 1 && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) ++i; if (needle_len - 1 <= i) { /* Scan for matches in left half. */ i = suffix - 1; while (i != SIZE_MAX && (CANON_ELEMENT (needle[i]) == CANON_ELEMENT (haystack[i + j]))) --i; if (i == SIZE_MAX) return (RETURN_TYPE) (haystack + j); j += period; } else j += i - suffix + 1; } } return NULL; } #undef AVAILABLE #undef CANON_ELEMENT #undef CMP_FUNC #undef MAX #undef RETURN_TYPE ttfautohint-0.97/gnulib/src/Makefile.am0000644000175000001440000006550512237364244015064 00000000000000## DO NOT EDIT! GENERATED AUTOMATICALLY! ## Process this file with automake to produce Makefile.in. # Copyright (C) 2002-2013 Free Software Foundation, Inc. # # 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 file 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 file. If not, see . # # As a special exception to the GNU General Public License, # this file may be distributed as part of a program that # contains a configuration script generated by Autoconf, under # the same distribution terms as the rest of that program. # # Generated by gnulib-tool. # Reproduce by: gnulib-tool --import --dir=. --local-dir=gl --lib=libgnu --source-base=gnulib/src --m4-base=gnulib/m4 --doc-base=doc --tests-base=tests --aux-dir=gnulib --no-conditional-dependencies --libtool --macro-prefix=gl fcntl-h getopt-gnu git-version-gen isatty memmem-simple strerror_r-posix AUTOMAKE_OPTIONS = 1.9.6 gnits subdir-objects SUBDIRS = noinst_HEADERS = noinst_LIBRARIES = noinst_LTLIBRARIES = EXTRA_DIST = BUILT_SOURCES = SUFFIXES = MOSTLYCLEANFILES = core *.stackdump MOSTLYCLEANDIRS = CLEANFILES = DISTCLEANFILES = MAINTAINERCLEANFILES = AM_CPPFLAGS = AM_CFLAGS = noinst_LTLIBRARIES += libgnu.la libgnu_la_SOURCES = libgnu_la_LIBADD = $(gl_LTLIBOBJS) libgnu_la_DEPENDENCIES = $(gl_LTLIBOBJS) EXTRA_libgnu_la_SOURCES = libgnu_la_LDFLAGS = $(AM_LDFLAGS) libgnu_la_LDFLAGS += -no-undefined libgnu_la_LDFLAGS += $(LTLIBINTL) libgnu_la_LDFLAGS += $(LTLIBTHREAD) ## begin gnulib module errno BUILT_SOURCES += $(ERRNO_H) # We need the following in order to create when the system # doesn't have one that is POSIX compliant. if GL_GENERATE_ERRNO_H errno.h: errno.in.h $(top_builddir)/config.status $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_ERRNO_H''@|$(NEXT_ERRNO_H)|g' \ -e 's|@''EMULTIHOP_HIDDEN''@|$(EMULTIHOP_HIDDEN)|g' \ -e 's|@''EMULTIHOP_VALUE''@|$(EMULTIHOP_VALUE)|g' \ -e 's|@''ENOLINK_HIDDEN''@|$(ENOLINK_HIDDEN)|g' \ -e 's|@''ENOLINK_VALUE''@|$(ENOLINK_VALUE)|g' \ -e 's|@''EOVERFLOW_HIDDEN''@|$(EOVERFLOW_HIDDEN)|g' \ -e 's|@''EOVERFLOW_VALUE''@|$(EOVERFLOW_VALUE)|g' \ < $(srcdir)/errno.in.h; \ } > $@-t && \ mv $@-t $@ else errno.h: $(top_builddir)/config.status rm -f $@ endif MOSTLYCLEANFILES += errno.h errno.h-t EXTRA_DIST += errno.in.h ## end gnulib module errno ## begin gnulib module fcntl-h BUILT_SOURCES += fcntl.h # We need the following in order to create when the system # doesn't have one that works with the given compiler. fcntl.h: fcntl.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_FCNTL_H''@|$(NEXT_FCNTL_H)|g' \ -e 's/@''GNULIB_FCNTL''@/$(GNULIB_FCNTL)/g' \ -e 's/@''GNULIB_NONBLOCKING''@/$(GNULIB_NONBLOCKING)/g' \ -e 's/@''GNULIB_OPEN''@/$(GNULIB_OPEN)/g' \ -e 's/@''GNULIB_OPENAT''@/$(GNULIB_OPENAT)/g' \ -e 's|@''HAVE_FCNTL''@|$(HAVE_FCNTL)|g' \ -e 's|@''HAVE_OPENAT''@|$(HAVE_OPENAT)|g' \ -e 's|@''REPLACE_FCNTL''@|$(REPLACE_FCNTL)|g' \ -e 's|@''REPLACE_OPEN''@|$(REPLACE_OPEN)|g' \ -e 's|@''REPLACE_OPENAT''@|$(REPLACE_OPENAT)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)' \ < $(srcdir)/fcntl.in.h; \ } > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += fcntl.h fcntl.h-t EXTRA_DIST += fcntl.in.h ## end gnulib module fcntl-h ## begin gnulib module getopt-posix BUILT_SOURCES += $(GETOPT_H) # We need the following in order to create when the system # doesn't have one that works with the given compiler. getopt.h: getopt.in.h $(top_builddir)/config.status $(ARG_NONNULL_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_GETOPT_H''@|$(HAVE_GETOPT_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_GETOPT_H''@|$(NEXT_GETOPT_H)|g' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ < $(srcdir)/getopt.in.h; \ } > $@-t && \ mv -f $@-t $@ MOSTLYCLEANFILES += getopt.h getopt.h-t EXTRA_DIST += getopt.c getopt.in.h getopt1.c getopt_int.h EXTRA_libgnu_la_SOURCES += getopt.c getopt1.c ## end gnulib module getopt-posix ## begin gnulib module gettext-h libgnu_la_SOURCES += gettext.h ## end gnulib module gettext-h ## begin gnulib module git-version-gen EXTRA_DIST += $(top_srcdir)/gnulib/git-version-gen ## end gnulib module git-version-gen ## begin gnulib module havelib EXTRA_DIST += $(top_srcdir)/gnulib/config.rpath ## end gnulib module havelib ## begin gnulib module isatty EXTRA_DIST += isatty.c EXTRA_libgnu_la_SOURCES += isatty.c ## end gnulib module isatty ## begin gnulib module lock libgnu_la_SOURCES += glthread/lock.h glthread/lock.c ## end gnulib module lock ## begin gnulib module memchr EXTRA_DIST += memchr.c memchr.valgrind EXTRA_libgnu_la_SOURCES += memchr.c ## end gnulib module memchr ## begin gnulib module memmem-simple EXTRA_DIST += memmem.c str-two-way.h EXTRA_libgnu_la_SOURCES += memmem.c ## end gnulib module memmem-simple ## begin gnulib module msvc-inval EXTRA_DIST += msvc-inval.c msvc-inval.h EXTRA_libgnu_la_SOURCES += msvc-inval.c ## end gnulib module msvc-inval ## begin gnulib module msvc-nothrow EXTRA_DIST += msvc-nothrow.c msvc-nothrow.h EXTRA_libgnu_la_SOURCES += msvc-nothrow.c ## end gnulib module msvc-nothrow ## begin gnulib module snippet/arg-nonnull # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. BUILT_SOURCES += arg-nonnull.h # The arg-nonnull.h that gets inserted into generated .h files is the same as # build-aux/snippet/arg-nonnull.h, except that it has the copyright header cut # off. arg-nonnull.h: $(top_srcdir)/gnulib/snippet/arg-nonnull.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/GL_ARG_NONNULL/,$$p' \ < $(top_srcdir)/gnulib/snippet/arg-nonnull.h \ > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += arg-nonnull.h arg-nonnull.h-t ARG_NONNULL_H=arg-nonnull.h EXTRA_DIST += $(top_srcdir)/gnulib/snippet/arg-nonnull.h ## end gnulib module snippet/arg-nonnull ## begin gnulib module snippet/c++defs # The BUILT_SOURCES created by this Makefile snippet are not used via #include # statements but through direct file reference. Therefore this snippet must be # present in all Makefile.am that need it. This is ensured by the applicability # 'all' defined above. BUILT_SOURCES += c++defs.h # The c++defs.h that gets inserted into generated .h files is the same as # build-aux/snippet/c++defs.h, except that it has the copyright header cut off. c++defs.h: $(top_srcdir)/gnulib/snippet/c++defs.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/_GL_CXXDEFS/,$$p' \ < $(top_srcdir)/gnulib/snippet/c++defs.h \ > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += c++defs.h c++defs.h-t CXXDEFS_H=c++defs.h EXTRA_DIST += $(top_srcdir)/gnulib/snippet/c++defs.h ## end gnulib module snippet/c++defs ## begin gnulib module snippet/warn-on-use BUILT_SOURCES += warn-on-use.h # The warn-on-use.h that gets inserted into generated .h files is the same as # build-aux/snippet/warn-on-use.h, except that it has the copyright header cut # off. warn-on-use.h: $(top_srcdir)/gnulib/snippet/warn-on-use.h $(AM_V_GEN)rm -f $@-t $@ && \ sed -n -e '/^.ifndef/,$$p' \ < $(top_srcdir)/gnulib/snippet/warn-on-use.h \ > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += warn-on-use.h warn-on-use.h-t WARN_ON_USE_H=warn-on-use.h EXTRA_DIST += $(top_srcdir)/gnulib/snippet/warn-on-use.h ## end gnulib module snippet/warn-on-use ## begin gnulib module stddef BUILT_SOURCES += $(STDDEF_H) # We need the following in order to create when the system # doesn't have one that works with the given compiler. if GL_GENERATE_STDDEF_H stddef.h: stddef.in.h $(top_builddir)/config.status $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STDDEF_H''@|$(NEXT_STDDEF_H)|g' \ -e 's|@''HAVE_WCHAR_T''@|$(HAVE_WCHAR_T)|g' \ -e 's|@''REPLACE_NULL''@|$(REPLACE_NULL)|g' \ < $(srcdir)/stddef.in.h; \ } > $@-t && \ mv $@-t $@ else stddef.h: $(top_builddir)/config.status rm -f $@ endif MOSTLYCLEANFILES += stddef.h stddef.h-t EXTRA_DIST += stddef.in.h ## end gnulib module stddef ## begin gnulib module stdint BUILT_SOURCES += $(STDINT_H) # We need the following in order to create when the system # doesn't have one that works with the given compiler. if GL_GENERATE_STDINT_H stdint.h: stdint.in.h $(top_builddir)/config.status $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's/@''HAVE_STDINT_H''@/$(HAVE_STDINT_H)/g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STDINT_H''@|$(NEXT_STDINT_H)|g' \ -e 's/@''HAVE_SYS_TYPES_H''@/$(HAVE_SYS_TYPES_H)/g' \ -e 's/@''HAVE_INTTYPES_H''@/$(HAVE_INTTYPES_H)/g' \ -e 's/@''HAVE_SYS_INTTYPES_H''@/$(HAVE_SYS_INTTYPES_H)/g' \ -e 's/@''HAVE_SYS_BITYPES_H''@/$(HAVE_SYS_BITYPES_H)/g' \ -e 's/@''HAVE_WCHAR_H''@/$(HAVE_WCHAR_H)/g' \ -e 's/@''HAVE_LONG_LONG_INT''@/$(HAVE_LONG_LONG_INT)/g' \ -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/$(HAVE_UNSIGNED_LONG_LONG_INT)/g' \ -e 's/@''APPLE_UNIVERSAL_BUILD''@/$(APPLE_UNIVERSAL_BUILD)/g' \ -e 's/@''BITSIZEOF_PTRDIFF_T''@/$(BITSIZEOF_PTRDIFF_T)/g' \ -e 's/@''PTRDIFF_T_SUFFIX''@/$(PTRDIFF_T_SUFFIX)/g' \ -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/$(BITSIZEOF_SIG_ATOMIC_T)/g' \ -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/$(HAVE_SIGNED_SIG_ATOMIC_T)/g' \ -e 's/@''SIG_ATOMIC_T_SUFFIX''@/$(SIG_ATOMIC_T_SUFFIX)/g' \ -e 's/@''BITSIZEOF_SIZE_T''@/$(BITSIZEOF_SIZE_T)/g' \ -e 's/@''SIZE_T_SUFFIX''@/$(SIZE_T_SUFFIX)/g' \ -e 's/@''BITSIZEOF_WCHAR_T''@/$(BITSIZEOF_WCHAR_T)/g' \ -e 's/@''HAVE_SIGNED_WCHAR_T''@/$(HAVE_SIGNED_WCHAR_T)/g' \ -e 's/@''WCHAR_T_SUFFIX''@/$(WCHAR_T_SUFFIX)/g' \ -e 's/@''BITSIZEOF_WINT_T''@/$(BITSIZEOF_WINT_T)/g' \ -e 's/@''HAVE_SIGNED_WINT_T''@/$(HAVE_SIGNED_WINT_T)/g' \ -e 's/@''WINT_T_SUFFIX''@/$(WINT_T_SUFFIX)/g' \ < $(srcdir)/stdint.in.h; \ } > $@-t && \ mv $@-t $@ else stdint.h: $(top_builddir)/config.status rm -f $@ endif MOSTLYCLEANFILES += stdint.h stdint.h-t EXTRA_DIST += stdint.in.h ## end gnulib module stdint ## begin gnulib module strerror-override EXTRA_DIST += strerror-override.c strerror-override.h EXTRA_libgnu_la_SOURCES += strerror-override.c ## end gnulib module strerror-override ## begin gnulib module strerror_r-posix EXTRA_DIST += strerror_r.c EXTRA_libgnu_la_SOURCES += strerror_r.c ## end gnulib module strerror_r-posix ## begin gnulib module string BUILT_SOURCES += string.h # We need the following in order to create when the system # doesn't have one that works with the given compiler. string.h: string.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */' && \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_STRING_H''@|$(NEXT_STRING_H)|g' \ -e 's/@''GNULIB_FFSL''@/$(GNULIB_FFSL)/g' \ -e 's/@''GNULIB_FFSLL''@/$(GNULIB_FFSLL)/g' \ -e 's/@''GNULIB_MBSLEN''@/$(GNULIB_MBSLEN)/g' \ -e 's/@''GNULIB_MBSNLEN''@/$(GNULIB_MBSNLEN)/g' \ -e 's/@''GNULIB_MBSCHR''@/$(GNULIB_MBSCHR)/g' \ -e 's/@''GNULIB_MBSRCHR''@/$(GNULIB_MBSRCHR)/g' \ -e 's/@''GNULIB_MBSSTR''@/$(GNULIB_MBSSTR)/g' \ -e 's/@''GNULIB_MBSCASECMP''@/$(GNULIB_MBSCASECMP)/g' \ -e 's/@''GNULIB_MBSNCASECMP''@/$(GNULIB_MBSNCASECMP)/g' \ -e 's/@''GNULIB_MBSPCASECMP''@/$(GNULIB_MBSPCASECMP)/g' \ -e 's/@''GNULIB_MBSCASESTR''@/$(GNULIB_MBSCASESTR)/g' \ -e 's/@''GNULIB_MBSCSPN''@/$(GNULIB_MBSCSPN)/g' \ -e 's/@''GNULIB_MBSPBRK''@/$(GNULIB_MBSPBRK)/g' \ -e 's/@''GNULIB_MBSSPN''@/$(GNULIB_MBSSPN)/g' \ -e 's/@''GNULIB_MBSSEP''@/$(GNULIB_MBSSEP)/g' \ -e 's/@''GNULIB_MBSTOK_R''@/$(GNULIB_MBSTOK_R)/g' \ -e 's/@''GNULIB_MEMCHR''@/$(GNULIB_MEMCHR)/g' \ -e 's/@''GNULIB_MEMMEM''@/$(GNULIB_MEMMEM)/g' \ -e 's/@''GNULIB_MEMPCPY''@/$(GNULIB_MEMPCPY)/g' \ -e 's/@''GNULIB_MEMRCHR''@/$(GNULIB_MEMRCHR)/g' \ -e 's/@''GNULIB_RAWMEMCHR''@/$(GNULIB_RAWMEMCHR)/g' \ -e 's/@''GNULIB_STPCPY''@/$(GNULIB_STPCPY)/g' \ -e 's/@''GNULIB_STPNCPY''@/$(GNULIB_STPNCPY)/g' \ -e 's/@''GNULIB_STRCHRNUL''@/$(GNULIB_STRCHRNUL)/g' \ -e 's/@''GNULIB_STRDUP''@/$(GNULIB_STRDUP)/g' \ -e 's/@''GNULIB_STRNCAT''@/$(GNULIB_STRNCAT)/g' \ -e 's/@''GNULIB_STRNDUP''@/$(GNULIB_STRNDUP)/g' \ -e 's/@''GNULIB_STRNLEN''@/$(GNULIB_STRNLEN)/g' \ -e 's/@''GNULIB_STRPBRK''@/$(GNULIB_STRPBRK)/g' \ -e 's/@''GNULIB_STRSEP''@/$(GNULIB_STRSEP)/g' \ -e 's/@''GNULIB_STRSTR''@/$(GNULIB_STRSTR)/g' \ -e 's/@''GNULIB_STRCASESTR''@/$(GNULIB_STRCASESTR)/g' \ -e 's/@''GNULIB_STRTOK_R''@/$(GNULIB_STRTOK_R)/g' \ -e 's/@''GNULIB_STRERROR''@/$(GNULIB_STRERROR)/g' \ -e 's/@''GNULIB_STRERROR_R''@/$(GNULIB_STRERROR_R)/g' \ -e 's/@''GNULIB_STRSIGNAL''@/$(GNULIB_STRSIGNAL)/g' \ -e 's/@''GNULIB_STRVERSCMP''@/$(GNULIB_STRVERSCMP)/g' \ < $(srcdir)/string.in.h | \ sed -e 's|@''HAVE_FFSL''@|$(HAVE_FFSL)|g' \ -e 's|@''HAVE_FFSLL''@|$(HAVE_FFSLL)|g' \ -e 's|@''HAVE_MBSLEN''@|$(HAVE_MBSLEN)|g' \ -e 's|@''HAVE_MEMCHR''@|$(HAVE_MEMCHR)|g' \ -e 's|@''HAVE_DECL_MEMMEM''@|$(HAVE_DECL_MEMMEM)|g' \ -e 's|@''HAVE_MEMPCPY''@|$(HAVE_MEMPCPY)|g' \ -e 's|@''HAVE_DECL_MEMRCHR''@|$(HAVE_DECL_MEMRCHR)|g' \ -e 's|@''HAVE_RAWMEMCHR''@|$(HAVE_RAWMEMCHR)|g' \ -e 's|@''HAVE_STPCPY''@|$(HAVE_STPCPY)|g' \ -e 's|@''HAVE_STPNCPY''@|$(HAVE_STPNCPY)|g' \ -e 's|@''HAVE_STRCHRNUL''@|$(HAVE_STRCHRNUL)|g' \ -e 's|@''HAVE_DECL_STRDUP''@|$(HAVE_DECL_STRDUP)|g' \ -e 's|@''HAVE_DECL_STRNDUP''@|$(HAVE_DECL_STRNDUP)|g' \ -e 's|@''HAVE_DECL_STRNLEN''@|$(HAVE_DECL_STRNLEN)|g' \ -e 's|@''HAVE_STRPBRK''@|$(HAVE_STRPBRK)|g' \ -e 's|@''HAVE_STRSEP''@|$(HAVE_STRSEP)|g' \ -e 's|@''HAVE_STRCASESTR''@|$(HAVE_STRCASESTR)|g' \ -e 's|@''HAVE_DECL_STRTOK_R''@|$(HAVE_DECL_STRTOK_R)|g' \ -e 's|@''HAVE_DECL_STRERROR_R''@|$(HAVE_DECL_STRERROR_R)|g' \ -e 's|@''HAVE_DECL_STRSIGNAL''@|$(HAVE_DECL_STRSIGNAL)|g' \ -e 's|@''HAVE_STRVERSCMP''@|$(HAVE_STRVERSCMP)|g' \ -e 's|@''REPLACE_STPNCPY''@|$(REPLACE_STPNCPY)|g' \ -e 's|@''REPLACE_MEMCHR''@|$(REPLACE_MEMCHR)|g' \ -e 's|@''REPLACE_MEMMEM''@|$(REPLACE_MEMMEM)|g' \ -e 's|@''REPLACE_STRCASESTR''@|$(REPLACE_STRCASESTR)|g' \ -e 's|@''REPLACE_STRCHRNUL''@|$(REPLACE_STRCHRNUL)|g' \ -e 's|@''REPLACE_STRDUP''@|$(REPLACE_STRDUP)|g' \ -e 's|@''REPLACE_STRSTR''@|$(REPLACE_STRSTR)|g' \ -e 's|@''REPLACE_STRERROR''@|$(REPLACE_STRERROR)|g' \ -e 's|@''REPLACE_STRERROR_R''@|$(REPLACE_STRERROR_R)|g' \ -e 's|@''REPLACE_STRNCAT''@|$(REPLACE_STRNCAT)|g' \ -e 's|@''REPLACE_STRNDUP''@|$(REPLACE_STRNDUP)|g' \ -e 's|@''REPLACE_STRNLEN''@|$(REPLACE_STRNLEN)|g' \ -e 's|@''REPLACE_STRSIGNAL''@|$(REPLACE_STRSIGNAL)|g' \ -e 's|@''REPLACE_STRTOK_R''@|$(REPLACE_STRTOK_R)|g' \ -e 's|@''UNDEFINE_STRTOK_R''@|$(UNDEFINE_STRTOK_R)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ < $(srcdir)/string.in.h; \ } > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += string.h string.h-t EXTRA_DIST += string.in.h ## end gnulib module string ## begin gnulib module sys_types BUILT_SOURCES += sys/types.h # We need the following in order to create when the system # doesn't have one that works with the given compiler. sys/types.h: sys_types.in.h $(top_builddir)/config.status $(AM_V_at)$(MKDIR_P) sys $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_SYS_TYPES_H''@|$(NEXT_SYS_TYPES_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ < $(srcdir)/sys_types.in.h; \ } > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += sys/types.h sys/types.h-t EXTRA_DIST += sys_types.in.h ## end gnulib module sys_types ## begin gnulib module threadlib libgnu_la_SOURCES += glthread/threadlib.c EXTRA_DIST += $(top_srcdir)/gnulib/config.rpath ## end gnulib module threadlib ## begin gnulib module unistd BUILT_SOURCES += unistd.h libgnu_la_SOURCES += unistd.c # We need the following in order to create an empty placeholder for # when the system doesn't have one. unistd.h: unistd.in.h $(top_builddir)/config.status $(CXXDEFS_H) $(ARG_NONNULL_H) $(WARN_ON_USE_H) $(AM_V_GEN)rm -f $@-t $@ && \ { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ sed -e 's|@''GUARD_PREFIX''@|GL|g' \ -e 's|@''HAVE_UNISTD_H''@|$(HAVE_UNISTD_H)|g' \ -e 's|@''INCLUDE_NEXT''@|$(INCLUDE_NEXT)|g' \ -e 's|@''PRAGMA_SYSTEM_HEADER''@|@PRAGMA_SYSTEM_HEADER@|g' \ -e 's|@''PRAGMA_COLUMNS''@|@PRAGMA_COLUMNS@|g' \ -e 's|@''NEXT_UNISTD_H''@|$(NEXT_UNISTD_H)|g' \ -e 's|@''WINDOWS_64_BIT_OFF_T''@|$(WINDOWS_64_BIT_OFF_T)|g' \ -e 's/@''GNULIB_CHDIR''@/$(GNULIB_CHDIR)/g' \ -e 's/@''GNULIB_CHOWN''@/$(GNULIB_CHOWN)/g' \ -e 's/@''GNULIB_CLOSE''@/$(GNULIB_CLOSE)/g' \ -e 's/@''GNULIB_DUP''@/$(GNULIB_DUP)/g' \ -e 's/@''GNULIB_DUP2''@/$(GNULIB_DUP2)/g' \ -e 's/@''GNULIB_DUP3''@/$(GNULIB_DUP3)/g' \ -e 's/@''GNULIB_ENVIRON''@/$(GNULIB_ENVIRON)/g' \ -e 's/@''GNULIB_EUIDACCESS''@/$(GNULIB_EUIDACCESS)/g' \ -e 's/@''GNULIB_FACCESSAT''@/$(GNULIB_FACCESSAT)/g' \ -e 's/@''GNULIB_FCHDIR''@/$(GNULIB_FCHDIR)/g' \ -e 's/@''GNULIB_FCHOWNAT''@/$(GNULIB_FCHOWNAT)/g' \ -e 's/@''GNULIB_FDATASYNC''@/$(GNULIB_FDATASYNC)/g' \ -e 's/@''GNULIB_FSYNC''@/$(GNULIB_FSYNC)/g' \ -e 's/@''GNULIB_FTRUNCATE''@/$(GNULIB_FTRUNCATE)/g' \ -e 's/@''GNULIB_GETCWD''@/$(GNULIB_GETCWD)/g' \ -e 's/@''GNULIB_GETDOMAINNAME''@/$(GNULIB_GETDOMAINNAME)/g' \ -e 's/@''GNULIB_GETDTABLESIZE''@/$(GNULIB_GETDTABLESIZE)/g' \ -e 's/@''GNULIB_GETGROUPS''@/$(GNULIB_GETGROUPS)/g' \ -e 's/@''GNULIB_GETHOSTNAME''@/$(GNULIB_GETHOSTNAME)/g' \ -e 's/@''GNULIB_GETLOGIN''@/$(GNULIB_GETLOGIN)/g' \ -e 's/@''GNULIB_GETLOGIN_R''@/$(GNULIB_GETLOGIN_R)/g' \ -e 's/@''GNULIB_GETPAGESIZE''@/$(GNULIB_GETPAGESIZE)/g' \ -e 's/@''GNULIB_GETUSERSHELL''@/$(GNULIB_GETUSERSHELL)/g' \ -e 's/@''GNULIB_GROUP_MEMBER''@/$(GNULIB_GROUP_MEMBER)/g' \ -e 's/@''GNULIB_ISATTY''@/$(GNULIB_ISATTY)/g' \ -e 's/@''GNULIB_LCHOWN''@/$(GNULIB_LCHOWN)/g' \ -e 's/@''GNULIB_LINK''@/$(GNULIB_LINK)/g' \ -e 's/@''GNULIB_LINKAT''@/$(GNULIB_LINKAT)/g' \ -e 's/@''GNULIB_LSEEK''@/$(GNULIB_LSEEK)/g' \ -e 's/@''GNULIB_PIPE''@/$(GNULIB_PIPE)/g' \ -e 's/@''GNULIB_PIPE2''@/$(GNULIB_PIPE2)/g' \ -e 's/@''GNULIB_PREAD''@/$(GNULIB_PREAD)/g' \ -e 's/@''GNULIB_PWRITE''@/$(GNULIB_PWRITE)/g' \ -e 's/@''GNULIB_READ''@/$(GNULIB_READ)/g' \ -e 's/@''GNULIB_READLINK''@/$(GNULIB_READLINK)/g' \ -e 's/@''GNULIB_READLINKAT''@/$(GNULIB_READLINKAT)/g' \ -e 's/@''GNULIB_RMDIR''@/$(GNULIB_RMDIR)/g' \ -e 's/@''GNULIB_SETHOSTNAME''@/$(GNULIB_SETHOSTNAME)/g' \ -e 's/@''GNULIB_SLEEP''@/$(GNULIB_SLEEP)/g' \ -e 's/@''GNULIB_SYMLINK''@/$(GNULIB_SYMLINK)/g' \ -e 's/@''GNULIB_SYMLINKAT''@/$(GNULIB_SYMLINKAT)/g' \ -e 's/@''GNULIB_TTYNAME_R''@/$(GNULIB_TTYNAME_R)/g' \ -e 's/@''GNULIB_UNISTD_H_GETOPT''@/0$(GNULIB_GL_UNISTD_H_GETOPT)/g' \ -e 's/@''GNULIB_UNISTD_H_NONBLOCKING''@/$(GNULIB_UNISTD_H_NONBLOCKING)/g' \ -e 's/@''GNULIB_UNISTD_H_SIGPIPE''@/$(GNULIB_UNISTD_H_SIGPIPE)/g' \ -e 's/@''GNULIB_UNLINK''@/$(GNULIB_UNLINK)/g' \ -e 's/@''GNULIB_UNLINKAT''@/$(GNULIB_UNLINKAT)/g' \ -e 's/@''GNULIB_USLEEP''@/$(GNULIB_USLEEP)/g' \ -e 's/@''GNULIB_WRITE''@/$(GNULIB_WRITE)/g' \ < $(srcdir)/unistd.in.h | \ sed -e 's|@''HAVE_CHOWN''@|$(HAVE_CHOWN)|g' \ -e 's|@''HAVE_DUP2''@|$(HAVE_DUP2)|g' \ -e 's|@''HAVE_DUP3''@|$(HAVE_DUP3)|g' \ -e 's|@''HAVE_EUIDACCESS''@|$(HAVE_EUIDACCESS)|g' \ -e 's|@''HAVE_FACCESSAT''@|$(HAVE_FACCESSAT)|g' \ -e 's|@''HAVE_FCHDIR''@|$(HAVE_FCHDIR)|g' \ -e 's|@''HAVE_FCHOWNAT''@|$(HAVE_FCHOWNAT)|g' \ -e 's|@''HAVE_FDATASYNC''@|$(HAVE_FDATASYNC)|g' \ -e 's|@''HAVE_FSYNC''@|$(HAVE_FSYNC)|g' \ -e 's|@''HAVE_FTRUNCATE''@|$(HAVE_FTRUNCATE)|g' \ -e 's|@''HAVE_GETDTABLESIZE''@|$(HAVE_GETDTABLESIZE)|g' \ -e 's|@''HAVE_GETGROUPS''@|$(HAVE_GETGROUPS)|g' \ -e 's|@''HAVE_GETHOSTNAME''@|$(HAVE_GETHOSTNAME)|g' \ -e 's|@''HAVE_GETLOGIN''@|$(HAVE_GETLOGIN)|g' \ -e 's|@''HAVE_GETPAGESIZE''@|$(HAVE_GETPAGESIZE)|g' \ -e 's|@''HAVE_GROUP_MEMBER''@|$(HAVE_GROUP_MEMBER)|g' \ -e 's|@''HAVE_LCHOWN''@|$(HAVE_LCHOWN)|g' \ -e 's|@''HAVE_LINK''@|$(HAVE_LINK)|g' \ -e 's|@''HAVE_LINKAT''@|$(HAVE_LINKAT)|g' \ -e 's|@''HAVE_PIPE''@|$(HAVE_PIPE)|g' \ -e 's|@''HAVE_PIPE2''@|$(HAVE_PIPE2)|g' \ -e 's|@''HAVE_PREAD''@|$(HAVE_PREAD)|g' \ -e 's|@''HAVE_PWRITE''@|$(HAVE_PWRITE)|g' \ -e 's|@''HAVE_READLINK''@|$(HAVE_READLINK)|g' \ -e 's|@''HAVE_READLINKAT''@|$(HAVE_READLINKAT)|g' \ -e 's|@''HAVE_SETHOSTNAME''@|$(HAVE_SETHOSTNAME)|g' \ -e 's|@''HAVE_SLEEP''@|$(HAVE_SLEEP)|g' \ -e 's|@''HAVE_SYMLINK''@|$(HAVE_SYMLINK)|g' \ -e 's|@''HAVE_SYMLINKAT''@|$(HAVE_SYMLINKAT)|g' \ -e 's|@''HAVE_UNLINKAT''@|$(HAVE_UNLINKAT)|g' \ -e 's|@''HAVE_USLEEP''@|$(HAVE_USLEEP)|g' \ -e 's|@''HAVE_DECL_ENVIRON''@|$(HAVE_DECL_ENVIRON)|g' \ -e 's|@''HAVE_DECL_FCHDIR''@|$(HAVE_DECL_FCHDIR)|g' \ -e 's|@''HAVE_DECL_FDATASYNC''@|$(HAVE_DECL_FDATASYNC)|g' \ -e 's|@''HAVE_DECL_GETDOMAINNAME''@|$(HAVE_DECL_GETDOMAINNAME)|g' \ -e 's|@''HAVE_DECL_GETLOGIN_R''@|$(HAVE_DECL_GETLOGIN_R)|g' \ -e 's|@''HAVE_DECL_GETPAGESIZE''@|$(HAVE_DECL_GETPAGESIZE)|g' \ -e 's|@''HAVE_DECL_GETUSERSHELL''@|$(HAVE_DECL_GETUSERSHELL)|g' \ -e 's|@''HAVE_DECL_SETHOSTNAME''@|$(HAVE_DECL_SETHOSTNAME)|g' \ -e 's|@''HAVE_DECL_TTYNAME_R''@|$(HAVE_DECL_TTYNAME_R)|g' \ -e 's|@''HAVE_OS_H''@|$(HAVE_OS_H)|g' \ -e 's|@''HAVE_SYS_PARAM_H''@|$(HAVE_SYS_PARAM_H)|g' \ | \ sed -e 's|@''REPLACE_CHOWN''@|$(REPLACE_CHOWN)|g' \ -e 's|@''REPLACE_CLOSE''@|$(REPLACE_CLOSE)|g' \ -e 's|@''REPLACE_DUP''@|$(REPLACE_DUP)|g' \ -e 's|@''REPLACE_DUP2''@|$(REPLACE_DUP2)|g' \ -e 's|@''REPLACE_FCHOWNAT''@|$(REPLACE_FCHOWNAT)|g' \ -e 's|@''REPLACE_FTRUNCATE''@|$(REPLACE_FTRUNCATE)|g' \ -e 's|@''REPLACE_GETCWD''@|$(REPLACE_GETCWD)|g' \ -e 's|@''REPLACE_GETDOMAINNAME''@|$(REPLACE_GETDOMAINNAME)|g' \ -e 's|@''REPLACE_GETDTABLESIZE''@|$(REPLACE_GETDTABLESIZE)|g' \ -e 's|@''REPLACE_GETLOGIN_R''@|$(REPLACE_GETLOGIN_R)|g' \ -e 's|@''REPLACE_GETGROUPS''@|$(REPLACE_GETGROUPS)|g' \ -e 's|@''REPLACE_GETPAGESIZE''@|$(REPLACE_GETPAGESIZE)|g' \ -e 's|@''REPLACE_ISATTY''@|$(REPLACE_ISATTY)|g' \ -e 's|@''REPLACE_LCHOWN''@|$(REPLACE_LCHOWN)|g' \ -e 's|@''REPLACE_LINK''@|$(REPLACE_LINK)|g' \ -e 's|@''REPLACE_LINKAT''@|$(REPLACE_LINKAT)|g' \ -e 's|@''REPLACE_LSEEK''@|$(REPLACE_LSEEK)|g' \ -e 's|@''REPLACE_PREAD''@|$(REPLACE_PREAD)|g' \ -e 's|@''REPLACE_PWRITE''@|$(REPLACE_PWRITE)|g' \ -e 's|@''REPLACE_READ''@|$(REPLACE_READ)|g' \ -e 's|@''REPLACE_READLINK''@|$(REPLACE_READLINK)|g' \ -e 's|@''REPLACE_RMDIR''@|$(REPLACE_RMDIR)|g' \ -e 's|@''REPLACE_SLEEP''@|$(REPLACE_SLEEP)|g' \ -e 's|@''REPLACE_SYMLINK''@|$(REPLACE_SYMLINK)|g' \ -e 's|@''REPLACE_TTYNAME_R''@|$(REPLACE_TTYNAME_R)|g' \ -e 's|@''REPLACE_UNLINK''@|$(REPLACE_UNLINK)|g' \ -e 's|@''REPLACE_UNLINKAT''@|$(REPLACE_UNLINKAT)|g' \ -e 's|@''REPLACE_USLEEP''@|$(REPLACE_USLEEP)|g' \ -e 's|@''REPLACE_WRITE''@|$(REPLACE_WRITE)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H''@|$(UNISTD_H_HAVE_WINSOCK2_H)|g' \ -e 's|@''UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS''@|$(UNISTD_H_HAVE_WINSOCK2_H_AND_USE_SOCKETS)|g' \ -e '/definitions of _GL_FUNCDECL_RPL/r $(CXXDEFS_H)' \ -e '/definition of _GL_ARG_NONNULL/r $(ARG_NONNULL_H)' \ -e '/definition of _GL_WARN_ON_USE/r $(WARN_ON_USE_H)'; \ } > $@-t && \ mv $@-t $@ MOSTLYCLEANFILES += unistd.h unistd.h-t EXTRA_DIST += unistd.in.h ## end gnulib module unistd mostlyclean-local: mostlyclean-generic @for dir in '' $(MOSTLYCLEANDIRS); do \ if test -n "$$dir" && test -d $$dir; then \ echo "rmdir $$dir"; rmdir $$dir; \ fi; \ done; \ : ttfautohint-0.97/gnulib/src/string.in.h0000644000175000001440000011646112237364242015110 00000000000000/* A GNU-like . Copyright (C) 1995-1996, 2001-2013 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 3, 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 . */ #ifndef _@GUARD_PREFIX@_STRING_H #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_STRING_H@ #ifndef _@GUARD_PREFIX@_STRING_H #define _@GUARD_PREFIX@_STRING_H /* NetBSD 5.0 mis-defines NULL. */ #include /* MirBSD defines mbslen as a macro. */ #if @GNULIB_MBSLEN@ && defined __MirBSD__ # include #endif /* The __attribute__ feature is available in gcc versions 2.5 and later. The attribute __pure__ was added in gcc 2.96. */ #if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 96) # define _GL_ATTRIBUTE_PURE __attribute__ ((__pure__)) #else # define _GL_ATTRIBUTE_PURE /* empty */ #endif /* NetBSD 5.0 declares strsignal in , not in . */ /* But in any case avoid namespace pollution on glibc systems. */ #if (@GNULIB_STRSIGNAL@ || defined GNULIB_POSIXCHECK) && defined __NetBSD__ \ && ! defined __GLIBC__ # include #endif /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */ /* The definition of _GL_ARG_NONNULL is copied here. */ /* The definition of _GL_WARN_ON_USE is copied here. */ /* Find the index of the least-significant set bit. */ #if @GNULIB_FFSL@ # if !@HAVE_FFSL@ _GL_FUNCDECL_SYS (ffsl, int, (long int i)); # endif _GL_CXXALIAS_SYS (ffsl, int, (long int i)); _GL_CXXALIASWARN (ffsl); #elif defined GNULIB_POSIXCHECK # undef ffsl # if HAVE_RAW_DECL_FFSL _GL_WARN_ON_USE (ffsl, "ffsl is not portable - use the ffsl module"); # endif #endif /* Find the index of the least-significant set bit. */ #if @GNULIB_FFSLL@ # if !@HAVE_FFSLL@ _GL_FUNCDECL_SYS (ffsll, int, (long long int i)); # endif _GL_CXXALIAS_SYS (ffsll, int, (long long int i)); _GL_CXXALIASWARN (ffsll); #elif defined GNULIB_POSIXCHECK # undef ffsll # if HAVE_RAW_DECL_FFSLL _GL_WARN_ON_USE (ffsll, "ffsll is not portable - use the ffsll module"); # endif #endif /* Return the first instance of C within N bytes of S, or NULL. */ #if @GNULIB_MEMCHR@ # if @REPLACE_MEMCHR@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define memchr rpl_memchr # endif _GL_FUNCDECL_RPL (memchr, void *, (void const *__s, int __c, size_t __n) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (memchr, void *, (void const *__s, int __c, size_t __n)); # else # if ! @HAVE_MEMCHR@ _GL_FUNCDECL_SYS (memchr, void *, (void const *__s, int __c, size_t __n) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); # endif /* On some systems, this function is defined as an overloaded function: extern "C" { const void * std::memchr (const void *, int, size_t); } extern "C++" { void * std::memchr (void *, int, size_t); } */ _GL_CXXALIAS_SYS_CAST2 (memchr, void *, (void const *__s, int __c, size_t __n), void const *, (void const *__s, int __c, size_t __n)); # endif # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) _GL_CXXALIASWARN1 (memchr, void *, (void *__s, int __c, size_t __n)); _GL_CXXALIASWARN1 (memchr, void const *, (void const *__s, int __c, size_t __n)); # else _GL_CXXALIASWARN (memchr); # endif #elif defined GNULIB_POSIXCHECK # undef memchr /* Assume memchr is always declared. */ _GL_WARN_ON_USE (memchr, "memchr has platform-specific bugs - " "use gnulib module memchr for portability" ); #endif /* Return the first occurrence of NEEDLE in HAYSTACK. */ #if @GNULIB_MEMMEM@ # if @REPLACE_MEMMEM@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define memmem rpl_memmem # endif _GL_FUNCDECL_RPL (memmem, void *, (void const *__haystack, size_t __haystack_len, void const *__needle, size_t __needle_len) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 3))); _GL_CXXALIAS_RPL (memmem, void *, (void const *__haystack, size_t __haystack_len, void const *__needle, size_t __needle_len)); # else # if ! @HAVE_DECL_MEMMEM@ _GL_FUNCDECL_SYS (memmem, void *, (void const *__haystack, size_t __haystack_len, void const *__needle, size_t __needle_len) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 3))); # endif _GL_CXXALIAS_SYS (memmem, void *, (void const *__haystack, size_t __haystack_len, void const *__needle, size_t __needle_len)); # endif _GL_CXXALIASWARN (memmem); #elif defined GNULIB_POSIXCHECK # undef memmem # if HAVE_RAW_DECL_MEMMEM _GL_WARN_ON_USE (memmem, "memmem is unportable and often quadratic - " "use gnulib module memmem-simple for portability, " "and module memmem for speed" ); # endif #endif /* Copy N bytes of SRC to DEST, return pointer to bytes after the last written byte. */ #if @GNULIB_MEMPCPY@ # if ! @HAVE_MEMPCPY@ _GL_FUNCDECL_SYS (mempcpy, void *, (void *restrict __dest, void const *restrict __src, size_t __n) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (mempcpy, void *, (void *restrict __dest, void const *restrict __src, size_t __n)); _GL_CXXALIASWARN (mempcpy); #elif defined GNULIB_POSIXCHECK # undef mempcpy # if HAVE_RAW_DECL_MEMPCPY _GL_WARN_ON_USE (mempcpy, "mempcpy is unportable - " "use gnulib module mempcpy for portability"); # endif #endif /* Search backwards through a block for a byte (specified as an int). */ #if @GNULIB_MEMRCHR@ # if ! @HAVE_DECL_MEMRCHR@ _GL_FUNCDECL_SYS (memrchr, void *, (void const *, int, size_t) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); # endif /* On some systems, this function is defined as an overloaded function: extern "C++" { const void * std::memrchr (const void *, int, size_t); } extern "C++" { void * std::memrchr (void *, int, size_t); } */ _GL_CXXALIAS_SYS_CAST2 (memrchr, void *, (void const *, int, size_t), void const *, (void const *, int, size_t)); # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) _GL_CXXALIASWARN1 (memrchr, void *, (void *, int, size_t)); _GL_CXXALIASWARN1 (memrchr, void const *, (void const *, int, size_t)); # else _GL_CXXALIASWARN (memrchr); # endif #elif defined GNULIB_POSIXCHECK # undef memrchr # if HAVE_RAW_DECL_MEMRCHR _GL_WARN_ON_USE (memrchr, "memrchr is unportable - " "use gnulib module memrchr for portability"); # endif #endif /* Find the first occurrence of C in S. More efficient than memchr(S,C,N), at the expense of undefined behavior if C does not occur within N bytes. */ #if @GNULIB_RAWMEMCHR@ # if ! @HAVE_RAWMEMCHR@ _GL_FUNCDECL_SYS (rawmemchr, void *, (void const *__s, int __c_in) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); # endif /* On some systems, this function is defined as an overloaded function: extern "C++" { const void * std::rawmemchr (const void *, int); } extern "C++" { void * std::rawmemchr (void *, int); } */ _GL_CXXALIAS_SYS_CAST2 (rawmemchr, void *, (void const *__s, int __c_in), void const *, (void const *__s, int __c_in)); # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) _GL_CXXALIASWARN1 (rawmemchr, void *, (void *__s, int __c_in)); _GL_CXXALIASWARN1 (rawmemchr, void const *, (void const *__s, int __c_in)); # else _GL_CXXALIASWARN (rawmemchr); # endif #elif defined GNULIB_POSIXCHECK # undef rawmemchr # if HAVE_RAW_DECL_RAWMEMCHR _GL_WARN_ON_USE (rawmemchr, "rawmemchr is unportable - " "use gnulib module rawmemchr for portability"); # endif #endif /* Copy SRC to DST, returning the address of the terminating '\0' in DST. */ #if @GNULIB_STPCPY@ # if ! @HAVE_STPCPY@ _GL_FUNCDECL_SYS (stpcpy, char *, (char *restrict __dst, char const *restrict __src) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (stpcpy, char *, (char *restrict __dst, char const *restrict __src)); _GL_CXXALIASWARN (stpcpy); #elif defined GNULIB_POSIXCHECK # undef stpcpy # if HAVE_RAW_DECL_STPCPY _GL_WARN_ON_USE (stpcpy, "stpcpy is unportable - " "use gnulib module stpcpy for portability"); # endif #endif /* Copy no more than N bytes of SRC to DST, returning a pointer past the last non-NUL byte written into DST. */ #if @GNULIB_STPNCPY@ # if @REPLACE_STPNCPY@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef stpncpy # define stpncpy rpl_stpncpy # endif _GL_FUNCDECL_RPL (stpncpy, char *, (char *restrict __dst, char const *restrict __src, size_t __n) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (stpncpy, char *, (char *restrict __dst, char const *restrict __src, size_t __n)); # else # if ! @HAVE_STPNCPY@ _GL_FUNCDECL_SYS (stpncpy, char *, (char *restrict __dst, char const *restrict __src, size_t __n) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (stpncpy, char *, (char *restrict __dst, char const *restrict __src, size_t __n)); # endif _GL_CXXALIASWARN (stpncpy); #elif defined GNULIB_POSIXCHECK # undef stpncpy # if HAVE_RAW_DECL_STPNCPY _GL_WARN_ON_USE (stpncpy, "stpncpy is unportable - " "use gnulib module stpncpy for portability"); # endif #endif #if defined GNULIB_POSIXCHECK /* strchr() does not work with multibyte strings if the locale encoding is GB18030 and the character to be searched is a digit. */ # undef strchr /* Assume strchr is always declared. */ _GL_WARN_ON_USE (strchr, "strchr cannot work correctly on character strings " "in some multibyte locales - " "use mbschr if you care about internationalization"); #endif /* Find the first occurrence of C in S or the final NUL byte. */ #if @GNULIB_STRCHRNUL@ # if @REPLACE_STRCHRNUL@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define strchrnul rpl_strchrnul # endif _GL_FUNCDECL_RPL (strchrnul, char *, (const char *__s, int __c_in) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (strchrnul, char *, (const char *str, int ch)); # else # if ! @HAVE_STRCHRNUL@ _GL_FUNCDECL_SYS (strchrnul, char *, (char const *__s, int __c_in) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); # endif /* On some systems, this function is defined as an overloaded function: extern "C++" { const char * std::strchrnul (const char *, int); } extern "C++" { char * std::strchrnul (char *, int); } */ _GL_CXXALIAS_SYS_CAST2 (strchrnul, char *, (char const *__s, int __c_in), char const *, (char const *__s, int __c_in)); # endif # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) _GL_CXXALIASWARN1 (strchrnul, char *, (char *__s, int __c_in)); _GL_CXXALIASWARN1 (strchrnul, char const *, (char const *__s, int __c_in)); # else _GL_CXXALIASWARN (strchrnul); # endif #elif defined GNULIB_POSIXCHECK # undef strchrnul # if HAVE_RAW_DECL_STRCHRNUL _GL_WARN_ON_USE (strchrnul, "strchrnul is unportable - " "use gnulib module strchrnul for portability"); # endif #endif /* Duplicate S, returning an identical malloc'd string. */ #if @GNULIB_STRDUP@ # if @REPLACE_STRDUP@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef strdup # define strdup rpl_strdup # endif _GL_FUNCDECL_RPL (strdup, char *, (char const *__s) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (strdup, char *, (char const *__s)); # else # if defined __cplusplus && defined GNULIB_NAMESPACE && defined strdup /* strdup exists as a function and as a macro. Get rid of the macro. */ # undef strdup # endif # if !(@HAVE_DECL_STRDUP@ || defined strdup) _GL_FUNCDECL_SYS (strdup, char *, (char const *__s) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (strdup, char *, (char const *__s)); # endif _GL_CXXALIASWARN (strdup); #elif defined GNULIB_POSIXCHECK # undef strdup # if HAVE_RAW_DECL_STRDUP _GL_WARN_ON_USE (strdup, "strdup is unportable - " "use gnulib module strdup for portability"); # endif #endif /* Append no more than N characters from SRC onto DEST. */ #if @GNULIB_STRNCAT@ # if @REPLACE_STRNCAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef strncat # define strncat rpl_strncat # endif _GL_FUNCDECL_RPL (strncat, char *, (char *dest, const char *src, size_t n) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (strncat, char *, (char *dest, const char *src, size_t n)); # else _GL_CXXALIAS_SYS (strncat, char *, (char *dest, const char *src, size_t n)); # endif _GL_CXXALIASWARN (strncat); #elif defined GNULIB_POSIXCHECK # undef strncat # if HAVE_RAW_DECL_STRNCAT _GL_WARN_ON_USE (strncat, "strncat is unportable - " "use gnulib module strncat for portability"); # endif #endif /* Return a newly allocated copy of at most N bytes of STRING. */ #if @GNULIB_STRNDUP@ # if @REPLACE_STRNDUP@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef strndup # define strndup rpl_strndup # endif _GL_FUNCDECL_RPL (strndup, char *, (char const *__string, size_t __n) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (strndup, char *, (char const *__string, size_t __n)); # else # if ! @HAVE_DECL_STRNDUP@ _GL_FUNCDECL_SYS (strndup, char *, (char const *__string, size_t __n) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (strndup, char *, (char const *__string, size_t __n)); # endif _GL_CXXALIASWARN (strndup); #elif defined GNULIB_POSIXCHECK # undef strndup # if HAVE_RAW_DECL_STRNDUP _GL_WARN_ON_USE (strndup, "strndup is unportable - " "use gnulib module strndup for portability"); # endif #endif /* Find the length (number of bytes) of STRING, but scan at most MAXLEN bytes. If no '\0' terminator is found in that many bytes, return MAXLEN. */ #if @GNULIB_STRNLEN@ # if @REPLACE_STRNLEN@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef strnlen # define strnlen rpl_strnlen # endif _GL_FUNCDECL_RPL (strnlen, size_t, (char const *__string, size_t __maxlen) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (strnlen, size_t, (char const *__string, size_t __maxlen)); # else # if ! @HAVE_DECL_STRNLEN@ _GL_FUNCDECL_SYS (strnlen, size_t, (char const *__string, size_t __maxlen) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (strnlen, size_t, (char const *__string, size_t __maxlen)); # endif _GL_CXXALIASWARN (strnlen); #elif defined GNULIB_POSIXCHECK # undef strnlen # if HAVE_RAW_DECL_STRNLEN _GL_WARN_ON_USE (strnlen, "strnlen is unportable - " "use gnulib module strnlen for portability"); # endif #endif #if defined GNULIB_POSIXCHECK /* strcspn() assumes the second argument is a list of single-byte characters. Even in this simple case, it does not work with multibyte strings if the locale encoding is GB18030 and one of the characters to be searched is a digit. */ # undef strcspn /* Assume strcspn is always declared. */ _GL_WARN_ON_USE (strcspn, "strcspn cannot work correctly on character strings " "in multibyte locales - " "use mbscspn if you care about internationalization"); #endif /* Find the first occurrence in S of any character in ACCEPT. */ #if @GNULIB_STRPBRK@ # if ! @HAVE_STRPBRK@ _GL_FUNCDECL_SYS (strpbrk, char *, (char const *__s, char const *__accept) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2))); # endif /* On some systems, this function is defined as an overloaded function: extern "C" { const char * strpbrk (const char *, const char *); } extern "C++" { char * strpbrk (char *, const char *); } */ _GL_CXXALIAS_SYS_CAST2 (strpbrk, char *, (char const *__s, char const *__accept), const char *, (char const *__s, char const *__accept)); # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) _GL_CXXALIASWARN1 (strpbrk, char *, (char *__s, char const *__accept)); _GL_CXXALIASWARN1 (strpbrk, char const *, (char const *__s, char const *__accept)); # else _GL_CXXALIASWARN (strpbrk); # endif # if defined GNULIB_POSIXCHECK /* strpbrk() assumes the second argument is a list of single-byte characters. Even in this simple case, it does not work with multibyte strings if the locale encoding is GB18030 and one of the characters to be searched is a digit. */ # undef strpbrk _GL_WARN_ON_USE (strpbrk, "strpbrk cannot work correctly on character strings " "in multibyte locales - " "use mbspbrk if you care about internationalization"); # endif #elif defined GNULIB_POSIXCHECK # undef strpbrk # if HAVE_RAW_DECL_STRPBRK _GL_WARN_ON_USE (strpbrk, "strpbrk is unportable - " "use gnulib module strpbrk for portability"); # endif #endif #if defined GNULIB_POSIXCHECK /* strspn() assumes the second argument is a list of single-byte characters. Even in this simple case, it cannot work with multibyte strings. */ # undef strspn /* Assume strspn is always declared. */ _GL_WARN_ON_USE (strspn, "strspn cannot work correctly on character strings " "in multibyte locales - " "use mbsspn if you care about internationalization"); #endif #if defined GNULIB_POSIXCHECK /* strrchr() does not work with multibyte strings if the locale encoding is GB18030 and the character to be searched is a digit. */ # undef strrchr /* Assume strrchr is always declared. */ _GL_WARN_ON_USE (strrchr, "strrchr cannot work correctly on character strings " "in some multibyte locales - " "use mbsrchr if you care about internationalization"); #endif /* Search the next delimiter (char listed in DELIM) starting at *STRINGP. If one is found, overwrite it with a NUL, and advance *STRINGP to point to the next char after it. Otherwise, set *STRINGP to NULL. If *STRINGP was already NULL, nothing happens. Return the old value of *STRINGP. This is a variant of strtok() that is multithread-safe and supports empty fields. Caveat: It modifies the original string. Caveat: These functions cannot be used on constant strings. Caveat: The identity of the delimiting character is lost. Caveat: It doesn't work with multibyte strings unless all of the delimiter characters are ASCII characters < 0x30. See also strtok_r(). */ #if @GNULIB_STRSEP@ # if ! @HAVE_STRSEP@ _GL_FUNCDECL_SYS (strsep, char *, (char **restrict __stringp, char const *restrict __delim) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (strsep, char *, (char **restrict __stringp, char const *restrict __delim)); _GL_CXXALIASWARN (strsep); # if defined GNULIB_POSIXCHECK # undef strsep _GL_WARN_ON_USE (strsep, "strsep cannot work correctly on character strings " "in multibyte locales - " "use mbssep if you care about internationalization"); # endif #elif defined GNULIB_POSIXCHECK # undef strsep # if HAVE_RAW_DECL_STRSEP _GL_WARN_ON_USE (strsep, "strsep is unportable - " "use gnulib module strsep for portability"); # endif #endif #if @GNULIB_STRSTR@ # if @REPLACE_STRSTR@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define strstr rpl_strstr # endif _GL_FUNCDECL_RPL (strstr, char *, (const char *haystack, const char *needle) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (strstr, char *, (const char *haystack, const char *needle)); # else /* On some systems, this function is defined as an overloaded function: extern "C++" { const char * strstr (const char *, const char *); } extern "C++" { char * strstr (char *, const char *); } */ _GL_CXXALIAS_SYS_CAST2 (strstr, char *, (const char *haystack, const char *needle), const char *, (const char *haystack, const char *needle)); # endif # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) _GL_CXXALIASWARN1 (strstr, char *, (char *haystack, const char *needle)); _GL_CXXALIASWARN1 (strstr, const char *, (const char *haystack, const char *needle)); # else _GL_CXXALIASWARN (strstr); # endif #elif defined GNULIB_POSIXCHECK /* strstr() does not work with multibyte strings if the locale encoding is different from UTF-8: POSIX says that it operates on "strings", and "string" in POSIX is defined as a sequence of bytes, not of characters. */ # undef strstr /* Assume strstr is always declared. */ _GL_WARN_ON_USE (strstr, "strstr is quadratic on many systems, and cannot " "work correctly on character strings in most " "multibyte locales - " "use mbsstr if you care about internationalization, " "or use strstr if you care about speed"); #endif /* Find the first occurrence of NEEDLE in HAYSTACK, using case-insensitive comparison. */ #if @GNULIB_STRCASESTR@ # if @REPLACE_STRCASESTR@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define strcasestr rpl_strcasestr # endif _GL_FUNCDECL_RPL (strcasestr, char *, (const char *haystack, const char *needle) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (strcasestr, char *, (const char *haystack, const char *needle)); # else # if ! @HAVE_STRCASESTR@ _GL_FUNCDECL_SYS (strcasestr, char *, (const char *haystack, const char *needle) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2))); # endif /* On some systems, this function is defined as an overloaded function: extern "C++" { const char * strcasestr (const char *, const char *); } extern "C++" { char * strcasestr (char *, const char *); } */ _GL_CXXALIAS_SYS_CAST2 (strcasestr, char *, (const char *haystack, const char *needle), const char *, (const char *haystack, const char *needle)); # endif # if ((__GLIBC__ == 2 && __GLIBC_MINOR__ >= 10) && !defined __UCLIBC__) \ && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 4)) _GL_CXXALIASWARN1 (strcasestr, char *, (char *haystack, const char *needle)); _GL_CXXALIASWARN1 (strcasestr, const char *, (const char *haystack, const char *needle)); # else _GL_CXXALIASWARN (strcasestr); # endif #elif defined GNULIB_POSIXCHECK /* strcasestr() does not work with multibyte strings: It is a glibc extension, and glibc implements it only for unibyte locales. */ # undef strcasestr # if HAVE_RAW_DECL_STRCASESTR _GL_WARN_ON_USE (strcasestr, "strcasestr does work correctly on character " "strings in multibyte locales - " "use mbscasestr if you care about " "internationalization, or use c-strcasestr if you want " "a locale independent function"); # endif #endif /* Parse S into tokens separated by characters in DELIM. If S is NULL, the saved pointer in SAVE_PTR is used as the next starting point. For example: char s[] = "-abc-=-def"; char *sp; x = strtok_r(s, "-", &sp); // x = "abc", sp = "=-def" x = strtok_r(NULL, "-=", &sp); // x = "def", sp = NULL x = strtok_r(NULL, "=", &sp); // x = NULL // s = "abc\0-def\0" This is a variant of strtok() that is multithread-safe. For the POSIX documentation for this function, see: http://www.opengroup.org/susv3xsh/strtok.html Caveat: It modifies the original string. Caveat: These functions cannot be used on constant strings. Caveat: The identity of the delimiting character is lost. Caveat: It doesn't work with multibyte strings unless all of the delimiter characters are ASCII characters < 0x30. See also strsep(). */ #if @GNULIB_STRTOK_R@ # if @REPLACE_STRTOK_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef strtok_r # define strtok_r rpl_strtok_r # endif _GL_FUNCDECL_RPL (strtok_r, char *, (char *restrict s, char const *restrict delim, char **restrict save_ptr) _GL_ARG_NONNULL ((2, 3))); _GL_CXXALIAS_RPL (strtok_r, char *, (char *restrict s, char const *restrict delim, char **restrict save_ptr)); # else # if @UNDEFINE_STRTOK_R@ || defined GNULIB_POSIXCHECK # undef strtok_r # endif # if ! @HAVE_DECL_STRTOK_R@ _GL_FUNCDECL_SYS (strtok_r, char *, (char *restrict s, char const *restrict delim, char **restrict save_ptr) _GL_ARG_NONNULL ((2, 3))); # endif _GL_CXXALIAS_SYS (strtok_r, char *, (char *restrict s, char const *restrict delim, char **restrict save_ptr)); # endif _GL_CXXALIASWARN (strtok_r); # if defined GNULIB_POSIXCHECK _GL_WARN_ON_USE (strtok_r, "strtok_r cannot work correctly on character " "strings in multibyte locales - " "use mbstok_r if you care about internationalization"); # endif #elif defined GNULIB_POSIXCHECK # undef strtok_r # if HAVE_RAW_DECL_STRTOK_R _GL_WARN_ON_USE (strtok_r, "strtok_r is unportable - " "use gnulib module strtok_r for portability"); # endif #endif /* The following functions are not specified by POSIX. They are gnulib extensions. */ #if @GNULIB_MBSLEN@ /* Return the number of multibyte characters in the character string STRING. This considers multibyte characters, unlike strlen, which counts bytes. */ # ifdef __MirBSD__ /* MirBSD defines mbslen as a macro. Override it. */ # undef mbslen # endif # if @HAVE_MBSLEN@ /* AIX, OSF/1, MirBSD define mbslen already in libc. */ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define mbslen rpl_mbslen # endif _GL_FUNCDECL_RPL (mbslen, size_t, (const char *string) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (mbslen, size_t, (const char *string)); # else _GL_FUNCDECL_SYS (mbslen, size_t, (const char *string) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_SYS (mbslen, size_t, (const char *string)); # endif _GL_CXXALIASWARN (mbslen); #endif #if @GNULIB_MBSNLEN@ /* Return the number of multibyte characters in the character string starting at STRING and ending at STRING + LEN. */ _GL_EXTERN_C size_t mbsnlen (const char *string, size_t len) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1)); #endif #if @GNULIB_MBSCHR@ /* Locate the first single-byte character C in the character string STRING, and return a pointer to it. Return NULL if C is not found in STRING. Unlike strchr(), this function works correctly in multibyte locales with encodings such as GB18030. */ # if defined __hpux # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define mbschr rpl_mbschr /* avoid collision with HP-UX function */ # endif _GL_FUNCDECL_RPL (mbschr, char *, (const char *string, int c) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (mbschr, char *, (const char *string, int c)); # else _GL_FUNCDECL_SYS (mbschr, char *, (const char *string, int c) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_SYS (mbschr, char *, (const char *string, int c)); # endif _GL_CXXALIASWARN (mbschr); #endif #if @GNULIB_MBSRCHR@ /* Locate the last single-byte character C in the character string STRING, and return a pointer to it. Return NULL if C is not found in STRING. Unlike strrchr(), this function works correctly in multibyte locales with encodings such as GB18030. */ # if defined __hpux || defined __INTERIX # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define mbsrchr rpl_mbsrchr /* avoid collision with system function */ # endif _GL_FUNCDECL_RPL (mbsrchr, char *, (const char *string, int c) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (mbsrchr, char *, (const char *string, int c)); # else _GL_FUNCDECL_SYS (mbsrchr, char *, (const char *string, int c) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_SYS (mbsrchr, char *, (const char *string, int c)); # endif _GL_CXXALIASWARN (mbsrchr); #endif #if @GNULIB_MBSSTR@ /* Find the first occurrence of the character string NEEDLE in the character string HAYSTACK. Return NULL if NEEDLE is not found in HAYSTACK. Unlike strstr(), this function works correctly in multibyte locales with encodings different from UTF-8. */ _GL_EXTERN_C char * mbsstr (const char *haystack, const char *needle) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSCASECMP@ /* Compare the character strings S1 and S2, ignoring case, returning less than, equal to or greater than zero if S1 is lexicographically less than, equal to or greater than S2. Note: This function may, in multibyte locales, return 0 for strings of different lengths! Unlike strcasecmp(), this function works correctly in multibyte locales. */ _GL_EXTERN_C int mbscasecmp (const char *s1, const char *s2) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSNCASECMP@ /* Compare the initial segment of the character string S1 consisting of at most N characters with the initial segment of the character string S2 consisting of at most N characters, ignoring case, returning less than, equal to or greater than zero if the initial segment of S1 is lexicographically less than, equal to or greater than the initial segment of S2. Note: This function may, in multibyte locales, return 0 for initial segments of different lengths! Unlike strncasecmp(), this function works correctly in multibyte locales. But beware that N is not a byte count but a character count! */ _GL_EXTERN_C int mbsncasecmp (const char *s1, const char *s2, size_t n) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSPCASECMP@ /* Compare the initial segment of the character string STRING consisting of at most mbslen (PREFIX) characters with the character string PREFIX, ignoring case. If the two match, return a pointer to the first byte after this prefix in STRING. Otherwise, return NULL. Note: This function may, in multibyte locales, return non-NULL if STRING is of smaller length than PREFIX! Unlike strncasecmp(), this function works correctly in multibyte locales. */ _GL_EXTERN_C char * mbspcasecmp (const char *string, const char *prefix) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSCASESTR@ /* Find the first occurrence of the character string NEEDLE in the character string HAYSTACK, using case-insensitive comparison. Note: This function may, in multibyte locales, return success even if strlen (haystack) < strlen (needle) ! Unlike strcasestr(), this function works correctly in multibyte locales. */ _GL_EXTERN_C char * mbscasestr (const char *haystack, const char *needle) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSCSPN@ /* Find the first occurrence in the character string STRING of any character in the character string ACCEPT. Return the number of bytes from the beginning of the string to this occurrence, or to the end of the string if none exists. Unlike strcspn(), this function works correctly in multibyte locales. */ _GL_EXTERN_C size_t mbscspn (const char *string, const char *accept) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSPBRK@ /* Find the first occurrence in the character string STRING of any character in the character string ACCEPT. Return the pointer to it, or NULL if none exists. Unlike strpbrk(), this function works correctly in multibyte locales. */ # if defined __hpux # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define mbspbrk rpl_mbspbrk /* avoid collision with HP-UX function */ # endif _GL_FUNCDECL_RPL (mbspbrk, char *, (const char *string, const char *accept) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (mbspbrk, char *, (const char *string, const char *accept)); # else _GL_FUNCDECL_SYS (mbspbrk, char *, (const char *string, const char *accept) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_SYS (mbspbrk, char *, (const char *string, const char *accept)); # endif _GL_CXXALIASWARN (mbspbrk); #endif #if @GNULIB_MBSSPN@ /* Find the first occurrence in the character string STRING of any character not in the character string REJECT. Return the number of bytes from the beginning of the string to this occurrence, or to the end of the string if none exists. Unlike strspn(), this function works correctly in multibyte locales. */ _GL_EXTERN_C size_t mbsspn (const char *string, const char *reject) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSSEP@ /* Search the next delimiter (multibyte character listed in the character string DELIM) starting at the character string *STRINGP. If one is found, overwrite it with a NUL, and advance *STRINGP to point to the next multibyte character after it. Otherwise, set *STRINGP to NULL. If *STRINGP was already NULL, nothing happens. Return the old value of *STRINGP. This is a variant of mbstok_r() that supports empty fields. Caveat: It modifies the original string. Caveat: These functions cannot be used on constant strings. Caveat: The identity of the delimiting character is lost. See also mbstok_r(). */ _GL_EXTERN_C char * mbssep (char **stringp, const char *delim) _GL_ARG_NONNULL ((1, 2)); #endif #if @GNULIB_MBSTOK_R@ /* Parse the character string STRING into tokens separated by characters in the character string DELIM. If STRING is NULL, the saved pointer in SAVE_PTR is used as the next starting point. For example: char s[] = "-abc-=-def"; char *sp; x = mbstok_r(s, "-", &sp); // x = "abc", sp = "=-def" x = mbstok_r(NULL, "-=", &sp); // x = "def", sp = NULL x = mbstok_r(NULL, "=", &sp); // x = NULL // s = "abc\0-def\0" Caveat: It modifies the original string. Caveat: These functions cannot be used on constant strings. Caveat: The identity of the delimiting character is lost. See also mbssep(). */ _GL_EXTERN_C char * mbstok_r (char *string, const char *delim, char **save_ptr) _GL_ARG_NONNULL ((2, 3)); #endif /* Map any int, typically from errno, into an error message. */ #if @GNULIB_STRERROR@ # if @REPLACE_STRERROR@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef strerror # define strerror rpl_strerror # endif _GL_FUNCDECL_RPL (strerror, char *, (int)); _GL_CXXALIAS_RPL (strerror, char *, (int)); # else _GL_CXXALIAS_SYS (strerror, char *, (int)); # endif _GL_CXXALIASWARN (strerror); #elif defined GNULIB_POSIXCHECK # undef strerror /* Assume strerror is always declared. */ _GL_WARN_ON_USE (strerror, "strerror is unportable - " "use gnulib module strerror to guarantee non-NULL result"); #endif /* Map any int, typically from errno, into an error message. Multithread-safe. Uses the POSIX declaration, not the glibc declaration. */ #if @GNULIB_STRERROR_R@ # if @REPLACE_STRERROR_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef strerror_r # define strerror_r rpl_strerror_r # endif _GL_FUNCDECL_RPL (strerror_r, int, (int errnum, char *buf, size_t buflen) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (strerror_r, int, (int errnum, char *buf, size_t buflen)); # else # if !@HAVE_DECL_STRERROR_R@ _GL_FUNCDECL_SYS (strerror_r, int, (int errnum, char *buf, size_t buflen) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (strerror_r, int, (int errnum, char *buf, size_t buflen)); # endif # if @HAVE_DECL_STRERROR_R@ _GL_CXXALIASWARN (strerror_r); # endif #elif defined GNULIB_POSIXCHECK # undef strerror_r # if HAVE_RAW_DECL_STRERROR_R _GL_WARN_ON_USE (strerror_r, "strerror_r is unportable - " "use gnulib module strerror_r-posix for portability"); # endif #endif #if @GNULIB_STRSIGNAL@ # if @REPLACE_STRSIGNAL@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define strsignal rpl_strsignal # endif _GL_FUNCDECL_RPL (strsignal, char *, (int __sig)); _GL_CXXALIAS_RPL (strsignal, char *, (int __sig)); # else # if ! @HAVE_DECL_STRSIGNAL@ _GL_FUNCDECL_SYS (strsignal, char *, (int __sig)); # endif /* Need to cast, because on Cygwin 1.5.x systems, the return type is 'const char *'. */ _GL_CXXALIAS_SYS_CAST (strsignal, char *, (int __sig)); # endif _GL_CXXALIASWARN (strsignal); #elif defined GNULIB_POSIXCHECK # undef strsignal # if HAVE_RAW_DECL_STRSIGNAL _GL_WARN_ON_USE (strsignal, "strsignal is unportable - " "use gnulib module strsignal for portability"); # endif #endif #if @GNULIB_STRVERSCMP@ # if !@HAVE_STRVERSCMP@ _GL_FUNCDECL_SYS (strverscmp, int, (const char *, const char *) _GL_ATTRIBUTE_PURE _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (strverscmp, int, (const char *, const char *)); _GL_CXXALIASWARN (strverscmp); #elif defined GNULIB_POSIXCHECK # undef strverscmp # if HAVE_RAW_DECL_STRVERSCMP _GL_WARN_ON_USE (strverscmp, "strverscmp is unportable - " "use gnulib module strverscmp for portability"); # endif #endif #endif /* _@GUARD_PREFIX@_STRING_H */ #endif /* _@GUARD_PREFIX@_STRING_H */ ttfautohint-0.97/gnulib/src/getopt.c0000644000175000001440000011750412237364242014471 00000000000000/* Getopt for GNU. NOTE: getopt is part of the C library, so if you don't know what "Keep this file name-space clean" means, talk to drepper@gnu.org before changing it! Copyright (C) 1987-1996, 1998-2004, 2006, 2008-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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 . */ #ifndef _LIBC # include #endif #include "getopt.h" #include #include #include #include #ifdef _LIBC # include #else # include "gettext.h" # define _(msgid) gettext (msgid) #endif #if defined _LIBC && defined USE_IN_LIBIO # include #endif /* This version of 'getopt' appears to the caller like standard Unix 'getopt' but it behaves differently for the user, since it allows the user to intersperse the options with the other arguments. As 'getopt_long' works, it permutes the elements of ARGV so that, when it is done, all the options precede everything else. Thus all application programs are extended to handle flexible argument order. Using 'getopt' or setting the environment variable POSIXLY_CORRECT disables permutation. Then the behavior is completely standard. GNU application programs can use a third alternative mode in which they can distinguish the relative order of options and other arguments. */ #include "getopt_int.h" /* For communication from 'getopt' to the caller. When 'getopt' finds an option that takes an argument, the argument value is returned here. Also, when 'ordering' is RETURN_IN_ORDER, each non-option ARGV-element is returned here. */ char *optarg; /* Index in ARGV of the next element to be scanned. This is used for communication to and from the caller and for communication between successive calls to 'getopt'. On entry to 'getopt', zero means this is the first call; initialize. When 'getopt' returns -1, this is the index of the first of the non-option elements that the caller should itself scan. Otherwise, 'optind' communicates from one call to the next how much of ARGV has been scanned so far. */ /* 1003.2 says this must be 1 before any call. */ int optind = 1; /* Callers store zero here to inhibit the error message for unrecognized options. */ int opterr = 1; /* Set to an option character which was unrecognized. This must be initialized on some systems to avoid linking in the system's own getopt implementation. */ int optopt = '?'; /* Keep a global copy of all internal members of getopt_data. */ static struct _getopt_data getopt_data; #if defined HAVE_DECL_GETENV && !HAVE_DECL_GETENV extern char *getenv (); #endif #ifdef _LIBC /* Stored original parameters. XXX This is no good solution. We should rather copy the args so that we can compare them later. But we must not use malloc(3). */ extern int __libc_argc; extern char **__libc_argv; /* Bash 2.0 gives us an environment variable containing flags indicating ARGV elements that should not be considered arguments. */ # ifdef USE_NONOPTION_FLAGS /* Defined in getopt_init.c */ extern char *__getopt_nonoption_flags; # endif # ifdef USE_NONOPTION_FLAGS # define SWAP_FLAGS(ch1, ch2) \ if (d->__nonoption_flags_len > 0) \ { \ char __tmp = __getopt_nonoption_flags[ch1]; \ __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \ __getopt_nonoption_flags[ch2] = __tmp; \ } # else # define SWAP_FLAGS(ch1, ch2) # endif #else /* !_LIBC */ # define SWAP_FLAGS(ch1, ch2) #endif /* _LIBC */ /* Exchange two adjacent subsequences of ARGV. One subsequence is elements [first_nonopt,last_nonopt) which contains all the non-options that have been skipped so far. The other is elements [last_nonopt,optind), which contains all the options processed since those non-options were skipped. 'first_nonopt' and 'last_nonopt' are relocated so that they describe the new indices of the non-options in ARGV after they are moved. */ static void exchange (char **argv, struct _getopt_data *d) { int bottom = d->__first_nonopt; int middle = d->__last_nonopt; int top = d->optind; char *tem; /* Exchange the shorter segment with the far end of the longer segment. That puts the shorter segment into the right place. It leaves the longer segment in the right place overall, but it consists of two parts that need to be swapped next. */ #if defined _LIBC && defined USE_NONOPTION_FLAGS /* First make sure the handling of the '__getopt_nonoption_flags' string can work normally. Our top argument must be in the range of the string. */ if (d->__nonoption_flags_len > 0 && top >= d->__nonoption_flags_max_len) { /* We must extend the array. The user plays games with us and presents new arguments. */ char *new_str = malloc (top + 1); if (new_str == NULL) d->__nonoption_flags_len = d->__nonoption_flags_max_len = 0; else { memset (__mempcpy (new_str, __getopt_nonoption_flags, d->__nonoption_flags_max_len), '\0', top + 1 - d->__nonoption_flags_max_len); d->__nonoption_flags_max_len = top + 1; __getopt_nonoption_flags = new_str; } } #endif while (top > middle && middle > bottom) { if (top - middle > middle - bottom) { /* Bottom segment is the short one. */ int len = middle - bottom; register int i; /* Swap it with the top part of the top segment. */ for (i = 0; i < len; i++) { tem = argv[bottom + i]; argv[bottom + i] = argv[top - (middle - bottom) + i]; argv[top - (middle - bottom) + i] = tem; SWAP_FLAGS (bottom + i, top - (middle - bottom) + i); } /* Exclude the moved bottom segment from further swapping. */ top -= len; } else { /* Top segment is the short one. */ int len = top - middle; register int i; /* Swap it with the bottom part of the bottom segment. */ for (i = 0; i < len; i++) { tem = argv[bottom + i]; argv[bottom + i] = argv[middle + i]; argv[middle + i] = tem; SWAP_FLAGS (bottom + i, middle + i); } /* Exclude the moved top segment from further swapping. */ bottom += len; } } /* Update records for the slots the non-options now occupy. */ d->__first_nonopt += (d->optind - d->__last_nonopt); d->__last_nonopt = d->optind; } /* Initialize the internal data when the first call is made. */ static const char * _getopt_initialize (int argc _GL_UNUSED, char **argv _GL_UNUSED, const char *optstring, struct _getopt_data *d, int posixly_correct) { /* Start processing options with ARGV-element 1 (since ARGV-element 0 is the program name); the sequence of previously skipped non-option ARGV-elements is empty. */ d->__first_nonopt = d->__last_nonopt = d->optind; d->__nextchar = NULL; d->__posixly_correct = posixly_correct || !!getenv ("POSIXLY_CORRECT"); /* Determine how to handle the ordering of options and nonoptions. */ if (optstring[0] == '-') { d->__ordering = RETURN_IN_ORDER; ++optstring; } else if (optstring[0] == '+') { d->__ordering = REQUIRE_ORDER; ++optstring; } else if (d->__posixly_correct) d->__ordering = REQUIRE_ORDER; else d->__ordering = PERMUTE; #if defined _LIBC && defined USE_NONOPTION_FLAGS if (!d->__posixly_correct && argc == __libc_argc && argv == __libc_argv) { if (d->__nonoption_flags_max_len == 0) { if (__getopt_nonoption_flags == NULL || __getopt_nonoption_flags[0] == '\0') d->__nonoption_flags_max_len = -1; else { const char *orig_str = __getopt_nonoption_flags; int len = d->__nonoption_flags_max_len = strlen (orig_str); if (d->__nonoption_flags_max_len < argc) d->__nonoption_flags_max_len = argc; __getopt_nonoption_flags = (char *) malloc (d->__nonoption_flags_max_len); if (__getopt_nonoption_flags == NULL) d->__nonoption_flags_max_len = -1; else memset (__mempcpy (__getopt_nonoption_flags, orig_str, len), '\0', d->__nonoption_flags_max_len - len); } } d->__nonoption_flags_len = d->__nonoption_flags_max_len; } else d->__nonoption_flags_len = 0; #endif return optstring; } /* Scan elements of ARGV (whose length is ARGC) for option characters given in OPTSTRING. If an element of ARGV starts with '-', and is not exactly "-" or "--", then it is an option element. The characters of this element (aside from the initial '-') are option characters. If 'getopt' is called repeatedly, it returns successively each of the option characters from each of the option elements. If 'getopt' finds another option character, it returns that character, updating 'optind' and 'nextchar' so that the next call to 'getopt' can resume the scan with the following option character or ARGV-element. If there are no more option characters, 'getopt' returns -1. Then 'optind' is the index in ARGV of the first ARGV-element that is not an option. (The ARGV-elements have been permuted so that those that are not options now come last.) OPTSTRING is a string containing the legitimate option characters. If an option character is seen that is not listed in OPTSTRING, return '?' after printing an error message. If you set 'opterr' to zero, the error message is suppressed but we still return '?'. If a char in OPTSTRING is followed by a colon, that means it wants an arg, so the following text in the same ARGV-element, or the text of the following ARGV-element, is returned in 'optarg'. Two colons mean an option that wants an optional arg; if there is text in the current ARGV-element, it is returned in 'optarg', otherwise 'optarg' is set to zero. If OPTSTRING starts with '-' or '+', it requests different methods of handling the non-option ARGV-elements. See the comments about RETURN_IN_ORDER and REQUIRE_ORDER, above. Long-named options begin with '--' instead of '-'. Their names may be abbreviated as long as the abbreviation is unique or is an exact match for some defined option. If they have an argument, it follows the option name in the same ARGV-element, separated from the option name by a '=', or else the in next ARGV-element. When 'getopt' finds a long-named option, it returns 0 if that option's 'flag' field is nonzero, the value of the option's 'val' field if the 'flag' field is zero. The elements of ARGV aren't really const, because we permute them. But we pretend they're const in the prototype to be compatible with other systems. LONGOPTS is a vector of 'struct option' terminated by an element containing a name which is zero. LONGIND returns the index in LONGOPT of the long-named option found. It is only valid when a long-named option has been found by the most recent call. If LONG_ONLY is nonzero, '-' as well as '--' can introduce long-named options. */ int _getopt_internal_r (int argc, char **argv, const char *optstring, const struct option *longopts, int *longind, int long_only, struct _getopt_data *d, int posixly_correct) { int print_errors = d->opterr; if (argc < 1) return -1; d->optarg = NULL; if (d->optind == 0 || !d->__initialized) { if (d->optind == 0) d->optind = 1; /* Don't scan ARGV[0], the program name. */ optstring = _getopt_initialize (argc, argv, optstring, d, posixly_correct); d->__initialized = 1; } else if (optstring[0] == '-' || optstring[0] == '+') optstring++; if (optstring[0] == ':') print_errors = 0; /* Test whether ARGV[optind] points to a non-option argument. Either it does not have option syntax, or there is an environment flag from the shell indicating it is not an option. The later information is only used when the used in the GNU libc. */ #if defined _LIBC && defined USE_NONOPTION_FLAGS # define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0' \ || (d->optind < d->__nonoption_flags_len \ && __getopt_nonoption_flags[d->optind] == '1')) #else # define NONOPTION_P (argv[d->optind][0] != '-' || argv[d->optind][1] == '\0') #endif if (d->__nextchar == NULL || *d->__nextchar == '\0') { /* Advance to the next ARGV-element. */ /* Give FIRST_NONOPT & LAST_NONOPT rational values if OPTIND has been moved back by the user (who may also have changed the arguments). */ if (d->__last_nonopt > d->optind) d->__last_nonopt = d->optind; if (d->__first_nonopt > d->optind) d->__first_nonopt = d->optind; if (d->__ordering == PERMUTE) { /* If we have just processed some options following some non-options, exchange them so that the options come first. */ if (d->__first_nonopt != d->__last_nonopt && d->__last_nonopt != d->optind) exchange ((char **) argv, d); else if (d->__last_nonopt != d->optind) d->__first_nonopt = d->optind; /* Skip any additional non-options and extend the range of non-options previously skipped. */ while (d->optind < argc && NONOPTION_P) d->optind++; d->__last_nonopt = d->optind; } /* The special ARGV-element '--' means premature end of options. Skip it like a null option, then exchange with previous non-options as if it were an option, then skip everything else like a non-option. */ if (d->optind != argc && !strcmp (argv[d->optind], "--")) { d->optind++; if (d->__first_nonopt != d->__last_nonopt && d->__last_nonopt != d->optind) exchange ((char **) argv, d); else if (d->__first_nonopt == d->__last_nonopt) d->__first_nonopt = d->optind; d->__last_nonopt = argc; d->optind = argc; } /* If we have done all the ARGV-elements, stop the scan and back over any non-options that we skipped and permuted. */ if (d->optind == argc) { /* Set the next-arg-index to point at the non-options that we previously skipped, so the caller will digest them. */ if (d->__first_nonopt != d->__last_nonopt) d->optind = d->__first_nonopt; return -1; } /* If we have come to a non-option and did not permute it, either stop the scan or describe it to the caller and pass it by. */ if (NONOPTION_P) { if (d->__ordering == REQUIRE_ORDER) return -1; d->optarg = argv[d->optind++]; return 1; } /* We have found another option-ARGV-element. Skip the initial punctuation. */ d->__nextchar = (argv[d->optind] + 1 + (longopts != NULL && argv[d->optind][1] == '-')); } /* Decode the current option-ARGV-element. */ /* Check whether the ARGV-element is a long option. If long_only and the ARGV-element has the form "-f", where f is a valid short option, don't consider it an abbreviated form of a long option that starts with f. Otherwise there would be no way to give the -f short option. On the other hand, if there's a long option "fubar" and the ARGV-element is "-fu", do consider that an abbreviation of the long option, just like "--fu", and not "-f" with arg "u". This distinction seems to be the most useful approach. */ if (longopts != NULL && (argv[d->optind][1] == '-' || (long_only && (argv[d->optind][2] || !strchr (optstring, argv[d->optind][1]))))) { char *nameend; unsigned int namelen; const struct option *p; const struct option *pfound = NULL; struct option_list { const struct option *p; struct option_list *next; } *ambig_list = NULL; int exact = 0; int indfound = -1; int option_index; for (nameend = d->__nextchar; *nameend && *nameend != '='; nameend++) /* Do nothing. */ ; namelen = nameend - d->__nextchar; /* Test all long options for either exact match or abbreviated matches. */ for (p = longopts, option_index = 0; p->name; p++, option_index++) if (!strncmp (p->name, d->__nextchar, namelen)) { if (namelen == (unsigned int) strlen (p->name)) { /* Exact match found. */ pfound = p; indfound = option_index; exact = 1; break; } else if (pfound == NULL) { /* First nonexact match found. */ pfound = p; indfound = option_index; } else if (long_only || pfound->has_arg != p->has_arg || pfound->flag != p->flag || pfound->val != p->val) { /* Second or later nonexact match found. */ struct option_list *newp = malloc (sizeof (*newp)); newp->p = p; newp->next = ambig_list; ambig_list = newp; } } if (ambig_list != NULL && !exact) { if (print_errors) { struct option_list first; first.p = pfound; first.next = ambig_list; ambig_list = &first; #if defined _LIBC && defined USE_IN_LIBIO char *buf = NULL; size_t buflen = 0; FILE *fp = open_memstream (&buf, &buflen); if (fp != NULL) { fprintf (fp, _("%s: option '%s' is ambiguous; possibilities:"), argv[0], argv[d->optind]); do { fprintf (fp, " '--%s'", ambig_list->p->name); ambig_list = ambig_list->next; } while (ambig_list != NULL); fputc_unlocked ('\n', fp); if (__builtin_expect (fclose (fp) != EOF, 1)) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } } #else fprintf (stderr, _("%s: option '%s' is ambiguous; possibilities:"), argv[0], argv[d->optind]); do { fprintf (stderr, " '--%s'", ambig_list->p->name); ambig_list = ambig_list->next; } while (ambig_list != NULL); fputc ('\n', stderr); #endif } d->__nextchar += strlen (d->__nextchar); d->optind++; d->optopt = 0; return '?'; } while (ambig_list != NULL) { struct option_list *pn = ambig_list->next; free (ambig_list); ambig_list = pn; } if (pfound != NULL) { option_index = indfound; d->optind++; if (*nameend) { /* Don't test has_arg with >, because some C compilers don't allow it to be used on enums. */ if (pfound->has_arg) d->optarg = nameend + 1; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; int n; #endif if (argv[d->optind - 1][1] == '-') { /* --option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("\ %s: option '--%s' doesn't allow an argument\n"), argv[0], pfound->name); #else fprintf (stderr, _("\ %s: option '--%s' doesn't allow an argument\n"), argv[0], pfound->name); #endif } else { /* +option or -option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("\ %s: option '%c%s' doesn't allow an argument\n"), argv[0], argv[d->optind - 1][0], pfound->name); #else fprintf (stderr, _("\ %s: option '%c%s' doesn't allow an argument\n"), argv[0], argv[d->optind - 1][0], pfound->name); #endif } #if defined _LIBC && defined USE_IN_LIBIO if (n >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #endif } d->__nextchar += strlen (d->__nextchar); d->optopt = pfound->val; return '?'; } } else if (pfound->has_arg == 1) { if (d->optind < argc) d->optarg = argv[d->optind++]; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option '--%s' requires an argument\n"), argv[0], pfound->name) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option '--%s' requires an argument\n"), argv[0], pfound->name); #endif } d->__nextchar += strlen (d->__nextchar); d->optopt = pfound->val; return optstring[0] == ':' ? ':' : '?'; } } d->__nextchar += strlen (d->__nextchar); if (longind != NULL) *longind = option_index; if (pfound->flag) { *(pfound->flag) = pfound->val; return 0; } return pfound->val; } /* Can't find it as a long option. If this is not getopt_long_only, or the option starts with '--' or is not a valid short option, then it's an error. Otherwise interpret it as a short option. */ if (!long_only || argv[d->optind][1] == '-' || strchr (optstring, *d->__nextchar) == NULL) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; int n; #endif if (argv[d->optind][1] == '-') { /* --option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("%s: unrecognized option '--%s'\n"), argv[0], d->__nextchar); #else fprintf (stderr, _("%s: unrecognized option '--%s'\n"), argv[0], d->__nextchar); #endif } else { /* +option or -option */ #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("%s: unrecognized option '%c%s'\n"), argv[0], argv[d->optind][0], d->__nextchar); #else fprintf (stderr, _("%s: unrecognized option '%c%s'\n"), argv[0], argv[d->optind][0], d->__nextchar); #endif } #if defined _LIBC && defined USE_IN_LIBIO if (n >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #endif } d->__nextchar = (char *) ""; d->optind++; d->optopt = 0; return '?'; } } /* Look at and handle the next short option-character. */ { char c = *d->__nextchar++; const char *temp = strchr (optstring, c); /* Increment 'optind' when we start to process its last character. */ if (*d->__nextchar == '\0') ++d->optind; if (temp == NULL || c == ':' || c == ';') { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; int n; #endif #if defined _LIBC && defined USE_IN_LIBIO n = __asprintf (&buf, _("%s: invalid option -- '%c'\n"), argv[0], c); #else fprintf (stderr, _("%s: invalid option -- '%c'\n"), argv[0], c); #endif #if defined _LIBC && defined USE_IN_LIBIO if (n >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #endif } d->optopt = c; return '?'; } /* Convenience. Treat POSIX -W foo same as long option --foo */ if (temp[0] == 'W' && temp[1] == ';') { char *nameend; const struct option *p; const struct option *pfound = NULL; int exact = 0; int ambig = 0; int indfound = 0; int option_index; if (longopts == NULL) goto no_longs; /* This is an option that requires an argument. */ if (*d->__nextchar != '\0') { d->optarg = d->__nextchar; /* If we end this ARGV-element by taking the rest as an arg, we must advance to the next element now. */ d->optind++; } else if (d->optind == argc) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("%s: option requires an argument -- '%c'\n"), argv[0], c) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option requires an argument -- '%c'\n"), argv[0], c); #endif } d->optopt = c; if (optstring[0] == ':') c = ':'; else c = '?'; return c; } else /* We already incremented 'd->optind' once; increment it again when taking next ARGV-elt as argument. */ d->optarg = argv[d->optind++]; /* optarg is now the argument, see if it's in the table of longopts. */ for (d->__nextchar = nameend = d->optarg; *nameend && *nameend != '='; nameend++) /* Do nothing. */ ; /* Test all long options for either exact match or abbreviated matches. */ for (p = longopts, option_index = 0; p->name; p++, option_index++) if (!strncmp (p->name, d->__nextchar, nameend - d->__nextchar)) { if ((unsigned int) (nameend - d->__nextchar) == strlen (p->name)) { /* Exact match found. */ pfound = p; indfound = option_index; exact = 1; break; } else if (pfound == NULL) { /* First nonexact match found. */ pfound = p; indfound = option_index; } else if (long_only || pfound->has_arg != p->has_arg || pfound->flag != p->flag || pfound->val != p->val) /* Second or later nonexact match found. */ ambig = 1; } if (ambig && !exact) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("%s: option '-W %s' is ambiguous\n"), argv[0], d->optarg) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option '-W %s' is ambiguous\n"), argv[0], d->optarg); #endif } d->__nextchar += strlen (d->__nextchar); d->optind++; return '?'; } if (pfound != NULL) { option_index = indfound; if (*nameend) { /* Don't test has_arg with >, because some C compilers don't allow it to be used on enums. */ if (pfound->has_arg) d->optarg = nameend + 1; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option '-W %s' doesn't allow an argument\n"), argv[0], pfound->name) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("\ %s: option '-W %s' doesn't allow an argument\n"), argv[0], pfound->name); #endif } d->__nextchar += strlen (d->__nextchar); return '?'; } } else if (pfound->has_arg == 1) { if (d->optind < argc) d->optarg = argv[d->optind++]; else { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option '-W %s' requires an argument\n"), argv[0], pfound->name) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("\ %s: option '-W %s' requires an argument\n"), argv[0], pfound->name); #endif } d->__nextchar += strlen (d->__nextchar); return optstring[0] == ':' ? ':' : '?'; } } else d->optarg = NULL; d->__nextchar += strlen (d->__nextchar); if (longind != NULL) *longind = option_index; if (pfound->flag) { *(pfound->flag) = pfound->val; return 0; } return pfound->val; } no_longs: d->__nextchar = NULL; return 'W'; /* Let the application handle it. */ } if (temp[1] == ':') { if (temp[2] == ':') { /* This is an option that accepts an argument optionally. */ if (*d->__nextchar != '\0') { d->optarg = d->__nextchar; d->optind++; } else d->optarg = NULL; d->__nextchar = NULL; } else { /* This is an option that requires an argument. */ if (*d->__nextchar != '\0') { d->optarg = d->__nextchar; /* If we end this ARGV-element by taking the rest as an arg, we must advance to the next element now. */ d->optind++; } else if (d->optind == argc) { if (print_errors) { #if defined _LIBC && defined USE_IN_LIBIO char *buf; if (__asprintf (&buf, _("\ %s: option requires an argument -- '%c'\n"), argv[0], c) >= 0) { _IO_flockfile (stderr); int old_flags2 = ((_IO_FILE *) stderr)->_flags2; ((_IO_FILE *) stderr)->_flags2 |= _IO_FLAGS2_NOTCANCEL; __fxprintf (NULL, "%s", buf); ((_IO_FILE *) stderr)->_flags2 = old_flags2; _IO_funlockfile (stderr); free (buf); } #else fprintf (stderr, _("%s: option requires an argument -- '%c'\n"), argv[0], c); #endif } d->optopt = c; if (optstring[0] == ':') c = ':'; else c = '?'; } else /* We already incremented 'optind' once; increment it again when taking next ARGV-elt as argument. */ d->optarg = argv[d->optind++]; d->__nextchar = NULL; } } return c; } } int _getopt_internal (int argc, char **argv, const char *optstring, const struct option *longopts, int *longind, int long_only, int posixly_correct) { int result; getopt_data.optind = optind; getopt_data.opterr = opterr; result = _getopt_internal_r (argc, argv, optstring, longopts, longind, long_only, &getopt_data, posixly_correct); optind = getopt_data.optind; optarg = getopt_data.optarg; optopt = getopt_data.optopt; return result; } /* glibc gets a LSB-compliant getopt. Standalone applications get a POSIX-compliant getopt. */ #if _LIBC enum { POSIXLY_CORRECT = 0 }; #else enum { POSIXLY_CORRECT = 1 }; #endif int getopt (int argc, char *const *argv, const char *optstring) { return _getopt_internal (argc, (char **) argv, optstring, (const struct option *) 0, (int *) 0, 0, POSIXLY_CORRECT); } #ifdef _LIBC int __posix_getopt (int argc, char *const *argv, const char *optstring) { return _getopt_internal (argc, argv, optstring, (const struct option *) 0, (int *) 0, 0, 1); } #endif #ifdef TEST /* Compile with -DTEST to make an executable for use in testing the above definition of 'getopt'. */ int main (int argc, char **argv) { int c; int digit_optind = 0; while (1) { int this_option_optind = optind ? optind : 1; c = getopt (argc, argv, "abc:d:0123456789"); if (c == -1) break; switch (c) { case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': if (digit_optind != 0 && digit_optind != this_option_optind) printf ("digits occur in two different argv-elements.\n"); digit_optind = this_option_optind; printf ("option %c\n", c); break; case 'a': printf ("option a\n"); break; case 'b': printf ("option b\n"); break; case 'c': printf ("option c with value '%s'\n", optarg); break; case '?': break; default: printf ("?? getopt returned character code 0%o ??\n", c); } } if (optind < argc) { printf ("non-option ARGV-elements: "); while (optind < argc) printf ("%s ", argv[optind++]); printf ("\n"); } exit (0); } #endif /* TEST */ ttfautohint-0.97/gnulib/src/stddef.in.h0000644000175000001440000000523212237364242015044 00000000000000/* A substitute for POSIX 2008 , for platforms that have issues. Copyright (C) 2009-2013 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 3, 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 . */ /* Written by Eric Blake. */ /* * POSIX 2008 for platforms that have issues. * */ #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ #if defined __need_wchar_t || defined __need_size_t \ || defined __need_ptrdiff_t || defined __need_NULL \ || defined __need_wint_t /* Special invocation convention inside gcc header files. In particular, gcc provides a version of that blindly redefines NULL even when __need_wint_t was defined, even though wint_t is not normally provided by . Hence, we must remember if special invocation has ever been used to obtain wint_t, in which case we need to clean up NULL yet again. */ # if !(defined _@GUARD_PREFIX@_STDDEF_H && defined _GL_STDDEF_WINT_T) # ifdef __need_wint_t # undef _@GUARD_PREFIX@_STDDEF_H # define _GL_STDDEF_WINT_T # endif # @INCLUDE_NEXT@ @NEXT_STDDEF_H@ # endif #else /* Normal invocation convention. */ # ifndef _@GUARD_PREFIX@_STDDEF_H /* The include_next requires a split double-inclusion guard. */ # @INCLUDE_NEXT@ @NEXT_STDDEF_H@ # ifndef _@GUARD_PREFIX@_STDDEF_H # define _@GUARD_PREFIX@_STDDEF_H /* On NetBSD 5.0, the definition of NULL lacks proper parentheses. */ #if @REPLACE_NULL@ # undef NULL # ifdef __cplusplus /* ISO C++ says that the macro NULL must expand to an integer constant expression, hence '((void *) 0)' is not allowed in C++. */ # if __GNUG__ >= 3 /* GNU C++ has a __null macro that behaves like an integer ('int' or 'long') but has the same size as a pointer. Use that, to avoid warnings. */ # define NULL __null # else # define NULL 0L # endif # else # define NULL ((void *) 0) # endif #endif /* Some platforms lack wchar_t. */ #if !@HAVE_WCHAR_T@ # define wchar_t int #endif # endif /* _@GUARD_PREFIX@_STDDEF_H */ # endif /* _@GUARD_PREFIX@_STDDEF_H */ #endif /* __need_XXX */ ttfautohint-0.97/gnulib/src/msvc-inval.c0000644000175000001440000000751112237364242015242 00000000000000/* Invalid parameter handler for MSVC runtime libraries. Copyright (C) 2011-2013 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 3, 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 . */ #include /* Specification. */ #include "msvc-inval.h" #if HAVE_MSVC_INVALID_PARAMETER_HANDLER \ && !(MSVC_INVALID_PARAMETER_HANDLING == SANE_LIBRARY_HANDLING) /* Get _invalid_parameter_handler type and _set_invalid_parameter_handler declaration. */ # include # if MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING static void __cdecl gl_msvc_invalid_parameter_handler (const wchar_t *expression, const wchar_t *function, const wchar_t *file, unsigned int line, uintptr_t dummy) { } # else /* Get declarations of the native Windows API functions. */ # define WIN32_LEAN_AND_MEAN # include # if defined _MSC_VER static void __cdecl gl_msvc_invalid_parameter_handler (const wchar_t *expression, const wchar_t *function, const wchar_t *file, unsigned int line, uintptr_t dummy) { RaiseException (STATUS_GNULIB_INVALID_PARAMETER, 0, 0, NULL); } # else /* An index to thread-local storage. */ static DWORD tls_index; static int tls_initialized /* = 0 */; /* Used as a fallback only. */ static struct gl_msvc_inval_per_thread not_per_thread; struct gl_msvc_inval_per_thread * gl_msvc_inval_current (void) { if (!tls_initialized) { tls_index = TlsAlloc (); tls_initialized = 1; } if (tls_index == TLS_OUT_OF_INDEXES) /* TlsAlloc had failed. */ return ¬_per_thread; else { struct gl_msvc_inval_per_thread *pointer = (struct gl_msvc_inval_per_thread *) TlsGetValue (tls_index); if (pointer == NULL) { /* First call. Allocate a new 'struct gl_msvc_inval_per_thread'. */ pointer = (struct gl_msvc_inval_per_thread *) malloc (sizeof (struct gl_msvc_inval_per_thread)); if (pointer == NULL) /* Could not allocate memory. Use the global storage. */ pointer = ¬_per_thread; TlsSetValue (tls_index, pointer); } return pointer; } } static void __cdecl gl_msvc_invalid_parameter_handler (const wchar_t *expression, const wchar_t *function, const wchar_t *file, unsigned int line, uintptr_t dummy) { struct gl_msvc_inval_per_thread *current = gl_msvc_inval_current (); if (current->restart_valid) longjmp (current->restart, 1); else /* An invalid parameter notification from outside the gnulib code. Give the caller a chance to intervene. */ RaiseException (STATUS_GNULIB_INVALID_PARAMETER, 0, 0, NULL); } # endif # endif static int gl_msvc_inval_initialized /* = 0 */; void gl_msvc_inval_ensure_handler (void) { if (gl_msvc_inval_initialized == 0) { _set_invalid_parameter_handler (gl_msvc_invalid_parameter_handler); gl_msvc_inval_initialized = 1; } } #endif ttfautohint-0.97/gnulib/src/memchr.c0000644000175000001440000001334612237364242014441 00000000000000/* Copyright (C) 1991, 1993, 1996-1997, 1999-2000, 2003-2004, 2006, 2008-2013 Free Software Foundation, Inc. Based on strlen implementation by Torbjorn Granlund (tege@sics.se), with help from Dan Sahlin (dan@sics.se) and commentary by Jim Blandy (jimb@ai.mit.edu); adaptation to memchr suggested by Dick Karpinski (dick@cca.ucsf.edu), and implemented by Roland McGrath (roland@ai.mit.edu). NOTE: The canonical source of this file is maintained with the GNU C Library. Bugs can be reported to bug-glibc@prep.ai.mit.edu. 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 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 . */ #ifndef _LIBC # include #endif #include #include #if defined _LIBC # include #else # define reg_char char #endif #include #if HAVE_BP_SYM_H || defined _LIBC # include #else # define BP_SYM(sym) sym #endif #undef __memchr #ifdef _LIBC # undef memchr #endif #ifndef weak_alias # define __memchr memchr #endif /* Search no more than N bytes of S for C. */ void * __memchr (void const *s, int c_in, size_t n) { /* On 32-bit hardware, choosing longword to be a 32-bit unsigned long instead of a 64-bit uintmax_t tends to give better performance. On 64-bit hardware, unsigned long is generally 64 bits already. Change this typedef to experiment with performance. */ typedef unsigned long int longword; const unsigned char *char_ptr; const longword *longword_ptr; longword repeated_one; longword repeated_c; unsigned reg_char c; c = (unsigned char) c_in; /* Handle the first few bytes by reading one byte at a time. Do this until CHAR_PTR is aligned on a longword boundary. */ for (char_ptr = (const unsigned char *) s; n > 0 && (size_t) char_ptr % sizeof (longword) != 0; --n, ++char_ptr) if (*char_ptr == c) return (void *) char_ptr; longword_ptr = (const longword *) char_ptr; /* All these elucidatory comments refer to 4-byte longwords, but the theory applies equally well to any size longwords. */ /* Compute auxiliary longword values: repeated_one is a value which has a 1 in every byte. repeated_c has c in every byte. */ repeated_one = 0x01010101; repeated_c = c | (c << 8); repeated_c |= repeated_c << 16; if (0xffffffffU < (longword) -1) { repeated_one |= repeated_one << 31 << 1; repeated_c |= repeated_c << 31 << 1; if (8 < sizeof (longword)) { size_t i; for (i = 64; i < sizeof (longword) * 8; i *= 2) { repeated_one |= repeated_one << i; repeated_c |= repeated_c << i; } } } /* Instead of the traditional loop which tests each byte, we will test a longword at a time. The tricky part is testing if *any of the four* bytes in the longword in question are equal to c. We first use an xor with repeated_c. This reduces the task to testing whether *any of the four* bytes in longword1 is zero. We compute tmp = ((longword1 - repeated_one) & ~longword1) & (repeated_one << 7). That is, we perform the following operations: 1. Subtract repeated_one. 2. & ~longword1. 3. & a mask consisting of 0x80 in every byte. Consider what happens in each byte: - If a byte of longword1 is zero, step 1 and 2 transform it into 0xff, and step 3 transforms it into 0x80. A carry can also be propagated to more significant bytes. - If a byte of longword1 is nonzero, let its lowest 1 bit be at position k (0 <= k <= 7); so the lowest k bits are 0. After step 1, the byte ends in a single bit of value 0 and k bits of value 1. After step 2, the result is just k bits of value 1: 2^k - 1. After step 3, the result is 0. And no carry is produced. So, if longword1 has only non-zero bytes, tmp is zero. Whereas if longword1 has a zero byte, call j the position of the least significant zero byte. Then the result has a zero at positions 0, ..., j-1 and a 0x80 at position j. We cannot predict the result at the more significant bytes (positions j+1..3), but it does not matter since we already have a non-zero bit at position 8*j+7. So, the test whether any byte in longword1 is zero is equivalent to testing whether tmp is nonzero. */ while (n >= sizeof (longword)) { longword longword1 = *longword_ptr ^ repeated_c; if ((((longword1 - repeated_one) & ~longword1) & (repeated_one << 7)) != 0) break; longword_ptr++; n -= sizeof (longword); } char_ptr = (const unsigned char *) longword_ptr; /* At this point, we know that either n < sizeof (longword), or one of the sizeof (longword) bytes starting at char_ptr is == c. On little-endian machines, we could determine the first such byte without any further memory accesses, just by looking at the tmp result from the last loop iteration. But this does not work on big-endian machines. Choose code that works in both cases. */ for (; n > 0; --n, ++char_ptr) { if (*char_ptr == c) return (void *) char_ptr; } return NULL; } #ifdef weak_alias weak_alias (__memchr, BP_SYM (memchr)) #endif ttfautohint-0.97/gnulib/src/memchr.valgrind0000644000175000001440000000065212237364242016021 00000000000000# Suppress a valgrind message about use of uninitialized memory in memchr(). # POSIX states that when the character is found, memchr must not read extra # bytes in an overestimated length (for example, where memchr is used to # implement strnlen). However, we use a safe word read to provide a speedup. { memchr-value4 Memcheck:Value4 fun:rpl_memchr } { memchr-value8 Memcheck:Value8 fun:rpl_memchr } ttfautohint-0.97/gnulib/src/getopt_int.h0000644000175000001440000001174212237364242015345 00000000000000/* Internal declarations for getopt. Copyright (C) 1989-1994, 1996-1999, 2001, 2003-2004, 2009-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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 . */ #ifndef _GETOPT_INT_H #define _GETOPT_INT_H 1 #include extern int _getopt_internal (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, int __long_only, int __posixly_correct); /* Reentrant versions which can handle parsing multiple argument vectors at the same time. */ /* Describe how to deal with options that follow non-option ARGV-elements. If the caller did not specify anything, the default is REQUIRE_ORDER if the environment variable POSIXLY_CORRECT is defined, PERMUTE otherwise. REQUIRE_ORDER means don't recognize them as options; stop option processing when the first non-option is seen. This is what Unix does. This mode of operation is selected by either setting the environment variable POSIXLY_CORRECT, or using '+' as the first character of the list of option characters, or by calling getopt. PERMUTE is the default. We permute the contents of ARGV as we scan, so that eventually all the non-options are at the end. This allows options to be given in any order, even with programs that were not written to expect this. RETURN_IN_ORDER is an option available to programs that were written to expect options and other ARGV-elements in any order and that care about the ordering of the two. We describe each non-option ARGV-element as if it were the argument of an option with character code 1. Using '-' as the first character of the list of option characters selects this mode of operation. The special argument '--' forces an end of option-scanning regardless of the value of 'ordering'. In the case of RETURN_IN_ORDER, only '--' can cause 'getopt' to return -1 with 'optind' != ARGC. */ enum __ord { REQUIRE_ORDER, PERMUTE, RETURN_IN_ORDER }; /* Data type for reentrant functions. */ struct _getopt_data { /* These have exactly the same meaning as the corresponding global variables, except that they are used for the reentrant versions of getopt. */ int optind; int opterr; int optopt; char *optarg; /* Internal members. */ /* True if the internal members have been initialized. */ int __initialized; /* The next char to be scanned in the option-element in which the last option character we returned was found. This allows us to pick up the scan where we left off. If this is zero, or a null string, it means resume the scan by advancing to the next ARGV-element. */ char *__nextchar; /* See __ord above. */ enum __ord __ordering; /* If the POSIXLY_CORRECT environment variable is set or getopt was called. */ int __posixly_correct; /* Handle permutation of arguments. */ /* Describe the part of ARGV that contains non-options that have been skipped. 'first_nonopt' is the index in ARGV of the first of them; 'last_nonopt' is the index after the last of them. */ int __first_nonopt; int __last_nonopt; #if defined _LIBC && defined USE_NONOPTION_FLAGS int __nonoption_flags_max_len; int __nonoption_flags_len; #endif }; /* The initializer is necessary to set OPTIND and OPTERR to their default values and to clear the initialization flag. */ #define _GETOPT_DATA_INITIALIZER { 1, 1 } extern int _getopt_internal_r (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, int __long_only, struct _getopt_data *__data, int __posixly_correct); extern int _getopt_long_r (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, struct _getopt_data *__data); extern int _getopt_long_only_r (int ___argc, char **___argv, const char *__shortopts, const struct option *__longopts, int *__longind, struct _getopt_data *__data); #endif /* getopt_int.h */ ttfautohint-0.97/gnulib/src/strerror-override.c0000644000175000001440000002146512237364242016666 00000000000000/* strerror-override.c --- POSIX compatible system error routine Copyright (C) 2010-2013 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 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 . */ /* Written by Bruno Haible , 2010. */ #include #include "strerror-override.h" #include #if GNULIB_defined_EWINSOCK /* native Windows platforms */ # if HAVE_WINSOCK2_H # include # endif #endif /* If ERRNUM maps to an errno value defined by gnulib, return a string describing the error. Otherwise return NULL. */ const char * strerror_override (int errnum) { /* These error messages are taken from glibc/sysdeps/gnu/errlist.c. */ switch (errnum) { #if REPLACE_STRERROR_0 case 0: return "Success"; #endif #if GNULIB_defined_ESOCK /* native Windows platforms with older */ case EINPROGRESS: return "Operation now in progress"; case EALREADY: return "Operation already in progress"; case ENOTSOCK: return "Socket operation on non-socket"; case EDESTADDRREQ: return "Destination address required"; case EMSGSIZE: return "Message too long"; case EPROTOTYPE: return "Protocol wrong type for socket"; case ENOPROTOOPT: return "Protocol not available"; case EPROTONOSUPPORT: return "Protocol not supported"; case EOPNOTSUPP: return "Operation not supported"; case EAFNOSUPPORT: return "Address family not supported by protocol"; case EADDRINUSE: return "Address already in use"; case EADDRNOTAVAIL: return "Cannot assign requested address"; case ENETDOWN: return "Network is down"; case ENETUNREACH: return "Network is unreachable"; case ECONNRESET: return "Connection reset by peer"; case ENOBUFS: return "No buffer space available"; case EISCONN: return "Transport endpoint is already connected"; case ENOTCONN: return "Transport endpoint is not connected"; case ETIMEDOUT: return "Connection timed out"; case ECONNREFUSED: return "Connection refused"; case ELOOP: return "Too many levels of symbolic links"; case EHOSTUNREACH: return "No route to host"; case EWOULDBLOCK: return "Operation would block"; #endif #if GNULIB_defined_ESTREAMS /* native Windows platforms with older */ case ETXTBSY: return "Text file busy"; case ENODATA: return "No data available"; case ENOSR: return "Out of streams resources"; case ENOSTR: return "Device not a stream"; case ETIME: return "Timer expired"; case EOTHER: return "Other error"; #endif #if GNULIB_defined_EWINSOCK /* native Windows platforms */ case ESOCKTNOSUPPORT: return "Socket type not supported"; case EPFNOSUPPORT: return "Protocol family not supported"; case ESHUTDOWN: return "Cannot send after transport endpoint shutdown"; case ETOOMANYREFS: return "Too many references: cannot splice"; case EHOSTDOWN: return "Host is down"; case EPROCLIM: return "Too many processes"; case EUSERS: return "Too many users"; case EDQUOT: return "Disk quota exceeded"; case ESTALE: return "Stale NFS file handle"; case EREMOTE: return "Object is remote"; # if HAVE_WINSOCK2_H /* WSA_INVALID_HANDLE maps to EBADF */ /* WSA_NOT_ENOUGH_MEMORY maps to ENOMEM */ /* WSA_INVALID_PARAMETER maps to EINVAL */ case WSA_OPERATION_ABORTED: return "Overlapped operation aborted"; case WSA_IO_INCOMPLETE: return "Overlapped I/O event object not in signaled state"; case WSA_IO_PENDING: return "Overlapped operations will complete later"; /* WSAEINTR maps to EINTR */ /* WSAEBADF maps to EBADF */ /* WSAEACCES maps to EACCES */ /* WSAEFAULT maps to EFAULT */ /* WSAEINVAL maps to EINVAL */ /* WSAEMFILE maps to EMFILE */ /* WSAEWOULDBLOCK maps to EWOULDBLOCK */ /* WSAEINPROGRESS maps to EINPROGRESS */ /* WSAEALREADY maps to EALREADY */ /* WSAENOTSOCK maps to ENOTSOCK */ /* WSAEDESTADDRREQ maps to EDESTADDRREQ */ /* WSAEMSGSIZE maps to EMSGSIZE */ /* WSAEPROTOTYPE maps to EPROTOTYPE */ /* WSAENOPROTOOPT maps to ENOPROTOOPT */ /* WSAEPROTONOSUPPORT maps to EPROTONOSUPPORT */ /* WSAESOCKTNOSUPPORT is ESOCKTNOSUPPORT */ /* WSAEOPNOTSUPP maps to EOPNOTSUPP */ /* WSAEPFNOSUPPORT is EPFNOSUPPORT */ /* WSAEAFNOSUPPORT maps to EAFNOSUPPORT */ /* WSAEADDRINUSE maps to EADDRINUSE */ /* WSAEADDRNOTAVAIL maps to EADDRNOTAVAIL */ /* WSAENETDOWN maps to ENETDOWN */ /* WSAENETUNREACH maps to ENETUNREACH */ /* WSAENETRESET maps to ENETRESET */ /* WSAECONNABORTED maps to ECONNABORTED */ /* WSAECONNRESET maps to ECONNRESET */ /* WSAENOBUFS maps to ENOBUFS */ /* WSAEISCONN maps to EISCONN */ /* WSAENOTCONN maps to ENOTCONN */ /* WSAESHUTDOWN is ESHUTDOWN */ /* WSAETOOMANYREFS is ETOOMANYREFS */ /* WSAETIMEDOUT maps to ETIMEDOUT */ /* WSAECONNREFUSED maps to ECONNREFUSED */ /* WSAELOOP maps to ELOOP */ /* WSAENAMETOOLONG maps to ENAMETOOLONG */ /* WSAEHOSTDOWN is EHOSTDOWN */ /* WSAEHOSTUNREACH maps to EHOSTUNREACH */ /* WSAENOTEMPTY maps to ENOTEMPTY */ /* WSAEPROCLIM is EPROCLIM */ /* WSAEUSERS is EUSERS */ /* WSAEDQUOT is EDQUOT */ /* WSAESTALE is ESTALE */ /* WSAEREMOTE is EREMOTE */ case WSASYSNOTREADY: return "Network subsystem is unavailable"; case WSAVERNOTSUPPORTED: return "Winsock.dll version out of range"; case WSANOTINITIALISED: return "Successful WSAStartup not yet performed"; case WSAEDISCON: return "Graceful shutdown in progress"; case WSAENOMORE: case WSA_E_NO_MORE: return "No more results"; case WSAECANCELLED: case WSA_E_CANCELLED: return "Call was canceled"; case WSAEINVALIDPROCTABLE: return "Procedure call table is invalid"; case WSAEINVALIDPROVIDER: return "Service provider is invalid"; case WSAEPROVIDERFAILEDINIT: return "Service provider failed to initialize"; case WSASYSCALLFAILURE: return "System call failure"; case WSASERVICE_NOT_FOUND: return "Service not found"; case WSATYPE_NOT_FOUND: return "Class type not found"; case WSAEREFUSED: return "Database query was refused"; case WSAHOST_NOT_FOUND: return "Host not found"; case WSATRY_AGAIN: return "Nonauthoritative host not found"; case WSANO_RECOVERY: return "Nonrecoverable error"; case WSANO_DATA: return "Valid name, no data record of requested type"; /* WSA_QOS_* omitted */ # endif #endif #if GNULIB_defined_ENOMSG case ENOMSG: return "No message of desired type"; #endif #if GNULIB_defined_EIDRM case EIDRM: return "Identifier removed"; #endif #if GNULIB_defined_ENOLINK case ENOLINK: return "Link has been severed"; #endif #if GNULIB_defined_EPROTO case EPROTO: return "Protocol error"; #endif #if GNULIB_defined_EMULTIHOP case EMULTIHOP: return "Multihop attempted"; #endif #if GNULIB_defined_EBADMSG case EBADMSG: return "Bad message"; #endif #if GNULIB_defined_EOVERFLOW case EOVERFLOW: return "Value too large for defined data type"; #endif #if GNULIB_defined_ENOTSUP case ENOTSUP: return "Not supported"; #endif #if GNULIB_defined_ENETRESET case ENETRESET: return "Network dropped connection on reset"; #endif #if GNULIB_defined_ECONNABORTED case ECONNABORTED: return "Software caused connection abort"; #endif #if GNULIB_defined_ESTALE case ESTALE: return "Stale NFS file handle"; #endif #if GNULIB_defined_EDQUOT case EDQUOT: return "Disk quota exceeded"; #endif #if GNULIB_defined_ECANCELED case ECANCELED: return "Operation canceled"; #endif #if GNULIB_defined_EOWNERDEAD case EOWNERDEAD: return "Owner died"; #endif #if GNULIB_defined_ENOTRECOVERABLE case ENOTRECOVERABLE: return "State not recoverable"; #endif #if GNULIB_defined_EILSEQ case EILSEQ: return "Invalid or incomplete multibyte or wide character"; #endif default: return NULL; } } ttfautohint-0.97/gnulib/src/msvc-nothrow.c0000644000175000001440000000243412237364242015630 00000000000000/* Wrappers that don't throw invalid parameter notifications with MSVC runtime libraries. Copyright (C) 2011-2013 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 3, 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 . */ #include /* Specification. */ #include "msvc-nothrow.h" /* Get declarations of the native Windows API functions. */ #define WIN32_LEAN_AND_MEAN #include #include "msvc-inval.h" #undef _get_osfhandle #if HAVE_MSVC_INVALID_PARAMETER_HANDLER intptr_t _gl_nothrow_get_osfhandle (int fd) { intptr_t result; TRY_MSVC_INVAL { result = _get_osfhandle (fd); } CATCH_MSVC_INVAL { result = (intptr_t) INVALID_HANDLE_VALUE; } DONE_MSVC_INVAL; return result; } #endif ttfautohint-0.97/gnulib/src/strerror-override.h0000644000175000001440000000374312237364242016672 00000000000000/* strerror-override.h --- POSIX compatible system error routine Copyright (C) 2010-2013 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 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 . */ #ifndef _GL_STRERROR_OVERRIDE_H # define _GL_STRERROR_OVERRIDE_H # include # include /* Reasonable buffer size that should never trigger ERANGE; if this proves too small, we intentionally abort(), to remind us to fix this value. */ # define STACKBUF_LEN 256 /* If ERRNUM maps to an errno value defined by gnulib, return a string describing the error. Otherwise return NULL. */ # if REPLACE_STRERROR_0 \ || GNULIB_defined_ESOCK \ || GNULIB_defined_ESTREAMS \ || GNULIB_defined_EWINSOCK \ || GNULIB_defined_ENOMSG \ || GNULIB_defined_EIDRM \ || GNULIB_defined_ENOLINK \ || GNULIB_defined_EPROTO \ || GNULIB_defined_EMULTIHOP \ || GNULIB_defined_EBADMSG \ || GNULIB_defined_EOVERFLOW \ || GNULIB_defined_ENOTSUP \ || GNULIB_defined_ENETRESET \ || GNULIB_defined_ECONNABORTED \ || GNULIB_defined_ESTALE \ || GNULIB_defined_EDQUOT \ || GNULIB_defined_ECANCELED \ || GNULIB_defined_EOWNERDEAD \ || GNULIB_defined_ENOTRECOVERABLE \ || GNULIB_defined_EILSEQ extern const char *strerror_override (int errnum) _GL_ATTRIBUTE_CONST; # else # define strerror_override(ignored) NULL # endif #endif /* _GL_STRERROR_OVERRIDE_H */ ttfautohint-0.97/gnulib/src/unistd.in.h0000644000175000001440000014611112237364242015103 00000000000000/* Substitute for and wrapper around . Copyright (C) 2003-2013 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 3, 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 . */ #ifndef _@GUARD_PREFIX@_UNISTD_H #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* The include_next requires a split double-inclusion guard. */ #if @HAVE_UNISTD_H@ # @INCLUDE_NEXT@ @NEXT_UNISTD_H@ #endif /* Get all possible declarations of gethostname(). */ #if @GNULIB_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@ \ && !defined _GL_INCLUDING_WINSOCK2_H # define _GL_INCLUDING_WINSOCK2_H # include # undef _GL_INCLUDING_WINSOCK2_H #endif #if !defined _@GUARD_PREFIX@_UNISTD_H && !defined _GL_INCLUDING_WINSOCK2_H #define _@GUARD_PREFIX@_UNISTD_H /* NetBSD 5.0 mis-defines NULL. Also get size_t. */ #include /* mingw doesn't define the SEEK_* or *_FILENO macros in . */ /* Cygwin 1.7.1 declares symlinkat in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if (!(defined SEEK_CUR && defined SEEK_END && defined SEEK_SET) \ || ((@GNULIB_SYMLINKAT@ || defined GNULIB_POSIXCHECK) \ && defined __CYGWIN__)) \ && ! defined __GLIBC__ # include #endif /* Cygwin 1.7.1 declares unlinkat in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if (@GNULIB_UNLINKAT@ || defined GNULIB_POSIXCHECK) && defined __CYGWIN__ \ && ! defined __GLIBC__ # include #endif /* mingw fails to declare _exit in . */ /* mingw, MSVC, BeOS, Haiku declare environ in , not in . */ /* Solaris declares getcwd not only in but also in . */ /* OSF Tru64 Unix cannot see gnulib rpl_strtod when system is included here. */ /* But avoid namespace pollution on glibc systems. */ #if !defined __GLIBC__ && !defined __osf__ # define __need_system_stdlib_h # include # undef __need_system_stdlib_h #endif /* Native Windows platforms declare chdir, getcwd, rmdir in and/or , not in . They also declare access(), chmod(), close(), dup(), dup2(), isatty(), lseek(), read(), unlink(), write() in . */ #if ((@GNULIB_CHDIR@ || @GNULIB_GETCWD@ || @GNULIB_RMDIR@ \ || defined GNULIB_POSIXCHECK) \ && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__)) # include /* mingw32, mingw64 */ # include /* mingw64, MSVC 9 */ #elif (@GNULIB_CLOSE@ || @GNULIB_DUP@ || @GNULIB_DUP2@ || @GNULIB_ISATTY@ \ || @GNULIB_LSEEK@ || @GNULIB_READ@ || @GNULIB_UNLINK@ || @GNULIB_WRITE@ \ || defined GNULIB_POSIXCHECK) \ && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) # include #endif /* AIX and OSF/1 5.1 declare getdomainname in , not in . NonStop Kernel declares gethostname in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if ((@GNULIB_GETDOMAINNAME@ && (defined _AIX || defined __osf__)) \ || (@GNULIB_GETHOSTNAME@ && defined __TANDEM)) \ && !defined __GLIBC__ # include #endif /* MSVC defines off_t in . May also define off_t to a 64-bit type on native Windows. */ #if !@HAVE_UNISTD_H@ || @WINDOWS_64_BIT_OFF_T@ /* Get off_t. */ # include #endif #if (@GNULIB_READ@ || @GNULIB_WRITE@ \ || @GNULIB_READLINK@ || @GNULIB_READLINKAT@ \ || @GNULIB_PREAD@ || @GNULIB_PWRITE@ || defined GNULIB_POSIXCHECK) /* Get ssize_t. */ # include #endif /* Get getopt(), optarg, optind, opterr, optopt. But avoid namespace pollution on glibc systems. */ #if @GNULIB_UNISTD_H_GETOPT@ && !defined __GLIBC__ && !defined _GL_SYSTEM_GETOPT # define __need_getopt # include #endif #ifndef _GL_INLINE_HEADER_BEGIN #error "Please include config.h first." #endif _GL_INLINE_HEADER_BEGIN #ifndef _GL_UNISTD_INLINE # define _GL_UNISTD_INLINE _GL_INLINE #endif /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */ /* The definition of _GL_ARG_NONNULL is copied here. */ /* The definition of _GL_WARN_ON_USE is copied here. */ /* Hide some function declarations from . */ #if @GNULIB_GETHOSTNAME@ && @UNISTD_H_HAVE_WINSOCK2_H@ # if !defined _@GUARD_PREFIX@_SYS_SOCKET_H # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef socket # define socket socket_used_without_including_sys_socket_h # undef connect # define connect connect_used_without_including_sys_socket_h # undef accept # define accept accept_used_without_including_sys_socket_h # undef bind # define bind bind_used_without_including_sys_socket_h # undef getpeername # define getpeername getpeername_used_without_including_sys_socket_h # undef getsockname # define getsockname getsockname_used_without_including_sys_socket_h # undef getsockopt # define getsockopt getsockopt_used_without_including_sys_socket_h # undef listen # define listen listen_used_without_including_sys_socket_h # undef recv # define recv recv_used_without_including_sys_socket_h # undef send # define send send_used_without_including_sys_socket_h # undef recvfrom # define recvfrom recvfrom_used_without_including_sys_socket_h # undef sendto # define sendto sendto_used_without_including_sys_socket_h # undef setsockopt # define setsockopt setsockopt_used_without_including_sys_socket_h # undef shutdown # define shutdown shutdown_used_without_including_sys_socket_h # else _GL_WARN_ON_USE (socket, "socket() used without including "); _GL_WARN_ON_USE (connect, "connect() used without including "); _GL_WARN_ON_USE (accept, "accept() used without including "); _GL_WARN_ON_USE (bind, "bind() used without including "); _GL_WARN_ON_USE (getpeername, "getpeername() used without including "); _GL_WARN_ON_USE (getsockname, "getsockname() used without including "); _GL_WARN_ON_USE (getsockopt, "getsockopt() used without including "); _GL_WARN_ON_USE (listen, "listen() used without including "); _GL_WARN_ON_USE (recv, "recv() used without including "); _GL_WARN_ON_USE (send, "send() used without including "); _GL_WARN_ON_USE (recvfrom, "recvfrom() used without including "); _GL_WARN_ON_USE (sendto, "sendto() used without including "); _GL_WARN_ON_USE (setsockopt, "setsockopt() used without including "); _GL_WARN_ON_USE (shutdown, "shutdown() used without including "); # endif # endif # if !defined _@GUARD_PREFIX@_SYS_SELECT_H # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef select # define select select_used_without_including_sys_select_h # else _GL_WARN_ON_USE (select, "select() used without including "); # endif # endif #endif /* OS/2 EMX lacks these macros. */ #ifndef STDIN_FILENO # define STDIN_FILENO 0 #endif #ifndef STDOUT_FILENO # define STDOUT_FILENO 1 #endif #ifndef STDERR_FILENO # define STDERR_FILENO 2 #endif /* Ensure *_OK macros exist. */ #ifndef F_OK # define F_OK 0 # define X_OK 1 # define W_OK 2 # define R_OK 4 #endif /* Declare overridden functions. */ #if defined GNULIB_POSIXCHECK /* The access() function is a security risk. */ _GL_WARN_ON_USE (access, "the access function is a security risk - " "use the gnulib module faccessat instead"); #endif #if @GNULIB_CHDIR@ _GL_CXXALIAS_SYS (chdir, int, (const char *file) _GL_ARG_NONNULL ((1))); _GL_CXXALIASWARN (chdir); #elif defined GNULIB_POSIXCHECK # undef chdir # if HAVE_RAW_DECL_CHDIR _GL_WARN_ON_USE (chown, "chdir is not always in - " "use gnulib module chdir for portability"); # endif #endif #if @GNULIB_CHOWN@ /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE to GID (if GID is not -1). Follow symbolic links. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_DUP2@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define dup2 rpl_dup2 # endif _GL_FUNCDECL_RPL (dup2, int, (int oldfd, int newfd)); _GL_CXXALIAS_RPL (dup2, int, (int oldfd, int newfd)); # else # if !@HAVE_DUP2@ _GL_FUNCDECL_SYS (dup2, int, (int oldfd, int newfd)); # endif _GL_CXXALIAS_SYS (dup2, int, (int oldfd, int newfd)); # endif _GL_CXXALIASWARN (dup2); #elif defined GNULIB_POSIXCHECK # undef dup2 # if HAVE_RAW_DECL_DUP2 _GL_WARN_ON_USE (dup2, "dup2 is unportable - " "use gnulib module dup2 for portability"); # endif #endif #if @GNULIB_DUP3@ /* Copy the file descriptor OLDFD into file descriptor NEWFD, with the specified flags. The flags are a bitmask, possibly including O_CLOEXEC (defined in ) and O_TEXT, O_BINARY (defined in "binary-io.h"). Close NEWFD first if it is open. Return newfd if successful, otherwise -1 and errno set. See the Linux man page at . */ # if @HAVE_DUP3@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define dup3 rpl_dup3 # endif _GL_FUNCDECL_RPL (dup3, int, (int oldfd, int newfd, int flags)); _GL_CXXALIAS_RPL (dup3, int, (int oldfd, int newfd, int flags)); # else _GL_FUNCDECL_SYS (dup3, int, (int oldfd, int newfd, int flags)); _GL_CXXALIAS_SYS (dup3, int, (int oldfd, int newfd, int flags)); # endif _GL_CXXALIASWARN (dup3); #elif defined GNULIB_POSIXCHECK # undef dup3 # if HAVE_RAW_DECL_DUP3 _GL_WARN_ON_USE (dup3, "dup3 is unportable - " "use gnulib module dup3 for portability"); # endif #endif #if @GNULIB_ENVIRON@ # if !@HAVE_DECL_ENVIRON@ /* Set of environment variables and values. An array of strings of the form "VARIABLE=VALUE", terminated with a NULL. */ # if defined __APPLE__ && defined __MACH__ # include # define environ (*_NSGetEnviron ()) # else # ifdef __cplusplus extern "C" { # endif extern char **environ; # ifdef __cplusplus } # endif # endif # endif #elif defined GNULIB_POSIXCHECK # if HAVE_RAW_DECL_ENVIRON _GL_UNISTD_INLINE char *** rpl_environ (void) { return &environ; } _GL_WARN_ON_USE (rpl_environ, "environ is unportable - " "use gnulib module environ for portability"); # undef environ # define environ (*rpl_environ ()) # endif #endif #if @GNULIB_EUIDACCESS@ /* Like access(), except that it uses the effective user id and group id of the current process. */ # if !@HAVE_EUIDACCESS@ _GL_FUNCDECL_SYS (euidaccess, int, (const char *filename, int mode) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (euidaccess, int, (const char *filename, int mode)); _GL_CXXALIASWARN (euidaccess); # if defined GNULIB_POSIXCHECK /* Like access(), this function is a security risk. */ _GL_WARN_ON_USE (euidaccess, "the euidaccess function is a security risk - " "use the gnulib module faccessat instead"); # endif #elif defined GNULIB_POSIXCHECK # undef euidaccess # if HAVE_RAW_DECL_EUIDACCESS _GL_WARN_ON_USE (euidaccess, "euidaccess is unportable - " "use gnulib module euidaccess for portability"); # endif #endif #if @GNULIB_FACCESSAT@ # if !@HAVE_FACCESSAT@ _GL_FUNCDECL_SYS (faccessat, int, (int fd, char const *file, int mode, int flag) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (faccessat, int, (int fd, char const *file, int mode, int flag)); _GL_CXXALIASWARN (faccessat); #elif defined GNULIB_POSIXCHECK # undef faccessat # if HAVE_RAW_DECL_FACCESSAT _GL_WARN_ON_USE (faccessat, "faccessat is not portable - " "use gnulib module faccessat for portability"); # endif #endif #if @GNULIB_FCHDIR@ /* Change the process' current working directory to the directory on which the given file descriptor is open. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if ! @HAVE_FCHDIR@ _GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/)); /* Gnulib internal hooks needed to maintain the fchdir metadata. */ _GL_EXTERN_C int _gl_register_fd (int fd, const char *filename) _GL_ARG_NONNULL ((2)); _GL_EXTERN_C void _gl_unregister_fd (int fd); _GL_EXTERN_C int _gl_register_dup (int oldfd, int newfd); _GL_EXTERN_C const char *_gl_directory_name (int fd); # else # if !@HAVE_DECL_FCHDIR@ _GL_FUNCDECL_SYS (fchdir, int, (int /*fd*/)); # endif # endif _GL_CXXALIAS_SYS (fchdir, int, (int /*fd*/)); _GL_CXXALIASWARN (fchdir); #elif defined GNULIB_POSIXCHECK # undef fchdir # if HAVE_RAW_DECL_FCHDIR _GL_WARN_ON_USE (fchdir, "fchdir is unportable - " "use gnulib module fchdir for portability"); # endif #endif #if @GNULIB_FCHOWNAT@ # if @REPLACE_FCHOWNAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef fchownat # define fchownat rpl_fchownat # endif _GL_FUNCDECL_RPL (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag)); # else # if !@HAVE_FCHOWNAT@ _GL_FUNCDECL_SYS (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (fchownat, int, (int fd, char const *file, uid_t owner, gid_t group, int flag)); # endif _GL_CXXALIASWARN (fchownat); #elif defined GNULIB_POSIXCHECK # undef fchownat # if HAVE_RAW_DECL_FCHOWNAT _GL_WARN_ON_USE (fchownat, "fchownat is not portable - " "use gnulib module openat for portability"); # endif #endif #if @GNULIB_FDATASYNC@ /* Synchronize changes to a file. Return 0 if successful, otherwise -1 and errno set. See POSIX:2008 specification . */ # if !@HAVE_FDATASYNC@ || !@HAVE_DECL_FDATASYNC@ _GL_FUNCDECL_SYS (fdatasync, int, (int fd)); # endif _GL_CXXALIAS_SYS (fdatasync, int, (int fd)); _GL_CXXALIASWARN (fdatasync); #elif defined GNULIB_POSIXCHECK # undef fdatasync # if HAVE_RAW_DECL_FDATASYNC _GL_WARN_ON_USE (fdatasync, "fdatasync is unportable - " "use gnulib module fdatasync for portability"); # endif #endif #if @GNULIB_FSYNC@ /* Synchronize changes, including metadata, to a file. Return 0 if successful, otherwise -1 and errno set. See POSIX:2008 specification . */ # if !@HAVE_FSYNC@ _GL_FUNCDECL_SYS (fsync, int, (int fd)); # endif _GL_CXXALIAS_SYS (fsync, int, (int fd)); _GL_CXXALIASWARN (fsync); #elif defined GNULIB_POSIXCHECK # undef fsync # if HAVE_RAW_DECL_FSYNC _GL_WARN_ON_USE (fsync, "fsync is unportable - " "use gnulib module fsync for portability"); # endif #endif #if @GNULIB_FTRUNCATE@ /* Change the size of the file to which FD is opened to become equal to LENGTH. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_FTRUNCATE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef ftruncate # define ftruncate rpl_ftruncate # endif _GL_FUNCDECL_RPL (ftruncate, int, (int fd, off_t length)); _GL_CXXALIAS_RPL (ftruncate, int, (int fd, off_t length)); # else # if !@HAVE_FTRUNCATE@ _GL_FUNCDECL_SYS (ftruncate, int, (int fd, off_t length)); # endif _GL_CXXALIAS_SYS (ftruncate, int, (int fd, off_t length)); # endif _GL_CXXALIASWARN (ftruncate); #elif defined GNULIB_POSIXCHECK # undef ftruncate # if HAVE_RAW_DECL_FTRUNCATE _GL_WARN_ON_USE (ftruncate, "ftruncate is unportable - " "use gnulib module ftruncate for portability"); # endif #endif #if @GNULIB_GETCWD@ /* Get the name of the current working directory, and put it in SIZE bytes of BUF. Return BUF if successful, or NULL if the directory couldn't be determined or SIZE was too small. See the POSIX:2008 specification . Additionally, the gnulib module 'getcwd' guarantees the following GNU extension: If BUF is NULL, an array is allocated with 'malloc'; the array is SIZE bytes long, unless SIZE == 0, in which case it is as big as necessary. */ # if @REPLACE_GETCWD@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getcwd rpl_getcwd # endif _GL_FUNCDECL_RPL (getcwd, char *, (char *buf, size_t size)); _GL_CXXALIAS_RPL (getcwd, char *, (char *buf, size_t size)); # else /* Need to cast, because on mingw, the second parameter is int size. */ _GL_CXXALIAS_SYS_CAST (getcwd, char *, (char *buf, size_t size)); # endif _GL_CXXALIASWARN (getcwd); #elif defined GNULIB_POSIXCHECK # undef getcwd # if HAVE_RAW_DECL_GETCWD _GL_WARN_ON_USE (getcwd, "getcwd is unportable - " "use gnulib module getcwd for portability"); # endif #endif #if @GNULIB_GETDOMAINNAME@ /* Return the NIS domain name of the machine. WARNING! The NIS domain name is unrelated to the fully qualified host name of the machine. It is also unrelated to email addresses. WARNING! The NIS domain name is usually the empty string or "(none)" when not using NIS. Put up to LEN bytes of the NIS domain name into NAME. Null terminate it if the name is shorter than LEN. If the NIS domain name is longer than LEN, set errno = EINVAL and return -1. Return 0 if successful, otherwise set errno and return -1. */ # if @REPLACE_GETDOMAINNAME@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef getdomainname # define getdomainname rpl_getdomainname # endif _GL_FUNCDECL_RPL (getdomainname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (getdomainname, int, (char *name, size_t len)); # else # if !@HAVE_DECL_GETDOMAINNAME@ _GL_FUNCDECL_SYS (getdomainname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (getdomainname, int, (char *name, size_t len)); # endif _GL_CXXALIASWARN (getdomainname); #elif defined GNULIB_POSIXCHECK # undef getdomainname # if HAVE_RAW_DECL_GETDOMAINNAME _GL_WARN_ON_USE (getdomainname, "getdomainname is unportable - " "use gnulib module getdomainname for portability"); # endif #endif #if @GNULIB_GETDTABLESIZE@ /* Return the maximum number of file descriptors in the current process. In POSIX, this is same as sysconf (_SC_OPEN_MAX). */ # if @REPLACE_GETDTABLESIZE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef getdtablesize # define getdtablesize rpl_getdtablesize # endif _GL_FUNCDECL_RPL (getdtablesize, int, (void)); _GL_CXXALIAS_RPL (getdtablesize, int, (void)); # else # if !@HAVE_GETDTABLESIZE@ _GL_FUNCDECL_SYS (getdtablesize, int, (void)); # endif _GL_CXXALIAS_SYS (getdtablesize, int, (void)); # endif _GL_CXXALIASWARN (getdtablesize); #elif defined GNULIB_POSIXCHECK # undef getdtablesize # if HAVE_RAW_DECL_GETDTABLESIZE _GL_WARN_ON_USE (getdtablesize, "getdtablesize is unportable - " "use gnulib module getdtablesize for portability"); # endif #endif #if @GNULIB_GETGROUPS@ /* Return the supplemental groups that the current process belongs to. It is unspecified whether the effective group id is in the list. If N is 0, return the group count; otherwise, N describes how many entries are available in GROUPS. Return -1 and set errno if N is not 0 and not large enough. Fails with ENOSYS on some systems. */ # if @REPLACE_GETGROUPS@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef getgroups # define getgroups rpl_getgroups # endif _GL_FUNCDECL_RPL (getgroups, int, (int n, gid_t *groups)); _GL_CXXALIAS_RPL (getgroups, int, (int n, gid_t *groups)); # else # if !@HAVE_GETGROUPS@ _GL_FUNCDECL_SYS (getgroups, int, (int n, gid_t *groups)); # endif _GL_CXXALIAS_SYS (getgroups, int, (int n, gid_t *groups)); # endif _GL_CXXALIASWARN (getgroups); #elif defined GNULIB_POSIXCHECK # undef getgroups # if HAVE_RAW_DECL_GETGROUPS _GL_WARN_ON_USE (getgroups, "getgroups is unportable - " "use gnulib module getgroups for portability"); # endif #endif #if @GNULIB_GETHOSTNAME@ /* Return the standard host name of the machine. WARNING! The host name may or may not be fully qualified. Put up to LEN bytes of the host name into NAME. Null terminate it if the name is shorter than LEN. If the host name is longer than LEN, set errno = EINVAL and return -1. Return 0 if successful, otherwise set errno and return -1. */ # if @UNISTD_H_HAVE_WINSOCK2_H@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef gethostname # define gethostname rpl_gethostname # endif _GL_FUNCDECL_RPL (gethostname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (gethostname, int, (char *name, size_t len)); # else # if !@HAVE_GETHOSTNAME@ _GL_FUNCDECL_SYS (gethostname, int, (char *name, size_t len) _GL_ARG_NONNULL ((1))); # endif /* Need to cast, because on Solaris 10 and OSF/1 5.1 systems, the second parameter is int len. */ _GL_CXXALIAS_SYS_CAST (gethostname, int, (char *name, size_t len)); # endif _GL_CXXALIASWARN (gethostname); #elif @UNISTD_H_HAVE_WINSOCK2_H@ # undef gethostname # define gethostname gethostname_used_without_requesting_gnulib_module_gethostname #elif defined GNULIB_POSIXCHECK # undef gethostname # if HAVE_RAW_DECL_GETHOSTNAME _GL_WARN_ON_USE (gethostname, "gethostname is unportable - " "use gnulib module gethostname for portability"); # endif #endif #if @GNULIB_GETLOGIN@ /* Returns the user's login name, or NULL if it cannot be found. Upon error, returns NULL with errno set. See . Most programs don't need to use this function, because the information is available through environment variables: ${LOGNAME-$USER} on Unix platforms, $USERNAME on native Windows platforms. */ # if !@HAVE_GETLOGIN@ _GL_FUNCDECL_SYS (getlogin, char *, (void)); # endif _GL_CXXALIAS_SYS (getlogin, char *, (void)); _GL_CXXALIASWARN (getlogin); #elif defined GNULIB_POSIXCHECK # undef getlogin # if HAVE_RAW_DECL_GETLOGIN _GL_WARN_ON_USE (getlogin, "getlogin is unportable - " "use gnulib module getlogin for portability"); # endif #endif #if @GNULIB_GETLOGIN_R@ /* Copies the user's login name to NAME. The array pointed to by NAME has room for SIZE bytes. Returns 0 if successful. Upon error, an error number is returned, or -1 in the case that the login name cannot be found but no specific error is provided (this case is hopefully rare but is left open by the POSIX spec). See . Most programs don't need to use this function, because the information is available through environment variables: ${LOGNAME-$USER} on Unix platforms, $USERNAME on native Windows platforms. */ # if @REPLACE_GETLOGIN_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getlogin_r rpl_getlogin_r # endif _GL_FUNCDECL_RPL (getlogin_r, int, (char *name, size_t size) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (getlogin_r, int, (char *name, size_t size)); # else # if !@HAVE_DECL_GETLOGIN_R@ _GL_FUNCDECL_SYS (getlogin_r, int, (char *name, size_t size) _GL_ARG_NONNULL ((1))); # endif /* Need to cast, because on Solaris 10 systems, the second argument is int size. */ _GL_CXXALIAS_SYS_CAST (getlogin_r, int, (char *name, size_t size)); # endif _GL_CXXALIASWARN (getlogin_r); #elif defined GNULIB_POSIXCHECK # undef getlogin_r # if HAVE_RAW_DECL_GETLOGIN_R _GL_WARN_ON_USE (getlogin_r, "getlogin_r is unportable - " "use gnulib module getlogin_r for portability"); # endif #endif #if @GNULIB_GETPAGESIZE@ # if @REPLACE_GETPAGESIZE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getpagesize rpl_getpagesize # endif _GL_FUNCDECL_RPL (getpagesize, int, (void)); _GL_CXXALIAS_RPL (getpagesize, int, (void)); # else # if !@HAVE_GETPAGESIZE@ # if !defined getpagesize /* This is for POSIX systems. */ # if !defined _gl_getpagesize && defined _SC_PAGESIZE # if ! (defined __VMS && __VMS_VER < 70000000) # define _gl_getpagesize() sysconf (_SC_PAGESIZE) # endif # endif /* This is for older VMS. */ # if !defined _gl_getpagesize && defined __VMS # ifdef __ALPHA # define _gl_getpagesize() 8192 # else # define _gl_getpagesize() 512 # endif # endif /* This is for BeOS. */ # if !defined _gl_getpagesize && @HAVE_OS_H@ # include # if defined B_PAGE_SIZE # define _gl_getpagesize() B_PAGE_SIZE # endif # endif /* This is for AmigaOS4.0. */ # if !defined _gl_getpagesize && defined __amigaos4__ # define _gl_getpagesize() 2048 # endif /* This is for older Unix systems. */ # if !defined _gl_getpagesize && @HAVE_SYS_PARAM_H@ # include # ifdef EXEC_PAGESIZE # define _gl_getpagesize() EXEC_PAGESIZE # else # ifdef NBPG # ifndef CLSIZE # define CLSIZE 1 # endif # define _gl_getpagesize() (NBPG * CLSIZE) # else # ifdef NBPC # define _gl_getpagesize() NBPC # endif # endif # endif # endif # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define getpagesize() _gl_getpagesize () # else # if !GNULIB_defined_getpagesize_function _GL_UNISTD_INLINE int getpagesize () { return _gl_getpagesize (); } # define GNULIB_defined_getpagesize_function 1 # endif # endif # endif # endif /* Need to cast, because on Cygwin 1.5.x systems, the return type is size_t. */ _GL_CXXALIAS_SYS_CAST (getpagesize, int, (void)); # endif # if @HAVE_DECL_GETPAGESIZE@ _GL_CXXALIASWARN (getpagesize); # endif #elif defined GNULIB_POSIXCHECK # undef getpagesize # if HAVE_RAW_DECL_GETPAGESIZE _GL_WARN_ON_USE (getpagesize, "getpagesize is unportable - " "use gnulib module getpagesize for portability"); # endif #endif #if @GNULIB_GETUSERSHELL@ /* Return the next valid login shell on the system, or NULL when the end of the list has been reached. */ # if !@HAVE_DECL_GETUSERSHELL@ _GL_FUNCDECL_SYS (getusershell, char *, (void)); # endif _GL_CXXALIAS_SYS (getusershell, char *, (void)); _GL_CXXALIASWARN (getusershell); #elif defined GNULIB_POSIXCHECK # undef getusershell # if HAVE_RAW_DECL_GETUSERSHELL _GL_WARN_ON_USE (getusershell, "getusershell is unportable - " "use gnulib module getusershell for portability"); # endif #endif #if @GNULIB_GETUSERSHELL@ /* Rewind to pointer that is advanced at each getusershell() call. */ # if !@HAVE_DECL_GETUSERSHELL@ _GL_FUNCDECL_SYS (setusershell, void, (void)); # endif _GL_CXXALIAS_SYS (setusershell, void, (void)); _GL_CXXALIASWARN (setusershell); #elif defined GNULIB_POSIXCHECK # undef setusershell # if HAVE_RAW_DECL_SETUSERSHELL _GL_WARN_ON_USE (setusershell, "setusershell is unportable - " "use gnulib module getusershell for portability"); # endif #endif #if @GNULIB_GETUSERSHELL@ /* Free the pointer that is advanced at each getusershell() call and associated resources. */ # if !@HAVE_DECL_GETUSERSHELL@ _GL_FUNCDECL_SYS (endusershell, void, (void)); # endif _GL_CXXALIAS_SYS (endusershell, void, (void)); _GL_CXXALIASWARN (endusershell); #elif defined GNULIB_POSIXCHECK # undef endusershell # if HAVE_RAW_DECL_ENDUSERSHELL _GL_WARN_ON_USE (endusershell, "endusershell is unportable - " "use gnulib module getusershell for portability"); # endif #endif #if @GNULIB_GROUP_MEMBER@ /* Determine whether group id is in calling user's group list. */ # if !@HAVE_GROUP_MEMBER@ _GL_FUNCDECL_SYS (group_member, int, (gid_t gid)); # endif _GL_CXXALIAS_SYS (group_member, int, (gid_t gid)); _GL_CXXALIASWARN (group_member); #elif defined GNULIB_POSIXCHECK # undef group_member # if HAVE_RAW_DECL_GROUP_MEMBER _GL_WARN_ON_USE (group_member, "group_member is unportable - " "use gnulib module group-member for portability"); # endif #endif #if @GNULIB_ISATTY@ # if @REPLACE_ISATTY@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef isatty # define isatty rpl_isatty # endif _GL_FUNCDECL_RPL (isatty, int, (int fd)); _GL_CXXALIAS_RPL (isatty, int, (int fd)); # else _GL_CXXALIAS_SYS (isatty, int, (int fd)); # endif _GL_CXXALIASWARN (isatty); #elif defined GNULIB_POSIXCHECK # undef isatty # if HAVE_RAW_DECL_ISATTY _GL_WARN_ON_USE (isatty, "isatty has portability problems on native Windows - " "use gnulib module isatty for portability"); # endif #endif #if @GNULIB_LCHOWN@ /* Change the owner of FILE to UID (if UID is not -1) and the group of FILE to GID (if GID is not -1). Do not follow symbolic links. Return 0 if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_LCHOWN@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef lchown # define lchown rpl_lchown # endif _GL_FUNCDECL_RPL (lchown, int, (char const *file, uid_t owner, gid_t group) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (lchown, int, (char const *file, uid_t owner, gid_t group)); # else # if !@HAVE_LCHOWN@ _GL_FUNCDECL_SYS (lchown, int, (char const *file, uid_t owner, gid_t group) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (lchown, int, (char const *file, uid_t owner, gid_t group)); # endif _GL_CXXALIASWARN (lchown); #elif defined GNULIB_POSIXCHECK # undef lchown # if HAVE_RAW_DECL_LCHOWN _GL_WARN_ON_USE (lchown, "lchown is unportable to pre-POSIX.1-2001 systems - " "use gnulib module lchown for portability"); # endif #endif #if @GNULIB_LINK@ /* Create a new hard link for an existing file. Return 0 if successful, otherwise -1 and errno set. See POSIX:2008 specification . */ # if @REPLACE_LINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define link rpl_link # endif _GL_FUNCDECL_RPL (link, int, (const char *path1, const char *path2) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (link, int, (const char *path1, const char *path2)); # else # if !@HAVE_LINK@ _GL_FUNCDECL_SYS (link, int, (const char *path1, const char *path2) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (link, int, (const char *path1, const char *path2)); # endif _GL_CXXALIASWARN (link); #elif defined GNULIB_POSIXCHECK # undef link # if HAVE_RAW_DECL_LINK _GL_WARN_ON_USE (link, "link is unportable - " "use gnulib module link for portability"); # endif #endif #if @GNULIB_LINKAT@ /* Create a new hard link for an existing file, relative to two directories. FLAG controls whether symlinks are followed. Return 0 if successful, otherwise -1 and errno set. */ # if @REPLACE_LINKAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef linkat # define linkat rpl_linkat # endif _GL_FUNCDECL_RPL (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag) _GL_ARG_NONNULL ((2, 4))); _GL_CXXALIAS_RPL (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag)); # else # if !@HAVE_LINKAT@ _GL_FUNCDECL_SYS (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag) _GL_ARG_NONNULL ((2, 4))); # endif _GL_CXXALIAS_SYS (linkat, int, (int fd1, const char *path1, int fd2, const char *path2, int flag)); # endif _GL_CXXALIASWARN (linkat); #elif defined GNULIB_POSIXCHECK # undef linkat # if HAVE_RAW_DECL_LINKAT _GL_WARN_ON_USE (linkat, "linkat is unportable - " "use gnulib module linkat for portability"); # endif #endif #if @GNULIB_LSEEK@ /* Set the offset of FD relative to SEEK_SET, SEEK_CUR, or SEEK_END. Return the new offset if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_LSEEK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define lseek rpl_lseek # endif _GL_FUNCDECL_RPL (lseek, off_t, (int fd, off_t offset, int whence)); _GL_CXXALIAS_RPL (lseek, off_t, (int fd, off_t offset, int whence)); # else _GL_CXXALIAS_SYS (lseek, off_t, (int fd, off_t offset, int whence)); # endif _GL_CXXALIASWARN (lseek); #elif defined GNULIB_POSIXCHECK # undef lseek # if HAVE_RAW_DECL_LSEEK _GL_WARN_ON_USE (lseek, "lseek does not fail with ESPIPE on pipes on some " "systems - use gnulib module lseek for portability"); # endif #endif #if @GNULIB_PIPE@ /* Create a pipe, defaulting to O_BINARY mode. Store the read-end as fd[0] and the write-end as fd[1]. Return 0 upon success, or -1 with errno set upon failure. */ # if !@HAVE_PIPE@ _GL_FUNCDECL_SYS (pipe, int, (int fd[2]) _GL_ARG_NONNULL ((1))); # endif _GL_CXXALIAS_SYS (pipe, int, (int fd[2])); _GL_CXXALIASWARN (pipe); #elif defined GNULIB_POSIXCHECK # undef pipe # if HAVE_RAW_DECL_PIPE _GL_WARN_ON_USE (pipe, "pipe is unportable - " "use gnulib module pipe-posix for portability"); # endif #endif #if @GNULIB_PIPE2@ /* Create a pipe, applying the given flags when opening the read-end of the pipe and the write-end of the pipe. The flags are a bitmask, possibly including O_CLOEXEC (defined in ) and O_TEXT, O_BINARY (defined in "binary-io.h"). Store the read-end as fd[0] and the write-end as fd[1]. Return 0 upon success, or -1 with errno set upon failure. See also the Linux man page at . */ # if @HAVE_PIPE2@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define pipe2 rpl_pipe2 # endif _GL_FUNCDECL_RPL (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (pipe2, int, (int fd[2], int flags)); # else _GL_FUNCDECL_SYS (pipe2, int, (int fd[2], int flags) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_SYS (pipe2, int, (int fd[2], int flags)); # endif _GL_CXXALIASWARN (pipe2); #elif defined GNULIB_POSIXCHECK # undef pipe2 # if HAVE_RAW_DECL_PIPE2 _GL_WARN_ON_USE (pipe2, "pipe2 is unportable - " "use gnulib module pipe2 for portability"); # endif #endif #if @GNULIB_PREAD@ /* Read at most BUFSIZE bytes from FD into BUF, starting at OFFSET. Return the number of bytes placed into BUF if successful, otherwise set errno and return -1. 0 indicates EOF. See the POSIX:2008 specification . */ # if @REPLACE_PREAD@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef pread # define pread rpl_pread # endif _GL_FUNCDECL_RPL (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset)); # else # if !@HAVE_PREAD@ _GL_FUNCDECL_SYS (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (pread, ssize_t, (int fd, void *buf, size_t bufsize, off_t offset)); # endif _GL_CXXALIASWARN (pread); #elif defined GNULIB_POSIXCHECK # undef pread # if HAVE_RAW_DECL_PREAD _GL_WARN_ON_USE (pread, "pread is unportable - " "use gnulib module pread for portability"); # endif #endif #if @GNULIB_PWRITE@ /* Write at most BUFSIZE bytes from BUF into FD, starting at OFFSET. Return the number of bytes written if successful, otherwise set errno and return -1. 0 indicates nothing written. See the POSIX:2008 specification . */ # if @REPLACE_PWRITE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef pwrite # define pwrite rpl_pwrite # endif _GL_FUNCDECL_RPL (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset)); # else # if !@HAVE_PWRITE@ _GL_FUNCDECL_SYS (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (pwrite, ssize_t, (int fd, const void *buf, size_t bufsize, off_t offset)); # endif _GL_CXXALIASWARN (pwrite); #elif defined GNULIB_POSIXCHECK # undef pwrite # if HAVE_RAW_DECL_PWRITE _GL_WARN_ON_USE (pwrite, "pwrite is unportable - " "use gnulib module pwrite for portability"); # endif #endif #if @GNULIB_READ@ /* Read up to COUNT bytes from file descriptor FD into the buffer starting at BUF. See the POSIX:2008 specification . */ # if @REPLACE_READ@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef read # define read rpl_read # endif _GL_FUNCDECL_RPL (read, ssize_t, (int fd, void *buf, size_t count) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (read, ssize_t, (int fd, void *buf, size_t count)); # else /* Need to cast, because on mingw, the third parameter is unsigned int count and the return type is 'int'. */ _GL_CXXALIAS_SYS_CAST (read, ssize_t, (int fd, void *buf, size_t count)); # endif _GL_CXXALIASWARN (read); #endif #if @GNULIB_READLINK@ /* Read the contents of the symbolic link FILE and place the first BUFSIZE bytes of it into BUF. Return the number of bytes placed into BUF if successful, otherwise -1 and errno set. See the POSIX:2008 specification . */ # if @REPLACE_READLINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define readlink rpl_readlink # endif _GL_FUNCDECL_RPL (readlink, ssize_t, (const char *file, char *buf, size_t bufsize) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (readlink, ssize_t, (const char *file, char *buf, size_t bufsize)); # else # if !@HAVE_READLINK@ _GL_FUNCDECL_SYS (readlink, ssize_t, (const char *file, char *buf, size_t bufsize) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (readlink, ssize_t, (const char *file, char *buf, size_t bufsize)); # endif _GL_CXXALIASWARN (readlink); #elif defined GNULIB_POSIXCHECK # undef readlink # if HAVE_RAW_DECL_READLINK _GL_WARN_ON_USE (readlink, "readlink is unportable - " "use gnulib module readlink for portability"); # endif #endif #if @GNULIB_READLINKAT@ # if !@HAVE_READLINKAT@ _GL_FUNCDECL_SYS (readlinkat, ssize_t, (int fd, char const *file, char *buf, size_t len) _GL_ARG_NONNULL ((2, 3))); # endif _GL_CXXALIAS_SYS (readlinkat, ssize_t, (int fd, char const *file, char *buf, size_t len)); _GL_CXXALIASWARN (readlinkat); #elif defined GNULIB_POSIXCHECK # undef readlinkat # if HAVE_RAW_DECL_READLINKAT _GL_WARN_ON_USE (readlinkat, "readlinkat is not portable - " "use gnulib module readlinkat for portability"); # endif #endif #if @GNULIB_RMDIR@ /* Remove the directory DIR. */ # if @REPLACE_RMDIR@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # define rmdir rpl_rmdir # endif _GL_FUNCDECL_RPL (rmdir, int, (char const *name) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (rmdir, int, (char const *name)); # else _GL_CXXALIAS_SYS (rmdir, int, (char const *name)); # endif _GL_CXXALIASWARN (rmdir); #elif defined GNULIB_POSIXCHECK # undef rmdir # if HAVE_RAW_DECL_RMDIR _GL_WARN_ON_USE (rmdir, "rmdir is unportable - " "use gnulib module rmdir for portability"); # endif #endif #if @GNULIB_SETHOSTNAME@ /* Set the host name of the machine. The host name may or may not be fully qualified. Put LEN bytes of NAME into the host name. Return 0 if successful, otherwise, set errno and return -1. Platforms with no ability to set the hostname return -1 and set errno = ENOSYS. */ # if !@HAVE_SETHOSTNAME@ || !@HAVE_DECL_SETHOSTNAME@ _GL_FUNCDECL_SYS (sethostname, int, (const char *name, size_t len) _GL_ARG_NONNULL ((1))); # endif /* Need to cast, because on Solaris 11 2011-10, Mac OS X 10.5, IRIX 6.5 and FreeBSD 6.4 the second parameter is int. On Solaris 11 2011-10, the first parameter is not const. */ _GL_CXXALIAS_SYS_CAST (sethostname, int, (const char *name, size_t len)); _GL_CXXALIASWARN (sethostname); #elif defined GNULIB_POSIXCHECK # undef sethostname # if HAVE_RAW_DECL_SETHOSTNAME _GL_WARN_ON_USE (sethostname, "sethostname is unportable - " "use gnulib module sethostname for portability"); # endif #endif #if @GNULIB_SLEEP@ /* Pause the execution of the current thread for N seconds. Returns the number of seconds left to sleep. See the POSIX:2008 specification . */ # if @REPLACE_SLEEP@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef sleep # define sleep rpl_sleep # endif _GL_FUNCDECL_RPL (sleep, unsigned int, (unsigned int n)); _GL_CXXALIAS_RPL (sleep, unsigned int, (unsigned int n)); # else # if !@HAVE_SLEEP@ _GL_FUNCDECL_SYS (sleep, unsigned int, (unsigned int n)); # endif _GL_CXXALIAS_SYS (sleep, unsigned int, (unsigned int n)); # endif _GL_CXXALIASWARN (sleep); #elif defined GNULIB_POSIXCHECK # undef sleep # if HAVE_RAW_DECL_SLEEP _GL_WARN_ON_USE (sleep, "sleep is unportable - " "use gnulib module sleep for portability"); # endif #endif #if @GNULIB_SYMLINK@ # if @REPLACE_SYMLINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef symlink # define symlink rpl_symlink # endif _GL_FUNCDECL_RPL (symlink, int, (char const *contents, char const *file) _GL_ARG_NONNULL ((1, 2))); _GL_CXXALIAS_RPL (symlink, int, (char const *contents, char const *file)); # else # if !@HAVE_SYMLINK@ _GL_FUNCDECL_SYS (symlink, int, (char const *contents, char const *file) _GL_ARG_NONNULL ((1, 2))); # endif _GL_CXXALIAS_SYS (symlink, int, (char const *contents, char const *file)); # endif _GL_CXXALIASWARN (symlink); #elif defined GNULIB_POSIXCHECK # undef symlink # if HAVE_RAW_DECL_SYMLINK _GL_WARN_ON_USE (symlink, "symlink is not portable - " "use gnulib module symlink for portability"); # endif #endif #if @GNULIB_SYMLINKAT@ # if !@HAVE_SYMLINKAT@ _GL_FUNCDECL_SYS (symlinkat, int, (char const *contents, int fd, char const *file) _GL_ARG_NONNULL ((1, 3))); # endif _GL_CXXALIAS_SYS (symlinkat, int, (char const *contents, int fd, char const *file)); _GL_CXXALIASWARN (symlinkat); #elif defined GNULIB_POSIXCHECK # undef symlinkat # if HAVE_RAW_DECL_SYMLINKAT _GL_WARN_ON_USE (symlinkat, "symlinkat is not portable - " "use gnulib module symlinkat for portability"); # endif #endif #if @GNULIB_TTYNAME_R@ /* Store at most BUFLEN characters of the pathname of the terminal FD is open on in BUF. Return 0 on success, otherwise an error number. */ # if @REPLACE_TTYNAME_R@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef ttyname_r # define ttyname_r rpl_ttyname_r # endif _GL_FUNCDECL_RPL (ttyname_r, int, (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (ttyname_r, int, (int fd, char *buf, size_t buflen)); # else # if !@HAVE_DECL_TTYNAME_R@ _GL_FUNCDECL_SYS (ttyname_r, int, (int fd, char *buf, size_t buflen) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (ttyname_r, int, (int fd, char *buf, size_t buflen)); # endif _GL_CXXALIASWARN (ttyname_r); #elif defined GNULIB_POSIXCHECK # undef ttyname_r # if HAVE_RAW_DECL_TTYNAME_R _GL_WARN_ON_USE (ttyname_r, "ttyname_r is not portable - " "use gnulib module ttyname_r for portability"); # endif #endif #if @GNULIB_UNLINK@ # if @REPLACE_UNLINK@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef unlink # define unlink rpl_unlink # endif _GL_FUNCDECL_RPL (unlink, int, (char const *file) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (unlink, int, (char const *file)); # else _GL_CXXALIAS_SYS (unlink, int, (char const *file)); # endif _GL_CXXALIASWARN (unlink); #elif defined GNULIB_POSIXCHECK # undef unlink # if HAVE_RAW_DECL_UNLINK _GL_WARN_ON_USE (unlink, "unlink is not portable - " "use gnulib module unlink for portability"); # endif #endif #if @GNULIB_UNLINKAT@ # if @REPLACE_UNLINKAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef unlinkat # define unlinkat rpl_unlinkat # endif _GL_FUNCDECL_RPL (unlinkat, int, (int fd, char const *file, int flag) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (unlinkat, int, (int fd, char const *file, int flag)); # else # if !@HAVE_UNLINKAT@ _GL_FUNCDECL_SYS (unlinkat, int, (int fd, char const *file, int flag) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (unlinkat, int, (int fd, char const *file, int flag)); # endif _GL_CXXALIASWARN (unlinkat); #elif defined GNULIB_POSIXCHECK # undef unlinkat # if HAVE_RAW_DECL_UNLINKAT _GL_WARN_ON_USE (unlinkat, "unlinkat is not portable - " "use gnulib module openat for portability"); # endif #endif #if @GNULIB_USLEEP@ /* Pause the execution of the current thread for N microseconds. Returns 0 on completion, or -1 on range error. See the POSIX:2001 specification . */ # if @REPLACE_USLEEP@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef usleep # define usleep rpl_usleep # endif _GL_FUNCDECL_RPL (usleep, int, (useconds_t n)); _GL_CXXALIAS_RPL (usleep, int, (useconds_t n)); # else # if !@HAVE_USLEEP@ _GL_FUNCDECL_SYS (usleep, int, (useconds_t n)); # endif _GL_CXXALIAS_SYS (usleep, int, (useconds_t n)); # endif _GL_CXXALIASWARN (usleep); #elif defined GNULIB_POSIXCHECK # undef usleep # if HAVE_RAW_DECL_USLEEP _GL_WARN_ON_USE (usleep, "usleep is unportable - " "use gnulib module usleep for portability"); # endif #endif #if @GNULIB_WRITE@ /* Write up to COUNT bytes starting at BUF to file descriptor FD. See the POSIX:2008 specification . */ # if @REPLACE_WRITE@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef write # define write rpl_write # endif _GL_FUNCDECL_RPL (write, ssize_t, (int fd, const void *buf, size_t count) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (write, ssize_t, (int fd, const void *buf, size_t count)); # else /* Need to cast, because on mingw, the third parameter is unsigned int count and the return type is 'int'. */ _GL_CXXALIAS_SYS_CAST (write, ssize_t, (int fd, const void *buf, size_t count)); # endif _GL_CXXALIASWARN (write); #endif _GL_INLINE_HEADER_END #endif /* _@GUARD_PREFIX@_UNISTD_H */ #endif /* _@GUARD_PREFIX@_UNISTD_H */ ttfautohint-0.97/gnulib/src/fcntl.in.h0000644000175000001440000002244312237364242014704 00000000000000/* Like , but with non-working flags defined to 0. Copyright (C) 2006-2013 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 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 . */ /* written by Paul Eggert */ #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ #if defined __need_system_fcntl_h /* Special invocation convention. */ /* Needed before . May also define off_t to a 64-bit type on native Windows. */ #include /* On some systems other than glibc, is a prerequisite of . On glibc systems, we would like to avoid namespace pollution. But on glibc systems, includes inside an extern "C" { ... } block, which leads to errors in C++ mode with the overridden from gnulib. These errors are known to be gone with g++ version >= 4.3. */ #if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) # include #endif #@INCLUDE_NEXT@ @NEXT_FCNTL_H@ #else /* Normal invocation convention. */ #ifndef _@GUARD_PREFIX@_FCNTL_H /* Needed before . May also define off_t to a 64-bit type on native Windows. */ #include /* On some systems other than glibc, is a prerequisite of . On glibc systems, we would like to avoid namespace pollution. But on glibc systems, includes inside an extern "C" { ... } block, which leads to errors in C++ mode with the overridden from gnulib. These errors are known to be gone with g++ version >= 4.3. */ #if !(defined __GLIBC__ || defined __UCLIBC__) || (defined __cplusplus && defined GNULIB_NAMESPACE && !(__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3))) # include #endif /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_FCNTL_H@ #ifndef _@GUARD_PREFIX@_FCNTL_H #define _@GUARD_PREFIX@_FCNTL_H #ifndef __GLIBC__ /* Avoid namespace pollution on glibc systems. */ # include #endif /* Native Windows platforms declare open(), creat() in . */ #if (@GNULIB_OPEN@ || defined GNULIB_POSIXCHECK) \ && ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) # include #endif /* The definitions of _GL_FUNCDECL_RPL etc. are copied here. */ /* The definition of _GL_ARG_NONNULL is copied here. */ /* The definition of _GL_WARN_ON_USE is copied here. */ /* Declare overridden functions. */ #if @GNULIB_FCNTL@ # if @REPLACE_FCNTL@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef fcntl # define fcntl rpl_fcntl # endif _GL_FUNCDECL_RPL (fcntl, int, (int fd, int action, ...)); _GL_CXXALIAS_RPL (fcntl, int, (int fd, int action, ...)); # else # if !@HAVE_FCNTL@ _GL_FUNCDECL_SYS (fcntl, int, (int fd, int action, ...)); # endif _GL_CXXALIAS_SYS (fcntl, int, (int fd, int action, ...)); # endif _GL_CXXALIASWARN (fcntl); #elif defined GNULIB_POSIXCHECK # undef fcntl # if HAVE_RAW_DECL_FCNTL _GL_WARN_ON_USE (fcntl, "fcntl is not always POSIX compliant - " "use gnulib module fcntl for portability"); # endif #endif #if @GNULIB_OPEN@ # if @REPLACE_OPEN@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef open # define open rpl_open # endif _GL_FUNCDECL_RPL (open, int, (const char *filename, int flags, ...) _GL_ARG_NONNULL ((1))); _GL_CXXALIAS_RPL (open, int, (const char *filename, int flags, ...)); # else _GL_CXXALIAS_SYS (open, int, (const char *filename, int flags, ...)); # endif /* On HP-UX 11, in C++ mode, open() is defined as an inline function with a default argument. _GL_CXXALIASWARN does not work in this case. */ # if !defined __hpux _GL_CXXALIASWARN (open); # endif #elif defined GNULIB_POSIXCHECK # undef open /* Assume open is always declared. */ _GL_WARN_ON_USE (open, "open is not always POSIX compliant - " "use gnulib module open for portability"); #endif #if @GNULIB_OPENAT@ # if @REPLACE_OPENAT@ # if !(defined __cplusplus && defined GNULIB_NAMESPACE) # undef openat # define openat rpl_openat # endif _GL_FUNCDECL_RPL (openat, int, (int fd, char const *file, int flags, /* mode_t mode */ ...) _GL_ARG_NONNULL ((2))); _GL_CXXALIAS_RPL (openat, int, (int fd, char const *file, int flags, /* mode_t mode */ ...)); # else # if !@HAVE_OPENAT@ _GL_FUNCDECL_SYS (openat, int, (int fd, char const *file, int flags, /* mode_t mode */ ...) _GL_ARG_NONNULL ((2))); # endif _GL_CXXALIAS_SYS (openat, int, (int fd, char const *file, int flags, /* mode_t mode */ ...)); # endif _GL_CXXALIASWARN (openat); #elif defined GNULIB_POSIXCHECK # undef openat # if HAVE_RAW_DECL_OPENAT _GL_WARN_ON_USE (openat, "openat is not portable - " "use gnulib module openat for portability"); # endif #endif /* Fix up the FD_* macros, only known to be missing on mingw. */ #ifndef FD_CLOEXEC # define FD_CLOEXEC 1 #endif /* Fix up the supported F_* macros. Intentionally leave other F_* macros undefined. Only known to be missing on mingw. */ #ifndef F_DUPFD_CLOEXEC # define F_DUPFD_CLOEXEC 0x40000000 /* Witness variable: 1 if gnulib defined F_DUPFD_CLOEXEC, 0 otherwise. */ # define GNULIB_defined_F_DUPFD_CLOEXEC 1 #else # define GNULIB_defined_F_DUPFD_CLOEXEC 0 #endif #ifndef F_DUPFD # define F_DUPFD 1 #endif #ifndef F_GETFD # define F_GETFD 2 #endif /* Fix up the O_* macros. */ #if !defined O_DIRECT && defined O_DIRECTIO /* Tru64 spells it 'O_DIRECTIO'. */ # define O_DIRECT O_DIRECTIO #endif #if !defined O_CLOEXEC && defined O_NOINHERIT /* Mingw spells it 'O_NOINHERIT'. */ # define O_CLOEXEC O_NOINHERIT #endif #ifndef O_CLOEXEC # define O_CLOEXEC 0 #endif #ifndef O_DIRECT # define O_DIRECT 0 #endif #ifndef O_DIRECTORY # define O_DIRECTORY 0 #endif #ifndef O_DSYNC # define O_DSYNC 0 #endif #ifndef O_EXEC # define O_EXEC O_RDONLY /* This is often close enough in older systems. */ #endif #ifndef O_IGNORE_CTTY # define O_IGNORE_CTTY 0 #endif #ifndef O_NDELAY # define O_NDELAY 0 #endif #ifndef O_NOATIME # define O_NOATIME 0 #endif #ifndef O_NONBLOCK # define O_NONBLOCK O_NDELAY #endif /* If the gnulib module 'nonblocking' is in use, guarantee a working non-zero value of O_NONBLOCK. Otherwise, O_NONBLOCK is defined (above) to O_NDELAY or to 0 as fallback. */ #if @GNULIB_NONBLOCKING@ # if O_NONBLOCK # define GNULIB_defined_O_NONBLOCK 0 # else # define GNULIB_defined_O_NONBLOCK 1 # undef O_NONBLOCK # define O_NONBLOCK 0x40000000 # endif #endif #ifndef O_NOCTTY # define O_NOCTTY 0 #endif #ifndef O_NOFOLLOW # define O_NOFOLLOW 0 #endif #ifndef O_NOLINK # define O_NOLINK 0 #endif #ifndef O_NOLINKS # define O_NOLINKS 0 #endif #ifndef O_NOTRANS # define O_NOTRANS 0 #endif #ifndef O_RSYNC # define O_RSYNC 0 #endif #ifndef O_SEARCH # define O_SEARCH O_RDONLY /* This is often close enough in older systems. */ #endif #ifndef O_SYNC # define O_SYNC 0 #endif #ifndef O_TTY_INIT # define O_TTY_INIT 0 #endif #if ~O_ACCMODE & (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) # undef O_ACCMODE # define O_ACCMODE (O_RDONLY | O_WRONLY | O_RDWR | O_EXEC | O_SEARCH) #endif /* For systems that distinguish between text and binary I/O. O_BINARY is usually declared in fcntl.h */ #if !defined O_BINARY && defined _O_BINARY /* For MSC-compatible compilers. */ # define O_BINARY _O_BINARY # define O_TEXT _O_TEXT #endif #if defined __BEOS__ || defined __HAIKU__ /* BeOS 5 and Haiku have O_BINARY and O_TEXT, but they have no effect. */ # undef O_BINARY # undef O_TEXT #endif #ifndef O_BINARY # define O_BINARY 0 # define O_TEXT 0 #endif /* Fix up the AT_* macros. */ /* Work around a bug in Solaris 9 and 10: AT_FDCWD is positive. Its value exceeds INT_MAX, so its use as an int doesn't conform to the C standard, and GCC and Sun C complain in some cases. If the bug is present, undef AT_FDCWD here, so it can be redefined below. */ #if 0 < AT_FDCWD && AT_FDCWD == 0xffd19553 # undef AT_FDCWD #endif /* Use the same bit pattern as Solaris 9, but with the proper signedness. The bit pattern is important, in case this actually is Solaris with the above workaround. */ #ifndef AT_FDCWD # define AT_FDCWD (-3041965) #endif /* Use the same values as Solaris 9. This shouldn't matter, but there's no real reason to differ. */ #ifndef AT_SYMLINK_NOFOLLOW # define AT_SYMLINK_NOFOLLOW 4096 #endif #ifndef AT_REMOVEDIR # define AT_REMOVEDIR 1 #endif /* Solaris 9 lacks these two, so just pick unique values. */ #ifndef AT_SYMLINK_FOLLOW # define AT_SYMLINK_FOLLOW 2 #endif #ifndef AT_EACCESS # define AT_EACCESS 4 #endif #endif /* _@GUARD_PREFIX@_FCNTL_H */ #endif /* _@GUARD_PREFIX@_FCNTL_H */ #endif ttfautohint-0.97/gnulib/src/unistd.c0000644000175000001440000000012412237364242014462 00000000000000#include #define _GL_UNISTD_INLINE _GL_EXTERN_INLINE #include "unistd.h" ttfautohint-0.97/gnulib/src/msvc-inval.h0000644000175000001440000002113512237364242015245 00000000000000/* Invalid parameter handler for MSVC runtime libraries. Copyright (C) 2011-2013 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 3, 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 . */ #ifndef _MSVC_INVAL_H #define _MSVC_INVAL_H /* With MSVC runtime libraries with the "invalid parameter handler" concept, functions like fprintf(), dup2(), or close() crash when the caller passes an invalid argument. But POSIX wants error codes (such as EINVAL or EBADF) instead. This file defines macros that turn such an invalid parameter notification into a non-local exit. An error code can then be produced at the target of this exit. You can thus write code like TRY_MSVC_INVAL { } CATCH_MSVC_INVAL { } DONE_MSVC_INVAL; This entire block expands to a single statement. The handling of invalid parameters can be done in three ways: * The default way, which is reasonable for programs (not libraries): AC_DEFINE([MSVC_INVALID_PARAMETER_HANDLING], [DEFAULT_HANDLING]) * The way for libraries that make "hairy" calls (like close(-1), or fclose(fp) where fileno(fp) is closed, or simply getdtablesize()): AC_DEFINE([MSVC_INVALID_PARAMETER_HANDLING], [HAIRY_LIBRARY_HANDLING]) * The way for libraries that make no "hairy" calls: AC_DEFINE([MSVC_INVALID_PARAMETER_HANDLING], [SANE_LIBRARY_HANDLING]) */ #define DEFAULT_HANDLING 0 #define HAIRY_LIBRARY_HANDLING 1 #define SANE_LIBRARY_HANDLING 2 #if HAVE_MSVC_INVALID_PARAMETER_HANDLER \ && !(MSVC_INVALID_PARAMETER_HANDLING == SANE_LIBRARY_HANDLING) /* A native Windows platform with the "invalid parameter handler" concept, and either DEFAULT_HANDLING or HAIRY_LIBRARY_HANDLING. */ # if MSVC_INVALID_PARAMETER_HANDLING == DEFAULT_HANDLING /* Default handling. */ # ifdef __cplusplus extern "C" { # endif /* Ensure that the invalid parameter handler in installed that just returns. Because we assume no other part of the program installs a different invalid parameter handler, this solution is multithread-safe. */ extern void gl_msvc_inval_ensure_handler (void); # ifdef __cplusplus } # endif # define TRY_MSVC_INVAL \ do \ { \ gl_msvc_inval_ensure_handler (); \ if (1) # define CATCH_MSVC_INVAL \ else # define DONE_MSVC_INVAL \ } \ while (0) # else /* Handling for hairy libraries. */ # include /* Gnulib can define its own status codes, as described in the page "Raising Software Exceptions" on microsoft.com . Our status codes are composed of - 0xE0000000, mandatory for all user-defined status codes, - 0x474E550, a API identifier ("GNU"), - 0, 1, 2, ..., used to distinguish different status codes from the same API. */ # define STATUS_GNULIB_INVALID_PARAMETER (0xE0000000 + 0x474E550 + 0) # if defined _MSC_VER /* A compiler that supports __try/__except, as described in the page "try-except statement" on microsoft.com . With __try/__except, we can use the multithread-safe exception handling. */ # ifdef __cplusplus extern "C" { # endif /* Ensure that the invalid parameter handler in installed that raises a software exception with code STATUS_GNULIB_INVALID_PARAMETER. Because we assume no other part of the program installs a different invalid parameter handler, this solution is multithread-safe. */ extern void gl_msvc_inval_ensure_handler (void); # ifdef __cplusplus } # endif # define TRY_MSVC_INVAL \ do \ { \ gl_msvc_inval_ensure_handler (); \ __try # define CATCH_MSVC_INVAL \ __except (GetExceptionCode () == STATUS_GNULIB_INVALID_PARAMETER \ ? EXCEPTION_EXECUTE_HANDLER \ : EXCEPTION_CONTINUE_SEARCH) # define DONE_MSVC_INVAL \ } \ while (0) # else /* Any compiler. We can only use setjmp/longjmp. */ # include # ifdef __cplusplus extern "C" { # endif struct gl_msvc_inval_per_thread { /* The restart that will resume execution at the code between CATCH_MSVC_INVAL and DONE_MSVC_INVAL. It is enabled only between TRY_MSVC_INVAL and CATCH_MSVC_INVAL. */ jmp_buf restart; /* Tells whether the contents of restart is valid. */ int restart_valid; }; /* Ensure that the invalid parameter handler in installed that passes control to the gl_msvc_inval_restart if it is valid, or raises a software exception with code STATUS_GNULIB_INVALID_PARAMETER otherwise. Because we assume no other part of the program installs a different invalid parameter handler, this solution is multithread-safe. */ extern void gl_msvc_inval_ensure_handler (void); /* Return a pointer to the per-thread data for the current thread. */ extern struct gl_msvc_inval_per_thread *gl_msvc_inval_current (void); # ifdef __cplusplus } # endif # define TRY_MSVC_INVAL \ do \ { \ struct gl_msvc_inval_per_thread *msvc_inval_current; \ gl_msvc_inval_ensure_handler (); \ msvc_inval_current = gl_msvc_inval_current (); \ /* First, initialize gl_msvc_inval_restart. */ \ if (setjmp (msvc_inval_current->restart) == 0) \ { \ /* Then, mark it as valid. */ \ msvc_inval_current->restart_valid = 1; # define CATCH_MSVC_INVAL \ /* Execution completed. \ Mark gl_msvc_inval_restart as invalid. */ \ msvc_inval_current->restart_valid = 0; \ } \ else \ { \ /* Execution triggered an invalid parameter notification. \ Mark gl_msvc_inval_restart as invalid. */ \ msvc_inval_current->restart_valid = 0; # define DONE_MSVC_INVAL \ } \ } \ while (0) # endif # endif #else /* A platform that does not need to the invalid parameter handler, or when SANE_LIBRARY_HANDLING is desired. */ /* The braces here avoid GCC warnings like "warning: suggest explicit braces to avoid ambiguous 'else'". */ # define TRY_MSVC_INVAL \ do \ { \ if (1) # define CATCH_MSVC_INVAL \ else # define DONE_MSVC_INVAL \ } \ while (0) #endif #endif /* _MSVC_INVAL_H */ ttfautohint-0.97/gnulib/src/errno.in.h0000644000175000001440000001646312237364242014730 00000000000000/* A POSIX-like . Copyright (C) 2008-2013 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 3, 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 . */ #ifndef _@GUARD_PREFIX@_ERRNO_H #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_ERRNO_H@ #ifndef _@GUARD_PREFIX@_ERRNO_H #define _@GUARD_PREFIX@_ERRNO_H /* On native Windows platforms, many macros are not defined. */ # if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* These are the same values as defined by MSVC 10, for interoperability. */ # ifndef ENOMSG # define ENOMSG 122 # define GNULIB_defined_ENOMSG 1 # endif # ifndef EIDRM # define EIDRM 111 # define GNULIB_defined_EIDRM 1 # endif # ifndef ENOLINK # define ENOLINK 121 # define GNULIB_defined_ENOLINK 1 # endif # ifndef EPROTO # define EPROTO 134 # define GNULIB_defined_EPROTO 1 # endif # ifndef EBADMSG # define EBADMSG 104 # define GNULIB_defined_EBADMSG 1 # endif # ifndef EOVERFLOW # define EOVERFLOW 132 # define GNULIB_defined_EOVERFLOW 1 # endif # ifndef ENOTSUP # define ENOTSUP 129 # define GNULIB_defined_ENOTSUP 1 # endif # ifndef ENETRESET # define ENETRESET 117 # define GNULIB_defined_ENETRESET 1 # endif # ifndef ECONNABORTED # define ECONNABORTED 106 # define GNULIB_defined_ECONNABORTED 1 # endif # ifndef ECANCELED # define ECANCELED 105 # define GNULIB_defined_ECANCELED 1 # endif # ifndef EOWNERDEAD # define EOWNERDEAD 133 # define GNULIB_defined_EOWNERDEAD 1 # endif # ifndef ENOTRECOVERABLE # define ENOTRECOVERABLE 127 # define GNULIB_defined_ENOTRECOVERABLE 1 # endif # ifndef EINPROGRESS # define EINPROGRESS 112 # define EALREADY 103 # define ENOTSOCK 128 # define EDESTADDRREQ 109 # define EMSGSIZE 115 # define EPROTOTYPE 136 # define ENOPROTOOPT 123 # define EPROTONOSUPPORT 135 # define EOPNOTSUPP 130 # define EAFNOSUPPORT 102 # define EADDRINUSE 100 # define EADDRNOTAVAIL 101 # define ENETDOWN 116 # define ENETUNREACH 118 # define ECONNRESET 108 # define ENOBUFS 119 # define EISCONN 113 # define ENOTCONN 126 # define ETIMEDOUT 138 # define ECONNREFUSED 107 # define ELOOP 114 # define EHOSTUNREACH 110 # define EWOULDBLOCK 140 # define GNULIB_defined_ESOCK 1 # endif # ifndef ETXTBSY # define ETXTBSY 139 # define ENODATA 120 /* not required by POSIX */ # define ENOSR 124 /* not required by POSIX */ # define ENOSTR 125 /* not required by POSIX */ # define ETIME 137 /* not required by POSIX */ # define EOTHER 131 /* not required by POSIX */ # define GNULIB_defined_ESTREAMS 1 # endif /* These are intentionally the same values as the WSA* error numbers, defined in . */ # define ESOCKTNOSUPPORT 10044 /* not required by POSIX */ # define EPFNOSUPPORT 10046 /* not required by POSIX */ # define ESHUTDOWN 10058 /* not required by POSIX */ # define ETOOMANYREFS 10059 /* not required by POSIX */ # define EHOSTDOWN 10064 /* not required by POSIX */ # define EPROCLIM 10067 /* not required by POSIX */ # define EUSERS 10068 /* not required by POSIX */ # define EDQUOT 10069 # define ESTALE 10070 # define EREMOTE 10071 /* not required by POSIX */ # define GNULIB_defined_EWINSOCK 1 # endif /* On OSF/1 5.1, when _XOPEN_SOURCE_EXTENDED is not defined, the macros EMULTIHOP, ENOLINK, EOVERFLOW are not defined. */ # if @EMULTIHOP_HIDDEN@ # define EMULTIHOP @EMULTIHOP_VALUE@ # define GNULIB_defined_EMULTIHOP 1 # endif # if @ENOLINK_HIDDEN@ # define ENOLINK @ENOLINK_VALUE@ # define GNULIB_defined_ENOLINK 1 # endif # if @EOVERFLOW_HIDDEN@ # define EOVERFLOW @EOVERFLOW_VALUE@ # define GNULIB_defined_EOVERFLOW 1 # endif /* On OpenBSD 4.0 and on native Windows, the macros ENOMSG, EIDRM, ENOLINK, EPROTO, EMULTIHOP, EBADMSG, EOVERFLOW, ENOTSUP, ECANCELED are not defined. Likewise, on NonStop Kernel, EDQUOT is not defined. Define them here. Values >= 2000 seem safe to use: Solaris ESTALE = 151, HP-UX EWOULDBLOCK = 246, IRIX EDQUOT = 1133. Note: When one of these systems defines some of these macros some day, binaries will have to be recompiled so that they recognizes the new errno values from the system. */ # ifndef ENOMSG # define ENOMSG 2000 # define GNULIB_defined_ENOMSG 1 # endif # ifndef EIDRM # define EIDRM 2001 # define GNULIB_defined_EIDRM 1 # endif # ifndef ENOLINK # define ENOLINK 2002 # define GNULIB_defined_ENOLINK 1 # endif # ifndef EPROTO # define EPROTO 2003 # define GNULIB_defined_EPROTO 1 # endif # ifndef EMULTIHOP # define EMULTIHOP 2004 # define GNULIB_defined_EMULTIHOP 1 # endif # ifndef EBADMSG # define EBADMSG 2005 # define GNULIB_defined_EBADMSG 1 # endif # ifndef EOVERFLOW # define EOVERFLOW 2006 # define GNULIB_defined_EOVERFLOW 1 # endif # ifndef ENOTSUP # define ENOTSUP 2007 # define GNULIB_defined_ENOTSUP 1 # endif # ifndef ENETRESET # define ENETRESET 2011 # define GNULIB_defined_ENETRESET 1 # endif # ifndef ECONNABORTED # define ECONNABORTED 2012 # define GNULIB_defined_ECONNABORTED 1 # endif # ifndef ESTALE # define ESTALE 2009 # define GNULIB_defined_ESTALE 1 # endif # ifndef EDQUOT # define EDQUOT 2010 # define GNULIB_defined_EDQUOT 1 # endif # ifndef ECANCELED # define ECANCELED 2008 # define GNULIB_defined_ECANCELED 1 # endif /* On many platforms, the macros EOWNERDEAD and ENOTRECOVERABLE are not defined. */ # ifndef EOWNERDEAD # if defined __sun /* Use the same values as defined for Solaris >= 8, for interoperability. */ # define EOWNERDEAD 58 # define ENOTRECOVERABLE 59 # elif (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* We have a conflict here: pthreads-win32 defines these values differently than MSVC 10. It's hairy to decide which one to use. */ # if defined __MINGW32__ && !defined USE_WINDOWS_THREADS /* Use the same values as defined by pthreads-win32, for interoperability. */ # define EOWNERDEAD 43 # define ENOTRECOVERABLE 44 # else /* Use the same values as defined by MSVC 10, for interoperability. */ # define EOWNERDEAD 133 # define ENOTRECOVERABLE 127 # endif # else # define EOWNERDEAD 2013 # define ENOTRECOVERABLE 2014 # endif # define GNULIB_defined_EOWNERDEAD 1 # define GNULIB_defined_ENOTRECOVERABLE 1 # endif # ifndef EILSEQ # define EILSEQ 2015 # define GNULIB_defined_EILSEQ 1 # endif #endif /* _@GUARD_PREFIX@_ERRNO_H */ #endif /* _@GUARD_PREFIX@_ERRNO_H */ ttfautohint-0.97/gnulib/src/getopt1.c0000644000175000001440000001055212237364242014545 00000000000000/* getopt_long and getopt_long_only entry points for GNU getopt. Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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 . */ #ifdef _LIBC # include #else # include # include "getopt.h" #endif #include "getopt_int.h" #include /* This needs to come after some library #include to get __GNU_LIBRARY__ defined. */ #ifdef __GNU_LIBRARY__ #include #endif #ifndef NULL #define NULL 0 #endif int getopt_long (int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) { return _getopt_internal (argc, (char **) argv, options, long_options, opt_index, 0, 0); } int _getopt_long_r (int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) { return _getopt_internal_r (argc, argv, options, long_options, opt_index, 0, d, 0); } /* Like getopt_long, but '-' as well as '--' can indicate a long option. If an option that starts with '-' (not '--') doesn't match a long option, but does match a short option, it is parsed as a short option instead. */ int getopt_long_only (int argc, char *__getopt_argv_const *argv, const char *options, const struct option *long_options, int *opt_index) { return _getopt_internal (argc, (char **) argv, options, long_options, opt_index, 1, 0); } int _getopt_long_only_r (int argc, char **argv, const char *options, const struct option *long_options, int *opt_index, struct _getopt_data *d) { return _getopt_internal_r (argc, argv, options, long_options, opt_index, 1, d, 0); } #ifdef TEST #include int main (int argc, char **argv) { int c; int digit_optind = 0; while (1) { int this_option_optind = optind ? optind : 1; int option_index = 0; static const struct option long_options[] = { {"add", 1, 0, 0}, {"append", 0, 0, 0}, {"delete", 1, 0, 0}, {"verbose", 0, 0, 0}, {"create", 0, 0, 0}, {"file", 1, 0, 0}, {0, 0, 0, 0} }; c = getopt_long (argc, argv, "abc:d:0123456789", long_options, &option_index); if (c == -1) break; switch (c) { case 0: printf ("option %s", long_options[option_index].name); if (optarg) printf (" with arg %s", optarg); printf ("\n"); break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': if (digit_optind != 0 && digit_optind != this_option_optind) printf ("digits occur in two different argv-elements.\n"); digit_optind = this_option_optind; printf ("option %c\n", c); break; case 'a': printf ("option a\n"); break; case 'b': printf ("option b\n"); break; case 'c': printf ("option c with value '%s'\n", optarg); break; case 'd': printf ("option d with value '%s'\n", optarg); break; case '?': break; default: printf ("?? getopt returned character code 0%o ??\n", c); } } if (optind < argc) { printf ("non-option ARGV-elements: "); while (optind < argc) printf ("%s ", argv[optind++]); printf ("\n"); } exit (0); } #endif /* TEST */ ttfautohint-0.97/gnulib/src/sys_types.in.h0000644000175000001440000000317512237364242015641 00000000000000/* Provide a more complete sys/types.h. Copyright (C) 2011-2013 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 3, 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 . */ #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ #ifndef _@GUARD_PREFIX@_SYS_TYPES_H /* The include_next requires a split double-inclusion guard. */ #@INCLUDE_NEXT@ @NEXT_SYS_TYPES_H@ #ifndef _@GUARD_PREFIX@_SYS_TYPES_H #define _@GUARD_PREFIX@_SYS_TYPES_H /* Override off_t if Large File Support is requested on native Windows. */ #if @WINDOWS_64_BIT_OFF_T@ /* Same as int64_t in . */ # if defined _MSC_VER # define off_t __int64 # else # define off_t long long int # endif /* Indicator, for gnulib internal purposes. */ # define _GL_WINDOWS_64_BIT_OFF_T 1 #endif /* MSVC 9 defines size_t in , not in . */ /* But avoid namespace pollution on glibc systems. */ #if ((defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__) \ && ! defined __GLIBC__ # include #endif #endif /* _@GUARD_PREFIX@_SYS_TYPES_H */ #endif /* _@GUARD_PREFIX@_SYS_TYPES_H */ ttfautohint-0.97/gnulib/src/getopt.in.h0000644000175000001440000002162112237364242015075 00000000000000/* Declarations for getopt. Copyright (C) 1989-1994, 1996-1999, 2001, 2003-2007, 2009-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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 . */ #ifndef _@GUARD_PREFIX@_GETOPT_H #if __GNUC__ >= 3 @PRAGMA_SYSTEM_HEADER@ #endif @PRAGMA_COLUMNS@ /* The include_next requires a split double-inclusion guard. We must also inform the replacement unistd.h to not recursively use ; our definitions will be present soon enough. */ #if @HAVE_GETOPT_H@ # define _GL_SYSTEM_GETOPT # @INCLUDE_NEXT@ @NEXT_GETOPT_H@ # undef _GL_SYSTEM_GETOPT #endif #ifndef _@GUARD_PREFIX@_GETOPT_H #ifndef __need_getopt # define _@GUARD_PREFIX@_GETOPT_H 1 #endif /* Standalone applications should #define __GETOPT_PREFIX to an identifier that prefixes the external functions and variables defined in this header. When this happens, include the headers that might declare getopt so that they will not cause confusion if included after this file (if the system had , we have already included it). Then systematically rename identifiers so that they do not collide with the system functions and variables. Renaming avoids problems with some compilers and linkers. */ #if defined __GETOPT_PREFIX && !defined __need_getopt # if !@HAVE_GETOPT_H@ # define __need_system_stdlib_h # include # undef __need_system_stdlib_h # include # include # endif # undef __need_getopt # undef getopt # undef getopt_long # undef getopt_long_only # undef optarg # undef opterr # undef optind # undef optopt # undef option # define __GETOPT_CONCAT(x, y) x ## y # define __GETOPT_XCONCAT(x, y) __GETOPT_CONCAT (x, y) # define __GETOPT_ID(y) __GETOPT_XCONCAT (__GETOPT_PREFIX, y) # define getopt __GETOPT_ID (getopt) # define getopt_long __GETOPT_ID (getopt_long) # define getopt_long_only __GETOPT_ID (getopt_long_only) # define optarg __GETOPT_ID (optarg) # define opterr __GETOPT_ID (opterr) # define optind __GETOPT_ID (optind) # define optopt __GETOPT_ID (optopt) # define option __GETOPT_ID (option) # define _getopt_internal __GETOPT_ID (getopt_internal) #endif /* Standalone applications get correct prototypes for getopt_long and getopt_long_only; they declare "char **argv". libc uses prototypes with "char *const *argv" that are incorrect because getopt_long and getopt_long_only can permute argv; this is required for backward compatibility (e.g., for LSB 2.0.1). This used to be '#if defined __GETOPT_PREFIX && !defined __need_getopt', but it caused redefinition warnings if both unistd.h and getopt.h were included, since unistd.h includes getopt.h having previously defined __need_getopt. The only place where __getopt_argv_const is used is in definitions of getopt_long and getopt_long_only below, but these are visible only if __need_getopt is not defined, so it is quite safe to rewrite the conditional as follows: */ #if !defined __need_getopt # if defined __GETOPT_PREFIX # define __getopt_argv_const /* empty */ # else # define __getopt_argv_const const # endif #endif /* If __GNU_LIBRARY__ is not already defined, either we are being used standalone, or this is the first header included in the source file. If we are being used with glibc, we need to include , but that does not exist if we are standalone. So: if __GNU_LIBRARY__ is not defined, include , which will pull in for us if it's from glibc. (Why ctype.h? It's guaranteed to exist and it doesn't flood the namespace with stuff the way some other headers do.) */ #if !defined __GNU_LIBRARY__ # include #endif #ifndef __THROW # ifndef __GNUC_PREREQ # define __GNUC_PREREQ(maj, min) (0) # endif # if defined __cplusplus && __GNUC_PREREQ (2,8) # define __THROW throw () # else # define __THROW # endif #endif /* The definition of _GL_ARG_NONNULL is copied here. */ #ifdef __cplusplus extern "C" { #endif /* For communication from 'getopt' to the caller. When 'getopt' finds an option that takes an argument, the argument value is returned here. Also, when 'ordering' is RETURN_IN_ORDER, each non-option ARGV-element is returned here. */ extern char *optarg; /* Index in ARGV of the next element to be scanned. This is used for communication to and from the caller and for communication between successive calls to 'getopt'. On entry to 'getopt', zero means this is the first call; initialize. When 'getopt' returns -1, this is the index of the first of the non-option elements that the caller should itself scan. Otherwise, 'optind' communicates from one call to the next how much of ARGV has been scanned so far. */ extern int optind; /* Callers store zero here to inhibit the error message 'getopt' prints for unrecognized options. */ extern int opterr; /* Set to an option character which was unrecognized. */ extern int optopt; #ifndef __need_getopt /* Describe the long-named options requested by the application. The LONG_OPTIONS argument to getopt_long or getopt_long_only is a vector of 'struct option' terminated by an element containing a name which is zero. The field 'has_arg' is: no_argument (or 0) if the option does not take an argument, required_argument (or 1) if the option requires an argument, optional_argument (or 2) if the option takes an optional argument. If the field 'flag' is not NULL, it points to a variable that is set to the value given in the field 'val' when the option is found, but left unchanged if the option is not found. To have a long-named option do something other than set an 'int' to a compiled-in constant, such as set a value from 'optarg', set the option's 'flag' field to zero and its 'val' field to a nonzero value (the equivalent single-letter option character, if there is one). For long options that have a zero 'flag' field, 'getopt' returns the contents of the 'val' field. */ # if !GNULIB_defined_struct_option struct option { const char *name; /* has_arg can't be an enum because some compilers complain about type mismatches in all the code that assumes it is an int. */ int has_arg; int *flag; int val; }; # define GNULIB_defined_struct_option 1 # endif /* Names for the values of the 'has_arg' field of 'struct option'. */ # define no_argument 0 # define required_argument 1 # define optional_argument 2 #endif /* need getopt */ /* Get definitions and prototypes for functions to process the arguments in ARGV (ARGC of them, minus the program name) for options given in OPTS. Return the option character from OPTS just read. Return -1 when there are no more options. For unrecognized options, or options missing arguments, 'optopt' is set to the option letter, and '?' is returned. The OPTS string is a list of characters which are recognized option letters, optionally followed by colons, specifying that that letter takes an argument, to be placed in 'optarg'. If a letter in OPTS is followed by two colons, its argument is optional. This behavior is specific to the GNU 'getopt'. The argument '--' causes premature termination of argument scanning, explicitly telling 'getopt' that there are no more options. If OPTS begins with '-', then non-option arguments are treated as arguments to the option '\1'. This behavior is specific to the GNU 'getopt'. If OPTS begins with '+', or POSIXLY_CORRECT is set in the environment, then do not permute arguments. */ extern int getopt (int ___argc, char *const *___argv, const char *__shortopts) __THROW _GL_ARG_NONNULL ((2, 3)); #ifndef __need_getopt extern int getopt_long (int ___argc, char *__getopt_argv_const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind) __THROW _GL_ARG_NONNULL ((2, 3)); extern int getopt_long_only (int ___argc, char *__getopt_argv_const *___argv, const char *__shortopts, const struct option *__longopts, int *__longind) __THROW _GL_ARG_NONNULL ((2, 3)); #endif #ifdef __cplusplus } #endif /* Make sure we later can get all the definitions and declarations. */ #undef __need_getopt #endif /* _@GUARD_PREFIX@_GETOPT_H */ #endif /* _@GUARD_PREFIX@_GETOPT_H */ ttfautohint-0.97/gnulib/src/strerror_r.c0000644000175000001440000002257512237364242015375 00000000000000/* strerror_r.c --- POSIX compatible system error routine Copyright (C) 2010-2013 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 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 . */ /* Written by Bruno Haible , 2010. */ #include /* Enable declaration of sys_nerr and sys_errlist in on NetBSD. */ #define _NETBSD_SOURCE 1 /* Specification. */ #include #include #include #include #include "strerror-override.h" #if (__GLIBC__ >= 2 || defined __UCLIBC__ || defined __CYGWIN__) && HAVE___XPG_STRERROR_R /* glibc >= 2.3.4, cygwin >= 1.7.9 */ # define USE_XPG_STRERROR_R 1 extern int __xpg_strerror_r (int errnum, char *buf, size_t buflen); #elif HAVE_DECL_STRERROR_R && !(__GLIBC__ >= 2 || defined __UCLIBC__ || defined __CYGWIN__) /* The system's strerror_r function is OK, except that its third argument is 'int', not 'size_t', or its return type is wrong. */ # include # define USE_SYSTEM_STRERROR_R 1 #else /* (__GLIBC__ >= 2 || defined __UCLIBC__ || defined __CYGWIN__ ? !HAVE___XPG_STRERROR_R : !HAVE_DECL_STRERROR_R) */ /* Use the system's strerror(). Exclude glibc and cygwin because the system strerror_r has the wrong return type, and cygwin 1.7.9 strerror_r clobbers strerror. */ # undef strerror # define USE_SYSTEM_STRERROR 1 # if defined __NetBSD__ || defined __hpux || ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __sgi || (defined __sun && !defined _LP64) || defined __CYGWIN__ /* No locking needed. */ /* Get catgets internationalization functions. */ # if HAVE_CATGETS # include # endif /* Get sys_nerr, sys_errlist on HP-UX (otherwise only declared in C++ mode). Get sys_nerr, sys_errlist on IRIX (otherwise only declared with _SGIAPI). */ # if defined __hpux || defined __sgi extern int sys_nerr; extern char *sys_errlist[]; # endif /* Get sys_nerr on Solaris. */ # if defined __sun && !defined _LP64 extern int sys_nerr; # endif # else # include "glthread/lock.h" /* This lock protects the buffer returned by strerror(). We assume that no other uses of strerror() exist in the program. */ gl_lock_define_initialized(static, strerror_lock) # endif #endif /* On MSVC, there is no snprintf() function, just a _snprintf(). It is of lower quality, but sufficient for the simple use here. We only have to make sure to NUL terminate the result (_snprintf does not NUL terminate, like strncpy). */ #if !HAVE_SNPRINTF static int local_snprintf (char *buf, size_t buflen, const char *format, ...) { va_list args; int result; va_start (args, format); result = _vsnprintf (buf, buflen, format, args); va_end (args); if (buflen > 0 && (result < 0 || result >= buflen)) buf[buflen - 1] = '\0'; return result; } # define snprintf local_snprintf #endif /* Copy as much of MSG into BUF as possible, without corrupting errno. Return 0 if MSG fit in BUFLEN, otherwise return ERANGE. */ static int safe_copy (char *buf, size_t buflen, const char *msg) { size_t len = strlen (msg); int ret; if (len < buflen) { /* Although POSIX allows memcpy() to corrupt errno, we don't know of any implementation where this is a real problem. */ memcpy (buf, msg, len + 1); ret = 0; } else { memcpy (buf, msg, buflen - 1); buf[buflen - 1] = '\0'; ret = ERANGE; } return ret; } int strerror_r (int errnum, char *buf, size_t buflen) #undef strerror_r { /* Filter this out now, so that rest of this replacement knows that there is room for a non-empty message and trailing NUL. */ if (buflen <= 1) { if (buflen) *buf = '\0'; return ERANGE; } *buf = '\0'; /* Check for gnulib overrides. */ { char const *msg = strerror_override (errnum); if (msg) return safe_copy (buf, buflen, msg); } { int ret; int saved_errno = errno; #if USE_XPG_STRERROR_R { ret = __xpg_strerror_r (errnum, buf, buflen); if (ret < 0) ret = errno; if (!*buf) { /* glibc 2.13 would not touch buf on err, so we have to fall back to GNU strerror_r which always returns a thread-safe untruncated string to (partially) copy into our buf. */ safe_copy (buf, buflen, strerror_r (errnum, buf, buflen)); } } #elif USE_SYSTEM_STRERROR_R if (buflen > INT_MAX) buflen = INT_MAX; # ifdef __hpux /* On HP-UX 11.31, strerror_r always fails when buflen < 80; it also fails to change buf on EINVAL. */ { char stackbuf[80]; if (buflen < sizeof stackbuf) { ret = strerror_r (errnum, stackbuf, sizeof stackbuf); if (ret == 0) ret = safe_copy (buf, buflen, stackbuf); } else ret = strerror_r (errnum, buf, buflen); } # else ret = strerror_r (errnum, buf, buflen); /* Some old implementations may return (-1, EINVAL) instead of EINVAL. */ if (ret < 0) ret = errno; # endif # ifdef _AIX /* AIX returns 0 rather than ERANGE when truncating strings; try again until we are sure we got the entire string. */ if (!ret && strlen (buf) == buflen - 1) { char stackbuf[STACKBUF_LEN]; size_t len; strerror_r (errnum, stackbuf, sizeof stackbuf); len = strlen (stackbuf); /* STACKBUF_LEN should have been large enough. */ if (len + 1 == sizeof stackbuf) abort (); if (buflen <= len) ret = ERANGE; } # else /* Solaris 10 does not populate buf on ERANGE. OpenBSD 4.7 truncates early on ERANGE rather than return a partial integer. We prefer the maximal string. We set buf[0] earlier, and we know of no implementation that modifies buf to be an unterminated string, so this strlen should be portable in practice (rather than pulling in a safer strnlen). */ if (ret == ERANGE && strlen (buf) < buflen - 1) { char stackbuf[STACKBUF_LEN]; /* STACKBUF_LEN should have been large enough. */ if (strerror_r (errnum, stackbuf, sizeof stackbuf) == ERANGE) abort (); safe_copy (buf, buflen, stackbuf); } # endif #else /* USE_SYSTEM_STRERROR */ /* Try to do what strerror (errnum) does, but without clobbering the buffer used by strerror(). */ # if defined __NetBSD__ || defined __hpux || ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __CYGWIN__ /* NetBSD, HP-UX, native Windows, Cygwin */ /* NetBSD: sys_nerr, sys_errlist are declared through _NETBSD_SOURCE and above. HP-UX: sys_nerr, sys_errlist are declared explicitly above. native Windows: sys_nerr, sys_errlist are declared in . Cygwin: sys_nerr, sys_errlist are declared in . */ if (errnum >= 0 && errnum < sys_nerr) { # if HAVE_CATGETS && (defined __NetBSD__ || defined __hpux) # if defined __NetBSD__ nl_catd catd = catopen ("libc", NL_CAT_LOCALE); const char *errmsg = (catd != (nl_catd)-1 ? catgets (catd, 1, errnum, sys_errlist[errnum]) : sys_errlist[errnum]); # endif # if defined __hpux nl_catd catd = catopen ("perror", NL_CAT_LOCALE); const char *errmsg = (catd != (nl_catd)-1 ? catgets (catd, 1, 1 + errnum, sys_errlist[errnum]) : sys_errlist[errnum]); # endif # else const char *errmsg = sys_errlist[errnum]; # endif if (errmsg == NULL || *errmsg == '\0') ret = EINVAL; else ret = safe_copy (buf, buflen, errmsg); # if HAVE_CATGETS && (defined __NetBSD__ || defined __hpux) if (catd != (nl_catd)-1) catclose (catd); # endif } else ret = EINVAL; # elif defined __sgi || (defined __sun && !defined _LP64) /* IRIX, Solaris <= 9 32-bit */ /* For a valid error number, the system's strerror() function returns a pointer to a not copied string, not to a buffer. */ if (errnum >= 0 && errnum < sys_nerr) { char *errmsg = strerror (errnum); if (errmsg == NULL || *errmsg == '\0') ret = EINVAL; else ret = safe_copy (buf, buflen, errmsg); } else ret = EINVAL; # else gl_lock_lock (strerror_lock); { char *errmsg = strerror (errnum); /* For invalid error numbers, strerror() on - IRIX 6.5 returns NULL, - HP-UX 11 returns an empty string. */ if (errmsg == NULL || *errmsg == '\0') ret = EINVAL; else ret = safe_copy (buf, buflen, errmsg); } gl_lock_unlock (strerror_lock); # endif #endif if (ret == EINVAL && !*buf) snprintf (buf, buflen, "Unknown error %d", errnum); errno = saved_errno; return ret; } } ttfautohint-0.97/gnulib/src/memmem.c0000644000175000001440000000534412237364242014442 00000000000000/* Copyright (C) 1991-1994, 1996-1998, 2000, 2004, 2007-2013 Free Software Foundation, Inc. This file is part of the GNU C Library. 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, 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 . */ /* This particular implementation was written by Eric Blake, 2008. */ #ifndef _LIBC # include #endif /* Specification of memmem. */ #include #ifndef _LIBC # define __builtin_expect(expr, val) (expr) #endif #define RETURN_TYPE void * #define AVAILABLE(h, h_l, j, n_l) ((j) <= (h_l) - (n_l)) #include "str-two-way.h" /* Return the first occurrence of NEEDLE in HAYSTACK. Return HAYSTACK if NEEDLE_LEN is 0, otherwise NULL if NEEDLE is not found in HAYSTACK. */ void * memmem (const void *haystack_start, size_t haystack_len, const void *needle_start, size_t needle_len) { /* Abstract memory is considered to be an array of 'unsigned char' values, not an array of 'char' values. See ISO C 99 section 6.2.6.1. */ const unsigned char *haystack = (const unsigned char *) haystack_start; const unsigned char *needle = (const unsigned char *) needle_start; if (needle_len == 0) /* The first occurrence of the empty string is deemed to occur at the beginning of the string. */ return (void *) haystack; /* Sanity check, otherwise the loop might search through the whole memory. */ if (__builtin_expect (haystack_len < needle_len, 0)) return NULL; /* Use optimizations in memchr when possible, to reduce the search size of haystack using a linear algorithm with a smaller coefficient. However, avoid memchr for long needles, since we can often achieve sublinear performance. */ if (needle_len < LONG_NEEDLE_THRESHOLD) { haystack = memchr (haystack, *needle, haystack_len); if (!haystack || __builtin_expect (needle_len == 1, 0)) return (void *) haystack; haystack_len -= haystack - (const unsigned char *) haystack_start; if (haystack_len < needle_len) return NULL; return two_way_short_needle (haystack, haystack_len, needle, needle_len); } else return two_way_long_needle (haystack, haystack_len, needle, needle_len); } #undef LONG_NEEDLE_THRESHOLD ttfautohint-0.97/gnulib/src/isatty.c0000644000175000001440000000403512237364242014476 00000000000000/* isatty() replacement. Copyright (C) 2012-2013 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 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 . */ #include /* Specification. */ #include /* This replacement is enabled on native Windows. */ #include /* Get declarations of the Win32 API functions. */ #define WIN32_LEAN_AND_MEAN #include #include "msvc-inval.h" /* Get _get_osfhandle(). */ #include "msvc-nothrow.h" /* Optimized test whether a HANDLE refers to a console. See . */ #define IsConsoleHandle(h) (((intptr_t) (h) & 3) == 3) #if HAVE_MSVC_INVALID_PARAMETER_HANDLER static int _isatty_nothrow (int fd) { int result; TRY_MSVC_INVAL { result = _isatty (fd); } CATCH_MSVC_INVAL { result = 0; } DONE_MSVC_INVAL; return result; } #else # define _isatty_nothrow _isatty #endif /* Determine whether FD refers to a console device. Return 1 if yes. Return 0 and set errno if no. (ptsname_r relies on the errno value.) */ int isatty (int fd) { HANDLE h = (HANDLE) _get_osfhandle (fd); if (h == INVALID_HANDLE_VALUE) { errno = EBADF; return 0; } /* _isatty (fd) tests whether GetFileType of the handle is FILE_TYPE_CHAR. But it does not set errno when it returns 0. */ if (_isatty_nothrow (fd)) { if (IsConsoleHandle (h)) return 1; } errno = ENOTTY; return 0; } ttfautohint-0.97/gnulib/src/msvc-nothrow.h0000644000175000001440000000301012237364242015624 00000000000000/* Wrappers that don't throw invalid parameter notifications with MSVC runtime libraries. Copyright (C) 2011-2013 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 3, 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 . */ #ifndef _MSVC_NOTHROW_H #define _MSVC_NOTHROW_H /* With MSVC runtime libraries with the "invalid parameter handler" concept, functions like fprintf(), dup2(), or close() crash when the caller passes an invalid argument. But POSIX wants error codes (such as EINVAL or EBADF) instead. This file defines wrappers that turn such an invalid parameter notification into an error code. */ #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__ /* Get original declaration of _get_osfhandle. */ # include # if HAVE_MSVC_INVALID_PARAMETER_HANDLER /* Override _get_osfhandle. */ extern intptr_t _gl_nothrow_get_osfhandle (int fd); # define _get_osfhandle _gl_nothrow_get_osfhandle # endif #endif #endif /* _MSVC_NOTHROW_H */ ttfautohint-0.97/gnulib/src/gettext.h0000644000175000001440000002341612237364242014656 00000000000000/* Convenience header for conditional use of GNU . Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009-2013 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 3, 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 . */ #ifndef _LIBGETTEXT_H #define _LIBGETTEXT_H 1 /* NLS can be disabled through the configure --disable-nls option. */ #if ENABLE_NLS /* Get declarations of GNU message catalog functions. */ # include /* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by the gettext() and ngettext() macros. This is an alternative to calling textdomain(), and is useful for libraries. */ # ifdef DEFAULT_TEXT_DOMAIN # undef gettext # define gettext(Msgid) \ dgettext (DEFAULT_TEXT_DOMAIN, Msgid) # undef ngettext # define ngettext(Msgid1, Msgid2, N) \ dngettext (DEFAULT_TEXT_DOMAIN, Msgid1, Msgid2, N) # endif #else /* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. We don't include as well because people using "gettext.h" will not include , and also including would fail on SunOS 4, whereas is OK. */ #if defined(__sun) # include #endif /* Many header files from the libstdc++ coming with g++ 3.3 or newer include , which chokes if dcgettext is defined as a macro. So include it now, to make later inclusions of a NOP. */ #if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3) # include # if (__GLIBC__ >= 2 && !defined __UCLIBC__) || _GLIBCXX_HAVE_LIBINTL_H # include # endif #endif /* Disabled NLS. The casts to 'const char *' serve the purpose of producing warnings for invalid uses of the value returned from these functions. On pre-ANSI systems without 'const', the config.h file is supposed to contain "#define const". */ # undef gettext # define gettext(Msgid) ((const char *) (Msgid)) # undef dgettext # define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid)) # undef dcgettext # define dcgettext(Domainname, Msgid, Category) \ ((void) (Category), dgettext (Domainname, Msgid)) # undef ngettext # define ngettext(Msgid1, Msgid2, N) \ ((N) == 1 \ ? ((void) (Msgid2), (const char *) (Msgid1)) \ : ((void) (Msgid1), (const char *) (Msgid2))) # undef dngettext # define dngettext(Domainname, Msgid1, Msgid2, N) \ ((void) (Domainname), ngettext (Msgid1, Msgid2, N)) # undef dcngettext # define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N)) # undef textdomain # define textdomain(Domainname) ((const char *) (Domainname)) # undef bindtextdomain # define bindtextdomain(Domainname, Dirname) \ ((void) (Domainname), (const char *) (Dirname)) # undef bind_textdomain_codeset # define bind_textdomain_codeset(Domainname, Codeset) \ ((void) (Domainname), (const char *) (Codeset)) #endif /* Prefer gnulib's setlocale override over libintl's setlocale override. */ #ifdef GNULIB_defined_setlocale # undef setlocale # define setlocale rpl_setlocale #endif /* A pseudo function call that serves as a marker for the automated extraction of messages, but does not call gettext(). The run-time translation is done at a different place in the code. The argument, String, should be a literal string. Concatenated strings and other string expressions won't work. The macro's expansion is not parenthesized, so that it is suitable as initializer for static 'char[]' or 'const char[]' variables. */ #define gettext_noop(String) String /* The separator between msgctxt and msgid in a .mo file. */ #define GETTEXT_CONTEXT_GLUE "\004" /* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just a MSGID. MSGCTXT and MSGID must be string literals. MSGCTXT should be short and rarely need to change. The letter 'p' stands for 'particular' or 'special'. */ #ifdef DEFAULT_TEXT_DOMAIN # define pgettext(Msgctxt, Msgid) \ pgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #else # define pgettext(Msgctxt, Msgid) \ pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #endif #define dpgettext(Domainname, Msgctxt, Msgid) \ pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) #define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category) #ifdef DEFAULT_TEXT_DOMAIN # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #else # define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #endif #define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) #define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * pgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, int category) { const char *translation = dcgettext (domain, msg_ctxt_id, category); if (translation == msg_ctxt_id) return msgid; else return translation; } #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * npgettext_aux (const char *domain, const char *msg_ctxt_id, const char *msgid, const char *msgid_plural, unsigned long int n, int category) { const char *translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); if (translation == msg_ctxt_id || translation == msgid_plural) return (n == 1 ? msgid : msgid_plural); else return translation; } /* The same thing extended for non-constant arguments. Here MSGCTXT and MSGID can be arbitrary expressions. But for string literals these macros are less efficient than those above. */ #include #if (((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \ /* || __STDC_VERSION__ >= 199901L */ ) # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 1 #else # define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 0 #endif #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS #include #endif #define pgettext_expr(Msgctxt, Msgid) \ dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES) #define dpgettext_expr(Domainname, Msgctxt, Msgid) \ dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * dcpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, int category) { size_t msgctxt_len = strlen (msgctxt) + 1; size_t msgid_len = strlen (msgid) + 1; const char *translation; #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS char msg_ctxt_id[msgctxt_len + msgid_len]; #else char buf[1024]; char *msg_ctxt_id = (msgctxt_len + msgid_len <= sizeof (buf) ? buf : (char *) malloc (msgctxt_len + msgid_len)); if (msg_ctxt_id != NULL) #endif { memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); msg_ctxt_id[msgctxt_len - 1] = '\004'; memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); translation = dcgettext (domain, msg_ctxt_id, category); #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS if (msg_ctxt_id != buf) free (msg_ctxt_id); #endif if (translation != msg_ctxt_id) return translation; } return msgid; } #define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N) \ dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) #define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) #ifdef __GNUC__ __inline #else #ifdef __cplusplus inline #endif #endif static const char * dcnpgettext_expr (const char *domain, const char *msgctxt, const char *msgid, const char *msgid_plural, unsigned long int n, int category) { size_t msgctxt_len = strlen (msgctxt) + 1; size_t msgid_len = strlen (msgid) + 1; const char *translation; #if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS char msg_ctxt_id[msgctxt_len + msgid_len]; #else char buf[1024]; char *msg_ctxt_id = (msgctxt_len + msgid_len <= sizeof (buf) ? buf : (char *) malloc (msgctxt_len + msgid_len)); if (msg_ctxt_id != NULL) #endif { memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); msg_ctxt_id[msgctxt_len - 1] = '\004'; memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); #if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS if (msg_ctxt_id != buf) free (msg_ctxt_id); #endif if (!(translation == msg_ctxt_id || translation == msgid_plural)) return translation; } return (n == 1 ? msgid : msgid_plural); } #endif /* _LIBGETTEXT_H */ ttfautohint-0.97/gnulib/depcomp0000755000175000001440000005370012177765604013620 00000000000000#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2013-05-30.07; # UTC # Copyright (C) 1999-2013 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 ;; 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 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: ttfautohint-0.97/gnulib/compile0000755000175000001440000001624512237364312013610 00000000000000#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2013 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*) 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/*) 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 ) 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 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: ttfautohint-0.97/gnulib/config.rpath0000755000175000001440000004443512237364241014545 00000000000000#! /bin/sh # Output a system dependent set of variables, describing how to set the # run time search path of shared libraries in an executable. # # Copyright 1996-2013 Free Software Foundation, Inc. # Taken from GNU libtool, 2001 # Originally 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. # # The first argument passed to this file is the canonical host specification, # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld # should be set by the caller. # # The set of defined variables is at the end of this script. # Known limitations: # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer # than 256 bytes, otherwise the compiler driver will dump core. The only # known workaround is to choose shorter directory names for the build # directory and/or the installation directory. # All known linkers require a '.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a shrext=.so host="$1" host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'` host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'` host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'` # Code taken from libtool.m4's _LT_CC_BASENAME. for cc_temp in $CC""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'` # Code taken from libtool.m4's _LT_COMPILER_PIC. wl= if test "$GCC" = yes; then wl='-Wl,' else case "$host_os" in aix*) wl='-Wl,' ;; mingw* | cygwin* | pw32* | os2* | cegcc*) ;; hpux9* | hpux10* | hpux11*) wl='-Wl,' ;; irix5* | irix6* | nonstopux*) wl='-Wl,' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in ecc*) wl='-Wl,' ;; icc* | ifort*) wl='-Wl,' ;; lf95*) wl='-Wl,' ;; nagfor*) wl='-Wl,-Wl,,' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) wl='-Wl,' ;; ccc*) wl='-Wl,' ;; xl* | bgxl* | bgf* | mpixl*) wl='-Wl,' ;; como) wl='-lopt=' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ F* | *Sun*Fortran*) wl= ;; *Sun\ C*) wl='-Wl,' ;; esac ;; esac ;; newsos6) ;; *nto* | *qnx*) ;; osf3* | osf4* | osf5*) wl='-Wl,' ;; rdos*) ;; solaris*) case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) wl='-Qoption ld ' ;; *) wl='-Wl,' ;; esac ;; sunos4*) wl='-Qoption ld ' ;; sysv4 | sysv4.2uw2* | sysv4.3*) wl='-Wl,' ;; sysv4*MP*) ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) wl='-Wl,' ;; unicos*) wl='-Wl,' ;; uts4*) ;; esac fi # Code taken from libtool.m4's _LT_LINKER_SHLIBS. hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_direct=no hardcode_minus_L=no 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 "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # 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. # Unlike libtool, we use -rpath here, not --rpath, since the documented # option of GNU ld is called -rpath, not --rpath. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' case "$host_os" in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then : else ld_shlibs=no fi ;; haiku*) ;; interix[3-9]*) hardcode_direct=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; netbsd*) ;; solaris*) if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then ld_shlibs=no elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : 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 ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`' else ld_shlibs=no fi ;; esac ;; sunos4*) hardcode_direct=yes ;; *) if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then : else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then hardcode_libdir_flag_spec= fi else case "$host_os" in aix3*) # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no 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 # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac fi hardcode_direct=yes hardcode_libdir_separator=':' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) 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 hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac fi # Begin _LT_AC_SYS_LIBPATH_AIX. echo 'int main () { return 0; }' > conftest.c ${CC} ${LDFLAGS} conftest.c -o conftest aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } }'` fi if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib" fi rm -f conftest.c conftest # End _LT_AC_SYS_LIBPATH_AIX. if test "$aix_use_runtimelinking" = yes; then hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' else hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" fi fi ;; amigaos*) case "$host_cpu" in powerpc) ;; m68k) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) ;; 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. hardcode_libdir_flag_spec=' ' libext=lib ;; darwin* | rhapsody*) hardcode_direct=no if { case $cc_basename in ifort*) true;; *) test "$GCC" = yes;; esac; }; then : else ld_shlibs=no fi ;; dgux*) hardcode_libdir_flag_spec='-L$libdir' ;; freebsd2.2*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; freebsd2*) hardcode_direct=yes hardcode_minus_L=yes ;; freebsd* | dragonfly*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; hpux9*) 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 ;; hpux10*) if test "$with_gnu_ld" = no; then 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 fi ;; hpux11*) if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no ;; *) hardcode_direct=yes # 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*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; netbsd*) hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes ;; newsos6) hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then hardcode_libdir_flag_spec='${wl}-rpath,$libdir' else case "$host_os" in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) hardcode_libdir_flag_spec='-R$libdir' ;; *) hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; osf3*) hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) if test "$GCC" = yes; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else # Both cc and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi hardcode_libdir_separator=: ;; solaris*) hardcode_libdir_flag_spec='-R$libdir' ;; sunos4*) hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes ;; sysv4) case $host_vendor in sni) hardcode_direct=yes # is this really true??? ;; siemens) hardcode_direct=no ;; motorola) hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac ;; sysv4.3*) ;; sysv4*MP*) if test -d /usr/nec; then ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) ;; sysv5* | sco3.2v5* | sco5v6*) hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`' hardcode_libdir_separator=':' ;; uts4*) hardcode_libdir_flag_spec='-L$libdir' ;; *) ld_shlibs=no ;; esac fi # Check dynamic linker characteristics # Code taken from libtool.m4's _LT_SYS_DYNAMIC_LINKER. # Unlike libtool.m4, here we don't care about _all_ names of the library, but # only about the one the linker finds when passed -lNAME. This is the last # element of library_names_spec in libtool.m4, or possibly two of them if the # linker has special search rules. library_names_spec= # the last element of library_names_spec in libtool.m4 libname_spec='lib$name' case "$host_os" in aix3*) library_names_spec='$libname.a' ;; aix[4-9]*) library_names_spec='$libname$shrext' ;; amigaos*) case "$host_cpu" in powerpc*) library_names_spec='$libname$shrext' ;; m68k) library_names_spec='$libname.a' ;; esac ;; beos*) library_names_spec='$libname$shrext' ;; bsdi[45]*) library_names_spec='$libname$shrext' ;; cygwin* | mingw* | pw32* | cegcc*) shrext=.dll library_names_spec='$libname.dll.a $libname.lib' ;; darwin* | rhapsody*) shrext=.dylib library_names_spec='$libname$shrext' ;; dgux*) library_names_spec='$libname$shrext' ;; freebsd* | dragonfly*) case "$host_os" in freebsd[123]*) library_names_spec='$libname$shrext$versuffix' ;; *) library_names_spec='$libname$shrext' ;; esac ;; gnu*) library_names_spec='$libname$shrext' ;; haiku*) library_names_spec='$libname$shrext' ;; hpux9* | hpux10* | hpux11*) case $host_cpu in ia64*) shrext=.so ;; hppa*64*) shrext=.sl ;; *) shrext=.sl ;; esac library_names_spec='$libname$shrext' ;; interix[3-9]*) library_names_spec='$libname$shrext' ;; irix5* | irix6* | nonstopux*) library_names_spec='$libname$shrext' case "$host_os" in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;; *) libsuff= shlibsuff= ;; esac ;; esac ;; linux*oldld* | linux*aout* | linux*coff*) ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) library_names_spec='$libname$shrext' ;; knetbsd*-gnu) library_names_spec='$libname$shrext' ;; netbsd*) library_names_spec='$libname$shrext' ;; newsos6) library_names_spec='$libname$shrext' ;; *nto* | *qnx*) library_names_spec='$libname$shrext' ;; openbsd*) library_names_spec='$libname$shrext$versuffix' ;; os2*) libname_spec='$name' shrext=.dll library_names_spec='$libname.a' ;; osf3* | osf4* | osf5*) library_names_spec='$libname$shrext' ;; rdos*) ;; solaris*) library_names_spec='$libname$shrext' ;; sunos4*) library_names_spec='$libname$shrext$versuffix' ;; sysv4 | sysv4.3*) library_names_spec='$libname$shrext' ;; sysv4*MP*) library_names_spec='$libname$shrext' ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) library_names_spec='$libname$shrext' ;; tpf*) library_names_spec='$libname$shrext' ;; uts4*) library_names_spec='$libname$shrext' ;; esac sed_quote_subst='s/\(["`$\\]\)/\\\1/g' escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"` shlibext=`echo "$shrext" | sed -e 's,^\.,,'` escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"` LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <